diff --git a/.gitattributes b/.gitattributes
index 7bf5adc622fdb89b7483cd124f33ad039861716e..030a8fcd11af1bf9daec869768e4f2cb3629fa2d 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -129,3 +129,14 @@ runs/base-ssl-constantlr/checkpoint-360/tokenizer.json filter=lfs diff=lfs merge
runs/base-ssl-constantlr/checkpoint-3600/tokenizer.json filter=lfs diff=lfs merge=lfs -text
runs/base-ssl-constantlr/checkpoint-72/tokenizer.json filter=lfs diff=lfs merge=lfs -text
runs/base-ssl-constantlr/checkpoint-720/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/baseline-constantlr/checkpoint-1080/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/baseline-constantlr/checkpoint-1440/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/baseline-constantlr/checkpoint-1800/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/baseline-constantlr/checkpoint-2160/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/baseline-constantlr/checkpoint-2520/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/baseline-constantlr/checkpoint-2880/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/baseline-constantlr/checkpoint-3240/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/baseline-constantlr/checkpoint-360/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/baseline-constantlr/checkpoint-3600/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/baseline-constantlr/checkpoint-72/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/baseline-constantlr/checkpoint-720/tokenizer.json filter=lfs diff=lfs merge=lfs -text
diff --git a/runs/baseline-constantlr/checkpoint-1080/chat_template.jinja b/runs/baseline-constantlr/checkpoint-1080/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-1080/config.json b/runs/baseline-constantlr/checkpoint-1080/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-1080/generation_config.json b/runs/baseline-constantlr/checkpoint-1080/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-1080/model.safetensors b/runs/baseline-constantlr/checkpoint-1080/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..a3e5f0dc42edd306c5de2f109d91fa73b5365eac
--- /dev/null
+++ b/runs/baseline-constantlr/checkpoint-1080/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:43a00613b7be8cc90408e4cc77b61918995b190f23846431b89d9f1dbdc32221
+size 583356232
diff --git a/runs/baseline-constantlr/checkpoint-1080/optimizer.pt b/runs/baseline-constantlr/checkpoint-1080/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..84013b5d9ab380682903a6edb3bc975cba2ce26d
--- /dev/null
+++ b/runs/baseline-constantlr/checkpoint-1080/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5ea858c9f90a429a3545c48a22fddff4497a1e38a1cb2b8c99cc3a444fcf7608
+size 1166825803
diff --git a/runs/baseline-constantlr/checkpoint-1080/rng_state_0.pth b/runs/baseline-constantlr/checkpoint-1080/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..ff81a4a04de793f1c690eab304502628a6f01a16
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-1080/rng_state_1.pth b/runs/baseline-constantlr/checkpoint-1080/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..2e0fc04a0aae1c0cb2027f4e52b0d2e25910d9a8
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-1080/scheduler.pt b/runs/baseline-constantlr/checkpoint-1080/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..15fa6fcabc3aef0f53bd509c6faea3fe7bfad1a3
--- /dev/null
+++ b/runs/baseline-constantlr/checkpoint-1080/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d9665e06b9b7038f9bc644d505bf73e0b3006eff38c73051896dda8b2891d320
+size 1465
diff --git a/runs/baseline-constantlr/checkpoint-1080/tokenizer.json b/runs/baseline-constantlr/checkpoint-1080/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-1080/tokenizer_config.json b/runs/baseline-constantlr/checkpoint-1080/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-1080/trainer_state.json b/runs/baseline-constantlr/checkpoint-1080/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..238b7d6abb8cbbadf0bfdc916bfabb1e27e31966
--- /dev/null
+++ b/runs/baseline-constantlr/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.13303375244140625,
+ "learning_rate": 0.0,
+ "loss": 12.018817901611328,
+ "step": 1
+ },
+ {
+ "epoch": 0.02794759825327511,
+ "grad_norm": 0.13390742242336273,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.021883964538574,
+ "step": 2
+ },
+ {
+ "epoch": 0.04192139737991266,
+ "grad_norm": 0.13340722024440765,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.986108779907227,
+ "step": 3
+ },
+ {
+ "epoch": 0.05589519650655022,
+ "grad_norm": 0.13777263462543488,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.926837921142578,
+ "step": 4
+ },
+ {
+ "epoch": 0.06986899563318777,
+ "grad_norm": 0.14294272661209106,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.845431327819824,
+ "step": 5
+ },
+ {
+ "epoch": 0.08384279475982533,
+ "grad_norm": 0.15314988791942596,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.736921310424805,
+ "step": 6
+ },
+ {
+ "epoch": 0.09781659388646288,
+ "grad_norm": 0.14554648101329803,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.615877151489258,
+ "step": 7
+ },
+ {
+ "epoch": 0.11179039301310044,
+ "grad_norm": 0.1252845823764801,
+ "learning_rate": 4.2e-05,
+ "loss": 11.501619338989258,
+ "step": 8
+ },
+ {
+ "epoch": 0.125764192139738,
+ "grad_norm": 0.11403433233499527,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.396705627441406,
+ "step": 9
+ },
+ {
+ "epoch": 0.13973799126637554,
+ "grad_norm": 0.10996542125940323,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.31666374206543,
+ "step": 10
+ },
+ {
+ "epoch": 0.1537117903930131,
+ "grad_norm": 0.10755623877048492,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.252704620361328,
+ "step": 11
+ },
+ {
+ "epoch": 0.16768558951965065,
+ "grad_norm": 0.10700664669275284,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.194284439086914,
+ "step": 12
+ },
+ {
+ "epoch": 0.18165938864628822,
+ "grad_norm": 0.10606497526168823,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.14437198638916,
+ "step": 13
+ },
+ {
+ "epoch": 0.19563318777292577,
+ "grad_norm": 0.10551681369543076,
+ "learning_rate": 7.8e-05,
+ "loss": 11.096858024597168,
+ "step": 14
+ },
+ {
+ "epoch": 0.2096069868995633,
+ "grad_norm": 0.10573510080575943,
+ "learning_rate": 8.4e-05,
+ "loss": 11.047990798950195,
+ "step": 15
+ },
+ {
+ "epoch": 0.22358078602620088,
+ "grad_norm": 0.10572560131549835,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 11.000219345092773,
+ "step": 16
+ },
+ {
+ "epoch": 0.23755458515283842,
+ "grad_norm": 0.10625051707029343,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.93830680847168,
+ "step": 17
+ },
+ {
+ "epoch": 0.251528384279476,
+ "grad_norm": 0.10565247386693954,
+ "learning_rate": 0.000102,
+ "loss": 10.88237190246582,
+ "step": 18
+ },
+ {
+ "epoch": 0.26550218340611353,
+ "grad_norm": 0.10570791363716125,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.81382942199707,
+ "step": 19
+ },
+ {
+ "epoch": 0.2794759825327511,
+ "grad_norm": 0.10585319995880127,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.742864608764648,
+ "step": 20
+ },
+ {
+ "epoch": 0.2934497816593886,
+ "grad_norm": 0.10421311110258102,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.675719261169434,
+ "step": 21
+ },
+ {
+ "epoch": 0.3074235807860262,
+ "grad_norm": 0.10436785966157913,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.589548110961914,
+ "step": 22
+ },
+ {
+ "epoch": 0.32139737991266376,
+ "grad_norm": 0.10463878512382507,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.504261016845703,
+ "step": 23
+ },
+ {
+ "epoch": 0.3353711790393013,
+ "grad_norm": 0.104142926633358,
+ "learning_rate": 0.000138,
+ "loss": 10.41696548461914,
+ "step": 24
+ },
+ {
+ "epoch": 0.34934497816593885,
+ "grad_norm": 0.1037549152970314,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.327609062194824,
+ "step": 25
+ },
+ {
+ "epoch": 0.36331877729257644,
+ "grad_norm": 0.10464346408843994,
+ "learning_rate": 0.00015,
+ "loss": 10.226776123046875,
+ "step": 26
+ },
+ {
+ "epoch": 0.377292576419214,
+ "grad_norm": 0.10289040952920914,
+ "learning_rate": 0.000156,
+ "loss": 10.142925262451172,
+ "step": 27
+ },
+ {
+ "epoch": 0.39126637554585153,
+ "grad_norm": 0.10476566106081009,
+ "learning_rate": 0.000162,
+ "loss": 10.032388687133789,
+ "step": 28
+ },
+ {
+ "epoch": 0.4052401746724891,
+ "grad_norm": 0.10285190492868423,
+ "learning_rate": 0.000168,
+ "loss": 9.944738388061523,
+ "step": 29
+ },
+ {
+ "epoch": 0.4192139737991266,
+ "grad_norm": 0.10330761969089508,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.832511901855469,
+ "step": 30
+ },
+ {
+ "epoch": 0.4331877729257642,
+ "grad_norm": 0.10190961509943008,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.742905616760254,
+ "step": 31
+ },
+ {
+ "epoch": 0.44716157205240176,
+ "grad_norm": 0.10172155499458313,
+ "learning_rate": 0.000186,
+ "loss": 9.634834289550781,
+ "step": 32
+ },
+ {
+ "epoch": 0.4611353711790393,
+ "grad_norm": 0.10067209601402283,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.522916793823242,
+ "step": 33
+ },
+ {
+ "epoch": 0.47510917030567684,
+ "grad_norm": 0.10058761388063431,
+ "learning_rate": 0.000198,
+ "loss": 9.416927337646484,
+ "step": 34
+ },
+ {
+ "epoch": 0.4890829694323144,
+ "grad_norm": 0.0981091558933258,
+ "learning_rate": 0.000204,
+ "loss": 9.32928466796875,
+ "step": 35
+ },
+ {
+ "epoch": 0.503056768558952,
+ "grad_norm": 0.09739134460687637,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.215356826782227,
+ "step": 36
+ },
+ {
+ "epoch": 0.5170305676855895,
+ "grad_norm": 0.0969916582107544,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.101107597351074,
+ "step": 37
+ },
+ {
+ "epoch": 0.5310043668122271,
+ "grad_norm": 0.0959910973906517,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.998035430908203,
+ "step": 38
+ },
+ {
+ "epoch": 0.5449781659388646,
+ "grad_norm": 0.09558682143688202,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.89165210723877,
+ "step": 39
+ },
+ {
+ "epoch": 0.5589519650655022,
+ "grad_norm": 0.09313725680112839,
+ "learning_rate": 0.000234,
+ "loss": 8.806523323059082,
+ "step": 40
+ },
+ {
+ "epoch": 0.5729257641921397,
+ "grad_norm": 0.09075582772493362,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.71815299987793,
+ "step": 41
+ },
+ {
+ "epoch": 0.5868995633187772,
+ "grad_norm": 0.08912578970193863,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.617330551147461,
+ "step": 42
+ },
+ {
+ "epoch": 0.6008733624454149,
+ "grad_norm": 0.08745060116052628,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.511157989501953,
+ "step": 43
+ },
+ {
+ "epoch": 0.6148471615720524,
+ "grad_norm": 0.08254463970661163,
+ "learning_rate": 0.000258,
+ "loss": 8.458954811096191,
+ "step": 44
+ },
+ {
+ "epoch": 0.62882096069869,
+ "grad_norm": 0.0795406699180603,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.37498664855957,
+ "step": 45
+ },
+ {
+ "epoch": 0.6427947598253275,
+ "grad_norm": 0.07730695605278015,
+ "learning_rate": 0.00027,
+ "loss": 8.293156623840332,
+ "step": 46
+ },
+ {
+ "epoch": 0.6567685589519651,
+ "grad_norm": 0.07404499500989914,
+ "learning_rate": 0.000276,
+ "loss": 8.200754165649414,
+ "step": 47
+ },
+ {
+ "epoch": 0.6707423580786026,
+ "grad_norm": 0.07091354578733444,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.114692687988281,
+ "step": 48
+ },
+ {
+ "epoch": 0.6847161572052402,
+ "grad_norm": 0.06816772371530533,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.060348510742188,
+ "step": 49
+ },
+ {
+ "epoch": 0.6986899563318777,
+ "grad_norm": 0.0605427622795105,
+ "learning_rate": 0.000294,
+ "loss": 7.991006851196289,
+ "step": 50
+ },
+ {
+ "epoch": 0.7126637554585152,
+ "grad_norm": 0.05635255202651024,
+ "learning_rate": 0.0003,
+ "loss": 7.945850372314453,
+ "step": 51
+ },
+ {
+ "epoch": 0.7266375545851529,
+ "grad_norm": 0.05419522523880005,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.895726203918457,
+ "step": 52
+ },
+ {
+ "epoch": 0.7406113537117904,
+ "grad_norm": 0.06724901497364044,
+ "learning_rate": 0.000312,
+ "loss": 7.839101791381836,
+ "step": 53
+ },
+ {
+ "epoch": 0.754585152838428,
+ "grad_norm": 0.12858672440052032,
+ "learning_rate": 0.000318,
+ "loss": 7.840076446533203,
+ "step": 54
+ },
+ {
+ "epoch": 0.7685589519650655,
+ "grad_norm": 0.05087178573012352,
+ "learning_rate": 0.000324,
+ "loss": 7.77433967590332,
+ "step": 55
+ },
+ {
+ "epoch": 0.7825327510917031,
+ "grad_norm": 0.0458969883620739,
+ "learning_rate": 0.00033,
+ "loss": 7.747459411621094,
+ "step": 56
+ },
+ {
+ "epoch": 0.7965065502183406,
+ "grad_norm": 0.03214738890528679,
+ "learning_rate": 0.000336,
+ "loss": 7.735766410827637,
+ "step": 57
+ },
+ {
+ "epoch": 0.8104803493449781,
+ "grad_norm": 0.022700699046254158,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.716371059417725,
+ "step": 58
+ },
+ {
+ "epoch": 0.8244541484716157,
+ "grad_norm": 0.02415020391345024,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.700209140777588,
+ "step": 59
+ },
+ {
+ "epoch": 0.8384279475982532,
+ "grad_norm": 0.021143650636076927,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.687976360321045,
+ "step": 60
+ },
+ {
+ "epoch": 0.8524017467248908,
+ "grad_norm": 0.019051192328333855,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.640708923339844,
+ "step": 61
+ },
+ {
+ "epoch": 0.8663755458515284,
+ "grad_norm": 0.02110682614147663,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.6529130935668945,
+ "step": 62
+ },
+ {
+ "epoch": 0.880349344978166,
+ "grad_norm": 0.024010686203837395,
+ "learning_rate": 0.000372,
+ "loss": 7.645641326904297,
+ "step": 63
+ },
+ {
+ "epoch": 0.8943231441048035,
+ "grad_norm": 0.02591090090572834,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.626849174499512,
+ "step": 64
+ },
+ {
+ "epoch": 0.9082969432314411,
+ "grad_norm": 0.02841993235051632,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.633922576904297,
+ "step": 65
+ },
+ {
+ "epoch": 0.9222707423580786,
+ "grad_norm": 0.02565363608300686,
+ "learning_rate": 0.00039,
+ "loss": 7.6236772537231445,
+ "step": 66
+ },
+ {
+ "epoch": 0.9362445414847161,
+ "grad_norm": 0.020100994035601616,
+ "learning_rate": 0.000396,
+ "loss": 7.602252006530762,
+ "step": 67
+ },
+ {
+ "epoch": 0.9502183406113537,
+ "grad_norm": 0.017415935173630714,
+ "learning_rate": 0.000402,
+ "loss": 7.574195861816406,
+ "step": 68
+ },
+ {
+ "epoch": 0.9641921397379912,
+ "grad_norm": 0.01630476303398609,
+ "learning_rate": 0.000408,
+ "loss": 7.578503131866455,
+ "step": 69
+ },
+ {
+ "epoch": 0.9781659388646288,
+ "grad_norm": 0.015402277931571007,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.54685115814209,
+ "step": 70
+ },
+ {
+ "epoch": 0.9921397379912664,
+ "grad_norm": 0.01438985951244831,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.546932220458984,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.016883183270692825,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.555042266845703,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.549549579620361,
+ "eval_runtime": 54.3422,
+ "eval_samples_per_second": 44.937,
+ "eval_steps_per_second": 1.417,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139737991266375,
+ "grad_norm": 0.01215015072375536,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.534733295440674,
+ "step": 73
+ },
+ {
+ "epoch": 1.027947598253275,
+ "grad_norm": 0.01328246109187603,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.543649196624756,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419213973799126,
+ "grad_norm": 0.012859524227678776,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.50216817855835,
+ "step": 75
+ },
+ {
+ "epoch": 1.0558951965065502,
+ "grad_norm": 0.011157970875501633,
+ "learning_rate": 0.00045,
+ "loss": 7.508391857147217,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698689956331877,
+ "grad_norm": 0.012834188528358936,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.4759087562561035,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838427947598253,
+ "grad_norm": 0.013627874664962292,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.45142936706543,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978165938864628,
+ "grad_norm": 0.01641070283949375,
+ "learning_rate": 0.000468,
+ "loss": 7.492819786071777,
+ "step": 79
+ },
+ {
+ "epoch": 1.1117903930131003,
+ "grad_norm": 0.025136210024356842,
+ "learning_rate": 0.000474,
+ "loss": 7.474215507507324,
+ "step": 80
+ },
+ {
+ "epoch": 1.125764192139738,
+ "grad_norm": 0.03659580647945404,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.475737571716309,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397379912663754,
+ "grad_norm": 0.04370221868157387,
+ "learning_rate": 0.000486,
+ "loss": 7.453543663024902,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537117903930132,
+ "grad_norm": 0.02917138673365116,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.424599647521973,
+ "step": 83
+ },
+ {
+ "epoch": 1.1676855895196507,
+ "grad_norm": 0.015414979308843613,
+ "learning_rate": 0.000498,
+ "loss": 7.388550758361816,
+ "step": 84
+ },
+ {
+ "epoch": 1.1816593886462883,
+ "grad_norm": 0.029156062752008438,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.379591941833496,
+ "step": 85
+ },
+ {
+ "epoch": 1.1956331877729258,
+ "grad_norm": 0.014958011917769909,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.372748374938965,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096069868995634,
+ "grad_norm": 0.021887343376874924,
+ "learning_rate": 0.000516,
+ "loss": 7.3589630126953125,
+ "step": 87
+ },
+ {
+ "epoch": 1.223580786026201,
+ "grad_norm": 0.02962890826165676,
+ "learning_rate": 0.000522,
+ "loss": 7.373016357421875,
+ "step": 88
+ },
+ {
+ "epoch": 1.2375545851528384,
+ "grad_norm": 0.031032968312501907,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.3282928466796875,
+ "step": 89
+ },
+ {
+ "epoch": 1.251528384279476,
+ "grad_norm": 0.027690274640917778,
+ "learning_rate": 0.000534,
+ "loss": 7.320304870605469,
+ "step": 90
+ },
+ {
+ "epoch": 1.2655021834061135,
+ "grad_norm": 0.022552549839019775,
+ "learning_rate": 0.00054,
+ "loss": 7.3051300048828125,
+ "step": 91
+ },
+ {
+ "epoch": 1.279475982532751,
+ "grad_norm": 0.04130178689956665,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.284594535827637,
+ "step": 92
+ },
+ {
+ "epoch": 1.2934497816593886,
+ "grad_norm": 0.05043136328458786,
+ "learning_rate": 0.000552,
+ "loss": 7.286007881164551,
+ "step": 93
+ },
+ {
+ "epoch": 1.3074235807860262,
+ "grad_norm": 0.04574465751647949,
+ "learning_rate": 0.000558,
+ "loss": 7.22679328918457,
+ "step": 94
+ },
+ {
+ "epoch": 1.3213973799126637,
+ "grad_norm": 0.03277682512998581,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.229741096496582,
+ "step": 95
+ },
+ {
+ "epoch": 1.3353711790393012,
+ "grad_norm": 0.022675029933452606,
+ "learning_rate": 0.00057,
+ "loss": 7.241637706756592,
+ "step": 96
+ },
+ {
+ "epoch": 1.3493449781659388,
+ "grad_norm": 0.03889699652791023,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.193673133850098,
+ "step": 97
+ },
+ {
+ "epoch": 1.3633187772925766,
+ "grad_norm": 0.029434625059366226,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.1953840255737305,
+ "step": 98
+ },
+ {
+ "epoch": 1.3772925764192139,
+ "grad_norm": 0.02118326723575592,
+ "learning_rate": 0.000588,
+ "loss": 7.178635597229004,
+ "step": 99
+ },
+ {
+ "epoch": 1.3912663755458516,
+ "grad_norm": 0.02966528758406639,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.151487350463867,
+ "step": 100
+ },
+ {
+ "epoch": 1.405240174672489,
+ "grad_norm": 0.0450727716088295,
+ "learning_rate": 0.0006,
+ "loss": 7.144834995269775,
+ "step": 101
+ },
+ {
+ "epoch": 1.4192139737991267,
+ "grad_norm": 0.08898167312145233,
+ "learning_rate": 0.0006,
+ "loss": 7.180665969848633,
+ "step": 102
+ },
+ {
+ "epoch": 1.4331877729257643,
+ "grad_norm": 0.10679084807634354,
+ "learning_rate": 0.0006,
+ "loss": 7.233458518981934,
+ "step": 103
+ },
+ {
+ "epoch": 1.4471615720524018,
+ "grad_norm": 0.04746336117386818,
+ "learning_rate": 0.0006,
+ "loss": 7.167373180389404,
+ "step": 104
+ },
+ {
+ "epoch": 1.4611353711790394,
+ "grad_norm": 0.06380590051412582,
+ "learning_rate": 0.0006,
+ "loss": 7.189356803894043,
+ "step": 105
+ },
+ {
+ "epoch": 1.475109170305677,
+ "grad_norm": 0.039717014878988266,
+ "learning_rate": 0.0006,
+ "loss": 7.096653938293457,
+ "step": 106
+ },
+ {
+ "epoch": 1.4890829694323144,
+ "grad_norm": 0.06762711703777313,
+ "learning_rate": 0.0006,
+ "loss": 7.127993583679199,
+ "step": 107
+ },
+ {
+ "epoch": 1.503056768558952,
+ "grad_norm": 0.05134489759802818,
+ "learning_rate": 0.0006,
+ "loss": 7.072257995605469,
+ "step": 108
+ },
+ {
+ "epoch": 1.5170305676855895,
+ "grad_norm": 0.062314722687006,
+ "learning_rate": 0.0006,
+ "loss": 7.073700904846191,
+ "step": 109
+ },
+ {
+ "epoch": 1.531004366812227,
+ "grad_norm": 0.03607739135622978,
+ "learning_rate": 0.0006,
+ "loss": 7.051465034484863,
+ "step": 110
+ },
+ {
+ "epoch": 1.5449781659388646,
+ "grad_norm": 0.04546204209327698,
+ "learning_rate": 0.0006,
+ "loss": 7.049814224243164,
+ "step": 111
+ },
+ {
+ "epoch": 1.5589519650655022,
+ "grad_norm": 0.0319792665541172,
+ "learning_rate": 0.0006,
+ "loss": 7.0164875984191895,
+ "step": 112
+ },
+ {
+ "epoch": 1.5729257641921397,
+ "grad_norm": 0.04590746760368347,
+ "learning_rate": 0.0006,
+ "loss": 7.001565456390381,
+ "step": 113
+ },
+ {
+ "epoch": 1.5868995633187772,
+ "grad_norm": 0.031896382570266724,
+ "learning_rate": 0.0006,
+ "loss": 6.994606018066406,
+ "step": 114
+ },
+ {
+ "epoch": 1.600873362445415,
+ "grad_norm": 0.021410338580608368,
+ "learning_rate": 0.0006,
+ "loss": 6.947071075439453,
+ "step": 115
+ },
+ {
+ "epoch": 1.6148471615720523,
+ "grad_norm": 0.030063210055232048,
+ "learning_rate": 0.0006,
+ "loss": 6.979219913482666,
+ "step": 116
+ },
+ {
+ "epoch": 1.62882096069869,
+ "grad_norm": 0.02234027162194252,
+ "learning_rate": 0.0006,
+ "loss": 6.929020881652832,
+ "step": 117
+ },
+ {
+ "epoch": 1.6427947598253274,
+ "grad_norm": 0.025586063042283058,
+ "learning_rate": 0.0006,
+ "loss": 6.9200663566589355,
+ "step": 118
+ },
+ {
+ "epoch": 1.6567685589519652,
+ "grad_norm": 0.022098371759057045,
+ "learning_rate": 0.0006,
+ "loss": 6.899832248687744,
+ "step": 119
+ },
+ {
+ "epoch": 1.6707423580786025,
+ "grad_norm": 0.019238410517573357,
+ "learning_rate": 0.0006,
+ "loss": 6.8586015701293945,
+ "step": 120
+ },
+ {
+ "epoch": 1.6847161572052403,
+ "grad_norm": 0.024153294041752815,
+ "learning_rate": 0.0006,
+ "loss": 6.867973327636719,
+ "step": 121
+ },
+ {
+ "epoch": 1.6986899563318776,
+ "grad_norm": 0.01690024696290493,
+ "learning_rate": 0.0006,
+ "loss": 6.878490447998047,
+ "step": 122
+ },
+ {
+ "epoch": 1.7126637554585153,
+ "grad_norm": 0.02171619050204754,
+ "learning_rate": 0.0006,
+ "loss": 6.853621959686279,
+ "step": 123
+ },
+ {
+ "epoch": 1.726637554585153,
+ "grad_norm": 0.020535755902528763,
+ "learning_rate": 0.0006,
+ "loss": 6.852185249328613,
+ "step": 124
+ },
+ {
+ "epoch": 1.7406113537117904,
+ "grad_norm": 0.015457311645150185,
+ "learning_rate": 0.0006,
+ "loss": 6.826596260070801,
+ "step": 125
+ },
+ {
+ "epoch": 1.754585152838428,
+ "grad_norm": 0.017492085695266724,
+ "learning_rate": 0.0006,
+ "loss": 6.842765808105469,
+ "step": 126
+ },
+ {
+ "epoch": 1.7685589519650655,
+ "grad_norm": 0.014785612002015114,
+ "learning_rate": 0.0006,
+ "loss": 6.849224090576172,
+ "step": 127
+ },
+ {
+ "epoch": 1.782532751091703,
+ "grad_norm": 0.017512250691652298,
+ "learning_rate": 0.0006,
+ "loss": 6.824787139892578,
+ "step": 128
+ },
+ {
+ "epoch": 1.7965065502183406,
+ "grad_norm": 0.01895114593207836,
+ "learning_rate": 0.0006,
+ "loss": 6.801428318023682,
+ "step": 129
+ },
+ {
+ "epoch": 1.8104803493449781,
+ "grad_norm": 0.015728816390037537,
+ "learning_rate": 0.0006,
+ "loss": 6.801990985870361,
+ "step": 130
+ },
+ {
+ "epoch": 1.8244541484716157,
+ "grad_norm": 0.014321585185825825,
+ "learning_rate": 0.0006,
+ "loss": 6.793122291564941,
+ "step": 131
+ },
+ {
+ "epoch": 1.8384279475982532,
+ "grad_norm": 0.016692014411091805,
+ "learning_rate": 0.0006,
+ "loss": 6.74687385559082,
+ "step": 132
+ },
+ {
+ "epoch": 1.8524017467248908,
+ "grad_norm": 0.016697920858860016,
+ "learning_rate": 0.0006,
+ "loss": 6.75140380859375,
+ "step": 133
+ },
+ {
+ "epoch": 1.8663755458515285,
+ "grad_norm": 0.014954701997339725,
+ "learning_rate": 0.0006,
+ "loss": 6.746084213256836,
+ "step": 134
+ },
+ {
+ "epoch": 1.8803493449781659,
+ "grad_norm": 0.013010316528379917,
+ "learning_rate": 0.0006,
+ "loss": 6.725405693054199,
+ "step": 135
+ },
+ {
+ "epoch": 1.8943231441048036,
+ "grad_norm": 0.011892660520970821,
+ "learning_rate": 0.0006,
+ "loss": 6.718758583068848,
+ "step": 136
+ },
+ {
+ "epoch": 1.908296943231441,
+ "grad_norm": 0.012127497233450413,
+ "learning_rate": 0.0006,
+ "loss": 6.708139419555664,
+ "step": 137
+ },
+ {
+ "epoch": 1.9222707423580787,
+ "grad_norm": 0.015417213551700115,
+ "learning_rate": 0.0006,
+ "loss": 6.705748558044434,
+ "step": 138
+ },
+ {
+ "epoch": 1.936244541484716,
+ "grad_norm": 0.03063729591667652,
+ "learning_rate": 0.0006,
+ "loss": 6.691249847412109,
+ "step": 139
+ },
+ {
+ "epoch": 1.9502183406113538,
+ "grad_norm": 0.07376791536808014,
+ "learning_rate": 0.0006,
+ "loss": 6.71767520904541,
+ "step": 140
+ },
+ {
+ "epoch": 1.9641921397379911,
+ "grad_norm": 0.14157423377037048,
+ "learning_rate": 0.0006,
+ "loss": 6.787544250488281,
+ "step": 141
+ },
+ {
+ "epoch": 1.9781659388646289,
+ "grad_norm": 0.09186933934688568,
+ "learning_rate": 0.0006,
+ "loss": 6.73362398147583,
+ "step": 142
+ },
+ {
+ "epoch": 1.9921397379912664,
+ "grad_norm": 0.06612848490476608,
+ "learning_rate": 0.0006,
+ "loss": 6.719516754150391,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.048072297126054764,
+ "learning_rate": 0.0006,
+ "loss": 6.666120529174805,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 6.7162394523620605,
+ "eval_runtime": 50.5907,
+ "eval_samples_per_second": 48.27,
+ "eval_steps_per_second": 1.522,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139737991266378,
+ "grad_norm": 0.03777749463915825,
+ "learning_rate": 0.0006,
+ "loss": 6.686484336853027,
+ "step": 145
+ },
+ {
+ "epoch": 2.027947598253275,
+ "grad_norm": 0.04378646984696388,
+ "learning_rate": 0.0006,
+ "loss": 6.679071426391602,
+ "step": 146
+ },
+ {
+ "epoch": 2.041921397379913,
+ "grad_norm": 0.027715124189853668,
+ "learning_rate": 0.0006,
+ "loss": 6.6776323318481445,
+ "step": 147
+ },
+ {
+ "epoch": 2.05589519650655,
+ "grad_norm": 0.03411925211548805,
+ "learning_rate": 0.0006,
+ "loss": 6.643917083740234,
+ "step": 148
+ },
+ {
+ "epoch": 2.069868995633188,
+ "grad_norm": 0.034444212913513184,
+ "learning_rate": 0.0006,
+ "loss": 6.67141056060791,
+ "step": 149
+ },
+ {
+ "epoch": 2.0838427947598253,
+ "grad_norm": 0.0387650802731514,
+ "learning_rate": 0.0006,
+ "loss": 6.65234375,
+ "step": 150
+ },
+ {
+ "epoch": 2.097816593886463,
+ "grad_norm": 0.03921861574053764,
+ "learning_rate": 0.0006,
+ "loss": 6.624712944030762,
+ "step": 151
+ },
+ {
+ "epoch": 2.1117903930131003,
+ "grad_norm": 0.02531580813229084,
+ "learning_rate": 0.0006,
+ "loss": 6.617608547210693,
+ "step": 152
+ },
+ {
+ "epoch": 2.125764192139738,
+ "grad_norm": 0.03220974653959274,
+ "learning_rate": 0.0006,
+ "loss": 6.587964057922363,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397379912663754,
+ "grad_norm": 0.03923291340470314,
+ "learning_rate": 0.0006,
+ "loss": 6.588845252990723,
+ "step": 154
+ },
+ {
+ "epoch": 2.153711790393013,
+ "grad_norm": 0.028337281197309494,
+ "learning_rate": 0.0006,
+ "loss": 6.5807952880859375,
+ "step": 155
+ },
+ {
+ "epoch": 2.1676855895196505,
+ "grad_norm": 0.01873156800866127,
+ "learning_rate": 0.0006,
+ "loss": 6.560453414916992,
+ "step": 156
+ },
+ {
+ "epoch": 2.1816593886462883,
+ "grad_norm": 0.027509493753314018,
+ "learning_rate": 0.0006,
+ "loss": 6.5615363121032715,
+ "step": 157
+ },
+ {
+ "epoch": 2.1956331877729256,
+ "grad_norm": 0.025428347289562225,
+ "learning_rate": 0.0006,
+ "loss": 6.5283966064453125,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096069868995634,
+ "grad_norm": 0.02118629403412342,
+ "learning_rate": 0.0006,
+ "loss": 6.526224136352539,
+ "step": 159
+ },
+ {
+ "epoch": 2.2235807860262007,
+ "grad_norm": 0.03233652561903,
+ "learning_rate": 0.0006,
+ "loss": 6.536041259765625,
+ "step": 160
+ },
+ {
+ "epoch": 2.2375545851528384,
+ "grad_norm": 0.04605546221137047,
+ "learning_rate": 0.0006,
+ "loss": 6.537662029266357,
+ "step": 161
+ },
+ {
+ "epoch": 2.251528384279476,
+ "grad_norm": 0.05192062631249428,
+ "learning_rate": 0.0006,
+ "loss": 6.551901817321777,
+ "step": 162
+ },
+ {
+ "epoch": 2.2655021834061135,
+ "grad_norm": 0.042231615632772446,
+ "learning_rate": 0.0006,
+ "loss": 6.511076927185059,
+ "step": 163
+ },
+ {
+ "epoch": 2.279475982532751,
+ "grad_norm": 0.04085887596011162,
+ "learning_rate": 0.0006,
+ "loss": 6.503472328186035,
+ "step": 164
+ },
+ {
+ "epoch": 2.2934497816593886,
+ "grad_norm": 0.031182587146759033,
+ "learning_rate": 0.0006,
+ "loss": 6.504403591156006,
+ "step": 165
+ },
+ {
+ "epoch": 2.3074235807860264,
+ "grad_norm": 0.032555561512708664,
+ "learning_rate": 0.0006,
+ "loss": 6.4552764892578125,
+ "step": 166
+ },
+ {
+ "epoch": 2.3213973799126637,
+ "grad_norm": 0.04939635097980499,
+ "learning_rate": 0.0006,
+ "loss": 6.495351791381836,
+ "step": 167
+ },
+ {
+ "epoch": 2.3353711790393015,
+ "grad_norm": 0.037503793835639954,
+ "learning_rate": 0.0006,
+ "loss": 6.4742560386657715,
+ "step": 168
+ },
+ {
+ "epoch": 2.349344978165939,
+ "grad_norm": 0.02366613782942295,
+ "learning_rate": 0.0006,
+ "loss": 6.478525161743164,
+ "step": 169
+ },
+ {
+ "epoch": 2.3633187772925766,
+ "grad_norm": 0.022314894944429398,
+ "learning_rate": 0.0006,
+ "loss": 6.414134979248047,
+ "step": 170
+ },
+ {
+ "epoch": 2.377292576419214,
+ "grad_norm": 0.030494702979922295,
+ "learning_rate": 0.0006,
+ "loss": 6.444867134094238,
+ "step": 171
+ },
+ {
+ "epoch": 2.3912663755458516,
+ "grad_norm": 0.04064486175775528,
+ "learning_rate": 0.0006,
+ "loss": 6.417036056518555,
+ "step": 172
+ },
+ {
+ "epoch": 2.405240174672489,
+ "grad_norm": 0.03061651438474655,
+ "learning_rate": 0.0006,
+ "loss": 6.423735618591309,
+ "step": 173
+ },
+ {
+ "epoch": 2.4192139737991267,
+ "grad_norm": 0.02046056278049946,
+ "learning_rate": 0.0006,
+ "loss": 6.419736862182617,
+ "step": 174
+ },
+ {
+ "epoch": 2.433187772925764,
+ "grad_norm": 0.02530163712799549,
+ "learning_rate": 0.0006,
+ "loss": 6.399930953979492,
+ "step": 175
+ },
+ {
+ "epoch": 2.447161572052402,
+ "grad_norm": 0.03588842228055,
+ "learning_rate": 0.0006,
+ "loss": 6.418618202209473,
+ "step": 176
+ },
+ {
+ "epoch": 2.461135371179039,
+ "grad_norm": 0.04048234224319458,
+ "learning_rate": 0.0006,
+ "loss": 6.390285491943359,
+ "step": 177
+ },
+ {
+ "epoch": 2.475109170305677,
+ "grad_norm": 0.039080191403627396,
+ "learning_rate": 0.0006,
+ "loss": 6.3688530921936035,
+ "step": 178
+ },
+ {
+ "epoch": 2.489082969432314,
+ "grad_norm": 0.029000122100114822,
+ "learning_rate": 0.0006,
+ "loss": 6.369181156158447,
+ "step": 179
+ },
+ {
+ "epoch": 2.503056768558952,
+ "grad_norm": 0.01609761081635952,
+ "learning_rate": 0.0006,
+ "loss": 6.359917640686035,
+ "step": 180
+ },
+ {
+ "epoch": 2.5170305676855893,
+ "grad_norm": 0.02305005118250847,
+ "learning_rate": 0.0006,
+ "loss": 6.347358226776123,
+ "step": 181
+ },
+ {
+ "epoch": 2.531004366812227,
+ "grad_norm": 0.03316781297326088,
+ "learning_rate": 0.0006,
+ "loss": 6.36626672744751,
+ "step": 182
+ },
+ {
+ "epoch": 2.544978165938865,
+ "grad_norm": 0.05111207440495491,
+ "learning_rate": 0.0006,
+ "loss": 6.380453109741211,
+ "step": 183
+ },
+ {
+ "epoch": 2.558951965065502,
+ "grad_norm": 0.062241602689027786,
+ "learning_rate": 0.0006,
+ "loss": 6.353237152099609,
+ "step": 184
+ },
+ {
+ "epoch": 2.5729257641921395,
+ "grad_norm": 0.060149725526571274,
+ "learning_rate": 0.0006,
+ "loss": 6.358938694000244,
+ "step": 185
+ },
+ {
+ "epoch": 2.5868995633187772,
+ "grad_norm": 0.04228121414780617,
+ "learning_rate": 0.0006,
+ "loss": 6.310116767883301,
+ "step": 186
+ },
+ {
+ "epoch": 2.600873362445415,
+ "grad_norm": 0.019458215683698654,
+ "learning_rate": 0.0006,
+ "loss": 6.284702777862549,
+ "step": 187
+ },
+ {
+ "epoch": 2.6148471615720523,
+ "grad_norm": 0.0342358835041523,
+ "learning_rate": 0.0006,
+ "loss": 6.316659927368164,
+ "step": 188
+ },
+ {
+ "epoch": 2.62882096069869,
+ "grad_norm": 0.04139583557844162,
+ "learning_rate": 0.0006,
+ "loss": 6.301124572753906,
+ "step": 189
+ },
+ {
+ "epoch": 2.6427947598253274,
+ "grad_norm": 0.028264787048101425,
+ "learning_rate": 0.0006,
+ "loss": 6.298510551452637,
+ "step": 190
+ },
+ {
+ "epoch": 2.656768558951965,
+ "grad_norm": 0.023622136563062668,
+ "learning_rate": 0.0006,
+ "loss": 6.2571210861206055,
+ "step": 191
+ },
+ {
+ "epoch": 2.6707423580786025,
+ "grad_norm": 0.039508845657110214,
+ "learning_rate": 0.0006,
+ "loss": 6.267218589782715,
+ "step": 192
+ },
+ {
+ "epoch": 2.6847161572052403,
+ "grad_norm": 0.043358899652957916,
+ "learning_rate": 0.0006,
+ "loss": 6.279658794403076,
+ "step": 193
+ },
+ {
+ "epoch": 2.6986899563318776,
+ "grad_norm": 0.04134640842676163,
+ "learning_rate": 0.0006,
+ "loss": 6.277159214019775,
+ "step": 194
+ },
+ {
+ "epoch": 2.7126637554585153,
+ "grad_norm": 0.05406952276825905,
+ "learning_rate": 0.0006,
+ "loss": 6.295559883117676,
+ "step": 195
+ },
+ {
+ "epoch": 2.726637554585153,
+ "grad_norm": 0.04557774215936661,
+ "learning_rate": 0.0006,
+ "loss": 6.260174751281738,
+ "step": 196
+ },
+ {
+ "epoch": 2.7406113537117904,
+ "grad_norm": 0.04542337730526924,
+ "learning_rate": 0.0006,
+ "loss": 6.244534492492676,
+ "step": 197
+ },
+ {
+ "epoch": 2.7545851528384278,
+ "grad_norm": 0.06924881041049957,
+ "learning_rate": 0.0006,
+ "loss": 6.2060723304748535,
+ "step": 198
+ },
+ {
+ "epoch": 2.7685589519650655,
+ "grad_norm": 0.06679725646972656,
+ "learning_rate": 0.0006,
+ "loss": 6.259133815765381,
+ "step": 199
+ },
+ {
+ "epoch": 2.7825327510917033,
+ "grad_norm": 0.05039471387863159,
+ "learning_rate": 0.0006,
+ "loss": 6.239280700683594,
+ "step": 200
+ },
+ {
+ "epoch": 2.7965065502183406,
+ "grad_norm": 0.05935394763946533,
+ "learning_rate": 0.0006,
+ "loss": 6.242481231689453,
+ "step": 201
+ },
+ {
+ "epoch": 2.810480349344978,
+ "grad_norm": 0.0486418716609478,
+ "learning_rate": 0.0006,
+ "loss": 6.239593505859375,
+ "step": 202
+ },
+ {
+ "epoch": 2.8244541484716157,
+ "grad_norm": 0.05010748282074928,
+ "learning_rate": 0.0006,
+ "loss": 6.2328948974609375,
+ "step": 203
+ },
+ {
+ "epoch": 2.8384279475982535,
+ "grad_norm": 0.03444438800215721,
+ "learning_rate": 0.0006,
+ "loss": 6.200089454650879,
+ "step": 204
+ },
+ {
+ "epoch": 2.8524017467248908,
+ "grad_norm": 0.043253373354673386,
+ "learning_rate": 0.0006,
+ "loss": 6.2089433670043945,
+ "step": 205
+ },
+ {
+ "epoch": 2.8663755458515285,
+ "grad_norm": 0.047505684196949005,
+ "learning_rate": 0.0006,
+ "loss": 6.220322608947754,
+ "step": 206
+ },
+ {
+ "epoch": 2.880349344978166,
+ "grad_norm": 0.04393792524933815,
+ "learning_rate": 0.0006,
+ "loss": 6.178770542144775,
+ "step": 207
+ },
+ {
+ "epoch": 2.8943231441048036,
+ "grad_norm": 0.04025835916399956,
+ "learning_rate": 0.0006,
+ "loss": 6.160248756408691,
+ "step": 208
+ },
+ {
+ "epoch": 2.908296943231441,
+ "grad_norm": 0.03877986595034599,
+ "learning_rate": 0.0006,
+ "loss": 6.164917945861816,
+ "step": 209
+ },
+ {
+ "epoch": 2.9222707423580787,
+ "grad_norm": 0.03666771203279495,
+ "learning_rate": 0.0006,
+ "loss": 6.172199249267578,
+ "step": 210
+ },
+ {
+ "epoch": 2.936244541484716,
+ "grad_norm": 0.028036516159772873,
+ "learning_rate": 0.0006,
+ "loss": 6.179510116577148,
+ "step": 211
+ },
+ {
+ "epoch": 2.950218340611354,
+ "grad_norm": 0.021492617204785347,
+ "learning_rate": 0.0006,
+ "loss": 6.1275153160095215,
+ "step": 212
+ },
+ {
+ "epoch": 2.964192139737991,
+ "grad_norm": 0.026816558092832565,
+ "learning_rate": 0.0006,
+ "loss": 6.131775856018066,
+ "step": 213
+ },
+ {
+ "epoch": 2.978165938864629,
+ "grad_norm": 0.03757898136973381,
+ "learning_rate": 0.0006,
+ "loss": 6.135777473449707,
+ "step": 214
+ },
+ {
+ "epoch": 2.992139737991266,
+ "grad_norm": 0.06036437302827835,
+ "learning_rate": 0.0006,
+ "loss": 6.146076202392578,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.09846952557563782,
+ "learning_rate": 0.0006,
+ "loss": 6.218435287475586,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.23890495300293,
+ "eval_runtime": 50.6822,
+ "eval_samples_per_second": 48.183,
+ "eval_steps_per_second": 1.519,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139737991266378,
+ "grad_norm": 0.10463741421699524,
+ "learning_rate": 0.0006,
+ "loss": 6.197120666503906,
+ "step": 217
+ },
+ {
+ "epoch": 3.027947598253275,
+ "grad_norm": 0.10212419927120209,
+ "learning_rate": 0.0006,
+ "loss": 6.178340911865234,
+ "step": 218
+ },
+ {
+ "epoch": 3.041921397379913,
+ "grad_norm": 0.08038751780986786,
+ "learning_rate": 0.0006,
+ "loss": 6.217406749725342,
+ "step": 219
+ },
+ {
+ "epoch": 3.05589519650655,
+ "grad_norm": 0.04787508398294449,
+ "learning_rate": 0.0006,
+ "loss": 6.155381679534912,
+ "step": 220
+ },
+ {
+ "epoch": 3.069868995633188,
+ "grad_norm": 0.06880322843790054,
+ "learning_rate": 0.0006,
+ "loss": 6.121614933013916,
+ "step": 221
+ },
+ {
+ "epoch": 3.0838427947598253,
+ "grad_norm": 0.03749438002705574,
+ "learning_rate": 0.0006,
+ "loss": 6.120484352111816,
+ "step": 222
+ },
+ {
+ "epoch": 3.097816593886463,
+ "grad_norm": 0.03875046223402023,
+ "learning_rate": 0.0006,
+ "loss": 6.12362003326416,
+ "step": 223
+ },
+ {
+ "epoch": 3.1117903930131003,
+ "grad_norm": 0.030663209035992622,
+ "learning_rate": 0.0006,
+ "loss": 6.1111063957214355,
+ "step": 224
+ },
+ {
+ "epoch": 3.125764192139738,
+ "grad_norm": 0.029520904645323753,
+ "learning_rate": 0.0006,
+ "loss": 6.130336761474609,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397379912663754,
+ "grad_norm": 0.02854953519999981,
+ "learning_rate": 0.0006,
+ "loss": 6.086193084716797,
+ "step": 226
+ },
+ {
+ "epoch": 3.153711790393013,
+ "grad_norm": 0.027147898450493813,
+ "learning_rate": 0.0006,
+ "loss": 6.066827774047852,
+ "step": 227
+ },
+ {
+ "epoch": 3.1676855895196505,
+ "grad_norm": 0.025577887892723083,
+ "learning_rate": 0.0006,
+ "loss": 6.070775032043457,
+ "step": 228
+ },
+ {
+ "epoch": 3.1816593886462883,
+ "grad_norm": 0.026318276301026344,
+ "learning_rate": 0.0006,
+ "loss": 6.064469814300537,
+ "step": 229
+ },
+ {
+ "epoch": 3.1956331877729256,
+ "grad_norm": 0.02595221996307373,
+ "learning_rate": 0.0006,
+ "loss": 6.066489219665527,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096069868995634,
+ "grad_norm": 0.0248890221118927,
+ "learning_rate": 0.0006,
+ "loss": 6.032470703125,
+ "step": 231
+ },
+ {
+ "epoch": 3.2235807860262007,
+ "grad_norm": 0.017041699960827827,
+ "learning_rate": 0.0006,
+ "loss": 6.056160926818848,
+ "step": 232
+ },
+ {
+ "epoch": 3.2375545851528384,
+ "grad_norm": 0.020971592515707016,
+ "learning_rate": 0.0006,
+ "loss": 6.024506568908691,
+ "step": 233
+ },
+ {
+ "epoch": 3.251528384279476,
+ "grad_norm": 0.01897028088569641,
+ "learning_rate": 0.0006,
+ "loss": 6.035656929016113,
+ "step": 234
+ },
+ {
+ "epoch": 3.2655021834061135,
+ "grad_norm": 0.027151981368660927,
+ "learning_rate": 0.0006,
+ "loss": 6.026547431945801,
+ "step": 235
+ },
+ {
+ "epoch": 3.279475982532751,
+ "grad_norm": 0.029453502967953682,
+ "learning_rate": 0.0006,
+ "loss": 5.981723785400391,
+ "step": 236
+ },
+ {
+ "epoch": 3.2934497816593886,
+ "grad_norm": 0.027771083638072014,
+ "learning_rate": 0.0006,
+ "loss": 6.019796371459961,
+ "step": 237
+ },
+ {
+ "epoch": 3.3074235807860264,
+ "grad_norm": 0.02605084516108036,
+ "learning_rate": 0.0006,
+ "loss": 5.984506607055664,
+ "step": 238
+ },
+ {
+ "epoch": 3.3213973799126637,
+ "grad_norm": 0.022903922945261,
+ "learning_rate": 0.0006,
+ "loss": 6.023873805999756,
+ "step": 239
+ },
+ {
+ "epoch": 3.3353711790393015,
+ "grad_norm": 0.01976492442190647,
+ "learning_rate": 0.0006,
+ "loss": 6.009030342102051,
+ "step": 240
+ },
+ {
+ "epoch": 3.349344978165939,
+ "grad_norm": 0.018872970715165138,
+ "learning_rate": 0.0006,
+ "loss": 5.970742702484131,
+ "step": 241
+ },
+ {
+ "epoch": 3.3633187772925766,
+ "grad_norm": 0.017447829246520996,
+ "learning_rate": 0.0006,
+ "loss": 5.968851089477539,
+ "step": 242
+ },
+ {
+ "epoch": 3.377292576419214,
+ "grad_norm": 0.025419825688004494,
+ "learning_rate": 0.0006,
+ "loss": 5.956470489501953,
+ "step": 243
+ },
+ {
+ "epoch": 3.3912663755458516,
+ "grad_norm": 0.03654123470187187,
+ "learning_rate": 0.0006,
+ "loss": 5.94770622253418,
+ "step": 244
+ },
+ {
+ "epoch": 3.405240174672489,
+ "grad_norm": 0.05607098713517189,
+ "learning_rate": 0.0006,
+ "loss": 6.008593559265137,
+ "step": 245
+ },
+ {
+ "epoch": 3.4192139737991267,
+ "grad_norm": 0.07973720878362656,
+ "learning_rate": 0.0006,
+ "loss": 5.9966888427734375,
+ "step": 246
+ },
+ {
+ "epoch": 3.433187772925764,
+ "grad_norm": 0.10906023532152176,
+ "learning_rate": 0.0006,
+ "loss": 6.054642200469971,
+ "step": 247
+ },
+ {
+ "epoch": 3.447161572052402,
+ "grad_norm": 0.09792660176753998,
+ "learning_rate": 0.0006,
+ "loss": 6.067026138305664,
+ "step": 248
+ },
+ {
+ "epoch": 3.461135371179039,
+ "grad_norm": 0.07395700365304947,
+ "learning_rate": 0.0006,
+ "loss": 6.01310920715332,
+ "step": 249
+ },
+ {
+ "epoch": 3.475109170305677,
+ "grad_norm": 0.10172071307897568,
+ "learning_rate": 0.0006,
+ "loss": 6.048509120941162,
+ "step": 250
+ },
+ {
+ "epoch": 3.489082969432314,
+ "grad_norm": 0.0717678815126419,
+ "learning_rate": 0.0006,
+ "loss": 6.055008888244629,
+ "step": 251
+ },
+ {
+ "epoch": 3.503056768558952,
+ "grad_norm": 0.06398089975118637,
+ "learning_rate": 0.0006,
+ "loss": 5.9677276611328125,
+ "step": 252
+ },
+ {
+ "epoch": 3.5170305676855893,
+ "grad_norm": 0.0643860474228859,
+ "learning_rate": 0.0006,
+ "loss": 5.957507133483887,
+ "step": 253
+ },
+ {
+ "epoch": 3.531004366812227,
+ "grad_norm": 0.03472325950860977,
+ "learning_rate": 0.0006,
+ "loss": 5.952362060546875,
+ "step": 254
+ },
+ {
+ "epoch": 3.544978165938865,
+ "grad_norm": 0.03918307647109032,
+ "learning_rate": 0.0006,
+ "loss": 5.957100868225098,
+ "step": 255
+ },
+ {
+ "epoch": 3.558951965065502,
+ "grad_norm": 0.03519073501229286,
+ "learning_rate": 0.0006,
+ "loss": 5.97830867767334,
+ "step": 256
+ },
+ {
+ "epoch": 3.5729257641921395,
+ "grad_norm": 0.03435497358441353,
+ "learning_rate": 0.0006,
+ "loss": 5.93912410736084,
+ "step": 257
+ },
+ {
+ "epoch": 3.5868995633187772,
+ "grad_norm": 0.026064487174153328,
+ "learning_rate": 0.0006,
+ "loss": 5.91353702545166,
+ "step": 258
+ },
+ {
+ "epoch": 3.600873362445415,
+ "grad_norm": 0.03159152343869209,
+ "learning_rate": 0.0006,
+ "loss": 5.913291931152344,
+ "step": 259
+ },
+ {
+ "epoch": 3.6148471615720523,
+ "grad_norm": 0.02195592038333416,
+ "learning_rate": 0.0006,
+ "loss": 5.906322479248047,
+ "step": 260
+ },
+ {
+ "epoch": 3.62882096069869,
+ "grad_norm": 0.020358966663479805,
+ "learning_rate": 0.0006,
+ "loss": 5.891860008239746,
+ "step": 261
+ },
+ {
+ "epoch": 3.6427947598253274,
+ "grad_norm": 0.01964488998055458,
+ "learning_rate": 0.0006,
+ "loss": 5.881132125854492,
+ "step": 262
+ },
+ {
+ "epoch": 3.656768558951965,
+ "grad_norm": 0.022447235882282257,
+ "learning_rate": 0.0006,
+ "loss": 5.8846940994262695,
+ "step": 263
+ },
+ {
+ "epoch": 3.6707423580786025,
+ "grad_norm": 0.018359875306487083,
+ "learning_rate": 0.0006,
+ "loss": 5.8861188888549805,
+ "step": 264
+ },
+ {
+ "epoch": 3.6847161572052403,
+ "grad_norm": 0.018481185659766197,
+ "learning_rate": 0.0006,
+ "loss": 5.874635696411133,
+ "step": 265
+ },
+ {
+ "epoch": 3.6986899563318776,
+ "grad_norm": 0.016943952068686485,
+ "learning_rate": 0.0006,
+ "loss": 5.8380126953125,
+ "step": 266
+ },
+ {
+ "epoch": 3.7126637554585153,
+ "grad_norm": 0.016593772917985916,
+ "learning_rate": 0.0006,
+ "loss": 5.855746269226074,
+ "step": 267
+ },
+ {
+ "epoch": 3.726637554585153,
+ "grad_norm": 0.018204636871814728,
+ "learning_rate": 0.0006,
+ "loss": 5.873927116394043,
+ "step": 268
+ },
+ {
+ "epoch": 3.7406113537117904,
+ "grad_norm": 0.017277248203754425,
+ "learning_rate": 0.0006,
+ "loss": 5.855231285095215,
+ "step": 269
+ },
+ {
+ "epoch": 3.7545851528384278,
+ "grad_norm": 0.01717568188905716,
+ "learning_rate": 0.0006,
+ "loss": 5.847787857055664,
+ "step": 270
+ },
+ {
+ "epoch": 3.7685589519650655,
+ "grad_norm": 0.01537331473082304,
+ "learning_rate": 0.0006,
+ "loss": 5.852605819702148,
+ "step": 271
+ },
+ {
+ "epoch": 3.7825327510917033,
+ "grad_norm": 0.01504798699170351,
+ "learning_rate": 0.0006,
+ "loss": 5.825901031494141,
+ "step": 272
+ },
+ {
+ "epoch": 3.7965065502183406,
+ "grad_norm": 0.023221664130687714,
+ "learning_rate": 0.0006,
+ "loss": 5.812404155731201,
+ "step": 273
+ },
+ {
+ "epoch": 3.810480349344978,
+ "grad_norm": 0.0397733673453331,
+ "learning_rate": 0.0006,
+ "loss": 5.804308891296387,
+ "step": 274
+ },
+ {
+ "epoch": 3.8244541484716157,
+ "grad_norm": 0.05233687534928322,
+ "learning_rate": 0.0006,
+ "loss": 5.788049697875977,
+ "step": 275
+ },
+ {
+ "epoch": 3.8384279475982535,
+ "grad_norm": 0.05563921108841896,
+ "learning_rate": 0.0006,
+ "loss": 5.811939239501953,
+ "step": 276
+ },
+ {
+ "epoch": 3.8524017467248908,
+ "grad_norm": 0.0501336008310318,
+ "learning_rate": 0.0006,
+ "loss": 5.810712814331055,
+ "step": 277
+ },
+ {
+ "epoch": 3.8663755458515285,
+ "grad_norm": 0.07601612061262131,
+ "learning_rate": 0.0006,
+ "loss": 5.846009254455566,
+ "step": 278
+ },
+ {
+ "epoch": 3.880349344978166,
+ "grad_norm": 0.07927536964416504,
+ "learning_rate": 0.0006,
+ "loss": 5.846945285797119,
+ "step": 279
+ },
+ {
+ "epoch": 3.8943231441048036,
+ "grad_norm": 0.05778975039720535,
+ "learning_rate": 0.0006,
+ "loss": 5.8009209632873535,
+ "step": 280
+ },
+ {
+ "epoch": 3.908296943231441,
+ "grad_norm": 0.06650745123624802,
+ "learning_rate": 0.0006,
+ "loss": 5.825387001037598,
+ "step": 281
+ },
+ {
+ "epoch": 3.9222707423580787,
+ "grad_norm": 0.05610830709338188,
+ "learning_rate": 0.0006,
+ "loss": 5.854207992553711,
+ "step": 282
+ },
+ {
+ "epoch": 3.936244541484716,
+ "grad_norm": 0.03054177202284336,
+ "learning_rate": 0.0006,
+ "loss": 5.8229875564575195,
+ "step": 283
+ },
+ {
+ "epoch": 3.950218340611354,
+ "grad_norm": 0.03929241746664047,
+ "learning_rate": 0.0006,
+ "loss": 5.8026041984558105,
+ "step": 284
+ },
+ {
+ "epoch": 3.964192139737991,
+ "grad_norm": 0.03007139079272747,
+ "learning_rate": 0.0006,
+ "loss": 5.7833709716796875,
+ "step": 285
+ },
+ {
+ "epoch": 3.978165938864629,
+ "grad_norm": 0.03231097757816315,
+ "learning_rate": 0.0006,
+ "loss": 5.7852091789245605,
+ "step": 286
+ },
+ {
+ "epoch": 3.992139737991266,
+ "grad_norm": 0.02939445711672306,
+ "learning_rate": 0.0006,
+ "loss": 5.753163814544678,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.02993260696530342,
+ "learning_rate": 0.0006,
+ "loss": 5.762526512145996,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 5.799882888793945,
+ "eval_runtime": 50.8936,
+ "eval_samples_per_second": 47.982,
+ "eval_steps_per_second": 1.513,
+ "step": 288
+ },
+ {
+ "epoch": 4.013973799126638,
+ "grad_norm": 0.025836583226919174,
+ "learning_rate": 0.0006,
+ "loss": 5.74060583114624,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279475982532755,
+ "grad_norm": 0.02240375429391861,
+ "learning_rate": 0.0006,
+ "loss": 5.744357109069824,
+ "step": 290
+ },
+ {
+ "epoch": 4.041921397379912,
+ "grad_norm": 0.019645314663648605,
+ "learning_rate": 0.0006,
+ "loss": 5.714840412139893,
+ "step": 291
+ },
+ {
+ "epoch": 4.05589519650655,
+ "grad_norm": 0.01903143897652626,
+ "learning_rate": 0.0006,
+ "loss": 5.749794006347656,
+ "step": 292
+ },
+ {
+ "epoch": 4.069868995633188,
+ "grad_norm": 0.020970258861780167,
+ "learning_rate": 0.0006,
+ "loss": 5.684886932373047,
+ "step": 293
+ },
+ {
+ "epoch": 4.083842794759826,
+ "grad_norm": 0.022254586219787598,
+ "learning_rate": 0.0006,
+ "loss": 5.690360069274902,
+ "step": 294
+ },
+ {
+ "epoch": 4.097816593886463,
+ "grad_norm": 0.024622811004519463,
+ "learning_rate": 0.0006,
+ "loss": 5.7078962326049805,
+ "step": 295
+ },
+ {
+ "epoch": 4.1117903930131,
+ "grad_norm": 0.023592552170157433,
+ "learning_rate": 0.0006,
+ "loss": 5.7039971351623535,
+ "step": 296
+ },
+ {
+ "epoch": 4.125764192139738,
+ "grad_norm": 0.02667587623000145,
+ "learning_rate": 0.0006,
+ "loss": 5.677852630615234,
+ "step": 297
+ },
+ {
+ "epoch": 4.139737991266376,
+ "grad_norm": 0.03330948203802109,
+ "learning_rate": 0.0006,
+ "loss": 5.688773155212402,
+ "step": 298
+ },
+ {
+ "epoch": 4.153711790393013,
+ "grad_norm": 0.045157793909311295,
+ "learning_rate": 0.0006,
+ "loss": 5.675937652587891,
+ "step": 299
+ },
+ {
+ "epoch": 4.1676855895196505,
+ "grad_norm": 0.07034408301115036,
+ "learning_rate": 0.0006,
+ "loss": 5.687074661254883,
+ "step": 300
+ },
+ {
+ "epoch": 4.181659388646288,
+ "grad_norm": 0.10193091630935669,
+ "learning_rate": 0.0006,
+ "loss": 5.748222351074219,
+ "step": 301
+ },
+ {
+ "epoch": 4.195633187772926,
+ "grad_norm": 0.09606931358575821,
+ "learning_rate": 0.0006,
+ "loss": 5.767232894897461,
+ "step": 302
+ },
+ {
+ "epoch": 4.209606986899563,
+ "grad_norm": 0.05994758382439613,
+ "learning_rate": 0.0006,
+ "loss": 5.723153114318848,
+ "step": 303
+ },
+ {
+ "epoch": 4.223580786026201,
+ "grad_norm": 0.045849986374378204,
+ "learning_rate": 0.0006,
+ "loss": 5.7005815505981445,
+ "step": 304
+ },
+ {
+ "epoch": 4.2375545851528384,
+ "grad_norm": 0.04177941009402275,
+ "learning_rate": 0.0006,
+ "loss": 5.679755210876465,
+ "step": 305
+ },
+ {
+ "epoch": 4.251528384279476,
+ "grad_norm": 0.03307238593697548,
+ "learning_rate": 0.0006,
+ "loss": 5.677393913269043,
+ "step": 306
+ },
+ {
+ "epoch": 4.265502183406113,
+ "grad_norm": 0.04340110346674919,
+ "learning_rate": 0.0006,
+ "loss": 5.702075004577637,
+ "step": 307
+ },
+ {
+ "epoch": 4.279475982532751,
+ "grad_norm": 0.04797970876097679,
+ "learning_rate": 0.0006,
+ "loss": 5.650345802307129,
+ "step": 308
+ },
+ {
+ "epoch": 4.293449781659389,
+ "grad_norm": 0.04946571961045265,
+ "learning_rate": 0.0006,
+ "loss": 5.675044059753418,
+ "step": 309
+ },
+ {
+ "epoch": 4.307423580786026,
+ "grad_norm": 0.03254636004567146,
+ "learning_rate": 0.0006,
+ "loss": 5.622986793518066,
+ "step": 310
+ },
+ {
+ "epoch": 4.321397379912664,
+ "grad_norm": 0.032069381326436996,
+ "learning_rate": 0.0006,
+ "loss": 5.629563331604004,
+ "step": 311
+ },
+ {
+ "epoch": 4.335371179039301,
+ "grad_norm": 0.033597469329833984,
+ "learning_rate": 0.0006,
+ "loss": 5.612854480743408,
+ "step": 312
+ },
+ {
+ "epoch": 4.349344978165939,
+ "grad_norm": 0.02717825584113598,
+ "learning_rate": 0.0006,
+ "loss": 5.652135372161865,
+ "step": 313
+ },
+ {
+ "epoch": 4.3633187772925766,
+ "grad_norm": 0.03312784433364868,
+ "learning_rate": 0.0006,
+ "loss": 5.649629592895508,
+ "step": 314
+ },
+ {
+ "epoch": 4.377292576419214,
+ "grad_norm": 0.03037389926612377,
+ "learning_rate": 0.0006,
+ "loss": 5.6194305419921875,
+ "step": 315
+ },
+ {
+ "epoch": 4.391266375545851,
+ "grad_norm": 0.03778672590851784,
+ "learning_rate": 0.0006,
+ "loss": 5.641755104064941,
+ "step": 316
+ },
+ {
+ "epoch": 4.405240174672489,
+ "grad_norm": 0.053473301231861115,
+ "learning_rate": 0.0006,
+ "loss": 5.621832847595215,
+ "step": 317
+ },
+ {
+ "epoch": 4.419213973799127,
+ "grad_norm": 0.06915664672851562,
+ "learning_rate": 0.0006,
+ "loss": 5.601483345031738,
+ "step": 318
+ },
+ {
+ "epoch": 4.4331877729257645,
+ "grad_norm": 0.06667220592498779,
+ "learning_rate": 0.0006,
+ "loss": 5.642349720001221,
+ "step": 319
+ },
+ {
+ "epoch": 4.447161572052401,
+ "grad_norm": 0.037290167063474655,
+ "learning_rate": 0.0006,
+ "loss": 5.604238510131836,
+ "step": 320
+ },
+ {
+ "epoch": 4.461135371179039,
+ "grad_norm": 0.04003678262233734,
+ "learning_rate": 0.0006,
+ "loss": 5.593315601348877,
+ "step": 321
+ },
+ {
+ "epoch": 4.475109170305677,
+ "grad_norm": 0.028076812624931335,
+ "learning_rate": 0.0006,
+ "loss": 5.566408157348633,
+ "step": 322
+ },
+ {
+ "epoch": 4.489082969432315,
+ "grad_norm": 0.031247343868017197,
+ "learning_rate": 0.0006,
+ "loss": 5.6215410232543945,
+ "step": 323
+ },
+ {
+ "epoch": 4.503056768558952,
+ "grad_norm": 0.02864190936088562,
+ "learning_rate": 0.0006,
+ "loss": 5.583666801452637,
+ "step": 324
+ },
+ {
+ "epoch": 4.517030567685589,
+ "grad_norm": 0.03396870568394661,
+ "learning_rate": 0.0006,
+ "loss": 5.568394184112549,
+ "step": 325
+ },
+ {
+ "epoch": 4.531004366812227,
+ "grad_norm": 0.03053557313978672,
+ "learning_rate": 0.0006,
+ "loss": 5.5704755783081055,
+ "step": 326
+ },
+ {
+ "epoch": 4.544978165938865,
+ "grad_norm": 0.039402369409799576,
+ "learning_rate": 0.0006,
+ "loss": 5.529522895812988,
+ "step": 327
+ },
+ {
+ "epoch": 4.558951965065502,
+ "grad_norm": 0.039162520319223404,
+ "learning_rate": 0.0006,
+ "loss": 5.565547466278076,
+ "step": 328
+ },
+ {
+ "epoch": 4.5729257641921395,
+ "grad_norm": 0.03071208856999874,
+ "learning_rate": 0.0006,
+ "loss": 5.551553726196289,
+ "step": 329
+ },
+ {
+ "epoch": 4.586899563318777,
+ "grad_norm": 0.0320625938475132,
+ "learning_rate": 0.0006,
+ "loss": 5.535126686096191,
+ "step": 330
+ },
+ {
+ "epoch": 4.600873362445415,
+ "grad_norm": 0.03700695186853409,
+ "learning_rate": 0.0006,
+ "loss": 5.560665130615234,
+ "step": 331
+ },
+ {
+ "epoch": 4.614847161572053,
+ "grad_norm": 0.0327119417488575,
+ "learning_rate": 0.0006,
+ "loss": 5.528924465179443,
+ "step": 332
+ },
+ {
+ "epoch": 4.62882096069869,
+ "grad_norm": 0.028552839532494545,
+ "learning_rate": 0.0006,
+ "loss": 5.520917892456055,
+ "step": 333
+ },
+ {
+ "epoch": 4.642794759825327,
+ "grad_norm": 0.029750585556030273,
+ "learning_rate": 0.0006,
+ "loss": 5.512092113494873,
+ "step": 334
+ },
+ {
+ "epoch": 4.656768558951965,
+ "grad_norm": 0.03556099906563759,
+ "learning_rate": 0.0006,
+ "loss": 5.500020503997803,
+ "step": 335
+ },
+ {
+ "epoch": 4.670742358078603,
+ "grad_norm": 0.03819836303591728,
+ "learning_rate": 0.0006,
+ "loss": 5.523126602172852,
+ "step": 336
+ },
+ {
+ "epoch": 4.68471615720524,
+ "grad_norm": 0.038457129150629044,
+ "learning_rate": 0.0006,
+ "loss": 5.497986316680908,
+ "step": 337
+ },
+ {
+ "epoch": 4.698689956331878,
+ "grad_norm": 0.049066998064517975,
+ "learning_rate": 0.0006,
+ "loss": 5.481566429138184,
+ "step": 338
+ },
+ {
+ "epoch": 4.712663755458515,
+ "grad_norm": 0.06208881363272667,
+ "learning_rate": 0.0006,
+ "loss": 5.5200581550598145,
+ "step": 339
+ },
+ {
+ "epoch": 4.726637554585153,
+ "grad_norm": 0.04952879622578621,
+ "learning_rate": 0.0006,
+ "loss": 5.528044700622559,
+ "step": 340
+ },
+ {
+ "epoch": 4.74061135371179,
+ "grad_norm": 0.046794820576906204,
+ "learning_rate": 0.0006,
+ "loss": 5.4694437980651855,
+ "step": 341
+ },
+ {
+ "epoch": 4.754585152838428,
+ "grad_norm": 0.05241665989160538,
+ "learning_rate": 0.0006,
+ "loss": 5.5203752517700195,
+ "step": 342
+ },
+ {
+ "epoch": 4.7685589519650655,
+ "grad_norm": 0.029848996549844742,
+ "learning_rate": 0.0006,
+ "loss": 5.484467506408691,
+ "step": 343
+ },
+ {
+ "epoch": 4.782532751091703,
+ "grad_norm": 0.035734955221414566,
+ "learning_rate": 0.0006,
+ "loss": 5.4982075691223145,
+ "step": 344
+ },
+ {
+ "epoch": 4.796506550218341,
+ "grad_norm": 0.03326781094074249,
+ "learning_rate": 0.0006,
+ "loss": 5.4673380851745605,
+ "step": 345
+ },
+ {
+ "epoch": 4.810480349344978,
+ "grad_norm": 0.02851971797645092,
+ "learning_rate": 0.0006,
+ "loss": 5.466347694396973,
+ "step": 346
+ },
+ {
+ "epoch": 4.824454148471616,
+ "grad_norm": 0.02881411463022232,
+ "learning_rate": 0.0006,
+ "loss": 5.4748992919921875,
+ "step": 347
+ },
+ {
+ "epoch": 4.8384279475982535,
+ "grad_norm": 0.037079520523548126,
+ "learning_rate": 0.0006,
+ "loss": 5.430629730224609,
+ "step": 348
+ },
+ {
+ "epoch": 4.85240174672489,
+ "grad_norm": 0.06697188317775726,
+ "learning_rate": 0.0006,
+ "loss": 5.48007869720459,
+ "step": 349
+ },
+ {
+ "epoch": 4.866375545851528,
+ "grad_norm": 0.08443532884120941,
+ "learning_rate": 0.0006,
+ "loss": 5.519370079040527,
+ "step": 350
+ },
+ {
+ "epoch": 4.880349344978166,
+ "grad_norm": 0.0594899021089077,
+ "learning_rate": 0.0006,
+ "loss": 5.502467155456543,
+ "step": 351
+ },
+ {
+ "epoch": 4.894323144104804,
+ "grad_norm": 0.045731619000434875,
+ "learning_rate": 0.0006,
+ "loss": 5.48048210144043,
+ "step": 352
+ },
+ {
+ "epoch": 4.908296943231441,
+ "grad_norm": 0.02911028079688549,
+ "learning_rate": 0.0006,
+ "loss": 5.45798921585083,
+ "step": 353
+ },
+ {
+ "epoch": 4.922270742358078,
+ "grad_norm": 0.03407920524477959,
+ "learning_rate": 0.0006,
+ "loss": 5.452054977416992,
+ "step": 354
+ },
+ {
+ "epoch": 4.936244541484716,
+ "grad_norm": 0.030616968870162964,
+ "learning_rate": 0.0006,
+ "loss": 5.416000843048096,
+ "step": 355
+ },
+ {
+ "epoch": 4.950218340611354,
+ "grad_norm": 0.036123789846897125,
+ "learning_rate": 0.0006,
+ "loss": 5.448460102081299,
+ "step": 356
+ },
+ {
+ "epoch": 4.964192139737992,
+ "grad_norm": 0.03511728718876839,
+ "learning_rate": 0.0006,
+ "loss": 5.4388580322265625,
+ "step": 357
+ },
+ {
+ "epoch": 4.978165938864628,
+ "grad_norm": 0.032399944961071014,
+ "learning_rate": 0.0006,
+ "loss": 5.439154624938965,
+ "step": 358
+ },
+ {
+ "epoch": 4.992139737991266,
+ "grad_norm": 0.030734507367014885,
+ "learning_rate": 0.0006,
+ "loss": 5.394845485687256,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.036368995904922485,
+ "learning_rate": 0.0006,
+ "loss": 5.4285783767700195,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.480083465576172,
+ "eval_runtime": 50.4055,
+ "eval_samples_per_second": 48.447,
+ "eval_steps_per_second": 1.528,
+ "step": 360
+ },
+ {
+ "epoch": 5.013973799126638,
+ "grad_norm": 0.04241528734564781,
+ "learning_rate": 0.0006,
+ "loss": 5.381251335144043,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279475982532755,
+ "grad_norm": 0.03248775005340576,
+ "learning_rate": 0.0006,
+ "loss": 5.37385892868042,
+ "step": 362
+ },
+ {
+ "epoch": 5.041921397379912,
+ "grad_norm": 0.034749697893857956,
+ "learning_rate": 0.0006,
+ "loss": 5.376180648803711,
+ "step": 363
+ },
+ {
+ "epoch": 5.05589519650655,
+ "grad_norm": 0.03606852516531944,
+ "learning_rate": 0.0006,
+ "loss": 5.374990940093994,
+ "step": 364
+ },
+ {
+ "epoch": 5.069868995633188,
+ "grad_norm": 0.037298817187547684,
+ "learning_rate": 0.0006,
+ "loss": 5.387371063232422,
+ "step": 365
+ },
+ {
+ "epoch": 5.083842794759826,
+ "grad_norm": 0.04082327336072922,
+ "learning_rate": 0.0006,
+ "loss": 5.389516830444336,
+ "step": 366
+ },
+ {
+ "epoch": 5.097816593886463,
+ "grad_norm": 0.04895859211683273,
+ "learning_rate": 0.0006,
+ "loss": 5.3711090087890625,
+ "step": 367
+ },
+ {
+ "epoch": 5.1117903930131,
+ "grad_norm": 0.050905536860227585,
+ "learning_rate": 0.0006,
+ "loss": 5.351629257202148,
+ "step": 368
+ },
+ {
+ "epoch": 5.125764192139738,
+ "grad_norm": 0.04349025338888168,
+ "learning_rate": 0.0006,
+ "loss": 5.348860263824463,
+ "step": 369
+ },
+ {
+ "epoch": 5.139737991266376,
+ "grad_norm": 0.04351300373673439,
+ "learning_rate": 0.0006,
+ "loss": 5.351939678192139,
+ "step": 370
+ },
+ {
+ "epoch": 5.153711790393013,
+ "grad_norm": 0.03227587044239044,
+ "learning_rate": 0.0006,
+ "loss": 5.345745086669922,
+ "step": 371
+ },
+ {
+ "epoch": 5.1676855895196505,
+ "grad_norm": 0.04331260547041893,
+ "learning_rate": 0.0006,
+ "loss": 5.316384315490723,
+ "step": 372
+ },
+ {
+ "epoch": 5.181659388646288,
+ "grad_norm": 0.0464855432510376,
+ "learning_rate": 0.0006,
+ "loss": 5.343276023864746,
+ "step": 373
+ },
+ {
+ "epoch": 5.195633187772926,
+ "grad_norm": 0.05008427053689957,
+ "learning_rate": 0.0006,
+ "loss": 5.369993209838867,
+ "step": 374
+ },
+ {
+ "epoch": 5.209606986899563,
+ "grad_norm": 0.04762439802289009,
+ "learning_rate": 0.0006,
+ "loss": 5.3458051681518555,
+ "step": 375
+ },
+ {
+ "epoch": 5.223580786026201,
+ "grad_norm": 0.04650581255555153,
+ "learning_rate": 0.0006,
+ "loss": 5.352739334106445,
+ "step": 376
+ },
+ {
+ "epoch": 5.2375545851528384,
+ "grad_norm": 0.04960601031780243,
+ "learning_rate": 0.0006,
+ "loss": 5.327419757843018,
+ "step": 377
+ },
+ {
+ "epoch": 5.251528384279476,
+ "grad_norm": 0.04186132177710533,
+ "learning_rate": 0.0006,
+ "loss": 5.319878578186035,
+ "step": 378
+ },
+ {
+ "epoch": 5.265502183406113,
+ "grad_norm": 0.0390714667737484,
+ "learning_rate": 0.0006,
+ "loss": 5.344437599182129,
+ "step": 379
+ },
+ {
+ "epoch": 5.279475982532751,
+ "grad_norm": 0.03270866721868515,
+ "learning_rate": 0.0006,
+ "loss": 5.313382148742676,
+ "step": 380
+ },
+ {
+ "epoch": 5.293449781659389,
+ "grad_norm": 0.031864266842603683,
+ "learning_rate": 0.0006,
+ "loss": 5.326592922210693,
+ "step": 381
+ },
+ {
+ "epoch": 5.307423580786026,
+ "grad_norm": 0.026960339397192,
+ "learning_rate": 0.0006,
+ "loss": 5.286443710327148,
+ "step": 382
+ },
+ {
+ "epoch": 5.321397379912664,
+ "grad_norm": 0.023257168009877205,
+ "learning_rate": 0.0006,
+ "loss": 5.291154384613037,
+ "step": 383
+ },
+ {
+ "epoch": 5.335371179039301,
+ "grad_norm": 0.024317380040884018,
+ "learning_rate": 0.0006,
+ "loss": 5.30286979675293,
+ "step": 384
+ },
+ {
+ "epoch": 5.349344978165939,
+ "grad_norm": 0.022621065378189087,
+ "learning_rate": 0.0006,
+ "loss": 5.315716743469238,
+ "step": 385
+ },
+ {
+ "epoch": 5.3633187772925766,
+ "grad_norm": 0.023142270743846893,
+ "learning_rate": 0.0006,
+ "loss": 5.30342960357666,
+ "step": 386
+ },
+ {
+ "epoch": 5.377292576419214,
+ "grad_norm": 0.023623041808605194,
+ "learning_rate": 0.0006,
+ "loss": 5.250846862792969,
+ "step": 387
+ },
+ {
+ "epoch": 5.391266375545851,
+ "grad_norm": 0.02163100801408291,
+ "learning_rate": 0.0006,
+ "loss": 5.239641189575195,
+ "step": 388
+ },
+ {
+ "epoch": 5.405240174672489,
+ "grad_norm": 0.02896741032600403,
+ "learning_rate": 0.0006,
+ "loss": 5.2592010498046875,
+ "step": 389
+ },
+ {
+ "epoch": 5.419213973799127,
+ "grad_norm": 0.03766395151615143,
+ "learning_rate": 0.0006,
+ "loss": 5.253421783447266,
+ "step": 390
+ },
+ {
+ "epoch": 5.4331877729257645,
+ "grad_norm": 0.04409803822636604,
+ "learning_rate": 0.0006,
+ "loss": 5.271892070770264,
+ "step": 391
+ },
+ {
+ "epoch": 5.447161572052401,
+ "grad_norm": 0.040245357900857925,
+ "learning_rate": 0.0006,
+ "loss": 5.259224891662598,
+ "step": 392
+ },
+ {
+ "epoch": 5.461135371179039,
+ "grad_norm": 0.04515395313501358,
+ "learning_rate": 0.0006,
+ "loss": 5.236300468444824,
+ "step": 393
+ },
+ {
+ "epoch": 5.475109170305677,
+ "grad_norm": 0.060296714305877686,
+ "learning_rate": 0.0006,
+ "loss": 5.265594959259033,
+ "step": 394
+ },
+ {
+ "epoch": 5.489082969432315,
+ "grad_norm": 0.05405225604772568,
+ "learning_rate": 0.0006,
+ "loss": 5.262340545654297,
+ "step": 395
+ },
+ {
+ "epoch": 5.503056768558952,
+ "grad_norm": 0.0568138062953949,
+ "learning_rate": 0.0006,
+ "loss": 5.239948749542236,
+ "step": 396
+ },
+ {
+ "epoch": 5.517030567685589,
+ "grad_norm": 0.059859342873096466,
+ "learning_rate": 0.0006,
+ "loss": 5.189077854156494,
+ "step": 397
+ },
+ {
+ "epoch": 5.531004366812227,
+ "grad_norm": 0.053871408104896545,
+ "learning_rate": 0.0006,
+ "loss": 5.270648956298828,
+ "step": 398
+ },
+ {
+ "epoch": 5.544978165938865,
+ "grad_norm": 0.06081297993659973,
+ "learning_rate": 0.0006,
+ "loss": 5.314695835113525,
+ "step": 399
+ },
+ {
+ "epoch": 5.558951965065502,
+ "grad_norm": 0.0646715834736824,
+ "learning_rate": 0.0006,
+ "loss": 5.286482810974121,
+ "step": 400
+ },
+ {
+ "epoch": 5.5729257641921395,
+ "grad_norm": 0.05934286117553711,
+ "learning_rate": 0.0006,
+ "loss": 5.247529983520508,
+ "step": 401
+ },
+ {
+ "epoch": 5.586899563318777,
+ "grad_norm": 0.05270497500896454,
+ "learning_rate": 0.0006,
+ "loss": 5.213264465332031,
+ "step": 402
+ },
+ {
+ "epoch": 5.600873362445415,
+ "grad_norm": 0.03454767167568207,
+ "learning_rate": 0.0006,
+ "loss": 5.234180450439453,
+ "step": 403
+ },
+ {
+ "epoch": 5.614847161572053,
+ "grad_norm": 0.04350962117314339,
+ "learning_rate": 0.0006,
+ "loss": 5.2320332527160645,
+ "step": 404
+ },
+ {
+ "epoch": 5.62882096069869,
+ "grad_norm": 0.04721181467175484,
+ "learning_rate": 0.0006,
+ "loss": 5.228950023651123,
+ "step": 405
+ },
+ {
+ "epoch": 5.642794759825327,
+ "grad_norm": 0.03711158409714699,
+ "learning_rate": 0.0006,
+ "loss": 5.234259605407715,
+ "step": 406
+ },
+ {
+ "epoch": 5.656768558951965,
+ "grad_norm": 0.029691185802221298,
+ "learning_rate": 0.0006,
+ "loss": 5.183767795562744,
+ "step": 407
+ },
+ {
+ "epoch": 5.670742358078603,
+ "grad_norm": 0.03253520280122757,
+ "learning_rate": 0.0006,
+ "loss": 5.224790573120117,
+ "step": 408
+ },
+ {
+ "epoch": 5.68471615720524,
+ "grad_norm": 0.026891207322478294,
+ "learning_rate": 0.0006,
+ "loss": 5.219671249389648,
+ "step": 409
+ },
+ {
+ "epoch": 5.698689956331878,
+ "grad_norm": 0.024443313479423523,
+ "learning_rate": 0.0006,
+ "loss": 5.177947044372559,
+ "step": 410
+ },
+ {
+ "epoch": 5.712663755458515,
+ "grad_norm": 0.024358445778489113,
+ "learning_rate": 0.0006,
+ "loss": 5.184648513793945,
+ "step": 411
+ },
+ {
+ "epoch": 5.726637554585153,
+ "grad_norm": 0.038056857883930206,
+ "learning_rate": 0.0006,
+ "loss": 5.213315010070801,
+ "step": 412
+ },
+ {
+ "epoch": 5.74061135371179,
+ "grad_norm": 0.05382931977510452,
+ "learning_rate": 0.0006,
+ "loss": 5.188442230224609,
+ "step": 413
+ },
+ {
+ "epoch": 5.754585152838428,
+ "grad_norm": 0.04695626348257065,
+ "learning_rate": 0.0006,
+ "loss": 5.214473724365234,
+ "step": 414
+ },
+ {
+ "epoch": 5.7685589519650655,
+ "grad_norm": 0.03373295068740845,
+ "learning_rate": 0.0006,
+ "loss": 5.187349319458008,
+ "step": 415
+ },
+ {
+ "epoch": 5.782532751091703,
+ "grad_norm": 0.04209282621741295,
+ "learning_rate": 0.0006,
+ "loss": 5.215581893920898,
+ "step": 416
+ },
+ {
+ "epoch": 5.796506550218341,
+ "grad_norm": 0.036461904644966125,
+ "learning_rate": 0.0006,
+ "loss": 5.148530006408691,
+ "step": 417
+ },
+ {
+ "epoch": 5.810480349344978,
+ "grad_norm": 0.02530442364513874,
+ "learning_rate": 0.0006,
+ "loss": 5.143393039703369,
+ "step": 418
+ },
+ {
+ "epoch": 5.824454148471616,
+ "grad_norm": 0.02545030415058136,
+ "learning_rate": 0.0006,
+ "loss": 5.167602062225342,
+ "step": 419
+ },
+ {
+ "epoch": 5.8384279475982535,
+ "grad_norm": 0.024862848222255707,
+ "learning_rate": 0.0006,
+ "loss": 5.133827209472656,
+ "step": 420
+ },
+ {
+ "epoch": 5.85240174672489,
+ "grad_norm": 0.0243727695196867,
+ "learning_rate": 0.0006,
+ "loss": 5.196236610412598,
+ "step": 421
+ },
+ {
+ "epoch": 5.866375545851528,
+ "grad_norm": 0.031052641570568085,
+ "learning_rate": 0.0006,
+ "loss": 5.163963317871094,
+ "step": 422
+ },
+ {
+ "epoch": 5.880349344978166,
+ "grad_norm": 0.03085985779762268,
+ "learning_rate": 0.0006,
+ "loss": 5.133022308349609,
+ "step": 423
+ },
+ {
+ "epoch": 5.894323144104804,
+ "grad_norm": 0.026254380121827126,
+ "learning_rate": 0.0006,
+ "loss": 5.126164436340332,
+ "step": 424
+ },
+ {
+ "epoch": 5.908296943231441,
+ "grad_norm": 0.02083180658519268,
+ "learning_rate": 0.0006,
+ "loss": 5.102797508239746,
+ "step": 425
+ },
+ {
+ "epoch": 5.922270742358078,
+ "grad_norm": 0.02210022322833538,
+ "learning_rate": 0.0006,
+ "loss": 5.079900741577148,
+ "step": 426
+ },
+ {
+ "epoch": 5.936244541484716,
+ "grad_norm": 0.024237696081399918,
+ "learning_rate": 0.0006,
+ "loss": 5.131382942199707,
+ "step": 427
+ },
+ {
+ "epoch": 5.950218340611354,
+ "grad_norm": 0.03174173831939697,
+ "learning_rate": 0.0006,
+ "loss": 5.12271785736084,
+ "step": 428
+ },
+ {
+ "epoch": 5.964192139737992,
+ "grad_norm": 0.035321734845638275,
+ "learning_rate": 0.0006,
+ "loss": 5.096363067626953,
+ "step": 429
+ },
+ {
+ "epoch": 5.978165938864628,
+ "grad_norm": 0.03945434093475342,
+ "learning_rate": 0.0006,
+ "loss": 5.104191780090332,
+ "step": 430
+ },
+ {
+ "epoch": 5.992139737991266,
+ "grad_norm": 0.03119991160929203,
+ "learning_rate": 0.0006,
+ "loss": 5.088006973266602,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.025646768510341644,
+ "learning_rate": 0.0006,
+ "loss": 5.060527801513672,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.1733880043029785,
+ "eval_runtime": 49.9632,
+ "eval_samples_per_second": 48.876,
+ "eval_steps_per_second": 1.541,
+ "step": 432
+ },
+ {
+ "epoch": 6.013973799126638,
+ "grad_norm": 0.04027649387717247,
+ "learning_rate": 0.0006,
+ "loss": 5.070117473602295,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279475982532755,
+ "grad_norm": 0.04872274026274681,
+ "learning_rate": 0.0006,
+ "loss": 5.076330184936523,
+ "step": 434
+ },
+ {
+ "epoch": 6.041921397379912,
+ "grad_norm": 0.044163160026073456,
+ "learning_rate": 0.0006,
+ "loss": 5.079638481140137,
+ "step": 435
+ },
+ {
+ "epoch": 6.05589519650655,
+ "grad_norm": 0.051925189793109894,
+ "learning_rate": 0.0006,
+ "loss": 5.077970027923584,
+ "step": 436
+ },
+ {
+ "epoch": 6.069868995633188,
+ "grad_norm": 0.06317602097988129,
+ "learning_rate": 0.0006,
+ "loss": 5.077326774597168,
+ "step": 437
+ },
+ {
+ "epoch": 6.083842794759826,
+ "grad_norm": 0.05190538242459297,
+ "learning_rate": 0.0006,
+ "loss": 5.078523635864258,
+ "step": 438
+ },
+ {
+ "epoch": 6.097816593886463,
+ "grad_norm": 0.054743602871894836,
+ "learning_rate": 0.0006,
+ "loss": 5.041546821594238,
+ "step": 439
+ },
+ {
+ "epoch": 6.1117903930131,
+ "grad_norm": 0.0473523885011673,
+ "learning_rate": 0.0006,
+ "loss": 5.055340766906738,
+ "step": 440
+ },
+ {
+ "epoch": 6.125764192139738,
+ "grad_norm": 0.04575403407216072,
+ "learning_rate": 0.0006,
+ "loss": 5.078280925750732,
+ "step": 441
+ },
+ {
+ "epoch": 6.139737991266376,
+ "grad_norm": 0.04004313051700592,
+ "learning_rate": 0.0006,
+ "loss": 5.0551252365112305,
+ "step": 442
+ },
+ {
+ "epoch": 6.153711790393013,
+ "grad_norm": 0.04324577748775482,
+ "learning_rate": 0.0006,
+ "loss": 5.052831649780273,
+ "step": 443
+ },
+ {
+ "epoch": 6.1676855895196505,
+ "grad_norm": 0.05479790270328522,
+ "learning_rate": 0.0006,
+ "loss": 5.075335502624512,
+ "step": 444
+ },
+ {
+ "epoch": 6.181659388646288,
+ "grad_norm": 0.05768252909183502,
+ "learning_rate": 0.0006,
+ "loss": 5.076082706451416,
+ "step": 445
+ },
+ {
+ "epoch": 6.195633187772926,
+ "grad_norm": 0.05240596458315849,
+ "learning_rate": 0.0006,
+ "loss": 5.058586120605469,
+ "step": 446
+ },
+ {
+ "epoch": 6.209606986899563,
+ "grad_norm": 0.0645335391163826,
+ "learning_rate": 0.0006,
+ "loss": 5.069242477416992,
+ "step": 447
+ },
+ {
+ "epoch": 6.223580786026201,
+ "grad_norm": 0.07776601612567902,
+ "learning_rate": 0.0006,
+ "loss": 5.100368499755859,
+ "step": 448
+ },
+ {
+ "epoch": 6.2375545851528384,
+ "grad_norm": 0.08278049528598785,
+ "learning_rate": 0.0006,
+ "loss": 5.109698295593262,
+ "step": 449
+ },
+ {
+ "epoch": 6.251528384279476,
+ "grad_norm": 0.07187525182962418,
+ "learning_rate": 0.0006,
+ "loss": 5.08582878112793,
+ "step": 450
+ },
+ {
+ "epoch": 6.265502183406113,
+ "grad_norm": 0.07394885271787643,
+ "learning_rate": 0.0006,
+ "loss": 5.06748628616333,
+ "step": 451
+ },
+ {
+ "epoch": 6.279475982532751,
+ "grad_norm": 0.06124480068683624,
+ "learning_rate": 0.0006,
+ "loss": 5.116754531860352,
+ "step": 452
+ },
+ {
+ "epoch": 6.293449781659389,
+ "grad_norm": 0.04062265530228615,
+ "learning_rate": 0.0006,
+ "loss": 5.04876184463501,
+ "step": 453
+ },
+ {
+ "epoch": 6.307423580786026,
+ "grad_norm": 0.04309544339776039,
+ "learning_rate": 0.0006,
+ "loss": 5.038376331329346,
+ "step": 454
+ },
+ {
+ "epoch": 6.321397379912664,
+ "grad_norm": 0.041932251304388046,
+ "learning_rate": 0.0006,
+ "loss": 5.071001052856445,
+ "step": 455
+ },
+ {
+ "epoch": 6.335371179039301,
+ "grad_norm": 0.033776845782995224,
+ "learning_rate": 0.0006,
+ "loss": 5.006098747253418,
+ "step": 456
+ },
+ {
+ "epoch": 6.349344978165939,
+ "grad_norm": 0.034641820937395096,
+ "learning_rate": 0.0006,
+ "loss": 4.992915153503418,
+ "step": 457
+ },
+ {
+ "epoch": 6.3633187772925766,
+ "grad_norm": 0.023475229740142822,
+ "learning_rate": 0.0006,
+ "loss": 5.044340133666992,
+ "step": 458
+ },
+ {
+ "epoch": 6.377292576419214,
+ "grad_norm": 0.02673504501581192,
+ "learning_rate": 0.0006,
+ "loss": 4.998212814331055,
+ "step": 459
+ },
+ {
+ "epoch": 6.391266375545851,
+ "grad_norm": 0.02482164464890957,
+ "learning_rate": 0.0006,
+ "loss": 5.010951042175293,
+ "step": 460
+ },
+ {
+ "epoch": 6.405240174672489,
+ "grad_norm": 0.022635847330093384,
+ "learning_rate": 0.0006,
+ "loss": 4.977993965148926,
+ "step": 461
+ },
+ {
+ "epoch": 6.419213973799127,
+ "grad_norm": 0.023006808012723923,
+ "learning_rate": 0.0006,
+ "loss": 4.947575569152832,
+ "step": 462
+ },
+ {
+ "epoch": 6.4331877729257645,
+ "grad_norm": 0.02624397724866867,
+ "learning_rate": 0.0006,
+ "loss": 4.977143287658691,
+ "step": 463
+ },
+ {
+ "epoch": 6.447161572052401,
+ "grad_norm": 0.03280187025666237,
+ "learning_rate": 0.0006,
+ "loss": 4.941946029663086,
+ "step": 464
+ },
+ {
+ "epoch": 6.461135371179039,
+ "grad_norm": 0.04020314663648605,
+ "learning_rate": 0.0006,
+ "loss": 4.947107315063477,
+ "step": 465
+ },
+ {
+ "epoch": 6.475109170305677,
+ "grad_norm": 0.037292513996362686,
+ "learning_rate": 0.0006,
+ "loss": 4.940674781799316,
+ "step": 466
+ },
+ {
+ "epoch": 6.489082969432315,
+ "grad_norm": 0.03219081461429596,
+ "learning_rate": 0.0006,
+ "loss": 4.945491790771484,
+ "step": 467
+ },
+ {
+ "epoch": 6.503056768558952,
+ "grad_norm": 0.034181494265794754,
+ "learning_rate": 0.0006,
+ "loss": 4.948554039001465,
+ "step": 468
+ },
+ {
+ "epoch": 6.517030567685589,
+ "grad_norm": 0.03098447248339653,
+ "learning_rate": 0.0006,
+ "loss": 4.923150062561035,
+ "step": 469
+ },
+ {
+ "epoch": 6.531004366812227,
+ "grad_norm": 0.026002254337072372,
+ "learning_rate": 0.0006,
+ "loss": 4.9629106521606445,
+ "step": 470
+ },
+ {
+ "epoch": 6.544978165938865,
+ "grad_norm": 0.02463129162788391,
+ "learning_rate": 0.0006,
+ "loss": 4.9400787353515625,
+ "step": 471
+ },
+ {
+ "epoch": 6.558951965065502,
+ "grad_norm": 0.025506779551506042,
+ "learning_rate": 0.0006,
+ "loss": 4.945688247680664,
+ "step": 472
+ },
+ {
+ "epoch": 6.5729257641921395,
+ "grad_norm": 0.021885665133595467,
+ "learning_rate": 0.0006,
+ "loss": 4.893912315368652,
+ "step": 473
+ },
+ {
+ "epoch": 6.586899563318777,
+ "grad_norm": 0.023528503254055977,
+ "learning_rate": 0.0006,
+ "loss": 4.948110580444336,
+ "step": 474
+ },
+ {
+ "epoch": 6.600873362445415,
+ "grad_norm": 0.02838003821671009,
+ "learning_rate": 0.0006,
+ "loss": 4.919154167175293,
+ "step": 475
+ },
+ {
+ "epoch": 6.614847161572053,
+ "grad_norm": 0.028782688081264496,
+ "learning_rate": 0.0006,
+ "loss": 4.89210319519043,
+ "step": 476
+ },
+ {
+ "epoch": 6.62882096069869,
+ "grad_norm": 0.02549571916460991,
+ "learning_rate": 0.0006,
+ "loss": 4.903683185577393,
+ "step": 477
+ },
+ {
+ "epoch": 6.642794759825327,
+ "grad_norm": 0.030100561678409576,
+ "learning_rate": 0.0006,
+ "loss": 4.907907485961914,
+ "step": 478
+ },
+ {
+ "epoch": 6.656768558951965,
+ "grad_norm": 0.03853096067905426,
+ "learning_rate": 0.0006,
+ "loss": 4.916140556335449,
+ "step": 479
+ },
+ {
+ "epoch": 6.670742358078603,
+ "grad_norm": 0.0367201492190361,
+ "learning_rate": 0.0006,
+ "loss": 4.882139205932617,
+ "step": 480
+ },
+ {
+ "epoch": 6.68471615720524,
+ "grad_norm": 0.034214165061712265,
+ "learning_rate": 0.0006,
+ "loss": 4.883127212524414,
+ "step": 481
+ },
+ {
+ "epoch": 6.698689956331878,
+ "grad_norm": 0.03360319137573242,
+ "learning_rate": 0.0006,
+ "loss": 4.903620719909668,
+ "step": 482
+ },
+ {
+ "epoch": 6.712663755458515,
+ "grad_norm": 0.027687804773449898,
+ "learning_rate": 0.0006,
+ "loss": 4.874878883361816,
+ "step": 483
+ },
+ {
+ "epoch": 6.726637554585153,
+ "grad_norm": 0.028244799003005028,
+ "learning_rate": 0.0006,
+ "loss": 4.877007961273193,
+ "step": 484
+ },
+ {
+ "epoch": 6.74061135371179,
+ "grad_norm": 0.027868567034602165,
+ "learning_rate": 0.0006,
+ "loss": 4.893726348876953,
+ "step": 485
+ },
+ {
+ "epoch": 6.754585152838428,
+ "grad_norm": 0.036026086658239365,
+ "learning_rate": 0.0006,
+ "loss": 4.899372577667236,
+ "step": 486
+ },
+ {
+ "epoch": 6.7685589519650655,
+ "grad_norm": 0.03497552126646042,
+ "learning_rate": 0.0006,
+ "loss": 4.8735671043396,
+ "step": 487
+ },
+ {
+ "epoch": 6.782532751091703,
+ "grad_norm": 0.027166219428181648,
+ "learning_rate": 0.0006,
+ "loss": 4.848074913024902,
+ "step": 488
+ },
+ {
+ "epoch": 6.796506550218341,
+ "grad_norm": 0.029360221698880196,
+ "learning_rate": 0.0006,
+ "loss": 4.821354389190674,
+ "step": 489
+ },
+ {
+ "epoch": 6.810480349344978,
+ "grad_norm": 0.030428793281316757,
+ "learning_rate": 0.0006,
+ "loss": 4.857872009277344,
+ "step": 490
+ },
+ {
+ "epoch": 6.824454148471616,
+ "grad_norm": 0.033143963664770126,
+ "learning_rate": 0.0006,
+ "loss": 4.8857526779174805,
+ "step": 491
+ },
+ {
+ "epoch": 6.8384279475982535,
+ "grad_norm": 0.03193509578704834,
+ "learning_rate": 0.0006,
+ "loss": 4.841046333312988,
+ "step": 492
+ },
+ {
+ "epoch": 6.85240174672489,
+ "grad_norm": 0.034551024436950684,
+ "learning_rate": 0.0006,
+ "loss": 4.857826232910156,
+ "step": 493
+ },
+ {
+ "epoch": 6.866375545851528,
+ "grad_norm": 0.04612463712692261,
+ "learning_rate": 0.0006,
+ "loss": 4.880589485168457,
+ "step": 494
+ },
+ {
+ "epoch": 6.880349344978166,
+ "grad_norm": 0.04604615643620491,
+ "learning_rate": 0.0006,
+ "loss": 4.836089134216309,
+ "step": 495
+ },
+ {
+ "epoch": 6.894323144104804,
+ "grad_norm": 0.04121214151382446,
+ "learning_rate": 0.0006,
+ "loss": 4.859458923339844,
+ "step": 496
+ },
+ {
+ "epoch": 6.908296943231441,
+ "grad_norm": 0.03569377213716507,
+ "learning_rate": 0.0006,
+ "loss": 4.846658706665039,
+ "step": 497
+ },
+ {
+ "epoch": 6.922270742358078,
+ "grad_norm": 0.03878311067819595,
+ "learning_rate": 0.0006,
+ "loss": 4.828747749328613,
+ "step": 498
+ },
+ {
+ "epoch": 6.936244541484716,
+ "grad_norm": 0.0379655621945858,
+ "learning_rate": 0.0006,
+ "loss": 4.7911152839660645,
+ "step": 499
+ },
+ {
+ "epoch": 6.950218340611354,
+ "grad_norm": 0.03329150751233101,
+ "learning_rate": 0.0006,
+ "loss": 4.8190741539001465,
+ "step": 500
+ },
+ {
+ "epoch": 6.964192139737992,
+ "grad_norm": 0.0386258140206337,
+ "learning_rate": 0.0006,
+ "loss": 4.826594352722168,
+ "step": 501
+ },
+ {
+ "epoch": 6.978165938864628,
+ "grad_norm": 0.043440066277980804,
+ "learning_rate": 0.0006,
+ "loss": 4.868552207946777,
+ "step": 502
+ },
+ {
+ "epoch": 6.992139737991266,
+ "grad_norm": 0.039522934705019,
+ "learning_rate": 0.0006,
+ "loss": 4.766866683959961,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.038620468229055405,
+ "learning_rate": 0.0006,
+ "loss": 4.828839302062988,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 4.907761573791504,
+ "eval_runtime": 49.951,
+ "eval_samples_per_second": 48.888,
+ "eval_steps_per_second": 1.542,
+ "step": 504
+ },
+ {
+ "epoch": 7.013973799126638,
+ "grad_norm": 0.040495287626981735,
+ "learning_rate": 0.0006,
+ "loss": 4.755504608154297,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279475982532755,
+ "grad_norm": 0.04684276506304741,
+ "learning_rate": 0.0006,
+ "loss": 4.79603385925293,
+ "step": 506
+ },
+ {
+ "epoch": 7.041921397379912,
+ "grad_norm": 0.057431042194366455,
+ "learning_rate": 0.0006,
+ "loss": 4.798529148101807,
+ "step": 507
+ },
+ {
+ "epoch": 7.05589519650655,
+ "grad_norm": 0.06289757043123245,
+ "learning_rate": 0.0006,
+ "loss": 4.819248199462891,
+ "step": 508
+ },
+ {
+ "epoch": 7.069868995633188,
+ "grad_norm": 0.07083664834499359,
+ "learning_rate": 0.0006,
+ "loss": 4.803141117095947,
+ "step": 509
+ },
+ {
+ "epoch": 7.083842794759826,
+ "grad_norm": 0.06081623584032059,
+ "learning_rate": 0.0006,
+ "loss": 4.743819236755371,
+ "step": 510
+ },
+ {
+ "epoch": 7.097816593886463,
+ "grad_norm": 0.05454877391457558,
+ "learning_rate": 0.0006,
+ "loss": 4.854677200317383,
+ "step": 511
+ },
+ {
+ "epoch": 7.1117903930131,
+ "grad_norm": 0.05157916992902756,
+ "learning_rate": 0.0006,
+ "loss": 4.797488212585449,
+ "step": 512
+ },
+ {
+ "epoch": 7.125764192139738,
+ "grad_norm": 0.04780645668506622,
+ "learning_rate": 0.0006,
+ "loss": 4.824231147766113,
+ "step": 513
+ },
+ {
+ "epoch": 7.139737991266376,
+ "grad_norm": 0.058745913207530975,
+ "learning_rate": 0.0006,
+ "loss": 4.79942512512207,
+ "step": 514
+ },
+ {
+ "epoch": 7.153711790393013,
+ "grad_norm": 0.07210857421159744,
+ "learning_rate": 0.0006,
+ "loss": 4.857621192932129,
+ "step": 515
+ },
+ {
+ "epoch": 7.1676855895196505,
+ "grad_norm": 0.0681944340467453,
+ "learning_rate": 0.0006,
+ "loss": 4.798557281494141,
+ "step": 516
+ },
+ {
+ "epoch": 7.181659388646288,
+ "grad_norm": 0.06716784089803696,
+ "learning_rate": 0.0006,
+ "loss": 4.81382942199707,
+ "step": 517
+ },
+ {
+ "epoch": 7.195633187772926,
+ "grad_norm": 0.0700073093175888,
+ "learning_rate": 0.0006,
+ "loss": 4.811261177062988,
+ "step": 518
+ },
+ {
+ "epoch": 7.209606986899563,
+ "grad_norm": 0.05830753222107887,
+ "learning_rate": 0.0006,
+ "loss": 4.818418025970459,
+ "step": 519
+ },
+ {
+ "epoch": 7.223580786026201,
+ "grad_norm": 0.06053008884191513,
+ "learning_rate": 0.0006,
+ "loss": 4.830060005187988,
+ "step": 520
+ },
+ {
+ "epoch": 7.2375545851528384,
+ "grad_norm": 0.04992729425430298,
+ "learning_rate": 0.0006,
+ "loss": 4.820477485656738,
+ "step": 521
+ },
+ {
+ "epoch": 7.251528384279476,
+ "grad_norm": 0.03906334191560745,
+ "learning_rate": 0.0006,
+ "loss": 4.776924133300781,
+ "step": 522
+ },
+ {
+ "epoch": 7.265502183406113,
+ "grad_norm": 0.041200339794158936,
+ "learning_rate": 0.0006,
+ "loss": 4.795502662658691,
+ "step": 523
+ },
+ {
+ "epoch": 7.279475982532751,
+ "grad_norm": 0.03866710141301155,
+ "learning_rate": 0.0006,
+ "loss": 4.748326778411865,
+ "step": 524
+ },
+ {
+ "epoch": 7.293449781659389,
+ "grad_norm": 0.03892578184604645,
+ "learning_rate": 0.0006,
+ "loss": 4.731060028076172,
+ "step": 525
+ },
+ {
+ "epoch": 7.307423580786026,
+ "grad_norm": 0.034929852932691574,
+ "learning_rate": 0.0006,
+ "loss": 4.769538879394531,
+ "step": 526
+ },
+ {
+ "epoch": 7.321397379912664,
+ "grad_norm": 0.03499983623623848,
+ "learning_rate": 0.0006,
+ "loss": 4.750111103057861,
+ "step": 527
+ },
+ {
+ "epoch": 7.335371179039301,
+ "grad_norm": 0.023694142699241638,
+ "learning_rate": 0.0006,
+ "loss": 4.741044998168945,
+ "step": 528
+ },
+ {
+ "epoch": 7.349344978165939,
+ "grad_norm": 0.02783721685409546,
+ "learning_rate": 0.0006,
+ "loss": 4.733529090881348,
+ "step": 529
+ },
+ {
+ "epoch": 7.3633187772925766,
+ "grad_norm": 0.022906454280018806,
+ "learning_rate": 0.0006,
+ "loss": 4.713002681732178,
+ "step": 530
+ },
+ {
+ "epoch": 7.377292576419214,
+ "grad_norm": 0.020011693239212036,
+ "learning_rate": 0.0006,
+ "loss": 4.6840620040893555,
+ "step": 531
+ },
+ {
+ "epoch": 7.391266375545851,
+ "grad_norm": 0.019985370337963104,
+ "learning_rate": 0.0006,
+ "loss": 4.695000171661377,
+ "step": 532
+ },
+ {
+ "epoch": 7.405240174672489,
+ "grad_norm": 0.019822653383016586,
+ "learning_rate": 0.0006,
+ "loss": 4.709036350250244,
+ "step": 533
+ },
+ {
+ "epoch": 7.419213973799127,
+ "grad_norm": 0.020615894347429276,
+ "learning_rate": 0.0006,
+ "loss": 4.679416656494141,
+ "step": 534
+ },
+ {
+ "epoch": 7.4331877729257645,
+ "grad_norm": 0.01958257146179676,
+ "learning_rate": 0.0006,
+ "loss": 4.704957008361816,
+ "step": 535
+ },
+ {
+ "epoch": 7.447161572052401,
+ "grad_norm": 0.02040509134531021,
+ "learning_rate": 0.0006,
+ "loss": 4.651505470275879,
+ "step": 536
+ },
+ {
+ "epoch": 7.461135371179039,
+ "grad_norm": 0.01626836135983467,
+ "learning_rate": 0.0006,
+ "loss": 4.694278240203857,
+ "step": 537
+ },
+ {
+ "epoch": 7.475109170305677,
+ "grad_norm": 0.01660163700580597,
+ "learning_rate": 0.0006,
+ "loss": 4.662658214569092,
+ "step": 538
+ },
+ {
+ "epoch": 7.489082969432315,
+ "grad_norm": 0.016483576968312263,
+ "learning_rate": 0.0006,
+ "loss": 4.695555686950684,
+ "step": 539
+ },
+ {
+ "epoch": 7.503056768558952,
+ "grad_norm": 0.018176909536123276,
+ "learning_rate": 0.0006,
+ "loss": 4.646458625793457,
+ "step": 540
+ },
+ {
+ "epoch": 7.517030567685589,
+ "grad_norm": 0.018314503133296967,
+ "learning_rate": 0.0006,
+ "loss": 4.643884181976318,
+ "step": 541
+ },
+ {
+ "epoch": 7.531004366812227,
+ "grad_norm": 0.016406886279582977,
+ "learning_rate": 0.0006,
+ "loss": 4.637638092041016,
+ "step": 542
+ },
+ {
+ "epoch": 7.544978165938865,
+ "grad_norm": 0.017510421574115753,
+ "learning_rate": 0.0006,
+ "loss": 4.6297926902771,
+ "step": 543
+ },
+ {
+ "epoch": 7.558951965065502,
+ "grad_norm": 0.021575570106506348,
+ "learning_rate": 0.0006,
+ "loss": 4.657093048095703,
+ "step": 544
+ },
+ {
+ "epoch": 7.5729257641921395,
+ "grad_norm": 0.024670056998729706,
+ "learning_rate": 0.0006,
+ "loss": 4.637840270996094,
+ "step": 545
+ },
+ {
+ "epoch": 7.586899563318777,
+ "grad_norm": 0.026005825027823448,
+ "learning_rate": 0.0006,
+ "loss": 4.622672080993652,
+ "step": 546
+ },
+ {
+ "epoch": 7.600873362445415,
+ "grad_norm": 0.024355988949537277,
+ "learning_rate": 0.0006,
+ "loss": 4.627206802368164,
+ "step": 547
+ },
+ {
+ "epoch": 7.614847161572053,
+ "grad_norm": 0.025826960802078247,
+ "learning_rate": 0.0006,
+ "loss": 4.616837501525879,
+ "step": 548
+ },
+ {
+ "epoch": 7.62882096069869,
+ "grad_norm": 0.02809619903564453,
+ "learning_rate": 0.0006,
+ "loss": 4.643812656402588,
+ "step": 549
+ },
+ {
+ "epoch": 7.642794759825327,
+ "grad_norm": 0.023823536932468414,
+ "learning_rate": 0.0006,
+ "loss": 4.623858451843262,
+ "step": 550
+ },
+ {
+ "epoch": 7.656768558951965,
+ "grad_norm": 0.024948647245764732,
+ "learning_rate": 0.0006,
+ "loss": 4.635528564453125,
+ "step": 551
+ },
+ {
+ "epoch": 7.670742358078603,
+ "grad_norm": 0.027852604165673256,
+ "learning_rate": 0.0006,
+ "loss": 4.606395721435547,
+ "step": 552
+ },
+ {
+ "epoch": 7.68471615720524,
+ "grad_norm": 0.031888775527477264,
+ "learning_rate": 0.0006,
+ "loss": 4.630072593688965,
+ "step": 553
+ },
+ {
+ "epoch": 7.698689956331878,
+ "grad_norm": 0.04423221945762634,
+ "learning_rate": 0.0006,
+ "loss": 4.592362880706787,
+ "step": 554
+ },
+ {
+ "epoch": 7.712663755458515,
+ "grad_norm": 0.05360350012779236,
+ "learning_rate": 0.0006,
+ "loss": 4.626799583435059,
+ "step": 555
+ },
+ {
+ "epoch": 7.726637554585153,
+ "grad_norm": 0.05218035727739334,
+ "learning_rate": 0.0006,
+ "loss": 4.591753005981445,
+ "step": 556
+ },
+ {
+ "epoch": 7.74061135371179,
+ "grad_norm": 0.04740380123257637,
+ "learning_rate": 0.0006,
+ "loss": 4.611865520477295,
+ "step": 557
+ },
+ {
+ "epoch": 7.754585152838428,
+ "grad_norm": 0.04325862228870392,
+ "learning_rate": 0.0006,
+ "loss": 4.585417747497559,
+ "step": 558
+ },
+ {
+ "epoch": 7.7685589519650655,
+ "grad_norm": 0.047380927950143814,
+ "learning_rate": 0.0006,
+ "loss": 4.595690727233887,
+ "step": 559
+ },
+ {
+ "epoch": 7.782532751091703,
+ "grad_norm": 0.05398833379149437,
+ "learning_rate": 0.0006,
+ "loss": 4.670032024383545,
+ "step": 560
+ },
+ {
+ "epoch": 7.796506550218341,
+ "grad_norm": 0.05550206080079079,
+ "learning_rate": 0.0006,
+ "loss": 4.603083610534668,
+ "step": 561
+ },
+ {
+ "epoch": 7.810480349344978,
+ "grad_norm": 0.048703186213970184,
+ "learning_rate": 0.0006,
+ "loss": 4.60882568359375,
+ "step": 562
+ },
+ {
+ "epoch": 7.824454148471616,
+ "grad_norm": 0.03849068656563759,
+ "learning_rate": 0.0006,
+ "loss": 4.600196838378906,
+ "step": 563
+ },
+ {
+ "epoch": 7.8384279475982535,
+ "grad_norm": 0.04322432354092598,
+ "learning_rate": 0.0006,
+ "loss": 4.635777473449707,
+ "step": 564
+ },
+ {
+ "epoch": 7.85240174672489,
+ "grad_norm": 0.03958692029118538,
+ "learning_rate": 0.0006,
+ "loss": 4.586699962615967,
+ "step": 565
+ },
+ {
+ "epoch": 7.866375545851528,
+ "grad_norm": 0.035496462136507034,
+ "learning_rate": 0.0006,
+ "loss": 4.602683067321777,
+ "step": 566
+ },
+ {
+ "epoch": 7.880349344978166,
+ "grad_norm": 0.038870155811309814,
+ "learning_rate": 0.0006,
+ "loss": 4.635684013366699,
+ "step": 567
+ },
+ {
+ "epoch": 7.894323144104804,
+ "grad_norm": 0.038049351423978806,
+ "learning_rate": 0.0006,
+ "loss": 4.5812602043151855,
+ "step": 568
+ },
+ {
+ "epoch": 7.908296943231441,
+ "grad_norm": 0.029217766597867012,
+ "learning_rate": 0.0006,
+ "loss": 4.560367584228516,
+ "step": 569
+ },
+ {
+ "epoch": 7.922270742358078,
+ "grad_norm": 0.028376970440149307,
+ "learning_rate": 0.0006,
+ "loss": 4.578996658325195,
+ "step": 570
+ },
+ {
+ "epoch": 7.936244541484716,
+ "grad_norm": 0.035108938813209534,
+ "learning_rate": 0.0006,
+ "loss": 4.554547309875488,
+ "step": 571
+ },
+ {
+ "epoch": 7.950218340611354,
+ "grad_norm": 0.02971036173403263,
+ "learning_rate": 0.0006,
+ "loss": 4.5761919021606445,
+ "step": 572
+ },
+ {
+ "epoch": 7.964192139737992,
+ "grad_norm": 0.02690828964114189,
+ "learning_rate": 0.0006,
+ "loss": 4.568772315979004,
+ "step": 573
+ },
+ {
+ "epoch": 7.978165938864628,
+ "grad_norm": 0.023910939693450928,
+ "learning_rate": 0.0006,
+ "loss": 4.56700325012207,
+ "step": 574
+ },
+ {
+ "epoch": 7.992139737991266,
+ "grad_norm": 0.02027987875044346,
+ "learning_rate": 0.0006,
+ "loss": 4.563353538513184,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.02621232345700264,
+ "learning_rate": 0.0006,
+ "loss": 4.52655029296875,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.659845352172852,
+ "eval_runtime": 54.5122,
+ "eval_samples_per_second": 44.797,
+ "eval_steps_per_second": 1.413,
+ "step": 576
+ },
+ {
+ "epoch": 8.013973799126637,
+ "grad_norm": 0.024295445531606674,
+ "learning_rate": 0.0006,
+ "loss": 4.514026641845703,
+ "step": 577
+ },
+ {
+ "epoch": 8.027947598253276,
+ "grad_norm": 0.029430922120809555,
+ "learning_rate": 0.0006,
+ "loss": 4.479931831359863,
+ "step": 578
+ },
+ {
+ "epoch": 8.041921397379912,
+ "grad_norm": 0.03156977519392967,
+ "learning_rate": 0.0006,
+ "loss": 4.529452323913574,
+ "step": 579
+ },
+ {
+ "epoch": 8.055895196506551,
+ "grad_norm": 0.03411492332816124,
+ "learning_rate": 0.0006,
+ "loss": 4.501816749572754,
+ "step": 580
+ },
+ {
+ "epoch": 8.069868995633188,
+ "grad_norm": 0.03944215178489685,
+ "learning_rate": 0.0006,
+ "loss": 4.503504753112793,
+ "step": 581
+ },
+ {
+ "epoch": 8.083842794759825,
+ "grad_norm": 0.04511773958802223,
+ "learning_rate": 0.0006,
+ "loss": 4.481729984283447,
+ "step": 582
+ },
+ {
+ "epoch": 8.097816593886463,
+ "grad_norm": 0.03235149383544922,
+ "learning_rate": 0.0006,
+ "loss": 4.510499954223633,
+ "step": 583
+ },
+ {
+ "epoch": 8.1117903930131,
+ "grad_norm": 0.027723919600248337,
+ "learning_rate": 0.0006,
+ "loss": 4.492958068847656,
+ "step": 584
+ },
+ {
+ "epoch": 8.125764192139737,
+ "grad_norm": 0.033535368740558624,
+ "learning_rate": 0.0006,
+ "loss": 4.480009078979492,
+ "step": 585
+ },
+ {
+ "epoch": 8.139737991266376,
+ "grad_norm": 0.03412545099854469,
+ "learning_rate": 0.0006,
+ "loss": 4.464960098266602,
+ "step": 586
+ },
+ {
+ "epoch": 8.153711790393013,
+ "grad_norm": 0.03285292908549309,
+ "learning_rate": 0.0006,
+ "loss": 4.478358745574951,
+ "step": 587
+ },
+ {
+ "epoch": 8.167685589519651,
+ "grad_norm": 0.03460532799363136,
+ "learning_rate": 0.0006,
+ "loss": 4.490439414978027,
+ "step": 588
+ },
+ {
+ "epoch": 8.181659388646288,
+ "grad_norm": 0.037275977432727814,
+ "learning_rate": 0.0006,
+ "loss": 4.473151683807373,
+ "step": 589
+ },
+ {
+ "epoch": 8.195633187772925,
+ "grad_norm": 0.03485316038131714,
+ "learning_rate": 0.0006,
+ "loss": 4.491796493530273,
+ "step": 590
+ },
+ {
+ "epoch": 8.209606986899564,
+ "grad_norm": 0.03405699506402016,
+ "learning_rate": 0.0006,
+ "loss": 4.473565101623535,
+ "step": 591
+ },
+ {
+ "epoch": 8.2235807860262,
+ "grad_norm": 0.03975093364715576,
+ "learning_rate": 0.0006,
+ "loss": 4.494463920593262,
+ "step": 592
+ },
+ {
+ "epoch": 8.237554585152838,
+ "grad_norm": 0.03563615307211876,
+ "learning_rate": 0.0006,
+ "loss": 4.458979606628418,
+ "step": 593
+ },
+ {
+ "epoch": 8.251528384279476,
+ "grad_norm": 0.037183649837970734,
+ "learning_rate": 0.0006,
+ "loss": 4.4701948165893555,
+ "step": 594
+ },
+ {
+ "epoch": 8.265502183406113,
+ "grad_norm": 0.039340466260910034,
+ "learning_rate": 0.0006,
+ "loss": 4.489675521850586,
+ "step": 595
+ },
+ {
+ "epoch": 8.279475982532752,
+ "grad_norm": 0.03162173181772232,
+ "learning_rate": 0.0006,
+ "loss": 4.422170162200928,
+ "step": 596
+ },
+ {
+ "epoch": 8.293449781659389,
+ "grad_norm": 0.03257273510098457,
+ "learning_rate": 0.0006,
+ "loss": 4.467840194702148,
+ "step": 597
+ },
+ {
+ "epoch": 8.307423580786025,
+ "grad_norm": 0.028066672384738922,
+ "learning_rate": 0.0006,
+ "loss": 4.471856117248535,
+ "step": 598
+ },
+ {
+ "epoch": 8.321397379912664,
+ "grad_norm": 0.032139431685209274,
+ "learning_rate": 0.0006,
+ "loss": 4.485661029815674,
+ "step": 599
+ },
+ {
+ "epoch": 8.335371179039301,
+ "grad_norm": 0.03333858773112297,
+ "learning_rate": 0.0006,
+ "loss": 4.411584854125977,
+ "step": 600
+ },
+ {
+ "epoch": 8.34934497816594,
+ "grad_norm": 0.03705155476927757,
+ "learning_rate": 0.0006,
+ "loss": 4.466585159301758,
+ "step": 601
+ },
+ {
+ "epoch": 8.363318777292577,
+ "grad_norm": 0.03022557683289051,
+ "learning_rate": 0.0006,
+ "loss": 4.4287428855896,
+ "step": 602
+ },
+ {
+ "epoch": 8.377292576419213,
+ "grad_norm": 0.02911069616675377,
+ "learning_rate": 0.0006,
+ "loss": 4.432306289672852,
+ "step": 603
+ },
+ {
+ "epoch": 8.391266375545852,
+ "grad_norm": 0.0332532562315464,
+ "learning_rate": 0.0006,
+ "loss": 4.446920871734619,
+ "step": 604
+ },
+ {
+ "epoch": 8.405240174672489,
+ "grad_norm": 0.028356043621897697,
+ "learning_rate": 0.0006,
+ "loss": 4.41445779800415,
+ "step": 605
+ },
+ {
+ "epoch": 8.419213973799126,
+ "grad_norm": 0.026536710560321808,
+ "learning_rate": 0.0006,
+ "loss": 4.45195198059082,
+ "step": 606
+ },
+ {
+ "epoch": 8.433187772925764,
+ "grad_norm": 0.027183571830391884,
+ "learning_rate": 0.0006,
+ "loss": 4.482472896575928,
+ "step": 607
+ },
+ {
+ "epoch": 8.447161572052401,
+ "grad_norm": 0.02418459579348564,
+ "learning_rate": 0.0006,
+ "loss": 4.407785415649414,
+ "step": 608
+ },
+ {
+ "epoch": 8.46113537117904,
+ "grad_norm": 0.03382935747504234,
+ "learning_rate": 0.0006,
+ "loss": 4.457126140594482,
+ "step": 609
+ },
+ {
+ "epoch": 8.475109170305677,
+ "grad_norm": 0.0399114228785038,
+ "learning_rate": 0.0006,
+ "loss": 4.404670238494873,
+ "step": 610
+ },
+ {
+ "epoch": 8.489082969432314,
+ "grad_norm": 0.02914121001958847,
+ "learning_rate": 0.0006,
+ "loss": 4.385491371154785,
+ "step": 611
+ },
+ {
+ "epoch": 8.503056768558952,
+ "grad_norm": 0.024029329419136047,
+ "learning_rate": 0.0006,
+ "loss": 4.3807878494262695,
+ "step": 612
+ },
+ {
+ "epoch": 8.51703056768559,
+ "grad_norm": 0.024073908105492592,
+ "learning_rate": 0.0006,
+ "loss": 4.393002033233643,
+ "step": 613
+ },
+ {
+ "epoch": 8.531004366812226,
+ "grad_norm": 0.024022364988923073,
+ "learning_rate": 0.0006,
+ "loss": 4.44310188293457,
+ "step": 614
+ },
+ {
+ "epoch": 8.544978165938865,
+ "grad_norm": 0.02552313171327114,
+ "learning_rate": 0.0006,
+ "loss": 4.370255947113037,
+ "step": 615
+ },
+ {
+ "epoch": 8.558951965065502,
+ "grad_norm": 0.022251879796385765,
+ "learning_rate": 0.0006,
+ "loss": 4.366595268249512,
+ "step": 616
+ },
+ {
+ "epoch": 8.57292576419214,
+ "grad_norm": 0.022750860080122948,
+ "learning_rate": 0.0006,
+ "loss": 4.377684116363525,
+ "step": 617
+ },
+ {
+ "epoch": 8.586899563318777,
+ "grad_norm": 0.022422555834054947,
+ "learning_rate": 0.0006,
+ "loss": 4.397234916687012,
+ "step": 618
+ },
+ {
+ "epoch": 8.600873362445414,
+ "grad_norm": 0.02737540379166603,
+ "learning_rate": 0.0006,
+ "loss": 4.406569957733154,
+ "step": 619
+ },
+ {
+ "epoch": 8.614847161572053,
+ "grad_norm": 0.0230751670897007,
+ "learning_rate": 0.0006,
+ "loss": 4.37363862991333,
+ "step": 620
+ },
+ {
+ "epoch": 8.62882096069869,
+ "grad_norm": 0.02010422758758068,
+ "learning_rate": 0.0006,
+ "loss": 4.396723747253418,
+ "step": 621
+ },
+ {
+ "epoch": 8.642794759825328,
+ "grad_norm": 0.024875663220882416,
+ "learning_rate": 0.0006,
+ "loss": 4.382737159729004,
+ "step": 622
+ },
+ {
+ "epoch": 8.656768558951965,
+ "grad_norm": 0.026101084426045418,
+ "learning_rate": 0.0006,
+ "loss": 4.376001358032227,
+ "step": 623
+ },
+ {
+ "epoch": 8.670742358078602,
+ "grad_norm": 0.026131760329008102,
+ "learning_rate": 0.0006,
+ "loss": 4.392600059509277,
+ "step": 624
+ },
+ {
+ "epoch": 8.68471615720524,
+ "grad_norm": 0.02580229938030243,
+ "learning_rate": 0.0006,
+ "loss": 4.383554458618164,
+ "step": 625
+ },
+ {
+ "epoch": 8.698689956331878,
+ "grad_norm": 0.02919621206820011,
+ "learning_rate": 0.0006,
+ "loss": 4.369998455047607,
+ "step": 626
+ },
+ {
+ "epoch": 8.712663755458514,
+ "grad_norm": 0.03268479183316231,
+ "learning_rate": 0.0006,
+ "loss": 4.364940166473389,
+ "step": 627
+ },
+ {
+ "epoch": 8.726637554585153,
+ "grad_norm": 0.031615134328603745,
+ "learning_rate": 0.0006,
+ "loss": 4.354142189025879,
+ "step": 628
+ },
+ {
+ "epoch": 8.74061135371179,
+ "grad_norm": 0.03091943822801113,
+ "learning_rate": 0.0006,
+ "loss": 4.405896186828613,
+ "step": 629
+ },
+ {
+ "epoch": 8.754585152838429,
+ "grad_norm": 0.03459984436631203,
+ "learning_rate": 0.0006,
+ "loss": 4.386331558227539,
+ "step": 630
+ },
+ {
+ "epoch": 8.768558951965066,
+ "grad_norm": 0.03276519104838371,
+ "learning_rate": 0.0006,
+ "loss": 4.351153373718262,
+ "step": 631
+ },
+ {
+ "epoch": 8.782532751091702,
+ "grad_norm": 0.03300934657454491,
+ "learning_rate": 0.0006,
+ "loss": 4.364960670471191,
+ "step": 632
+ },
+ {
+ "epoch": 8.796506550218341,
+ "grad_norm": 0.03618944436311722,
+ "learning_rate": 0.0006,
+ "loss": 4.3519134521484375,
+ "step": 633
+ },
+ {
+ "epoch": 8.810480349344978,
+ "grad_norm": 0.03368232026696205,
+ "learning_rate": 0.0006,
+ "loss": 4.374147891998291,
+ "step": 634
+ },
+ {
+ "epoch": 8.824454148471617,
+ "grad_norm": 0.03252463415265083,
+ "learning_rate": 0.0006,
+ "loss": 4.367391586303711,
+ "step": 635
+ },
+ {
+ "epoch": 8.838427947598253,
+ "grad_norm": 0.03680579736828804,
+ "learning_rate": 0.0006,
+ "loss": 4.364116191864014,
+ "step": 636
+ },
+ {
+ "epoch": 8.85240174672489,
+ "grad_norm": 0.0317164771258831,
+ "learning_rate": 0.0006,
+ "loss": 4.379790306091309,
+ "step": 637
+ },
+ {
+ "epoch": 8.866375545851529,
+ "grad_norm": 0.031701602041721344,
+ "learning_rate": 0.0006,
+ "loss": 4.353549003601074,
+ "step": 638
+ },
+ {
+ "epoch": 8.880349344978166,
+ "grad_norm": 0.029211340472102165,
+ "learning_rate": 0.0006,
+ "loss": 4.343072891235352,
+ "step": 639
+ },
+ {
+ "epoch": 8.894323144104803,
+ "grad_norm": 0.02774505503475666,
+ "learning_rate": 0.0006,
+ "loss": 4.354020118713379,
+ "step": 640
+ },
+ {
+ "epoch": 8.908296943231441,
+ "grad_norm": 0.027463624253869057,
+ "learning_rate": 0.0006,
+ "loss": 4.354701519012451,
+ "step": 641
+ },
+ {
+ "epoch": 8.922270742358078,
+ "grad_norm": 0.023732105270028114,
+ "learning_rate": 0.0006,
+ "loss": 4.347830772399902,
+ "step": 642
+ },
+ {
+ "epoch": 8.936244541484717,
+ "grad_norm": 0.02339051477611065,
+ "learning_rate": 0.0006,
+ "loss": 4.342405319213867,
+ "step": 643
+ },
+ {
+ "epoch": 8.950218340611354,
+ "grad_norm": 0.023744868114590645,
+ "learning_rate": 0.0006,
+ "loss": 4.352578163146973,
+ "step": 644
+ },
+ {
+ "epoch": 8.96419213973799,
+ "grad_norm": 0.02563423290848732,
+ "learning_rate": 0.0006,
+ "loss": 4.37408971786499,
+ "step": 645
+ },
+ {
+ "epoch": 8.97816593886463,
+ "grad_norm": 0.031334877014160156,
+ "learning_rate": 0.0006,
+ "loss": 4.309673309326172,
+ "step": 646
+ },
+ {
+ "epoch": 8.992139737991266,
+ "grad_norm": 0.03283081576228142,
+ "learning_rate": 0.0006,
+ "loss": 4.348544597625732,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.03263505920767784,
+ "learning_rate": 0.0006,
+ "loss": 4.307372093200684,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.477582931518555,
+ "eval_runtime": 50.1212,
+ "eval_samples_per_second": 48.722,
+ "eval_steps_per_second": 1.536,
+ "step": 648
+ },
+ {
+ "epoch": 9.013973799126637,
+ "grad_norm": 0.038239408284425735,
+ "learning_rate": 0.0006,
+ "loss": 4.2784552574157715,
+ "step": 649
+ },
+ {
+ "epoch": 9.027947598253276,
+ "grad_norm": 0.044226426631212234,
+ "learning_rate": 0.0006,
+ "loss": 4.332424163818359,
+ "step": 650
+ },
+ {
+ "epoch": 9.041921397379912,
+ "grad_norm": 0.04743504151701927,
+ "learning_rate": 0.0006,
+ "loss": 4.303574085235596,
+ "step": 651
+ },
+ {
+ "epoch": 9.055895196506551,
+ "grad_norm": 0.04348866268992424,
+ "learning_rate": 0.0006,
+ "loss": 4.295550346374512,
+ "step": 652
+ },
+ {
+ "epoch": 9.069868995633188,
+ "grad_norm": 0.04830600693821907,
+ "learning_rate": 0.0006,
+ "loss": 4.2577619552612305,
+ "step": 653
+ },
+ {
+ "epoch": 9.083842794759825,
+ "grad_norm": 0.05154724419116974,
+ "learning_rate": 0.0006,
+ "loss": 4.314383506774902,
+ "step": 654
+ },
+ {
+ "epoch": 9.097816593886463,
+ "grad_norm": 0.044492293149232864,
+ "learning_rate": 0.0006,
+ "loss": 4.32614803314209,
+ "step": 655
+ },
+ {
+ "epoch": 9.1117903930131,
+ "grad_norm": 0.03842560201883316,
+ "learning_rate": 0.0006,
+ "loss": 4.273819446563721,
+ "step": 656
+ },
+ {
+ "epoch": 9.125764192139737,
+ "grad_norm": 0.043655358254909515,
+ "learning_rate": 0.0006,
+ "loss": 4.334014892578125,
+ "step": 657
+ },
+ {
+ "epoch": 9.139737991266376,
+ "grad_norm": 0.051922112703323364,
+ "learning_rate": 0.0006,
+ "loss": 4.308163642883301,
+ "step": 658
+ },
+ {
+ "epoch": 9.153711790393013,
+ "grad_norm": 0.049958787858486176,
+ "learning_rate": 0.0006,
+ "loss": 4.30555534362793,
+ "step": 659
+ },
+ {
+ "epoch": 9.167685589519651,
+ "grad_norm": 0.03839104622602463,
+ "learning_rate": 0.0006,
+ "loss": 4.316109657287598,
+ "step": 660
+ },
+ {
+ "epoch": 9.181659388646288,
+ "grad_norm": 0.03898056969046593,
+ "learning_rate": 0.0006,
+ "loss": 4.308863639831543,
+ "step": 661
+ },
+ {
+ "epoch": 9.195633187772925,
+ "grad_norm": 0.028817247599363327,
+ "learning_rate": 0.0006,
+ "loss": 4.300504684448242,
+ "step": 662
+ },
+ {
+ "epoch": 9.209606986899564,
+ "grad_norm": 0.030067335814237595,
+ "learning_rate": 0.0006,
+ "loss": 4.259067535400391,
+ "step": 663
+ },
+ {
+ "epoch": 9.2235807860262,
+ "grad_norm": 0.03195219859480858,
+ "learning_rate": 0.0006,
+ "loss": 4.3144426345825195,
+ "step": 664
+ },
+ {
+ "epoch": 9.237554585152838,
+ "grad_norm": 0.03194814175367355,
+ "learning_rate": 0.0006,
+ "loss": 4.259864330291748,
+ "step": 665
+ },
+ {
+ "epoch": 9.251528384279476,
+ "grad_norm": 0.02754005789756775,
+ "learning_rate": 0.0006,
+ "loss": 4.291876316070557,
+ "step": 666
+ },
+ {
+ "epoch": 9.265502183406113,
+ "grad_norm": 0.026083929464221,
+ "learning_rate": 0.0006,
+ "loss": 4.205921649932861,
+ "step": 667
+ },
+ {
+ "epoch": 9.279475982532752,
+ "grad_norm": 0.025165516883134842,
+ "learning_rate": 0.0006,
+ "loss": 4.23714017868042,
+ "step": 668
+ },
+ {
+ "epoch": 9.293449781659389,
+ "grad_norm": 0.02380996011197567,
+ "learning_rate": 0.0006,
+ "loss": 4.263561725616455,
+ "step": 669
+ },
+ {
+ "epoch": 9.307423580786025,
+ "grad_norm": 0.025552157312631607,
+ "learning_rate": 0.0006,
+ "loss": 4.222456932067871,
+ "step": 670
+ },
+ {
+ "epoch": 9.321397379912664,
+ "grad_norm": 0.024957234039902687,
+ "learning_rate": 0.0006,
+ "loss": 4.250582695007324,
+ "step": 671
+ },
+ {
+ "epoch": 9.335371179039301,
+ "grad_norm": 0.02580283023416996,
+ "learning_rate": 0.0006,
+ "loss": 4.240250587463379,
+ "step": 672
+ },
+ {
+ "epoch": 9.34934497816594,
+ "grad_norm": 0.020701562985777855,
+ "learning_rate": 0.0006,
+ "loss": 4.222497463226318,
+ "step": 673
+ },
+ {
+ "epoch": 9.363318777292577,
+ "grad_norm": 0.021373746916651726,
+ "learning_rate": 0.0006,
+ "loss": 4.242282390594482,
+ "step": 674
+ },
+ {
+ "epoch": 9.377292576419213,
+ "grad_norm": 0.02025660127401352,
+ "learning_rate": 0.0006,
+ "loss": 4.270265579223633,
+ "step": 675
+ },
+ {
+ "epoch": 9.391266375545852,
+ "grad_norm": 0.02325408160686493,
+ "learning_rate": 0.0006,
+ "loss": 4.222276210784912,
+ "step": 676
+ },
+ {
+ "epoch": 9.405240174672489,
+ "grad_norm": 0.02470816671848297,
+ "learning_rate": 0.0006,
+ "loss": 4.238652229309082,
+ "step": 677
+ },
+ {
+ "epoch": 9.419213973799126,
+ "grad_norm": 0.02343972586095333,
+ "learning_rate": 0.0006,
+ "loss": 4.24069881439209,
+ "step": 678
+ },
+ {
+ "epoch": 9.433187772925764,
+ "grad_norm": 0.021034302189946175,
+ "learning_rate": 0.0006,
+ "loss": 4.244692802429199,
+ "step": 679
+ },
+ {
+ "epoch": 9.447161572052401,
+ "grad_norm": 0.021374190226197243,
+ "learning_rate": 0.0006,
+ "loss": 4.224084854125977,
+ "step": 680
+ },
+ {
+ "epoch": 9.46113537117904,
+ "grad_norm": 0.020527871325612068,
+ "learning_rate": 0.0006,
+ "loss": 4.262082099914551,
+ "step": 681
+ },
+ {
+ "epoch": 9.475109170305677,
+ "grad_norm": 0.01585977151989937,
+ "learning_rate": 0.0006,
+ "loss": 4.226033687591553,
+ "step": 682
+ },
+ {
+ "epoch": 9.489082969432314,
+ "grad_norm": 0.016423987224698067,
+ "learning_rate": 0.0006,
+ "loss": 4.171637535095215,
+ "step": 683
+ },
+ {
+ "epoch": 9.503056768558952,
+ "grad_norm": 0.015297142788767815,
+ "learning_rate": 0.0006,
+ "loss": 4.209469795227051,
+ "step": 684
+ },
+ {
+ "epoch": 9.51703056768559,
+ "grad_norm": 0.014817374758422375,
+ "learning_rate": 0.0006,
+ "loss": 4.216704845428467,
+ "step": 685
+ },
+ {
+ "epoch": 9.531004366812226,
+ "grad_norm": 0.015434044413268566,
+ "learning_rate": 0.0006,
+ "loss": 4.256552696228027,
+ "step": 686
+ },
+ {
+ "epoch": 9.544978165938865,
+ "grad_norm": 0.016138242557644844,
+ "learning_rate": 0.0006,
+ "loss": 4.218762397766113,
+ "step": 687
+ },
+ {
+ "epoch": 9.558951965065502,
+ "grad_norm": 0.017201369628310204,
+ "learning_rate": 0.0006,
+ "loss": 4.251995086669922,
+ "step": 688
+ },
+ {
+ "epoch": 9.57292576419214,
+ "grad_norm": 0.01714685745537281,
+ "learning_rate": 0.0006,
+ "loss": 4.219054222106934,
+ "step": 689
+ },
+ {
+ "epoch": 9.586899563318777,
+ "grad_norm": 0.020723173394799232,
+ "learning_rate": 0.0006,
+ "loss": 4.255344390869141,
+ "step": 690
+ },
+ {
+ "epoch": 9.600873362445414,
+ "grad_norm": 0.028826871886849403,
+ "learning_rate": 0.0006,
+ "loss": 4.221752166748047,
+ "step": 691
+ },
+ {
+ "epoch": 9.614847161572053,
+ "grad_norm": 0.03474748879671097,
+ "learning_rate": 0.0006,
+ "loss": 4.205111503601074,
+ "step": 692
+ },
+ {
+ "epoch": 9.62882096069869,
+ "grad_norm": 0.030536217615008354,
+ "learning_rate": 0.0006,
+ "loss": 4.232375144958496,
+ "step": 693
+ },
+ {
+ "epoch": 9.642794759825328,
+ "grad_norm": 0.03158785030245781,
+ "learning_rate": 0.0006,
+ "loss": 4.186178207397461,
+ "step": 694
+ },
+ {
+ "epoch": 9.656768558951965,
+ "grad_norm": 0.032505910843610764,
+ "learning_rate": 0.0006,
+ "loss": 4.208681106567383,
+ "step": 695
+ },
+ {
+ "epoch": 9.670742358078602,
+ "grad_norm": 0.025617435574531555,
+ "learning_rate": 0.0006,
+ "loss": 4.190085411071777,
+ "step": 696
+ },
+ {
+ "epoch": 9.68471615720524,
+ "grad_norm": 0.03047073632478714,
+ "learning_rate": 0.0006,
+ "loss": 4.210445404052734,
+ "step": 697
+ },
+ {
+ "epoch": 9.698689956331878,
+ "grad_norm": 0.033015694469213486,
+ "learning_rate": 0.0006,
+ "loss": 4.215723037719727,
+ "step": 698
+ },
+ {
+ "epoch": 9.712663755458514,
+ "grad_norm": 0.0364084430038929,
+ "learning_rate": 0.0006,
+ "loss": 4.192442417144775,
+ "step": 699
+ },
+ {
+ "epoch": 9.726637554585153,
+ "grad_norm": 0.03577317297458649,
+ "learning_rate": 0.0006,
+ "loss": 4.20793342590332,
+ "step": 700
+ },
+ {
+ "epoch": 9.74061135371179,
+ "grad_norm": 0.031464435160160065,
+ "learning_rate": 0.0006,
+ "loss": 4.205752372741699,
+ "step": 701
+ },
+ {
+ "epoch": 9.754585152838429,
+ "grad_norm": 0.030628090724349022,
+ "learning_rate": 0.0006,
+ "loss": 4.209503173828125,
+ "step": 702
+ },
+ {
+ "epoch": 9.768558951965066,
+ "grad_norm": 0.031171889975667,
+ "learning_rate": 0.0006,
+ "loss": 4.189100742340088,
+ "step": 703
+ },
+ {
+ "epoch": 9.782532751091702,
+ "grad_norm": 0.026728026568889618,
+ "learning_rate": 0.0006,
+ "loss": 4.175262928009033,
+ "step": 704
+ },
+ {
+ "epoch": 9.796506550218341,
+ "grad_norm": 0.02975568361580372,
+ "learning_rate": 0.0006,
+ "loss": 4.180237770080566,
+ "step": 705
+ },
+ {
+ "epoch": 9.810480349344978,
+ "grad_norm": 0.03690735250711441,
+ "learning_rate": 0.0006,
+ "loss": 4.160732269287109,
+ "step": 706
+ },
+ {
+ "epoch": 9.824454148471617,
+ "grad_norm": 0.03488203138113022,
+ "learning_rate": 0.0006,
+ "loss": 4.228294849395752,
+ "step": 707
+ },
+ {
+ "epoch": 9.838427947598253,
+ "grad_norm": 0.032557982951402664,
+ "learning_rate": 0.0006,
+ "loss": 4.144038200378418,
+ "step": 708
+ },
+ {
+ "epoch": 9.85240174672489,
+ "grad_norm": 0.03189995512366295,
+ "learning_rate": 0.0006,
+ "loss": 4.194624900817871,
+ "step": 709
+ },
+ {
+ "epoch": 9.866375545851529,
+ "grad_norm": 0.03439774736762047,
+ "learning_rate": 0.0006,
+ "loss": 4.216994762420654,
+ "step": 710
+ },
+ {
+ "epoch": 9.880349344978166,
+ "grad_norm": 0.03789396584033966,
+ "learning_rate": 0.0006,
+ "loss": 4.196347236633301,
+ "step": 711
+ },
+ {
+ "epoch": 9.894323144104803,
+ "grad_norm": 0.037980109453201294,
+ "learning_rate": 0.0006,
+ "loss": 4.213890075683594,
+ "step": 712
+ },
+ {
+ "epoch": 9.908296943231441,
+ "grad_norm": 0.043379005044698715,
+ "learning_rate": 0.0006,
+ "loss": 4.209582328796387,
+ "step": 713
+ },
+ {
+ "epoch": 9.922270742358078,
+ "grad_norm": 0.03881588950753212,
+ "learning_rate": 0.0006,
+ "loss": 4.210249900817871,
+ "step": 714
+ },
+ {
+ "epoch": 9.936244541484717,
+ "grad_norm": 0.038644567131996155,
+ "learning_rate": 0.0006,
+ "loss": 4.169578552246094,
+ "step": 715
+ },
+ {
+ "epoch": 9.950218340611354,
+ "grad_norm": 0.03676586598157883,
+ "learning_rate": 0.0006,
+ "loss": 4.234776020050049,
+ "step": 716
+ },
+ {
+ "epoch": 9.96419213973799,
+ "grad_norm": 0.032105959951877594,
+ "learning_rate": 0.0006,
+ "loss": 4.218995094299316,
+ "step": 717
+ },
+ {
+ "epoch": 9.97816593886463,
+ "grad_norm": 0.034359272569417953,
+ "learning_rate": 0.0006,
+ "loss": 4.209888458251953,
+ "step": 718
+ },
+ {
+ "epoch": 9.992139737991266,
+ "grad_norm": 0.02772289142012596,
+ "learning_rate": 0.0006,
+ "loss": 4.201578140258789,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.03038903884589672,
+ "learning_rate": 0.0006,
+ "loss": 4.170413494110107,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.344418048858643,
+ "eval_runtime": 50.1464,
+ "eval_samples_per_second": 48.697,
+ "eval_steps_per_second": 1.536,
+ "step": 720
+ },
+ {
+ "epoch": 10.013973799126637,
+ "grad_norm": 0.026941193267703056,
+ "learning_rate": 0.0006,
+ "loss": 4.122128486633301,
+ "step": 721
+ },
+ {
+ "epoch": 10.027947598253276,
+ "grad_norm": 0.028237640857696533,
+ "learning_rate": 0.0006,
+ "loss": 4.120541572570801,
+ "step": 722
+ },
+ {
+ "epoch": 10.041921397379912,
+ "grad_norm": 0.02316083386540413,
+ "learning_rate": 0.0006,
+ "loss": 4.127598285675049,
+ "step": 723
+ },
+ {
+ "epoch": 10.055895196506551,
+ "grad_norm": 0.02862458862364292,
+ "learning_rate": 0.0006,
+ "loss": 4.066249847412109,
+ "step": 724
+ },
+ {
+ "epoch": 10.069868995633188,
+ "grad_norm": 0.031772635877132416,
+ "learning_rate": 0.0006,
+ "loss": 4.1211652755737305,
+ "step": 725
+ },
+ {
+ "epoch": 10.083842794759825,
+ "grad_norm": 0.031032619997859,
+ "learning_rate": 0.0006,
+ "loss": 4.125894546508789,
+ "step": 726
+ },
+ {
+ "epoch": 10.097816593886463,
+ "grad_norm": 0.02898111566901207,
+ "learning_rate": 0.0006,
+ "loss": 4.119715213775635,
+ "step": 727
+ },
+ {
+ "epoch": 10.1117903930131,
+ "grad_norm": 0.030101103708148003,
+ "learning_rate": 0.0006,
+ "loss": 4.087604522705078,
+ "step": 728
+ },
+ {
+ "epoch": 10.125764192139737,
+ "grad_norm": 0.025814464315772057,
+ "learning_rate": 0.0006,
+ "loss": 4.124494552612305,
+ "step": 729
+ },
+ {
+ "epoch": 10.139737991266376,
+ "grad_norm": 0.029547641053795815,
+ "learning_rate": 0.0006,
+ "loss": 4.072463035583496,
+ "step": 730
+ },
+ {
+ "epoch": 10.153711790393013,
+ "grad_norm": 0.03424989432096481,
+ "learning_rate": 0.0006,
+ "loss": 4.111055374145508,
+ "step": 731
+ },
+ {
+ "epoch": 10.167685589519651,
+ "grad_norm": 0.0335191935300827,
+ "learning_rate": 0.0006,
+ "loss": 4.111437797546387,
+ "step": 732
+ },
+ {
+ "epoch": 10.181659388646288,
+ "grad_norm": 0.02894248627126217,
+ "learning_rate": 0.0006,
+ "loss": 4.133310317993164,
+ "step": 733
+ },
+ {
+ "epoch": 10.195633187772925,
+ "grad_norm": 0.0266376081854105,
+ "learning_rate": 0.0006,
+ "loss": 4.132228851318359,
+ "step": 734
+ },
+ {
+ "epoch": 10.209606986899564,
+ "grad_norm": 0.020824341103434563,
+ "learning_rate": 0.0006,
+ "loss": 4.110835075378418,
+ "step": 735
+ },
+ {
+ "epoch": 10.2235807860262,
+ "grad_norm": 0.021089477464556694,
+ "learning_rate": 0.0006,
+ "loss": 4.1186065673828125,
+ "step": 736
+ },
+ {
+ "epoch": 10.237554585152838,
+ "grad_norm": 0.023007674142718315,
+ "learning_rate": 0.0006,
+ "loss": 4.089912414550781,
+ "step": 737
+ },
+ {
+ "epoch": 10.251528384279476,
+ "grad_norm": 0.025911295786499977,
+ "learning_rate": 0.0006,
+ "loss": 4.10264778137207,
+ "step": 738
+ },
+ {
+ "epoch": 10.265502183406113,
+ "grad_norm": 0.02900099940598011,
+ "learning_rate": 0.0006,
+ "loss": 4.074974060058594,
+ "step": 739
+ },
+ {
+ "epoch": 10.279475982532752,
+ "grad_norm": 0.027182135730981827,
+ "learning_rate": 0.0006,
+ "loss": 4.107949256896973,
+ "step": 740
+ },
+ {
+ "epoch": 10.293449781659389,
+ "grad_norm": 0.027884794399142265,
+ "learning_rate": 0.0006,
+ "loss": 4.039497375488281,
+ "step": 741
+ },
+ {
+ "epoch": 10.307423580786025,
+ "grad_norm": 0.025900574401021004,
+ "learning_rate": 0.0006,
+ "loss": 4.063011646270752,
+ "step": 742
+ },
+ {
+ "epoch": 10.321397379912664,
+ "grad_norm": 0.023031197488307953,
+ "learning_rate": 0.0006,
+ "loss": 4.086951732635498,
+ "step": 743
+ },
+ {
+ "epoch": 10.335371179039301,
+ "grad_norm": 0.021363092586398125,
+ "learning_rate": 0.0006,
+ "loss": 4.140152454376221,
+ "step": 744
+ },
+ {
+ "epoch": 10.34934497816594,
+ "grad_norm": 0.019563496112823486,
+ "learning_rate": 0.0006,
+ "loss": 4.087207794189453,
+ "step": 745
+ },
+ {
+ "epoch": 10.363318777292577,
+ "grad_norm": 0.018893307074904442,
+ "learning_rate": 0.0006,
+ "loss": 4.087675094604492,
+ "step": 746
+ },
+ {
+ "epoch": 10.377292576419213,
+ "grad_norm": 0.020667923614382744,
+ "learning_rate": 0.0006,
+ "loss": 4.079525947570801,
+ "step": 747
+ },
+ {
+ "epoch": 10.391266375545852,
+ "grad_norm": 0.021774202585220337,
+ "learning_rate": 0.0006,
+ "loss": 4.107867240905762,
+ "step": 748
+ },
+ {
+ "epoch": 10.405240174672489,
+ "grad_norm": 0.020068392157554626,
+ "learning_rate": 0.0006,
+ "loss": 4.0873212814331055,
+ "step": 749
+ },
+ {
+ "epoch": 10.419213973799126,
+ "grad_norm": 0.01842055842280388,
+ "learning_rate": 0.0006,
+ "loss": 4.101090431213379,
+ "step": 750
+ },
+ {
+ "epoch": 10.433187772925764,
+ "grad_norm": 0.01795836165547371,
+ "learning_rate": 0.0006,
+ "loss": 4.050619602203369,
+ "step": 751
+ },
+ {
+ "epoch": 10.447161572052401,
+ "grad_norm": 0.019673889502882957,
+ "learning_rate": 0.0006,
+ "loss": 4.086307525634766,
+ "step": 752
+ },
+ {
+ "epoch": 10.46113537117904,
+ "grad_norm": 0.01977507211267948,
+ "learning_rate": 0.0006,
+ "loss": 4.0656023025512695,
+ "step": 753
+ },
+ {
+ "epoch": 10.475109170305677,
+ "grad_norm": 0.019471775740385056,
+ "learning_rate": 0.0006,
+ "loss": 4.046194076538086,
+ "step": 754
+ },
+ {
+ "epoch": 10.489082969432314,
+ "grad_norm": 0.018536966294050217,
+ "learning_rate": 0.0006,
+ "loss": 4.033197402954102,
+ "step": 755
+ },
+ {
+ "epoch": 10.503056768558952,
+ "grad_norm": 0.018902234733104706,
+ "learning_rate": 0.0006,
+ "loss": 4.060090065002441,
+ "step": 756
+ },
+ {
+ "epoch": 10.51703056768559,
+ "grad_norm": 0.01902388036251068,
+ "learning_rate": 0.0006,
+ "loss": 4.046975135803223,
+ "step": 757
+ },
+ {
+ "epoch": 10.531004366812226,
+ "grad_norm": 0.01699388213455677,
+ "learning_rate": 0.0006,
+ "loss": 4.081168174743652,
+ "step": 758
+ },
+ {
+ "epoch": 10.544978165938865,
+ "grad_norm": 0.022350501269102097,
+ "learning_rate": 0.0006,
+ "loss": 4.049786567687988,
+ "step": 759
+ },
+ {
+ "epoch": 10.558951965065502,
+ "grad_norm": 0.023642681539058685,
+ "learning_rate": 0.0006,
+ "loss": 4.055563926696777,
+ "step": 760
+ },
+ {
+ "epoch": 10.57292576419214,
+ "grad_norm": 0.02127036638557911,
+ "learning_rate": 0.0006,
+ "loss": 4.027631759643555,
+ "step": 761
+ },
+ {
+ "epoch": 10.586899563318777,
+ "grad_norm": 0.017590979114174843,
+ "learning_rate": 0.0006,
+ "loss": 4.0793137550354,
+ "step": 762
+ },
+ {
+ "epoch": 10.600873362445414,
+ "grad_norm": 0.016930999234318733,
+ "learning_rate": 0.0006,
+ "loss": 4.027737140655518,
+ "step": 763
+ },
+ {
+ "epoch": 10.614847161572053,
+ "grad_norm": 0.018824463710188866,
+ "learning_rate": 0.0006,
+ "loss": 4.046807289123535,
+ "step": 764
+ },
+ {
+ "epoch": 10.62882096069869,
+ "grad_norm": 0.020024564117193222,
+ "learning_rate": 0.0006,
+ "loss": 4.039668083190918,
+ "step": 765
+ },
+ {
+ "epoch": 10.642794759825328,
+ "grad_norm": 0.0220749881118536,
+ "learning_rate": 0.0006,
+ "loss": 4.031907558441162,
+ "step": 766
+ },
+ {
+ "epoch": 10.656768558951965,
+ "grad_norm": 0.023237163200974464,
+ "learning_rate": 0.0006,
+ "loss": 4.059335708618164,
+ "step": 767
+ },
+ {
+ "epoch": 10.670742358078602,
+ "grad_norm": 0.023948276415467262,
+ "learning_rate": 0.0006,
+ "loss": 4.054678440093994,
+ "step": 768
+ },
+ {
+ "epoch": 10.68471615720524,
+ "grad_norm": 0.02620924636721611,
+ "learning_rate": 0.0006,
+ "loss": 4.063493728637695,
+ "step": 769
+ },
+ {
+ "epoch": 10.698689956331878,
+ "grad_norm": 0.02867635153234005,
+ "learning_rate": 0.0006,
+ "loss": 4.036065578460693,
+ "step": 770
+ },
+ {
+ "epoch": 10.712663755458514,
+ "grad_norm": 0.028705662116408348,
+ "learning_rate": 0.0006,
+ "loss": 4.049670219421387,
+ "step": 771
+ },
+ {
+ "epoch": 10.726637554585153,
+ "grad_norm": 0.024740688502788544,
+ "learning_rate": 0.0006,
+ "loss": 4.06446647644043,
+ "step": 772
+ },
+ {
+ "epoch": 10.74061135371179,
+ "grad_norm": 0.03012487292289734,
+ "learning_rate": 0.0006,
+ "loss": 4.0461015701293945,
+ "step": 773
+ },
+ {
+ "epoch": 10.754585152838429,
+ "grad_norm": 0.03286127373576164,
+ "learning_rate": 0.0006,
+ "loss": 4.025463104248047,
+ "step": 774
+ },
+ {
+ "epoch": 10.768558951965066,
+ "grad_norm": 0.028815945610404015,
+ "learning_rate": 0.0006,
+ "loss": 4.064168930053711,
+ "step": 775
+ },
+ {
+ "epoch": 10.782532751091702,
+ "grad_norm": 0.028760947287082672,
+ "learning_rate": 0.0006,
+ "loss": 4.033624649047852,
+ "step": 776
+ },
+ {
+ "epoch": 10.796506550218341,
+ "grad_norm": 0.02942710369825363,
+ "learning_rate": 0.0006,
+ "loss": 4.0383501052856445,
+ "step": 777
+ },
+ {
+ "epoch": 10.810480349344978,
+ "grad_norm": 0.026153555139899254,
+ "learning_rate": 0.0006,
+ "loss": 4.040336608886719,
+ "step": 778
+ },
+ {
+ "epoch": 10.824454148471617,
+ "grad_norm": 0.025876570492982864,
+ "learning_rate": 0.0006,
+ "loss": 4.051267147064209,
+ "step": 779
+ },
+ {
+ "epoch": 10.838427947598253,
+ "grad_norm": 0.024056321009993553,
+ "learning_rate": 0.0006,
+ "loss": 4.035898208618164,
+ "step": 780
+ },
+ {
+ "epoch": 10.85240174672489,
+ "grad_norm": 0.023602450266480446,
+ "learning_rate": 0.0006,
+ "loss": 4.041120529174805,
+ "step": 781
+ },
+ {
+ "epoch": 10.866375545851529,
+ "grad_norm": 0.0207925196737051,
+ "learning_rate": 0.0006,
+ "loss": 4.030442237854004,
+ "step": 782
+ },
+ {
+ "epoch": 10.880349344978166,
+ "grad_norm": 0.021948475390672684,
+ "learning_rate": 0.0006,
+ "loss": 4.059929847717285,
+ "step": 783
+ },
+ {
+ "epoch": 10.894323144104803,
+ "grad_norm": 0.022555390372872353,
+ "learning_rate": 0.0006,
+ "loss": 4.077475547790527,
+ "step": 784
+ },
+ {
+ "epoch": 10.908296943231441,
+ "grad_norm": 0.020376233384013176,
+ "learning_rate": 0.0006,
+ "loss": 4.038033485412598,
+ "step": 785
+ },
+ {
+ "epoch": 10.922270742358078,
+ "grad_norm": 0.019903237000107765,
+ "learning_rate": 0.0006,
+ "loss": 4.036017417907715,
+ "step": 786
+ },
+ {
+ "epoch": 10.936244541484717,
+ "grad_norm": 0.019737590104341507,
+ "learning_rate": 0.0006,
+ "loss": 4.027589321136475,
+ "step": 787
+ },
+ {
+ "epoch": 10.950218340611354,
+ "grad_norm": 0.017857525497674942,
+ "learning_rate": 0.0006,
+ "loss": 4.039187431335449,
+ "step": 788
+ },
+ {
+ "epoch": 10.96419213973799,
+ "grad_norm": 0.019433340057730675,
+ "learning_rate": 0.0006,
+ "loss": 4.025817394256592,
+ "step": 789
+ },
+ {
+ "epoch": 10.97816593886463,
+ "grad_norm": 0.019131962209939957,
+ "learning_rate": 0.0006,
+ "loss": 4.050541877746582,
+ "step": 790
+ },
+ {
+ "epoch": 10.992139737991266,
+ "grad_norm": 0.01899166963994503,
+ "learning_rate": 0.0006,
+ "loss": 4.034682273864746,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.02292267233133316,
+ "learning_rate": 0.0006,
+ "loss": 4.02860689163208,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.223135471343994,
+ "eval_runtime": 50.1809,
+ "eval_samples_per_second": 48.664,
+ "eval_steps_per_second": 1.534,
+ "step": 792
+ },
+ {
+ "epoch": 11.013973799126637,
+ "grad_norm": 0.02331780269742012,
+ "learning_rate": 0.0006,
+ "loss": 3.9552907943725586,
+ "step": 793
+ },
+ {
+ "epoch": 11.027947598253276,
+ "grad_norm": 0.027006106451153755,
+ "learning_rate": 0.0006,
+ "loss": 3.9303345680236816,
+ "step": 794
+ },
+ {
+ "epoch": 11.041921397379912,
+ "grad_norm": 0.03403666242957115,
+ "learning_rate": 0.0006,
+ "loss": 3.93170166015625,
+ "step": 795
+ },
+ {
+ "epoch": 11.055895196506551,
+ "grad_norm": 0.03784231096506119,
+ "learning_rate": 0.0006,
+ "loss": 3.9460182189941406,
+ "step": 796
+ },
+ {
+ "epoch": 11.069868995633188,
+ "grad_norm": 0.036992497742176056,
+ "learning_rate": 0.0006,
+ "loss": 3.9788053035736084,
+ "step": 797
+ },
+ {
+ "epoch": 11.083842794759825,
+ "grad_norm": 0.040899068117141724,
+ "learning_rate": 0.0006,
+ "loss": 3.97415828704834,
+ "step": 798
+ },
+ {
+ "epoch": 11.097816593886463,
+ "grad_norm": 0.0333116240799427,
+ "learning_rate": 0.0006,
+ "loss": 3.9691474437713623,
+ "step": 799
+ },
+ {
+ "epoch": 11.1117903930131,
+ "grad_norm": 0.03146163746714592,
+ "learning_rate": 0.0006,
+ "loss": 3.95757794380188,
+ "step": 800
+ },
+ {
+ "epoch": 11.125764192139737,
+ "grad_norm": 0.031018080189824104,
+ "learning_rate": 0.0006,
+ "loss": 3.9483275413513184,
+ "step": 801
+ },
+ {
+ "epoch": 11.139737991266376,
+ "grad_norm": 0.03301657736301422,
+ "learning_rate": 0.0006,
+ "loss": 3.972309112548828,
+ "step": 802
+ },
+ {
+ "epoch": 11.153711790393013,
+ "grad_norm": 0.03665755316615105,
+ "learning_rate": 0.0006,
+ "loss": 3.963214874267578,
+ "step": 803
+ },
+ {
+ "epoch": 11.167685589519651,
+ "grad_norm": 0.038088612258434296,
+ "learning_rate": 0.0006,
+ "loss": 3.9526877403259277,
+ "step": 804
+ },
+ {
+ "epoch": 11.181659388646288,
+ "grad_norm": 0.035294584929943085,
+ "learning_rate": 0.0006,
+ "loss": 3.9849953651428223,
+ "step": 805
+ },
+ {
+ "epoch": 11.195633187772925,
+ "grad_norm": 0.03202495723962784,
+ "learning_rate": 0.0006,
+ "loss": 3.944120407104492,
+ "step": 806
+ },
+ {
+ "epoch": 11.209606986899564,
+ "grad_norm": 0.028670601546764374,
+ "learning_rate": 0.0006,
+ "loss": 3.9752721786499023,
+ "step": 807
+ },
+ {
+ "epoch": 11.2235807860262,
+ "grad_norm": 0.032401736825704575,
+ "learning_rate": 0.0006,
+ "loss": 3.986171245574951,
+ "step": 808
+ },
+ {
+ "epoch": 11.237554585152838,
+ "grad_norm": 0.033387646079063416,
+ "learning_rate": 0.0006,
+ "loss": 3.977919101715088,
+ "step": 809
+ },
+ {
+ "epoch": 11.251528384279476,
+ "grad_norm": 0.03134278208017349,
+ "learning_rate": 0.0006,
+ "loss": 3.9734086990356445,
+ "step": 810
+ },
+ {
+ "epoch": 11.265502183406113,
+ "grad_norm": 0.030449511483311653,
+ "learning_rate": 0.0006,
+ "loss": 3.995955228805542,
+ "step": 811
+ },
+ {
+ "epoch": 11.279475982532752,
+ "grad_norm": 0.03138570487499237,
+ "learning_rate": 0.0006,
+ "loss": 3.9690403938293457,
+ "step": 812
+ },
+ {
+ "epoch": 11.293449781659389,
+ "grad_norm": 0.03469259291887283,
+ "learning_rate": 0.0006,
+ "loss": 3.9562559127807617,
+ "step": 813
+ },
+ {
+ "epoch": 11.307423580786025,
+ "grad_norm": 0.03249761089682579,
+ "learning_rate": 0.0006,
+ "loss": 3.950381278991699,
+ "step": 814
+ },
+ {
+ "epoch": 11.321397379912664,
+ "grad_norm": 0.03012247197329998,
+ "learning_rate": 0.0006,
+ "loss": 3.9659230709075928,
+ "step": 815
+ },
+ {
+ "epoch": 11.335371179039301,
+ "grad_norm": 0.026212701573967934,
+ "learning_rate": 0.0006,
+ "loss": 3.956185817718506,
+ "step": 816
+ },
+ {
+ "epoch": 11.34934497816594,
+ "grad_norm": 0.02690894901752472,
+ "learning_rate": 0.0006,
+ "loss": 3.9513344764709473,
+ "step": 817
+ },
+ {
+ "epoch": 11.363318777292577,
+ "grad_norm": 0.02419866994023323,
+ "learning_rate": 0.0006,
+ "loss": 3.997973680496216,
+ "step": 818
+ },
+ {
+ "epoch": 11.377292576419213,
+ "grad_norm": 0.027116507291793823,
+ "learning_rate": 0.0006,
+ "loss": 3.9817705154418945,
+ "step": 819
+ },
+ {
+ "epoch": 11.391266375545852,
+ "grad_norm": 0.029049331322312355,
+ "learning_rate": 0.0006,
+ "loss": 3.951998472213745,
+ "step": 820
+ },
+ {
+ "epoch": 11.405240174672489,
+ "grad_norm": 0.026706157252192497,
+ "learning_rate": 0.0006,
+ "loss": 3.9744365215301514,
+ "step": 821
+ },
+ {
+ "epoch": 11.419213973799126,
+ "grad_norm": 0.025000600144267082,
+ "learning_rate": 0.0006,
+ "loss": 3.959059238433838,
+ "step": 822
+ },
+ {
+ "epoch": 11.433187772925764,
+ "grad_norm": 0.024861274287104607,
+ "learning_rate": 0.0006,
+ "loss": 3.9474871158599854,
+ "step": 823
+ },
+ {
+ "epoch": 11.447161572052401,
+ "grad_norm": 0.023006360977888107,
+ "learning_rate": 0.0006,
+ "loss": 3.924236297607422,
+ "step": 824
+ },
+ {
+ "epoch": 11.46113537117904,
+ "grad_norm": 0.023747073486447334,
+ "learning_rate": 0.0006,
+ "loss": 3.9383111000061035,
+ "step": 825
+ },
+ {
+ "epoch": 11.475109170305677,
+ "grad_norm": 0.027958976104855537,
+ "learning_rate": 0.0006,
+ "loss": 3.989518880844116,
+ "step": 826
+ },
+ {
+ "epoch": 11.489082969432314,
+ "grad_norm": 0.026648882776498795,
+ "learning_rate": 0.0006,
+ "loss": 3.9455833435058594,
+ "step": 827
+ },
+ {
+ "epoch": 11.503056768558952,
+ "grad_norm": 0.023990288376808167,
+ "learning_rate": 0.0006,
+ "loss": 3.9832968711853027,
+ "step": 828
+ },
+ {
+ "epoch": 11.51703056768559,
+ "grad_norm": 0.02722238190472126,
+ "learning_rate": 0.0006,
+ "loss": 3.924104690551758,
+ "step": 829
+ },
+ {
+ "epoch": 11.531004366812226,
+ "grad_norm": 0.026512466371059418,
+ "learning_rate": 0.0006,
+ "loss": 3.9410343170166016,
+ "step": 830
+ },
+ {
+ "epoch": 11.544978165938865,
+ "grad_norm": 0.022135436534881592,
+ "learning_rate": 0.0006,
+ "loss": 3.903899669647217,
+ "step": 831
+ },
+ {
+ "epoch": 11.558951965065502,
+ "grad_norm": 0.022456489503383636,
+ "learning_rate": 0.0006,
+ "loss": 3.962076187133789,
+ "step": 832
+ },
+ {
+ "epoch": 11.57292576419214,
+ "grad_norm": 0.024932855740189552,
+ "learning_rate": 0.0006,
+ "loss": 3.9023091793060303,
+ "step": 833
+ },
+ {
+ "epoch": 11.586899563318777,
+ "grad_norm": 0.02856597490608692,
+ "learning_rate": 0.0006,
+ "loss": 3.928679943084717,
+ "step": 834
+ },
+ {
+ "epoch": 11.600873362445414,
+ "grad_norm": 0.034227993339300156,
+ "learning_rate": 0.0006,
+ "loss": 3.9686708450317383,
+ "step": 835
+ },
+ {
+ "epoch": 11.614847161572053,
+ "grad_norm": 0.03348609432578087,
+ "learning_rate": 0.0006,
+ "loss": 4.001498699188232,
+ "step": 836
+ },
+ {
+ "epoch": 11.62882096069869,
+ "grad_norm": 0.028687726706266403,
+ "learning_rate": 0.0006,
+ "loss": 3.9448747634887695,
+ "step": 837
+ },
+ {
+ "epoch": 11.642794759825328,
+ "grad_norm": 0.030512670055031776,
+ "learning_rate": 0.0006,
+ "loss": 3.967744827270508,
+ "step": 838
+ },
+ {
+ "epoch": 11.656768558951965,
+ "grad_norm": 0.028223708271980286,
+ "learning_rate": 0.0006,
+ "loss": 3.937486171722412,
+ "step": 839
+ },
+ {
+ "epoch": 11.670742358078602,
+ "grad_norm": 0.026596587151288986,
+ "learning_rate": 0.0006,
+ "loss": 3.9503097534179688,
+ "step": 840
+ },
+ {
+ "epoch": 11.68471615720524,
+ "grad_norm": 0.025357289239764214,
+ "learning_rate": 0.0006,
+ "loss": 3.9005143642425537,
+ "step": 841
+ },
+ {
+ "epoch": 11.698689956331878,
+ "grad_norm": 0.027513934299349785,
+ "learning_rate": 0.0006,
+ "loss": 3.9426188468933105,
+ "step": 842
+ },
+ {
+ "epoch": 11.712663755458514,
+ "grad_norm": 0.024877114221453667,
+ "learning_rate": 0.0006,
+ "loss": 3.9422965049743652,
+ "step": 843
+ },
+ {
+ "epoch": 11.726637554585153,
+ "grad_norm": 0.024543913081288338,
+ "learning_rate": 0.0006,
+ "loss": 3.9211392402648926,
+ "step": 844
+ },
+ {
+ "epoch": 11.74061135371179,
+ "grad_norm": 0.02748306654393673,
+ "learning_rate": 0.0006,
+ "loss": 3.9308085441589355,
+ "step": 845
+ },
+ {
+ "epoch": 11.754585152838429,
+ "grad_norm": 0.02310740016400814,
+ "learning_rate": 0.0006,
+ "loss": 3.9191694259643555,
+ "step": 846
+ },
+ {
+ "epoch": 11.768558951965066,
+ "grad_norm": 0.01961519382894039,
+ "learning_rate": 0.0006,
+ "loss": 3.963473081588745,
+ "step": 847
+ },
+ {
+ "epoch": 11.782532751091702,
+ "grad_norm": 0.02019876055419445,
+ "learning_rate": 0.0006,
+ "loss": 3.9336318969726562,
+ "step": 848
+ },
+ {
+ "epoch": 11.796506550218341,
+ "grad_norm": 0.017846928909420967,
+ "learning_rate": 0.0006,
+ "loss": 3.9323928356170654,
+ "step": 849
+ },
+ {
+ "epoch": 11.810480349344978,
+ "grad_norm": 0.0204033050686121,
+ "learning_rate": 0.0006,
+ "loss": 3.9221231937408447,
+ "step": 850
+ },
+ {
+ "epoch": 11.824454148471617,
+ "grad_norm": 0.0186605304479599,
+ "learning_rate": 0.0006,
+ "loss": 3.964756965637207,
+ "step": 851
+ },
+ {
+ "epoch": 11.838427947598253,
+ "grad_norm": 0.01672505773603916,
+ "learning_rate": 0.0006,
+ "loss": 3.921032667160034,
+ "step": 852
+ },
+ {
+ "epoch": 11.85240174672489,
+ "grad_norm": 0.01734270341694355,
+ "learning_rate": 0.0006,
+ "loss": 3.9388551712036133,
+ "step": 853
+ },
+ {
+ "epoch": 11.866375545851529,
+ "grad_norm": 0.01686406321823597,
+ "learning_rate": 0.0006,
+ "loss": 3.9283366203308105,
+ "step": 854
+ },
+ {
+ "epoch": 11.880349344978166,
+ "grad_norm": 0.01593155413866043,
+ "learning_rate": 0.0006,
+ "loss": 3.9095754623413086,
+ "step": 855
+ },
+ {
+ "epoch": 11.894323144104803,
+ "grad_norm": 0.014560039155185223,
+ "learning_rate": 0.0006,
+ "loss": 3.942214012145996,
+ "step": 856
+ },
+ {
+ "epoch": 11.908296943231441,
+ "grad_norm": 0.016584530472755432,
+ "learning_rate": 0.0006,
+ "loss": 3.8745198249816895,
+ "step": 857
+ },
+ {
+ "epoch": 11.922270742358078,
+ "grad_norm": 0.016951464116573334,
+ "learning_rate": 0.0006,
+ "loss": 3.9224963188171387,
+ "step": 858
+ },
+ {
+ "epoch": 11.936244541484717,
+ "grad_norm": 0.017965901643037796,
+ "learning_rate": 0.0006,
+ "loss": 3.886237621307373,
+ "step": 859
+ },
+ {
+ "epoch": 11.950218340611354,
+ "grad_norm": 0.01874147541821003,
+ "learning_rate": 0.0006,
+ "loss": 3.9200339317321777,
+ "step": 860
+ },
+ {
+ "epoch": 11.96419213973799,
+ "grad_norm": 0.021464595571160316,
+ "learning_rate": 0.0006,
+ "loss": 3.9424729347229004,
+ "step": 861
+ },
+ {
+ "epoch": 11.97816593886463,
+ "grad_norm": 0.02506706677377224,
+ "learning_rate": 0.0006,
+ "loss": 3.9516968727111816,
+ "step": 862
+ },
+ {
+ "epoch": 11.992139737991266,
+ "grad_norm": 0.02550777979195118,
+ "learning_rate": 0.0006,
+ "loss": 3.9148871898651123,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.022032644599676132,
+ "learning_rate": 0.0006,
+ "loss": 3.934220314025879,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.146186828613281,
+ "eval_runtime": 70.9324,
+ "eval_samples_per_second": 34.427,
+ "eval_steps_per_second": 1.086,
+ "step": 864
+ },
+ {
+ "epoch": 12.013973799126637,
+ "grad_norm": 0.021564407274127007,
+ "learning_rate": 0.0006,
+ "loss": 3.8425402641296387,
+ "step": 865
+ },
+ {
+ "epoch": 12.027947598253276,
+ "grad_norm": 0.021265074610710144,
+ "learning_rate": 0.0006,
+ "loss": 3.8457272052764893,
+ "step": 866
+ },
+ {
+ "epoch": 12.041921397379912,
+ "grad_norm": 0.02154017984867096,
+ "learning_rate": 0.0006,
+ "loss": 3.810920238494873,
+ "step": 867
+ },
+ {
+ "epoch": 12.055895196506551,
+ "grad_norm": 0.020422060042619705,
+ "learning_rate": 0.0006,
+ "loss": 3.8347911834716797,
+ "step": 868
+ },
+ {
+ "epoch": 12.069868995633188,
+ "grad_norm": 0.01949428766965866,
+ "learning_rate": 0.0006,
+ "loss": 3.831073760986328,
+ "step": 869
+ },
+ {
+ "epoch": 12.083842794759825,
+ "grad_norm": 0.021055635064840317,
+ "learning_rate": 0.0006,
+ "loss": 3.8869409561157227,
+ "step": 870
+ },
+ {
+ "epoch": 12.097816593886463,
+ "grad_norm": 0.02397136203944683,
+ "learning_rate": 0.0006,
+ "loss": 3.837860107421875,
+ "step": 871
+ },
+ {
+ "epoch": 12.1117903930131,
+ "grad_norm": 0.02733064442873001,
+ "learning_rate": 0.0006,
+ "loss": 3.8453102111816406,
+ "step": 872
+ },
+ {
+ "epoch": 12.125764192139737,
+ "grad_norm": 0.03023727424442768,
+ "learning_rate": 0.0006,
+ "loss": 3.8106770515441895,
+ "step": 873
+ },
+ {
+ "epoch": 12.139737991266376,
+ "grad_norm": 0.0334315188229084,
+ "learning_rate": 0.0006,
+ "loss": 3.835714817047119,
+ "step": 874
+ },
+ {
+ "epoch": 12.153711790393013,
+ "grad_norm": 0.03233368694782257,
+ "learning_rate": 0.0006,
+ "loss": 3.8509063720703125,
+ "step": 875
+ },
+ {
+ "epoch": 12.167685589519651,
+ "grad_norm": 0.03522663936018944,
+ "learning_rate": 0.0006,
+ "loss": 3.854410171508789,
+ "step": 876
+ },
+ {
+ "epoch": 12.181659388646288,
+ "grad_norm": 0.04753761738538742,
+ "learning_rate": 0.0006,
+ "loss": 3.882387638092041,
+ "step": 877
+ },
+ {
+ "epoch": 12.195633187772925,
+ "grad_norm": 0.049719441682100296,
+ "learning_rate": 0.0006,
+ "loss": 3.8863918781280518,
+ "step": 878
+ },
+ {
+ "epoch": 12.209606986899564,
+ "grad_norm": 0.0482778400182724,
+ "learning_rate": 0.0006,
+ "loss": 3.8418054580688477,
+ "step": 879
+ },
+ {
+ "epoch": 12.2235807860262,
+ "grad_norm": 0.04967353492975235,
+ "learning_rate": 0.0006,
+ "loss": 3.88840389251709,
+ "step": 880
+ },
+ {
+ "epoch": 12.237554585152838,
+ "grad_norm": 0.04709675535559654,
+ "learning_rate": 0.0006,
+ "loss": 3.8831706047058105,
+ "step": 881
+ },
+ {
+ "epoch": 12.251528384279476,
+ "grad_norm": 0.05031110718846321,
+ "learning_rate": 0.0006,
+ "loss": 3.8964877128601074,
+ "step": 882
+ },
+ {
+ "epoch": 12.265502183406113,
+ "grad_norm": 0.04771656170487404,
+ "learning_rate": 0.0006,
+ "loss": 3.902888774871826,
+ "step": 883
+ },
+ {
+ "epoch": 12.279475982532752,
+ "grad_norm": 0.041541457176208496,
+ "learning_rate": 0.0006,
+ "loss": 3.849850654602051,
+ "step": 884
+ },
+ {
+ "epoch": 12.293449781659389,
+ "grad_norm": 0.04055247828364372,
+ "learning_rate": 0.0006,
+ "loss": 3.907242774963379,
+ "step": 885
+ },
+ {
+ "epoch": 12.307423580786025,
+ "grad_norm": 0.0392373651266098,
+ "learning_rate": 0.0006,
+ "loss": 3.882129669189453,
+ "step": 886
+ },
+ {
+ "epoch": 12.321397379912664,
+ "grad_norm": 0.040552686899900436,
+ "learning_rate": 0.0006,
+ "loss": 3.8719077110290527,
+ "step": 887
+ },
+ {
+ "epoch": 12.335371179039301,
+ "grad_norm": 0.03997429832816124,
+ "learning_rate": 0.0006,
+ "loss": 3.8770203590393066,
+ "step": 888
+ },
+ {
+ "epoch": 12.34934497816594,
+ "grad_norm": 0.04006315395236015,
+ "learning_rate": 0.0006,
+ "loss": 3.888833999633789,
+ "step": 889
+ },
+ {
+ "epoch": 12.363318777292577,
+ "grad_norm": 0.04192065820097923,
+ "learning_rate": 0.0006,
+ "loss": 3.9480466842651367,
+ "step": 890
+ },
+ {
+ "epoch": 12.377292576419213,
+ "grad_norm": 0.03901645913720131,
+ "learning_rate": 0.0006,
+ "loss": 3.8987879753112793,
+ "step": 891
+ },
+ {
+ "epoch": 12.391266375545852,
+ "grad_norm": 0.034923430532217026,
+ "learning_rate": 0.0006,
+ "loss": 3.887423515319824,
+ "step": 892
+ },
+ {
+ "epoch": 12.405240174672489,
+ "grad_norm": 0.03397240489721298,
+ "learning_rate": 0.0006,
+ "loss": 3.874734878540039,
+ "step": 893
+ },
+ {
+ "epoch": 12.419213973799126,
+ "grad_norm": 0.03498395159840584,
+ "learning_rate": 0.0006,
+ "loss": 3.8725318908691406,
+ "step": 894
+ },
+ {
+ "epoch": 12.433187772925764,
+ "grad_norm": 0.03299591317772865,
+ "learning_rate": 0.0006,
+ "loss": 3.8542797565460205,
+ "step": 895
+ },
+ {
+ "epoch": 12.447161572052401,
+ "grad_norm": 0.03591961786150932,
+ "learning_rate": 0.0006,
+ "loss": 3.8667421340942383,
+ "step": 896
+ },
+ {
+ "epoch": 12.46113537117904,
+ "grad_norm": 0.032906632870435715,
+ "learning_rate": 0.0006,
+ "loss": 3.802811622619629,
+ "step": 897
+ },
+ {
+ "epoch": 12.475109170305677,
+ "grad_norm": 0.02919355221092701,
+ "learning_rate": 0.0006,
+ "loss": 3.9085006713867188,
+ "step": 898
+ },
+ {
+ "epoch": 12.489082969432314,
+ "grad_norm": 0.02636081911623478,
+ "learning_rate": 0.0006,
+ "loss": 3.876291275024414,
+ "step": 899
+ },
+ {
+ "epoch": 12.503056768558952,
+ "grad_norm": 0.027786940336227417,
+ "learning_rate": 0.0006,
+ "loss": 3.813384532928467,
+ "step": 900
+ },
+ {
+ "epoch": 12.51703056768559,
+ "grad_norm": 0.021504681557416916,
+ "learning_rate": 0.0006,
+ "loss": 3.8531389236450195,
+ "step": 901
+ },
+ {
+ "epoch": 12.531004366812226,
+ "grad_norm": 0.020176850259304047,
+ "learning_rate": 0.0006,
+ "loss": 3.8540682792663574,
+ "step": 902
+ },
+ {
+ "epoch": 12.544978165938865,
+ "grad_norm": 0.018069395795464516,
+ "learning_rate": 0.0006,
+ "loss": 3.8401103019714355,
+ "step": 903
+ },
+ {
+ "epoch": 12.558951965065502,
+ "grad_norm": 0.017131980508565903,
+ "learning_rate": 0.0006,
+ "loss": 3.8590402603149414,
+ "step": 904
+ },
+ {
+ "epoch": 12.57292576419214,
+ "grad_norm": 0.016838181763887405,
+ "learning_rate": 0.0006,
+ "loss": 3.816793441772461,
+ "step": 905
+ },
+ {
+ "epoch": 12.586899563318777,
+ "grad_norm": 0.01688799448311329,
+ "learning_rate": 0.0006,
+ "loss": 3.8501386642456055,
+ "step": 906
+ },
+ {
+ "epoch": 12.600873362445414,
+ "grad_norm": 0.018547389656305313,
+ "learning_rate": 0.0006,
+ "loss": 3.844679355621338,
+ "step": 907
+ },
+ {
+ "epoch": 12.614847161572053,
+ "grad_norm": 0.01693912222981453,
+ "learning_rate": 0.0006,
+ "loss": 3.8392562866210938,
+ "step": 908
+ },
+ {
+ "epoch": 12.62882096069869,
+ "grad_norm": 0.017632123082876205,
+ "learning_rate": 0.0006,
+ "loss": 3.8433165550231934,
+ "step": 909
+ },
+ {
+ "epoch": 12.642794759825328,
+ "grad_norm": 0.017826121300458908,
+ "learning_rate": 0.0006,
+ "loss": 3.880542039871216,
+ "step": 910
+ },
+ {
+ "epoch": 12.656768558951965,
+ "grad_norm": 0.01775546185672283,
+ "learning_rate": 0.0006,
+ "loss": 3.828543186187744,
+ "step": 911
+ },
+ {
+ "epoch": 12.670742358078602,
+ "grad_norm": 0.016220970079302788,
+ "learning_rate": 0.0006,
+ "loss": 3.835036039352417,
+ "step": 912
+ },
+ {
+ "epoch": 12.68471615720524,
+ "grad_norm": 0.015805263072252274,
+ "learning_rate": 0.0006,
+ "loss": 3.860929489135742,
+ "step": 913
+ },
+ {
+ "epoch": 12.698689956331878,
+ "grad_norm": 0.014601027593016624,
+ "learning_rate": 0.0006,
+ "loss": 3.849916934967041,
+ "step": 914
+ },
+ {
+ "epoch": 12.712663755458514,
+ "grad_norm": 0.014955640770494938,
+ "learning_rate": 0.0006,
+ "loss": 3.82222843170166,
+ "step": 915
+ },
+ {
+ "epoch": 12.726637554585153,
+ "grad_norm": 0.01635930687189102,
+ "learning_rate": 0.0006,
+ "loss": 3.8616011142730713,
+ "step": 916
+ },
+ {
+ "epoch": 12.74061135371179,
+ "grad_norm": 0.015701569616794586,
+ "learning_rate": 0.0006,
+ "loss": 3.827305316925049,
+ "step": 917
+ },
+ {
+ "epoch": 12.754585152838429,
+ "grad_norm": 0.014878005720674992,
+ "learning_rate": 0.0006,
+ "loss": 3.8204379081726074,
+ "step": 918
+ },
+ {
+ "epoch": 12.768558951965066,
+ "grad_norm": 0.015863968059420586,
+ "learning_rate": 0.0006,
+ "loss": 3.8282384872436523,
+ "step": 919
+ },
+ {
+ "epoch": 12.782532751091702,
+ "grad_norm": 0.015376720577478409,
+ "learning_rate": 0.0006,
+ "loss": 3.8476157188415527,
+ "step": 920
+ },
+ {
+ "epoch": 12.796506550218341,
+ "grad_norm": 0.015112238936126232,
+ "learning_rate": 0.0006,
+ "loss": 3.814873695373535,
+ "step": 921
+ },
+ {
+ "epoch": 12.810480349344978,
+ "grad_norm": 0.014457261189818382,
+ "learning_rate": 0.0006,
+ "loss": 3.874340295791626,
+ "step": 922
+ },
+ {
+ "epoch": 12.824454148471617,
+ "grad_norm": 0.013799191452562809,
+ "learning_rate": 0.0006,
+ "loss": 3.8461344242095947,
+ "step": 923
+ },
+ {
+ "epoch": 12.838427947598253,
+ "grad_norm": 0.015976861119270325,
+ "learning_rate": 0.0006,
+ "loss": 3.8348283767700195,
+ "step": 924
+ },
+ {
+ "epoch": 12.85240174672489,
+ "grad_norm": 0.016569344326853752,
+ "learning_rate": 0.0006,
+ "loss": 3.8375229835510254,
+ "step": 925
+ },
+ {
+ "epoch": 12.866375545851529,
+ "grad_norm": 0.016443882137537003,
+ "learning_rate": 0.0006,
+ "loss": 3.814178943634033,
+ "step": 926
+ },
+ {
+ "epoch": 12.880349344978166,
+ "grad_norm": 0.01687130145728588,
+ "learning_rate": 0.0006,
+ "loss": 3.7934679985046387,
+ "step": 927
+ },
+ {
+ "epoch": 12.894323144104803,
+ "grad_norm": 0.01750864088535309,
+ "learning_rate": 0.0006,
+ "loss": 3.8297150135040283,
+ "step": 928
+ },
+ {
+ "epoch": 12.908296943231441,
+ "grad_norm": 0.017512314021587372,
+ "learning_rate": 0.0006,
+ "loss": 3.7785584926605225,
+ "step": 929
+ },
+ {
+ "epoch": 12.922270742358078,
+ "grad_norm": 0.01678168773651123,
+ "learning_rate": 0.0006,
+ "loss": 3.8569579124450684,
+ "step": 930
+ },
+ {
+ "epoch": 12.936244541484717,
+ "grad_norm": 0.017443843185901642,
+ "learning_rate": 0.0006,
+ "loss": 3.8003761768341064,
+ "step": 931
+ },
+ {
+ "epoch": 12.950218340611354,
+ "grad_norm": 0.017418883740901947,
+ "learning_rate": 0.0006,
+ "loss": 3.8066251277923584,
+ "step": 932
+ },
+ {
+ "epoch": 12.96419213973799,
+ "grad_norm": 0.01592562161386013,
+ "learning_rate": 0.0006,
+ "loss": 3.8218679428100586,
+ "step": 933
+ },
+ {
+ "epoch": 12.97816593886463,
+ "grad_norm": 0.01742086559534073,
+ "learning_rate": 0.0006,
+ "loss": 3.8229286670684814,
+ "step": 934
+ },
+ {
+ "epoch": 12.992139737991266,
+ "grad_norm": 0.017524391412734985,
+ "learning_rate": 0.0006,
+ "loss": 3.810349941253662,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.019961200654506683,
+ "learning_rate": 0.0006,
+ "loss": 3.8229546546936035,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.08996057510376,
+ "eval_runtime": 49.9041,
+ "eval_samples_per_second": 48.934,
+ "eval_steps_per_second": 1.543,
+ "step": 936
+ },
+ {
+ "epoch": 13.013973799126637,
+ "grad_norm": 0.023570898920297623,
+ "learning_rate": 0.0006,
+ "loss": 3.7133145332336426,
+ "step": 937
+ },
+ {
+ "epoch": 13.027947598253276,
+ "grad_norm": 0.03165869787335396,
+ "learning_rate": 0.0006,
+ "loss": 3.7199676036834717,
+ "step": 938
+ },
+ {
+ "epoch": 13.041921397379912,
+ "grad_norm": 0.03561289608478546,
+ "learning_rate": 0.0006,
+ "loss": 3.7414278984069824,
+ "step": 939
+ },
+ {
+ "epoch": 13.055895196506551,
+ "grad_norm": 0.03167610988020897,
+ "learning_rate": 0.0006,
+ "loss": 3.7263808250427246,
+ "step": 940
+ },
+ {
+ "epoch": 13.069868995633188,
+ "grad_norm": 0.035912878811359406,
+ "learning_rate": 0.0006,
+ "loss": 3.7170684337615967,
+ "step": 941
+ },
+ {
+ "epoch": 13.083842794759825,
+ "grad_norm": 0.03632035478949547,
+ "learning_rate": 0.0006,
+ "loss": 3.750077724456787,
+ "step": 942
+ },
+ {
+ "epoch": 13.097816593886463,
+ "grad_norm": 0.031844258308410645,
+ "learning_rate": 0.0006,
+ "loss": 3.7065911293029785,
+ "step": 943
+ },
+ {
+ "epoch": 13.1117903930131,
+ "grad_norm": 0.03410554304718971,
+ "learning_rate": 0.0006,
+ "loss": 3.739224910736084,
+ "step": 944
+ },
+ {
+ "epoch": 13.125764192139737,
+ "grad_norm": 0.03375937044620514,
+ "learning_rate": 0.0006,
+ "loss": 3.6903367042541504,
+ "step": 945
+ },
+ {
+ "epoch": 13.139737991266376,
+ "grad_norm": 0.03705555200576782,
+ "learning_rate": 0.0006,
+ "loss": 3.778822422027588,
+ "step": 946
+ },
+ {
+ "epoch": 13.153711790393013,
+ "grad_norm": 0.03603963926434517,
+ "learning_rate": 0.0006,
+ "loss": 3.73783802986145,
+ "step": 947
+ },
+ {
+ "epoch": 13.167685589519651,
+ "grad_norm": 0.034089673310518265,
+ "learning_rate": 0.0006,
+ "loss": 3.7886078357696533,
+ "step": 948
+ },
+ {
+ "epoch": 13.181659388646288,
+ "grad_norm": 0.03745635598897934,
+ "learning_rate": 0.0006,
+ "loss": 3.76809024810791,
+ "step": 949
+ },
+ {
+ "epoch": 13.195633187772925,
+ "grad_norm": 0.04209613427519798,
+ "learning_rate": 0.0006,
+ "loss": 3.7813467979431152,
+ "step": 950
+ },
+ {
+ "epoch": 13.209606986899564,
+ "grad_norm": 0.036846764385700226,
+ "learning_rate": 0.0006,
+ "loss": 3.7726383209228516,
+ "step": 951
+ },
+ {
+ "epoch": 13.2235807860262,
+ "grad_norm": 0.036949072033166885,
+ "learning_rate": 0.0006,
+ "loss": 3.7197751998901367,
+ "step": 952
+ },
+ {
+ "epoch": 13.237554585152838,
+ "grad_norm": 0.03458063304424286,
+ "learning_rate": 0.0006,
+ "loss": 3.7695436477661133,
+ "step": 953
+ },
+ {
+ "epoch": 13.251528384279476,
+ "grad_norm": 0.038074951618909836,
+ "learning_rate": 0.0006,
+ "loss": 3.7531425952911377,
+ "step": 954
+ },
+ {
+ "epoch": 13.265502183406113,
+ "grad_norm": 0.03661646693944931,
+ "learning_rate": 0.0006,
+ "loss": 3.767953872680664,
+ "step": 955
+ },
+ {
+ "epoch": 13.279475982532752,
+ "grad_norm": 0.039892520755529404,
+ "learning_rate": 0.0006,
+ "loss": 3.7687599658966064,
+ "step": 956
+ },
+ {
+ "epoch": 13.293449781659389,
+ "grad_norm": 0.036572884768247604,
+ "learning_rate": 0.0006,
+ "loss": 3.7693774700164795,
+ "step": 957
+ },
+ {
+ "epoch": 13.307423580786025,
+ "grad_norm": 0.03855743631720543,
+ "learning_rate": 0.0006,
+ "loss": 3.8233063220977783,
+ "step": 958
+ },
+ {
+ "epoch": 13.321397379912664,
+ "grad_norm": 0.03484344109892845,
+ "learning_rate": 0.0006,
+ "loss": 3.79215669631958,
+ "step": 959
+ },
+ {
+ "epoch": 13.335371179039301,
+ "grad_norm": 0.036101482808589935,
+ "learning_rate": 0.0006,
+ "loss": 3.768373966217041,
+ "step": 960
+ },
+ {
+ "epoch": 13.34934497816594,
+ "grad_norm": 0.03150841221213341,
+ "learning_rate": 0.0006,
+ "loss": 3.7502622604370117,
+ "step": 961
+ },
+ {
+ "epoch": 13.363318777292577,
+ "grad_norm": 0.03154430910944939,
+ "learning_rate": 0.0006,
+ "loss": 3.764416217803955,
+ "step": 962
+ },
+ {
+ "epoch": 13.377292576419213,
+ "grad_norm": 0.03163410350680351,
+ "learning_rate": 0.0006,
+ "loss": 3.757230758666992,
+ "step": 963
+ },
+ {
+ "epoch": 13.391266375545852,
+ "grad_norm": 0.02932742051780224,
+ "learning_rate": 0.0006,
+ "loss": 3.7860183715820312,
+ "step": 964
+ },
+ {
+ "epoch": 13.405240174672489,
+ "grad_norm": 0.025545787066221237,
+ "learning_rate": 0.0006,
+ "loss": 3.748073101043701,
+ "step": 965
+ },
+ {
+ "epoch": 13.419213973799126,
+ "grad_norm": 0.02389710769057274,
+ "learning_rate": 0.0006,
+ "loss": 3.778963565826416,
+ "step": 966
+ },
+ {
+ "epoch": 13.433187772925764,
+ "grad_norm": 0.023781558498740196,
+ "learning_rate": 0.0006,
+ "loss": 3.7151870727539062,
+ "step": 967
+ },
+ {
+ "epoch": 13.447161572052401,
+ "grad_norm": 0.023273715749382973,
+ "learning_rate": 0.0006,
+ "loss": 3.766374111175537,
+ "step": 968
+ },
+ {
+ "epoch": 13.46113537117904,
+ "grad_norm": 0.023059967905282974,
+ "learning_rate": 0.0006,
+ "loss": 3.783663749694824,
+ "step": 969
+ },
+ {
+ "epoch": 13.475109170305677,
+ "grad_norm": 0.020438550040125847,
+ "learning_rate": 0.0006,
+ "loss": 3.755140781402588,
+ "step": 970
+ },
+ {
+ "epoch": 13.489082969432314,
+ "grad_norm": 0.019272785633802414,
+ "learning_rate": 0.0006,
+ "loss": 3.741131544113159,
+ "step": 971
+ },
+ {
+ "epoch": 13.503056768558952,
+ "grad_norm": 0.017616258934140205,
+ "learning_rate": 0.0006,
+ "loss": 3.7395365238189697,
+ "step": 972
+ },
+ {
+ "epoch": 13.51703056768559,
+ "grad_norm": 0.017435181885957718,
+ "learning_rate": 0.0006,
+ "loss": 3.7755181789398193,
+ "step": 973
+ },
+ {
+ "epoch": 13.531004366812226,
+ "grad_norm": 0.01710323616862297,
+ "learning_rate": 0.0006,
+ "loss": 3.7158422470092773,
+ "step": 974
+ },
+ {
+ "epoch": 13.544978165938865,
+ "grad_norm": 0.016912570223212242,
+ "learning_rate": 0.0006,
+ "loss": 3.727623462677002,
+ "step": 975
+ },
+ {
+ "epoch": 13.558951965065502,
+ "grad_norm": 0.0181113388389349,
+ "learning_rate": 0.0006,
+ "loss": 3.771268367767334,
+ "step": 976
+ },
+ {
+ "epoch": 13.57292576419214,
+ "grad_norm": 0.018880970776081085,
+ "learning_rate": 0.0006,
+ "loss": 3.7602953910827637,
+ "step": 977
+ },
+ {
+ "epoch": 13.586899563318777,
+ "grad_norm": 0.019182899966835976,
+ "learning_rate": 0.0006,
+ "loss": 3.7339329719543457,
+ "step": 978
+ },
+ {
+ "epoch": 13.600873362445414,
+ "grad_norm": 0.02025751583278179,
+ "learning_rate": 0.0006,
+ "loss": 3.7562665939331055,
+ "step": 979
+ },
+ {
+ "epoch": 13.614847161572053,
+ "grad_norm": 0.01820831373333931,
+ "learning_rate": 0.0006,
+ "loss": 3.725492477416992,
+ "step": 980
+ },
+ {
+ "epoch": 13.62882096069869,
+ "grad_norm": 0.017619458958506584,
+ "learning_rate": 0.0006,
+ "loss": 3.714106798171997,
+ "step": 981
+ },
+ {
+ "epoch": 13.642794759825328,
+ "grad_norm": 0.016764821484684944,
+ "learning_rate": 0.0006,
+ "loss": 3.7665224075317383,
+ "step": 982
+ },
+ {
+ "epoch": 13.656768558951965,
+ "grad_norm": 0.016131598502397537,
+ "learning_rate": 0.0006,
+ "loss": 3.779419422149658,
+ "step": 983
+ },
+ {
+ "epoch": 13.670742358078602,
+ "grad_norm": 0.01535084005445242,
+ "learning_rate": 0.0006,
+ "loss": 3.7591190338134766,
+ "step": 984
+ },
+ {
+ "epoch": 13.68471615720524,
+ "grad_norm": 0.016390377655625343,
+ "learning_rate": 0.0006,
+ "loss": 3.7544782161712646,
+ "step": 985
+ },
+ {
+ "epoch": 13.698689956331878,
+ "grad_norm": 0.016028346493840218,
+ "learning_rate": 0.0006,
+ "loss": 3.772927761077881,
+ "step": 986
+ },
+ {
+ "epoch": 13.712663755458514,
+ "grad_norm": 0.015925439074635506,
+ "learning_rate": 0.0006,
+ "loss": 3.7092344760894775,
+ "step": 987
+ },
+ {
+ "epoch": 13.726637554585153,
+ "grad_norm": 0.016125058755278587,
+ "learning_rate": 0.0006,
+ "loss": 3.7528953552246094,
+ "step": 988
+ },
+ {
+ "epoch": 13.74061135371179,
+ "grad_norm": 0.015887845307588577,
+ "learning_rate": 0.0006,
+ "loss": 3.744354248046875,
+ "step": 989
+ },
+ {
+ "epoch": 13.754585152838429,
+ "grad_norm": 0.015301455743610859,
+ "learning_rate": 0.0006,
+ "loss": 3.743435859680176,
+ "step": 990
+ },
+ {
+ "epoch": 13.768558951965066,
+ "grad_norm": 0.014814727008342743,
+ "learning_rate": 0.0006,
+ "loss": 3.7351980209350586,
+ "step": 991
+ },
+ {
+ "epoch": 13.782532751091702,
+ "grad_norm": 0.01479976624250412,
+ "learning_rate": 0.0006,
+ "loss": 3.722226619720459,
+ "step": 992
+ },
+ {
+ "epoch": 13.796506550218341,
+ "grad_norm": 0.016558295115828514,
+ "learning_rate": 0.0006,
+ "loss": 3.717442512512207,
+ "step": 993
+ },
+ {
+ "epoch": 13.810480349344978,
+ "grad_norm": 0.01635979674756527,
+ "learning_rate": 0.0006,
+ "loss": 3.707097053527832,
+ "step": 994
+ },
+ {
+ "epoch": 13.824454148471617,
+ "grad_norm": 0.014870786108076572,
+ "learning_rate": 0.0006,
+ "loss": 3.768139362335205,
+ "step": 995
+ },
+ {
+ "epoch": 13.838427947598253,
+ "grad_norm": 0.014958183281123638,
+ "learning_rate": 0.0006,
+ "loss": 3.722902774810791,
+ "step": 996
+ },
+ {
+ "epoch": 13.85240174672489,
+ "grad_norm": 0.015501127578318119,
+ "learning_rate": 0.0006,
+ "loss": 3.7323732376098633,
+ "step": 997
+ },
+ {
+ "epoch": 13.866375545851529,
+ "grad_norm": 0.015276075340807438,
+ "learning_rate": 0.0006,
+ "loss": 3.734039783477783,
+ "step": 998
+ },
+ {
+ "epoch": 13.880349344978166,
+ "grad_norm": 0.01742061786353588,
+ "learning_rate": 0.0006,
+ "loss": 3.737147331237793,
+ "step": 999
+ },
+ {
+ "epoch": 13.894323144104803,
+ "grad_norm": 0.016311734914779663,
+ "learning_rate": 0.0006,
+ "loss": 3.7114202976226807,
+ "step": 1000
+ },
+ {
+ "epoch": 13.908296943231441,
+ "grad_norm": 0.017144575715065002,
+ "learning_rate": 0.0006,
+ "loss": 3.734762191772461,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922270742358078,
+ "grad_norm": 0.016401860862970352,
+ "learning_rate": 0.0006,
+ "loss": 3.753246784210205,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936244541484717,
+ "grad_norm": 0.015357336029410362,
+ "learning_rate": 0.0006,
+ "loss": 3.7216477394104004,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950218340611354,
+ "grad_norm": 0.016586005687713623,
+ "learning_rate": 0.0006,
+ "loss": 3.793790102005005,
+ "step": 1004
+ },
+ {
+ "epoch": 13.96419213973799,
+ "grad_norm": 0.015338776633143425,
+ "learning_rate": 0.0006,
+ "loss": 3.711658000946045,
+ "step": 1005
+ },
+ {
+ "epoch": 13.97816593886463,
+ "grad_norm": 0.017011435702443123,
+ "learning_rate": 0.0006,
+ "loss": 3.752537727355957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992139737991266,
+ "grad_norm": 0.017308345064520836,
+ "learning_rate": 0.0006,
+ "loss": 3.7391486167907715,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.01815737411379814,
+ "learning_rate": 0.0006,
+ "loss": 3.7011828422546387,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.046541690826416,
+ "eval_runtime": 54.3615,
+ "eval_samples_per_second": 44.922,
+ "eval_steps_per_second": 1.416,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013973799126637,
+ "grad_norm": 0.01765853725373745,
+ "learning_rate": 0.0006,
+ "loss": 3.6156458854675293,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027947598253276,
+ "grad_norm": 0.02285143919289112,
+ "learning_rate": 0.0006,
+ "loss": 3.6625490188598633,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041921397379912,
+ "grad_norm": 0.02511940896511078,
+ "learning_rate": 0.0006,
+ "loss": 3.619877815246582,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055895196506551,
+ "grad_norm": 0.02781127765774727,
+ "learning_rate": 0.0006,
+ "loss": 3.676270008087158,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069868995633188,
+ "grad_norm": 0.027363400906324387,
+ "learning_rate": 0.0006,
+ "loss": 3.64404034614563,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083842794759825,
+ "grad_norm": 0.02478782832622528,
+ "learning_rate": 0.0006,
+ "loss": 3.6325106620788574,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097816593886463,
+ "grad_norm": 0.02767058275640011,
+ "learning_rate": 0.0006,
+ "loss": 3.65087890625,
+ "step": 1015
+ },
+ {
+ "epoch": 14.1117903930131,
+ "grad_norm": 0.026782231405377388,
+ "learning_rate": 0.0006,
+ "loss": 3.6227691173553467,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125764192139737,
+ "grad_norm": 0.02921525575220585,
+ "learning_rate": 0.0006,
+ "loss": 3.5829410552978516,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139737991266376,
+ "grad_norm": 0.029077231884002686,
+ "learning_rate": 0.0006,
+ "loss": 3.645134687423706,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153711790393013,
+ "grad_norm": 0.0327303521335125,
+ "learning_rate": 0.0006,
+ "loss": 3.629804849624634,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167685589519651,
+ "grad_norm": 0.035763293504714966,
+ "learning_rate": 0.0006,
+ "loss": 3.6261279582977295,
+ "step": 1020
+ },
+ {
+ "epoch": 14.181659388646288,
+ "grad_norm": 0.03943935036659241,
+ "learning_rate": 0.0006,
+ "loss": 3.6591973304748535,
+ "step": 1021
+ },
+ {
+ "epoch": 14.195633187772925,
+ "grad_norm": 0.03753122314810753,
+ "learning_rate": 0.0006,
+ "loss": 3.6450369358062744,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209606986899564,
+ "grad_norm": 0.04103509336709976,
+ "learning_rate": 0.0006,
+ "loss": 3.6689958572387695,
+ "step": 1023
+ },
+ {
+ "epoch": 14.2235807860262,
+ "grad_norm": 0.04133584722876549,
+ "learning_rate": 0.0006,
+ "loss": 3.6584630012512207,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237554585152838,
+ "grad_norm": 0.04211857542395592,
+ "learning_rate": 0.0006,
+ "loss": 3.6606225967407227,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251528384279476,
+ "grad_norm": 0.038261570036411285,
+ "learning_rate": 0.0006,
+ "loss": 3.667980194091797,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265502183406113,
+ "grad_norm": 0.03518976271152496,
+ "learning_rate": 0.0006,
+ "loss": 3.6699838638305664,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279475982532752,
+ "grad_norm": 0.03253129869699478,
+ "learning_rate": 0.0006,
+ "loss": 3.636895179748535,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293449781659389,
+ "grad_norm": 0.031595997512340546,
+ "learning_rate": 0.0006,
+ "loss": 3.632096290588379,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307423580786025,
+ "grad_norm": 0.03253999352455139,
+ "learning_rate": 0.0006,
+ "loss": 3.6577043533325195,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321397379912664,
+ "grad_norm": 0.034704145044088364,
+ "learning_rate": 0.0006,
+ "loss": 3.703457832336426,
+ "step": 1031
+ },
+ {
+ "epoch": 14.335371179039301,
+ "grad_norm": 0.03362954035401344,
+ "learning_rate": 0.0006,
+ "loss": 3.6303958892822266,
+ "step": 1032
+ },
+ {
+ "epoch": 14.34934497816594,
+ "grad_norm": 0.02985706552863121,
+ "learning_rate": 0.0006,
+ "loss": 3.669577121734619,
+ "step": 1033
+ },
+ {
+ "epoch": 14.363318777292577,
+ "grad_norm": 0.028826212510466576,
+ "learning_rate": 0.0006,
+ "loss": 3.6573240756988525,
+ "step": 1034
+ },
+ {
+ "epoch": 14.377292576419213,
+ "grad_norm": 0.025705639272928238,
+ "learning_rate": 0.0006,
+ "loss": 3.695673942565918,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391266375545852,
+ "grad_norm": 0.02392077073454857,
+ "learning_rate": 0.0006,
+ "loss": 3.699263095855713,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405240174672489,
+ "grad_norm": 0.02234474942088127,
+ "learning_rate": 0.0006,
+ "loss": 3.666858196258545,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419213973799126,
+ "grad_norm": 0.021519573405385017,
+ "learning_rate": 0.0006,
+ "loss": 3.6542158126831055,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433187772925764,
+ "grad_norm": 0.019302112981677055,
+ "learning_rate": 0.0006,
+ "loss": 3.672900676727295,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447161572052401,
+ "grad_norm": 0.01938394270837307,
+ "learning_rate": 0.0006,
+ "loss": 3.6841869354248047,
+ "step": 1040
+ },
+ {
+ "epoch": 14.46113537117904,
+ "grad_norm": 0.01918088085949421,
+ "learning_rate": 0.0006,
+ "loss": 3.6915340423583984,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475109170305677,
+ "grad_norm": 0.019382303580641747,
+ "learning_rate": 0.0006,
+ "loss": 3.696239471435547,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489082969432314,
+ "grad_norm": 0.0190880224108696,
+ "learning_rate": 0.0006,
+ "loss": 3.686777114868164,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503056768558952,
+ "grad_norm": 0.019921699538826942,
+ "learning_rate": 0.0006,
+ "loss": 3.596571207046509,
+ "step": 1044
+ },
+ {
+ "epoch": 14.51703056768559,
+ "grad_norm": 0.019849983975291252,
+ "learning_rate": 0.0006,
+ "loss": 3.6621527671813965,
+ "step": 1045
+ },
+ {
+ "epoch": 14.531004366812226,
+ "grad_norm": 0.01987219788134098,
+ "learning_rate": 0.0006,
+ "loss": 3.6440532207489014,
+ "step": 1046
+ },
+ {
+ "epoch": 14.544978165938865,
+ "grad_norm": 0.019135860726237297,
+ "learning_rate": 0.0006,
+ "loss": 3.663760185241699,
+ "step": 1047
+ },
+ {
+ "epoch": 14.558951965065502,
+ "grad_norm": 0.019754081964492798,
+ "learning_rate": 0.0006,
+ "loss": 3.692115306854248,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57292576419214,
+ "grad_norm": 0.017559237778186798,
+ "learning_rate": 0.0006,
+ "loss": 3.6560468673706055,
+ "step": 1049
+ },
+ {
+ "epoch": 14.586899563318777,
+ "grad_norm": 0.018740499392151833,
+ "learning_rate": 0.0006,
+ "loss": 3.678459405899048,
+ "step": 1050
+ },
+ {
+ "epoch": 14.600873362445414,
+ "grad_norm": 0.020979298278689384,
+ "learning_rate": 0.0006,
+ "loss": 3.6760807037353516,
+ "step": 1051
+ },
+ {
+ "epoch": 14.614847161572053,
+ "grad_norm": 0.024136187508702278,
+ "learning_rate": 0.0006,
+ "loss": 3.6586780548095703,
+ "step": 1052
+ },
+ {
+ "epoch": 14.62882096069869,
+ "grad_norm": 0.022492283955216408,
+ "learning_rate": 0.0006,
+ "loss": 3.6521711349487305,
+ "step": 1053
+ },
+ {
+ "epoch": 14.642794759825328,
+ "grad_norm": 0.022067412734031677,
+ "learning_rate": 0.0006,
+ "loss": 3.6784937381744385,
+ "step": 1054
+ },
+ {
+ "epoch": 14.656768558951965,
+ "grad_norm": 0.019800225272774696,
+ "learning_rate": 0.0006,
+ "loss": 3.6375701427459717,
+ "step": 1055
+ },
+ {
+ "epoch": 14.670742358078602,
+ "grad_norm": 0.018210966140031815,
+ "learning_rate": 0.0006,
+ "loss": 3.6653239727020264,
+ "step": 1056
+ },
+ {
+ "epoch": 14.68471615720524,
+ "grad_norm": 0.018579861149191856,
+ "learning_rate": 0.0006,
+ "loss": 3.718411922454834,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698689956331878,
+ "grad_norm": 0.016911206766963005,
+ "learning_rate": 0.0006,
+ "loss": 3.6463894844055176,
+ "step": 1058
+ },
+ {
+ "epoch": 14.712663755458514,
+ "grad_norm": 0.016846856102347374,
+ "learning_rate": 0.0006,
+ "loss": 3.672767162322998,
+ "step": 1059
+ },
+ {
+ "epoch": 14.726637554585153,
+ "grad_norm": 0.0170889999717474,
+ "learning_rate": 0.0006,
+ "loss": 3.6862080097198486,
+ "step": 1060
+ },
+ {
+ "epoch": 14.74061135371179,
+ "grad_norm": 0.016432611271739006,
+ "learning_rate": 0.0006,
+ "loss": 3.656050682067871,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754585152838429,
+ "grad_norm": 0.016253121197223663,
+ "learning_rate": 0.0006,
+ "loss": 3.6118998527526855,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768558951965066,
+ "grad_norm": 0.016804836690425873,
+ "learning_rate": 0.0006,
+ "loss": 3.6646556854248047,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782532751091702,
+ "grad_norm": 0.016385341063141823,
+ "learning_rate": 0.0006,
+ "loss": 3.6862335205078125,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796506550218341,
+ "grad_norm": 0.016926517710089684,
+ "learning_rate": 0.0006,
+ "loss": 3.675138473510742,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810480349344978,
+ "grad_norm": 0.018508978188037872,
+ "learning_rate": 0.0006,
+ "loss": 3.7009687423706055,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824454148471617,
+ "grad_norm": 0.018666446208953857,
+ "learning_rate": 0.0006,
+ "loss": 3.636359214782715,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838427947598253,
+ "grad_norm": 0.019378433004021645,
+ "learning_rate": 0.0006,
+ "loss": 3.665518283843994,
+ "step": 1068
+ },
+ {
+ "epoch": 14.85240174672489,
+ "grad_norm": 0.02128547430038452,
+ "learning_rate": 0.0006,
+ "loss": 3.7005434036254883,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866375545851529,
+ "grad_norm": 0.02191224694252014,
+ "learning_rate": 0.0006,
+ "loss": 3.6584267616271973,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880349344978166,
+ "grad_norm": 0.019272804260253906,
+ "learning_rate": 0.0006,
+ "loss": 3.673880100250244,
+ "step": 1071
+ },
+ {
+ "epoch": 14.894323144104803,
+ "grad_norm": 0.018591508269309998,
+ "learning_rate": 0.0006,
+ "loss": 3.680145025253296,
+ "step": 1072
+ },
+ {
+ "epoch": 14.908296943231441,
+ "grad_norm": 0.019954141229391098,
+ "learning_rate": 0.0006,
+ "loss": 3.659092903137207,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922270742358078,
+ "grad_norm": 0.019956151023507118,
+ "learning_rate": 0.0006,
+ "loss": 3.680950164794922,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936244541484717,
+ "grad_norm": 0.0198400616645813,
+ "learning_rate": 0.0006,
+ "loss": 3.665740728378296,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950218340611354,
+ "grad_norm": 0.018525801599025726,
+ "learning_rate": 0.0006,
+ "loss": 3.695254325866699,
+ "step": 1076
+ },
+ {
+ "epoch": 14.96419213973799,
+ "grad_norm": 0.019410012289881706,
+ "learning_rate": 0.0006,
+ "loss": 3.637185573577881,
+ "step": 1077
+ },
+ {
+ "epoch": 14.97816593886463,
+ "grad_norm": 0.01842549443244934,
+ "learning_rate": 0.0006,
+ "loss": 3.6925792694091797,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992139737991266,
+ "grad_norm": 0.018512850627303123,
+ "learning_rate": 0.0006,
+ "loss": 3.6421403884887695,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.019783539697527885,
+ "learning_rate": 0.0006,
+ "loss": 3.669989824295044,
+ "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-constantlr/checkpoint-1080/training_args.bin b/runs/baseline-constantlr/checkpoint-1080/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..902eed46d9e02245694ec118af9efec9cd359ff6
--- /dev/null
+++ b/runs/baseline-constantlr/checkpoint-1080/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f8a755363e28cfde742d3e37ba600ce14b5716157c9823f5cadd1b47464c7fc2
+size 5201
diff --git a/runs/baseline-constantlr/checkpoint-1440/chat_template.jinja b/runs/baseline-constantlr/checkpoint-1440/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-1440/config.json b/runs/baseline-constantlr/checkpoint-1440/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-1440/generation_config.json b/runs/baseline-constantlr/checkpoint-1440/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-1440/model.safetensors b/runs/baseline-constantlr/checkpoint-1440/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..7ea017e167bd991b8c66a83c3375d93251591bf4
--- /dev/null
+++ b/runs/baseline-constantlr/checkpoint-1440/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:41c52167c0b3c02b98083a62964c98a1eb95abd986afb3558639c28d0690ddc4
+size 583356232
diff --git a/runs/baseline-constantlr/checkpoint-1440/optimizer.pt b/runs/baseline-constantlr/checkpoint-1440/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..4722a7ff8de8bfd2b06b115ef44f01a837618a10
--- /dev/null
+++ b/runs/baseline-constantlr/checkpoint-1440/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:311bb33962d50fabf2211a108462bab52958c84c870da7152dddb38915e6da11
+size 1166825803
diff --git a/runs/baseline-constantlr/checkpoint-1440/rng_state_0.pth b/runs/baseline-constantlr/checkpoint-1440/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..3c396253e5ad58aa3254e1cb9364198815e3ba61
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-1440/rng_state_1.pth b/runs/baseline-constantlr/checkpoint-1440/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..08b5f24cb1ec06dc192e471442f86bfe5e398030
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-1440/scheduler.pt b/runs/baseline-constantlr/checkpoint-1440/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..0c88fc0f2c58f752f243707fbfcd68f1d53bd03a
--- /dev/null
+++ b/runs/baseline-constantlr/checkpoint-1440/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:09653fe569cb6fd82e8fb88d46f14144aff448ec8722b0ce93f703bca2be3e6e
+size 1465
diff --git a/runs/baseline-constantlr/checkpoint-1440/tokenizer.json b/runs/baseline-constantlr/checkpoint-1440/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-1440/tokenizer_config.json b/runs/baseline-constantlr/checkpoint-1440/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-1440/trainer_state.json b/runs/baseline-constantlr/checkpoint-1440/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..bf98b1b2a11fba3492f07c6a2396dc4e65884708
--- /dev/null
+++ b/runs/baseline-constantlr/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.13303375244140625,
+ "learning_rate": 0.0,
+ "loss": 12.018817901611328,
+ "step": 1
+ },
+ {
+ "epoch": 0.02794759825327511,
+ "grad_norm": 0.13390742242336273,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.021883964538574,
+ "step": 2
+ },
+ {
+ "epoch": 0.04192139737991266,
+ "grad_norm": 0.13340722024440765,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.986108779907227,
+ "step": 3
+ },
+ {
+ "epoch": 0.05589519650655022,
+ "grad_norm": 0.13777263462543488,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.926837921142578,
+ "step": 4
+ },
+ {
+ "epoch": 0.06986899563318777,
+ "grad_norm": 0.14294272661209106,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.845431327819824,
+ "step": 5
+ },
+ {
+ "epoch": 0.08384279475982533,
+ "grad_norm": 0.15314988791942596,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.736921310424805,
+ "step": 6
+ },
+ {
+ "epoch": 0.09781659388646288,
+ "grad_norm": 0.14554648101329803,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.615877151489258,
+ "step": 7
+ },
+ {
+ "epoch": 0.11179039301310044,
+ "grad_norm": 0.1252845823764801,
+ "learning_rate": 4.2e-05,
+ "loss": 11.501619338989258,
+ "step": 8
+ },
+ {
+ "epoch": 0.125764192139738,
+ "grad_norm": 0.11403433233499527,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.396705627441406,
+ "step": 9
+ },
+ {
+ "epoch": 0.13973799126637554,
+ "grad_norm": 0.10996542125940323,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.31666374206543,
+ "step": 10
+ },
+ {
+ "epoch": 0.1537117903930131,
+ "grad_norm": 0.10755623877048492,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.252704620361328,
+ "step": 11
+ },
+ {
+ "epoch": 0.16768558951965065,
+ "grad_norm": 0.10700664669275284,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.194284439086914,
+ "step": 12
+ },
+ {
+ "epoch": 0.18165938864628822,
+ "grad_norm": 0.10606497526168823,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.14437198638916,
+ "step": 13
+ },
+ {
+ "epoch": 0.19563318777292577,
+ "grad_norm": 0.10551681369543076,
+ "learning_rate": 7.8e-05,
+ "loss": 11.096858024597168,
+ "step": 14
+ },
+ {
+ "epoch": 0.2096069868995633,
+ "grad_norm": 0.10573510080575943,
+ "learning_rate": 8.4e-05,
+ "loss": 11.047990798950195,
+ "step": 15
+ },
+ {
+ "epoch": 0.22358078602620088,
+ "grad_norm": 0.10572560131549835,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 11.000219345092773,
+ "step": 16
+ },
+ {
+ "epoch": 0.23755458515283842,
+ "grad_norm": 0.10625051707029343,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.93830680847168,
+ "step": 17
+ },
+ {
+ "epoch": 0.251528384279476,
+ "grad_norm": 0.10565247386693954,
+ "learning_rate": 0.000102,
+ "loss": 10.88237190246582,
+ "step": 18
+ },
+ {
+ "epoch": 0.26550218340611353,
+ "grad_norm": 0.10570791363716125,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.81382942199707,
+ "step": 19
+ },
+ {
+ "epoch": 0.2794759825327511,
+ "grad_norm": 0.10585319995880127,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.742864608764648,
+ "step": 20
+ },
+ {
+ "epoch": 0.2934497816593886,
+ "grad_norm": 0.10421311110258102,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.675719261169434,
+ "step": 21
+ },
+ {
+ "epoch": 0.3074235807860262,
+ "grad_norm": 0.10436785966157913,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.589548110961914,
+ "step": 22
+ },
+ {
+ "epoch": 0.32139737991266376,
+ "grad_norm": 0.10463878512382507,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.504261016845703,
+ "step": 23
+ },
+ {
+ "epoch": 0.3353711790393013,
+ "grad_norm": 0.104142926633358,
+ "learning_rate": 0.000138,
+ "loss": 10.41696548461914,
+ "step": 24
+ },
+ {
+ "epoch": 0.34934497816593885,
+ "grad_norm": 0.1037549152970314,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.327609062194824,
+ "step": 25
+ },
+ {
+ "epoch": 0.36331877729257644,
+ "grad_norm": 0.10464346408843994,
+ "learning_rate": 0.00015,
+ "loss": 10.226776123046875,
+ "step": 26
+ },
+ {
+ "epoch": 0.377292576419214,
+ "grad_norm": 0.10289040952920914,
+ "learning_rate": 0.000156,
+ "loss": 10.142925262451172,
+ "step": 27
+ },
+ {
+ "epoch": 0.39126637554585153,
+ "grad_norm": 0.10476566106081009,
+ "learning_rate": 0.000162,
+ "loss": 10.032388687133789,
+ "step": 28
+ },
+ {
+ "epoch": 0.4052401746724891,
+ "grad_norm": 0.10285190492868423,
+ "learning_rate": 0.000168,
+ "loss": 9.944738388061523,
+ "step": 29
+ },
+ {
+ "epoch": 0.4192139737991266,
+ "grad_norm": 0.10330761969089508,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.832511901855469,
+ "step": 30
+ },
+ {
+ "epoch": 0.4331877729257642,
+ "grad_norm": 0.10190961509943008,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.742905616760254,
+ "step": 31
+ },
+ {
+ "epoch": 0.44716157205240176,
+ "grad_norm": 0.10172155499458313,
+ "learning_rate": 0.000186,
+ "loss": 9.634834289550781,
+ "step": 32
+ },
+ {
+ "epoch": 0.4611353711790393,
+ "grad_norm": 0.10067209601402283,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.522916793823242,
+ "step": 33
+ },
+ {
+ "epoch": 0.47510917030567684,
+ "grad_norm": 0.10058761388063431,
+ "learning_rate": 0.000198,
+ "loss": 9.416927337646484,
+ "step": 34
+ },
+ {
+ "epoch": 0.4890829694323144,
+ "grad_norm": 0.0981091558933258,
+ "learning_rate": 0.000204,
+ "loss": 9.32928466796875,
+ "step": 35
+ },
+ {
+ "epoch": 0.503056768558952,
+ "grad_norm": 0.09739134460687637,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.215356826782227,
+ "step": 36
+ },
+ {
+ "epoch": 0.5170305676855895,
+ "grad_norm": 0.0969916582107544,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.101107597351074,
+ "step": 37
+ },
+ {
+ "epoch": 0.5310043668122271,
+ "grad_norm": 0.0959910973906517,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.998035430908203,
+ "step": 38
+ },
+ {
+ "epoch": 0.5449781659388646,
+ "grad_norm": 0.09558682143688202,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.89165210723877,
+ "step": 39
+ },
+ {
+ "epoch": 0.5589519650655022,
+ "grad_norm": 0.09313725680112839,
+ "learning_rate": 0.000234,
+ "loss": 8.806523323059082,
+ "step": 40
+ },
+ {
+ "epoch": 0.5729257641921397,
+ "grad_norm": 0.09075582772493362,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.71815299987793,
+ "step": 41
+ },
+ {
+ "epoch": 0.5868995633187772,
+ "grad_norm": 0.08912578970193863,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.617330551147461,
+ "step": 42
+ },
+ {
+ "epoch": 0.6008733624454149,
+ "grad_norm": 0.08745060116052628,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.511157989501953,
+ "step": 43
+ },
+ {
+ "epoch": 0.6148471615720524,
+ "grad_norm": 0.08254463970661163,
+ "learning_rate": 0.000258,
+ "loss": 8.458954811096191,
+ "step": 44
+ },
+ {
+ "epoch": 0.62882096069869,
+ "grad_norm": 0.0795406699180603,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.37498664855957,
+ "step": 45
+ },
+ {
+ "epoch": 0.6427947598253275,
+ "grad_norm": 0.07730695605278015,
+ "learning_rate": 0.00027,
+ "loss": 8.293156623840332,
+ "step": 46
+ },
+ {
+ "epoch": 0.6567685589519651,
+ "grad_norm": 0.07404499500989914,
+ "learning_rate": 0.000276,
+ "loss": 8.200754165649414,
+ "step": 47
+ },
+ {
+ "epoch": 0.6707423580786026,
+ "grad_norm": 0.07091354578733444,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.114692687988281,
+ "step": 48
+ },
+ {
+ "epoch": 0.6847161572052402,
+ "grad_norm": 0.06816772371530533,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.060348510742188,
+ "step": 49
+ },
+ {
+ "epoch": 0.6986899563318777,
+ "grad_norm": 0.0605427622795105,
+ "learning_rate": 0.000294,
+ "loss": 7.991006851196289,
+ "step": 50
+ },
+ {
+ "epoch": 0.7126637554585152,
+ "grad_norm": 0.05635255202651024,
+ "learning_rate": 0.0003,
+ "loss": 7.945850372314453,
+ "step": 51
+ },
+ {
+ "epoch": 0.7266375545851529,
+ "grad_norm": 0.05419522523880005,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.895726203918457,
+ "step": 52
+ },
+ {
+ "epoch": 0.7406113537117904,
+ "grad_norm": 0.06724901497364044,
+ "learning_rate": 0.000312,
+ "loss": 7.839101791381836,
+ "step": 53
+ },
+ {
+ "epoch": 0.754585152838428,
+ "grad_norm": 0.12858672440052032,
+ "learning_rate": 0.000318,
+ "loss": 7.840076446533203,
+ "step": 54
+ },
+ {
+ "epoch": 0.7685589519650655,
+ "grad_norm": 0.05087178573012352,
+ "learning_rate": 0.000324,
+ "loss": 7.77433967590332,
+ "step": 55
+ },
+ {
+ "epoch": 0.7825327510917031,
+ "grad_norm": 0.0458969883620739,
+ "learning_rate": 0.00033,
+ "loss": 7.747459411621094,
+ "step": 56
+ },
+ {
+ "epoch": 0.7965065502183406,
+ "grad_norm": 0.03214738890528679,
+ "learning_rate": 0.000336,
+ "loss": 7.735766410827637,
+ "step": 57
+ },
+ {
+ "epoch": 0.8104803493449781,
+ "grad_norm": 0.022700699046254158,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.716371059417725,
+ "step": 58
+ },
+ {
+ "epoch": 0.8244541484716157,
+ "grad_norm": 0.02415020391345024,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.700209140777588,
+ "step": 59
+ },
+ {
+ "epoch": 0.8384279475982532,
+ "grad_norm": 0.021143650636076927,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.687976360321045,
+ "step": 60
+ },
+ {
+ "epoch": 0.8524017467248908,
+ "grad_norm": 0.019051192328333855,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.640708923339844,
+ "step": 61
+ },
+ {
+ "epoch": 0.8663755458515284,
+ "grad_norm": 0.02110682614147663,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.6529130935668945,
+ "step": 62
+ },
+ {
+ "epoch": 0.880349344978166,
+ "grad_norm": 0.024010686203837395,
+ "learning_rate": 0.000372,
+ "loss": 7.645641326904297,
+ "step": 63
+ },
+ {
+ "epoch": 0.8943231441048035,
+ "grad_norm": 0.02591090090572834,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.626849174499512,
+ "step": 64
+ },
+ {
+ "epoch": 0.9082969432314411,
+ "grad_norm": 0.02841993235051632,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.633922576904297,
+ "step": 65
+ },
+ {
+ "epoch": 0.9222707423580786,
+ "grad_norm": 0.02565363608300686,
+ "learning_rate": 0.00039,
+ "loss": 7.6236772537231445,
+ "step": 66
+ },
+ {
+ "epoch": 0.9362445414847161,
+ "grad_norm": 0.020100994035601616,
+ "learning_rate": 0.000396,
+ "loss": 7.602252006530762,
+ "step": 67
+ },
+ {
+ "epoch": 0.9502183406113537,
+ "grad_norm": 0.017415935173630714,
+ "learning_rate": 0.000402,
+ "loss": 7.574195861816406,
+ "step": 68
+ },
+ {
+ "epoch": 0.9641921397379912,
+ "grad_norm": 0.01630476303398609,
+ "learning_rate": 0.000408,
+ "loss": 7.578503131866455,
+ "step": 69
+ },
+ {
+ "epoch": 0.9781659388646288,
+ "grad_norm": 0.015402277931571007,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.54685115814209,
+ "step": 70
+ },
+ {
+ "epoch": 0.9921397379912664,
+ "grad_norm": 0.01438985951244831,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.546932220458984,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.016883183270692825,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.555042266845703,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.549549579620361,
+ "eval_runtime": 54.3422,
+ "eval_samples_per_second": 44.937,
+ "eval_steps_per_second": 1.417,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139737991266375,
+ "grad_norm": 0.01215015072375536,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.534733295440674,
+ "step": 73
+ },
+ {
+ "epoch": 1.027947598253275,
+ "grad_norm": 0.01328246109187603,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.543649196624756,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419213973799126,
+ "grad_norm": 0.012859524227678776,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.50216817855835,
+ "step": 75
+ },
+ {
+ "epoch": 1.0558951965065502,
+ "grad_norm": 0.011157970875501633,
+ "learning_rate": 0.00045,
+ "loss": 7.508391857147217,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698689956331877,
+ "grad_norm": 0.012834188528358936,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.4759087562561035,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838427947598253,
+ "grad_norm": 0.013627874664962292,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.45142936706543,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978165938864628,
+ "grad_norm": 0.01641070283949375,
+ "learning_rate": 0.000468,
+ "loss": 7.492819786071777,
+ "step": 79
+ },
+ {
+ "epoch": 1.1117903930131003,
+ "grad_norm": 0.025136210024356842,
+ "learning_rate": 0.000474,
+ "loss": 7.474215507507324,
+ "step": 80
+ },
+ {
+ "epoch": 1.125764192139738,
+ "grad_norm": 0.03659580647945404,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.475737571716309,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397379912663754,
+ "grad_norm": 0.04370221868157387,
+ "learning_rate": 0.000486,
+ "loss": 7.453543663024902,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537117903930132,
+ "grad_norm": 0.02917138673365116,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.424599647521973,
+ "step": 83
+ },
+ {
+ "epoch": 1.1676855895196507,
+ "grad_norm": 0.015414979308843613,
+ "learning_rate": 0.000498,
+ "loss": 7.388550758361816,
+ "step": 84
+ },
+ {
+ "epoch": 1.1816593886462883,
+ "grad_norm": 0.029156062752008438,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.379591941833496,
+ "step": 85
+ },
+ {
+ "epoch": 1.1956331877729258,
+ "grad_norm": 0.014958011917769909,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.372748374938965,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096069868995634,
+ "grad_norm": 0.021887343376874924,
+ "learning_rate": 0.000516,
+ "loss": 7.3589630126953125,
+ "step": 87
+ },
+ {
+ "epoch": 1.223580786026201,
+ "grad_norm": 0.02962890826165676,
+ "learning_rate": 0.000522,
+ "loss": 7.373016357421875,
+ "step": 88
+ },
+ {
+ "epoch": 1.2375545851528384,
+ "grad_norm": 0.031032968312501907,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.3282928466796875,
+ "step": 89
+ },
+ {
+ "epoch": 1.251528384279476,
+ "grad_norm": 0.027690274640917778,
+ "learning_rate": 0.000534,
+ "loss": 7.320304870605469,
+ "step": 90
+ },
+ {
+ "epoch": 1.2655021834061135,
+ "grad_norm": 0.022552549839019775,
+ "learning_rate": 0.00054,
+ "loss": 7.3051300048828125,
+ "step": 91
+ },
+ {
+ "epoch": 1.279475982532751,
+ "grad_norm": 0.04130178689956665,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.284594535827637,
+ "step": 92
+ },
+ {
+ "epoch": 1.2934497816593886,
+ "grad_norm": 0.05043136328458786,
+ "learning_rate": 0.000552,
+ "loss": 7.286007881164551,
+ "step": 93
+ },
+ {
+ "epoch": 1.3074235807860262,
+ "grad_norm": 0.04574465751647949,
+ "learning_rate": 0.000558,
+ "loss": 7.22679328918457,
+ "step": 94
+ },
+ {
+ "epoch": 1.3213973799126637,
+ "grad_norm": 0.03277682512998581,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.229741096496582,
+ "step": 95
+ },
+ {
+ "epoch": 1.3353711790393012,
+ "grad_norm": 0.022675029933452606,
+ "learning_rate": 0.00057,
+ "loss": 7.241637706756592,
+ "step": 96
+ },
+ {
+ "epoch": 1.3493449781659388,
+ "grad_norm": 0.03889699652791023,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.193673133850098,
+ "step": 97
+ },
+ {
+ "epoch": 1.3633187772925766,
+ "grad_norm": 0.029434625059366226,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.1953840255737305,
+ "step": 98
+ },
+ {
+ "epoch": 1.3772925764192139,
+ "grad_norm": 0.02118326723575592,
+ "learning_rate": 0.000588,
+ "loss": 7.178635597229004,
+ "step": 99
+ },
+ {
+ "epoch": 1.3912663755458516,
+ "grad_norm": 0.02966528758406639,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.151487350463867,
+ "step": 100
+ },
+ {
+ "epoch": 1.405240174672489,
+ "grad_norm": 0.0450727716088295,
+ "learning_rate": 0.0006,
+ "loss": 7.144834995269775,
+ "step": 101
+ },
+ {
+ "epoch": 1.4192139737991267,
+ "grad_norm": 0.08898167312145233,
+ "learning_rate": 0.0006,
+ "loss": 7.180665969848633,
+ "step": 102
+ },
+ {
+ "epoch": 1.4331877729257643,
+ "grad_norm": 0.10679084807634354,
+ "learning_rate": 0.0006,
+ "loss": 7.233458518981934,
+ "step": 103
+ },
+ {
+ "epoch": 1.4471615720524018,
+ "grad_norm": 0.04746336117386818,
+ "learning_rate": 0.0006,
+ "loss": 7.167373180389404,
+ "step": 104
+ },
+ {
+ "epoch": 1.4611353711790394,
+ "grad_norm": 0.06380590051412582,
+ "learning_rate": 0.0006,
+ "loss": 7.189356803894043,
+ "step": 105
+ },
+ {
+ "epoch": 1.475109170305677,
+ "grad_norm": 0.039717014878988266,
+ "learning_rate": 0.0006,
+ "loss": 7.096653938293457,
+ "step": 106
+ },
+ {
+ "epoch": 1.4890829694323144,
+ "grad_norm": 0.06762711703777313,
+ "learning_rate": 0.0006,
+ "loss": 7.127993583679199,
+ "step": 107
+ },
+ {
+ "epoch": 1.503056768558952,
+ "grad_norm": 0.05134489759802818,
+ "learning_rate": 0.0006,
+ "loss": 7.072257995605469,
+ "step": 108
+ },
+ {
+ "epoch": 1.5170305676855895,
+ "grad_norm": 0.062314722687006,
+ "learning_rate": 0.0006,
+ "loss": 7.073700904846191,
+ "step": 109
+ },
+ {
+ "epoch": 1.531004366812227,
+ "grad_norm": 0.03607739135622978,
+ "learning_rate": 0.0006,
+ "loss": 7.051465034484863,
+ "step": 110
+ },
+ {
+ "epoch": 1.5449781659388646,
+ "grad_norm": 0.04546204209327698,
+ "learning_rate": 0.0006,
+ "loss": 7.049814224243164,
+ "step": 111
+ },
+ {
+ "epoch": 1.5589519650655022,
+ "grad_norm": 0.0319792665541172,
+ "learning_rate": 0.0006,
+ "loss": 7.0164875984191895,
+ "step": 112
+ },
+ {
+ "epoch": 1.5729257641921397,
+ "grad_norm": 0.04590746760368347,
+ "learning_rate": 0.0006,
+ "loss": 7.001565456390381,
+ "step": 113
+ },
+ {
+ "epoch": 1.5868995633187772,
+ "grad_norm": 0.031896382570266724,
+ "learning_rate": 0.0006,
+ "loss": 6.994606018066406,
+ "step": 114
+ },
+ {
+ "epoch": 1.600873362445415,
+ "grad_norm": 0.021410338580608368,
+ "learning_rate": 0.0006,
+ "loss": 6.947071075439453,
+ "step": 115
+ },
+ {
+ "epoch": 1.6148471615720523,
+ "grad_norm": 0.030063210055232048,
+ "learning_rate": 0.0006,
+ "loss": 6.979219913482666,
+ "step": 116
+ },
+ {
+ "epoch": 1.62882096069869,
+ "grad_norm": 0.02234027162194252,
+ "learning_rate": 0.0006,
+ "loss": 6.929020881652832,
+ "step": 117
+ },
+ {
+ "epoch": 1.6427947598253274,
+ "grad_norm": 0.025586063042283058,
+ "learning_rate": 0.0006,
+ "loss": 6.9200663566589355,
+ "step": 118
+ },
+ {
+ "epoch": 1.6567685589519652,
+ "grad_norm": 0.022098371759057045,
+ "learning_rate": 0.0006,
+ "loss": 6.899832248687744,
+ "step": 119
+ },
+ {
+ "epoch": 1.6707423580786025,
+ "grad_norm": 0.019238410517573357,
+ "learning_rate": 0.0006,
+ "loss": 6.8586015701293945,
+ "step": 120
+ },
+ {
+ "epoch": 1.6847161572052403,
+ "grad_norm": 0.024153294041752815,
+ "learning_rate": 0.0006,
+ "loss": 6.867973327636719,
+ "step": 121
+ },
+ {
+ "epoch": 1.6986899563318776,
+ "grad_norm": 0.01690024696290493,
+ "learning_rate": 0.0006,
+ "loss": 6.878490447998047,
+ "step": 122
+ },
+ {
+ "epoch": 1.7126637554585153,
+ "grad_norm": 0.02171619050204754,
+ "learning_rate": 0.0006,
+ "loss": 6.853621959686279,
+ "step": 123
+ },
+ {
+ "epoch": 1.726637554585153,
+ "grad_norm": 0.020535755902528763,
+ "learning_rate": 0.0006,
+ "loss": 6.852185249328613,
+ "step": 124
+ },
+ {
+ "epoch": 1.7406113537117904,
+ "grad_norm": 0.015457311645150185,
+ "learning_rate": 0.0006,
+ "loss": 6.826596260070801,
+ "step": 125
+ },
+ {
+ "epoch": 1.754585152838428,
+ "grad_norm": 0.017492085695266724,
+ "learning_rate": 0.0006,
+ "loss": 6.842765808105469,
+ "step": 126
+ },
+ {
+ "epoch": 1.7685589519650655,
+ "grad_norm": 0.014785612002015114,
+ "learning_rate": 0.0006,
+ "loss": 6.849224090576172,
+ "step": 127
+ },
+ {
+ "epoch": 1.782532751091703,
+ "grad_norm": 0.017512250691652298,
+ "learning_rate": 0.0006,
+ "loss": 6.824787139892578,
+ "step": 128
+ },
+ {
+ "epoch": 1.7965065502183406,
+ "grad_norm": 0.01895114593207836,
+ "learning_rate": 0.0006,
+ "loss": 6.801428318023682,
+ "step": 129
+ },
+ {
+ "epoch": 1.8104803493449781,
+ "grad_norm": 0.015728816390037537,
+ "learning_rate": 0.0006,
+ "loss": 6.801990985870361,
+ "step": 130
+ },
+ {
+ "epoch": 1.8244541484716157,
+ "grad_norm": 0.014321585185825825,
+ "learning_rate": 0.0006,
+ "loss": 6.793122291564941,
+ "step": 131
+ },
+ {
+ "epoch": 1.8384279475982532,
+ "grad_norm": 0.016692014411091805,
+ "learning_rate": 0.0006,
+ "loss": 6.74687385559082,
+ "step": 132
+ },
+ {
+ "epoch": 1.8524017467248908,
+ "grad_norm": 0.016697920858860016,
+ "learning_rate": 0.0006,
+ "loss": 6.75140380859375,
+ "step": 133
+ },
+ {
+ "epoch": 1.8663755458515285,
+ "grad_norm": 0.014954701997339725,
+ "learning_rate": 0.0006,
+ "loss": 6.746084213256836,
+ "step": 134
+ },
+ {
+ "epoch": 1.8803493449781659,
+ "grad_norm": 0.013010316528379917,
+ "learning_rate": 0.0006,
+ "loss": 6.725405693054199,
+ "step": 135
+ },
+ {
+ "epoch": 1.8943231441048036,
+ "grad_norm": 0.011892660520970821,
+ "learning_rate": 0.0006,
+ "loss": 6.718758583068848,
+ "step": 136
+ },
+ {
+ "epoch": 1.908296943231441,
+ "grad_norm": 0.012127497233450413,
+ "learning_rate": 0.0006,
+ "loss": 6.708139419555664,
+ "step": 137
+ },
+ {
+ "epoch": 1.9222707423580787,
+ "grad_norm": 0.015417213551700115,
+ "learning_rate": 0.0006,
+ "loss": 6.705748558044434,
+ "step": 138
+ },
+ {
+ "epoch": 1.936244541484716,
+ "grad_norm": 0.03063729591667652,
+ "learning_rate": 0.0006,
+ "loss": 6.691249847412109,
+ "step": 139
+ },
+ {
+ "epoch": 1.9502183406113538,
+ "grad_norm": 0.07376791536808014,
+ "learning_rate": 0.0006,
+ "loss": 6.71767520904541,
+ "step": 140
+ },
+ {
+ "epoch": 1.9641921397379911,
+ "grad_norm": 0.14157423377037048,
+ "learning_rate": 0.0006,
+ "loss": 6.787544250488281,
+ "step": 141
+ },
+ {
+ "epoch": 1.9781659388646289,
+ "grad_norm": 0.09186933934688568,
+ "learning_rate": 0.0006,
+ "loss": 6.73362398147583,
+ "step": 142
+ },
+ {
+ "epoch": 1.9921397379912664,
+ "grad_norm": 0.06612848490476608,
+ "learning_rate": 0.0006,
+ "loss": 6.719516754150391,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.048072297126054764,
+ "learning_rate": 0.0006,
+ "loss": 6.666120529174805,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 6.7162394523620605,
+ "eval_runtime": 50.5907,
+ "eval_samples_per_second": 48.27,
+ "eval_steps_per_second": 1.522,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139737991266378,
+ "grad_norm": 0.03777749463915825,
+ "learning_rate": 0.0006,
+ "loss": 6.686484336853027,
+ "step": 145
+ },
+ {
+ "epoch": 2.027947598253275,
+ "grad_norm": 0.04378646984696388,
+ "learning_rate": 0.0006,
+ "loss": 6.679071426391602,
+ "step": 146
+ },
+ {
+ "epoch": 2.041921397379913,
+ "grad_norm": 0.027715124189853668,
+ "learning_rate": 0.0006,
+ "loss": 6.6776323318481445,
+ "step": 147
+ },
+ {
+ "epoch": 2.05589519650655,
+ "grad_norm": 0.03411925211548805,
+ "learning_rate": 0.0006,
+ "loss": 6.643917083740234,
+ "step": 148
+ },
+ {
+ "epoch": 2.069868995633188,
+ "grad_norm": 0.034444212913513184,
+ "learning_rate": 0.0006,
+ "loss": 6.67141056060791,
+ "step": 149
+ },
+ {
+ "epoch": 2.0838427947598253,
+ "grad_norm": 0.0387650802731514,
+ "learning_rate": 0.0006,
+ "loss": 6.65234375,
+ "step": 150
+ },
+ {
+ "epoch": 2.097816593886463,
+ "grad_norm": 0.03921861574053764,
+ "learning_rate": 0.0006,
+ "loss": 6.624712944030762,
+ "step": 151
+ },
+ {
+ "epoch": 2.1117903930131003,
+ "grad_norm": 0.02531580813229084,
+ "learning_rate": 0.0006,
+ "loss": 6.617608547210693,
+ "step": 152
+ },
+ {
+ "epoch": 2.125764192139738,
+ "grad_norm": 0.03220974653959274,
+ "learning_rate": 0.0006,
+ "loss": 6.587964057922363,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397379912663754,
+ "grad_norm": 0.03923291340470314,
+ "learning_rate": 0.0006,
+ "loss": 6.588845252990723,
+ "step": 154
+ },
+ {
+ "epoch": 2.153711790393013,
+ "grad_norm": 0.028337281197309494,
+ "learning_rate": 0.0006,
+ "loss": 6.5807952880859375,
+ "step": 155
+ },
+ {
+ "epoch": 2.1676855895196505,
+ "grad_norm": 0.01873156800866127,
+ "learning_rate": 0.0006,
+ "loss": 6.560453414916992,
+ "step": 156
+ },
+ {
+ "epoch": 2.1816593886462883,
+ "grad_norm": 0.027509493753314018,
+ "learning_rate": 0.0006,
+ "loss": 6.5615363121032715,
+ "step": 157
+ },
+ {
+ "epoch": 2.1956331877729256,
+ "grad_norm": 0.025428347289562225,
+ "learning_rate": 0.0006,
+ "loss": 6.5283966064453125,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096069868995634,
+ "grad_norm": 0.02118629403412342,
+ "learning_rate": 0.0006,
+ "loss": 6.526224136352539,
+ "step": 159
+ },
+ {
+ "epoch": 2.2235807860262007,
+ "grad_norm": 0.03233652561903,
+ "learning_rate": 0.0006,
+ "loss": 6.536041259765625,
+ "step": 160
+ },
+ {
+ "epoch": 2.2375545851528384,
+ "grad_norm": 0.04605546221137047,
+ "learning_rate": 0.0006,
+ "loss": 6.537662029266357,
+ "step": 161
+ },
+ {
+ "epoch": 2.251528384279476,
+ "grad_norm": 0.05192062631249428,
+ "learning_rate": 0.0006,
+ "loss": 6.551901817321777,
+ "step": 162
+ },
+ {
+ "epoch": 2.2655021834061135,
+ "grad_norm": 0.042231615632772446,
+ "learning_rate": 0.0006,
+ "loss": 6.511076927185059,
+ "step": 163
+ },
+ {
+ "epoch": 2.279475982532751,
+ "grad_norm": 0.04085887596011162,
+ "learning_rate": 0.0006,
+ "loss": 6.503472328186035,
+ "step": 164
+ },
+ {
+ "epoch": 2.2934497816593886,
+ "grad_norm": 0.031182587146759033,
+ "learning_rate": 0.0006,
+ "loss": 6.504403591156006,
+ "step": 165
+ },
+ {
+ "epoch": 2.3074235807860264,
+ "grad_norm": 0.032555561512708664,
+ "learning_rate": 0.0006,
+ "loss": 6.4552764892578125,
+ "step": 166
+ },
+ {
+ "epoch": 2.3213973799126637,
+ "grad_norm": 0.04939635097980499,
+ "learning_rate": 0.0006,
+ "loss": 6.495351791381836,
+ "step": 167
+ },
+ {
+ "epoch": 2.3353711790393015,
+ "grad_norm": 0.037503793835639954,
+ "learning_rate": 0.0006,
+ "loss": 6.4742560386657715,
+ "step": 168
+ },
+ {
+ "epoch": 2.349344978165939,
+ "grad_norm": 0.02366613782942295,
+ "learning_rate": 0.0006,
+ "loss": 6.478525161743164,
+ "step": 169
+ },
+ {
+ "epoch": 2.3633187772925766,
+ "grad_norm": 0.022314894944429398,
+ "learning_rate": 0.0006,
+ "loss": 6.414134979248047,
+ "step": 170
+ },
+ {
+ "epoch": 2.377292576419214,
+ "grad_norm": 0.030494702979922295,
+ "learning_rate": 0.0006,
+ "loss": 6.444867134094238,
+ "step": 171
+ },
+ {
+ "epoch": 2.3912663755458516,
+ "grad_norm": 0.04064486175775528,
+ "learning_rate": 0.0006,
+ "loss": 6.417036056518555,
+ "step": 172
+ },
+ {
+ "epoch": 2.405240174672489,
+ "grad_norm": 0.03061651438474655,
+ "learning_rate": 0.0006,
+ "loss": 6.423735618591309,
+ "step": 173
+ },
+ {
+ "epoch": 2.4192139737991267,
+ "grad_norm": 0.02046056278049946,
+ "learning_rate": 0.0006,
+ "loss": 6.419736862182617,
+ "step": 174
+ },
+ {
+ "epoch": 2.433187772925764,
+ "grad_norm": 0.02530163712799549,
+ "learning_rate": 0.0006,
+ "loss": 6.399930953979492,
+ "step": 175
+ },
+ {
+ "epoch": 2.447161572052402,
+ "grad_norm": 0.03588842228055,
+ "learning_rate": 0.0006,
+ "loss": 6.418618202209473,
+ "step": 176
+ },
+ {
+ "epoch": 2.461135371179039,
+ "grad_norm": 0.04048234224319458,
+ "learning_rate": 0.0006,
+ "loss": 6.390285491943359,
+ "step": 177
+ },
+ {
+ "epoch": 2.475109170305677,
+ "grad_norm": 0.039080191403627396,
+ "learning_rate": 0.0006,
+ "loss": 6.3688530921936035,
+ "step": 178
+ },
+ {
+ "epoch": 2.489082969432314,
+ "grad_norm": 0.029000122100114822,
+ "learning_rate": 0.0006,
+ "loss": 6.369181156158447,
+ "step": 179
+ },
+ {
+ "epoch": 2.503056768558952,
+ "grad_norm": 0.01609761081635952,
+ "learning_rate": 0.0006,
+ "loss": 6.359917640686035,
+ "step": 180
+ },
+ {
+ "epoch": 2.5170305676855893,
+ "grad_norm": 0.02305005118250847,
+ "learning_rate": 0.0006,
+ "loss": 6.347358226776123,
+ "step": 181
+ },
+ {
+ "epoch": 2.531004366812227,
+ "grad_norm": 0.03316781297326088,
+ "learning_rate": 0.0006,
+ "loss": 6.36626672744751,
+ "step": 182
+ },
+ {
+ "epoch": 2.544978165938865,
+ "grad_norm": 0.05111207440495491,
+ "learning_rate": 0.0006,
+ "loss": 6.380453109741211,
+ "step": 183
+ },
+ {
+ "epoch": 2.558951965065502,
+ "grad_norm": 0.062241602689027786,
+ "learning_rate": 0.0006,
+ "loss": 6.353237152099609,
+ "step": 184
+ },
+ {
+ "epoch": 2.5729257641921395,
+ "grad_norm": 0.060149725526571274,
+ "learning_rate": 0.0006,
+ "loss": 6.358938694000244,
+ "step": 185
+ },
+ {
+ "epoch": 2.5868995633187772,
+ "grad_norm": 0.04228121414780617,
+ "learning_rate": 0.0006,
+ "loss": 6.310116767883301,
+ "step": 186
+ },
+ {
+ "epoch": 2.600873362445415,
+ "grad_norm": 0.019458215683698654,
+ "learning_rate": 0.0006,
+ "loss": 6.284702777862549,
+ "step": 187
+ },
+ {
+ "epoch": 2.6148471615720523,
+ "grad_norm": 0.0342358835041523,
+ "learning_rate": 0.0006,
+ "loss": 6.316659927368164,
+ "step": 188
+ },
+ {
+ "epoch": 2.62882096069869,
+ "grad_norm": 0.04139583557844162,
+ "learning_rate": 0.0006,
+ "loss": 6.301124572753906,
+ "step": 189
+ },
+ {
+ "epoch": 2.6427947598253274,
+ "grad_norm": 0.028264787048101425,
+ "learning_rate": 0.0006,
+ "loss": 6.298510551452637,
+ "step": 190
+ },
+ {
+ "epoch": 2.656768558951965,
+ "grad_norm": 0.023622136563062668,
+ "learning_rate": 0.0006,
+ "loss": 6.2571210861206055,
+ "step": 191
+ },
+ {
+ "epoch": 2.6707423580786025,
+ "grad_norm": 0.039508845657110214,
+ "learning_rate": 0.0006,
+ "loss": 6.267218589782715,
+ "step": 192
+ },
+ {
+ "epoch": 2.6847161572052403,
+ "grad_norm": 0.043358899652957916,
+ "learning_rate": 0.0006,
+ "loss": 6.279658794403076,
+ "step": 193
+ },
+ {
+ "epoch": 2.6986899563318776,
+ "grad_norm": 0.04134640842676163,
+ "learning_rate": 0.0006,
+ "loss": 6.277159214019775,
+ "step": 194
+ },
+ {
+ "epoch": 2.7126637554585153,
+ "grad_norm": 0.05406952276825905,
+ "learning_rate": 0.0006,
+ "loss": 6.295559883117676,
+ "step": 195
+ },
+ {
+ "epoch": 2.726637554585153,
+ "grad_norm": 0.04557774215936661,
+ "learning_rate": 0.0006,
+ "loss": 6.260174751281738,
+ "step": 196
+ },
+ {
+ "epoch": 2.7406113537117904,
+ "grad_norm": 0.04542337730526924,
+ "learning_rate": 0.0006,
+ "loss": 6.244534492492676,
+ "step": 197
+ },
+ {
+ "epoch": 2.7545851528384278,
+ "grad_norm": 0.06924881041049957,
+ "learning_rate": 0.0006,
+ "loss": 6.2060723304748535,
+ "step": 198
+ },
+ {
+ "epoch": 2.7685589519650655,
+ "grad_norm": 0.06679725646972656,
+ "learning_rate": 0.0006,
+ "loss": 6.259133815765381,
+ "step": 199
+ },
+ {
+ "epoch": 2.7825327510917033,
+ "grad_norm": 0.05039471387863159,
+ "learning_rate": 0.0006,
+ "loss": 6.239280700683594,
+ "step": 200
+ },
+ {
+ "epoch": 2.7965065502183406,
+ "grad_norm": 0.05935394763946533,
+ "learning_rate": 0.0006,
+ "loss": 6.242481231689453,
+ "step": 201
+ },
+ {
+ "epoch": 2.810480349344978,
+ "grad_norm": 0.0486418716609478,
+ "learning_rate": 0.0006,
+ "loss": 6.239593505859375,
+ "step": 202
+ },
+ {
+ "epoch": 2.8244541484716157,
+ "grad_norm": 0.05010748282074928,
+ "learning_rate": 0.0006,
+ "loss": 6.2328948974609375,
+ "step": 203
+ },
+ {
+ "epoch": 2.8384279475982535,
+ "grad_norm": 0.03444438800215721,
+ "learning_rate": 0.0006,
+ "loss": 6.200089454650879,
+ "step": 204
+ },
+ {
+ "epoch": 2.8524017467248908,
+ "grad_norm": 0.043253373354673386,
+ "learning_rate": 0.0006,
+ "loss": 6.2089433670043945,
+ "step": 205
+ },
+ {
+ "epoch": 2.8663755458515285,
+ "grad_norm": 0.047505684196949005,
+ "learning_rate": 0.0006,
+ "loss": 6.220322608947754,
+ "step": 206
+ },
+ {
+ "epoch": 2.880349344978166,
+ "grad_norm": 0.04393792524933815,
+ "learning_rate": 0.0006,
+ "loss": 6.178770542144775,
+ "step": 207
+ },
+ {
+ "epoch": 2.8943231441048036,
+ "grad_norm": 0.04025835916399956,
+ "learning_rate": 0.0006,
+ "loss": 6.160248756408691,
+ "step": 208
+ },
+ {
+ "epoch": 2.908296943231441,
+ "grad_norm": 0.03877986595034599,
+ "learning_rate": 0.0006,
+ "loss": 6.164917945861816,
+ "step": 209
+ },
+ {
+ "epoch": 2.9222707423580787,
+ "grad_norm": 0.03666771203279495,
+ "learning_rate": 0.0006,
+ "loss": 6.172199249267578,
+ "step": 210
+ },
+ {
+ "epoch": 2.936244541484716,
+ "grad_norm": 0.028036516159772873,
+ "learning_rate": 0.0006,
+ "loss": 6.179510116577148,
+ "step": 211
+ },
+ {
+ "epoch": 2.950218340611354,
+ "grad_norm": 0.021492617204785347,
+ "learning_rate": 0.0006,
+ "loss": 6.1275153160095215,
+ "step": 212
+ },
+ {
+ "epoch": 2.964192139737991,
+ "grad_norm": 0.026816558092832565,
+ "learning_rate": 0.0006,
+ "loss": 6.131775856018066,
+ "step": 213
+ },
+ {
+ "epoch": 2.978165938864629,
+ "grad_norm": 0.03757898136973381,
+ "learning_rate": 0.0006,
+ "loss": 6.135777473449707,
+ "step": 214
+ },
+ {
+ "epoch": 2.992139737991266,
+ "grad_norm": 0.06036437302827835,
+ "learning_rate": 0.0006,
+ "loss": 6.146076202392578,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.09846952557563782,
+ "learning_rate": 0.0006,
+ "loss": 6.218435287475586,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.23890495300293,
+ "eval_runtime": 50.6822,
+ "eval_samples_per_second": 48.183,
+ "eval_steps_per_second": 1.519,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139737991266378,
+ "grad_norm": 0.10463741421699524,
+ "learning_rate": 0.0006,
+ "loss": 6.197120666503906,
+ "step": 217
+ },
+ {
+ "epoch": 3.027947598253275,
+ "grad_norm": 0.10212419927120209,
+ "learning_rate": 0.0006,
+ "loss": 6.178340911865234,
+ "step": 218
+ },
+ {
+ "epoch": 3.041921397379913,
+ "grad_norm": 0.08038751780986786,
+ "learning_rate": 0.0006,
+ "loss": 6.217406749725342,
+ "step": 219
+ },
+ {
+ "epoch": 3.05589519650655,
+ "grad_norm": 0.04787508398294449,
+ "learning_rate": 0.0006,
+ "loss": 6.155381679534912,
+ "step": 220
+ },
+ {
+ "epoch": 3.069868995633188,
+ "grad_norm": 0.06880322843790054,
+ "learning_rate": 0.0006,
+ "loss": 6.121614933013916,
+ "step": 221
+ },
+ {
+ "epoch": 3.0838427947598253,
+ "grad_norm": 0.03749438002705574,
+ "learning_rate": 0.0006,
+ "loss": 6.120484352111816,
+ "step": 222
+ },
+ {
+ "epoch": 3.097816593886463,
+ "grad_norm": 0.03875046223402023,
+ "learning_rate": 0.0006,
+ "loss": 6.12362003326416,
+ "step": 223
+ },
+ {
+ "epoch": 3.1117903930131003,
+ "grad_norm": 0.030663209035992622,
+ "learning_rate": 0.0006,
+ "loss": 6.1111063957214355,
+ "step": 224
+ },
+ {
+ "epoch": 3.125764192139738,
+ "grad_norm": 0.029520904645323753,
+ "learning_rate": 0.0006,
+ "loss": 6.130336761474609,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397379912663754,
+ "grad_norm": 0.02854953519999981,
+ "learning_rate": 0.0006,
+ "loss": 6.086193084716797,
+ "step": 226
+ },
+ {
+ "epoch": 3.153711790393013,
+ "grad_norm": 0.027147898450493813,
+ "learning_rate": 0.0006,
+ "loss": 6.066827774047852,
+ "step": 227
+ },
+ {
+ "epoch": 3.1676855895196505,
+ "grad_norm": 0.025577887892723083,
+ "learning_rate": 0.0006,
+ "loss": 6.070775032043457,
+ "step": 228
+ },
+ {
+ "epoch": 3.1816593886462883,
+ "grad_norm": 0.026318276301026344,
+ "learning_rate": 0.0006,
+ "loss": 6.064469814300537,
+ "step": 229
+ },
+ {
+ "epoch": 3.1956331877729256,
+ "grad_norm": 0.02595221996307373,
+ "learning_rate": 0.0006,
+ "loss": 6.066489219665527,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096069868995634,
+ "grad_norm": 0.0248890221118927,
+ "learning_rate": 0.0006,
+ "loss": 6.032470703125,
+ "step": 231
+ },
+ {
+ "epoch": 3.2235807860262007,
+ "grad_norm": 0.017041699960827827,
+ "learning_rate": 0.0006,
+ "loss": 6.056160926818848,
+ "step": 232
+ },
+ {
+ "epoch": 3.2375545851528384,
+ "grad_norm": 0.020971592515707016,
+ "learning_rate": 0.0006,
+ "loss": 6.024506568908691,
+ "step": 233
+ },
+ {
+ "epoch": 3.251528384279476,
+ "grad_norm": 0.01897028088569641,
+ "learning_rate": 0.0006,
+ "loss": 6.035656929016113,
+ "step": 234
+ },
+ {
+ "epoch": 3.2655021834061135,
+ "grad_norm": 0.027151981368660927,
+ "learning_rate": 0.0006,
+ "loss": 6.026547431945801,
+ "step": 235
+ },
+ {
+ "epoch": 3.279475982532751,
+ "grad_norm": 0.029453502967953682,
+ "learning_rate": 0.0006,
+ "loss": 5.981723785400391,
+ "step": 236
+ },
+ {
+ "epoch": 3.2934497816593886,
+ "grad_norm": 0.027771083638072014,
+ "learning_rate": 0.0006,
+ "loss": 6.019796371459961,
+ "step": 237
+ },
+ {
+ "epoch": 3.3074235807860264,
+ "grad_norm": 0.02605084516108036,
+ "learning_rate": 0.0006,
+ "loss": 5.984506607055664,
+ "step": 238
+ },
+ {
+ "epoch": 3.3213973799126637,
+ "grad_norm": 0.022903922945261,
+ "learning_rate": 0.0006,
+ "loss": 6.023873805999756,
+ "step": 239
+ },
+ {
+ "epoch": 3.3353711790393015,
+ "grad_norm": 0.01976492442190647,
+ "learning_rate": 0.0006,
+ "loss": 6.009030342102051,
+ "step": 240
+ },
+ {
+ "epoch": 3.349344978165939,
+ "grad_norm": 0.018872970715165138,
+ "learning_rate": 0.0006,
+ "loss": 5.970742702484131,
+ "step": 241
+ },
+ {
+ "epoch": 3.3633187772925766,
+ "grad_norm": 0.017447829246520996,
+ "learning_rate": 0.0006,
+ "loss": 5.968851089477539,
+ "step": 242
+ },
+ {
+ "epoch": 3.377292576419214,
+ "grad_norm": 0.025419825688004494,
+ "learning_rate": 0.0006,
+ "loss": 5.956470489501953,
+ "step": 243
+ },
+ {
+ "epoch": 3.3912663755458516,
+ "grad_norm": 0.03654123470187187,
+ "learning_rate": 0.0006,
+ "loss": 5.94770622253418,
+ "step": 244
+ },
+ {
+ "epoch": 3.405240174672489,
+ "grad_norm": 0.05607098713517189,
+ "learning_rate": 0.0006,
+ "loss": 6.008593559265137,
+ "step": 245
+ },
+ {
+ "epoch": 3.4192139737991267,
+ "grad_norm": 0.07973720878362656,
+ "learning_rate": 0.0006,
+ "loss": 5.9966888427734375,
+ "step": 246
+ },
+ {
+ "epoch": 3.433187772925764,
+ "grad_norm": 0.10906023532152176,
+ "learning_rate": 0.0006,
+ "loss": 6.054642200469971,
+ "step": 247
+ },
+ {
+ "epoch": 3.447161572052402,
+ "grad_norm": 0.09792660176753998,
+ "learning_rate": 0.0006,
+ "loss": 6.067026138305664,
+ "step": 248
+ },
+ {
+ "epoch": 3.461135371179039,
+ "grad_norm": 0.07395700365304947,
+ "learning_rate": 0.0006,
+ "loss": 6.01310920715332,
+ "step": 249
+ },
+ {
+ "epoch": 3.475109170305677,
+ "grad_norm": 0.10172071307897568,
+ "learning_rate": 0.0006,
+ "loss": 6.048509120941162,
+ "step": 250
+ },
+ {
+ "epoch": 3.489082969432314,
+ "grad_norm": 0.0717678815126419,
+ "learning_rate": 0.0006,
+ "loss": 6.055008888244629,
+ "step": 251
+ },
+ {
+ "epoch": 3.503056768558952,
+ "grad_norm": 0.06398089975118637,
+ "learning_rate": 0.0006,
+ "loss": 5.9677276611328125,
+ "step": 252
+ },
+ {
+ "epoch": 3.5170305676855893,
+ "grad_norm": 0.0643860474228859,
+ "learning_rate": 0.0006,
+ "loss": 5.957507133483887,
+ "step": 253
+ },
+ {
+ "epoch": 3.531004366812227,
+ "grad_norm": 0.03472325950860977,
+ "learning_rate": 0.0006,
+ "loss": 5.952362060546875,
+ "step": 254
+ },
+ {
+ "epoch": 3.544978165938865,
+ "grad_norm": 0.03918307647109032,
+ "learning_rate": 0.0006,
+ "loss": 5.957100868225098,
+ "step": 255
+ },
+ {
+ "epoch": 3.558951965065502,
+ "grad_norm": 0.03519073501229286,
+ "learning_rate": 0.0006,
+ "loss": 5.97830867767334,
+ "step": 256
+ },
+ {
+ "epoch": 3.5729257641921395,
+ "grad_norm": 0.03435497358441353,
+ "learning_rate": 0.0006,
+ "loss": 5.93912410736084,
+ "step": 257
+ },
+ {
+ "epoch": 3.5868995633187772,
+ "grad_norm": 0.026064487174153328,
+ "learning_rate": 0.0006,
+ "loss": 5.91353702545166,
+ "step": 258
+ },
+ {
+ "epoch": 3.600873362445415,
+ "grad_norm": 0.03159152343869209,
+ "learning_rate": 0.0006,
+ "loss": 5.913291931152344,
+ "step": 259
+ },
+ {
+ "epoch": 3.6148471615720523,
+ "grad_norm": 0.02195592038333416,
+ "learning_rate": 0.0006,
+ "loss": 5.906322479248047,
+ "step": 260
+ },
+ {
+ "epoch": 3.62882096069869,
+ "grad_norm": 0.020358966663479805,
+ "learning_rate": 0.0006,
+ "loss": 5.891860008239746,
+ "step": 261
+ },
+ {
+ "epoch": 3.6427947598253274,
+ "grad_norm": 0.01964488998055458,
+ "learning_rate": 0.0006,
+ "loss": 5.881132125854492,
+ "step": 262
+ },
+ {
+ "epoch": 3.656768558951965,
+ "grad_norm": 0.022447235882282257,
+ "learning_rate": 0.0006,
+ "loss": 5.8846940994262695,
+ "step": 263
+ },
+ {
+ "epoch": 3.6707423580786025,
+ "grad_norm": 0.018359875306487083,
+ "learning_rate": 0.0006,
+ "loss": 5.8861188888549805,
+ "step": 264
+ },
+ {
+ "epoch": 3.6847161572052403,
+ "grad_norm": 0.018481185659766197,
+ "learning_rate": 0.0006,
+ "loss": 5.874635696411133,
+ "step": 265
+ },
+ {
+ "epoch": 3.6986899563318776,
+ "grad_norm": 0.016943952068686485,
+ "learning_rate": 0.0006,
+ "loss": 5.8380126953125,
+ "step": 266
+ },
+ {
+ "epoch": 3.7126637554585153,
+ "grad_norm": 0.016593772917985916,
+ "learning_rate": 0.0006,
+ "loss": 5.855746269226074,
+ "step": 267
+ },
+ {
+ "epoch": 3.726637554585153,
+ "grad_norm": 0.018204636871814728,
+ "learning_rate": 0.0006,
+ "loss": 5.873927116394043,
+ "step": 268
+ },
+ {
+ "epoch": 3.7406113537117904,
+ "grad_norm": 0.017277248203754425,
+ "learning_rate": 0.0006,
+ "loss": 5.855231285095215,
+ "step": 269
+ },
+ {
+ "epoch": 3.7545851528384278,
+ "grad_norm": 0.01717568188905716,
+ "learning_rate": 0.0006,
+ "loss": 5.847787857055664,
+ "step": 270
+ },
+ {
+ "epoch": 3.7685589519650655,
+ "grad_norm": 0.01537331473082304,
+ "learning_rate": 0.0006,
+ "loss": 5.852605819702148,
+ "step": 271
+ },
+ {
+ "epoch": 3.7825327510917033,
+ "grad_norm": 0.01504798699170351,
+ "learning_rate": 0.0006,
+ "loss": 5.825901031494141,
+ "step": 272
+ },
+ {
+ "epoch": 3.7965065502183406,
+ "grad_norm": 0.023221664130687714,
+ "learning_rate": 0.0006,
+ "loss": 5.812404155731201,
+ "step": 273
+ },
+ {
+ "epoch": 3.810480349344978,
+ "grad_norm": 0.0397733673453331,
+ "learning_rate": 0.0006,
+ "loss": 5.804308891296387,
+ "step": 274
+ },
+ {
+ "epoch": 3.8244541484716157,
+ "grad_norm": 0.05233687534928322,
+ "learning_rate": 0.0006,
+ "loss": 5.788049697875977,
+ "step": 275
+ },
+ {
+ "epoch": 3.8384279475982535,
+ "grad_norm": 0.05563921108841896,
+ "learning_rate": 0.0006,
+ "loss": 5.811939239501953,
+ "step": 276
+ },
+ {
+ "epoch": 3.8524017467248908,
+ "grad_norm": 0.0501336008310318,
+ "learning_rate": 0.0006,
+ "loss": 5.810712814331055,
+ "step": 277
+ },
+ {
+ "epoch": 3.8663755458515285,
+ "grad_norm": 0.07601612061262131,
+ "learning_rate": 0.0006,
+ "loss": 5.846009254455566,
+ "step": 278
+ },
+ {
+ "epoch": 3.880349344978166,
+ "grad_norm": 0.07927536964416504,
+ "learning_rate": 0.0006,
+ "loss": 5.846945285797119,
+ "step": 279
+ },
+ {
+ "epoch": 3.8943231441048036,
+ "grad_norm": 0.05778975039720535,
+ "learning_rate": 0.0006,
+ "loss": 5.8009209632873535,
+ "step": 280
+ },
+ {
+ "epoch": 3.908296943231441,
+ "grad_norm": 0.06650745123624802,
+ "learning_rate": 0.0006,
+ "loss": 5.825387001037598,
+ "step": 281
+ },
+ {
+ "epoch": 3.9222707423580787,
+ "grad_norm": 0.05610830709338188,
+ "learning_rate": 0.0006,
+ "loss": 5.854207992553711,
+ "step": 282
+ },
+ {
+ "epoch": 3.936244541484716,
+ "grad_norm": 0.03054177202284336,
+ "learning_rate": 0.0006,
+ "loss": 5.8229875564575195,
+ "step": 283
+ },
+ {
+ "epoch": 3.950218340611354,
+ "grad_norm": 0.03929241746664047,
+ "learning_rate": 0.0006,
+ "loss": 5.8026041984558105,
+ "step": 284
+ },
+ {
+ "epoch": 3.964192139737991,
+ "grad_norm": 0.03007139079272747,
+ "learning_rate": 0.0006,
+ "loss": 5.7833709716796875,
+ "step": 285
+ },
+ {
+ "epoch": 3.978165938864629,
+ "grad_norm": 0.03231097757816315,
+ "learning_rate": 0.0006,
+ "loss": 5.7852091789245605,
+ "step": 286
+ },
+ {
+ "epoch": 3.992139737991266,
+ "grad_norm": 0.02939445711672306,
+ "learning_rate": 0.0006,
+ "loss": 5.753163814544678,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.02993260696530342,
+ "learning_rate": 0.0006,
+ "loss": 5.762526512145996,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 5.799882888793945,
+ "eval_runtime": 50.8936,
+ "eval_samples_per_second": 47.982,
+ "eval_steps_per_second": 1.513,
+ "step": 288
+ },
+ {
+ "epoch": 4.013973799126638,
+ "grad_norm": 0.025836583226919174,
+ "learning_rate": 0.0006,
+ "loss": 5.74060583114624,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279475982532755,
+ "grad_norm": 0.02240375429391861,
+ "learning_rate": 0.0006,
+ "loss": 5.744357109069824,
+ "step": 290
+ },
+ {
+ "epoch": 4.041921397379912,
+ "grad_norm": 0.019645314663648605,
+ "learning_rate": 0.0006,
+ "loss": 5.714840412139893,
+ "step": 291
+ },
+ {
+ "epoch": 4.05589519650655,
+ "grad_norm": 0.01903143897652626,
+ "learning_rate": 0.0006,
+ "loss": 5.749794006347656,
+ "step": 292
+ },
+ {
+ "epoch": 4.069868995633188,
+ "grad_norm": 0.020970258861780167,
+ "learning_rate": 0.0006,
+ "loss": 5.684886932373047,
+ "step": 293
+ },
+ {
+ "epoch": 4.083842794759826,
+ "grad_norm": 0.022254586219787598,
+ "learning_rate": 0.0006,
+ "loss": 5.690360069274902,
+ "step": 294
+ },
+ {
+ "epoch": 4.097816593886463,
+ "grad_norm": 0.024622811004519463,
+ "learning_rate": 0.0006,
+ "loss": 5.7078962326049805,
+ "step": 295
+ },
+ {
+ "epoch": 4.1117903930131,
+ "grad_norm": 0.023592552170157433,
+ "learning_rate": 0.0006,
+ "loss": 5.7039971351623535,
+ "step": 296
+ },
+ {
+ "epoch": 4.125764192139738,
+ "grad_norm": 0.02667587623000145,
+ "learning_rate": 0.0006,
+ "loss": 5.677852630615234,
+ "step": 297
+ },
+ {
+ "epoch": 4.139737991266376,
+ "grad_norm": 0.03330948203802109,
+ "learning_rate": 0.0006,
+ "loss": 5.688773155212402,
+ "step": 298
+ },
+ {
+ "epoch": 4.153711790393013,
+ "grad_norm": 0.045157793909311295,
+ "learning_rate": 0.0006,
+ "loss": 5.675937652587891,
+ "step": 299
+ },
+ {
+ "epoch": 4.1676855895196505,
+ "grad_norm": 0.07034408301115036,
+ "learning_rate": 0.0006,
+ "loss": 5.687074661254883,
+ "step": 300
+ },
+ {
+ "epoch": 4.181659388646288,
+ "grad_norm": 0.10193091630935669,
+ "learning_rate": 0.0006,
+ "loss": 5.748222351074219,
+ "step": 301
+ },
+ {
+ "epoch": 4.195633187772926,
+ "grad_norm": 0.09606931358575821,
+ "learning_rate": 0.0006,
+ "loss": 5.767232894897461,
+ "step": 302
+ },
+ {
+ "epoch": 4.209606986899563,
+ "grad_norm": 0.05994758382439613,
+ "learning_rate": 0.0006,
+ "loss": 5.723153114318848,
+ "step": 303
+ },
+ {
+ "epoch": 4.223580786026201,
+ "grad_norm": 0.045849986374378204,
+ "learning_rate": 0.0006,
+ "loss": 5.7005815505981445,
+ "step": 304
+ },
+ {
+ "epoch": 4.2375545851528384,
+ "grad_norm": 0.04177941009402275,
+ "learning_rate": 0.0006,
+ "loss": 5.679755210876465,
+ "step": 305
+ },
+ {
+ "epoch": 4.251528384279476,
+ "grad_norm": 0.03307238593697548,
+ "learning_rate": 0.0006,
+ "loss": 5.677393913269043,
+ "step": 306
+ },
+ {
+ "epoch": 4.265502183406113,
+ "grad_norm": 0.04340110346674919,
+ "learning_rate": 0.0006,
+ "loss": 5.702075004577637,
+ "step": 307
+ },
+ {
+ "epoch": 4.279475982532751,
+ "grad_norm": 0.04797970876097679,
+ "learning_rate": 0.0006,
+ "loss": 5.650345802307129,
+ "step": 308
+ },
+ {
+ "epoch": 4.293449781659389,
+ "grad_norm": 0.04946571961045265,
+ "learning_rate": 0.0006,
+ "loss": 5.675044059753418,
+ "step": 309
+ },
+ {
+ "epoch": 4.307423580786026,
+ "grad_norm": 0.03254636004567146,
+ "learning_rate": 0.0006,
+ "loss": 5.622986793518066,
+ "step": 310
+ },
+ {
+ "epoch": 4.321397379912664,
+ "grad_norm": 0.032069381326436996,
+ "learning_rate": 0.0006,
+ "loss": 5.629563331604004,
+ "step": 311
+ },
+ {
+ "epoch": 4.335371179039301,
+ "grad_norm": 0.033597469329833984,
+ "learning_rate": 0.0006,
+ "loss": 5.612854480743408,
+ "step": 312
+ },
+ {
+ "epoch": 4.349344978165939,
+ "grad_norm": 0.02717825584113598,
+ "learning_rate": 0.0006,
+ "loss": 5.652135372161865,
+ "step": 313
+ },
+ {
+ "epoch": 4.3633187772925766,
+ "grad_norm": 0.03312784433364868,
+ "learning_rate": 0.0006,
+ "loss": 5.649629592895508,
+ "step": 314
+ },
+ {
+ "epoch": 4.377292576419214,
+ "grad_norm": 0.03037389926612377,
+ "learning_rate": 0.0006,
+ "loss": 5.6194305419921875,
+ "step": 315
+ },
+ {
+ "epoch": 4.391266375545851,
+ "grad_norm": 0.03778672590851784,
+ "learning_rate": 0.0006,
+ "loss": 5.641755104064941,
+ "step": 316
+ },
+ {
+ "epoch": 4.405240174672489,
+ "grad_norm": 0.053473301231861115,
+ "learning_rate": 0.0006,
+ "loss": 5.621832847595215,
+ "step": 317
+ },
+ {
+ "epoch": 4.419213973799127,
+ "grad_norm": 0.06915664672851562,
+ "learning_rate": 0.0006,
+ "loss": 5.601483345031738,
+ "step": 318
+ },
+ {
+ "epoch": 4.4331877729257645,
+ "grad_norm": 0.06667220592498779,
+ "learning_rate": 0.0006,
+ "loss": 5.642349720001221,
+ "step": 319
+ },
+ {
+ "epoch": 4.447161572052401,
+ "grad_norm": 0.037290167063474655,
+ "learning_rate": 0.0006,
+ "loss": 5.604238510131836,
+ "step": 320
+ },
+ {
+ "epoch": 4.461135371179039,
+ "grad_norm": 0.04003678262233734,
+ "learning_rate": 0.0006,
+ "loss": 5.593315601348877,
+ "step": 321
+ },
+ {
+ "epoch": 4.475109170305677,
+ "grad_norm": 0.028076812624931335,
+ "learning_rate": 0.0006,
+ "loss": 5.566408157348633,
+ "step": 322
+ },
+ {
+ "epoch": 4.489082969432315,
+ "grad_norm": 0.031247343868017197,
+ "learning_rate": 0.0006,
+ "loss": 5.6215410232543945,
+ "step": 323
+ },
+ {
+ "epoch": 4.503056768558952,
+ "grad_norm": 0.02864190936088562,
+ "learning_rate": 0.0006,
+ "loss": 5.583666801452637,
+ "step": 324
+ },
+ {
+ "epoch": 4.517030567685589,
+ "grad_norm": 0.03396870568394661,
+ "learning_rate": 0.0006,
+ "loss": 5.568394184112549,
+ "step": 325
+ },
+ {
+ "epoch": 4.531004366812227,
+ "grad_norm": 0.03053557313978672,
+ "learning_rate": 0.0006,
+ "loss": 5.5704755783081055,
+ "step": 326
+ },
+ {
+ "epoch": 4.544978165938865,
+ "grad_norm": 0.039402369409799576,
+ "learning_rate": 0.0006,
+ "loss": 5.529522895812988,
+ "step": 327
+ },
+ {
+ "epoch": 4.558951965065502,
+ "grad_norm": 0.039162520319223404,
+ "learning_rate": 0.0006,
+ "loss": 5.565547466278076,
+ "step": 328
+ },
+ {
+ "epoch": 4.5729257641921395,
+ "grad_norm": 0.03071208856999874,
+ "learning_rate": 0.0006,
+ "loss": 5.551553726196289,
+ "step": 329
+ },
+ {
+ "epoch": 4.586899563318777,
+ "grad_norm": 0.0320625938475132,
+ "learning_rate": 0.0006,
+ "loss": 5.535126686096191,
+ "step": 330
+ },
+ {
+ "epoch": 4.600873362445415,
+ "grad_norm": 0.03700695186853409,
+ "learning_rate": 0.0006,
+ "loss": 5.560665130615234,
+ "step": 331
+ },
+ {
+ "epoch": 4.614847161572053,
+ "grad_norm": 0.0327119417488575,
+ "learning_rate": 0.0006,
+ "loss": 5.528924465179443,
+ "step": 332
+ },
+ {
+ "epoch": 4.62882096069869,
+ "grad_norm": 0.028552839532494545,
+ "learning_rate": 0.0006,
+ "loss": 5.520917892456055,
+ "step": 333
+ },
+ {
+ "epoch": 4.642794759825327,
+ "grad_norm": 0.029750585556030273,
+ "learning_rate": 0.0006,
+ "loss": 5.512092113494873,
+ "step": 334
+ },
+ {
+ "epoch": 4.656768558951965,
+ "grad_norm": 0.03556099906563759,
+ "learning_rate": 0.0006,
+ "loss": 5.500020503997803,
+ "step": 335
+ },
+ {
+ "epoch": 4.670742358078603,
+ "grad_norm": 0.03819836303591728,
+ "learning_rate": 0.0006,
+ "loss": 5.523126602172852,
+ "step": 336
+ },
+ {
+ "epoch": 4.68471615720524,
+ "grad_norm": 0.038457129150629044,
+ "learning_rate": 0.0006,
+ "loss": 5.497986316680908,
+ "step": 337
+ },
+ {
+ "epoch": 4.698689956331878,
+ "grad_norm": 0.049066998064517975,
+ "learning_rate": 0.0006,
+ "loss": 5.481566429138184,
+ "step": 338
+ },
+ {
+ "epoch": 4.712663755458515,
+ "grad_norm": 0.06208881363272667,
+ "learning_rate": 0.0006,
+ "loss": 5.5200581550598145,
+ "step": 339
+ },
+ {
+ "epoch": 4.726637554585153,
+ "grad_norm": 0.04952879622578621,
+ "learning_rate": 0.0006,
+ "loss": 5.528044700622559,
+ "step": 340
+ },
+ {
+ "epoch": 4.74061135371179,
+ "grad_norm": 0.046794820576906204,
+ "learning_rate": 0.0006,
+ "loss": 5.4694437980651855,
+ "step": 341
+ },
+ {
+ "epoch": 4.754585152838428,
+ "grad_norm": 0.05241665989160538,
+ "learning_rate": 0.0006,
+ "loss": 5.5203752517700195,
+ "step": 342
+ },
+ {
+ "epoch": 4.7685589519650655,
+ "grad_norm": 0.029848996549844742,
+ "learning_rate": 0.0006,
+ "loss": 5.484467506408691,
+ "step": 343
+ },
+ {
+ "epoch": 4.782532751091703,
+ "grad_norm": 0.035734955221414566,
+ "learning_rate": 0.0006,
+ "loss": 5.4982075691223145,
+ "step": 344
+ },
+ {
+ "epoch": 4.796506550218341,
+ "grad_norm": 0.03326781094074249,
+ "learning_rate": 0.0006,
+ "loss": 5.4673380851745605,
+ "step": 345
+ },
+ {
+ "epoch": 4.810480349344978,
+ "grad_norm": 0.02851971797645092,
+ "learning_rate": 0.0006,
+ "loss": 5.466347694396973,
+ "step": 346
+ },
+ {
+ "epoch": 4.824454148471616,
+ "grad_norm": 0.02881411463022232,
+ "learning_rate": 0.0006,
+ "loss": 5.4748992919921875,
+ "step": 347
+ },
+ {
+ "epoch": 4.8384279475982535,
+ "grad_norm": 0.037079520523548126,
+ "learning_rate": 0.0006,
+ "loss": 5.430629730224609,
+ "step": 348
+ },
+ {
+ "epoch": 4.85240174672489,
+ "grad_norm": 0.06697188317775726,
+ "learning_rate": 0.0006,
+ "loss": 5.48007869720459,
+ "step": 349
+ },
+ {
+ "epoch": 4.866375545851528,
+ "grad_norm": 0.08443532884120941,
+ "learning_rate": 0.0006,
+ "loss": 5.519370079040527,
+ "step": 350
+ },
+ {
+ "epoch": 4.880349344978166,
+ "grad_norm": 0.0594899021089077,
+ "learning_rate": 0.0006,
+ "loss": 5.502467155456543,
+ "step": 351
+ },
+ {
+ "epoch": 4.894323144104804,
+ "grad_norm": 0.045731619000434875,
+ "learning_rate": 0.0006,
+ "loss": 5.48048210144043,
+ "step": 352
+ },
+ {
+ "epoch": 4.908296943231441,
+ "grad_norm": 0.02911028079688549,
+ "learning_rate": 0.0006,
+ "loss": 5.45798921585083,
+ "step": 353
+ },
+ {
+ "epoch": 4.922270742358078,
+ "grad_norm": 0.03407920524477959,
+ "learning_rate": 0.0006,
+ "loss": 5.452054977416992,
+ "step": 354
+ },
+ {
+ "epoch": 4.936244541484716,
+ "grad_norm": 0.030616968870162964,
+ "learning_rate": 0.0006,
+ "loss": 5.416000843048096,
+ "step": 355
+ },
+ {
+ "epoch": 4.950218340611354,
+ "grad_norm": 0.036123789846897125,
+ "learning_rate": 0.0006,
+ "loss": 5.448460102081299,
+ "step": 356
+ },
+ {
+ "epoch": 4.964192139737992,
+ "grad_norm": 0.03511728718876839,
+ "learning_rate": 0.0006,
+ "loss": 5.4388580322265625,
+ "step": 357
+ },
+ {
+ "epoch": 4.978165938864628,
+ "grad_norm": 0.032399944961071014,
+ "learning_rate": 0.0006,
+ "loss": 5.439154624938965,
+ "step": 358
+ },
+ {
+ "epoch": 4.992139737991266,
+ "grad_norm": 0.030734507367014885,
+ "learning_rate": 0.0006,
+ "loss": 5.394845485687256,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.036368995904922485,
+ "learning_rate": 0.0006,
+ "loss": 5.4285783767700195,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.480083465576172,
+ "eval_runtime": 50.4055,
+ "eval_samples_per_second": 48.447,
+ "eval_steps_per_second": 1.528,
+ "step": 360
+ },
+ {
+ "epoch": 5.013973799126638,
+ "grad_norm": 0.04241528734564781,
+ "learning_rate": 0.0006,
+ "loss": 5.381251335144043,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279475982532755,
+ "grad_norm": 0.03248775005340576,
+ "learning_rate": 0.0006,
+ "loss": 5.37385892868042,
+ "step": 362
+ },
+ {
+ "epoch": 5.041921397379912,
+ "grad_norm": 0.034749697893857956,
+ "learning_rate": 0.0006,
+ "loss": 5.376180648803711,
+ "step": 363
+ },
+ {
+ "epoch": 5.05589519650655,
+ "grad_norm": 0.03606852516531944,
+ "learning_rate": 0.0006,
+ "loss": 5.374990940093994,
+ "step": 364
+ },
+ {
+ "epoch": 5.069868995633188,
+ "grad_norm": 0.037298817187547684,
+ "learning_rate": 0.0006,
+ "loss": 5.387371063232422,
+ "step": 365
+ },
+ {
+ "epoch": 5.083842794759826,
+ "grad_norm": 0.04082327336072922,
+ "learning_rate": 0.0006,
+ "loss": 5.389516830444336,
+ "step": 366
+ },
+ {
+ "epoch": 5.097816593886463,
+ "grad_norm": 0.04895859211683273,
+ "learning_rate": 0.0006,
+ "loss": 5.3711090087890625,
+ "step": 367
+ },
+ {
+ "epoch": 5.1117903930131,
+ "grad_norm": 0.050905536860227585,
+ "learning_rate": 0.0006,
+ "loss": 5.351629257202148,
+ "step": 368
+ },
+ {
+ "epoch": 5.125764192139738,
+ "grad_norm": 0.04349025338888168,
+ "learning_rate": 0.0006,
+ "loss": 5.348860263824463,
+ "step": 369
+ },
+ {
+ "epoch": 5.139737991266376,
+ "grad_norm": 0.04351300373673439,
+ "learning_rate": 0.0006,
+ "loss": 5.351939678192139,
+ "step": 370
+ },
+ {
+ "epoch": 5.153711790393013,
+ "grad_norm": 0.03227587044239044,
+ "learning_rate": 0.0006,
+ "loss": 5.345745086669922,
+ "step": 371
+ },
+ {
+ "epoch": 5.1676855895196505,
+ "grad_norm": 0.04331260547041893,
+ "learning_rate": 0.0006,
+ "loss": 5.316384315490723,
+ "step": 372
+ },
+ {
+ "epoch": 5.181659388646288,
+ "grad_norm": 0.0464855432510376,
+ "learning_rate": 0.0006,
+ "loss": 5.343276023864746,
+ "step": 373
+ },
+ {
+ "epoch": 5.195633187772926,
+ "grad_norm": 0.05008427053689957,
+ "learning_rate": 0.0006,
+ "loss": 5.369993209838867,
+ "step": 374
+ },
+ {
+ "epoch": 5.209606986899563,
+ "grad_norm": 0.04762439802289009,
+ "learning_rate": 0.0006,
+ "loss": 5.3458051681518555,
+ "step": 375
+ },
+ {
+ "epoch": 5.223580786026201,
+ "grad_norm": 0.04650581255555153,
+ "learning_rate": 0.0006,
+ "loss": 5.352739334106445,
+ "step": 376
+ },
+ {
+ "epoch": 5.2375545851528384,
+ "grad_norm": 0.04960601031780243,
+ "learning_rate": 0.0006,
+ "loss": 5.327419757843018,
+ "step": 377
+ },
+ {
+ "epoch": 5.251528384279476,
+ "grad_norm": 0.04186132177710533,
+ "learning_rate": 0.0006,
+ "loss": 5.319878578186035,
+ "step": 378
+ },
+ {
+ "epoch": 5.265502183406113,
+ "grad_norm": 0.0390714667737484,
+ "learning_rate": 0.0006,
+ "loss": 5.344437599182129,
+ "step": 379
+ },
+ {
+ "epoch": 5.279475982532751,
+ "grad_norm": 0.03270866721868515,
+ "learning_rate": 0.0006,
+ "loss": 5.313382148742676,
+ "step": 380
+ },
+ {
+ "epoch": 5.293449781659389,
+ "grad_norm": 0.031864266842603683,
+ "learning_rate": 0.0006,
+ "loss": 5.326592922210693,
+ "step": 381
+ },
+ {
+ "epoch": 5.307423580786026,
+ "grad_norm": 0.026960339397192,
+ "learning_rate": 0.0006,
+ "loss": 5.286443710327148,
+ "step": 382
+ },
+ {
+ "epoch": 5.321397379912664,
+ "grad_norm": 0.023257168009877205,
+ "learning_rate": 0.0006,
+ "loss": 5.291154384613037,
+ "step": 383
+ },
+ {
+ "epoch": 5.335371179039301,
+ "grad_norm": 0.024317380040884018,
+ "learning_rate": 0.0006,
+ "loss": 5.30286979675293,
+ "step": 384
+ },
+ {
+ "epoch": 5.349344978165939,
+ "grad_norm": 0.022621065378189087,
+ "learning_rate": 0.0006,
+ "loss": 5.315716743469238,
+ "step": 385
+ },
+ {
+ "epoch": 5.3633187772925766,
+ "grad_norm": 0.023142270743846893,
+ "learning_rate": 0.0006,
+ "loss": 5.30342960357666,
+ "step": 386
+ },
+ {
+ "epoch": 5.377292576419214,
+ "grad_norm": 0.023623041808605194,
+ "learning_rate": 0.0006,
+ "loss": 5.250846862792969,
+ "step": 387
+ },
+ {
+ "epoch": 5.391266375545851,
+ "grad_norm": 0.02163100801408291,
+ "learning_rate": 0.0006,
+ "loss": 5.239641189575195,
+ "step": 388
+ },
+ {
+ "epoch": 5.405240174672489,
+ "grad_norm": 0.02896741032600403,
+ "learning_rate": 0.0006,
+ "loss": 5.2592010498046875,
+ "step": 389
+ },
+ {
+ "epoch": 5.419213973799127,
+ "grad_norm": 0.03766395151615143,
+ "learning_rate": 0.0006,
+ "loss": 5.253421783447266,
+ "step": 390
+ },
+ {
+ "epoch": 5.4331877729257645,
+ "grad_norm": 0.04409803822636604,
+ "learning_rate": 0.0006,
+ "loss": 5.271892070770264,
+ "step": 391
+ },
+ {
+ "epoch": 5.447161572052401,
+ "grad_norm": 0.040245357900857925,
+ "learning_rate": 0.0006,
+ "loss": 5.259224891662598,
+ "step": 392
+ },
+ {
+ "epoch": 5.461135371179039,
+ "grad_norm": 0.04515395313501358,
+ "learning_rate": 0.0006,
+ "loss": 5.236300468444824,
+ "step": 393
+ },
+ {
+ "epoch": 5.475109170305677,
+ "grad_norm": 0.060296714305877686,
+ "learning_rate": 0.0006,
+ "loss": 5.265594959259033,
+ "step": 394
+ },
+ {
+ "epoch": 5.489082969432315,
+ "grad_norm": 0.05405225604772568,
+ "learning_rate": 0.0006,
+ "loss": 5.262340545654297,
+ "step": 395
+ },
+ {
+ "epoch": 5.503056768558952,
+ "grad_norm": 0.0568138062953949,
+ "learning_rate": 0.0006,
+ "loss": 5.239948749542236,
+ "step": 396
+ },
+ {
+ "epoch": 5.517030567685589,
+ "grad_norm": 0.059859342873096466,
+ "learning_rate": 0.0006,
+ "loss": 5.189077854156494,
+ "step": 397
+ },
+ {
+ "epoch": 5.531004366812227,
+ "grad_norm": 0.053871408104896545,
+ "learning_rate": 0.0006,
+ "loss": 5.270648956298828,
+ "step": 398
+ },
+ {
+ "epoch": 5.544978165938865,
+ "grad_norm": 0.06081297993659973,
+ "learning_rate": 0.0006,
+ "loss": 5.314695835113525,
+ "step": 399
+ },
+ {
+ "epoch": 5.558951965065502,
+ "grad_norm": 0.0646715834736824,
+ "learning_rate": 0.0006,
+ "loss": 5.286482810974121,
+ "step": 400
+ },
+ {
+ "epoch": 5.5729257641921395,
+ "grad_norm": 0.05934286117553711,
+ "learning_rate": 0.0006,
+ "loss": 5.247529983520508,
+ "step": 401
+ },
+ {
+ "epoch": 5.586899563318777,
+ "grad_norm": 0.05270497500896454,
+ "learning_rate": 0.0006,
+ "loss": 5.213264465332031,
+ "step": 402
+ },
+ {
+ "epoch": 5.600873362445415,
+ "grad_norm": 0.03454767167568207,
+ "learning_rate": 0.0006,
+ "loss": 5.234180450439453,
+ "step": 403
+ },
+ {
+ "epoch": 5.614847161572053,
+ "grad_norm": 0.04350962117314339,
+ "learning_rate": 0.0006,
+ "loss": 5.2320332527160645,
+ "step": 404
+ },
+ {
+ "epoch": 5.62882096069869,
+ "grad_norm": 0.04721181467175484,
+ "learning_rate": 0.0006,
+ "loss": 5.228950023651123,
+ "step": 405
+ },
+ {
+ "epoch": 5.642794759825327,
+ "grad_norm": 0.03711158409714699,
+ "learning_rate": 0.0006,
+ "loss": 5.234259605407715,
+ "step": 406
+ },
+ {
+ "epoch": 5.656768558951965,
+ "grad_norm": 0.029691185802221298,
+ "learning_rate": 0.0006,
+ "loss": 5.183767795562744,
+ "step": 407
+ },
+ {
+ "epoch": 5.670742358078603,
+ "grad_norm": 0.03253520280122757,
+ "learning_rate": 0.0006,
+ "loss": 5.224790573120117,
+ "step": 408
+ },
+ {
+ "epoch": 5.68471615720524,
+ "grad_norm": 0.026891207322478294,
+ "learning_rate": 0.0006,
+ "loss": 5.219671249389648,
+ "step": 409
+ },
+ {
+ "epoch": 5.698689956331878,
+ "grad_norm": 0.024443313479423523,
+ "learning_rate": 0.0006,
+ "loss": 5.177947044372559,
+ "step": 410
+ },
+ {
+ "epoch": 5.712663755458515,
+ "grad_norm": 0.024358445778489113,
+ "learning_rate": 0.0006,
+ "loss": 5.184648513793945,
+ "step": 411
+ },
+ {
+ "epoch": 5.726637554585153,
+ "grad_norm": 0.038056857883930206,
+ "learning_rate": 0.0006,
+ "loss": 5.213315010070801,
+ "step": 412
+ },
+ {
+ "epoch": 5.74061135371179,
+ "grad_norm": 0.05382931977510452,
+ "learning_rate": 0.0006,
+ "loss": 5.188442230224609,
+ "step": 413
+ },
+ {
+ "epoch": 5.754585152838428,
+ "grad_norm": 0.04695626348257065,
+ "learning_rate": 0.0006,
+ "loss": 5.214473724365234,
+ "step": 414
+ },
+ {
+ "epoch": 5.7685589519650655,
+ "grad_norm": 0.03373295068740845,
+ "learning_rate": 0.0006,
+ "loss": 5.187349319458008,
+ "step": 415
+ },
+ {
+ "epoch": 5.782532751091703,
+ "grad_norm": 0.04209282621741295,
+ "learning_rate": 0.0006,
+ "loss": 5.215581893920898,
+ "step": 416
+ },
+ {
+ "epoch": 5.796506550218341,
+ "grad_norm": 0.036461904644966125,
+ "learning_rate": 0.0006,
+ "loss": 5.148530006408691,
+ "step": 417
+ },
+ {
+ "epoch": 5.810480349344978,
+ "grad_norm": 0.02530442364513874,
+ "learning_rate": 0.0006,
+ "loss": 5.143393039703369,
+ "step": 418
+ },
+ {
+ "epoch": 5.824454148471616,
+ "grad_norm": 0.02545030415058136,
+ "learning_rate": 0.0006,
+ "loss": 5.167602062225342,
+ "step": 419
+ },
+ {
+ "epoch": 5.8384279475982535,
+ "grad_norm": 0.024862848222255707,
+ "learning_rate": 0.0006,
+ "loss": 5.133827209472656,
+ "step": 420
+ },
+ {
+ "epoch": 5.85240174672489,
+ "grad_norm": 0.0243727695196867,
+ "learning_rate": 0.0006,
+ "loss": 5.196236610412598,
+ "step": 421
+ },
+ {
+ "epoch": 5.866375545851528,
+ "grad_norm": 0.031052641570568085,
+ "learning_rate": 0.0006,
+ "loss": 5.163963317871094,
+ "step": 422
+ },
+ {
+ "epoch": 5.880349344978166,
+ "grad_norm": 0.03085985779762268,
+ "learning_rate": 0.0006,
+ "loss": 5.133022308349609,
+ "step": 423
+ },
+ {
+ "epoch": 5.894323144104804,
+ "grad_norm": 0.026254380121827126,
+ "learning_rate": 0.0006,
+ "loss": 5.126164436340332,
+ "step": 424
+ },
+ {
+ "epoch": 5.908296943231441,
+ "grad_norm": 0.02083180658519268,
+ "learning_rate": 0.0006,
+ "loss": 5.102797508239746,
+ "step": 425
+ },
+ {
+ "epoch": 5.922270742358078,
+ "grad_norm": 0.02210022322833538,
+ "learning_rate": 0.0006,
+ "loss": 5.079900741577148,
+ "step": 426
+ },
+ {
+ "epoch": 5.936244541484716,
+ "grad_norm": 0.024237696081399918,
+ "learning_rate": 0.0006,
+ "loss": 5.131382942199707,
+ "step": 427
+ },
+ {
+ "epoch": 5.950218340611354,
+ "grad_norm": 0.03174173831939697,
+ "learning_rate": 0.0006,
+ "loss": 5.12271785736084,
+ "step": 428
+ },
+ {
+ "epoch": 5.964192139737992,
+ "grad_norm": 0.035321734845638275,
+ "learning_rate": 0.0006,
+ "loss": 5.096363067626953,
+ "step": 429
+ },
+ {
+ "epoch": 5.978165938864628,
+ "grad_norm": 0.03945434093475342,
+ "learning_rate": 0.0006,
+ "loss": 5.104191780090332,
+ "step": 430
+ },
+ {
+ "epoch": 5.992139737991266,
+ "grad_norm": 0.03119991160929203,
+ "learning_rate": 0.0006,
+ "loss": 5.088006973266602,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.025646768510341644,
+ "learning_rate": 0.0006,
+ "loss": 5.060527801513672,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.1733880043029785,
+ "eval_runtime": 49.9632,
+ "eval_samples_per_second": 48.876,
+ "eval_steps_per_second": 1.541,
+ "step": 432
+ },
+ {
+ "epoch": 6.013973799126638,
+ "grad_norm": 0.04027649387717247,
+ "learning_rate": 0.0006,
+ "loss": 5.070117473602295,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279475982532755,
+ "grad_norm": 0.04872274026274681,
+ "learning_rate": 0.0006,
+ "loss": 5.076330184936523,
+ "step": 434
+ },
+ {
+ "epoch": 6.041921397379912,
+ "grad_norm": 0.044163160026073456,
+ "learning_rate": 0.0006,
+ "loss": 5.079638481140137,
+ "step": 435
+ },
+ {
+ "epoch": 6.05589519650655,
+ "grad_norm": 0.051925189793109894,
+ "learning_rate": 0.0006,
+ "loss": 5.077970027923584,
+ "step": 436
+ },
+ {
+ "epoch": 6.069868995633188,
+ "grad_norm": 0.06317602097988129,
+ "learning_rate": 0.0006,
+ "loss": 5.077326774597168,
+ "step": 437
+ },
+ {
+ "epoch": 6.083842794759826,
+ "grad_norm": 0.05190538242459297,
+ "learning_rate": 0.0006,
+ "loss": 5.078523635864258,
+ "step": 438
+ },
+ {
+ "epoch": 6.097816593886463,
+ "grad_norm": 0.054743602871894836,
+ "learning_rate": 0.0006,
+ "loss": 5.041546821594238,
+ "step": 439
+ },
+ {
+ "epoch": 6.1117903930131,
+ "grad_norm": 0.0473523885011673,
+ "learning_rate": 0.0006,
+ "loss": 5.055340766906738,
+ "step": 440
+ },
+ {
+ "epoch": 6.125764192139738,
+ "grad_norm": 0.04575403407216072,
+ "learning_rate": 0.0006,
+ "loss": 5.078280925750732,
+ "step": 441
+ },
+ {
+ "epoch": 6.139737991266376,
+ "grad_norm": 0.04004313051700592,
+ "learning_rate": 0.0006,
+ "loss": 5.0551252365112305,
+ "step": 442
+ },
+ {
+ "epoch": 6.153711790393013,
+ "grad_norm": 0.04324577748775482,
+ "learning_rate": 0.0006,
+ "loss": 5.052831649780273,
+ "step": 443
+ },
+ {
+ "epoch": 6.1676855895196505,
+ "grad_norm": 0.05479790270328522,
+ "learning_rate": 0.0006,
+ "loss": 5.075335502624512,
+ "step": 444
+ },
+ {
+ "epoch": 6.181659388646288,
+ "grad_norm": 0.05768252909183502,
+ "learning_rate": 0.0006,
+ "loss": 5.076082706451416,
+ "step": 445
+ },
+ {
+ "epoch": 6.195633187772926,
+ "grad_norm": 0.05240596458315849,
+ "learning_rate": 0.0006,
+ "loss": 5.058586120605469,
+ "step": 446
+ },
+ {
+ "epoch": 6.209606986899563,
+ "grad_norm": 0.0645335391163826,
+ "learning_rate": 0.0006,
+ "loss": 5.069242477416992,
+ "step": 447
+ },
+ {
+ "epoch": 6.223580786026201,
+ "grad_norm": 0.07776601612567902,
+ "learning_rate": 0.0006,
+ "loss": 5.100368499755859,
+ "step": 448
+ },
+ {
+ "epoch": 6.2375545851528384,
+ "grad_norm": 0.08278049528598785,
+ "learning_rate": 0.0006,
+ "loss": 5.109698295593262,
+ "step": 449
+ },
+ {
+ "epoch": 6.251528384279476,
+ "grad_norm": 0.07187525182962418,
+ "learning_rate": 0.0006,
+ "loss": 5.08582878112793,
+ "step": 450
+ },
+ {
+ "epoch": 6.265502183406113,
+ "grad_norm": 0.07394885271787643,
+ "learning_rate": 0.0006,
+ "loss": 5.06748628616333,
+ "step": 451
+ },
+ {
+ "epoch": 6.279475982532751,
+ "grad_norm": 0.06124480068683624,
+ "learning_rate": 0.0006,
+ "loss": 5.116754531860352,
+ "step": 452
+ },
+ {
+ "epoch": 6.293449781659389,
+ "grad_norm": 0.04062265530228615,
+ "learning_rate": 0.0006,
+ "loss": 5.04876184463501,
+ "step": 453
+ },
+ {
+ "epoch": 6.307423580786026,
+ "grad_norm": 0.04309544339776039,
+ "learning_rate": 0.0006,
+ "loss": 5.038376331329346,
+ "step": 454
+ },
+ {
+ "epoch": 6.321397379912664,
+ "grad_norm": 0.041932251304388046,
+ "learning_rate": 0.0006,
+ "loss": 5.071001052856445,
+ "step": 455
+ },
+ {
+ "epoch": 6.335371179039301,
+ "grad_norm": 0.033776845782995224,
+ "learning_rate": 0.0006,
+ "loss": 5.006098747253418,
+ "step": 456
+ },
+ {
+ "epoch": 6.349344978165939,
+ "grad_norm": 0.034641820937395096,
+ "learning_rate": 0.0006,
+ "loss": 4.992915153503418,
+ "step": 457
+ },
+ {
+ "epoch": 6.3633187772925766,
+ "grad_norm": 0.023475229740142822,
+ "learning_rate": 0.0006,
+ "loss": 5.044340133666992,
+ "step": 458
+ },
+ {
+ "epoch": 6.377292576419214,
+ "grad_norm": 0.02673504501581192,
+ "learning_rate": 0.0006,
+ "loss": 4.998212814331055,
+ "step": 459
+ },
+ {
+ "epoch": 6.391266375545851,
+ "grad_norm": 0.02482164464890957,
+ "learning_rate": 0.0006,
+ "loss": 5.010951042175293,
+ "step": 460
+ },
+ {
+ "epoch": 6.405240174672489,
+ "grad_norm": 0.022635847330093384,
+ "learning_rate": 0.0006,
+ "loss": 4.977993965148926,
+ "step": 461
+ },
+ {
+ "epoch": 6.419213973799127,
+ "grad_norm": 0.023006808012723923,
+ "learning_rate": 0.0006,
+ "loss": 4.947575569152832,
+ "step": 462
+ },
+ {
+ "epoch": 6.4331877729257645,
+ "grad_norm": 0.02624397724866867,
+ "learning_rate": 0.0006,
+ "loss": 4.977143287658691,
+ "step": 463
+ },
+ {
+ "epoch": 6.447161572052401,
+ "grad_norm": 0.03280187025666237,
+ "learning_rate": 0.0006,
+ "loss": 4.941946029663086,
+ "step": 464
+ },
+ {
+ "epoch": 6.461135371179039,
+ "grad_norm": 0.04020314663648605,
+ "learning_rate": 0.0006,
+ "loss": 4.947107315063477,
+ "step": 465
+ },
+ {
+ "epoch": 6.475109170305677,
+ "grad_norm": 0.037292513996362686,
+ "learning_rate": 0.0006,
+ "loss": 4.940674781799316,
+ "step": 466
+ },
+ {
+ "epoch": 6.489082969432315,
+ "grad_norm": 0.03219081461429596,
+ "learning_rate": 0.0006,
+ "loss": 4.945491790771484,
+ "step": 467
+ },
+ {
+ "epoch": 6.503056768558952,
+ "grad_norm": 0.034181494265794754,
+ "learning_rate": 0.0006,
+ "loss": 4.948554039001465,
+ "step": 468
+ },
+ {
+ "epoch": 6.517030567685589,
+ "grad_norm": 0.03098447248339653,
+ "learning_rate": 0.0006,
+ "loss": 4.923150062561035,
+ "step": 469
+ },
+ {
+ "epoch": 6.531004366812227,
+ "grad_norm": 0.026002254337072372,
+ "learning_rate": 0.0006,
+ "loss": 4.9629106521606445,
+ "step": 470
+ },
+ {
+ "epoch": 6.544978165938865,
+ "grad_norm": 0.02463129162788391,
+ "learning_rate": 0.0006,
+ "loss": 4.9400787353515625,
+ "step": 471
+ },
+ {
+ "epoch": 6.558951965065502,
+ "grad_norm": 0.025506779551506042,
+ "learning_rate": 0.0006,
+ "loss": 4.945688247680664,
+ "step": 472
+ },
+ {
+ "epoch": 6.5729257641921395,
+ "grad_norm": 0.021885665133595467,
+ "learning_rate": 0.0006,
+ "loss": 4.893912315368652,
+ "step": 473
+ },
+ {
+ "epoch": 6.586899563318777,
+ "grad_norm": 0.023528503254055977,
+ "learning_rate": 0.0006,
+ "loss": 4.948110580444336,
+ "step": 474
+ },
+ {
+ "epoch": 6.600873362445415,
+ "grad_norm": 0.02838003821671009,
+ "learning_rate": 0.0006,
+ "loss": 4.919154167175293,
+ "step": 475
+ },
+ {
+ "epoch": 6.614847161572053,
+ "grad_norm": 0.028782688081264496,
+ "learning_rate": 0.0006,
+ "loss": 4.89210319519043,
+ "step": 476
+ },
+ {
+ "epoch": 6.62882096069869,
+ "grad_norm": 0.02549571916460991,
+ "learning_rate": 0.0006,
+ "loss": 4.903683185577393,
+ "step": 477
+ },
+ {
+ "epoch": 6.642794759825327,
+ "grad_norm": 0.030100561678409576,
+ "learning_rate": 0.0006,
+ "loss": 4.907907485961914,
+ "step": 478
+ },
+ {
+ "epoch": 6.656768558951965,
+ "grad_norm": 0.03853096067905426,
+ "learning_rate": 0.0006,
+ "loss": 4.916140556335449,
+ "step": 479
+ },
+ {
+ "epoch": 6.670742358078603,
+ "grad_norm": 0.0367201492190361,
+ "learning_rate": 0.0006,
+ "loss": 4.882139205932617,
+ "step": 480
+ },
+ {
+ "epoch": 6.68471615720524,
+ "grad_norm": 0.034214165061712265,
+ "learning_rate": 0.0006,
+ "loss": 4.883127212524414,
+ "step": 481
+ },
+ {
+ "epoch": 6.698689956331878,
+ "grad_norm": 0.03360319137573242,
+ "learning_rate": 0.0006,
+ "loss": 4.903620719909668,
+ "step": 482
+ },
+ {
+ "epoch": 6.712663755458515,
+ "grad_norm": 0.027687804773449898,
+ "learning_rate": 0.0006,
+ "loss": 4.874878883361816,
+ "step": 483
+ },
+ {
+ "epoch": 6.726637554585153,
+ "grad_norm": 0.028244799003005028,
+ "learning_rate": 0.0006,
+ "loss": 4.877007961273193,
+ "step": 484
+ },
+ {
+ "epoch": 6.74061135371179,
+ "grad_norm": 0.027868567034602165,
+ "learning_rate": 0.0006,
+ "loss": 4.893726348876953,
+ "step": 485
+ },
+ {
+ "epoch": 6.754585152838428,
+ "grad_norm": 0.036026086658239365,
+ "learning_rate": 0.0006,
+ "loss": 4.899372577667236,
+ "step": 486
+ },
+ {
+ "epoch": 6.7685589519650655,
+ "grad_norm": 0.03497552126646042,
+ "learning_rate": 0.0006,
+ "loss": 4.8735671043396,
+ "step": 487
+ },
+ {
+ "epoch": 6.782532751091703,
+ "grad_norm": 0.027166219428181648,
+ "learning_rate": 0.0006,
+ "loss": 4.848074913024902,
+ "step": 488
+ },
+ {
+ "epoch": 6.796506550218341,
+ "grad_norm": 0.029360221698880196,
+ "learning_rate": 0.0006,
+ "loss": 4.821354389190674,
+ "step": 489
+ },
+ {
+ "epoch": 6.810480349344978,
+ "grad_norm": 0.030428793281316757,
+ "learning_rate": 0.0006,
+ "loss": 4.857872009277344,
+ "step": 490
+ },
+ {
+ "epoch": 6.824454148471616,
+ "grad_norm": 0.033143963664770126,
+ "learning_rate": 0.0006,
+ "loss": 4.8857526779174805,
+ "step": 491
+ },
+ {
+ "epoch": 6.8384279475982535,
+ "grad_norm": 0.03193509578704834,
+ "learning_rate": 0.0006,
+ "loss": 4.841046333312988,
+ "step": 492
+ },
+ {
+ "epoch": 6.85240174672489,
+ "grad_norm": 0.034551024436950684,
+ "learning_rate": 0.0006,
+ "loss": 4.857826232910156,
+ "step": 493
+ },
+ {
+ "epoch": 6.866375545851528,
+ "grad_norm": 0.04612463712692261,
+ "learning_rate": 0.0006,
+ "loss": 4.880589485168457,
+ "step": 494
+ },
+ {
+ "epoch": 6.880349344978166,
+ "grad_norm": 0.04604615643620491,
+ "learning_rate": 0.0006,
+ "loss": 4.836089134216309,
+ "step": 495
+ },
+ {
+ "epoch": 6.894323144104804,
+ "grad_norm": 0.04121214151382446,
+ "learning_rate": 0.0006,
+ "loss": 4.859458923339844,
+ "step": 496
+ },
+ {
+ "epoch": 6.908296943231441,
+ "grad_norm": 0.03569377213716507,
+ "learning_rate": 0.0006,
+ "loss": 4.846658706665039,
+ "step": 497
+ },
+ {
+ "epoch": 6.922270742358078,
+ "grad_norm": 0.03878311067819595,
+ "learning_rate": 0.0006,
+ "loss": 4.828747749328613,
+ "step": 498
+ },
+ {
+ "epoch": 6.936244541484716,
+ "grad_norm": 0.0379655621945858,
+ "learning_rate": 0.0006,
+ "loss": 4.7911152839660645,
+ "step": 499
+ },
+ {
+ "epoch": 6.950218340611354,
+ "grad_norm": 0.03329150751233101,
+ "learning_rate": 0.0006,
+ "loss": 4.8190741539001465,
+ "step": 500
+ },
+ {
+ "epoch": 6.964192139737992,
+ "grad_norm": 0.0386258140206337,
+ "learning_rate": 0.0006,
+ "loss": 4.826594352722168,
+ "step": 501
+ },
+ {
+ "epoch": 6.978165938864628,
+ "grad_norm": 0.043440066277980804,
+ "learning_rate": 0.0006,
+ "loss": 4.868552207946777,
+ "step": 502
+ },
+ {
+ "epoch": 6.992139737991266,
+ "grad_norm": 0.039522934705019,
+ "learning_rate": 0.0006,
+ "loss": 4.766866683959961,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.038620468229055405,
+ "learning_rate": 0.0006,
+ "loss": 4.828839302062988,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 4.907761573791504,
+ "eval_runtime": 49.951,
+ "eval_samples_per_second": 48.888,
+ "eval_steps_per_second": 1.542,
+ "step": 504
+ },
+ {
+ "epoch": 7.013973799126638,
+ "grad_norm": 0.040495287626981735,
+ "learning_rate": 0.0006,
+ "loss": 4.755504608154297,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279475982532755,
+ "grad_norm": 0.04684276506304741,
+ "learning_rate": 0.0006,
+ "loss": 4.79603385925293,
+ "step": 506
+ },
+ {
+ "epoch": 7.041921397379912,
+ "grad_norm": 0.057431042194366455,
+ "learning_rate": 0.0006,
+ "loss": 4.798529148101807,
+ "step": 507
+ },
+ {
+ "epoch": 7.05589519650655,
+ "grad_norm": 0.06289757043123245,
+ "learning_rate": 0.0006,
+ "loss": 4.819248199462891,
+ "step": 508
+ },
+ {
+ "epoch": 7.069868995633188,
+ "grad_norm": 0.07083664834499359,
+ "learning_rate": 0.0006,
+ "loss": 4.803141117095947,
+ "step": 509
+ },
+ {
+ "epoch": 7.083842794759826,
+ "grad_norm": 0.06081623584032059,
+ "learning_rate": 0.0006,
+ "loss": 4.743819236755371,
+ "step": 510
+ },
+ {
+ "epoch": 7.097816593886463,
+ "grad_norm": 0.05454877391457558,
+ "learning_rate": 0.0006,
+ "loss": 4.854677200317383,
+ "step": 511
+ },
+ {
+ "epoch": 7.1117903930131,
+ "grad_norm": 0.05157916992902756,
+ "learning_rate": 0.0006,
+ "loss": 4.797488212585449,
+ "step": 512
+ },
+ {
+ "epoch": 7.125764192139738,
+ "grad_norm": 0.04780645668506622,
+ "learning_rate": 0.0006,
+ "loss": 4.824231147766113,
+ "step": 513
+ },
+ {
+ "epoch": 7.139737991266376,
+ "grad_norm": 0.058745913207530975,
+ "learning_rate": 0.0006,
+ "loss": 4.79942512512207,
+ "step": 514
+ },
+ {
+ "epoch": 7.153711790393013,
+ "grad_norm": 0.07210857421159744,
+ "learning_rate": 0.0006,
+ "loss": 4.857621192932129,
+ "step": 515
+ },
+ {
+ "epoch": 7.1676855895196505,
+ "grad_norm": 0.0681944340467453,
+ "learning_rate": 0.0006,
+ "loss": 4.798557281494141,
+ "step": 516
+ },
+ {
+ "epoch": 7.181659388646288,
+ "grad_norm": 0.06716784089803696,
+ "learning_rate": 0.0006,
+ "loss": 4.81382942199707,
+ "step": 517
+ },
+ {
+ "epoch": 7.195633187772926,
+ "grad_norm": 0.0700073093175888,
+ "learning_rate": 0.0006,
+ "loss": 4.811261177062988,
+ "step": 518
+ },
+ {
+ "epoch": 7.209606986899563,
+ "grad_norm": 0.05830753222107887,
+ "learning_rate": 0.0006,
+ "loss": 4.818418025970459,
+ "step": 519
+ },
+ {
+ "epoch": 7.223580786026201,
+ "grad_norm": 0.06053008884191513,
+ "learning_rate": 0.0006,
+ "loss": 4.830060005187988,
+ "step": 520
+ },
+ {
+ "epoch": 7.2375545851528384,
+ "grad_norm": 0.04992729425430298,
+ "learning_rate": 0.0006,
+ "loss": 4.820477485656738,
+ "step": 521
+ },
+ {
+ "epoch": 7.251528384279476,
+ "grad_norm": 0.03906334191560745,
+ "learning_rate": 0.0006,
+ "loss": 4.776924133300781,
+ "step": 522
+ },
+ {
+ "epoch": 7.265502183406113,
+ "grad_norm": 0.041200339794158936,
+ "learning_rate": 0.0006,
+ "loss": 4.795502662658691,
+ "step": 523
+ },
+ {
+ "epoch": 7.279475982532751,
+ "grad_norm": 0.03866710141301155,
+ "learning_rate": 0.0006,
+ "loss": 4.748326778411865,
+ "step": 524
+ },
+ {
+ "epoch": 7.293449781659389,
+ "grad_norm": 0.03892578184604645,
+ "learning_rate": 0.0006,
+ "loss": 4.731060028076172,
+ "step": 525
+ },
+ {
+ "epoch": 7.307423580786026,
+ "grad_norm": 0.034929852932691574,
+ "learning_rate": 0.0006,
+ "loss": 4.769538879394531,
+ "step": 526
+ },
+ {
+ "epoch": 7.321397379912664,
+ "grad_norm": 0.03499983623623848,
+ "learning_rate": 0.0006,
+ "loss": 4.750111103057861,
+ "step": 527
+ },
+ {
+ "epoch": 7.335371179039301,
+ "grad_norm": 0.023694142699241638,
+ "learning_rate": 0.0006,
+ "loss": 4.741044998168945,
+ "step": 528
+ },
+ {
+ "epoch": 7.349344978165939,
+ "grad_norm": 0.02783721685409546,
+ "learning_rate": 0.0006,
+ "loss": 4.733529090881348,
+ "step": 529
+ },
+ {
+ "epoch": 7.3633187772925766,
+ "grad_norm": 0.022906454280018806,
+ "learning_rate": 0.0006,
+ "loss": 4.713002681732178,
+ "step": 530
+ },
+ {
+ "epoch": 7.377292576419214,
+ "grad_norm": 0.020011693239212036,
+ "learning_rate": 0.0006,
+ "loss": 4.6840620040893555,
+ "step": 531
+ },
+ {
+ "epoch": 7.391266375545851,
+ "grad_norm": 0.019985370337963104,
+ "learning_rate": 0.0006,
+ "loss": 4.695000171661377,
+ "step": 532
+ },
+ {
+ "epoch": 7.405240174672489,
+ "grad_norm": 0.019822653383016586,
+ "learning_rate": 0.0006,
+ "loss": 4.709036350250244,
+ "step": 533
+ },
+ {
+ "epoch": 7.419213973799127,
+ "grad_norm": 0.020615894347429276,
+ "learning_rate": 0.0006,
+ "loss": 4.679416656494141,
+ "step": 534
+ },
+ {
+ "epoch": 7.4331877729257645,
+ "grad_norm": 0.01958257146179676,
+ "learning_rate": 0.0006,
+ "loss": 4.704957008361816,
+ "step": 535
+ },
+ {
+ "epoch": 7.447161572052401,
+ "grad_norm": 0.02040509134531021,
+ "learning_rate": 0.0006,
+ "loss": 4.651505470275879,
+ "step": 536
+ },
+ {
+ "epoch": 7.461135371179039,
+ "grad_norm": 0.01626836135983467,
+ "learning_rate": 0.0006,
+ "loss": 4.694278240203857,
+ "step": 537
+ },
+ {
+ "epoch": 7.475109170305677,
+ "grad_norm": 0.01660163700580597,
+ "learning_rate": 0.0006,
+ "loss": 4.662658214569092,
+ "step": 538
+ },
+ {
+ "epoch": 7.489082969432315,
+ "grad_norm": 0.016483576968312263,
+ "learning_rate": 0.0006,
+ "loss": 4.695555686950684,
+ "step": 539
+ },
+ {
+ "epoch": 7.503056768558952,
+ "grad_norm": 0.018176909536123276,
+ "learning_rate": 0.0006,
+ "loss": 4.646458625793457,
+ "step": 540
+ },
+ {
+ "epoch": 7.517030567685589,
+ "grad_norm": 0.018314503133296967,
+ "learning_rate": 0.0006,
+ "loss": 4.643884181976318,
+ "step": 541
+ },
+ {
+ "epoch": 7.531004366812227,
+ "grad_norm": 0.016406886279582977,
+ "learning_rate": 0.0006,
+ "loss": 4.637638092041016,
+ "step": 542
+ },
+ {
+ "epoch": 7.544978165938865,
+ "grad_norm": 0.017510421574115753,
+ "learning_rate": 0.0006,
+ "loss": 4.6297926902771,
+ "step": 543
+ },
+ {
+ "epoch": 7.558951965065502,
+ "grad_norm": 0.021575570106506348,
+ "learning_rate": 0.0006,
+ "loss": 4.657093048095703,
+ "step": 544
+ },
+ {
+ "epoch": 7.5729257641921395,
+ "grad_norm": 0.024670056998729706,
+ "learning_rate": 0.0006,
+ "loss": 4.637840270996094,
+ "step": 545
+ },
+ {
+ "epoch": 7.586899563318777,
+ "grad_norm": 0.026005825027823448,
+ "learning_rate": 0.0006,
+ "loss": 4.622672080993652,
+ "step": 546
+ },
+ {
+ "epoch": 7.600873362445415,
+ "grad_norm": 0.024355988949537277,
+ "learning_rate": 0.0006,
+ "loss": 4.627206802368164,
+ "step": 547
+ },
+ {
+ "epoch": 7.614847161572053,
+ "grad_norm": 0.025826960802078247,
+ "learning_rate": 0.0006,
+ "loss": 4.616837501525879,
+ "step": 548
+ },
+ {
+ "epoch": 7.62882096069869,
+ "grad_norm": 0.02809619903564453,
+ "learning_rate": 0.0006,
+ "loss": 4.643812656402588,
+ "step": 549
+ },
+ {
+ "epoch": 7.642794759825327,
+ "grad_norm": 0.023823536932468414,
+ "learning_rate": 0.0006,
+ "loss": 4.623858451843262,
+ "step": 550
+ },
+ {
+ "epoch": 7.656768558951965,
+ "grad_norm": 0.024948647245764732,
+ "learning_rate": 0.0006,
+ "loss": 4.635528564453125,
+ "step": 551
+ },
+ {
+ "epoch": 7.670742358078603,
+ "grad_norm": 0.027852604165673256,
+ "learning_rate": 0.0006,
+ "loss": 4.606395721435547,
+ "step": 552
+ },
+ {
+ "epoch": 7.68471615720524,
+ "grad_norm": 0.031888775527477264,
+ "learning_rate": 0.0006,
+ "loss": 4.630072593688965,
+ "step": 553
+ },
+ {
+ "epoch": 7.698689956331878,
+ "grad_norm": 0.04423221945762634,
+ "learning_rate": 0.0006,
+ "loss": 4.592362880706787,
+ "step": 554
+ },
+ {
+ "epoch": 7.712663755458515,
+ "grad_norm": 0.05360350012779236,
+ "learning_rate": 0.0006,
+ "loss": 4.626799583435059,
+ "step": 555
+ },
+ {
+ "epoch": 7.726637554585153,
+ "grad_norm": 0.05218035727739334,
+ "learning_rate": 0.0006,
+ "loss": 4.591753005981445,
+ "step": 556
+ },
+ {
+ "epoch": 7.74061135371179,
+ "grad_norm": 0.04740380123257637,
+ "learning_rate": 0.0006,
+ "loss": 4.611865520477295,
+ "step": 557
+ },
+ {
+ "epoch": 7.754585152838428,
+ "grad_norm": 0.04325862228870392,
+ "learning_rate": 0.0006,
+ "loss": 4.585417747497559,
+ "step": 558
+ },
+ {
+ "epoch": 7.7685589519650655,
+ "grad_norm": 0.047380927950143814,
+ "learning_rate": 0.0006,
+ "loss": 4.595690727233887,
+ "step": 559
+ },
+ {
+ "epoch": 7.782532751091703,
+ "grad_norm": 0.05398833379149437,
+ "learning_rate": 0.0006,
+ "loss": 4.670032024383545,
+ "step": 560
+ },
+ {
+ "epoch": 7.796506550218341,
+ "grad_norm": 0.05550206080079079,
+ "learning_rate": 0.0006,
+ "loss": 4.603083610534668,
+ "step": 561
+ },
+ {
+ "epoch": 7.810480349344978,
+ "grad_norm": 0.048703186213970184,
+ "learning_rate": 0.0006,
+ "loss": 4.60882568359375,
+ "step": 562
+ },
+ {
+ "epoch": 7.824454148471616,
+ "grad_norm": 0.03849068656563759,
+ "learning_rate": 0.0006,
+ "loss": 4.600196838378906,
+ "step": 563
+ },
+ {
+ "epoch": 7.8384279475982535,
+ "grad_norm": 0.04322432354092598,
+ "learning_rate": 0.0006,
+ "loss": 4.635777473449707,
+ "step": 564
+ },
+ {
+ "epoch": 7.85240174672489,
+ "grad_norm": 0.03958692029118538,
+ "learning_rate": 0.0006,
+ "loss": 4.586699962615967,
+ "step": 565
+ },
+ {
+ "epoch": 7.866375545851528,
+ "grad_norm": 0.035496462136507034,
+ "learning_rate": 0.0006,
+ "loss": 4.602683067321777,
+ "step": 566
+ },
+ {
+ "epoch": 7.880349344978166,
+ "grad_norm": 0.038870155811309814,
+ "learning_rate": 0.0006,
+ "loss": 4.635684013366699,
+ "step": 567
+ },
+ {
+ "epoch": 7.894323144104804,
+ "grad_norm": 0.038049351423978806,
+ "learning_rate": 0.0006,
+ "loss": 4.5812602043151855,
+ "step": 568
+ },
+ {
+ "epoch": 7.908296943231441,
+ "grad_norm": 0.029217766597867012,
+ "learning_rate": 0.0006,
+ "loss": 4.560367584228516,
+ "step": 569
+ },
+ {
+ "epoch": 7.922270742358078,
+ "grad_norm": 0.028376970440149307,
+ "learning_rate": 0.0006,
+ "loss": 4.578996658325195,
+ "step": 570
+ },
+ {
+ "epoch": 7.936244541484716,
+ "grad_norm": 0.035108938813209534,
+ "learning_rate": 0.0006,
+ "loss": 4.554547309875488,
+ "step": 571
+ },
+ {
+ "epoch": 7.950218340611354,
+ "grad_norm": 0.02971036173403263,
+ "learning_rate": 0.0006,
+ "loss": 4.5761919021606445,
+ "step": 572
+ },
+ {
+ "epoch": 7.964192139737992,
+ "grad_norm": 0.02690828964114189,
+ "learning_rate": 0.0006,
+ "loss": 4.568772315979004,
+ "step": 573
+ },
+ {
+ "epoch": 7.978165938864628,
+ "grad_norm": 0.023910939693450928,
+ "learning_rate": 0.0006,
+ "loss": 4.56700325012207,
+ "step": 574
+ },
+ {
+ "epoch": 7.992139737991266,
+ "grad_norm": 0.02027987875044346,
+ "learning_rate": 0.0006,
+ "loss": 4.563353538513184,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.02621232345700264,
+ "learning_rate": 0.0006,
+ "loss": 4.52655029296875,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.659845352172852,
+ "eval_runtime": 54.5122,
+ "eval_samples_per_second": 44.797,
+ "eval_steps_per_second": 1.413,
+ "step": 576
+ },
+ {
+ "epoch": 8.013973799126637,
+ "grad_norm": 0.024295445531606674,
+ "learning_rate": 0.0006,
+ "loss": 4.514026641845703,
+ "step": 577
+ },
+ {
+ "epoch": 8.027947598253276,
+ "grad_norm": 0.029430922120809555,
+ "learning_rate": 0.0006,
+ "loss": 4.479931831359863,
+ "step": 578
+ },
+ {
+ "epoch": 8.041921397379912,
+ "grad_norm": 0.03156977519392967,
+ "learning_rate": 0.0006,
+ "loss": 4.529452323913574,
+ "step": 579
+ },
+ {
+ "epoch": 8.055895196506551,
+ "grad_norm": 0.03411492332816124,
+ "learning_rate": 0.0006,
+ "loss": 4.501816749572754,
+ "step": 580
+ },
+ {
+ "epoch": 8.069868995633188,
+ "grad_norm": 0.03944215178489685,
+ "learning_rate": 0.0006,
+ "loss": 4.503504753112793,
+ "step": 581
+ },
+ {
+ "epoch": 8.083842794759825,
+ "grad_norm": 0.04511773958802223,
+ "learning_rate": 0.0006,
+ "loss": 4.481729984283447,
+ "step": 582
+ },
+ {
+ "epoch": 8.097816593886463,
+ "grad_norm": 0.03235149383544922,
+ "learning_rate": 0.0006,
+ "loss": 4.510499954223633,
+ "step": 583
+ },
+ {
+ "epoch": 8.1117903930131,
+ "grad_norm": 0.027723919600248337,
+ "learning_rate": 0.0006,
+ "loss": 4.492958068847656,
+ "step": 584
+ },
+ {
+ "epoch": 8.125764192139737,
+ "grad_norm": 0.033535368740558624,
+ "learning_rate": 0.0006,
+ "loss": 4.480009078979492,
+ "step": 585
+ },
+ {
+ "epoch": 8.139737991266376,
+ "grad_norm": 0.03412545099854469,
+ "learning_rate": 0.0006,
+ "loss": 4.464960098266602,
+ "step": 586
+ },
+ {
+ "epoch": 8.153711790393013,
+ "grad_norm": 0.03285292908549309,
+ "learning_rate": 0.0006,
+ "loss": 4.478358745574951,
+ "step": 587
+ },
+ {
+ "epoch": 8.167685589519651,
+ "grad_norm": 0.03460532799363136,
+ "learning_rate": 0.0006,
+ "loss": 4.490439414978027,
+ "step": 588
+ },
+ {
+ "epoch": 8.181659388646288,
+ "grad_norm": 0.037275977432727814,
+ "learning_rate": 0.0006,
+ "loss": 4.473151683807373,
+ "step": 589
+ },
+ {
+ "epoch": 8.195633187772925,
+ "grad_norm": 0.03485316038131714,
+ "learning_rate": 0.0006,
+ "loss": 4.491796493530273,
+ "step": 590
+ },
+ {
+ "epoch": 8.209606986899564,
+ "grad_norm": 0.03405699506402016,
+ "learning_rate": 0.0006,
+ "loss": 4.473565101623535,
+ "step": 591
+ },
+ {
+ "epoch": 8.2235807860262,
+ "grad_norm": 0.03975093364715576,
+ "learning_rate": 0.0006,
+ "loss": 4.494463920593262,
+ "step": 592
+ },
+ {
+ "epoch": 8.237554585152838,
+ "grad_norm": 0.03563615307211876,
+ "learning_rate": 0.0006,
+ "loss": 4.458979606628418,
+ "step": 593
+ },
+ {
+ "epoch": 8.251528384279476,
+ "grad_norm": 0.037183649837970734,
+ "learning_rate": 0.0006,
+ "loss": 4.4701948165893555,
+ "step": 594
+ },
+ {
+ "epoch": 8.265502183406113,
+ "grad_norm": 0.039340466260910034,
+ "learning_rate": 0.0006,
+ "loss": 4.489675521850586,
+ "step": 595
+ },
+ {
+ "epoch": 8.279475982532752,
+ "grad_norm": 0.03162173181772232,
+ "learning_rate": 0.0006,
+ "loss": 4.422170162200928,
+ "step": 596
+ },
+ {
+ "epoch": 8.293449781659389,
+ "grad_norm": 0.03257273510098457,
+ "learning_rate": 0.0006,
+ "loss": 4.467840194702148,
+ "step": 597
+ },
+ {
+ "epoch": 8.307423580786025,
+ "grad_norm": 0.028066672384738922,
+ "learning_rate": 0.0006,
+ "loss": 4.471856117248535,
+ "step": 598
+ },
+ {
+ "epoch": 8.321397379912664,
+ "grad_norm": 0.032139431685209274,
+ "learning_rate": 0.0006,
+ "loss": 4.485661029815674,
+ "step": 599
+ },
+ {
+ "epoch": 8.335371179039301,
+ "grad_norm": 0.03333858773112297,
+ "learning_rate": 0.0006,
+ "loss": 4.411584854125977,
+ "step": 600
+ },
+ {
+ "epoch": 8.34934497816594,
+ "grad_norm": 0.03705155476927757,
+ "learning_rate": 0.0006,
+ "loss": 4.466585159301758,
+ "step": 601
+ },
+ {
+ "epoch": 8.363318777292577,
+ "grad_norm": 0.03022557683289051,
+ "learning_rate": 0.0006,
+ "loss": 4.4287428855896,
+ "step": 602
+ },
+ {
+ "epoch": 8.377292576419213,
+ "grad_norm": 0.02911069616675377,
+ "learning_rate": 0.0006,
+ "loss": 4.432306289672852,
+ "step": 603
+ },
+ {
+ "epoch": 8.391266375545852,
+ "grad_norm": 0.0332532562315464,
+ "learning_rate": 0.0006,
+ "loss": 4.446920871734619,
+ "step": 604
+ },
+ {
+ "epoch": 8.405240174672489,
+ "grad_norm": 0.028356043621897697,
+ "learning_rate": 0.0006,
+ "loss": 4.41445779800415,
+ "step": 605
+ },
+ {
+ "epoch": 8.419213973799126,
+ "grad_norm": 0.026536710560321808,
+ "learning_rate": 0.0006,
+ "loss": 4.45195198059082,
+ "step": 606
+ },
+ {
+ "epoch": 8.433187772925764,
+ "grad_norm": 0.027183571830391884,
+ "learning_rate": 0.0006,
+ "loss": 4.482472896575928,
+ "step": 607
+ },
+ {
+ "epoch": 8.447161572052401,
+ "grad_norm": 0.02418459579348564,
+ "learning_rate": 0.0006,
+ "loss": 4.407785415649414,
+ "step": 608
+ },
+ {
+ "epoch": 8.46113537117904,
+ "grad_norm": 0.03382935747504234,
+ "learning_rate": 0.0006,
+ "loss": 4.457126140594482,
+ "step": 609
+ },
+ {
+ "epoch": 8.475109170305677,
+ "grad_norm": 0.0399114228785038,
+ "learning_rate": 0.0006,
+ "loss": 4.404670238494873,
+ "step": 610
+ },
+ {
+ "epoch": 8.489082969432314,
+ "grad_norm": 0.02914121001958847,
+ "learning_rate": 0.0006,
+ "loss": 4.385491371154785,
+ "step": 611
+ },
+ {
+ "epoch": 8.503056768558952,
+ "grad_norm": 0.024029329419136047,
+ "learning_rate": 0.0006,
+ "loss": 4.3807878494262695,
+ "step": 612
+ },
+ {
+ "epoch": 8.51703056768559,
+ "grad_norm": 0.024073908105492592,
+ "learning_rate": 0.0006,
+ "loss": 4.393002033233643,
+ "step": 613
+ },
+ {
+ "epoch": 8.531004366812226,
+ "grad_norm": 0.024022364988923073,
+ "learning_rate": 0.0006,
+ "loss": 4.44310188293457,
+ "step": 614
+ },
+ {
+ "epoch": 8.544978165938865,
+ "grad_norm": 0.02552313171327114,
+ "learning_rate": 0.0006,
+ "loss": 4.370255947113037,
+ "step": 615
+ },
+ {
+ "epoch": 8.558951965065502,
+ "grad_norm": 0.022251879796385765,
+ "learning_rate": 0.0006,
+ "loss": 4.366595268249512,
+ "step": 616
+ },
+ {
+ "epoch": 8.57292576419214,
+ "grad_norm": 0.022750860080122948,
+ "learning_rate": 0.0006,
+ "loss": 4.377684116363525,
+ "step": 617
+ },
+ {
+ "epoch": 8.586899563318777,
+ "grad_norm": 0.022422555834054947,
+ "learning_rate": 0.0006,
+ "loss": 4.397234916687012,
+ "step": 618
+ },
+ {
+ "epoch": 8.600873362445414,
+ "grad_norm": 0.02737540379166603,
+ "learning_rate": 0.0006,
+ "loss": 4.406569957733154,
+ "step": 619
+ },
+ {
+ "epoch": 8.614847161572053,
+ "grad_norm": 0.0230751670897007,
+ "learning_rate": 0.0006,
+ "loss": 4.37363862991333,
+ "step": 620
+ },
+ {
+ "epoch": 8.62882096069869,
+ "grad_norm": 0.02010422758758068,
+ "learning_rate": 0.0006,
+ "loss": 4.396723747253418,
+ "step": 621
+ },
+ {
+ "epoch": 8.642794759825328,
+ "grad_norm": 0.024875663220882416,
+ "learning_rate": 0.0006,
+ "loss": 4.382737159729004,
+ "step": 622
+ },
+ {
+ "epoch": 8.656768558951965,
+ "grad_norm": 0.026101084426045418,
+ "learning_rate": 0.0006,
+ "loss": 4.376001358032227,
+ "step": 623
+ },
+ {
+ "epoch": 8.670742358078602,
+ "grad_norm": 0.026131760329008102,
+ "learning_rate": 0.0006,
+ "loss": 4.392600059509277,
+ "step": 624
+ },
+ {
+ "epoch": 8.68471615720524,
+ "grad_norm": 0.02580229938030243,
+ "learning_rate": 0.0006,
+ "loss": 4.383554458618164,
+ "step": 625
+ },
+ {
+ "epoch": 8.698689956331878,
+ "grad_norm": 0.02919621206820011,
+ "learning_rate": 0.0006,
+ "loss": 4.369998455047607,
+ "step": 626
+ },
+ {
+ "epoch": 8.712663755458514,
+ "grad_norm": 0.03268479183316231,
+ "learning_rate": 0.0006,
+ "loss": 4.364940166473389,
+ "step": 627
+ },
+ {
+ "epoch": 8.726637554585153,
+ "grad_norm": 0.031615134328603745,
+ "learning_rate": 0.0006,
+ "loss": 4.354142189025879,
+ "step": 628
+ },
+ {
+ "epoch": 8.74061135371179,
+ "grad_norm": 0.03091943822801113,
+ "learning_rate": 0.0006,
+ "loss": 4.405896186828613,
+ "step": 629
+ },
+ {
+ "epoch": 8.754585152838429,
+ "grad_norm": 0.03459984436631203,
+ "learning_rate": 0.0006,
+ "loss": 4.386331558227539,
+ "step": 630
+ },
+ {
+ "epoch": 8.768558951965066,
+ "grad_norm": 0.03276519104838371,
+ "learning_rate": 0.0006,
+ "loss": 4.351153373718262,
+ "step": 631
+ },
+ {
+ "epoch": 8.782532751091702,
+ "grad_norm": 0.03300934657454491,
+ "learning_rate": 0.0006,
+ "loss": 4.364960670471191,
+ "step": 632
+ },
+ {
+ "epoch": 8.796506550218341,
+ "grad_norm": 0.03618944436311722,
+ "learning_rate": 0.0006,
+ "loss": 4.3519134521484375,
+ "step": 633
+ },
+ {
+ "epoch": 8.810480349344978,
+ "grad_norm": 0.03368232026696205,
+ "learning_rate": 0.0006,
+ "loss": 4.374147891998291,
+ "step": 634
+ },
+ {
+ "epoch": 8.824454148471617,
+ "grad_norm": 0.03252463415265083,
+ "learning_rate": 0.0006,
+ "loss": 4.367391586303711,
+ "step": 635
+ },
+ {
+ "epoch": 8.838427947598253,
+ "grad_norm": 0.03680579736828804,
+ "learning_rate": 0.0006,
+ "loss": 4.364116191864014,
+ "step": 636
+ },
+ {
+ "epoch": 8.85240174672489,
+ "grad_norm": 0.0317164771258831,
+ "learning_rate": 0.0006,
+ "loss": 4.379790306091309,
+ "step": 637
+ },
+ {
+ "epoch": 8.866375545851529,
+ "grad_norm": 0.031701602041721344,
+ "learning_rate": 0.0006,
+ "loss": 4.353549003601074,
+ "step": 638
+ },
+ {
+ "epoch": 8.880349344978166,
+ "grad_norm": 0.029211340472102165,
+ "learning_rate": 0.0006,
+ "loss": 4.343072891235352,
+ "step": 639
+ },
+ {
+ "epoch": 8.894323144104803,
+ "grad_norm": 0.02774505503475666,
+ "learning_rate": 0.0006,
+ "loss": 4.354020118713379,
+ "step": 640
+ },
+ {
+ "epoch": 8.908296943231441,
+ "grad_norm": 0.027463624253869057,
+ "learning_rate": 0.0006,
+ "loss": 4.354701519012451,
+ "step": 641
+ },
+ {
+ "epoch": 8.922270742358078,
+ "grad_norm": 0.023732105270028114,
+ "learning_rate": 0.0006,
+ "loss": 4.347830772399902,
+ "step": 642
+ },
+ {
+ "epoch": 8.936244541484717,
+ "grad_norm": 0.02339051477611065,
+ "learning_rate": 0.0006,
+ "loss": 4.342405319213867,
+ "step": 643
+ },
+ {
+ "epoch": 8.950218340611354,
+ "grad_norm": 0.023744868114590645,
+ "learning_rate": 0.0006,
+ "loss": 4.352578163146973,
+ "step": 644
+ },
+ {
+ "epoch": 8.96419213973799,
+ "grad_norm": 0.02563423290848732,
+ "learning_rate": 0.0006,
+ "loss": 4.37408971786499,
+ "step": 645
+ },
+ {
+ "epoch": 8.97816593886463,
+ "grad_norm": 0.031334877014160156,
+ "learning_rate": 0.0006,
+ "loss": 4.309673309326172,
+ "step": 646
+ },
+ {
+ "epoch": 8.992139737991266,
+ "grad_norm": 0.03283081576228142,
+ "learning_rate": 0.0006,
+ "loss": 4.348544597625732,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.03263505920767784,
+ "learning_rate": 0.0006,
+ "loss": 4.307372093200684,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.477582931518555,
+ "eval_runtime": 50.1212,
+ "eval_samples_per_second": 48.722,
+ "eval_steps_per_second": 1.536,
+ "step": 648
+ },
+ {
+ "epoch": 9.013973799126637,
+ "grad_norm": 0.038239408284425735,
+ "learning_rate": 0.0006,
+ "loss": 4.2784552574157715,
+ "step": 649
+ },
+ {
+ "epoch": 9.027947598253276,
+ "grad_norm": 0.044226426631212234,
+ "learning_rate": 0.0006,
+ "loss": 4.332424163818359,
+ "step": 650
+ },
+ {
+ "epoch": 9.041921397379912,
+ "grad_norm": 0.04743504151701927,
+ "learning_rate": 0.0006,
+ "loss": 4.303574085235596,
+ "step": 651
+ },
+ {
+ "epoch": 9.055895196506551,
+ "grad_norm": 0.04348866268992424,
+ "learning_rate": 0.0006,
+ "loss": 4.295550346374512,
+ "step": 652
+ },
+ {
+ "epoch": 9.069868995633188,
+ "grad_norm": 0.04830600693821907,
+ "learning_rate": 0.0006,
+ "loss": 4.2577619552612305,
+ "step": 653
+ },
+ {
+ "epoch": 9.083842794759825,
+ "grad_norm": 0.05154724419116974,
+ "learning_rate": 0.0006,
+ "loss": 4.314383506774902,
+ "step": 654
+ },
+ {
+ "epoch": 9.097816593886463,
+ "grad_norm": 0.044492293149232864,
+ "learning_rate": 0.0006,
+ "loss": 4.32614803314209,
+ "step": 655
+ },
+ {
+ "epoch": 9.1117903930131,
+ "grad_norm": 0.03842560201883316,
+ "learning_rate": 0.0006,
+ "loss": 4.273819446563721,
+ "step": 656
+ },
+ {
+ "epoch": 9.125764192139737,
+ "grad_norm": 0.043655358254909515,
+ "learning_rate": 0.0006,
+ "loss": 4.334014892578125,
+ "step": 657
+ },
+ {
+ "epoch": 9.139737991266376,
+ "grad_norm": 0.051922112703323364,
+ "learning_rate": 0.0006,
+ "loss": 4.308163642883301,
+ "step": 658
+ },
+ {
+ "epoch": 9.153711790393013,
+ "grad_norm": 0.049958787858486176,
+ "learning_rate": 0.0006,
+ "loss": 4.30555534362793,
+ "step": 659
+ },
+ {
+ "epoch": 9.167685589519651,
+ "grad_norm": 0.03839104622602463,
+ "learning_rate": 0.0006,
+ "loss": 4.316109657287598,
+ "step": 660
+ },
+ {
+ "epoch": 9.181659388646288,
+ "grad_norm": 0.03898056969046593,
+ "learning_rate": 0.0006,
+ "loss": 4.308863639831543,
+ "step": 661
+ },
+ {
+ "epoch": 9.195633187772925,
+ "grad_norm": 0.028817247599363327,
+ "learning_rate": 0.0006,
+ "loss": 4.300504684448242,
+ "step": 662
+ },
+ {
+ "epoch": 9.209606986899564,
+ "grad_norm": 0.030067335814237595,
+ "learning_rate": 0.0006,
+ "loss": 4.259067535400391,
+ "step": 663
+ },
+ {
+ "epoch": 9.2235807860262,
+ "grad_norm": 0.03195219859480858,
+ "learning_rate": 0.0006,
+ "loss": 4.3144426345825195,
+ "step": 664
+ },
+ {
+ "epoch": 9.237554585152838,
+ "grad_norm": 0.03194814175367355,
+ "learning_rate": 0.0006,
+ "loss": 4.259864330291748,
+ "step": 665
+ },
+ {
+ "epoch": 9.251528384279476,
+ "grad_norm": 0.02754005789756775,
+ "learning_rate": 0.0006,
+ "loss": 4.291876316070557,
+ "step": 666
+ },
+ {
+ "epoch": 9.265502183406113,
+ "grad_norm": 0.026083929464221,
+ "learning_rate": 0.0006,
+ "loss": 4.205921649932861,
+ "step": 667
+ },
+ {
+ "epoch": 9.279475982532752,
+ "grad_norm": 0.025165516883134842,
+ "learning_rate": 0.0006,
+ "loss": 4.23714017868042,
+ "step": 668
+ },
+ {
+ "epoch": 9.293449781659389,
+ "grad_norm": 0.02380996011197567,
+ "learning_rate": 0.0006,
+ "loss": 4.263561725616455,
+ "step": 669
+ },
+ {
+ "epoch": 9.307423580786025,
+ "grad_norm": 0.025552157312631607,
+ "learning_rate": 0.0006,
+ "loss": 4.222456932067871,
+ "step": 670
+ },
+ {
+ "epoch": 9.321397379912664,
+ "grad_norm": 0.024957234039902687,
+ "learning_rate": 0.0006,
+ "loss": 4.250582695007324,
+ "step": 671
+ },
+ {
+ "epoch": 9.335371179039301,
+ "grad_norm": 0.02580283023416996,
+ "learning_rate": 0.0006,
+ "loss": 4.240250587463379,
+ "step": 672
+ },
+ {
+ "epoch": 9.34934497816594,
+ "grad_norm": 0.020701562985777855,
+ "learning_rate": 0.0006,
+ "loss": 4.222497463226318,
+ "step": 673
+ },
+ {
+ "epoch": 9.363318777292577,
+ "grad_norm": 0.021373746916651726,
+ "learning_rate": 0.0006,
+ "loss": 4.242282390594482,
+ "step": 674
+ },
+ {
+ "epoch": 9.377292576419213,
+ "grad_norm": 0.02025660127401352,
+ "learning_rate": 0.0006,
+ "loss": 4.270265579223633,
+ "step": 675
+ },
+ {
+ "epoch": 9.391266375545852,
+ "grad_norm": 0.02325408160686493,
+ "learning_rate": 0.0006,
+ "loss": 4.222276210784912,
+ "step": 676
+ },
+ {
+ "epoch": 9.405240174672489,
+ "grad_norm": 0.02470816671848297,
+ "learning_rate": 0.0006,
+ "loss": 4.238652229309082,
+ "step": 677
+ },
+ {
+ "epoch": 9.419213973799126,
+ "grad_norm": 0.02343972586095333,
+ "learning_rate": 0.0006,
+ "loss": 4.24069881439209,
+ "step": 678
+ },
+ {
+ "epoch": 9.433187772925764,
+ "grad_norm": 0.021034302189946175,
+ "learning_rate": 0.0006,
+ "loss": 4.244692802429199,
+ "step": 679
+ },
+ {
+ "epoch": 9.447161572052401,
+ "grad_norm": 0.021374190226197243,
+ "learning_rate": 0.0006,
+ "loss": 4.224084854125977,
+ "step": 680
+ },
+ {
+ "epoch": 9.46113537117904,
+ "grad_norm": 0.020527871325612068,
+ "learning_rate": 0.0006,
+ "loss": 4.262082099914551,
+ "step": 681
+ },
+ {
+ "epoch": 9.475109170305677,
+ "grad_norm": 0.01585977151989937,
+ "learning_rate": 0.0006,
+ "loss": 4.226033687591553,
+ "step": 682
+ },
+ {
+ "epoch": 9.489082969432314,
+ "grad_norm": 0.016423987224698067,
+ "learning_rate": 0.0006,
+ "loss": 4.171637535095215,
+ "step": 683
+ },
+ {
+ "epoch": 9.503056768558952,
+ "grad_norm": 0.015297142788767815,
+ "learning_rate": 0.0006,
+ "loss": 4.209469795227051,
+ "step": 684
+ },
+ {
+ "epoch": 9.51703056768559,
+ "grad_norm": 0.014817374758422375,
+ "learning_rate": 0.0006,
+ "loss": 4.216704845428467,
+ "step": 685
+ },
+ {
+ "epoch": 9.531004366812226,
+ "grad_norm": 0.015434044413268566,
+ "learning_rate": 0.0006,
+ "loss": 4.256552696228027,
+ "step": 686
+ },
+ {
+ "epoch": 9.544978165938865,
+ "grad_norm": 0.016138242557644844,
+ "learning_rate": 0.0006,
+ "loss": 4.218762397766113,
+ "step": 687
+ },
+ {
+ "epoch": 9.558951965065502,
+ "grad_norm": 0.017201369628310204,
+ "learning_rate": 0.0006,
+ "loss": 4.251995086669922,
+ "step": 688
+ },
+ {
+ "epoch": 9.57292576419214,
+ "grad_norm": 0.01714685745537281,
+ "learning_rate": 0.0006,
+ "loss": 4.219054222106934,
+ "step": 689
+ },
+ {
+ "epoch": 9.586899563318777,
+ "grad_norm": 0.020723173394799232,
+ "learning_rate": 0.0006,
+ "loss": 4.255344390869141,
+ "step": 690
+ },
+ {
+ "epoch": 9.600873362445414,
+ "grad_norm": 0.028826871886849403,
+ "learning_rate": 0.0006,
+ "loss": 4.221752166748047,
+ "step": 691
+ },
+ {
+ "epoch": 9.614847161572053,
+ "grad_norm": 0.03474748879671097,
+ "learning_rate": 0.0006,
+ "loss": 4.205111503601074,
+ "step": 692
+ },
+ {
+ "epoch": 9.62882096069869,
+ "grad_norm": 0.030536217615008354,
+ "learning_rate": 0.0006,
+ "loss": 4.232375144958496,
+ "step": 693
+ },
+ {
+ "epoch": 9.642794759825328,
+ "grad_norm": 0.03158785030245781,
+ "learning_rate": 0.0006,
+ "loss": 4.186178207397461,
+ "step": 694
+ },
+ {
+ "epoch": 9.656768558951965,
+ "grad_norm": 0.032505910843610764,
+ "learning_rate": 0.0006,
+ "loss": 4.208681106567383,
+ "step": 695
+ },
+ {
+ "epoch": 9.670742358078602,
+ "grad_norm": 0.025617435574531555,
+ "learning_rate": 0.0006,
+ "loss": 4.190085411071777,
+ "step": 696
+ },
+ {
+ "epoch": 9.68471615720524,
+ "grad_norm": 0.03047073632478714,
+ "learning_rate": 0.0006,
+ "loss": 4.210445404052734,
+ "step": 697
+ },
+ {
+ "epoch": 9.698689956331878,
+ "grad_norm": 0.033015694469213486,
+ "learning_rate": 0.0006,
+ "loss": 4.215723037719727,
+ "step": 698
+ },
+ {
+ "epoch": 9.712663755458514,
+ "grad_norm": 0.0364084430038929,
+ "learning_rate": 0.0006,
+ "loss": 4.192442417144775,
+ "step": 699
+ },
+ {
+ "epoch": 9.726637554585153,
+ "grad_norm": 0.03577317297458649,
+ "learning_rate": 0.0006,
+ "loss": 4.20793342590332,
+ "step": 700
+ },
+ {
+ "epoch": 9.74061135371179,
+ "grad_norm": 0.031464435160160065,
+ "learning_rate": 0.0006,
+ "loss": 4.205752372741699,
+ "step": 701
+ },
+ {
+ "epoch": 9.754585152838429,
+ "grad_norm": 0.030628090724349022,
+ "learning_rate": 0.0006,
+ "loss": 4.209503173828125,
+ "step": 702
+ },
+ {
+ "epoch": 9.768558951965066,
+ "grad_norm": 0.031171889975667,
+ "learning_rate": 0.0006,
+ "loss": 4.189100742340088,
+ "step": 703
+ },
+ {
+ "epoch": 9.782532751091702,
+ "grad_norm": 0.026728026568889618,
+ "learning_rate": 0.0006,
+ "loss": 4.175262928009033,
+ "step": 704
+ },
+ {
+ "epoch": 9.796506550218341,
+ "grad_norm": 0.02975568361580372,
+ "learning_rate": 0.0006,
+ "loss": 4.180237770080566,
+ "step": 705
+ },
+ {
+ "epoch": 9.810480349344978,
+ "grad_norm": 0.03690735250711441,
+ "learning_rate": 0.0006,
+ "loss": 4.160732269287109,
+ "step": 706
+ },
+ {
+ "epoch": 9.824454148471617,
+ "grad_norm": 0.03488203138113022,
+ "learning_rate": 0.0006,
+ "loss": 4.228294849395752,
+ "step": 707
+ },
+ {
+ "epoch": 9.838427947598253,
+ "grad_norm": 0.032557982951402664,
+ "learning_rate": 0.0006,
+ "loss": 4.144038200378418,
+ "step": 708
+ },
+ {
+ "epoch": 9.85240174672489,
+ "grad_norm": 0.03189995512366295,
+ "learning_rate": 0.0006,
+ "loss": 4.194624900817871,
+ "step": 709
+ },
+ {
+ "epoch": 9.866375545851529,
+ "grad_norm": 0.03439774736762047,
+ "learning_rate": 0.0006,
+ "loss": 4.216994762420654,
+ "step": 710
+ },
+ {
+ "epoch": 9.880349344978166,
+ "grad_norm": 0.03789396584033966,
+ "learning_rate": 0.0006,
+ "loss": 4.196347236633301,
+ "step": 711
+ },
+ {
+ "epoch": 9.894323144104803,
+ "grad_norm": 0.037980109453201294,
+ "learning_rate": 0.0006,
+ "loss": 4.213890075683594,
+ "step": 712
+ },
+ {
+ "epoch": 9.908296943231441,
+ "grad_norm": 0.043379005044698715,
+ "learning_rate": 0.0006,
+ "loss": 4.209582328796387,
+ "step": 713
+ },
+ {
+ "epoch": 9.922270742358078,
+ "grad_norm": 0.03881588950753212,
+ "learning_rate": 0.0006,
+ "loss": 4.210249900817871,
+ "step": 714
+ },
+ {
+ "epoch": 9.936244541484717,
+ "grad_norm": 0.038644567131996155,
+ "learning_rate": 0.0006,
+ "loss": 4.169578552246094,
+ "step": 715
+ },
+ {
+ "epoch": 9.950218340611354,
+ "grad_norm": 0.03676586598157883,
+ "learning_rate": 0.0006,
+ "loss": 4.234776020050049,
+ "step": 716
+ },
+ {
+ "epoch": 9.96419213973799,
+ "grad_norm": 0.032105959951877594,
+ "learning_rate": 0.0006,
+ "loss": 4.218995094299316,
+ "step": 717
+ },
+ {
+ "epoch": 9.97816593886463,
+ "grad_norm": 0.034359272569417953,
+ "learning_rate": 0.0006,
+ "loss": 4.209888458251953,
+ "step": 718
+ },
+ {
+ "epoch": 9.992139737991266,
+ "grad_norm": 0.02772289142012596,
+ "learning_rate": 0.0006,
+ "loss": 4.201578140258789,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.03038903884589672,
+ "learning_rate": 0.0006,
+ "loss": 4.170413494110107,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.344418048858643,
+ "eval_runtime": 50.1464,
+ "eval_samples_per_second": 48.697,
+ "eval_steps_per_second": 1.536,
+ "step": 720
+ },
+ {
+ "epoch": 10.013973799126637,
+ "grad_norm": 0.026941193267703056,
+ "learning_rate": 0.0006,
+ "loss": 4.122128486633301,
+ "step": 721
+ },
+ {
+ "epoch": 10.027947598253276,
+ "grad_norm": 0.028237640857696533,
+ "learning_rate": 0.0006,
+ "loss": 4.120541572570801,
+ "step": 722
+ },
+ {
+ "epoch": 10.041921397379912,
+ "grad_norm": 0.02316083386540413,
+ "learning_rate": 0.0006,
+ "loss": 4.127598285675049,
+ "step": 723
+ },
+ {
+ "epoch": 10.055895196506551,
+ "grad_norm": 0.02862458862364292,
+ "learning_rate": 0.0006,
+ "loss": 4.066249847412109,
+ "step": 724
+ },
+ {
+ "epoch": 10.069868995633188,
+ "grad_norm": 0.031772635877132416,
+ "learning_rate": 0.0006,
+ "loss": 4.1211652755737305,
+ "step": 725
+ },
+ {
+ "epoch": 10.083842794759825,
+ "grad_norm": 0.031032619997859,
+ "learning_rate": 0.0006,
+ "loss": 4.125894546508789,
+ "step": 726
+ },
+ {
+ "epoch": 10.097816593886463,
+ "grad_norm": 0.02898111566901207,
+ "learning_rate": 0.0006,
+ "loss": 4.119715213775635,
+ "step": 727
+ },
+ {
+ "epoch": 10.1117903930131,
+ "grad_norm": 0.030101103708148003,
+ "learning_rate": 0.0006,
+ "loss": 4.087604522705078,
+ "step": 728
+ },
+ {
+ "epoch": 10.125764192139737,
+ "grad_norm": 0.025814464315772057,
+ "learning_rate": 0.0006,
+ "loss": 4.124494552612305,
+ "step": 729
+ },
+ {
+ "epoch": 10.139737991266376,
+ "grad_norm": 0.029547641053795815,
+ "learning_rate": 0.0006,
+ "loss": 4.072463035583496,
+ "step": 730
+ },
+ {
+ "epoch": 10.153711790393013,
+ "grad_norm": 0.03424989432096481,
+ "learning_rate": 0.0006,
+ "loss": 4.111055374145508,
+ "step": 731
+ },
+ {
+ "epoch": 10.167685589519651,
+ "grad_norm": 0.0335191935300827,
+ "learning_rate": 0.0006,
+ "loss": 4.111437797546387,
+ "step": 732
+ },
+ {
+ "epoch": 10.181659388646288,
+ "grad_norm": 0.02894248627126217,
+ "learning_rate": 0.0006,
+ "loss": 4.133310317993164,
+ "step": 733
+ },
+ {
+ "epoch": 10.195633187772925,
+ "grad_norm": 0.0266376081854105,
+ "learning_rate": 0.0006,
+ "loss": 4.132228851318359,
+ "step": 734
+ },
+ {
+ "epoch": 10.209606986899564,
+ "grad_norm": 0.020824341103434563,
+ "learning_rate": 0.0006,
+ "loss": 4.110835075378418,
+ "step": 735
+ },
+ {
+ "epoch": 10.2235807860262,
+ "grad_norm": 0.021089477464556694,
+ "learning_rate": 0.0006,
+ "loss": 4.1186065673828125,
+ "step": 736
+ },
+ {
+ "epoch": 10.237554585152838,
+ "grad_norm": 0.023007674142718315,
+ "learning_rate": 0.0006,
+ "loss": 4.089912414550781,
+ "step": 737
+ },
+ {
+ "epoch": 10.251528384279476,
+ "grad_norm": 0.025911295786499977,
+ "learning_rate": 0.0006,
+ "loss": 4.10264778137207,
+ "step": 738
+ },
+ {
+ "epoch": 10.265502183406113,
+ "grad_norm": 0.02900099940598011,
+ "learning_rate": 0.0006,
+ "loss": 4.074974060058594,
+ "step": 739
+ },
+ {
+ "epoch": 10.279475982532752,
+ "grad_norm": 0.027182135730981827,
+ "learning_rate": 0.0006,
+ "loss": 4.107949256896973,
+ "step": 740
+ },
+ {
+ "epoch": 10.293449781659389,
+ "grad_norm": 0.027884794399142265,
+ "learning_rate": 0.0006,
+ "loss": 4.039497375488281,
+ "step": 741
+ },
+ {
+ "epoch": 10.307423580786025,
+ "grad_norm": 0.025900574401021004,
+ "learning_rate": 0.0006,
+ "loss": 4.063011646270752,
+ "step": 742
+ },
+ {
+ "epoch": 10.321397379912664,
+ "grad_norm": 0.023031197488307953,
+ "learning_rate": 0.0006,
+ "loss": 4.086951732635498,
+ "step": 743
+ },
+ {
+ "epoch": 10.335371179039301,
+ "grad_norm": 0.021363092586398125,
+ "learning_rate": 0.0006,
+ "loss": 4.140152454376221,
+ "step": 744
+ },
+ {
+ "epoch": 10.34934497816594,
+ "grad_norm": 0.019563496112823486,
+ "learning_rate": 0.0006,
+ "loss": 4.087207794189453,
+ "step": 745
+ },
+ {
+ "epoch": 10.363318777292577,
+ "grad_norm": 0.018893307074904442,
+ "learning_rate": 0.0006,
+ "loss": 4.087675094604492,
+ "step": 746
+ },
+ {
+ "epoch": 10.377292576419213,
+ "grad_norm": 0.020667923614382744,
+ "learning_rate": 0.0006,
+ "loss": 4.079525947570801,
+ "step": 747
+ },
+ {
+ "epoch": 10.391266375545852,
+ "grad_norm": 0.021774202585220337,
+ "learning_rate": 0.0006,
+ "loss": 4.107867240905762,
+ "step": 748
+ },
+ {
+ "epoch": 10.405240174672489,
+ "grad_norm": 0.020068392157554626,
+ "learning_rate": 0.0006,
+ "loss": 4.0873212814331055,
+ "step": 749
+ },
+ {
+ "epoch": 10.419213973799126,
+ "grad_norm": 0.01842055842280388,
+ "learning_rate": 0.0006,
+ "loss": 4.101090431213379,
+ "step": 750
+ },
+ {
+ "epoch": 10.433187772925764,
+ "grad_norm": 0.01795836165547371,
+ "learning_rate": 0.0006,
+ "loss": 4.050619602203369,
+ "step": 751
+ },
+ {
+ "epoch": 10.447161572052401,
+ "grad_norm": 0.019673889502882957,
+ "learning_rate": 0.0006,
+ "loss": 4.086307525634766,
+ "step": 752
+ },
+ {
+ "epoch": 10.46113537117904,
+ "grad_norm": 0.01977507211267948,
+ "learning_rate": 0.0006,
+ "loss": 4.0656023025512695,
+ "step": 753
+ },
+ {
+ "epoch": 10.475109170305677,
+ "grad_norm": 0.019471775740385056,
+ "learning_rate": 0.0006,
+ "loss": 4.046194076538086,
+ "step": 754
+ },
+ {
+ "epoch": 10.489082969432314,
+ "grad_norm": 0.018536966294050217,
+ "learning_rate": 0.0006,
+ "loss": 4.033197402954102,
+ "step": 755
+ },
+ {
+ "epoch": 10.503056768558952,
+ "grad_norm": 0.018902234733104706,
+ "learning_rate": 0.0006,
+ "loss": 4.060090065002441,
+ "step": 756
+ },
+ {
+ "epoch": 10.51703056768559,
+ "grad_norm": 0.01902388036251068,
+ "learning_rate": 0.0006,
+ "loss": 4.046975135803223,
+ "step": 757
+ },
+ {
+ "epoch": 10.531004366812226,
+ "grad_norm": 0.01699388213455677,
+ "learning_rate": 0.0006,
+ "loss": 4.081168174743652,
+ "step": 758
+ },
+ {
+ "epoch": 10.544978165938865,
+ "grad_norm": 0.022350501269102097,
+ "learning_rate": 0.0006,
+ "loss": 4.049786567687988,
+ "step": 759
+ },
+ {
+ "epoch": 10.558951965065502,
+ "grad_norm": 0.023642681539058685,
+ "learning_rate": 0.0006,
+ "loss": 4.055563926696777,
+ "step": 760
+ },
+ {
+ "epoch": 10.57292576419214,
+ "grad_norm": 0.02127036638557911,
+ "learning_rate": 0.0006,
+ "loss": 4.027631759643555,
+ "step": 761
+ },
+ {
+ "epoch": 10.586899563318777,
+ "grad_norm": 0.017590979114174843,
+ "learning_rate": 0.0006,
+ "loss": 4.0793137550354,
+ "step": 762
+ },
+ {
+ "epoch": 10.600873362445414,
+ "grad_norm": 0.016930999234318733,
+ "learning_rate": 0.0006,
+ "loss": 4.027737140655518,
+ "step": 763
+ },
+ {
+ "epoch": 10.614847161572053,
+ "grad_norm": 0.018824463710188866,
+ "learning_rate": 0.0006,
+ "loss": 4.046807289123535,
+ "step": 764
+ },
+ {
+ "epoch": 10.62882096069869,
+ "grad_norm": 0.020024564117193222,
+ "learning_rate": 0.0006,
+ "loss": 4.039668083190918,
+ "step": 765
+ },
+ {
+ "epoch": 10.642794759825328,
+ "grad_norm": 0.0220749881118536,
+ "learning_rate": 0.0006,
+ "loss": 4.031907558441162,
+ "step": 766
+ },
+ {
+ "epoch": 10.656768558951965,
+ "grad_norm": 0.023237163200974464,
+ "learning_rate": 0.0006,
+ "loss": 4.059335708618164,
+ "step": 767
+ },
+ {
+ "epoch": 10.670742358078602,
+ "grad_norm": 0.023948276415467262,
+ "learning_rate": 0.0006,
+ "loss": 4.054678440093994,
+ "step": 768
+ },
+ {
+ "epoch": 10.68471615720524,
+ "grad_norm": 0.02620924636721611,
+ "learning_rate": 0.0006,
+ "loss": 4.063493728637695,
+ "step": 769
+ },
+ {
+ "epoch": 10.698689956331878,
+ "grad_norm": 0.02867635153234005,
+ "learning_rate": 0.0006,
+ "loss": 4.036065578460693,
+ "step": 770
+ },
+ {
+ "epoch": 10.712663755458514,
+ "grad_norm": 0.028705662116408348,
+ "learning_rate": 0.0006,
+ "loss": 4.049670219421387,
+ "step": 771
+ },
+ {
+ "epoch": 10.726637554585153,
+ "grad_norm": 0.024740688502788544,
+ "learning_rate": 0.0006,
+ "loss": 4.06446647644043,
+ "step": 772
+ },
+ {
+ "epoch": 10.74061135371179,
+ "grad_norm": 0.03012487292289734,
+ "learning_rate": 0.0006,
+ "loss": 4.0461015701293945,
+ "step": 773
+ },
+ {
+ "epoch": 10.754585152838429,
+ "grad_norm": 0.03286127373576164,
+ "learning_rate": 0.0006,
+ "loss": 4.025463104248047,
+ "step": 774
+ },
+ {
+ "epoch": 10.768558951965066,
+ "grad_norm": 0.028815945610404015,
+ "learning_rate": 0.0006,
+ "loss": 4.064168930053711,
+ "step": 775
+ },
+ {
+ "epoch": 10.782532751091702,
+ "grad_norm": 0.028760947287082672,
+ "learning_rate": 0.0006,
+ "loss": 4.033624649047852,
+ "step": 776
+ },
+ {
+ "epoch": 10.796506550218341,
+ "grad_norm": 0.02942710369825363,
+ "learning_rate": 0.0006,
+ "loss": 4.0383501052856445,
+ "step": 777
+ },
+ {
+ "epoch": 10.810480349344978,
+ "grad_norm": 0.026153555139899254,
+ "learning_rate": 0.0006,
+ "loss": 4.040336608886719,
+ "step": 778
+ },
+ {
+ "epoch": 10.824454148471617,
+ "grad_norm": 0.025876570492982864,
+ "learning_rate": 0.0006,
+ "loss": 4.051267147064209,
+ "step": 779
+ },
+ {
+ "epoch": 10.838427947598253,
+ "grad_norm": 0.024056321009993553,
+ "learning_rate": 0.0006,
+ "loss": 4.035898208618164,
+ "step": 780
+ },
+ {
+ "epoch": 10.85240174672489,
+ "grad_norm": 0.023602450266480446,
+ "learning_rate": 0.0006,
+ "loss": 4.041120529174805,
+ "step": 781
+ },
+ {
+ "epoch": 10.866375545851529,
+ "grad_norm": 0.0207925196737051,
+ "learning_rate": 0.0006,
+ "loss": 4.030442237854004,
+ "step": 782
+ },
+ {
+ "epoch": 10.880349344978166,
+ "grad_norm": 0.021948475390672684,
+ "learning_rate": 0.0006,
+ "loss": 4.059929847717285,
+ "step": 783
+ },
+ {
+ "epoch": 10.894323144104803,
+ "grad_norm": 0.022555390372872353,
+ "learning_rate": 0.0006,
+ "loss": 4.077475547790527,
+ "step": 784
+ },
+ {
+ "epoch": 10.908296943231441,
+ "grad_norm": 0.020376233384013176,
+ "learning_rate": 0.0006,
+ "loss": 4.038033485412598,
+ "step": 785
+ },
+ {
+ "epoch": 10.922270742358078,
+ "grad_norm": 0.019903237000107765,
+ "learning_rate": 0.0006,
+ "loss": 4.036017417907715,
+ "step": 786
+ },
+ {
+ "epoch": 10.936244541484717,
+ "grad_norm": 0.019737590104341507,
+ "learning_rate": 0.0006,
+ "loss": 4.027589321136475,
+ "step": 787
+ },
+ {
+ "epoch": 10.950218340611354,
+ "grad_norm": 0.017857525497674942,
+ "learning_rate": 0.0006,
+ "loss": 4.039187431335449,
+ "step": 788
+ },
+ {
+ "epoch": 10.96419213973799,
+ "grad_norm": 0.019433340057730675,
+ "learning_rate": 0.0006,
+ "loss": 4.025817394256592,
+ "step": 789
+ },
+ {
+ "epoch": 10.97816593886463,
+ "grad_norm": 0.019131962209939957,
+ "learning_rate": 0.0006,
+ "loss": 4.050541877746582,
+ "step": 790
+ },
+ {
+ "epoch": 10.992139737991266,
+ "grad_norm": 0.01899166963994503,
+ "learning_rate": 0.0006,
+ "loss": 4.034682273864746,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.02292267233133316,
+ "learning_rate": 0.0006,
+ "loss": 4.02860689163208,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.223135471343994,
+ "eval_runtime": 50.1809,
+ "eval_samples_per_second": 48.664,
+ "eval_steps_per_second": 1.534,
+ "step": 792
+ },
+ {
+ "epoch": 11.013973799126637,
+ "grad_norm": 0.02331780269742012,
+ "learning_rate": 0.0006,
+ "loss": 3.9552907943725586,
+ "step": 793
+ },
+ {
+ "epoch": 11.027947598253276,
+ "grad_norm": 0.027006106451153755,
+ "learning_rate": 0.0006,
+ "loss": 3.9303345680236816,
+ "step": 794
+ },
+ {
+ "epoch": 11.041921397379912,
+ "grad_norm": 0.03403666242957115,
+ "learning_rate": 0.0006,
+ "loss": 3.93170166015625,
+ "step": 795
+ },
+ {
+ "epoch": 11.055895196506551,
+ "grad_norm": 0.03784231096506119,
+ "learning_rate": 0.0006,
+ "loss": 3.9460182189941406,
+ "step": 796
+ },
+ {
+ "epoch": 11.069868995633188,
+ "grad_norm": 0.036992497742176056,
+ "learning_rate": 0.0006,
+ "loss": 3.9788053035736084,
+ "step": 797
+ },
+ {
+ "epoch": 11.083842794759825,
+ "grad_norm": 0.040899068117141724,
+ "learning_rate": 0.0006,
+ "loss": 3.97415828704834,
+ "step": 798
+ },
+ {
+ "epoch": 11.097816593886463,
+ "grad_norm": 0.0333116240799427,
+ "learning_rate": 0.0006,
+ "loss": 3.9691474437713623,
+ "step": 799
+ },
+ {
+ "epoch": 11.1117903930131,
+ "grad_norm": 0.03146163746714592,
+ "learning_rate": 0.0006,
+ "loss": 3.95757794380188,
+ "step": 800
+ },
+ {
+ "epoch": 11.125764192139737,
+ "grad_norm": 0.031018080189824104,
+ "learning_rate": 0.0006,
+ "loss": 3.9483275413513184,
+ "step": 801
+ },
+ {
+ "epoch": 11.139737991266376,
+ "grad_norm": 0.03301657736301422,
+ "learning_rate": 0.0006,
+ "loss": 3.972309112548828,
+ "step": 802
+ },
+ {
+ "epoch": 11.153711790393013,
+ "grad_norm": 0.03665755316615105,
+ "learning_rate": 0.0006,
+ "loss": 3.963214874267578,
+ "step": 803
+ },
+ {
+ "epoch": 11.167685589519651,
+ "grad_norm": 0.038088612258434296,
+ "learning_rate": 0.0006,
+ "loss": 3.9526877403259277,
+ "step": 804
+ },
+ {
+ "epoch": 11.181659388646288,
+ "grad_norm": 0.035294584929943085,
+ "learning_rate": 0.0006,
+ "loss": 3.9849953651428223,
+ "step": 805
+ },
+ {
+ "epoch": 11.195633187772925,
+ "grad_norm": 0.03202495723962784,
+ "learning_rate": 0.0006,
+ "loss": 3.944120407104492,
+ "step": 806
+ },
+ {
+ "epoch": 11.209606986899564,
+ "grad_norm": 0.028670601546764374,
+ "learning_rate": 0.0006,
+ "loss": 3.9752721786499023,
+ "step": 807
+ },
+ {
+ "epoch": 11.2235807860262,
+ "grad_norm": 0.032401736825704575,
+ "learning_rate": 0.0006,
+ "loss": 3.986171245574951,
+ "step": 808
+ },
+ {
+ "epoch": 11.237554585152838,
+ "grad_norm": 0.033387646079063416,
+ "learning_rate": 0.0006,
+ "loss": 3.977919101715088,
+ "step": 809
+ },
+ {
+ "epoch": 11.251528384279476,
+ "grad_norm": 0.03134278208017349,
+ "learning_rate": 0.0006,
+ "loss": 3.9734086990356445,
+ "step": 810
+ },
+ {
+ "epoch": 11.265502183406113,
+ "grad_norm": 0.030449511483311653,
+ "learning_rate": 0.0006,
+ "loss": 3.995955228805542,
+ "step": 811
+ },
+ {
+ "epoch": 11.279475982532752,
+ "grad_norm": 0.03138570487499237,
+ "learning_rate": 0.0006,
+ "loss": 3.9690403938293457,
+ "step": 812
+ },
+ {
+ "epoch": 11.293449781659389,
+ "grad_norm": 0.03469259291887283,
+ "learning_rate": 0.0006,
+ "loss": 3.9562559127807617,
+ "step": 813
+ },
+ {
+ "epoch": 11.307423580786025,
+ "grad_norm": 0.03249761089682579,
+ "learning_rate": 0.0006,
+ "loss": 3.950381278991699,
+ "step": 814
+ },
+ {
+ "epoch": 11.321397379912664,
+ "grad_norm": 0.03012247197329998,
+ "learning_rate": 0.0006,
+ "loss": 3.9659230709075928,
+ "step": 815
+ },
+ {
+ "epoch": 11.335371179039301,
+ "grad_norm": 0.026212701573967934,
+ "learning_rate": 0.0006,
+ "loss": 3.956185817718506,
+ "step": 816
+ },
+ {
+ "epoch": 11.34934497816594,
+ "grad_norm": 0.02690894901752472,
+ "learning_rate": 0.0006,
+ "loss": 3.9513344764709473,
+ "step": 817
+ },
+ {
+ "epoch": 11.363318777292577,
+ "grad_norm": 0.02419866994023323,
+ "learning_rate": 0.0006,
+ "loss": 3.997973680496216,
+ "step": 818
+ },
+ {
+ "epoch": 11.377292576419213,
+ "grad_norm": 0.027116507291793823,
+ "learning_rate": 0.0006,
+ "loss": 3.9817705154418945,
+ "step": 819
+ },
+ {
+ "epoch": 11.391266375545852,
+ "grad_norm": 0.029049331322312355,
+ "learning_rate": 0.0006,
+ "loss": 3.951998472213745,
+ "step": 820
+ },
+ {
+ "epoch": 11.405240174672489,
+ "grad_norm": 0.026706157252192497,
+ "learning_rate": 0.0006,
+ "loss": 3.9744365215301514,
+ "step": 821
+ },
+ {
+ "epoch": 11.419213973799126,
+ "grad_norm": 0.025000600144267082,
+ "learning_rate": 0.0006,
+ "loss": 3.959059238433838,
+ "step": 822
+ },
+ {
+ "epoch": 11.433187772925764,
+ "grad_norm": 0.024861274287104607,
+ "learning_rate": 0.0006,
+ "loss": 3.9474871158599854,
+ "step": 823
+ },
+ {
+ "epoch": 11.447161572052401,
+ "grad_norm": 0.023006360977888107,
+ "learning_rate": 0.0006,
+ "loss": 3.924236297607422,
+ "step": 824
+ },
+ {
+ "epoch": 11.46113537117904,
+ "grad_norm": 0.023747073486447334,
+ "learning_rate": 0.0006,
+ "loss": 3.9383111000061035,
+ "step": 825
+ },
+ {
+ "epoch": 11.475109170305677,
+ "grad_norm": 0.027958976104855537,
+ "learning_rate": 0.0006,
+ "loss": 3.989518880844116,
+ "step": 826
+ },
+ {
+ "epoch": 11.489082969432314,
+ "grad_norm": 0.026648882776498795,
+ "learning_rate": 0.0006,
+ "loss": 3.9455833435058594,
+ "step": 827
+ },
+ {
+ "epoch": 11.503056768558952,
+ "grad_norm": 0.023990288376808167,
+ "learning_rate": 0.0006,
+ "loss": 3.9832968711853027,
+ "step": 828
+ },
+ {
+ "epoch": 11.51703056768559,
+ "grad_norm": 0.02722238190472126,
+ "learning_rate": 0.0006,
+ "loss": 3.924104690551758,
+ "step": 829
+ },
+ {
+ "epoch": 11.531004366812226,
+ "grad_norm": 0.026512466371059418,
+ "learning_rate": 0.0006,
+ "loss": 3.9410343170166016,
+ "step": 830
+ },
+ {
+ "epoch": 11.544978165938865,
+ "grad_norm": 0.022135436534881592,
+ "learning_rate": 0.0006,
+ "loss": 3.903899669647217,
+ "step": 831
+ },
+ {
+ "epoch": 11.558951965065502,
+ "grad_norm": 0.022456489503383636,
+ "learning_rate": 0.0006,
+ "loss": 3.962076187133789,
+ "step": 832
+ },
+ {
+ "epoch": 11.57292576419214,
+ "grad_norm": 0.024932855740189552,
+ "learning_rate": 0.0006,
+ "loss": 3.9023091793060303,
+ "step": 833
+ },
+ {
+ "epoch": 11.586899563318777,
+ "grad_norm": 0.02856597490608692,
+ "learning_rate": 0.0006,
+ "loss": 3.928679943084717,
+ "step": 834
+ },
+ {
+ "epoch": 11.600873362445414,
+ "grad_norm": 0.034227993339300156,
+ "learning_rate": 0.0006,
+ "loss": 3.9686708450317383,
+ "step": 835
+ },
+ {
+ "epoch": 11.614847161572053,
+ "grad_norm": 0.03348609432578087,
+ "learning_rate": 0.0006,
+ "loss": 4.001498699188232,
+ "step": 836
+ },
+ {
+ "epoch": 11.62882096069869,
+ "grad_norm": 0.028687726706266403,
+ "learning_rate": 0.0006,
+ "loss": 3.9448747634887695,
+ "step": 837
+ },
+ {
+ "epoch": 11.642794759825328,
+ "grad_norm": 0.030512670055031776,
+ "learning_rate": 0.0006,
+ "loss": 3.967744827270508,
+ "step": 838
+ },
+ {
+ "epoch": 11.656768558951965,
+ "grad_norm": 0.028223708271980286,
+ "learning_rate": 0.0006,
+ "loss": 3.937486171722412,
+ "step": 839
+ },
+ {
+ "epoch": 11.670742358078602,
+ "grad_norm": 0.026596587151288986,
+ "learning_rate": 0.0006,
+ "loss": 3.9503097534179688,
+ "step": 840
+ },
+ {
+ "epoch": 11.68471615720524,
+ "grad_norm": 0.025357289239764214,
+ "learning_rate": 0.0006,
+ "loss": 3.9005143642425537,
+ "step": 841
+ },
+ {
+ "epoch": 11.698689956331878,
+ "grad_norm": 0.027513934299349785,
+ "learning_rate": 0.0006,
+ "loss": 3.9426188468933105,
+ "step": 842
+ },
+ {
+ "epoch": 11.712663755458514,
+ "grad_norm": 0.024877114221453667,
+ "learning_rate": 0.0006,
+ "loss": 3.9422965049743652,
+ "step": 843
+ },
+ {
+ "epoch": 11.726637554585153,
+ "grad_norm": 0.024543913081288338,
+ "learning_rate": 0.0006,
+ "loss": 3.9211392402648926,
+ "step": 844
+ },
+ {
+ "epoch": 11.74061135371179,
+ "grad_norm": 0.02748306654393673,
+ "learning_rate": 0.0006,
+ "loss": 3.9308085441589355,
+ "step": 845
+ },
+ {
+ "epoch": 11.754585152838429,
+ "grad_norm": 0.02310740016400814,
+ "learning_rate": 0.0006,
+ "loss": 3.9191694259643555,
+ "step": 846
+ },
+ {
+ "epoch": 11.768558951965066,
+ "grad_norm": 0.01961519382894039,
+ "learning_rate": 0.0006,
+ "loss": 3.963473081588745,
+ "step": 847
+ },
+ {
+ "epoch": 11.782532751091702,
+ "grad_norm": 0.02019876055419445,
+ "learning_rate": 0.0006,
+ "loss": 3.9336318969726562,
+ "step": 848
+ },
+ {
+ "epoch": 11.796506550218341,
+ "grad_norm": 0.017846928909420967,
+ "learning_rate": 0.0006,
+ "loss": 3.9323928356170654,
+ "step": 849
+ },
+ {
+ "epoch": 11.810480349344978,
+ "grad_norm": 0.0204033050686121,
+ "learning_rate": 0.0006,
+ "loss": 3.9221231937408447,
+ "step": 850
+ },
+ {
+ "epoch": 11.824454148471617,
+ "grad_norm": 0.0186605304479599,
+ "learning_rate": 0.0006,
+ "loss": 3.964756965637207,
+ "step": 851
+ },
+ {
+ "epoch": 11.838427947598253,
+ "grad_norm": 0.01672505773603916,
+ "learning_rate": 0.0006,
+ "loss": 3.921032667160034,
+ "step": 852
+ },
+ {
+ "epoch": 11.85240174672489,
+ "grad_norm": 0.01734270341694355,
+ "learning_rate": 0.0006,
+ "loss": 3.9388551712036133,
+ "step": 853
+ },
+ {
+ "epoch": 11.866375545851529,
+ "grad_norm": 0.01686406321823597,
+ "learning_rate": 0.0006,
+ "loss": 3.9283366203308105,
+ "step": 854
+ },
+ {
+ "epoch": 11.880349344978166,
+ "grad_norm": 0.01593155413866043,
+ "learning_rate": 0.0006,
+ "loss": 3.9095754623413086,
+ "step": 855
+ },
+ {
+ "epoch": 11.894323144104803,
+ "grad_norm": 0.014560039155185223,
+ "learning_rate": 0.0006,
+ "loss": 3.942214012145996,
+ "step": 856
+ },
+ {
+ "epoch": 11.908296943231441,
+ "grad_norm": 0.016584530472755432,
+ "learning_rate": 0.0006,
+ "loss": 3.8745198249816895,
+ "step": 857
+ },
+ {
+ "epoch": 11.922270742358078,
+ "grad_norm": 0.016951464116573334,
+ "learning_rate": 0.0006,
+ "loss": 3.9224963188171387,
+ "step": 858
+ },
+ {
+ "epoch": 11.936244541484717,
+ "grad_norm": 0.017965901643037796,
+ "learning_rate": 0.0006,
+ "loss": 3.886237621307373,
+ "step": 859
+ },
+ {
+ "epoch": 11.950218340611354,
+ "grad_norm": 0.01874147541821003,
+ "learning_rate": 0.0006,
+ "loss": 3.9200339317321777,
+ "step": 860
+ },
+ {
+ "epoch": 11.96419213973799,
+ "grad_norm": 0.021464595571160316,
+ "learning_rate": 0.0006,
+ "loss": 3.9424729347229004,
+ "step": 861
+ },
+ {
+ "epoch": 11.97816593886463,
+ "grad_norm": 0.02506706677377224,
+ "learning_rate": 0.0006,
+ "loss": 3.9516968727111816,
+ "step": 862
+ },
+ {
+ "epoch": 11.992139737991266,
+ "grad_norm": 0.02550777979195118,
+ "learning_rate": 0.0006,
+ "loss": 3.9148871898651123,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.022032644599676132,
+ "learning_rate": 0.0006,
+ "loss": 3.934220314025879,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.146186828613281,
+ "eval_runtime": 70.9324,
+ "eval_samples_per_second": 34.427,
+ "eval_steps_per_second": 1.086,
+ "step": 864
+ },
+ {
+ "epoch": 12.013973799126637,
+ "grad_norm": 0.021564407274127007,
+ "learning_rate": 0.0006,
+ "loss": 3.8425402641296387,
+ "step": 865
+ },
+ {
+ "epoch": 12.027947598253276,
+ "grad_norm": 0.021265074610710144,
+ "learning_rate": 0.0006,
+ "loss": 3.8457272052764893,
+ "step": 866
+ },
+ {
+ "epoch": 12.041921397379912,
+ "grad_norm": 0.02154017984867096,
+ "learning_rate": 0.0006,
+ "loss": 3.810920238494873,
+ "step": 867
+ },
+ {
+ "epoch": 12.055895196506551,
+ "grad_norm": 0.020422060042619705,
+ "learning_rate": 0.0006,
+ "loss": 3.8347911834716797,
+ "step": 868
+ },
+ {
+ "epoch": 12.069868995633188,
+ "grad_norm": 0.01949428766965866,
+ "learning_rate": 0.0006,
+ "loss": 3.831073760986328,
+ "step": 869
+ },
+ {
+ "epoch": 12.083842794759825,
+ "grad_norm": 0.021055635064840317,
+ "learning_rate": 0.0006,
+ "loss": 3.8869409561157227,
+ "step": 870
+ },
+ {
+ "epoch": 12.097816593886463,
+ "grad_norm": 0.02397136203944683,
+ "learning_rate": 0.0006,
+ "loss": 3.837860107421875,
+ "step": 871
+ },
+ {
+ "epoch": 12.1117903930131,
+ "grad_norm": 0.02733064442873001,
+ "learning_rate": 0.0006,
+ "loss": 3.8453102111816406,
+ "step": 872
+ },
+ {
+ "epoch": 12.125764192139737,
+ "grad_norm": 0.03023727424442768,
+ "learning_rate": 0.0006,
+ "loss": 3.8106770515441895,
+ "step": 873
+ },
+ {
+ "epoch": 12.139737991266376,
+ "grad_norm": 0.0334315188229084,
+ "learning_rate": 0.0006,
+ "loss": 3.835714817047119,
+ "step": 874
+ },
+ {
+ "epoch": 12.153711790393013,
+ "grad_norm": 0.03233368694782257,
+ "learning_rate": 0.0006,
+ "loss": 3.8509063720703125,
+ "step": 875
+ },
+ {
+ "epoch": 12.167685589519651,
+ "grad_norm": 0.03522663936018944,
+ "learning_rate": 0.0006,
+ "loss": 3.854410171508789,
+ "step": 876
+ },
+ {
+ "epoch": 12.181659388646288,
+ "grad_norm": 0.04753761738538742,
+ "learning_rate": 0.0006,
+ "loss": 3.882387638092041,
+ "step": 877
+ },
+ {
+ "epoch": 12.195633187772925,
+ "grad_norm": 0.049719441682100296,
+ "learning_rate": 0.0006,
+ "loss": 3.8863918781280518,
+ "step": 878
+ },
+ {
+ "epoch": 12.209606986899564,
+ "grad_norm": 0.0482778400182724,
+ "learning_rate": 0.0006,
+ "loss": 3.8418054580688477,
+ "step": 879
+ },
+ {
+ "epoch": 12.2235807860262,
+ "grad_norm": 0.04967353492975235,
+ "learning_rate": 0.0006,
+ "loss": 3.88840389251709,
+ "step": 880
+ },
+ {
+ "epoch": 12.237554585152838,
+ "grad_norm": 0.04709675535559654,
+ "learning_rate": 0.0006,
+ "loss": 3.8831706047058105,
+ "step": 881
+ },
+ {
+ "epoch": 12.251528384279476,
+ "grad_norm": 0.05031110718846321,
+ "learning_rate": 0.0006,
+ "loss": 3.8964877128601074,
+ "step": 882
+ },
+ {
+ "epoch": 12.265502183406113,
+ "grad_norm": 0.04771656170487404,
+ "learning_rate": 0.0006,
+ "loss": 3.902888774871826,
+ "step": 883
+ },
+ {
+ "epoch": 12.279475982532752,
+ "grad_norm": 0.041541457176208496,
+ "learning_rate": 0.0006,
+ "loss": 3.849850654602051,
+ "step": 884
+ },
+ {
+ "epoch": 12.293449781659389,
+ "grad_norm": 0.04055247828364372,
+ "learning_rate": 0.0006,
+ "loss": 3.907242774963379,
+ "step": 885
+ },
+ {
+ "epoch": 12.307423580786025,
+ "grad_norm": 0.0392373651266098,
+ "learning_rate": 0.0006,
+ "loss": 3.882129669189453,
+ "step": 886
+ },
+ {
+ "epoch": 12.321397379912664,
+ "grad_norm": 0.040552686899900436,
+ "learning_rate": 0.0006,
+ "loss": 3.8719077110290527,
+ "step": 887
+ },
+ {
+ "epoch": 12.335371179039301,
+ "grad_norm": 0.03997429832816124,
+ "learning_rate": 0.0006,
+ "loss": 3.8770203590393066,
+ "step": 888
+ },
+ {
+ "epoch": 12.34934497816594,
+ "grad_norm": 0.04006315395236015,
+ "learning_rate": 0.0006,
+ "loss": 3.888833999633789,
+ "step": 889
+ },
+ {
+ "epoch": 12.363318777292577,
+ "grad_norm": 0.04192065820097923,
+ "learning_rate": 0.0006,
+ "loss": 3.9480466842651367,
+ "step": 890
+ },
+ {
+ "epoch": 12.377292576419213,
+ "grad_norm": 0.03901645913720131,
+ "learning_rate": 0.0006,
+ "loss": 3.8987879753112793,
+ "step": 891
+ },
+ {
+ "epoch": 12.391266375545852,
+ "grad_norm": 0.034923430532217026,
+ "learning_rate": 0.0006,
+ "loss": 3.887423515319824,
+ "step": 892
+ },
+ {
+ "epoch": 12.405240174672489,
+ "grad_norm": 0.03397240489721298,
+ "learning_rate": 0.0006,
+ "loss": 3.874734878540039,
+ "step": 893
+ },
+ {
+ "epoch": 12.419213973799126,
+ "grad_norm": 0.03498395159840584,
+ "learning_rate": 0.0006,
+ "loss": 3.8725318908691406,
+ "step": 894
+ },
+ {
+ "epoch": 12.433187772925764,
+ "grad_norm": 0.03299591317772865,
+ "learning_rate": 0.0006,
+ "loss": 3.8542797565460205,
+ "step": 895
+ },
+ {
+ "epoch": 12.447161572052401,
+ "grad_norm": 0.03591961786150932,
+ "learning_rate": 0.0006,
+ "loss": 3.8667421340942383,
+ "step": 896
+ },
+ {
+ "epoch": 12.46113537117904,
+ "grad_norm": 0.032906632870435715,
+ "learning_rate": 0.0006,
+ "loss": 3.802811622619629,
+ "step": 897
+ },
+ {
+ "epoch": 12.475109170305677,
+ "grad_norm": 0.02919355221092701,
+ "learning_rate": 0.0006,
+ "loss": 3.9085006713867188,
+ "step": 898
+ },
+ {
+ "epoch": 12.489082969432314,
+ "grad_norm": 0.02636081911623478,
+ "learning_rate": 0.0006,
+ "loss": 3.876291275024414,
+ "step": 899
+ },
+ {
+ "epoch": 12.503056768558952,
+ "grad_norm": 0.027786940336227417,
+ "learning_rate": 0.0006,
+ "loss": 3.813384532928467,
+ "step": 900
+ },
+ {
+ "epoch": 12.51703056768559,
+ "grad_norm": 0.021504681557416916,
+ "learning_rate": 0.0006,
+ "loss": 3.8531389236450195,
+ "step": 901
+ },
+ {
+ "epoch": 12.531004366812226,
+ "grad_norm": 0.020176850259304047,
+ "learning_rate": 0.0006,
+ "loss": 3.8540682792663574,
+ "step": 902
+ },
+ {
+ "epoch": 12.544978165938865,
+ "grad_norm": 0.018069395795464516,
+ "learning_rate": 0.0006,
+ "loss": 3.8401103019714355,
+ "step": 903
+ },
+ {
+ "epoch": 12.558951965065502,
+ "grad_norm": 0.017131980508565903,
+ "learning_rate": 0.0006,
+ "loss": 3.8590402603149414,
+ "step": 904
+ },
+ {
+ "epoch": 12.57292576419214,
+ "grad_norm": 0.016838181763887405,
+ "learning_rate": 0.0006,
+ "loss": 3.816793441772461,
+ "step": 905
+ },
+ {
+ "epoch": 12.586899563318777,
+ "grad_norm": 0.01688799448311329,
+ "learning_rate": 0.0006,
+ "loss": 3.8501386642456055,
+ "step": 906
+ },
+ {
+ "epoch": 12.600873362445414,
+ "grad_norm": 0.018547389656305313,
+ "learning_rate": 0.0006,
+ "loss": 3.844679355621338,
+ "step": 907
+ },
+ {
+ "epoch": 12.614847161572053,
+ "grad_norm": 0.01693912222981453,
+ "learning_rate": 0.0006,
+ "loss": 3.8392562866210938,
+ "step": 908
+ },
+ {
+ "epoch": 12.62882096069869,
+ "grad_norm": 0.017632123082876205,
+ "learning_rate": 0.0006,
+ "loss": 3.8433165550231934,
+ "step": 909
+ },
+ {
+ "epoch": 12.642794759825328,
+ "grad_norm": 0.017826121300458908,
+ "learning_rate": 0.0006,
+ "loss": 3.880542039871216,
+ "step": 910
+ },
+ {
+ "epoch": 12.656768558951965,
+ "grad_norm": 0.01775546185672283,
+ "learning_rate": 0.0006,
+ "loss": 3.828543186187744,
+ "step": 911
+ },
+ {
+ "epoch": 12.670742358078602,
+ "grad_norm": 0.016220970079302788,
+ "learning_rate": 0.0006,
+ "loss": 3.835036039352417,
+ "step": 912
+ },
+ {
+ "epoch": 12.68471615720524,
+ "grad_norm": 0.015805263072252274,
+ "learning_rate": 0.0006,
+ "loss": 3.860929489135742,
+ "step": 913
+ },
+ {
+ "epoch": 12.698689956331878,
+ "grad_norm": 0.014601027593016624,
+ "learning_rate": 0.0006,
+ "loss": 3.849916934967041,
+ "step": 914
+ },
+ {
+ "epoch": 12.712663755458514,
+ "grad_norm": 0.014955640770494938,
+ "learning_rate": 0.0006,
+ "loss": 3.82222843170166,
+ "step": 915
+ },
+ {
+ "epoch": 12.726637554585153,
+ "grad_norm": 0.01635930687189102,
+ "learning_rate": 0.0006,
+ "loss": 3.8616011142730713,
+ "step": 916
+ },
+ {
+ "epoch": 12.74061135371179,
+ "grad_norm": 0.015701569616794586,
+ "learning_rate": 0.0006,
+ "loss": 3.827305316925049,
+ "step": 917
+ },
+ {
+ "epoch": 12.754585152838429,
+ "grad_norm": 0.014878005720674992,
+ "learning_rate": 0.0006,
+ "loss": 3.8204379081726074,
+ "step": 918
+ },
+ {
+ "epoch": 12.768558951965066,
+ "grad_norm": 0.015863968059420586,
+ "learning_rate": 0.0006,
+ "loss": 3.8282384872436523,
+ "step": 919
+ },
+ {
+ "epoch": 12.782532751091702,
+ "grad_norm": 0.015376720577478409,
+ "learning_rate": 0.0006,
+ "loss": 3.8476157188415527,
+ "step": 920
+ },
+ {
+ "epoch": 12.796506550218341,
+ "grad_norm": 0.015112238936126232,
+ "learning_rate": 0.0006,
+ "loss": 3.814873695373535,
+ "step": 921
+ },
+ {
+ "epoch": 12.810480349344978,
+ "grad_norm": 0.014457261189818382,
+ "learning_rate": 0.0006,
+ "loss": 3.874340295791626,
+ "step": 922
+ },
+ {
+ "epoch": 12.824454148471617,
+ "grad_norm": 0.013799191452562809,
+ "learning_rate": 0.0006,
+ "loss": 3.8461344242095947,
+ "step": 923
+ },
+ {
+ "epoch": 12.838427947598253,
+ "grad_norm": 0.015976861119270325,
+ "learning_rate": 0.0006,
+ "loss": 3.8348283767700195,
+ "step": 924
+ },
+ {
+ "epoch": 12.85240174672489,
+ "grad_norm": 0.016569344326853752,
+ "learning_rate": 0.0006,
+ "loss": 3.8375229835510254,
+ "step": 925
+ },
+ {
+ "epoch": 12.866375545851529,
+ "grad_norm": 0.016443882137537003,
+ "learning_rate": 0.0006,
+ "loss": 3.814178943634033,
+ "step": 926
+ },
+ {
+ "epoch": 12.880349344978166,
+ "grad_norm": 0.01687130145728588,
+ "learning_rate": 0.0006,
+ "loss": 3.7934679985046387,
+ "step": 927
+ },
+ {
+ "epoch": 12.894323144104803,
+ "grad_norm": 0.01750864088535309,
+ "learning_rate": 0.0006,
+ "loss": 3.8297150135040283,
+ "step": 928
+ },
+ {
+ "epoch": 12.908296943231441,
+ "grad_norm": 0.017512314021587372,
+ "learning_rate": 0.0006,
+ "loss": 3.7785584926605225,
+ "step": 929
+ },
+ {
+ "epoch": 12.922270742358078,
+ "grad_norm": 0.01678168773651123,
+ "learning_rate": 0.0006,
+ "loss": 3.8569579124450684,
+ "step": 930
+ },
+ {
+ "epoch": 12.936244541484717,
+ "grad_norm": 0.017443843185901642,
+ "learning_rate": 0.0006,
+ "loss": 3.8003761768341064,
+ "step": 931
+ },
+ {
+ "epoch": 12.950218340611354,
+ "grad_norm": 0.017418883740901947,
+ "learning_rate": 0.0006,
+ "loss": 3.8066251277923584,
+ "step": 932
+ },
+ {
+ "epoch": 12.96419213973799,
+ "grad_norm": 0.01592562161386013,
+ "learning_rate": 0.0006,
+ "loss": 3.8218679428100586,
+ "step": 933
+ },
+ {
+ "epoch": 12.97816593886463,
+ "grad_norm": 0.01742086559534073,
+ "learning_rate": 0.0006,
+ "loss": 3.8229286670684814,
+ "step": 934
+ },
+ {
+ "epoch": 12.992139737991266,
+ "grad_norm": 0.017524391412734985,
+ "learning_rate": 0.0006,
+ "loss": 3.810349941253662,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.019961200654506683,
+ "learning_rate": 0.0006,
+ "loss": 3.8229546546936035,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.08996057510376,
+ "eval_runtime": 49.9041,
+ "eval_samples_per_second": 48.934,
+ "eval_steps_per_second": 1.543,
+ "step": 936
+ },
+ {
+ "epoch": 13.013973799126637,
+ "grad_norm": 0.023570898920297623,
+ "learning_rate": 0.0006,
+ "loss": 3.7133145332336426,
+ "step": 937
+ },
+ {
+ "epoch": 13.027947598253276,
+ "grad_norm": 0.03165869787335396,
+ "learning_rate": 0.0006,
+ "loss": 3.7199676036834717,
+ "step": 938
+ },
+ {
+ "epoch": 13.041921397379912,
+ "grad_norm": 0.03561289608478546,
+ "learning_rate": 0.0006,
+ "loss": 3.7414278984069824,
+ "step": 939
+ },
+ {
+ "epoch": 13.055895196506551,
+ "grad_norm": 0.03167610988020897,
+ "learning_rate": 0.0006,
+ "loss": 3.7263808250427246,
+ "step": 940
+ },
+ {
+ "epoch": 13.069868995633188,
+ "grad_norm": 0.035912878811359406,
+ "learning_rate": 0.0006,
+ "loss": 3.7170684337615967,
+ "step": 941
+ },
+ {
+ "epoch": 13.083842794759825,
+ "grad_norm": 0.03632035478949547,
+ "learning_rate": 0.0006,
+ "loss": 3.750077724456787,
+ "step": 942
+ },
+ {
+ "epoch": 13.097816593886463,
+ "grad_norm": 0.031844258308410645,
+ "learning_rate": 0.0006,
+ "loss": 3.7065911293029785,
+ "step": 943
+ },
+ {
+ "epoch": 13.1117903930131,
+ "grad_norm": 0.03410554304718971,
+ "learning_rate": 0.0006,
+ "loss": 3.739224910736084,
+ "step": 944
+ },
+ {
+ "epoch": 13.125764192139737,
+ "grad_norm": 0.03375937044620514,
+ "learning_rate": 0.0006,
+ "loss": 3.6903367042541504,
+ "step": 945
+ },
+ {
+ "epoch": 13.139737991266376,
+ "grad_norm": 0.03705555200576782,
+ "learning_rate": 0.0006,
+ "loss": 3.778822422027588,
+ "step": 946
+ },
+ {
+ "epoch": 13.153711790393013,
+ "grad_norm": 0.03603963926434517,
+ "learning_rate": 0.0006,
+ "loss": 3.73783802986145,
+ "step": 947
+ },
+ {
+ "epoch": 13.167685589519651,
+ "grad_norm": 0.034089673310518265,
+ "learning_rate": 0.0006,
+ "loss": 3.7886078357696533,
+ "step": 948
+ },
+ {
+ "epoch": 13.181659388646288,
+ "grad_norm": 0.03745635598897934,
+ "learning_rate": 0.0006,
+ "loss": 3.76809024810791,
+ "step": 949
+ },
+ {
+ "epoch": 13.195633187772925,
+ "grad_norm": 0.04209613427519798,
+ "learning_rate": 0.0006,
+ "loss": 3.7813467979431152,
+ "step": 950
+ },
+ {
+ "epoch": 13.209606986899564,
+ "grad_norm": 0.036846764385700226,
+ "learning_rate": 0.0006,
+ "loss": 3.7726383209228516,
+ "step": 951
+ },
+ {
+ "epoch": 13.2235807860262,
+ "grad_norm": 0.036949072033166885,
+ "learning_rate": 0.0006,
+ "loss": 3.7197751998901367,
+ "step": 952
+ },
+ {
+ "epoch": 13.237554585152838,
+ "grad_norm": 0.03458063304424286,
+ "learning_rate": 0.0006,
+ "loss": 3.7695436477661133,
+ "step": 953
+ },
+ {
+ "epoch": 13.251528384279476,
+ "grad_norm": 0.038074951618909836,
+ "learning_rate": 0.0006,
+ "loss": 3.7531425952911377,
+ "step": 954
+ },
+ {
+ "epoch": 13.265502183406113,
+ "grad_norm": 0.03661646693944931,
+ "learning_rate": 0.0006,
+ "loss": 3.767953872680664,
+ "step": 955
+ },
+ {
+ "epoch": 13.279475982532752,
+ "grad_norm": 0.039892520755529404,
+ "learning_rate": 0.0006,
+ "loss": 3.7687599658966064,
+ "step": 956
+ },
+ {
+ "epoch": 13.293449781659389,
+ "grad_norm": 0.036572884768247604,
+ "learning_rate": 0.0006,
+ "loss": 3.7693774700164795,
+ "step": 957
+ },
+ {
+ "epoch": 13.307423580786025,
+ "grad_norm": 0.03855743631720543,
+ "learning_rate": 0.0006,
+ "loss": 3.8233063220977783,
+ "step": 958
+ },
+ {
+ "epoch": 13.321397379912664,
+ "grad_norm": 0.03484344109892845,
+ "learning_rate": 0.0006,
+ "loss": 3.79215669631958,
+ "step": 959
+ },
+ {
+ "epoch": 13.335371179039301,
+ "grad_norm": 0.036101482808589935,
+ "learning_rate": 0.0006,
+ "loss": 3.768373966217041,
+ "step": 960
+ },
+ {
+ "epoch": 13.34934497816594,
+ "grad_norm": 0.03150841221213341,
+ "learning_rate": 0.0006,
+ "loss": 3.7502622604370117,
+ "step": 961
+ },
+ {
+ "epoch": 13.363318777292577,
+ "grad_norm": 0.03154430910944939,
+ "learning_rate": 0.0006,
+ "loss": 3.764416217803955,
+ "step": 962
+ },
+ {
+ "epoch": 13.377292576419213,
+ "grad_norm": 0.03163410350680351,
+ "learning_rate": 0.0006,
+ "loss": 3.757230758666992,
+ "step": 963
+ },
+ {
+ "epoch": 13.391266375545852,
+ "grad_norm": 0.02932742051780224,
+ "learning_rate": 0.0006,
+ "loss": 3.7860183715820312,
+ "step": 964
+ },
+ {
+ "epoch": 13.405240174672489,
+ "grad_norm": 0.025545787066221237,
+ "learning_rate": 0.0006,
+ "loss": 3.748073101043701,
+ "step": 965
+ },
+ {
+ "epoch": 13.419213973799126,
+ "grad_norm": 0.02389710769057274,
+ "learning_rate": 0.0006,
+ "loss": 3.778963565826416,
+ "step": 966
+ },
+ {
+ "epoch": 13.433187772925764,
+ "grad_norm": 0.023781558498740196,
+ "learning_rate": 0.0006,
+ "loss": 3.7151870727539062,
+ "step": 967
+ },
+ {
+ "epoch": 13.447161572052401,
+ "grad_norm": 0.023273715749382973,
+ "learning_rate": 0.0006,
+ "loss": 3.766374111175537,
+ "step": 968
+ },
+ {
+ "epoch": 13.46113537117904,
+ "grad_norm": 0.023059967905282974,
+ "learning_rate": 0.0006,
+ "loss": 3.783663749694824,
+ "step": 969
+ },
+ {
+ "epoch": 13.475109170305677,
+ "grad_norm": 0.020438550040125847,
+ "learning_rate": 0.0006,
+ "loss": 3.755140781402588,
+ "step": 970
+ },
+ {
+ "epoch": 13.489082969432314,
+ "grad_norm": 0.019272785633802414,
+ "learning_rate": 0.0006,
+ "loss": 3.741131544113159,
+ "step": 971
+ },
+ {
+ "epoch": 13.503056768558952,
+ "grad_norm": 0.017616258934140205,
+ "learning_rate": 0.0006,
+ "loss": 3.7395365238189697,
+ "step": 972
+ },
+ {
+ "epoch": 13.51703056768559,
+ "grad_norm": 0.017435181885957718,
+ "learning_rate": 0.0006,
+ "loss": 3.7755181789398193,
+ "step": 973
+ },
+ {
+ "epoch": 13.531004366812226,
+ "grad_norm": 0.01710323616862297,
+ "learning_rate": 0.0006,
+ "loss": 3.7158422470092773,
+ "step": 974
+ },
+ {
+ "epoch": 13.544978165938865,
+ "grad_norm": 0.016912570223212242,
+ "learning_rate": 0.0006,
+ "loss": 3.727623462677002,
+ "step": 975
+ },
+ {
+ "epoch": 13.558951965065502,
+ "grad_norm": 0.0181113388389349,
+ "learning_rate": 0.0006,
+ "loss": 3.771268367767334,
+ "step": 976
+ },
+ {
+ "epoch": 13.57292576419214,
+ "grad_norm": 0.018880970776081085,
+ "learning_rate": 0.0006,
+ "loss": 3.7602953910827637,
+ "step": 977
+ },
+ {
+ "epoch": 13.586899563318777,
+ "grad_norm": 0.019182899966835976,
+ "learning_rate": 0.0006,
+ "loss": 3.7339329719543457,
+ "step": 978
+ },
+ {
+ "epoch": 13.600873362445414,
+ "grad_norm": 0.02025751583278179,
+ "learning_rate": 0.0006,
+ "loss": 3.7562665939331055,
+ "step": 979
+ },
+ {
+ "epoch": 13.614847161572053,
+ "grad_norm": 0.01820831373333931,
+ "learning_rate": 0.0006,
+ "loss": 3.725492477416992,
+ "step": 980
+ },
+ {
+ "epoch": 13.62882096069869,
+ "grad_norm": 0.017619458958506584,
+ "learning_rate": 0.0006,
+ "loss": 3.714106798171997,
+ "step": 981
+ },
+ {
+ "epoch": 13.642794759825328,
+ "grad_norm": 0.016764821484684944,
+ "learning_rate": 0.0006,
+ "loss": 3.7665224075317383,
+ "step": 982
+ },
+ {
+ "epoch": 13.656768558951965,
+ "grad_norm": 0.016131598502397537,
+ "learning_rate": 0.0006,
+ "loss": 3.779419422149658,
+ "step": 983
+ },
+ {
+ "epoch": 13.670742358078602,
+ "grad_norm": 0.01535084005445242,
+ "learning_rate": 0.0006,
+ "loss": 3.7591190338134766,
+ "step": 984
+ },
+ {
+ "epoch": 13.68471615720524,
+ "grad_norm": 0.016390377655625343,
+ "learning_rate": 0.0006,
+ "loss": 3.7544782161712646,
+ "step": 985
+ },
+ {
+ "epoch": 13.698689956331878,
+ "grad_norm": 0.016028346493840218,
+ "learning_rate": 0.0006,
+ "loss": 3.772927761077881,
+ "step": 986
+ },
+ {
+ "epoch": 13.712663755458514,
+ "grad_norm": 0.015925439074635506,
+ "learning_rate": 0.0006,
+ "loss": 3.7092344760894775,
+ "step": 987
+ },
+ {
+ "epoch": 13.726637554585153,
+ "grad_norm": 0.016125058755278587,
+ "learning_rate": 0.0006,
+ "loss": 3.7528953552246094,
+ "step": 988
+ },
+ {
+ "epoch": 13.74061135371179,
+ "grad_norm": 0.015887845307588577,
+ "learning_rate": 0.0006,
+ "loss": 3.744354248046875,
+ "step": 989
+ },
+ {
+ "epoch": 13.754585152838429,
+ "grad_norm": 0.015301455743610859,
+ "learning_rate": 0.0006,
+ "loss": 3.743435859680176,
+ "step": 990
+ },
+ {
+ "epoch": 13.768558951965066,
+ "grad_norm": 0.014814727008342743,
+ "learning_rate": 0.0006,
+ "loss": 3.7351980209350586,
+ "step": 991
+ },
+ {
+ "epoch": 13.782532751091702,
+ "grad_norm": 0.01479976624250412,
+ "learning_rate": 0.0006,
+ "loss": 3.722226619720459,
+ "step": 992
+ },
+ {
+ "epoch": 13.796506550218341,
+ "grad_norm": 0.016558295115828514,
+ "learning_rate": 0.0006,
+ "loss": 3.717442512512207,
+ "step": 993
+ },
+ {
+ "epoch": 13.810480349344978,
+ "grad_norm": 0.01635979674756527,
+ "learning_rate": 0.0006,
+ "loss": 3.707097053527832,
+ "step": 994
+ },
+ {
+ "epoch": 13.824454148471617,
+ "grad_norm": 0.014870786108076572,
+ "learning_rate": 0.0006,
+ "loss": 3.768139362335205,
+ "step": 995
+ },
+ {
+ "epoch": 13.838427947598253,
+ "grad_norm": 0.014958183281123638,
+ "learning_rate": 0.0006,
+ "loss": 3.722902774810791,
+ "step": 996
+ },
+ {
+ "epoch": 13.85240174672489,
+ "grad_norm": 0.015501127578318119,
+ "learning_rate": 0.0006,
+ "loss": 3.7323732376098633,
+ "step": 997
+ },
+ {
+ "epoch": 13.866375545851529,
+ "grad_norm": 0.015276075340807438,
+ "learning_rate": 0.0006,
+ "loss": 3.734039783477783,
+ "step": 998
+ },
+ {
+ "epoch": 13.880349344978166,
+ "grad_norm": 0.01742061786353588,
+ "learning_rate": 0.0006,
+ "loss": 3.737147331237793,
+ "step": 999
+ },
+ {
+ "epoch": 13.894323144104803,
+ "grad_norm": 0.016311734914779663,
+ "learning_rate": 0.0006,
+ "loss": 3.7114202976226807,
+ "step": 1000
+ },
+ {
+ "epoch": 13.908296943231441,
+ "grad_norm": 0.017144575715065002,
+ "learning_rate": 0.0006,
+ "loss": 3.734762191772461,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922270742358078,
+ "grad_norm": 0.016401860862970352,
+ "learning_rate": 0.0006,
+ "loss": 3.753246784210205,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936244541484717,
+ "grad_norm": 0.015357336029410362,
+ "learning_rate": 0.0006,
+ "loss": 3.7216477394104004,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950218340611354,
+ "grad_norm": 0.016586005687713623,
+ "learning_rate": 0.0006,
+ "loss": 3.793790102005005,
+ "step": 1004
+ },
+ {
+ "epoch": 13.96419213973799,
+ "grad_norm": 0.015338776633143425,
+ "learning_rate": 0.0006,
+ "loss": 3.711658000946045,
+ "step": 1005
+ },
+ {
+ "epoch": 13.97816593886463,
+ "grad_norm": 0.017011435702443123,
+ "learning_rate": 0.0006,
+ "loss": 3.752537727355957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992139737991266,
+ "grad_norm": 0.017308345064520836,
+ "learning_rate": 0.0006,
+ "loss": 3.7391486167907715,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.01815737411379814,
+ "learning_rate": 0.0006,
+ "loss": 3.7011828422546387,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.046541690826416,
+ "eval_runtime": 54.3615,
+ "eval_samples_per_second": 44.922,
+ "eval_steps_per_second": 1.416,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013973799126637,
+ "grad_norm": 0.01765853725373745,
+ "learning_rate": 0.0006,
+ "loss": 3.6156458854675293,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027947598253276,
+ "grad_norm": 0.02285143919289112,
+ "learning_rate": 0.0006,
+ "loss": 3.6625490188598633,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041921397379912,
+ "grad_norm": 0.02511940896511078,
+ "learning_rate": 0.0006,
+ "loss": 3.619877815246582,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055895196506551,
+ "grad_norm": 0.02781127765774727,
+ "learning_rate": 0.0006,
+ "loss": 3.676270008087158,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069868995633188,
+ "grad_norm": 0.027363400906324387,
+ "learning_rate": 0.0006,
+ "loss": 3.64404034614563,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083842794759825,
+ "grad_norm": 0.02478782832622528,
+ "learning_rate": 0.0006,
+ "loss": 3.6325106620788574,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097816593886463,
+ "grad_norm": 0.02767058275640011,
+ "learning_rate": 0.0006,
+ "loss": 3.65087890625,
+ "step": 1015
+ },
+ {
+ "epoch": 14.1117903930131,
+ "grad_norm": 0.026782231405377388,
+ "learning_rate": 0.0006,
+ "loss": 3.6227691173553467,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125764192139737,
+ "grad_norm": 0.02921525575220585,
+ "learning_rate": 0.0006,
+ "loss": 3.5829410552978516,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139737991266376,
+ "grad_norm": 0.029077231884002686,
+ "learning_rate": 0.0006,
+ "loss": 3.645134687423706,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153711790393013,
+ "grad_norm": 0.0327303521335125,
+ "learning_rate": 0.0006,
+ "loss": 3.629804849624634,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167685589519651,
+ "grad_norm": 0.035763293504714966,
+ "learning_rate": 0.0006,
+ "loss": 3.6261279582977295,
+ "step": 1020
+ },
+ {
+ "epoch": 14.181659388646288,
+ "grad_norm": 0.03943935036659241,
+ "learning_rate": 0.0006,
+ "loss": 3.6591973304748535,
+ "step": 1021
+ },
+ {
+ "epoch": 14.195633187772925,
+ "grad_norm": 0.03753122314810753,
+ "learning_rate": 0.0006,
+ "loss": 3.6450369358062744,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209606986899564,
+ "grad_norm": 0.04103509336709976,
+ "learning_rate": 0.0006,
+ "loss": 3.6689958572387695,
+ "step": 1023
+ },
+ {
+ "epoch": 14.2235807860262,
+ "grad_norm": 0.04133584722876549,
+ "learning_rate": 0.0006,
+ "loss": 3.6584630012512207,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237554585152838,
+ "grad_norm": 0.04211857542395592,
+ "learning_rate": 0.0006,
+ "loss": 3.6606225967407227,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251528384279476,
+ "grad_norm": 0.038261570036411285,
+ "learning_rate": 0.0006,
+ "loss": 3.667980194091797,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265502183406113,
+ "grad_norm": 0.03518976271152496,
+ "learning_rate": 0.0006,
+ "loss": 3.6699838638305664,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279475982532752,
+ "grad_norm": 0.03253129869699478,
+ "learning_rate": 0.0006,
+ "loss": 3.636895179748535,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293449781659389,
+ "grad_norm": 0.031595997512340546,
+ "learning_rate": 0.0006,
+ "loss": 3.632096290588379,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307423580786025,
+ "grad_norm": 0.03253999352455139,
+ "learning_rate": 0.0006,
+ "loss": 3.6577043533325195,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321397379912664,
+ "grad_norm": 0.034704145044088364,
+ "learning_rate": 0.0006,
+ "loss": 3.703457832336426,
+ "step": 1031
+ },
+ {
+ "epoch": 14.335371179039301,
+ "grad_norm": 0.03362954035401344,
+ "learning_rate": 0.0006,
+ "loss": 3.6303958892822266,
+ "step": 1032
+ },
+ {
+ "epoch": 14.34934497816594,
+ "grad_norm": 0.02985706552863121,
+ "learning_rate": 0.0006,
+ "loss": 3.669577121734619,
+ "step": 1033
+ },
+ {
+ "epoch": 14.363318777292577,
+ "grad_norm": 0.028826212510466576,
+ "learning_rate": 0.0006,
+ "loss": 3.6573240756988525,
+ "step": 1034
+ },
+ {
+ "epoch": 14.377292576419213,
+ "grad_norm": 0.025705639272928238,
+ "learning_rate": 0.0006,
+ "loss": 3.695673942565918,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391266375545852,
+ "grad_norm": 0.02392077073454857,
+ "learning_rate": 0.0006,
+ "loss": 3.699263095855713,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405240174672489,
+ "grad_norm": 0.02234474942088127,
+ "learning_rate": 0.0006,
+ "loss": 3.666858196258545,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419213973799126,
+ "grad_norm": 0.021519573405385017,
+ "learning_rate": 0.0006,
+ "loss": 3.6542158126831055,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433187772925764,
+ "grad_norm": 0.019302112981677055,
+ "learning_rate": 0.0006,
+ "loss": 3.672900676727295,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447161572052401,
+ "grad_norm": 0.01938394270837307,
+ "learning_rate": 0.0006,
+ "loss": 3.6841869354248047,
+ "step": 1040
+ },
+ {
+ "epoch": 14.46113537117904,
+ "grad_norm": 0.01918088085949421,
+ "learning_rate": 0.0006,
+ "loss": 3.6915340423583984,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475109170305677,
+ "grad_norm": 0.019382303580641747,
+ "learning_rate": 0.0006,
+ "loss": 3.696239471435547,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489082969432314,
+ "grad_norm": 0.0190880224108696,
+ "learning_rate": 0.0006,
+ "loss": 3.686777114868164,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503056768558952,
+ "grad_norm": 0.019921699538826942,
+ "learning_rate": 0.0006,
+ "loss": 3.596571207046509,
+ "step": 1044
+ },
+ {
+ "epoch": 14.51703056768559,
+ "grad_norm": 0.019849983975291252,
+ "learning_rate": 0.0006,
+ "loss": 3.6621527671813965,
+ "step": 1045
+ },
+ {
+ "epoch": 14.531004366812226,
+ "grad_norm": 0.01987219788134098,
+ "learning_rate": 0.0006,
+ "loss": 3.6440532207489014,
+ "step": 1046
+ },
+ {
+ "epoch": 14.544978165938865,
+ "grad_norm": 0.019135860726237297,
+ "learning_rate": 0.0006,
+ "loss": 3.663760185241699,
+ "step": 1047
+ },
+ {
+ "epoch": 14.558951965065502,
+ "grad_norm": 0.019754081964492798,
+ "learning_rate": 0.0006,
+ "loss": 3.692115306854248,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57292576419214,
+ "grad_norm": 0.017559237778186798,
+ "learning_rate": 0.0006,
+ "loss": 3.6560468673706055,
+ "step": 1049
+ },
+ {
+ "epoch": 14.586899563318777,
+ "grad_norm": 0.018740499392151833,
+ "learning_rate": 0.0006,
+ "loss": 3.678459405899048,
+ "step": 1050
+ },
+ {
+ "epoch": 14.600873362445414,
+ "grad_norm": 0.020979298278689384,
+ "learning_rate": 0.0006,
+ "loss": 3.6760807037353516,
+ "step": 1051
+ },
+ {
+ "epoch": 14.614847161572053,
+ "grad_norm": 0.024136187508702278,
+ "learning_rate": 0.0006,
+ "loss": 3.6586780548095703,
+ "step": 1052
+ },
+ {
+ "epoch": 14.62882096069869,
+ "grad_norm": 0.022492283955216408,
+ "learning_rate": 0.0006,
+ "loss": 3.6521711349487305,
+ "step": 1053
+ },
+ {
+ "epoch": 14.642794759825328,
+ "grad_norm": 0.022067412734031677,
+ "learning_rate": 0.0006,
+ "loss": 3.6784937381744385,
+ "step": 1054
+ },
+ {
+ "epoch": 14.656768558951965,
+ "grad_norm": 0.019800225272774696,
+ "learning_rate": 0.0006,
+ "loss": 3.6375701427459717,
+ "step": 1055
+ },
+ {
+ "epoch": 14.670742358078602,
+ "grad_norm": 0.018210966140031815,
+ "learning_rate": 0.0006,
+ "loss": 3.6653239727020264,
+ "step": 1056
+ },
+ {
+ "epoch": 14.68471615720524,
+ "grad_norm": 0.018579861149191856,
+ "learning_rate": 0.0006,
+ "loss": 3.718411922454834,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698689956331878,
+ "grad_norm": 0.016911206766963005,
+ "learning_rate": 0.0006,
+ "loss": 3.6463894844055176,
+ "step": 1058
+ },
+ {
+ "epoch": 14.712663755458514,
+ "grad_norm": 0.016846856102347374,
+ "learning_rate": 0.0006,
+ "loss": 3.672767162322998,
+ "step": 1059
+ },
+ {
+ "epoch": 14.726637554585153,
+ "grad_norm": 0.0170889999717474,
+ "learning_rate": 0.0006,
+ "loss": 3.6862080097198486,
+ "step": 1060
+ },
+ {
+ "epoch": 14.74061135371179,
+ "grad_norm": 0.016432611271739006,
+ "learning_rate": 0.0006,
+ "loss": 3.656050682067871,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754585152838429,
+ "grad_norm": 0.016253121197223663,
+ "learning_rate": 0.0006,
+ "loss": 3.6118998527526855,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768558951965066,
+ "grad_norm": 0.016804836690425873,
+ "learning_rate": 0.0006,
+ "loss": 3.6646556854248047,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782532751091702,
+ "grad_norm": 0.016385341063141823,
+ "learning_rate": 0.0006,
+ "loss": 3.6862335205078125,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796506550218341,
+ "grad_norm": 0.016926517710089684,
+ "learning_rate": 0.0006,
+ "loss": 3.675138473510742,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810480349344978,
+ "grad_norm": 0.018508978188037872,
+ "learning_rate": 0.0006,
+ "loss": 3.7009687423706055,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824454148471617,
+ "grad_norm": 0.018666446208953857,
+ "learning_rate": 0.0006,
+ "loss": 3.636359214782715,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838427947598253,
+ "grad_norm": 0.019378433004021645,
+ "learning_rate": 0.0006,
+ "loss": 3.665518283843994,
+ "step": 1068
+ },
+ {
+ "epoch": 14.85240174672489,
+ "grad_norm": 0.02128547430038452,
+ "learning_rate": 0.0006,
+ "loss": 3.7005434036254883,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866375545851529,
+ "grad_norm": 0.02191224694252014,
+ "learning_rate": 0.0006,
+ "loss": 3.6584267616271973,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880349344978166,
+ "grad_norm": 0.019272804260253906,
+ "learning_rate": 0.0006,
+ "loss": 3.673880100250244,
+ "step": 1071
+ },
+ {
+ "epoch": 14.894323144104803,
+ "grad_norm": 0.018591508269309998,
+ "learning_rate": 0.0006,
+ "loss": 3.680145025253296,
+ "step": 1072
+ },
+ {
+ "epoch": 14.908296943231441,
+ "grad_norm": 0.019954141229391098,
+ "learning_rate": 0.0006,
+ "loss": 3.659092903137207,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922270742358078,
+ "grad_norm": 0.019956151023507118,
+ "learning_rate": 0.0006,
+ "loss": 3.680950164794922,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936244541484717,
+ "grad_norm": 0.0198400616645813,
+ "learning_rate": 0.0006,
+ "loss": 3.665740728378296,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950218340611354,
+ "grad_norm": 0.018525801599025726,
+ "learning_rate": 0.0006,
+ "loss": 3.695254325866699,
+ "step": 1076
+ },
+ {
+ "epoch": 14.96419213973799,
+ "grad_norm": 0.019410012289881706,
+ "learning_rate": 0.0006,
+ "loss": 3.637185573577881,
+ "step": 1077
+ },
+ {
+ "epoch": 14.97816593886463,
+ "grad_norm": 0.01842549443244934,
+ "learning_rate": 0.0006,
+ "loss": 3.6925792694091797,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992139737991266,
+ "grad_norm": 0.018512850627303123,
+ "learning_rate": 0.0006,
+ "loss": 3.6421403884887695,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.019783539697527885,
+ "learning_rate": 0.0006,
+ "loss": 3.669989824295044,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.0208282470703125,
+ "eval_runtime": 50.0946,
+ "eval_samples_per_second": 48.748,
+ "eval_steps_per_second": 1.537,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013973799126637,
+ "grad_norm": 0.02009645849466324,
+ "learning_rate": 0.0006,
+ "loss": 3.5637366771698,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027947598253276,
+ "grad_norm": 0.02333172969520092,
+ "learning_rate": 0.0006,
+ "loss": 3.5258095264434814,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041921397379912,
+ "grad_norm": 0.027971796691417694,
+ "learning_rate": 0.0006,
+ "loss": 3.552365779876709,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055895196506551,
+ "grad_norm": 0.03144870325922966,
+ "learning_rate": 0.0006,
+ "loss": 3.570685863494873,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069868995633188,
+ "grad_norm": 0.03174359351396561,
+ "learning_rate": 0.0006,
+ "loss": 3.557307720184326,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083842794759825,
+ "grad_norm": 0.0314076766371727,
+ "learning_rate": 0.0006,
+ "loss": 3.5835516452789307,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097816593886463,
+ "grad_norm": 0.02998494543135166,
+ "learning_rate": 0.0006,
+ "loss": 3.564689874649048,
+ "step": 1087
+ },
+ {
+ "epoch": 15.1117903930131,
+ "grad_norm": 0.027682173997163773,
+ "learning_rate": 0.0006,
+ "loss": 3.5372314453125,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125764192139737,
+ "grad_norm": 0.029720479622483253,
+ "learning_rate": 0.0006,
+ "loss": 3.5263895988464355,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139737991266376,
+ "grad_norm": 0.03526446595788002,
+ "learning_rate": 0.0006,
+ "loss": 3.5656511783599854,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153711790393013,
+ "grad_norm": 0.03473281115293503,
+ "learning_rate": 0.0006,
+ "loss": 3.5796432495117188,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167685589519651,
+ "grad_norm": 0.034728601574897766,
+ "learning_rate": 0.0006,
+ "loss": 3.5634264945983887,
+ "step": 1092
+ },
+ {
+ "epoch": 15.181659388646288,
+ "grad_norm": 0.03513004630804062,
+ "learning_rate": 0.0006,
+ "loss": 3.587097644805908,
+ "step": 1093
+ },
+ {
+ "epoch": 15.195633187772925,
+ "grad_norm": 0.03495538607239723,
+ "learning_rate": 0.0006,
+ "loss": 3.588749885559082,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209606986899564,
+ "grad_norm": 0.03559393063187599,
+ "learning_rate": 0.0006,
+ "loss": 3.588261604309082,
+ "step": 1095
+ },
+ {
+ "epoch": 15.2235807860262,
+ "grad_norm": 0.04117827117443085,
+ "learning_rate": 0.0006,
+ "loss": 3.5925493240356445,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237554585152838,
+ "grad_norm": 0.03481105715036392,
+ "learning_rate": 0.0006,
+ "loss": 3.609713077545166,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251528384279476,
+ "grad_norm": 0.03399660810828209,
+ "learning_rate": 0.0006,
+ "loss": 3.6001386642456055,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265502183406113,
+ "grad_norm": 0.037158723920583725,
+ "learning_rate": 0.0006,
+ "loss": 3.5907320976257324,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279475982532752,
+ "grad_norm": 0.03714929521083832,
+ "learning_rate": 0.0006,
+ "loss": 3.620131015777588,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293449781659389,
+ "grad_norm": 0.03506772965192795,
+ "learning_rate": 0.0006,
+ "loss": 3.5833165645599365,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307423580786025,
+ "grad_norm": 0.03335156291723251,
+ "learning_rate": 0.0006,
+ "loss": 3.588583469390869,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321397379912664,
+ "grad_norm": 0.03749598562717438,
+ "learning_rate": 0.0006,
+ "loss": 3.5726234912872314,
+ "step": 1103
+ },
+ {
+ "epoch": 15.335371179039301,
+ "grad_norm": 0.033490296453237534,
+ "learning_rate": 0.0006,
+ "loss": 3.609440326690674,
+ "step": 1104
+ },
+ {
+ "epoch": 15.34934497816594,
+ "grad_norm": 0.02744245156645775,
+ "learning_rate": 0.0006,
+ "loss": 3.5969347953796387,
+ "step": 1105
+ },
+ {
+ "epoch": 15.363318777292577,
+ "grad_norm": 0.025563672184944153,
+ "learning_rate": 0.0006,
+ "loss": 3.6081204414367676,
+ "step": 1106
+ },
+ {
+ "epoch": 15.377292576419213,
+ "grad_norm": 0.02479025535285473,
+ "learning_rate": 0.0006,
+ "loss": 3.569492816925049,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391266375545852,
+ "grad_norm": 0.022969363257288933,
+ "learning_rate": 0.0006,
+ "loss": 3.5940051078796387,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405240174672489,
+ "grad_norm": 0.0211333017796278,
+ "learning_rate": 0.0006,
+ "loss": 3.6032228469848633,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419213973799126,
+ "grad_norm": 0.023232776671648026,
+ "learning_rate": 0.0006,
+ "loss": 3.597538471221924,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433187772925764,
+ "grad_norm": 0.02560894563794136,
+ "learning_rate": 0.0006,
+ "loss": 3.6099822521209717,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447161572052401,
+ "grad_norm": 0.028530243784189224,
+ "learning_rate": 0.0006,
+ "loss": 3.6099116802215576,
+ "step": 1112
+ },
+ {
+ "epoch": 15.46113537117904,
+ "grad_norm": 0.024349553510546684,
+ "learning_rate": 0.0006,
+ "loss": 3.596257448196411,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475109170305677,
+ "grad_norm": 0.025264214724302292,
+ "learning_rate": 0.0006,
+ "loss": 3.58459210395813,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489082969432314,
+ "grad_norm": 0.024628883227705956,
+ "learning_rate": 0.0006,
+ "loss": 3.5940113067626953,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503056768558952,
+ "grad_norm": 0.02550858072936535,
+ "learning_rate": 0.0006,
+ "loss": 3.6039438247680664,
+ "step": 1116
+ },
+ {
+ "epoch": 15.51703056768559,
+ "grad_norm": 0.02455618977546692,
+ "learning_rate": 0.0006,
+ "loss": 3.582425594329834,
+ "step": 1117
+ },
+ {
+ "epoch": 15.531004366812226,
+ "grad_norm": 0.023190757259726524,
+ "learning_rate": 0.0006,
+ "loss": 3.5945615768432617,
+ "step": 1118
+ },
+ {
+ "epoch": 15.544978165938865,
+ "grad_norm": 0.025178825482726097,
+ "learning_rate": 0.0006,
+ "loss": 3.6276583671569824,
+ "step": 1119
+ },
+ {
+ "epoch": 15.558951965065502,
+ "grad_norm": 0.027304047718644142,
+ "learning_rate": 0.0006,
+ "loss": 3.591130018234253,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57292576419214,
+ "grad_norm": 0.02635739929974079,
+ "learning_rate": 0.0006,
+ "loss": 3.626152992248535,
+ "step": 1121
+ },
+ {
+ "epoch": 15.586899563318777,
+ "grad_norm": 0.023574283346533775,
+ "learning_rate": 0.0006,
+ "loss": 3.5790467262268066,
+ "step": 1122
+ },
+ {
+ "epoch": 15.600873362445414,
+ "grad_norm": 0.02167615108191967,
+ "learning_rate": 0.0006,
+ "loss": 3.5816423892974854,
+ "step": 1123
+ },
+ {
+ "epoch": 15.614847161572053,
+ "grad_norm": 0.020352814346551895,
+ "learning_rate": 0.0006,
+ "loss": 3.5963048934936523,
+ "step": 1124
+ },
+ {
+ "epoch": 15.62882096069869,
+ "grad_norm": 0.022047650068998337,
+ "learning_rate": 0.0006,
+ "loss": 3.5933878421783447,
+ "step": 1125
+ },
+ {
+ "epoch": 15.642794759825328,
+ "grad_norm": 0.022744329646229744,
+ "learning_rate": 0.0006,
+ "loss": 3.5755128860473633,
+ "step": 1126
+ },
+ {
+ "epoch": 15.656768558951965,
+ "grad_norm": 0.020325182005763054,
+ "learning_rate": 0.0006,
+ "loss": 3.5617265701293945,
+ "step": 1127
+ },
+ {
+ "epoch": 15.670742358078602,
+ "grad_norm": 0.021056298166513443,
+ "learning_rate": 0.0006,
+ "loss": 3.5767688751220703,
+ "step": 1128
+ },
+ {
+ "epoch": 15.68471615720524,
+ "grad_norm": 0.019120410084724426,
+ "learning_rate": 0.0006,
+ "loss": 3.5909035205841064,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698689956331878,
+ "grad_norm": 0.01864859275519848,
+ "learning_rate": 0.0006,
+ "loss": 3.586052417755127,
+ "step": 1130
+ },
+ {
+ "epoch": 15.712663755458514,
+ "grad_norm": 0.017953047528862953,
+ "learning_rate": 0.0006,
+ "loss": 3.5801734924316406,
+ "step": 1131
+ },
+ {
+ "epoch": 15.726637554585153,
+ "grad_norm": 0.019331611692905426,
+ "learning_rate": 0.0006,
+ "loss": 3.5663723945617676,
+ "step": 1132
+ },
+ {
+ "epoch": 15.74061135371179,
+ "grad_norm": 0.018863828852772713,
+ "learning_rate": 0.0006,
+ "loss": 3.5982472896575928,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754585152838429,
+ "grad_norm": 0.01941121369600296,
+ "learning_rate": 0.0006,
+ "loss": 3.586141586303711,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768558951965066,
+ "grad_norm": 0.0202215276658535,
+ "learning_rate": 0.0006,
+ "loss": 3.603093385696411,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782532751091702,
+ "grad_norm": 0.02065861038863659,
+ "learning_rate": 0.0006,
+ "loss": 3.6258344650268555,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796506550218341,
+ "grad_norm": 0.019885104149580002,
+ "learning_rate": 0.0006,
+ "loss": 3.5961670875549316,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810480349344978,
+ "grad_norm": 0.019395584240555763,
+ "learning_rate": 0.0006,
+ "loss": 3.6085386276245117,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824454148471617,
+ "grad_norm": 0.02079256810247898,
+ "learning_rate": 0.0006,
+ "loss": 3.5907459259033203,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838427947598253,
+ "grad_norm": 0.021177049726247787,
+ "learning_rate": 0.0006,
+ "loss": 3.6031875610351562,
+ "step": 1140
+ },
+ {
+ "epoch": 15.85240174672489,
+ "grad_norm": 0.01875251717865467,
+ "learning_rate": 0.0006,
+ "loss": 3.5799269676208496,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866375545851529,
+ "grad_norm": 0.018393032252788544,
+ "learning_rate": 0.0006,
+ "loss": 3.589036464691162,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880349344978166,
+ "grad_norm": 0.017482910305261612,
+ "learning_rate": 0.0006,
+ "loss": 3.57010555267334,
+ "step": 1143
+ },
+ {
+ "epoch": 15.894323144104803,
+ "grad_norm": 0.017565404996275902,
+ "learning_rate": 0.0006,
+ "loss": 3.586590051651001,
+ "step": 1144
+ },
+ {
+ "epoch": 15.908296943231441,
+ "grad_norm": 0.018097810447216034,
+ "learning_rate": 0.0006,
+ "loss": 3.60231876373291,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922270742358078,
+ "grad_norm": 0.01748323254287243,
+ "learning_rate": 0.0006,
+ "loss": 3.605266571044922,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936244541484717,
+ "grad_norm": 0.017633914947509766,
+ "learning_rate": 0.0006,
+ "loss": 3.57650089263916,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950218340611354,
+ "grad_norm": 0.017630109563469887,
+ "learning_rate": 0.0006,
+ "loss": 3.599179744720459,
+ "step": 1148
+ },
+ {
+ "epoch": 15.96419213973799,
+ "grad_norm": 0.017756082117557526,
+ "learning_rate": 0.0006,
+ "loss": 3.610539436340332,
+ "step": 1149
+ },
+ {
+ "epoch": 15.97816593886463,
+ "grad_norm": 0.017975619062781334,
+ "learning_rate": 0.0006,
+ "loss": 3.5654094219207764,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992139737991266,
+ "grad_norm": 0.01672595739364624,
+ "learning_rate": 0.0006,
+ "loss": 3.5157313346862793,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.018963614478707314,
+ "learning_rate": 0.0006,
+ "loss": 3.5679218769073486,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.002192497253418,
+ "eval_runtime": 54.7074,
+ "eval_samples_per_second": 44.638,
+ "eval_steps_per_second": 1.407,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397379912664,
+ "grad_norm": 0.019997047260403633,
+ "learning_rate": 0.0006,
+ "loss": 3.4640445709228516,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027947598253274,
+ "grad_norm": 0.02668819949030876,
+ "learning_rate": 0.0006,
+ "loss": 3.4792230129241943,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041921397379912,
+ "grad_norm": 0.03133378177881241,
+ "learning_rate": 0.0006,
+ "loss": 3.445514678955078,
+ "step": 1155
+ },
+ {
+ "epoch": 16.05589519650655,
+ "grad_norm": 0.0333341620862484,
+ "learning_rate": 0.0006,
+ "loss": 3.4823379516601562,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069868995633186,
+ "grad_norm": 0.033309273421764374,
+ "learning_rate": 0.0006,
+ "loss": 3.5140066146850586,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083842794759825,
+ "grad_norm": 0.03211270272731781,
+ "learning_rate": 0.0006,
+ "loss": 3.4474544525146484,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097816593886463,
+ "grad_norm": 0.030286215245723724,
+ "learning_rate": 0.0006,
+ "loss": 3.4566705226898193,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111790393013102,
+ "grad_norm": 0.034668438136577606,
+ "learning_rate": 0.0006,
+ "loss": 3.464046001434326,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125764192139737,
+ "grad_norm": 0.03580283746123314,
+ "learning_rate": 0.0006,
+ "loss": 3.483121871948242,
+ "step": 1161
+ },
+ {
+ "epoch": 16.139737991266376,
+ "grad_norm": 0.03359296917915344,
+ "learning_rate": 0.0006,
+ "loss": 3.477879524230957,
+ "step": 1162
+ },
+ {
+ "epoch": 16.153711790393015,
+ "grad_norm": 0.03444180637598038,
+ "learning_rate": 0.0006,
+ "loss": 3.513066053390503,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16768558951965,
+ "grad_norm": 0.034195005893707275,
+ "learning_rate": 0.0006,
+ "loss": 3.4954705238342285,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18165938864629,
+ "grad_norm": 0.03186183422803879,
+ "learning_rate": 0.0006,
+ "loss": 3.5126149654388428,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195633187772927,
+ "grad_norm": 0.03474068269133568,
+ "learning_rate": 0.0006,
+ "loss": 3.4613423347473145,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209606986899562,
+ "grad_norm": 0.03117581456899643,
+ "learning_rate": 0.0006,
+ "loss": 3.5202698707580566,
+ "step": 1167
+ },
+ {
+ "epoch": 16.2235807860262,
+ "grad_norm": 0.030044663697481155,
+ "learning_rate": 0.0006,
+ "loss": 3.4795448780059814,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23755458515284,
+ "grad_norm": 0.03448783978819847,
+ "learning_rate": 0.0006,
+ "loss": 3.4979453086853027,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251528384279474,
+ "grad_norm": 0.040600501000881195,
+ "learning_rate": 0.0006,
+ "loss": 3.5161967277526855,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265502183406113,
+ "grad_norm": 0.041196491569280624,
+ "learning_rate": 0.0006,
+ "loss": 3.5099880695343018,
+ "step": 1171
+ },
+ {
+ "epoch": 16.27947598253275,
+ "grad_norm": 0.0403696708381176,
+ "learning_rate": 0.0006,
+ "loss": 3.515664577484131,
+ "step": 1172
+ },
+ {
+ "epoch": 16.29344978165939,
+ "grad_norm": 0.0369957759976387,
+ "learning_rate": 0.0006,
+ "loss": 3.568899631500244,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307423580786025,
+ "grad_norm": 0.034086693078279495,
+ "learning_rate": 0.0006,
+ "loss": 3.5406198501586914,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321397379912664,
+ "grad_norm": 0.03118005394935608,
+ "learning_rate": 0.0006,
+ "loss": 3.4970381259918213,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335371179039303,
+ "grad_norm": 0.030468063428997993,
+ "learning_rate": 0.0006,
+ "loss": 3.5451807975769043,
+ "step": 1176
+ },
+ {
+ "epoch": 16.349344978165938,
+ "grad_norm": 0.0309329554438591,
+ "learning_rate": 0.0006,
+ "loss": 3.53481388092041,
+ "step": 1177
+ },
+ {
+ "epoch": 16.363318777292577,
+ "grad_norm": 0.030906643718481064,
+ "learning_rate": 0.0006,
+ "loss": 3.5201809406280518,
+ "step": 1178
+ },
+ {
+ "epoch": 16.377292576419215,
+ "grad_norm": 0.029425526037812233,
+ "learning_rate": 0.0006,
+ "loss": 3.5083932876586914,
+ "step": 1179
+ },
+ {
+ "epoch": 16.39126637554585,
+ "grad_norm": 0.03284955024719238,
+ "learning_rate": 0.0006,
+ "loss": 3.5315258502960205,
+ "step": 1180
+ },
+ {
+ "epoch": 16.40524017467249,
+ "grad_norm": 0.03235018253326416,
+ "learning_rate": 0.0006,
+ "loss": 3.5033299922943115,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419213973799128,
+ "grad_norm": 0.029569406062364578,
+ "learning_rate": 0.0006,
+ "loss": 3.52433180809021,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433187772925763,
+ "grad_norm": 0.028649726882576942,
+ "learning_rate": 0.0006,
+ "loss": 3.486379623413086,
+ "step": 1183
+ },
+ {
+ "epoch": 16.4471615720524,
+ "grad_norm": 0.027956973761320114,
+ "learning_rate": 0.0006,
+ "loss": 3.5237250328063965,
+ "step": 1184
+ },
+ {
+ "epoch": 16.46113537117904,
+ "grad_norm": 0.0276664849370718,
+ "learning_rate": 0.0006,
+ "loss": 3.512511730194092,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475109170305675,
+ "grad_norm": 0.027819795534014702,
+ "learning_rate": 0.0006,
+ "loss": 3.5440287590026855,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489082969432314,
+ "grad_norm": 0.028435861691832542,
+ "learning_rate": 0.0006,
+ "loss": 3.560199737548828,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503056768558952,
+ "grad_norm": 0.02672969177365303,
+ "learning_rate": 0.0006,
+ "loss": 3.5323410034179688,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51703056768559,
+ "grad_norm": 0.024931233376264572,
+ "learning_rate": 0.0006,
+ "loss": 3.5182852745056152,
+ "step": 1189
+ },
+ {
+ "epoch": 16.531004366812226,
+ "grad_norm": 0.02562815696001053,
+ "learning_rate": 0.0006,
+ "loss": 3.525887966156006,
+ "step": 1190
+ },
+ {
+ "epoch": 16.544978165938865,
+ "grad_norm": 0.022041132673621178,
+ "learning_rate": 0.0006,
+ "loss": 3.5331735610961914,
+ "step": 1191
+ },
+ {
+ "epoch": 16.558951965065503,
+ "grad_norm": 0.02091669663786888,
+ "learning_rate": 0.0006,
+ "loss": 3.5219545364379883,
+ "step": 1192
+ },
+ {
+ "epoch": 16.57292576419214,
+ "grad_norm": 0.0208087507635355,
+ "learning_rate": 0.0006,
+ "loss": 3.5721282958984375,
+ "step": 1193
+ },
+ {
+ "epoch": 16.586899563318777,
+ "grad_norm": 0.019807223230600357,
+ "learning_rate": 0.0006,
+ "loss": 3.493896484375,
+ "step": 1194
+ },
+ {
+ "epoch": 16.600873362445416,
+ "grad_norm": 0.019274886697530746,
+ "learning_rate": 0.0006,
+ "loss": 3.5042009353637695,
+ "step": 1195
+ },
+ {
+ "epoch": 16.61484716157205,
+ "grad_norm": 0.01950680837035179,
+ "learning_rate": 0.0006,
+ "loss": 3.5548095703125,
+ "step": 1196
+ },
+ {
+ "epoch": 16.62882096069869,
+ "grad_norm": 0.02027183771133423,
+ "learning_rate": 0.0006,
+ "loss": 3.495508909225464,
+ "step": 1197
+ },
+ {
+ "epoch": 16.64279475982533,
+ "grad_norm": 0.021261053159832954,
+ "learning_rate": 0.0006,
+ "loss": 3.531256675720215,
+ "step": 1198
+ },
+ {
+ "epoch": 16.656768558951963,
+ "grad_norm": 0.02054775319993496,
+ "learning_rate": 0.0006,
+ "loss": 3.499379873275757,
+ "step": 1199
+ },
+ {
+ "epoch": 16.670742358078602,
+ "grad_norm": 0.01810075156390667,
+ "learning_rate": 0.0006,
+ "loss": 3.561351776123047,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68471615720524,
+ "grad_norm": 0.017886348068714142,
+ "learning_rate": 0.0006,
+ "loss": 3.551504373550415,
+ "step": 1201
+ },
+ {
+ "epoch": 16.69868995633188,
+ "grad_norm": 0.01893145777285099,
+ "learning_rate": 0.0006,
+ "loss": 3.4890754222869873,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712663755458514,
+ "grad_norm": 0.018899526447057724,
+ "learning_rate": 0.0006,
+ "loss": 3.545161724090576,
+ "step": 1203
+ },
+ {
+ "epoch": 16.726637554585153,
+ "grad_norm": 0.018913133069872856,
+ "learning_rate": 0.0006,
+ "loss": 3.502636194229126,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74061135371179,
+ "grad_norm": 0.019347554072737694,
+ "learning_rate": 0.0006,
+ "loss": 3.521177291870117,
+ "step": 1205
+ },
+ {
+ "epoch": 16.754585152838427,
+ "grad_norm": 0.02018282189965248,
+ "learning_rate": 0.0006,
+ "loss": 3.5440759658813477,
+ "step": 1206
+ },
+ {
+ "epoch": 16.768558951965066,
+ "grad_norm": 0.018046081066131592,
+ "learning_rate": 0.0006,
+ "loss": 3.5429065227508545,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782532751091704,
+ "grad_norm": 0.01814688742160797,
+ "learning_rate": 0.0006,
+ "loss": 3.524298667907715,
+ "step": 1208
+ },
+ {
+ "epoch": 16.79650655021834,
+ "grad_norm": 0.017817430198192596,
+ "learning_rate": 0.0006,
+ "loss": 3.5429811477661133,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810480349344978,
+ "grad_norm": 0.01804095320403576,
+ "learning_rate": 0.0006,
+ "loss": 3.5601816177368164,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824454148471617,
+ "grad_norm": 0.01939644105732441,
+ "learning_rate": 0.0006,
+ "loss": 3.5711722373962402,
+ "step": 1211
+ },
+ {
+ "epoch": 16.83842794759825,
+ "grad_norm": 0.019648978486657143,
+ "learning_rate": 0.0006,
+ "loss": 3.5105032920837402,
+ "step": 1212
+ },
+ {
+ "epoch": 16.85240174672489,
+ "grad_norm": 0.01914234645664692,
+ "learning_rate": 0.0006,
+ "loss": 3.5199899673461914,
+ "step": 1213
+ },
+ {
+ "epoch": 16.86637554585153,
+ "grad_norm": 0.019934657961130142,
+ "learning_rate": 0.0006,
+ "loss": 3.531907320022583,
+ "step": 1214
+ },
+ {
+ "epoch": 16.880349344978168,
+ "grad_norm": 0.019740048795938492,
+ "learning_rate": 0.0006,
+ "loss": 3.4846372604370117,
+ "step": 1215
+ },
+ {
+ "epoch": 16.894323144104803,
+ "grad_norm": 0.020136266946792603,
+ "learning_rate": 0.0006,
+ "loss": 3.5342910289764404,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90829694323144,
+ "grad_norm": 0.021572282537817955,
+ "learning_rate": 0.0006,
+ "loss": 3.5846221446990967,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92227074235808,
+ "grad_norm": 0.01965942606329918,
+ "learning_rate": 0.0006,
+ "loss": 3.489861011505127,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936244541484715,
+ "grad_norm": 0.018763914704322815,
+ "learning_rate": 0.0006,
+ "loss": 3.5294601917266846,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950218340611354,
+ "grad_norm": 0.017964672297239304,
+ "learning_rate": 0.0006,
+ "loss": 3.5389389991760254,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964192139737992,
+ "grad_norm": 0.018288105726242065,
+ "learning_rate": 0.0006,
+ "loss": 3.531959056854248,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978165938864628,
+ "grad_norm": 0.019321706146001816,
+ "learning_rate": 0.0006,
+ "loss": 3.533597469329834,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992139737991266,
+ "grad_norm": 0.019614171236753464,
+ "learning_rate": 0.0006,
+ "loss": 3.5083813667297363,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.020609203726053238,
+ "learning_rate": 0.0006,
+ "loss": 3.580991268157959,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 3.992704153060913,
+ "eval_runtime": 50.2038,
+ "eval_samples_per_second": 48.642,
+ "eval_steps_per_second": 1.534,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397379912664,
+ "grad_norm": 0.023699766024947166,
+ "learning_rate": 0.0006,
+ "loss": 3.4216837882995605,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027947598253274,
+ "grad_norm": 0.03299031779170036,
+ "learning_rate": 0.0006,
+ "loss": 3.3943543434143066,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041921397379912,
+ "grad_norm": 0.0365300215780735,
+ "learning_rate": 0.0006,
+ "loss": 3.419881820678711,
+ "step": 1227
+ },
+ {
+ "epoch": 17.05589519650655,
+ "grad_norm": 0.037790149450302124,
+ "learning_rate": 0.0006,
+ "loss": 3.397857666015625,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069868995633186,
+ "grad_norm": 0.03478766605257988,
+ "learning_rate": 0.0006,
+ "loss": 3.4057488441467285,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083842794759825,
+ "grad_norm": 0.03660628944635391,
+ "learning_rate": 0.0006,
+ "loss": 3.449805498123169,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097816593886463,
+ "grad_norm": 0.03783934935927391,
+ "learning_rate": 0.0006,
+ "loss": 3.391709804534912,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111790393013102,
+ "grad_norm": 0.03578848019242287,
+ "learning_rate": 0.0006,
+ "loss": 3.3921704292297363,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125764192139737,
+ "grad_norm": 0.04182235524058342,
+ "learning_rate": 0.0006,
+ "loss": 3.406362295150757,
+ "step": 1233
+ },
+ {
+ "epoch": 17.139737991266376,
+ "grad_norm": 0.04345374181866646,
+ "learning_rate": 0.0006,
+ "loss": 3.39174222946167,
+ "step": 1234
+ },
+ {
+ "epoch": 17.153711790393015,
+ "grad_norm": 0.0420818068087101,
+ "learning_rate": 0.0006,
+ "loss": 3.431614398956299,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16768558951965,
+ "grad_norm": 0.045535873621702194,
+ "learning_rate": 0.0006,
+ "loss": 3.4326839447021484,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18165938864629,
+ "grad_norm": 0.05574474856257439,
+ "learning_rate": 0.0006,
+ "loss": 3.4711036682128906,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195633187772927,
+ "grad_norm": 0.057157132774591446,
+ "learning_rate": 0.0006,
+ "loss": 3.4650626182556152,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209606986899562,
+ "grad_norm": 0.053199656307697296,
+ "learning_rate": 0.0006,
+ "loss": 3.4461426734924316,
+ "step": 1239
+ },
+ {
+ "epoch": 17.2235807860262,
+ "grad_norm": 0.054264020174741745,
+ "learning_rate": 0.0006,
+ "loss": 3.4681930541992188,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23755458515284,
+ "grad_norm": 0.05625223368406296,
+ "learning_rate": 0.0006,
+ "loss": 3.4914324283599854,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251528384279474,
+ "grad_norm": 0.061760347336530685,
+ "learning_rate": 0.0006,
+ "loss": 3.525092840194702,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265502183406113,
+ "grad_norm": 0.0628439411520958,
+ "learning_rate": 0.0006,
+ "loss": 3.5061843395233154,
+ "step": 1243
+ },
+ {
+ "epoch": 17.27947598253275,
+ "grad_norm": 0.0659259706735611,
+ "learning_rate": 0.0006,
+ "loss": 3.53128719329834,
+ "step": 1244
+ },
+ {
+ "epoch": 17.29344978165939,
+ "grad_norm": 0.05818862468004227,
+ "learning_rate": 0.0006,
+ "loss": 3.5536415576934814,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307423580786025,
+ "grad_norm": 0.05471836030483246,
+ "learning_rate": 0.0006,
+ "loss": 3.5337672233581543,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321397379912664,
+ "grad_norm": 0.0487399697303772,
+ "learning_rate": 0.0006,
+ "loss": 3.522909641265869,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335371179039303,
+ "grad_norm": 0.05006934702396393,
+ "learning_rate": 0.0006,
+ "loss": 3.5228986740112305,
+ "step": 1248
+ },
+ {
+ "epoch": 17.349344978165938,
+ "grad_norm": 0.047036584466695786,
+ "learning_rate": 0.0006,
+ "loss": 3.582343578338623,
+ "step": 1249
+ },
+ {
+ "epoch": 17.363318777292577,
+ "grad_norm": 0.045836590230464935,
+ "learning_rate": 0.0006,
+ "loss": 3.5376439094543457,
+ "step": 1250
+ },
+ {
+ "epoch": 17.377292576419215,
+ "grad_norm": 0.044237297028303146,
+ "learning_rate": 0.0006,
+ "loss": 3.5435123443603516,
+ "step": 1251
+ },
+ {
+ "epoch": 17.39126637554585,
+ "grad_norm": 0.04441322013735771,
+ "learning_rate": 0.0006,
+ "loss": 3.5400638580322266,
+ "step": 1252
+ },
+ {
+ "epoch": 17.40524017467249,
+ "grad_norm": 0.04533323645591736,
+ "learning_rate": 0.0006,
+ "loss": 3.5287728309631348,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419213973799128,
+ "grad_norm": 0.03689985349774361,
+ "learning_rate": 0.0006,
+ "loss": 3.5161759853363037,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433187772925763,
+ "grad_norm": 0.03836561366915703,
+ "learning_rate": 0.0006,
+ "loss": 3.4899721145629883,
+ "step": 1255
+ },
+ {
+ "epoch": 17.4471615720524,
+ "grad_norm": 0.03594471141695976,
+ "learning_rate": 0.0006,
+ "loss": 3.534101963043213,
+ "step": 1256
+ },
+ {
+ "epoch": 17.46113537117904,
+ "grad_norm": 0.03834489732980728,
+ "learning_rate": 0.0006,
+ "loss": 3.4943580627441406,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475109170305675,
+ "grad_norm": 0.04318688064813614,
+ "learning_rate": 0.0006,
+ "loss": 3.5304384231567383,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489082969432314,
+ "grad_norm": 0.04468952864408493,
+ "learning_rate": 0.0006,
+ "loss": 3.5435900688171387,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503056768558952,
+ "grad_norm": 0.041371092200279236,
+ "learning_rate": 0.0006,
+ "loss": 3.529571056365967,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51703056768559,
+ "grad_norm": 0.03826779127120972,
+ "learning_rate": 0.0006,
+ "loss": 3.5024611949920654,
+ "step": 1261
+ },
+ {
+ "epoch": 17.531004366812226,
+ "grad_norm": 0.030302148312330246,
+ "learning_rate": 0.0006,
+ "loss": 3.5491857528686523,
+ "step": 1262
+ },
+ {
+ "epoch": 17.544978165938865,
+ "grad_norm": 0.02673652581870556,
+ "learning_rate": 0.0006,
+ "loss": 3.498325824737549,
+ "step": 1263
+ },
+ {
+ "epoch": 17.558951965065503,
+ "grad_norm": 0.026035286486148834,
+ "learning_rate": 0.0006,
+ "loss": 3.524242639541626,
+ "step": 1264
+ },
+ {
+ "epoch": 17.57292576419214,
+ "grad_norm": 0.02433512918651104,
+ "learning_rate": 0.0006,
+ "loss": 3.496821880340576,
+ "step": 1265
+ },
+ {
+ "epoch": 17.586899563318777,
+ "grad_norm": 0.023563958704471588,
+ "learning_rate": 0.0006,
+ "loss": 3.4883062839508057,
+ "step": 1266
+ },
+ {
+ "epoch": 17.600873362445416,
+ "grad_norm": 0.0206421110779047,
+ "learning_rate": 0.0006,
+ "loss": 3.519468069076538,
+ "step": 1267
+ },
+ {
+ "epoch": 17.61484716157205,
+ "grad_norm": 0.020854417234659195,
+ "learning_rate": 0.0006,
+ "loss": 3.5546176433563232,
+ "step": 1268
+ },
+ {
+ "epoch": 17.62882096069869,
+ "grad_norm": 0.01948000118136406,
+ "learning_rate": 0.0006,
+ "loss": 3.4945712089538574,
+ "step": 1269
+ },
+ {
+ "epoch": 17.64279475982533,
+ "grad_norm": 0.018670955672860146,
+ "learning_rate": 0.0006,
+ "loss": 3.4944663047790527,
+ "step": 1270
+ },
+ {
+ "epoch": 17.656768558951963,
+ "grad_norm": 0.018675116822123528,
+ "learning_rate": 0.0006,
+ "loss": 3.4906811714172363,
+ "step": 1271
+ },
+ {
+ "epoch": 17.670742358078602,
+ "grad_norm": 0.018198898062109947,
+ "learning_rate": 0.0006,
+ "loss": 3.4814324378967285,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68471615720524,
+ "grad_norm": 0.017625771462917328,
+ "learning_rate": 0.0006,
+ "loss": 3.481903553009033,
+ "step": 1273
+ },
+ {
+ "epoch": 17.69868995633188,
+ "grad_norm": 0.017468655481934547,
+ "learning_rate": 0.0006,
+ "loss": 3.504253625869751,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712663755458514,
+ "grad_norm": 0.017738448455929756,
+ "learning_rate": 0.0006,
+ "loss": 3.4731998443603516,
+ "step": 1275
+ },
+ {
+ "epoch": 17.726637554585153,
+ "grad_norm": 0.01674838177859783,
+ "learning_rate": 0.0006,
+ "loss": 3.501451253890991,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74061135371179,
+ "grad_norm": 0.016940834000706673,
+ "learning_rate": 0.0006,
+ "loss": 3.5022473335266113,
+ "step": 1277
+ },
+ {
+ "epoch": 17.754585152838427,
+ "grad_norm": 0.016655702143907547,
+ "learning_rate": 0.0006,
+ "loss": 3.489267349243164,
+ "step": 1278
+ },
+ {
+ "epoch": 17.768558951965066,
+ "grad_norm": 0.016576141119003296,
+ "learning_rate": 0.0006,
+ "loss": 3.489868402481079,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782532751091704,
+ "grad_norm": 0.015516328625380993,
+ "learning_rate": 0.0006,
+ "loss": 3.4777278900146484,
+ "step": 1280
+ },
+ {
+ "epoch": 17.79650655021834,
+ "grad_norm": 0.01572612300515175,
+ "learning_rate": 0.0006,
+ "loss": 3.4924020767211914,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810480349344978,
+ "grad_norm": 0.01619344763457775,
+ "learning_rate": 0.0006,
+ "loss": 3.4541757106781006,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824454148471617,
+ "grad_norm": 0.016174443066120148,
+ "learning_rate": 0.0006,
+ "loss": 3.496953010559082,
+ "step": 1283
+ },
+ {
+ "epoch": 17.83842794759825,
+ "grad_norm": 0.015538575127720833,
+ "learning_rate": 0.0006,
+ "loss": 3.501938819885254,
+ "step": 1284
+ },
+ {
+ "epoch": 17.85240174672489,
+ "grad_norm": 0.015476577915251255,
+ "learning_rate": 0.0006,
+ "loss": 3.4954936504364014,
+ "step": 1285
+ },
+ {
+ "epoch": 17.86637554585153,
+ "grad_norm": 0.01563846506178379,
+ "learning_rate": 0.0006,
+ "loss": 3.4736757278442383,
+ "step": 1286
+ },
+ {
+ "epoch": 17.880349344978168,
+ "grad_norm": 0.016416197642683983,
+ "learning_rate": 0.0006,
+ "loss": 3.4564414024353027,
+ "step": 1287
+ },
+ {
+ "epoch": 17.894323144104803,
+ "grad_norm": 0.016533056274056435,
+ "learning_rate": 0.0006,
+ "loss": 3.4835453033447266,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90829694323144,
+ "grad_norm": 0.01587281934916973,
+ "learning_rate": 0.0006,
+ "loss": 3.460432529449463,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92227074235808,
+ "grad_norm": 0.01610104739665985,
+ "learning_rate": 0.0006,
+ "loss": 3.4919300079345703,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936244541484715,
+ "grad_norm": 0.01581653021275997,
+ "learning_rate": 0.0006,
+ "loss": 3.4631175994873047,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950218340611354,
+ "grad_norm": 0.015979735180735588,
+ "learning_rate": 0.0006,
+ "loss": 3.4901933670043945,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964192139737992,
+ "grad_norm": 0.01630399376153946,
+ "learning_rate": 0.0006,
+ "loss": 3.4629836082458496,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978165938864628,
+ "grad_norm": 0.017480242997407913,
+ "learning_rate": 0.0006,
+ "loss": 3.4913692474365234,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992139737991266,
+ "grad_norm": 0.016874775290489197,
+ "learning_rate": 0.0006,
+ "loss": 3.4790616035461426,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.01860641874372959,
+ "learning_rate": 0.0006,
+ "loss": 3.451586961746216,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 3.9891297817230225,
+ "eval_runtime": 50.1961,
+ "eval_samples_per_second": 48.649,
+ "eval_steps_per_second": 1.534,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397379912664,
+ "grad_norm": 0.020353643223643303,
+ "learning_rate": 0.0006,
+ "loss": 3.3365015983581543,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027947598253274,
+ "grad_norm": 0.025348901748657227,
+ "learning_rate": 0.0006,
+ "loss": 3.362994909286499,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041921397379912,
+ "grad_norm": 0.025188535451889038,
+ "learning_rate": 0.0006,
+ "loss": 3.363680362701416,
+ "step": 1299
+ },
+ {
+ "epoch": 18.05589519650655,
+ "grad_norm": 0.022153817117214203,
+ "learning_rate": 0.0006,
+ "loss": 3.3311727046966553,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069868995633186,
+ "grad_norm": 0.023192603141069412,
+ "learning_rate": 0.0006,
+ "loss": 3.313582420349121,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083842794759825,
+ "grad_norm": 0.023841004818677902,
+ "learning_rate": 0.0006,
+ "loss": 3.3787522315979004,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097816593886463,
+ "grad_norm": 0.024539794772863388,
+ "learning_rate": 0.0006,
+ "loss": 3.382267475128174,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111790393013102,
+ "grad_norm": 0.026391029357910156,
+ "learning_rate": 0.0006,
+ "loss": 3.3674709796905518,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125764192139737,
+ "grad_norm": 0.027859404683113098,
+ "learning_rate": 0.0006,
+ "loss": 3.3584036827087402,
+ "step": 1305
+ },
+ {
+ "epoch": 18.139737991266376,
+ "grad_norm": 0.027688005939126015,
+ "learning_rate": 0.0006,
+ "loss": 3.314915657043457,
+ "step": 1306
+ },
+ {
+ "epoch": 18.153711790393015,
+ "grad_norm": 0.026942238211631775,
+ "learning_rate": 0.0006,
+ "loss": 3.387618064880371,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16768558951965,
+ "grad_norm": 0.02890498749911785,
+ "learning_rate": 0.0006,
+ "loss": 3.35286021232605,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18165938864629,
+ "grad_norm": 0.028318168595433235,
+ "learning_rate": 0.0006,
+ "loss": 3.347115993499756,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195633187772927,
+ "grad_norm": 0.02423982135951519,
+ "learning_rate": 0.0006,
+ "loss": 3.365628242492676,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209606986899562,
+ "grad_norm": 0.025620151311159134,
+ "learning_rate": 0.0006,
+ "loss": 3.3887939453125,
+ "step": 1311
+ },
+ {
+ "epoch": 18.2235807860262,
+ "grad_norm": 0.02538205496966839,
+ "learning_rate": 0.0006,
+ "loss": 3.3417105674743652,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23755458515284,
+ "grad_norm": 0.024902652949094772,
+ "learning_rate": 0.0006,
+ "loss": 3.348081111907959,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251528384279474,
+ "grad_norm": 0.024858251214027405,
+ "learning_rate": 0.0006,
+ "loss": 3.3346352577209473,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265502183406113,
+ "grad_norm": 0.02413691021502018,
+ "learning_rate": 0.0006,
+ "loss": 3.373331069946289,
+ "step": 1315
+ },
+ {
+ "epoch": 18.27947598253275,
+ "grad_norm": 0.024673711508512497,
+ "learning_rate": 0.0006,
+ "loss": 3.3532657623291016,
+ "step": 1316
+ },
+ {
+ "epoch": 18.29344978165939,
+ "grad_norm": 0.02378152869641781,
+ "learning_rate": 0.0006,
+ "loss": 3.380765438079834,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307423580786025,
+ "grad_norm": 0.025095898658037186,
+ "learning_rate": 0.0006,
+ "loss": 3.3837740421295166,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321397379912664,
+ "grad_norm": 0.028187017887830734,
+ "learning_rate": 0.0006,
+ "loss": 3.4130377769470215,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335371179039303,
+ "grad_norm": 0.030678752809762955,
+ "learning_rate": 0.0006,
+ "loss": 3.353358745574951,
+ "step": 1320
+ },
+ {
+ "epoch": 18.349344978165938,
+ "grad_norm": 0.03067706525325775,
+ "learning_rate": 0.0006,
+ "loss": 3.386003017425537,
+ "step": 1321
+ },
+ {
+ "epoch": 18.363318777292577,
+ "grad_norm": 0.029064467176795006,
+ "learning_rate": 0.0006,
+ "loss": 3.3915395736694336,
+ "step": 1322
+ },
+ {
+ "epoch": 18.377292576419215,
+ "grad_norm": 0.027225302532315254,
+ "learning_rate": 0.0006,
+ "loss": 3.3875136375427246,
+ "step": 1323
+ },
+ {
+ "epoch": 18.39126637554585,
+ "grad_norm": 0.02669711410999298,
+ "learning_rate": 0.0006,
+ "loss": 3.406268358230591,
+ "step": 1324
+ },
+ {
+ "epoch": 18.40524017467249,
+ "grad_norm": 0.028905952349305153,
+ "learning_rate": 0.0006,
+ "loss": 3.3588786125183105,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419213973799128,
+ "grad_norm": 0.02591577172279358,
+ "learning_rate": 0.0006,
+ "loss": 3.378920078277588,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433187772925763,
+ "grad_norm": 0.02405492030084133,
+ "learning_rate": 0.0006,
+ "loss": 3.4215216636657715,
+ "step": 1327
+ },
+ {
+ "epoch": 18.4471615720524,
+ "grad_norm": 0.02288426086306572,
+ "learning_rate": 0.0006,
+ "loss": 3.4051475524902344,
+ "step": 1328
+ },
+ {
+ "epoch": 18.46113537117904,
+ "grad_norm": 0.02265259623527527,
+ "learning_rate": 0.0006,
+ "loss": 3.376089096069336,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475109170305675,
+ "grad_norm": 0.021498411893844604,
+ "learning_rate": 0.0006,
+ "loss": 3.3922982215881348,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489082969432314,
+ "grad_norm": 0.02283475548028946,
+ "learning_rate": 0.0006,
+ "loss": 3.435965061187744,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503056768558952,
+ "grad_norm": 0.02214580774307251,
+ "learning_rate": 0.0006,
+ "loss": 3.4137468338012695,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51703056768559,
+ "grad_norm": 0.02150345966219902,
+ "learning_rate": 0.0006,
+ "loss": 3.3775486946105957,
+ "step": 1333
+ },
+ {
+ "epoch": 18.531004366812226,
+ "grad_norm": 0.02131151221692562,
+ "learning_rate": 0.0006,
+ "loss": 3.3902227878570557,
+ "step": 1334
+ },
+ {
+ "epoch": 18.544978165938865,
+ "grad_norm": 0.019052445888519287,
+ "learning_rate": 0.0006,
+ "loss": 3.4158318042755127,
+ "step": 1335
+ },
+ {
+ "epoch": 18.558951965065503,
+ "grad_norm": 0.018629150465130806,
+ "learning_rate": 0.0006,
+ "loss": 3.40549898147583,
+ "step": 1336
+ },
+ {
+ "epoch": 18.57292576419214,
+ "grad_norm": 0.019917191937565804,
+ "learning_rate": 0.0006,
+ "loss": 3.3770365715026855,
+ "step": 1337
+ },
+ {
+ "epoch": 18.586899563318777,
+ "grad_norm": 0.01985880360007286,
+ "learning_rate": 0.0006,
+ "loss": 3.393543243408203,
+ "step": 1338
+ },
+ {
+ "epoch": 18.600873362445416,
+ "grad_norm": 0.019536739215254784,
+ "learning_rate": 0.0006,
+ "loss": 3.426811695098877,
+ "step": 1339
+ },
+ {
+ "epoch": 18.61484716157205,
+ "grad_norm": 0.01855909265577793,
+ "learning_rate": 0.0006,
+ "loss": 3.401531219482422,
+ "step": 1340
+ },
+ {
+ "epoch": 18.62882096069869,
+ "grad_norm": 0.018492981791496277,
+ "learning_rate": 0.0006,
+ "loss": 3.4268338680267334,
+ "step": 1341
+ },
+ {
+ "epoch": 18.64279475982533,
+ "grad_norm": 0.0180380679666996,
+ "learning_rate": 0.0006,
+ "loss": 3.4302897453308105,
+ "step": 1342
+ },
+ {
+ "epoch": 18.656768558951963,
+ "grad_norm": 0.017962129786610603,
+ "learning_rate": 0.0006,
+ "loss": 3.396136522293091,
+ "step": 1343
+ },
+ {
+ "epoch": 18.670742358078602,
+ "grad_norm": 0.019102413207292557,
+ "learning_rate": 0.0006,
+ "loss": 3.390157699584961,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68471615720524,
+ "grad_norm": 0.01885206066071987,
+ "learning_rate": 0.0006,
+ "loss": 3.410893440246582,
+ "step": 1345
+ },
+ {
+ "epoch": 18.69868995633188,
+ "grad_norm": 0.018043991178274155,
+ "learning_rate": 0.0006,
+ "loss": 3.3919389247894287,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712663755458514,
+ "grad_norm": 0.01806800253689289,
+ "learning_rate": 0.0006,
+ "loss": 3.43209171295166,
+ "step": 1347
+ },
+ {
+ "epoch": 18.726637554585153,
+ "grad_norm": 0.01855402998626232,
+ "learning_rate": 0.0006,
+ "loss": 3.428830146789551,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74061135371179,
+ "grad_norm": 0.018445072695612907,
+ "learning_rate": 0.0006,
+ "loss": 3.4180264472961426,
+ "step": 1349
+ },
+ {
+ "epoch": 18.754585152838427,
+ "grad_norm": 0.018156694248318672,
+ "learning_rate": 0.0006,
+ "loss": 3.4011521339416504,
+ "step": 1350
+ },
+ {
+ "epoch": 18.768558951965066,
+ "grad_norm": 0.019634190946817398,
+ "learning_rate": 0.0006,
+ "loss": 3.388862371444702,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782532751091704,
+ "grad_norm": 0.01954115554690361,
+ "learning_rate": 0.0006,
+ "loss": 3.4300918579101562,
+ "step": 1352
+ },
+ {
+ "epoch": 18.79650655021834,
+ "grad_norm": 0.01783105544745922,
+ "learning_rate": 0.0006,
+ "loss": 3.3942103385925293,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810480349344978,
+ "grad_norm": 0.017380334436893463,
+ "learning_rate": 0.0006,
+ "loss": 3.4005725383758545,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824454148471617,
+ "grad_norm": 0.01806088164448738,
+ "learning_rate": 0.0006,
+ "loss": 3.4157588481903076,
+ "step": 1355
+ },
+ {
+ "epoch": 18.83842794759825,
+ "grad_norm": 0.018839186057448387,
+ "learning_rate": 0.0006,
+ "loss": 3.40814208984375,
+ "step": 1356
+ },
+ {
+ "epoch": 18.85240174672489,
+ "grad_norm": 0.018662428483366966,
+ "learning_rate": 0.0006,
+ "loss": 3.4516561031341553,
+ "step": 1357
+ },
+ {
+ "epoch": 18.86637554585153,
+ "grad_norm": 0.016893137246370316,
+ "learning_rate": 0.0006,
+ "loss": 3.437650680541992,
+ "step": 1358
+ },
+ {
+ "epoch": 18.880349344978168,
+ "grad_norm": 0.017629794776439667,
+ "learning_rate": 0.0006,
+ "loss": 3.4278972148895264,
+ "step": 1359
+ },
+ {
+ "epoch": 18.894323144104803,
+ "grad_norm": 0.018383143469691277,
+ "learning_rate": 0.0006,
+ "loss": 3.4278743267059326,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90829694323144,
+ "grad_norm": 0.01822691783308983,
+ "learning_rate": 0.0006,
+ "loss": 3.4315247535705566,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92227074235808,
+ "grad_norm": 0.019348058849573135,
+ "learning_rate": 0.0006,
+ "loss": 3.401350498199463,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936244541484715,
+ "grad_norm": 0.01952742226421833,
+ "learning_rate": 0.0006,
+ "loss": 3.378289222717285,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950218340611354,
+ "grad_norm": 0.019068529829382896,
+ "learning_rate": 0.0006,
+ "loss": 3.4088215827941895,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964192139737992,
+ "grad_norm": 0.02002856135368347,
+ "learning_rate": 0.0006,
+ "loss": 3.4396965503692627,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978165938864628,
+ "grad_norm": 0.01839490234851837,
+ "learning_rate": 0.0006,
+ "loss": 3.4167215824127197,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992139737991266,
+ "grad_norm": 0.018450899049639702,
+ "learning_rate": 0.0006,
+ "loss": 3.4458084106445312,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.021764317527413368,
+ "learning_rate": 0.0006,
+ "loss": 3.4413537979125977,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 3.9891514778137207,
+ "eval_runtime": 49.9998,
+ "eval_samples_per_second": 48.84,
+ "eval_steps_per_second": 1.54,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397379912664,
+ "grad_norm": 0.02277272194623947,
+ "learning_rate": 0.0006,
+ "loss": 3.2692642211914062,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027947598253274,
+ "grad_norm": 0.03352588415145874,
+ "learning_rate": 0.0006,
+ "loss": 3.2701330184936523,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041921397379912,
+ "grad_norm": 0.03873065486550331,
+ "learning_rate": 0.0006,
+ "loss": 3.3169291019439697,
+ "step": 1371
+ },
+ {
+ "epoch": 19.05589519650655,
+ "grad_norm": 0.03804260492324829,
+ "learning_rate": 0.0006,
+ "loss": 3.2720119953155518,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069868995633186,
+ "grad_norm": 0.04382786899805069,
+ "learning_rate": 0.0006,
+ "loss": 3.2789559364318848,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083842794759825,
+ "grad_norm": 0.042553164064884186,
+ "learning_rate": 0.0006,
+ "loss": 3.287041187286377,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097816593886463,
+ "grad_norm": 0.040354058146476746,
+ "learning_rate": 0.0006,
+ "loss": 3.2970733642578125,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111790393013102,
+ "grad_norm": 0.04003302380442619,
+ "learning_rate": 0.0006,
+ "loss": 3.298656940460205,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125764192139737,
+ "grad_norm": 0.04839435964822769,
+ "learning_rate": 0.0006,
+ "loss": 3.3119897842407227,
+ "step": 1377
+ },
+ {
+ "epoch": 19.139737991266376,
+ "grad_norm": 0.04619353264570236,
+ "learning_rate": 0.0006,
+ "loss": 3.323103904724121,
+ "step": 1378
+ },
+ {
+ "epoch": 19.153711790393015,
+ "grad_norm": 0.04889119043946266,
+ "learning_rate": 0.0006,
+ "loss": 3.29386043548584,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16768558951965,
+ "grad_norm": 0.052284516394138336,
+ "learning_rate": 0.0006,
+ "loss": 3.2952120304107666,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18165938864629,
+ "grad_norm": 0.053939417004585266,
+ "learning_rate": 0.0006,
+ "loss": 3.309581756591797,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195633187772927,
+ "grad_norm": 0.04883198067545891,
+ "learning_rate": 0.0006,
+ "loss": 3.3202223777770996,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209606986899562,
+ "grad_norm": 0.04550885036587715,
+ "learning_rate": 0.0006,
+ "loss": 3.3503410816192627,
+ "step": 1383
+ },
+ {
+ "epoch": 19.2235807860262,
+ "grad_norm": 0.04721444472670555,
+ "learning_rate": 0.0006,
+ "loss": 3.3530726432800293,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23755458515284,
+ "grad_norm": 0.051496051251888275,
+ "learning_rate": 0.0006,
+ "loss": 3.333950996398926,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251528384279474,
+ "grad_norm": 0.053854621946811676,
+ "learning_rate": 0.0006,
+ "loss": 3.3520333766937256,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265502183406113,
+ "grad_norm": 0.04623614624142647,
+ "learning_rate": 0.0006,
+ "loss": 3.350588083267212,
+ "step": 1387
+ },
+ {
+ "epoch": 19.27947598253275,
+ "grad_norm": 0.04073309525847435,
+ "learning_rate": 0.0006,
+ "loss": 3.3644251823425293,
+ "step": 1388
+ },
+ {
+ "epoch": 19.29344978165939,
+ "grad_norm": 0.03639872372150421,
+ "learning_rate": 0.0006,
+ "loss": 3.367534875869751,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307423580786025,
+ "grad_norm": 0.036499980837106705,
+ "learning_rate": 0.0006,
+ "loss": 3.3632423877716064,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321397379912664,
+ "grad_norm": 0.0373394750058651,
+ "learning_rate": 0.0006,
+ "loss": 3.3506932258605957,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335371179039303,
+ "grad_norm": 0.04176274687051773,
+ "learning_rate": 0.0006,
+ "loss": 3.3571481704711914,
+ "step": 1392
+ },
+ {
+ "epoch": 19.349344978165938,
+ "grad_norm": 0.04616089537739754,
+ "learning_rate": 0.0006,
+ "loss": 3.359266996383667,
+ "step": 1393
+ },
+ {
+ "epoch": 19.363318777292577,
+ "grad_norm": 0.04692723974585533,
+ "learning_rate": 0.0006,
+ "loss": 3.390904188156128,
+ "step": 1394
+ },
+ {
+ "epoch": 19.377292576419215,
+ "grad_norm": 0.04957121983170509,
+ "learning_rate": 0.0006,
+ "loss": 3.341733932495117,
+ "step": 1395
+ },
+ {
+ "epoch": 19.39126637554585,
+ "grad_norm": 0.0432475246489048,
+ "learning_rate": 0.0006,
+ "loss": 3.2961924076080322,
+ "step": 1396
+ },
+ {
+ "epoch": 19.40524017467249,
+ "grad_norm": 0.041836753487586975,
+ "learning_rate": 0.0006,
+ "loss": 3.3686509132385254,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419213973799128,
+ "grad_norm": 0.03855185955762863,
+ "learning_rate": 0.0006,
+ "loss": 3.3566665649414062,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433187772925763,
+ "grad_norm": 0.034848880022764206,
+ "learning_rate": 0.0006,
+ "loss": 3.374608039855957,
+ "step": 1399
+ },
+ {
+ "epoch": 19.4471615720524,
+ "grad_norm": 0.03131943941116333,
+ "learning_rate": 0.0006,
+ "loss": 3.3618953227996826,
+ "step": 1400
+ },
+ {
+ "epoch": 19.46113537117904,
+ "grad_norm": 0.029629478231072426,
+ "learning_rate": 0.0006,
+ "loss": 3.3952600955963135,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475109170305675,
+ "grad_norm": 0.02885911799967289,
+ "learning_rate": 0.0006,
+ "loss": 3.382490634918213,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489082969432314,
+ "grad_norm": 0.026441723108291626,
+ "learning_rate": 0.0006,
+ "loss": 3.3543779850006104,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503056768558952,
+ "grad_norm": 0.024119269102811813,
+ "learning_rate": 0.0006,
+ "loss": 3.3829503059387207,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51703056768559,
+ "grad_norm": 0.023766381666064262,
+ "learning_rate": 0.0006,
+ "loss": 3.37758731842041,
+ "step": 1405
+ },
+ {
+ "epoch": 19.531004366812226,
+ "grad_norm": 0.02395741641521454,
+ "learning_rate": 0.0006,
+ "loss": 3.4042277336120605,
+ "step": 1406
+ },
+ {
+ "epoch": 19.544978165938865,
+ "grad_norm": 0.023499730974435806,
+ "learning_rate": 0.0006,
+ "loss": 3.3811798095703125,
+ "step": 1407
+ },
+ {
+ "epoch": 19.558951965065503,
+ "grad_norm": 0.021423807367682457,
+ "learning_rate": 0.0006,
+ "loss": 3.3517274856567383,
+ "step": 1408
+ },
+ {
+ "epoch": 19.57292576419214,
+ "grad_norm": 0.02017848752439022,
+ "learning_rate": 0.0006,
+ "loss": 3.369368314743042,
+ "step": 1409
+ },
+ {
+ "epoch": 19.586899563318777,
+ "grad_norm": 0.02168160304427147,
+ "learning_rate": 0.0006,
+ "loss": 3.357361316680908,
+ "step": 1410
+ },
+ {
+ "epoch": 19.600873362445416,
+ "grad_norm": 0.020053956657648087,
+ "learning_rate": 0.0006,
+ "loss": 3.378511667251587,
+ "step": 1411
+ },
+ {
+ "epoch": 19.61484716157205,
+ "grad_norm": 0.018789371475577354,
+ "learning_rate": 0.0006,
+ "loss": 3.386579990386963,
+ "step": 1412
+ },
+ {
+ "epoch": 19.62882096069869,
+ "grad_norm": 0.01985175907611847,
+ "learning_rate": 0.0006,
+ "loss": 3.3903000354766846,
+ "step": 1413
+ },
+ {
+ "epoch": 19.64279475982533,
+ "grad_norm": 0.019878871738910675,
+ "learning_rate": 0.0006,
+ "loss": 3.362997055053711,
+ "step": 1414
+ },
+ {
+ "epoch": 19.656768558951963,
+ "grad_norm": 0.01920200325548649,
+ "learning_rate": 0.0006,
+ "loss": 3.397496461868286,
+ "step": 1415
+ },
+ {
+ "epoch": 19.670742358078602,
+ "grad_norm": 0.019940156489610672,
+ "learning_rate": 0.0006,
+ "loss": 3.375986099243164,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68471615720524,
+ "grad_norm": 0.019822560250759125,
+ "learning_rate": 0.0006,
+ "loss": 3.351943016052246,
+ "step": 1417
+ },
+ {
+ "epoch": 19.69868995633188,
+ "grad_norm": 0.01987987756729126,
+ "learning_rate": 0.0006,
+ "loss": 3.3699135780334473,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712663755458514,
+ "grad_norm": 0.020490208640694618,
+ "learning_rate": 0.0006,
+ "loss": 3.3826851844787598,
+ "step": 1419
+ },
+ {
+ "epoch": 19.726637554585153,
+ "grad_norm": 0.019540539011359215,
+ "learning_rate": 0.0006,
+ "loss": 3.330385208129883,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74061135371179,
+ "grad_norm": 0.018522001802921295,
+ "learning_rate": 0.0006,
+ "loss": 3.3798022270202637,
+ "step": 1421
+ },
+ {
+ "epoch": 19.754585152838427,
+ "grad_norm": 0.019179968163371086,
+ "learning_rate": 0.0006,
+ "loss": 3.352015733718872,
+ "step": 1422
+ },
+ {
+ "epoch": 19.768558951965066,
+ "grad_norm": 0.018380016088485718,
+ "learning_rate": 0.0006,
+ "loss": 3.3417506217956543,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782532751091704,
+ "grad_norm": 0.018539059907197952,
+ "learning_rate": 0.0006,
+ "loss": 3.3680901527404785,
+ "step": 1424
+ },
+ {
+ "epoch": 19.79650655021834,
+ "grad_norm": 0.01938101463019848,
+ "learning_rate": 0.0006,
+ "loss": 3.3972573280334473,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810480349344978,
+ "grad_norm": 0.019287938252091408,
+ "learning_rate": 0.0006,
+ "loss": 3.3635201454162598,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824454148471617,
+ "grad_norm": 0.01918751373887062,
+ "learning_rate": 0.0006,
+ "loss": 3.3594346046447754,
+ "step": 1427
+ },
+ {
+ "epoch": 19.83842794759825,
+ "grad_norm": 0.01843525469303131,
+ "learning_rate": 0.0006,
+ "loss": 3.3794357776641846,
+ "step": 1428
+ },
+ {
+ "epoch": 19.85240174672489,
+ "grad_norm": 0.017499281093478203,
+ "learning_rate": 0.0006,
+ "loss": 3.3725686073303223,
+ "step": 1429
+ },
+ {
+ "epoch": 19.86637554585153,
+ "grad_norm": 0.01804421842098236,
+ "learning_rate": 0.0006,
+ "loss": 3.3510665893554688,
+ "step": 1430
+ },
+ {
+ "epoch": 19.880349344978168,
+ "grad_norm": 0.01854187622666359,
+ "learning_rate": 0.0006,
+ "loss": 3.366323471069336,
+ "step": 1431
+ },
+ {
+ "epoch": 19.894323144104803,
+ "grad_norm": 0.019070899114012718,
+ "learning_rate": 0.0006,
+ "loss": 3.3426618576049805,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90829694323144,
+ "grad_norm": 0.018046852201223373,
+ "learning_rate": 0.0006,
+ "loss": 3.392629623413086,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92227074235808,
+ "grad_norm": 0.017897332087159157,
+ "learning_rate": 0.0006,
+ "loss": 3.384459972381592,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936244541484715,
+ "grad_norm": 0.018831918016076088,
+ "learning_rate": 0.0006,
+ "loss": 3.3787403106689453,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950218340611354,
+ "grad_norm": 0.017684299498796463,
+ "learning_rate": 0.0006,
+ "loss": 3.3839499950408936,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964192139737992,
+ "grad_norm": 0.018664930015802383,
+ "learning_rate": 0.0006,
+ "loss": 3.361309289932251,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978165938864628,
+ "grad_norm": 0.018459675833582878,
+ "learning_rate": 0.0006,
+ "loss": 3.3763248920440674,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992139737991266,
+ "grad_norm": 0.018684620037674904,
+ "learning_rate": 0.0006,
+ "loss": 3.364279270172119,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.02109597623348236,
+ "learning_rate": 0.0006,
+ "loss": 3.3849806785583496,
+ "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-constantlr/checkpoint-1440/training_args.bin b/runs/baseline-constantlr/checkpoint-1440/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..902eed46d9e02245694ec118af9efec9cd359ff6
--- /dev/null
+++ b/runs/baseline-constantlr/checkpoint-1440/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f8a755363e28cfde742d3e37ba600ce14b5716157c9823f5cadd1b47464c7fc2
+size 5201
diff --git a/runs/baseline-constantlr/checkpoint-1800/chat_template.jinja b/runs/baseline-constantlr/checkpoint-1800/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-1800/config.json b/runs/baseline-constantlr/checkpoint-1800/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-1800/generation_config.json b/runs/baseline-constantlr/checkpoint-1800/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-1800/model.safetensors b/runs/baseline-constantlr/checkpoint-1800/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..6b6236d61d328090fdf45fd9c7681b360d1b6764
--- /dev/null
+++ b/runs/baseline-constantlr/checkpoint-1800/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7b8d9518e15f66c0b9fc04027134b373973bf9b3b2822cd04099d3c7123da2b7
+size 583356232
diff --git a/runs/baseline-constantlr/checkpoint-1800/optimizer.pt b/runs/baseline-constantlr/checkpoint-1800/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..efa5cc2138581fb0b84a059e2766b6ffa2813e17
--- /dev/null
+++ b/runs/baseline-constantlr/checkpoint-1800/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:da4c5b9141461c57267e3d3723bdde63a54581c4bc309dfba3ea06696265c32a
+size 1166825803
diff --git a/runs/baseline-constantlr/checkpoint-1800/rng_state_0.pth b/runs/baseline-constantlr/checkpoint-1800/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..304a7576d9bd060137258dba420a3e1ff00587c1
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-1800/rng_state_1.pth b/runs/baseline-constantlr/checkpoint-1800/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..75486c47bfa9499bfe91975e3af3355c9526365c
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-1800/scheduler.pt b/runs/baseline-constantlr/checkpoint-1800/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..20d1f204b3f4a1b43451c917140f12063fb23659
--- /dev/null
+++ b/runs/baseline-constantlr/checkpoint-1800/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5e068acb08d9b6d3eb702c90bc67688993cbead18cfb53fdff212cfb629700ea
+size 1465
diff --git a/runs/baseline-constantlr/checkpoint-1800/tokenizer.json b/runs/baseline-constantlr/checkpoint-1800/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-1800/tokenizer_config.json b/runs/baseline-constantlr/checkpoint-1800/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-1800/trainer_state.json b/runs/baseline-constantlr/checkpoint-1800/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..ac7fb5ab4a078d013337c73759cabbe45ea1e121
--- /dev/null
+++ b/runs/baseline-constantlr/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.13303375244140625,
+ "learning_rate": 0.0,
+ "loss": 12.018817901611328,
+ "step": 1
+ },
+ {
+ "epoch": 0.02794759825327511,
+ "grad_norm": 0.13390742242336273,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.021883964538574,
+ "step": 2
+ },
+ {
+ "epoch": 0.04192139737991266,
+ "grad_norm": 0.13340722024440765,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.986108779907227,
+ "step": 3
+ },
+ {
+ "epoch": 0.05589519650655022,
+ "grad_norm": 0.13777263462543488,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.926837921142578,
+ "step": 4
+ },
+ {
+ "epoch": 0.06986899563318777,
+ "grad_norm": 0.14294272661209106,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.845431327819824,
+ "step": 5
+ },
+ {
+ "epoch": 0.08384279475982533,
+ "grad_norm": 0.15314988791942596,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.736921310424805,
+ "step": 6
+ },
+ {
+ "epoch": 0.09781659388646288,
+ "grad_norm": 0.14554648101329803,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.615877151489258,
+ "step": 7
+ },
+ {
+ "epoch": 0.11179039301310044,
+ "grad_norm": 0.1252845823764801,
+ "learning_rate": 4.2e-05,
+ "loss": 11.501619338989258,
+ "step": 8
+ },
+ {
+ "epoch": 0.125764192139738,
+ "grad_norm": 0.11403433233499527,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.396705627441406,
+ "step": 9
+ },
+ {
+ "epoch": 0.13973799126637554,
+ "grad_norm": 0.10996542125940323,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.31666374206543,
+ "step": 10
+ },
+ {
+ "epoch": 0.1537117903930131,
+ "grad_norm": 0.10755623877048492,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.252704620361328,
+ "step": 11
+ },
+ {
+ "epoch": 0.16768558951965065,
+ "grad_norm": 0.10700664669275284,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.194284439086914,
+ "step": 12
+ },
+ {
+ "epoch": 0.18165938864628822,
+ "grad_norm": 0.10606497526168823,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.14437198638916,
+ "step": 13
+ },
+ {
+ "epoch": 0.19563318777292577,
+ "grad_norm": 0.10551681369543076,
+ "learning_rate": 7.8e-05,
+ "loss": 11.096858024597168,
+ "step": 14
+ },
+ {
+ "epoch": 0.2096069868995633,
+ "grad_norm": 0.10573510080575943,
+ "learning_rate": 8.4e-05,
+ "loss": 11.047990798950195,
+ "step": 15
+ },
+ {
+ "epoch": 0.22358078602620088,
+ "grad_norm": 0.10572560131549835,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 11.000219345092773,
+ "step": 16
+ },
+ {
+ "epoch": 0.23755458515283842,
+ "grad_norm": 0.10625051707029343,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.93830680847168,
+ "step": 17
+ },
+ {
+ "epoch": 0.251528384279476,
+ "grad_norm": 0.10565247386693954,
+ "learning_rate": 0.000102,
+ "loss": 10.88237190246582,
+ "step": 18
+ },
+ {
+ "epoch": 0.26550218340611353,
+ "grad_norm": 0.10570791363716125,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.81382942199707,
+ "step": 19
+ },
+ {
+ "epoch": 0.2794759825327511,
+ "grad_norm": 0.10585319995880127,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.742864608764648,
+ "step": 20
+ },
+ {
+ "epoch": 0.2934497816593886,
+ "grad_norm": 0.10421311110258102,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.675719261169434,
+ "step": 21
+ },
+ {
+ "epoch": 0.3074235807860262,
+ "grad_norm": 0.10436785966157913,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.589548110961914,
+ "step": 22
+ },
+ {
+ "epoch": 0.32139737991266376,
+ "grad_norm": 0.10463878512382507,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.504261016845703,
+ "step": 23
+ },
+ {
+ "epoch": 0.3353711790393013,
+ "grad_norm": 0.104142926633358,
+ "learning_rate": 0.000138,
+ "loss": 10.41696548461914,
+ "step": 24
+ },
+ {
+ "epoch": 0.34934497816593885,
+ "grad_norm": 0.1037549152970314,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.327609062194824,
+ "step": 25
+ },
+ {
+ "epoch": 0.36331877729257644,
+ "grad_norm": 0.10464346408843994,
+ "learning_rate": 0.00015,
+ "loss": 10.226776123046875,
+ "step": 26
+ },
+ {
+ "epoch": 0.377292576419214,
+ "grad_norm": 0.10289040952920914,
+ "learning_rate": 0.000156,
+ "loss": 10.142925262451172,
+ "step": 27
+ },
+ {
+ "epoch": 0.39126637554585153,
+ "grad_norm": 0.10476566106081009,
+ "learning_rate": 0.000162,
+ "loss": 10.032388687133789,
+ "step": 28
+ },
+ {
+ "epoch": 0.4052401746724891,
+ "grad_norm": 0.10285190492868423,
+ "learning_rate": 0.000168,
+ "loss": 9.944738388061523,
+ "step": 29
+ },
+ {
+ "epoch": 0.4192139737991266,
+ "grad_norm": 0.10330761969089508,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.832511901855469,
+ "step": 30
+ },
+ {
+ "epoch": 0.4331877729257642,
+ "grad_norm": 0.10190961509943008,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.742905616760254,
+ "step": 31
+ },
+ {
+ "epoch": 0.44716157205240176,
+ "grad_norm": 0.10172155499458313,
+ "learning_rate": 0.000186,
+ "loss": 9.634834289550781,
+ "step": 32
+ },
+ {
+ "epoch": 0.4611353711790393,
+ "grad_norm": 0.10067209601402283,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.522916793823242,
+ "step": 33
+ },
+ {
+ "epoch": 0.47510917030567684,
+ "grad_norm": 0.10058761388063431,
+ "learning_rate": 0.000198,
+ "loss": 9.416927337646484,
+ "step": 34
+ },
+ {
+ "epoch": 0.4890829694323144,
+ "grad_norm": 0.0981091558933258,
+ "learning_rate": 0.000204,
+ "loss": 9.32928466796875,
+ "step": 35
+ },
+ {
+ "epoch": 0.503056768558952,
+ "grad_norm": 0.09739134460687637,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.215356826782227,
+ "step": 36
+ },
+ {
+ "epoch": 0.5170305676855895,
+ "grad_norm": 0.0969916582107544,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.101107597351074,
+ "step": 37
+ },
+ {
+ "epoch": 0.5310043668122271,
+ "grad_norm": 0.0959910973906517,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.998035430908203,
+ "step": 38
+ },
+ {
+ "epoch": 0.5449781659388646,
+ "grad_norm": 0.09558682143688202,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.89165210723877,
+ "step": 39
+ },
+ {
+ "epoch": 0.5589519650655022,
+ "grad_norm": 0.09313725680112839,
+ "learning_rate": 0.000234,
+ "loss": 8.806523323059082,
+ "step": 40
+ },
+ {
+ "epoch": 0.5729257641921397,
+ "grad_norm": 0.09075582772493362,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.71815299987793,
+ "step": 41
+ },
+ {
+ "epoch": 0.5868995633187772,
+ "grad_norm": 0.08912578970193863,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.617330551147461,
+ "step": 42
+ },
+ {
+ "epoch": 0.6008733624454149,
+ "grad_norm": 0.08745060116052628,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.511157989501953,
+ "step": 43
+ },
+ {
+ "epoch": 0.6148471615720524,
+ "grad_norm": 0.08254463970661163,
+ "learning_rate": 0.000258,
+ "loss": 8.458954811096191,
+ "step": 44
+ },
+ {
+ "epoch": 0.62882096069869,
+ "grad_norm": 0.0795406699180603,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.37498664855957,
+ "step": 45
+ },
+ {
+ "epoch": 0.6427947598253275,
+ "grad_norm": 0.07730695605278015,
+ "learning_rate": 0.00027,
+ "loss": 8.293156623840332,
+ "step": 46
+ },
+ {
+ "epoch": 0.6567685589519651,
+ "grad_norm": 0.07404499500989914,
+ "learning_rate": 0.000276,
+ "loss": 8.200754165649414,
+ "step": 47
+ },
+ {
+ "epoch": 0.6707423580786026,
+ "grad_norm": 0.07091354578733444,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.114692687988281,
+ "step": 48
+ },
+ {
+ "epoch": 0.6847161572052402,
+ "grad_norm": 0.06816772371530533,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.060348510742188,
+ "step": 49
+ },
+ {
+ "epoch": 0.6986899563318777,
+ "grad_norm": 0.0605427622795105,
+ "learning_rate": 0.000294,
+ "loss": 7.991006851196289,
+ "step": 50
+ },
+ {
+ "epoch": 0.7126637554585152,
+ "grad_norm": 0.05635255202651024,
+ "learning_rate": 0.0003,
+ "loss": 7.945850372314453,
+ "step": 51
+ },
+ {
+ "epoch": 0.7266375545851529,
+ "grad_norm": 0.05419522523880005,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.895726203918457,
+ "step": 52
+ },
+ {
+ "epoch": 0.7406113537117904,
+ "grad_norm": 0.06724901497364044,
+ "learning_rate": 0.000312,
+ "loss": 7.839101791381836,
+ "step": 53
+ },
+ {
+ "epoch": 0.754585152838428,
+ "grad_norm": 0.12858672440052032,
+ "learning_rate": 0.000318,
+ "loss": 7.840076446533203,
+ "step": 54
+ },
+ {
+ "epoch": 0.7685589519650655,
+ "grad_norm": 0.05087178573012352,
+ "learning_rate": 0.000324,
+ "loss": 7.77433967590332,
+ "step": 55
+ },
+ {
+ "epoch": 0.7825327510917031,
+ "grad_norm": 0.0458969883620739,
+ "learning_rate": 0.00033,
+ "loss": 7.747459411621094,
+ "step": 56
+ },
+ {
+ "epoch": 0.7965065502183406,
+ "grad_norm": 0.03214738890528679,
+ "learning_rate": 0.000336,
+ "loss": 7.735766410827637,
+ "step": 57
+ },
+ {
+ "epoch": 0.8104803493449781,
+ "grad_norm": 0.022700699046254158,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.716371059417725,
+ "step": 58
+ },
+ {
+ "epoch": 0.8244541484716157,
+ "grad_norm": 0.02415020391345024,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.700209140777588,
+ "step": 59
+ },
+ {
+ "epoch": 0.8384279475982532,
+ "grad_norm": 0.021143650636076927,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.687976360321045,
+ "step": 60
+ },
+ {
+ "epoch": 0.8524017467248908,
+ "grad_norm": 0.019051192328333855,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.640708923339844,
+ "step": 61
+ },
+ {
+ "epoch": 0.8663755458515284,
+ "grad_norm": 0.02110682614147663,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.6529130935668945,
+ "step": 62
+ },
+ {
+ "epoch": 0.880349344978166,
+ "grad_norm": 0.024010686203837395,
+ "learning_rate": 0.000372,
+ "loss": 7.645641326904297,
+ "step": 63
+ },
+ {
+ "epoch": 0.8943231441048035,
+ "grad_norm": 0.02591090090572834,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.626849174499512,
+ "step": 64
+ },
+ {
+ "epoch": 0.9082969432314411,
+ "grad_norm": 0.02841993235051632,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.633922576904297,
+ "step": 65
+ },
+ {
+ "epoch": 0.9222707423580786,
+ "grad_norm": 0.02565363608300686,
+ "learning_rate": 0.00039,
+ "loss": 7.6236772537231445,
+ "step": 66
+ },
+ {
+ "epoch": 0.9362445414847161,
+ "grad_norm": 0.020100994035601616,
+ "learning_rate": 0.000396,
+ "loss": 7.602252006530762,
+ "step": 67
+ },
+ {
+ "epoch": 0.9502183406113537,
+ "grad_norm": 0.017415935173630714,
+ "learning_rate": 0.000402,
+ "loss": 7.574195861816406,
+ "step": 68
+ },
+ {
+ "epoch": 0.9641921397379912,
+ "grad_norm": 0.01630476303398609,
+ "learning_rate": 0.000408,
+ "loss": 7.578503131866455,
+ "step": 69
+ },
+ {
+ "epoch": 0.9781659388646288,
+ "grad_norm": 0.015402277931571007,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.54685115814209,
+ "step": 70
+ },
+ {
+ "epoch": 0.9921397379912664,
+ "grad_norm": 0.01438985951244831,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.546932220458984,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.016883183270692825,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.555042266845703,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.549549579620361,
+ "eval_runtime": 54.3422,
+ "eval_samples_per_second": 44.937,
+ "eval_steps_per_second": 1.417,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139737991266375,
+ "grad_norm": 0.01215015072375536,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.534733295440674,
+ "step": 73
+ },
+ {
+ "epoch": 1.027947598253275,
+ "grad_norm": 0.01328246109187603,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.543649196624756,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419213973799126,
+ "grad_norm": 0.012859524227678776,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.50216817855835,
+ "step": 75
+ },
+ {
+ "epoch": 1.0558951965065502,
+ "grad_norm": 0.011157970875501633,
+ "learning_rate": 0.00045,
+ "loss": 7.508391857147217,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698689956331877,
+ "grad_norm": 0.012834188528358936,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.4759087562561035,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838427947598253,
+ "grad_norm": 0.013627874664962292,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.45142936706543,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978165938864628,
+ "grad_norm": 0.01641070283949375,
+ "learning_rate": 0.000468,
+ "loss": 7.492819786071777,
+ "step": 79
+ },
+ {
+ "epoch": 1.1117903930131003,
+ "grad_norm": 0.025136210024356842,
+ "learning_rate": 0.000474,
+ "loss": 7.474215507507324,
+ "step": 80
+ },
+ {
+ "epoch": 1.125764192139738,
+ "grad_norm": 0.03659580647945404,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.475737571716309,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397379912663754,
+ "grad_norm": 0.04370221868157387,
+ "learning_rate": 0.000486,
+ "loss": 7.453543663024902,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537117903930132,
+ "grad_norm": 0.02917138673365116,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.424599647521973,
+ "step": 83
+ },
+ {
+ "epoch": 1.1676855895196507,
+ "grad_norm": 0.015414979308843613,
+ "learning_rate": 0.000498,
+ "loss": 7.388550758361816,
+ "step": 84
+ },
+ {
+ "epoch": 1.1816593886462883,
+ "grad_norm": 0.029156062752008438,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.379591941833496,
+ "step": 85
+ },
+ {
+ "epoch": 1.1956331877729258,
+ "grad_norm": 0.014958011917769909,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.372748374938965,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096069868995634,
+ "grad_norm": 0.021887343376874924,
+ "learning_rate": 0.000516,
+ "loss": 7.3589630126953125,
+ "step": 87
+ },
+ {
+ "epoch": 1.223580786026201,
+ "grad_norm": 0.02962890826165676,
+ "learning_rate": 0.000522,
+ "loss": 7.373016357421875,
+ "step": 88
+ },
+ {
+ "epoch": 1.2375545851528384,
+ "grad_norm": 0.031032968312501907,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.3282928466796875,
+ "step": 89
+ },
+ {
+ "epoch": 1.251528384279476,
+ "grad_norm": 0.027690274640917778,
+ "learning_rate": 0.000534,
+ "loss": 7.320304870605469,
+ "step": 90
+ },
+ {
+ "epoch": 1.2655021834061135,
+ "grad_norm": 0.022552549839019775,
+ "learning_rate": 0.00054,
+ "loss": 7.3051300048828125,
+ "step": 91
+ },
+ {
+ "epoch": 1.279475982532751,
+ "grad_norm": 0.04130178689956665,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.284594535827637,
+ "step": 92
+ },
+ {
+ "epoch": 1.2934497816593886,
+ "grad_norm": 0.05043136328458786,
+ "learning_rate": 0.000552,
+ "loss": 7.286007881164551,
+ "step": 93
+ },
+ {
+ "epoch": 1.3074235807860262,
+ "grad_norm": 0.04574465751647949,
+ "learning_rate": 0.000558,
+ "loss": 7.22679328918457,
+ "step": 94
+ },
+ {
+ "epoch": 1.3213973799126637,
+ "grad_norm": 0.03277682512998581,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.229741096496582,
+ "step": 95
+ },
+ {
+ "epoch": 1.3353711790393012,
+ "grad_norm": 0.022675029933452606,
+ "learning_rate": 0.00057,
+ "loss": 7.241637706756592,
+ "step": 96
+ },
+ {
+ "epoch": 1.3493449781659388,
+ "grad_norm": 0.03889699652791023,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.193673133850098,
+ "step": 97
+ },
+ {
+ "epoch": 1.3633187772925766,
+ "grad_norm": 0.029434625059366226,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.1953840255737305,
+ "step": 98
+ },
+ {
+ "epoch": 1.3772925764192139,
+ "grad_norm": 0.02118326723575592,
+ "learning_rate": 0.000588,
+ "loss": 7.178635597229004,
+ "step": 99
+ },
+ {
+ "epoch": 1.3912663755458516,
+ "grad_norm": 0.02966528758406639,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.151487350463867,
+ "step": 100
+ },
+ {
+ "epoch": 1.405240174672489,
+ "grad_norm": 0.0450727716088295,
+ "learning_rate": 0.0006,
+ "loss": 7.144834995269775,
+ "step": 101
+ },
+ {
+ "epoch": 1.4192139737991267,
+ "grad_norm": 0.08898167312145233,
+ "learning_rate": 0.0006,
+ "loss": 7.180665969848633,
+ "step": 102
+ },
+ {
+ "epoch": 1.4331877729257643,
+ "grad_norm": 0.10679084807634354,
+ "learning_rate": 0.0006,
+ "loss": 7.233458518981934,
+ "step": 103
+ },
+ {
+ "epoch": 1.4471615720524018,
+ "grad_norm": 0.04746336117386818,
+ "learning_rate": 0.0006,
+ "loss": 7.167373180389404,
+ "step": 104
+ },
+ {
+ "epoch": 1.4611353711790394,
+ "grad_norm": 0.06380590051412582,
+ "learning_rate": 0.0006,
+ "loss": 7.189356803894043,
+ "step": 105
+ },
+ {
+ "epoch": 1.475109170305677,
+ "grad_norm": 0.039717014878988266,
+ "learning_rate": 0.0006,
+ "loss": 7.096653938293457,
+ "step": 106
+ },
+ {
+ "epoch": 1.4890829694323144,
+ "grad_norm": 0.06762711703777313,
+ "learning_rate": 0.0006,
+ "loss": 7.127993583679199,
+ "step": 107
+ },
+ {
+ "epoch": 1.503056768558952,
+ "grad_norm": 0.05134489759802818,
+ "learning_rate": 0.0006,
+ "loss": 7.072257995605469,
+ "step": 108
+ },
+ {
+ "epoch": 1.5170305676855895,
+ "grad_norm": 0.062314722687006,
+ "learning_rate": 0.0006,
+ "loss": 7.073700904846191,
+ "step": 109
+ },
+ {
+ "epoch": 1.531004366812227,
+ "grad_norm": 0.03607739135622978,
+ "learning_rate": 0.0006,
+ "loss": 7.051465034484863,
+ "step": 110
+ },
+ {
+ "epoch": 1.5449781659388646,
+ "grad_norm": 0.04546204209327698,
+ "learning_rate": 0.0006,
+ "loss": 7.049814224243164,
+ "step": 111
+ },
+ {
+ "epoch": 1.5589519650655022,
+ "grad_norm": 0.0319792665541172,
+ "learning_rate": 0.0006,
+ "loss": 7.0164875984191895,
+ "step": 112
+ },
+ {
+ "epoch": 1.5729257641921397,
+ "grad_norm": 0.04590746760368347,
+ "learning_rate": 0.0006,
+ "loss": 7.001565456390381,
+ "step": 113
+ },
+ {
+ "epoch": 1.5868995633187772,
+ "grad_norm": 0.031896382570266724,
+ "learning_rate": 0.0006,
+ "loss": 6.994606018066406,
+ "step": 114
+ },
+ {
+ "epoch": 1.600873362445415,
+ "grad_norm": 0.021410338580608368,
+ "learning_rate": 0.0006,
+ "loss": 6.947071075439453,
+ "step": 115
+ },
+ {
+ "epoch": 1.6148471615720523,
+ "grad_norm": 0.030063210055232048,
+ "learning_rate": 0.0006,
+ "loss": 6.979219913482666,
+ "step": 116
+ },
+ {
+ "epoch": 1.62882096069869,
+ "grad_norm": 0.02234027162194252,
+ "learning_rate": 0.0006,
+ "loss": 6.929020881652832,
+ "step": 117
+ },
+ {
+ "epoch": 1.6427947598253274,
+ "grad_norm": 0.025586063042283058,
+ "learning_rate": 0.0006,
+ "loss": 6.9200663566589355,
+ "step": 118
+ },
+ {
+ "epoch": 1.6567685589519652,
+ "grad_norm": 0.022098371759057045,
+ "learning_rate": 0.0006,
+ "loss": 6.899832248687744,
+ "step": 119
+ },
+ {
+ "epoch": 1.6707423580786025,
+ "grad_norm": 0.019238410517573357,
+ "learning_rate": 0.0006,
+ "loss": 6.8586015701293945,
+ "step": 120
+ },
+ {
+ "epoch": 1.6847161572052403,
+ "grad_norm": 0.024153294041752815,
+ "learning_rate": 0.0006,
+ "loss": 6.867973327636719,
+ "step": 121
+ },
+ {
+ "epoch": 1.6986899563318776,
+ "grad_norm": 0.01690024696290493,
+ "learning_rate": 0.0006,
+ "loss": 6.878490447998047,
+ "step": 122
+ },
+ {
+ "epoch": 1.7126637554585153,
+ "grad_norm": 0.02171619050204754,
+ "learning_rate": 0.0006,
+ "loss": 6.853621959686279,
+ "step": 123
+ },
+ {
+ "epoch": 1.726637554585153,
+ "grad_norm": 0.020535755902528763,
+ "learning_rate": 0.0006,
+ "loss": 6.852185249328613,
+ "step": 124
+ },
+ {
+ "epoch": 1.7406113537117904,
+ "grad_norm": 0.015457311645150185,
+ "learning_rate": 0.0006,
+ "loss": 6.826596260070801,
+ "step": 125
+ },
+ {
+ "epoch": 1.754585152838428,
+ "grad_norm": 0.017492085695266724,
+ "learning_rate": 0.0006,
+ "loss": 6.842765808105469,
+ "step": 126
+ },
+ {
+ "epoch": 1.7685589519650655,
+ "grad_norm": 0.014785612002015114,
+ "learning_rate": 0.0006,
+ "loss": 6.849224090576172,
+ "step": 127
+ },
+ {
+ "epoch": 1.782532751091703,
+ "grad_norm": 0.017512250691652298,
+ "learning_rate": 0.0006,
+ "loss": 6.824787139892578,
+ "step": 128
+ },
+ {
+ "epoch": 1.7965065502183406,
+ "grad_norm": 0.01895114593207836,
+ "learning_rate": 0.0006,
+ "loss": 6.801428318023682,
+ "step": 129
+ },
+ {
+ "epoch": 1.8104803493449781,
+ "grad_norm": 0.015728816390037537,
+ "learning_rate": 0.0006,
+ "loss": 6.801990985870361,
+ "step": 130
+ },
+ {
+ "epoch": 1.8244541484716157,
+ "grad_norm": 0.014321585185825825,
+ "learning_rate": 0.0006,
+ "loss": 6.793122291564941,
+ "step": 131
+ },
+ {
+ "epoch": 1.8384279475982532,
+ "grad_norm": 0.016692014411091805,
+ "learning_rate": 0.0006,
+ "loss": 6.74687385559082,
+ "step": 132
+ },
+ {
+ "epoch": 1.8524017467248908,
+ "grad_norm": 0.016697920858860016,
+ "learning_rate": 0.0006,
+ "loss": 6.75140380859375,
+ "step": 133
+ },
+ {
+ "epoch": 1.8663755458515285,
+ "grad_norm": 0.014954701997339725,
+ "learning_rate": 0.0006,
+ "loss": 6.746084213256836,
+ "step": 134
+ },
+ {
+ "epoch": 1.8803493449781659,
+ "grad_norm": 0.013010316528379917,
+ "learning_rate": 0.0006,
+ "loss": 6.725405693054199,
+ "step": 135
+ },
+ {
+ "epoch": 1.8943231441048036,
+ "grad_norm": 0.011892660520970821,
+ "learning_rate": 0.0006,
+ "loss": 6.718758583068848,
+ "step": 136
+ },
+ {
+ "epoch": 1.908296943231441,
+ "grad_norm": 0.012127497233450413,
+ "learning_rate": 0.0006,
+ "loss": 6.708139419555664,
+ "step": 137
+ },
+ {
+ "epoch": 1.9222707423580787,
+ "grad_norm": 0.015417213551700115,
+ "learning_rate": 0.0006,
+ "loss": 6.705748558044434,
+ "step": 138
+ },
+ {
+ "epoch": 1.936244541484716,
+ "grad_norm": 0.03063729591667652,
+ "learning_rate": 0.0006,
+ "loss": 6.691249847412109,
+ "step": 139
+ },
+ {
+ "epoch": 1.9502183406113538,
+ "grad_norm": 0.07376791536808014,
+ "learning_rate": 0.0006,
+ "loss": 6.71767520904541,
+ "step": 140
+ },
+ {
+ "epoch": 1.9641921397379911,
+ "grad_norm": 0.14157423377037048,
+ "learning_rate": 0.0006,
+ "loss": 6.787544250488281,
+ "step": 141
+ },
+ {
+ "epoch": 1.9781659388646289,
+ "grad_norm": 0.09186933934688568,
+ "learning_rate": 0.0006,
+ "loss": 6.73362398147583,
+ "step": 142
+ },
+ {
+ "epoch": 1.9921397379912664,
+ "grad_norm": 0.06612848490476608,
+ "learning_rate": 0.0006,
+ "loss": 6.719516754150391,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.048072297126054764,
+ "learning_rate": 0.0006,
+ "loss": 6.666120529174805,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 6.7162394523620605,
+ "eval_runtime": 50.5907,
+ "eval_samples_per_second": 48.27,
+ "eval_steps_per_second": 1.522,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139737991266378,
+ "grad_norm": 0.03777749463915825,
+ "learning_rate": 0.0006,
+ "loss": 6.686484336853027,
+ "step": 145
+ },
+ {
+ "epoch": 2.027947598253275,
+ "grad_norm": 0.04378646984696388,
+ "learning_rate": 0.0006,
+ "loss": 6.679071426391602,
+ "step": 146
+ },
+ {
+ "epoch": 2.041921397379913,
+ "grad_norm": 0.027715124189853668,
+ "learning_rate": 0.0006,
+ "loss": 6.6776323318481445,
+ "step": 147
+ },
+ {
+ "epoch": 2.05589519650655,
+ "grad_norm": 0.03411925211548805,
+ "learning_rate": 0.0006,
+ "loss": 6.643917083740234,
+ "step": 148
+ },
+ {
+ "epoch": 2.069868995633188,
+ "grad_norm": 0.034444212913513184,
+ "learning_rate": 0.0006,
+ "loss": 6.67141056060791,
+ "step": 149
+ },
+ {
+ "epoch": 2.0838427947598253,
+ "grad_norm": 0.0387650802731514,
+ "learning_rate": 0.0006,
+ "loss": 6.65234375,
+ "step": 150
+ },
+ {
+ "epoch": 2.097816593886463,
+ "grad_norm": 0.03921861574053764,
+ "learning_rate": 0.0006,
+ "loss": 6.624712944030762,
+ "step": 151
+ },
+ {
+ "epoch": 2.1117903930131003,
+ "grad_norm": 0.02531580813229084,
+ "learning_rate": 0.0006,
+ "loss": 6.617608547210693,
+ "step": 152
+ },
+ {
+ "epoch": 2.125764192139738,
+ "grad_norm": 0.03220974653959274,
+ "learning_rate": 0.0006,
+ "loss": 6.587964057922363,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397379912663754,
+ "grad_norm": 0.03923291340470314,
+ "learning_rate": 0.0006,
+ "loss": 6.588845252990723,
+ "step": 154
+ },
+ {
+ "epoch": 2.153711790393013,
+ "grad_norm": 0.028337281197309494,
+ "learning_rate": 0.0006,
+ "loss": 6.5807952880859375,
+ "step": 155
+ },
+ {
+ "epoch": 2.1676855895196505,
+ "grad_norm": 0.01873156800866127,
+ "learning_rate": 0.0006,
+ "loss": 6.560453414916992,
+ "step": 156
+ },
+ {
+ "epoch": 2.1816593886462883,
+ "grad_norm": 0.027509493753314018,
+ "learning_rate": 0.0006,
+ "loss": 6.5615363121032715,
+ "step": 157
+ },
+ {
+ "epoch": 2.1956331877729256,
+ "grad_norm": 0.025428347289562225,
+ "learning_rate": 0.0006,
+ "loss": 6.5283966064453125,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096069868995634,
+ "grad_norm": 0.02118629403412342,
+ "learning_rate": 0.0006,
+ "loss": 6.526224136352539,
+ "step": 159
+ },
+ {
+ "epoch": 2.2235807860262007,
+ "grad_norm": 0.03233652561903,
+ "learning_rate": 0.0006,
+ "loss": 6.536041259765625,
+ "step": 160
+ },
+ {
+ "epoch": 2.2375545851528384,
+ "grad_norm": 0.04605546221137047,
+ "learning_rate": 0.0006,
+ "loss": 6.537662029266357,
+ "step": 161
+ },
+ {
+ "epoch": 2.251528384279476,
+ "grad_norm": 0.05192062631249428,
+ "learning_rate": 0.0006,
+ "loss": 6.551901817321777,
+ "step": 162
+ },
+ {
+ "epoch": 2.2655021834061135,
+ "grad_norm": 0.042231615632772446,
+ "learning_rate": 0.0006,
+ "loss": 6.511076927185059,
+ "step": 163
+ },
+ {
+ "epoch": 2.279475982532751,
+ "grad_norm": 0.04085887596011162,
+ "learning_rate": 0.0006,
+ "loss": 6.503472328186035,
+ "step": 164
+ },
+ {
+ "epoch": 2.2934497816593886,
+ "grad_norm": 0.031182587146759033,
+ "learning_rate": 0.0006,
+ "loss": 6.504403591156006,
+ "step": 165
+ },
+ {
+ "epoch": 2.3074235807860264,
+ "grad_norm": 0.032555561512708664,
+ "learning_rate": 0.0006,
+ "loss": 6.4552764892578125,
+ "step": 166
+ },
+ {
+ "epoch": 2.3213973799126637,
+ "grad_norm": 0.04939635097980499,
+ "learning_rate": 0.0006,
+ "loss": 6.495351791381836,
+ "step": 167
+ },
+ {
+ "epoch": 2.3353711790393015,
+ "grad_norm": 0.037503793835639954,
+ "learning_rate": 0.0006,
+ "loss": 6.4742560386657715,
+ "step": 168
+ },
+ {
+ "epoch": 2.349344978165939,
+ "grad_norm": 0.02366613782942295,
+ "learning_rate": 0.0006,
+ "loss": 6.478525161743164,
+ "step": 169
+ },
+ {
+ "epoch": 2.3633187772925766,
+ "grad_norm": 0.022314894944429398,
+ "learning_rate": 0.0006,
+ "loss": 6.414134979248047,
+ "step": 170
+ },
+ {
+ "epoch": 2.377292576419214,
+ "grad_norm": 0.030494702979922295,
+ "learning_rate": 0.0006,
+ "loss": 6.444867134094238,
+ "step": 171
+ },
+ {
+ "epoch": 2.3912663755458516,
+ "grad_norm": 0.04064486175775528,
+ "learning_rate": 0.0006,
+ "loss": 6.417036056518555,
+ "step": 172
+ },
+ {
+ "epoch": 2.405240174672489,
+ "grad_norm": 0.03061651438474655,
+ "learning_rate": 0.0006,
+ "loss": 6.423735618591309,
+ "step": 173
+ },
+ {
+ "epoch": 2.4192139737991267,
+ "grad_norm": 0.02046056278049946,
+ "learning_rate": 0.0006,
+ "loss": 6.419736862182617,
+ "step": 174
+ },
+ {
+ "epoch": 2.433187772925764,
+ "grad_norm": 0.02530163712799549,
+ "learning_rate": 0.0006,
+ "loss": 6.399930953979492,
+ "step": 175
+ },
+ {
+ "epoch": 2.447161572052402,
+ "grad_norm": 0.03588842228055,
+ "learning_rate": 0.0006,
+ "loss": 6.418618202209473,
+ "step": 176
+ },
+ {
+ "epoch": 2.461135371179039,
+ "grad_norm": 0.04048234224319458,
+ "learning_rate": 0.0006,
+ "loss": 6.390285491943359,
+ "step": 177
+ },
+ {
+ "epoch": 2.475109170305677,
+ "grad_norm": 0.039080191403627396,
+ "learning_rate": 0.0006,
+ "loss": 6.3688530921936035,
+ "step": 178
+ },
+ {
+ "epoch": 2.489082969432314,
+ "grad_norm": 0.029000122100114822,
+ "learning_rate": 0.0006,
+ "loss": 6.369181156158447,
+ "step": 179
+ },
+ {
+ "epoch": 2.503056768558952,
+ "grad_norm": 0.01609761081635952,
+ "learning_rate": 0.0006,
+ "loss": 6.359917640686035,
+ "step": 180
+ },
+ {
+ "epoch": 2.5170305676855893,
+ "grad_norm": 0.02305005118250847,
+ "learning_rate": 0.0006,
+ "loss": 6.347358226776123,
+ "step": 181
+ },
+ {
+ "epoch": 2.531004366812227,
+ "grad_norm": 0.03316781297326088,
+ "learning_rate": 0.0006,
+ "loss": 6.36626672744751,
+ "step": 182
+ },
+ {
+ "epoch": 2.544978165938865,
+ "grad_norm": 0.05111207440495491,
+ "learning_rate": 0.0006,
+ "loss": 6.380453109741211,
+ "step": 183
+ },
+ {
+ "epoch": 2.558951965065502,
+ "grad_norm": 0.062241602689027786,
+ "learning_rate": 0.0006,
+ "loss": 6.353237152099609,
+ "step": 184
+ },
+ {
+ "epoch": 2.5729257641921395,
+ "grad_norm": 0.060149725526571274,
+ "learning_rate": 0.0006,
+ "loss": 6.358938694000244,
+ "step": 185
+ },
+ {
+ "epoch": 2.5868995633187772,
+ "grad_norm": 0.04228121414780617,
+ "learning_rate": 0.0006,
+ "loss": 6.310116767883301,
+ "step": 186
+ },
+ {
+ "epoch": 2.600873362445415,
+ "grad_norm": 0.019458215683698654,
+ "learning_rate": 0.0006,
+ "loss": 6.284702777862549,
+ "step": 187
+ },
+ {
+ "epoch": 2.6148471615720523,
+ "grad_norm": 0.0342358835041523,
+ "learning_rate": 0.0006,
+ "loss": 6.316659927368164,
+ "step": 188
+ },
+ {
+ "epoch": 2.62882096069869,
+ "grad_norm": 0.04139583557844162,
+ "learning_rate": 0.0006,
+ "loss": 6.301124572753906,
+ "step": 189
+ },
+ {
+ "epoch": 2.6427947598253274,
+ "grad_norm": 0.028264787048101425,
+ "learning_rate": 0.0006,
+ "loss": 6.298510551452637,
+ "step": 190
+ },
+ {
+ "epoch": 2.656768558951965,
+ "grad_norm": 0.023622136563062668,
+ "learning_rate": 0.0006,
+ "loss": 6.2571210861206055,
+ "step": 191
+ },
+ {
+ "epoch": 2.6707423580786025,
+ "grad_norm": 0.039508845657110214,
+ "learning_rate": 0.0006,
+ "loss": 6.267218589782715,
+ "step": 192
+ },
+ {
+ "epoch": 2.6847161572052403,
+ "grad_norm": 0.043358899652957916,
+ "learning_rate": 0.0006,
+ "loss": 6.279658794403076,
+ "step": 193
+ },
+ {
+ "epoch": 2.6986899563318776,
+ "grad_norm": 0.04134640842676163,
+ "learning_rate": 0.0006,
+ "loss": 6.277159214019775,
+ "step": 194
+ },
+ {
+ "epoch": 2.7126637554585153,
+ "grad_norm": 0.05406952276825905,
+ "learning_rate": 0.0006,
+ "loss": 6.295559883117676,
+ "step": 195
+ },
+ {
+ "epoch": 2.726637554585153,
+ "grad_norm": 0.04557774215936661,
+ "learning_rate": 0.0006,
+ "loss": 6.260174751281738,
+ "step": 196
+ },
+ {
+ "epoch": 2.7406113537117904,
+ "grad_norm": 0.04542337730526924,
+ "learning_rate": 0.0006,
+ "loss": 6.244534492492676,
+ "step": 197
+ },
+ {
+ "epoch": 2.7545851528384278,
+ "grad_norm": 0.06924881041049957,
+ "learning_rate": 0.0006,
+ "loss": 6.2060723304748535,
+ "step": 198
+ },
+ {
+ "epoch": 2.7685589519650655,
+ "grad_norm": 0.06679725646972656,
+ "learning_rate": 0.0006,
+ "loss": 6.259133815765381,
+ "step": 199
+ },
+ {
+ "epoch": 2.7825327510917033,
+ "grad_norm": 0.05039471387863159,
+ "learning_rate": 0.0006,
+ "loss": 6.239280700683594,
+ "step": 200
+ },
+ {
+ "epoch": 2.7965065502183406,
+ "grad_norm": 0.05935394763946533,
+ "learning_rate": 0.0006,
+ "loss": 6.242481231689453,
+ "step": 201
+ },
+ {
+ "epoch": 2.810480349344978,
+ "grad_norm": 0.0486418716609478,
+ "learning_rate": 0.0006,
+ "loss": 6.239593505859375,
+ "step": 202
+ },
+ {
+ "epoch": 2.8244541484716157,
+ "grad_norm": 0.05010748282074928,
+ "learning_rate": 0.0006,
+ "loss": 6.2328948974609375,
+ "step": 203
+ },
+ {
+ "epoch": 2.8384279475982535,
+ "grad_norm": 0.03444438800215721,
+ "learning_rate": 0.0006,
+ "loss": 6.200089454650879,
+ "step": 204
+ },
+ {
+ "epoch": 2.8524017467248908,
+ "grad_norm": 0.043253373354673386,
+ "learning_rate": 0.0006,
+ "loss": 6.2089433670043945,
+ "step": 205
+ },
+ {
+ "epoch": 2.8663755458515285,
+ "grad_norm": 0.047505684196949005,
+ "learning_rate": 0.0006,
+ "loss": 6.220322608947754,
+ "step": 206
+ },
+ {
+ "epoch": 2.880349344978166,
+ "grad_norm": 0.04393792524933815,
+ "learning_rate": 0.0006,
+ "loss": 6.178770542144775,
+ "step": 207
+ },
+ {
+ "epoch": 2.8943231441048036,
+ "grad_norm": 0.04025835916399956,
+ "learning_rate": 0.0006,
+ "loss": 6.160248756408691,
+ "step": 208
+ },
+ {
+ "epoch": 2.908296943231441,
+ "grad_norm": 0.03877986595034599,
+ "learning_rate": 0.0006,
+ "loss": 6.164917945861816,
+ "step": 209
+ },
+ {
+ "epoch": 2.9222707423580787,
+ "grad_norm": 0.03666771203279495,
+ "learning_rate": 0.0006,
+ "loss": 6.172199249267578,
+ "step": 210
+ },
+ {
+ "epoch": 2.936244541484716,
+ "grad_norm": 0.028036516159772873,
+ "learning_rate": 0.0006,
+ "loss": 6.179510116577148,
+ "step": 211
+ },
+ {
+ "epoch": 2.950218340611354,
+ "grad_norm": 0.021492617204785347,
+ "learning_rate": 0.0006,
+ "loss": 6.1275153160095215,
+ "step": 212
+ },
+ {
+ "epoch": 2.964192139737991,
+ "grad_norm": 0.026816558092832565,
+ "learning_rate": 0.0006,
+ "loss": 6.131775856018066,
+ "step": 213
+ },
+ {
+ "epoch": 2.978165938864629,
+ "grad_norm": 0.03757898136973381,
+ "learning_rate": 0.0006,
+ "loss": 6.135777473449707,
+ "step": 214
+ },
+ {
+ "epoch": 2.992139737991266,
+ "grad_norm": 0.06036437302827835,
+ "learning_rate": 0.0006,
+ "loss": 6.146076202392578,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.09846952557563782,
+ "learning_rate": 0.0006,
+ "loss": 6.218435287475586,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.23890495300293,
+ "eval_runtime": 50.6822,
+ "eval_samples_per_second": 48.183,
+ "eval_steps_per_second": 1.519,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139737991266378,
+ "grad_norm": 0.10463741421699524,
+ "learning_rate": 0.0006,
+ "loss": 6.197120666503906,
+ "step": 217
+ },
+ {
+ "epoch": 3.027947598253275,
+ "grad_norm": 0.10212419927120209,
+ "learning_rate": 0.0006,
+ "loss": 6.178340911865234,
+ "step": 218
+ },
+ {
+ "epoch": 3.041921397379913,
+ "grad_norm": 0.08038751780986786,
+ "learning_rate": 0.0006,
+ "loss": 6.217406749725342,
+ "step": 219
+ },
+ {
+ "epoch": 3.05589519650655,
+ "grad_norm": 0.04787508398294449,
+ "learning_rate": 0.0006,
+ "loss": 6.155381679534912,
+ "step": 220
+ },
+ {
+ "epoch": 3.069868995633188,
+ "grad_norm": 0.06880322843790054,
+ "learning_rate": 0.0006,
+ "loss": 6.121614933013916,
+ "step": 221
+ },
+ {
+ "epoch": 3.0838427947598253,
+ "grad_norm": 0.03749438002705574,
+ "learning_rate": 0.0006,
+ "loss": 6.120484352111816,
+ "step": 222
+ },
+ {
+ "epoch": 3.097816593886463,
+ "grad_norm": 0.03875046223402023,
+ "learning_rate": 0.0006,
+ "loss": 6.12362003326416,
+ "step": 223
+ },
+ {
+ "epoch": 3.1117903930131003,
+ "grad_norm": 0.030663209035992622,
+ "learning_rate": 0.0006,
+ "loss": 6.1111063957214355,
+ "step": 224
+ },
+ {
+ "epoch": 3.125764192139738,
+ "grad_norm": 0.029520904645323753,
+ "learning_rate": 0.0006,
+ "loss": 6.130336761474609,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397379912663754,
+ "grad_norm": 0.02854953519999981,
+ "learning_rate": 0.0006,
+ "loss": 6.086193084716797,
+ "step": 226
+ },
+ {
+ "epoch": 3.153711790393013,
+ "grad_norm": 0.027147898450493813,
+ "learning_rate": 0.0006,
+ "loss": 6.066827774047852,
+ "step": 227
+ },
+ {
+ "epoch": 3.1676855895196505,
+ "grad_norm": 0.025577887892723083,
+ "learning_rate": 0.0006,
+ "loss": 6.070775032043457,
+ "step": 228
+ },
+ {
+ "epoch": 3.1816593886462883,
+ "grad_norm": 0.026318276301026344,
+ "learning_rate": 0.0006,
+ "loss": 6.064469814300537,
+ "step": 229
+ },
+ {
+ "epoch": 3.1956331877729256,
+ "grad_norm": 0.02595221996307373,
+ "learning_rate": 0.0006,
+ "loss": 6.066489219665527,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096069868995634,
+ "grad_norm": 0.0248890221118927,
+ "learning_rate": 0.0006,
+ "loss": 6.032470703125,
+ "step": 231
+ },
+ {
+ "epoch": 3.2235807860262007,
+ "grad_norm": 0.017041699960827827,
+ "learning_rate": 0.0006,
+ "loss": 6.056160926818848,
+ "step": 232
+ },
+ {
+ "epoch": 3.2375545851528384,
+ "grad_norm": 0.020971592515707016,
+ "learning_rate": 0.0006,
+ "loss": 6.024506568908691,
+ "step": 233
+ },
+ {
+ "epoch": 3.251528384279476,
+ "grad_norm": 0.01897028088569641,
+ "learning_rate": 0.0006,
+ "loss": 6.035656929016113,
+ "step": 234
+ },
+ {
+ "epoch": 3.2655021834061135,
+ "grad_norm": 0.027151981368660927,
+ "learning_rate": 0.0006,
+ "loss": 6.026547431945801,
+ "step": 235
+ },
+ {
+ "epoch": 3.279475982532751,
+ "grad_norm": 0.029453502967953682,
+ "learning_rate": 0.0006,
+ "loss": 5.981723785400391,
+ "step": 236
+ },
+ {
+ "epoch": 3.2934497816593886,
+ "grad_norm": 0.027771083638072014,
+ "learning_rate": 0.0006,
+ "loss": 6.019796371459961,
+ "step": 237
+ },
+ {
+ "epoch": 3.3074235807860264,
+ "grad_norm": 0.02605084516108036,
+ "learning_rate": 0.0006,
+ "loss": 5.984506607055664,
+ "step": 238
+ },
+ {
+ "epoch": 3.3213973799126637,
+ "grad_norm": 0.022903922945261,
+ "learning_rate": 0.0006,
+ "loss": 6.023873805999756,
+ "step": 239
+ },
+ {
+ "epoch": 3.3353711790393015,
+ "grad_norm": 0.01976492442190647,
+ "learning_rate": 0.0006,
+ "loss": 6.009030342102051,
+ "step": 240
+ },
+ {
+ "epoch": 3.349344978165939,
+ "grad_norm": 0.018872970715165138,
+ "learning_rate": 0.0006,
+ "loss": 5.970742702484131,
+ "step": 241
+ },
+ {
+ "epoch": 3.3633187772925766,
+ "grad_norm": 0.017447829246520996,
+ "learning_rate": 0.0006,
+ "loss": 5.968851089477539,
+ "step": 242
+ },
+ {
+ "epoch": 3.377292576419214,
+ "grad_norm": 0.025419825688004494,
+ "learning_rate": 0.0006,
+ "loss": 5.956470489501953,
+ "step": 243
+ },
+ {
+ "epoch": 3.3912663755458516,
+ "grad_norm": 0.03654123470187187,
+ "learning_rate": 0.0006,
+ "loss": 5.94770622253418,
+ "step": 244
+ },
+ {
+ "epoch": 3.405240174672489,
+ "grad_norm": 0.05607098713517189,
+ "learning_rate": 0.0006,
+ "loss": 6.008593559265137,
+ "step": 245
+ },
+ {
+ "epoch": 3.4192139737991267,
+ "grad_norm": 0.07973720878362656,
+ "learning_rate": 0.0006,
+ "loss": 5.9966888427734375,
+ "step": 246
+ },
+ {
+ "epoch": 3.433187772925764,
+ "grad_norm": 0.10906023532152176,
+ "learning_rate": 0.0006,
+ "loss": 6.054642200469971,
+ "step": 247
+ },
+ {
+ "epoch": 3.447161572052402,
+ "grad_norm": 0.09792660176753998,
+ "learning_rate": 0.0006,
+ "loss": 6.067026138305664,
+ "step": 248
+ },
+ {
+ "epoch": 3.461135371179039,
+ "grad_norm": 0.07395700365304947,
+ "learning_rate": 0.0006,
+ "loss": 6.01310920715332,
+ "step": 249
+ },
+ {
+ "epoch": 3.475109170305677,
+ "grad_norm": 0.10172071307897568,
+ "learning_rate": 0.0006,
+ "loss": 6.048509120941162,
+ "step": 250
+ },
+ {
+ "epoch": 3.489082969432314,
+ "grad_norm": 0.0717678815126419,
+ "learning_rate": 0.0006,
+ "loss": 6.055008888244629,
+ "step": 251
+ },
+ {
+ "epoch": 3.503056768558952,
+ "grad_norm": 0.06398089975118637,
+ "learning_rate": 0.0006,
+ "loss": 5.9677276611328125,
+ "step": 252
+ },
+ {
+ "epoch": 3.5170305676855893,
+ "grad_norm": 0.0643860474228859,
+ "learning_rate": 0.0006,
+ "loss": 5.957507133483887,
+ "step": 253
+ },
+ {
+ "epoch": 3.531004366812227,
+ "grad_norm": 0.03472325950860977,
+ "learning_rate": 0.0006,
+ "loss": 5.952362060546875,
+ "step": 254
+ },
+ {
+ "epoch": 3.544978165938865,
+ "grad_norm": 0.03918307647109032,
+ "learning_rate": 0.0006,
+ "loss": 5.957100868225098,
+ "step": 255
+ },
+ {
+ "epoch": 3.558951965065502,
+ "grad_norm": 0.03519073501229286,
+ "learning_rate": 0.0006,
+ "loss": 5.97830867767334,
+ "step": 256
+ },
+ {
+ "epoch": 3.5729257641921395,
+ "grad_norm": 0.03435497358441353,
+ "learning_rate": 0.0006,
+ "loss": 5.93912410736084,
+ "step": 257
+ },
+ {
+ "epoch": 3.5868995633187772,
+ "grad_norm": 0.026064487174153328,
+ "learning_rate": 0.0006,
+ "loss": 5.91353702545166,
+ "step": 258
+ },
+ {
+ "epoch": 3.600873362445415,
+ "grad_norm": 0.03159152343869209,
+ "learning_rate": 0.0006,
+ "loss": 5.913291931152344,
+ "step": 259
+ },
+ {
+ "epoch": 3.6148471615720523,
+ "grad_norm": 0.02195592038333416,
+ "learning_rate": 0.0006,
+ "loss": 5.906322479248047,
+ "step": 260
+ },
+ {
+ "epoch": 3.62882096069869,
+ "grad_norm": 0.020358966663479805,
+ "learning_rate": 0.0006,
+ "loss": 5.891860008239746,
+ "step": 261
+ },
+ {
+ "epoch": 3.6427947598253274,
+ "grad_norm": 0.01964488998055458,
+ "learning_rate": 0.0006,
+ "loss": 5.881132125854492,
+ "step": 262
+ },
+ {
+ "epoch": 3.656768558951965,
+ "grad_norm": 0.022447235882282257,
+ "learning_rate": 0.0006,
+ "loss": 5.8846940994262695,
+ "step": 263
+ },
+ {
+ "epoch": 3.6707423580786025,
+ "grad_norm": 0.018359875306487083,
+ "learning_rate": 0.0006,
+ "loss": 5.8861188888549805,
+ "step": 264
+ },
+ {
+ "epoch": 3.6847161572052403,
+ "grad_norm": 0.018481185659766197,
+ "learning_rate": 0.0006,
+ "loss": 5.874635696411133,
+ "step": 265
+ },
+ {
+ "epoch": 3.6986899563318776,
+ "grad_norm": 0.016943952068686485,
+ "learning_rate": 0.0006,
+ "loss": 5.8380126953125,
+ "step": 266
+ },
+ {
+ "epoch": 3.7126637554585153,
+ "grad_norm": 0.016593772917985916,
+ "learning_rate": 0.0006,
+ "loss": 5.855746269226074,
+ "step": 267
+ },
+ {
+ "epoch": 3.726637554585153,
+ "grad_norm": 0.018204636871814728,
+ "learning_rate": 0.0006,
+ "loss": 5.873927116394043,
+ "step": 268
+ },
+ {
+ "epoch": 3.7406113537117904,
+ "grad_norm": 0.017277248203754425,
+ "learning_rate": 0.0006,
+ "loss": 5.855231285095215,
+ "step": 269
+ },
+ {
+ "epoch": 3.7545851528384278,
+ "grad_norm": 0.01717568188905716,
+ "learning_rate": 0.0006,
+ "loss": 5.847787857055664,
+ "step": 270
+ },
+ {
+ "epoch": 3.7685589519650655,
+ "grad_norm": 0.01537331473082304,
+ "learning_rate": 0.0006,
+ "loss": 5.852605819702148,
+ "step": 271
+ },
+ {
+ "epoch": 3.7825327510917033,
+ "grad_norm": 0.01504798699170351,
+ "learning_rate": 0.0006,
+ "loss": 5.825901031494141,
+ "step": 272
+ },
+ {
+ "epoch": 3.7965065502183406,
+ "grad_norm": 0.023221664130687714,
+ "learning_rate": 0.0006,
+ "loss": 5.812404155731201,
+ "step": 273
+ },
+ {
+ "epoch": 3.810480349344978,
+ "grad_norm": 0.0397733673453331,
+ "learning_rate": 0.0006,
+ "loss": 5.804308891296387,
+ "step": 274
+ },
+ {
+ "epoch": 3.8244541484716157,
+ "grad_norm": 0.05233687534928322,
+ "learning_rate": 0.0006,
+ "loss": 5.788049697875977,
+ "step": 275
+ },
+ {
+ "epoch": 3.8384279475982535,
+ "grad_norm": 0.05563921108841896,
+ "learning_rate": 0.0006,
+ "loss": 5.811939239501953,
+ "step": 276
+ },
+ {
+ "epoch": 3.8524017467248908,
+ "grad_norm": 0.0501336008310318,
+ "learning_rate": 0.0006,
+ "loss": 5.810712814331055,
+ "step": 277
+ },
+ {
+ "epoch": 3.8663755458515285,
+ "grad_norm": 0.07601612061262131,
+ "learning_rate": 0.0006,
+ "loss": 5.846009254455566,
+ "step": 278
+ },
+ {
+ "epoch": 3.880349344978166,
+ "grad_norm": 0.07927536964416504,
+ "learning_rate": 0.0006,
+ "loss": 5.846945285797119,
+ "step": 279
+ },
+ {
+ "epoch": 3.8943231441048036,
+ "grad_norm": 0.05778975039720535,
+ "learning_rate": 0.0006,
+ "loss": 5.8009209632873535,
+ "step": 280
+ },
+ {
+ "epoch": 3.908296943231441,
+ "grad_norm": 0.06650745123624802,
+ "learning_rate": 0.0006,
+ "loss": 5.825387001037598,
+ "step": 281
+ },
+ {
+ "epoch": 3.9222707423580787,
+ "grad_norm": 0.05610830709338188,
+ "learning_rate": 0.0006,
+ "loss": 5.854207992553711,
+ "step": 282
+ },
+ {
+ "epoch": 3.936244541484716,
+ "grad_norm": 0.03054177202284336,
+ "learning_rate": 0.0006,
+ "loss": 5.8229875564575195,
+ "step": 283
+ },
+ {
+ "epoch": 3.950218340611354,
+ "grad_norm": 0.03929241746664047,
+ "learning_rate": 0.0006,
+ "loss": 5.8026041984558105,
+ "step": 284
+ },
+ {
+ "epoch": 3.964192139737991,
+ "grad_norm": 0.03007139079272747,
+ "learning_rate": 0.0006,
+ "loss": 5.7833709716796875,
+ "step": 285
+ },
+ {
+ "epoch": 3.978165938864629,
+ "grad_norm": 0.03231097757816315,
+ "learning_rate": 0.0006,
+ "loss": 5.7852091789245605,
+ "step": 286
+ },
+ {
+ "epoch": 3.992139737991266,
+ "grad_norm": 0.02939445711672306,
+ "learning_rate": 0.0006,
+ "loss": 5.753163814544678,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.02993260696530342,
+ "learning_rate": 0.0006,
+ "loss": 5.762526512145996,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 5.799882888793945,
+ "eval_runtime": 50.8936,
+ "eval_samples_per_second": 47.982,
+ "eval_steps_per_second": 1.513,
+ "step": 288
+ },
+ {
+ "epoch": 4.013973799126638,
+ "grad_norm": 0.025836583226919174,
+ "learning_rate": 0.0006,
+ "loss": 5.74060583114624,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279475982532755,
+ "grad_norm": 0.02240375429391861,
+ "learning_rate": 0.0006,
+ "loss": 5.744357109069824,
+ "step": 290
+ },
+ {
+ "epoch": 4.041921397379912,
+ "grad_norm": 0.019645314663648605,
+ "learning_rate": 0.0006,
+ "loss": 5.714840412139893,
+ "step": 291
+ },
+ {
+ "epoch": 4.05589519650655,
+ "grad_norm": 0.01903143897652626,
+ "learning_rate": 0.0006,
+ "loss": 5.749794006347656,
+ "step": 292
+ },
+ {
+ "epoch": 4.069868995633188,
+ "grad_norm": 0.020970258861780167,
+ "learning_rate": 0.0006,
+ "loss": 5.684886932373047,
+ "step": 293
+ },
+ {
+ "epoch": 4.083842794759826,
+ "grad_norm": 0.022254586219787598,
+ "learning_rate": 0.0006,
+ "loss": 5.690360069274902,
+ "step": 294
+ },
+ {
+ "epoch": 4.097816593886463,
+ "grad_norm": 0.024622811004519463,
+ "learning_rate": 0.0006,
+ "loss": 5.7078962326049805,
+ "step": 295
+ },
+ {
+ "epoch": 4.1117903930131,
+ "grad_norm": 0.023592552170157433,
+ "learning_rate": 0.0006,
+ "loss": 5.7039971351623535,
+ "step": 296
+ },
+ {
+ "epoch": 4.125764192139738,
+ "grad_norm": 0.02667587623000145,
+ "learning_rate": 0.0006,
+ "loss": 5.677852630615234,
+ "step": 297
+ },
+ {
+ "epoch": 4.139737991266376,
+ "grad_norm": 0.03330948203802109,
+ "learning_rate": 0.0006,
+ "loss": 5.688773155212402,
+ "step": 298
+ },
+ {
+ "epoch": 4.153711790393013,
+ "grad_norm": 0.045157793909311295,
+ "learning_rate": 0.0006,
+ "loss": 5.675937652587891,
+ "step": 299
+ },
+ {
+ "epoch": 4.1676855895196505,
+ "grad_norm": 0.07034408301115036,
+ "learning_rate": 0.0006,
+ "loss": 5.687074661254883,
+ "step": 300
+ },
+ {
+ "epoch": 4.181659388646288,
+ "grad_norm": 0.10193091630935669,
+ "learning_rate": 0.0006,
+ "loss": 5.748222351074219,
+ "step": 301
+ },
+ {
+ "epoch": 4.195633187772926,
+ "grad_norm": 0.09606931358575821,
+ "learning_rate": 0.0006,
+ "loss": 5.767232894897461,
+ "step": 302
+ },
+ {
+ "epoch": 4.209606986899563,
+ "grad_norm": 0.05994758382439613,
+ "learning_rate": 0.0006,
+ "loss": 5.723153114318848,
+ "step": 303
+ },
+ {
+ "epoch": 4.223580786026201,
+ "grad_norm": 0.045849986374378204,
+ "learning_rate": 0.0006,
+ "loss": 5.7005815505981445,
+ "step": 304
+ },
+ {
+ "epoch": 4.2375545851528384,
+ "grad_norm": 0.04177941009402275,
+ "learning_rate": 0.0006,
+ "loss": 5.679755210876465,
+ "step": 305
+ },
+ {
+ "epoch": 4.251528384279476,
+ "grad_norm": 0.03307238593697548,
+ "learning_rate": 0.0006,
+ "loss": 5.677393913269043,
+ "step": 306
+ },
+ {
+ "epoch": 4.265502183406113,
+ "grad_norm": 0.04340110346674919,
+ "learning_rate": 0.0006,
+ "loss": 5.702075004577637,
+ "step": 307
+ },
+ {
+ "epoch": 4.279475982532751,
+ "grad_norm": 0.04797970876097679,
+ "learning_rate": 0.0006,
+ "loss": 5.650345802307129,
+ "step": 308
+ },
+ {
+ "epoch": 4.293449781659389,
+ "grad_norm": 0.04946571961045265,
+ "learning_rate": 0.0006,
+ "loss": 5.675044059753418,
+ "step": 309
+ },
+ {
+ "epoch": 4.307423580786026,
+ "grad_norm": 0.03254636004567146,
+ "learning_rate": 0.0006,
+ "loss": 5.622986793518066,
+ "step": 310
+ },
+ {
+ "epoch": 4.321397379912664,
+ "grad_norm": 0.032069381326436996,
+ "learning_rate": 0.0006,
+ "loss": 5.629563331604004,
+ "step": 311
+ },
+ {
+ "epoch": 4.335371179039301,
+ "grad_norm": 0.033597469329833984,
+ "learning_rate": 0.0006,
+ "loss": 5.612854480743408,
+ "step": 312
+ },
+ {
+ "epoch": 4.349344978165939,
+ "grad_norm": 0.02717825584113598,
+ "learning_rate": 0.0006,
+ "loss": 5.652135372161865,
+ "step": 313
+ },
+ {
+ "epoch": 4.3633187772925766,
+ "grad_norm": 0.03312784433364868,
+ "learning_rate": 0.0006,
+ "loss": 5.649629592895508,
+ "step": 314
+ },
+ {
+ "epoch": 4.377292576419214,
+ "grad_norm": 0.03037389926612377,
+ "learning_rate": 0.0006,
+ "loss": 5.6194305419921875,
+ "step": 315
+ },
+ {
+ "epoch": 4.391266375545851,
+ "grad_norm": 0.03778672590851784,
+ "learning_rate": 0.0006,
+ "loss": 5.641755104064941,
+ "step": 316
+ },
+ {
+ "epoch": 4.405240174672489,
+ "grad_norm": 0.053473301231861115,
+ "learning_rate": 0.0006,
+ "loss": 5.621832847595215,
+ "step": 317
+ },
+ {
+ "epoch": 4.419213973799127,
+ "grad_norm": 0.06915664672851562,
+ "learning_rate": 0.0006,
+ "loss": 5.601483345031738,
+ "step": 318
+ },
+ {
+ "epoch": 4.4331877729257645,
+ "grad_norm": 0.06667220592498779,
+ "learning_rate": 0.0006,
+ "loss": 5.642349720001221,
+ "step": 319
+ },
+ {
+ "epoch": 4.447161572052401,
+ "grad_norm": 0.037290167063474655,
+ "learning_rate": 0.0006,
+ "loss": 5.604238510131836,
+ "step": 320
+ },
+ {
+ "epoch": 4.461135371179039,
+ "grad_norm": 0.04003678262233734,
+ "learning_rate": 0.0006,
+ "loss": 5.593315601348877,
+ "step": 321
+ },
+ {
+ "epoch": 4.475109170305677,
+ "grad_norm": 0.028076812624931335,
+ "learning_rate": 0.0006,
+ "loss": 5.566408157348633,
+ "step": 322
+ },
+ {
+ "epoch": 4.489082969432315,
+ "grad_norm": 0.031247343868017197,
+ "learning_rate": 0.0006,
+ "loss": 5.6215410232543945,
+ "step": 323
+ },
+ {
+ "epoch": 4.503056768558952,
+ "grad_norm": 0.02864190936088562,
+ "learning_rate": 0.0006,
+ "loss": 5.583666801452637,
+ "step": 324
+ },
+ {
+ "epoch": 4.517030567685589,
+ "grad_norm": 0.03396870568394661,
+ "learning_rate": 0.0006,
+ "loss": 5.568394184112549,
+ "step": 325
+ },
+ {
+ "epoch": 4.531004366812227,
+ "grad_norm": 0.03053557313978672,
+ "learning_rate": 0.0006,
+ "loss": 5.5704755783081055,
+ "step": 326
+ },
+ {
+ "epoch": 4.544978165938865,
+ "grad_norm": 0.039402369409799576,
+ "learning_rate": 0.0006,
+ "loss": 5.529522895812988,
+ "step": 327
+ },
+ {
+ "epoch": 4.558951965065502,
+ "grad_norm": 0.039162520319223404,
+ "learning_rate": 0.0006,
+ "loss": 5.565547466278076,
+ "step": 328
+ },
+ {
+ "epoch": 4.5729257641921395,
+ "grad_norm": 0.03071208856999874,
+ "learning_rate": 0.0006,
+ "loss": 5.551553726196289,
+ "step": 329
+ },
+ {
+ "epoch": 4.586899563318777,
+ "grad_norm": 0.0320625938475132,
+ "learning_rate": 0.0006,
+ "loss": 5.535126686096191,
+ "step": 330
+ },
+ {
+ "epoch": 4.600873362445415,
+ "grad_norm": 0.03700695186853409,
+ "learning_rate": 0.0006,
+ "loss": 5.560665130615234,
+ "step": 331
+ },
+ {
+ "epoch": 4.614847161572053,
+ "grad_norm": 0.0327119417488575,
+ "learning_rate": 0.0006,
+ "loss": 5.528924465179443,
+ "step": 332
+ },
+ {
+ "epoch": 4.62882096069869,
+ "grad_norm": 0.028552839532494545,
+ "learning_rate": 0.0006,
+ "loss": 5.520917892456055,
+ "step": 333
+ },
+ {
+ "epoch": 4.642794759825327,
+ "grad_norm": 0.029750585556030273,
+ "learning_rate": 0.0006,
+ "loss": 5.512092113494873,
+ "step": 334
+ },
+ {
+ "epoch": 4.656768558951965,
+ "grad_norm": 0.03556099906563759,
+ "learning_rate": 0.0006,
+ "loss": 5.500020503997803,
+ "step": 335
+ },
+ {
+ "epoch": 4.670742358078603,
+ "grad_norm": 0.03819836303591728,
+ "learning_rate": 0.0006,
+ "loss": 5.523126602172852,
+ "step": 336
+ },
+ {
+ "epoch": 4.68471615720524,
+ "grad_norm": 0.038457129150629044,
+ "learning_rate": 0.0006,
+ "loss": 5.497986316680908,
+ "step": 337
+ },
+ {
+ "epoch": 4.698689956331878,
+ "grad_norm": 0.049066998064517975,
+ "learning_rate": 0.0006,
+ "loss": 5.481566429138184,
+ "step": 338
+ },
+ {
+ "epoch": 4.712663755458515,
+ "grad_norm": 0.06208881363272667,
+ "learning_rate": 0.0006,
+ "loss": 5.5200581550598145,
+ "step": 339
+ },
+ {
+ "epoch": 4.726637554585153,
+ "grad_norm": 0.04952879622578621,
+ "learning_rate": 0.0006,
+ "loss": 5.528044700622559,
+ "step": 340
+ },
+ {
+ "epoch": 4.74061135371179,
+ "grad_norm": 0.046794820576906204,
+ "learning_rate": 0.0006,
+ "loss": 5.4694437980651855,
+ "step": 341
+ },
+ {
+ "epoch": 4.754585152838428,
+ "grad_norm": 0.05241665989160538,
+ "learning_rate": 0.0006,
+ "loss": 5.5203752517700195,
+ "step": 342
+ },
+ {
+ "epoch": 4.7685589519650655,
+ "grad_norm": 0.029848996549844742,
+ "learning_rate": 0.0006,
+ "loss": 5.484467506408691,
+ "step": 343
+ },
+ {
+ "epoch": 4.782532751091703,
+ "grad_norm": 0.035734955221414566,
+ "learning_rate": 0.0006,
+ "loss": 5.4982075691223145,
+ "step": 344
+ },
+ {
+ "epoch": 4.796506550218341,
+ "grad_norm": 0.03326781094074249,
+ "learning_rate": 0.0006,
+ "loss": 5.4673380851745605,
+ "step": 345
+ },
+ {
+ "epoch": 4.810480349344978,
+ "grad_norm": 0.02851971797645092,
+ "learning_rate": 0.0006,
+ "loss": 5.466347694396973,
+ "step": 346
+ },
+ {
+ "epoch": 4.824454148471616,
+ "grad_norm": 0.02881411463022232,
+ "learning_rate": 0.0006,
+ "loss": 5.4748992919921875,
+ "step": 347
+ },
+ {
+ "epoch": 4.8384279475982535,
+ "grad_norm": 0.037079520523548126,
+ "learning_rate": 0.0006,
+ "loss": 5.430629730224609,
+ "step": 348
+ },
+ {
+ "epoch": 4.85240174672489,
+ "grad_norm": 0.06697188317775726,
+ "learning_rate": 0.0006,
+ "loss": 5.48007869720459,
+ "step": 349
+ },
+ {
+ "epoch": 4.866375545851528,
+ "grad_norm": 0.08443532884120941,
+ "learning_rate": 0.0006,
+ "loss": 5.519370079040527,
+ "step": 350
+ },
+ {
+ "epoch": 4.880349344978166,
+ "grad_norm": 0.0594899021089077,
+ "learning_rate": 0.0006,
+ "loss": 5.502467155456543,
+ "step": 351
+ },
+ {
+ "epoch": 4.894323144104804,
+ "grad_norm": 0.045731619000434875,
+ "learning_rate": 0.0006,
+ "loss": 5.48048210144043,
+ "step": 352
+ },
+ {
+ "epoch": 4.908296943231441,
+ "grad_norm": 0.02911028079688549,
+ "learning_rate": 0.0006,
+ "loss": 5.45798921585083,
+ "step": 353
+ },
+ {
+ "epoch": 4.922270742358078,
+ "grad_norm": 0.03407920524477959,
+ "learning_rate": 0.0006,
+ "loss": 5.452054977416992,
+ "step": 354
+ },
+ {
+ "epoch": 4.936244541484716,
+ "grad_norm": 0.030616968870162964,
+ "learning_rate": 0.0006,
+ "loss": 5.416000843048096,
+ "step": 355
+ },
+ {
+ "epoch": 4.950218340611354,
+ "grad_norm": 0.036123789846897125,
+ "learning_rate": 0.0006,
+ "loss": 5.448460102081299,
+ "step": 356
+ },
+ {
+ "epoch": 4.964192139737992,
+ "grad_norm": 0.03511728718876839,
+ "learning_rate": 0.0006,
+ "loss": 5.4388580322265625,
+ "step": 357
+ },
+ {
+ "epoch": 4.978165938864628,
+ "grad_norm": 0.032399944961071014,
+ "learning_rate": 0.0006,
+ "loss": 5.439154624938965,
+ "step": 358
+ },
+ {
+ "epoch": 4.992139737991266,
+ "grad_norm": 0.030734507367014885,
+ "learning_rate": 0.0006,
+ "loss": 5.394845485687256,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.036368995904922485,
+ "learning_rate": 0.0006,
+ "loss": 5.4285783767700195,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.480083465576172,
+ "eval_runtime": 50.4055,
+ "eval_samples_per_second": 48.447,
+ "eval_steps_per_second": 1.528,
+ "step": 360
+ },
+ {
+ "epoch": 5.013973799126638,
+ "grad_norm": 0.04241528734564781,
+ "learning_rate": 0.0006,
+ "loss": 5.381251335144043,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279475982532755,
+ "grad_norm": 0.03248775005340576,
+ "learning_rate": 0.0006,
+ "loss": 5.37385892868042,
+ "step": 362
+ },
+ {
+ "epoch": 5.041921397379912,
+ "grad_norm": 0.034749697893857956,
+ "learning_rate": 0.0006,
+ "loss": 5.376180648803711,
+ "step": 363
+ },
+ {
+ "epoch": 5.05589519650655,
+ "grad_norm": 0.03606852516531944,
+ "learning_rate": 0.0006,
+ "loss": 5.374990940093994,
+ "step": 364
+ },
+ {
+ "epoch": 5.069868995633188,
+ "grad_norm": 0.037298817187547684,
+ "learning_rate": 0.0006,
+ "loss": 5.387371063232422,
+ "step": 365
+ },
+ {
+ "epoch": 5.083842794759826,
+ "grad_norm": 0.04082327336072922,
+ "learning_rate": 0.0006,
+ "loss": 5.389516830444336,
+ "step": 366
+ },
+ {
+ "epoch": 5.097816593886463,
+ "grad_norm": 0.04895859211683273,
+ "learning_rate": 0.0006,
+ "loss": 5.3711090087890625,
+ "step": 367
+ },
+ {
+ "epoch": 5.1117903930131,
+ "grad_norm": 0.050905536860227585,
+ "learning_rate": 0.0006,
+ "loss": 5.351629257202148,
+ "step": 368
+ },
+ {
+ "epoch": 5.125764192139738,
+ "grad_norm": 0.04349025338888168,
+ "learning_rate": 0.0006,
+ "loss": 5.348860263824463,
+ "step": 369
+ },
+ {
+ "epoch": 5.139737991266376,
+ "grad_norm": 0.04351300373673439,
+ "learning_rate": 0.0006,
+ "loss": 5.351939678192139,
+ "step": 370
+ },
+ {
+ "epoch": 5.153711790393013,
+ "grad_norm": 0.03227587044239044,
+ "learning_rate": 0.0006,
+ "loss": 5.345745086669922,
+ "step": 371
+ },
+ {
+ "epoch": 5.1676855895196505,
+ "grad_norm": 0.04331260547041893,
+ "learning_rate": 0.0006,
+ "loss": 5.316384315490723,
+ "step": 372
+ },
+ {
+ "epoch": 5.181659388646288,
+ "grad_norm": 0.0464855432510376,
+ "learning_rate": 0.0006,
+ "loss": 5.343276023864746,
+ "step": 373
+ },
+ {
+ "epoch": 5.195633187772926,
+ "grad_norm": 0.05008427053689957,
+ "learning_rate": 0.0006,
+ "loss": 5.369993209838867,
+ "step": 374
+ },
+ {
+ "epoch": 5.209606986899563,
+ "grad_norm": 0.04762439802289009,
+ "learning_rate": 0.0006,
+ "loss": 5.3458051681518555,
+ "step": 375
+ },
+ {
+ "epoch": 5.223580786026201,
+ "grad_norm": 0.04650581255555153,
+ "learning_rate": 0.0006,
+ "loss": 5.352739334106445,
+ "step": 376
+ },
+ {
+ "epoch": 5.2375545851528384,
+ "grad_norm": 0.04960601031780243,
+ "learning_rate": 0.0006,
+ "loss": 5.327419757843018,
+ "step": 377
+ },
+ {
+ "epoch": 5.251528384279476,
+ "grad_norm": 0.04186132177710533,
+ "learning_rate": 0.0006,
+ "loss": 5.319878578186035,
+ "step": 378
+ },
+ {
+ "epoch": 5.265502183406113,
+ "grad_norm": 0.0390714667737484,
+ "learning_rate": 0.0006,
+ "loss": 5.344437599182129,
+ "step": 379
+ },
+ {
+ "epoch": 5.279475982532751,
+ "grad_norm": 0.03270866721868515,
+ "learning_rate": 0.0006,
+ "loss": 5.313382148742676,
+ "step": 380
+ },
+ {
+ "epoch": 5.293449781659389,
+ "grad_norm": 0.031864266842603683,
+ "learning_rate": 0.0006,
+ "loss": 5.326592922210693,
+ "step": 381
+ },
+ {
+ "epoch": 5.307423580786026,
+ "grad_norm": 0.026960339397192,
+ "learning_rate": 0.0006,
+ "loss": 5.286443710327148,
+ "step": 382
+ },
+ {
+ "epoch": 5.321397379912664,
+ "grad_norm": 0.023257168009877205,
+ "learning_rate": 0.0006,
+ "loss": 5.291154384613037,
+ "step": 383
+ },
+ {
+ "epoch": 5.335371179039301,
+ "grad_norm": 0.024317380040884018,
+ "learning_rate": 0.0006,
+ "loss": 5.30286979675293,
+ "step": 384
+ },
+ {
+ "epoch": 5.349344978165939,
+ "grad_norm": 0.022621065378189087,
+ "learning_rate": 0.0006,
+ "loss": 5.315716743469238,
+ "step": 385
+ },
+ {
+ "epoch": 5.3633187772925766,
+ "grad_norm": 0.023142270743846893,
+ "learning_rate": 0.0006,
+ "loss": 5.30342960357666,
+ "step": 386
+ },
+ {
+ "epoch": 5.377292576419214,
+ "grad_norm": 0.023623041808605194,
+ "learning_rate": 0.0006,
+ "loss": 5.250846862792969,
+ "step": 387
+ },
+ {
+ "epoch": 5.391266375545851,
+ "grad_norm": 0.02163100801408291,
+ "learning_rate": 0.0006,
+ "loss": 5.239641189575195,
+ "step": 388
+ },
+ {
+ "epoch": 5.405240174672489,
+ "grad_norm": 0.02896741032600403,
+ "learning_rate": 0.0006,
+ "loss": 5.2592010498046875,
+ "step": 389
+ },
+ {
+ "epoch": 5.419213973799127,
+ "grad_norm": 0.03766395151615143,
+ "learning_rate": 0.0006,
+ "loss": 5.253421783447266,
+ "step": 390
+ },
+ {
+ "epoch": 5.4331877729257645,
+ "grad_norm": 0.04409803822636604,
+ "learning_rate": 0.0006,
+ "loss": 5.271892070770264,
+ "step": 391
+ },
+ {
+ "epoch": 5.447161572052401,
+ "grad_norm": 0.040245357900857925,
+ "learning_rate": 0.0006,
+ "loss": 5.259224891662598,
+ "step": 392
+ },
+ {
+ "epoch": 5.461135371179039,
+ "grad_norm": 0.04515395313501358,
+ "learning_rate": 0.0006,
+ "loss": 5.236300468444824,
+ "step": 393
+ },
+ {
+ "epoch": 5.475109170305677,
+ "grad_norm": 0.060296714305877686,
+ "learning_rate": 0.0006,
+ "loss": 5.265594959259033,
+ "step": 394
+ },
+ {
+ "epoch": 5.489082969432315,
+ "grad_norm": 0.05405225604772568,
+ "learning_rate": 0.0006,
+ "loss": 5.262340545654297,
+ "step": 395
+ },
+ {
+ "epoch": 5.503056768558952,
+ "grad_norm": 0.0568138062953949,
+ "learning_rate": 0.0006,
+ "loss": 5.239948749542236,
+ "step": 396
+ },
+ {
+ "epoch": 5.517030567685589,
+ "grad_norm": 0.059859342873096466,
+ "learning_rate": 0.0006,
+ "loss": 5.189077854156494,
+ "step": 397
+ },
+ {
+ "epoch": 5.531004366812227,
+ "grad_norm": 0.053871408104896545,
+ "learning_rate": 0.0006,
+ "loss": 5.270648956298828,
+ "step": 398
+ },
+ {
+ "epoch": 5.544978165938865,
+ "grad_norm": 0.06081297993659973,
+ "learning_rate": 0.0006,
+ "loss": 5.314695835113525,
+ "step": 399
+ },
+ {
+ "epoch": 5.558951965065502,
+ "grad_norm": 0.0646715834736824,
+ "learning_rate": 0.0006,
+ "loss": 5.286482810974121,
+ "step": 400
+ },
+ {
+ "epoch": 5.5729257641921395,
+ "grad_norm": 0.05934286117553711,
+ "learning_rate": 0.0006,
+ "loss": 5.247529983520508,
+ "step": 401
+ },
+ {
+ "epoch": 5.586899563318777,
+ "grad_norm": 0.05270497500896454,
+ "learning_rate": 0.0006,
+ "loss": 5.213264465332031,
+ "step": 402
+ },
+ {
+ "epoch": 5.600873362445415,
+ "grad_norm": 0.03454767167568207,
+ "learning_rate": 0.0006,
+ "loss": 5.234180450439453,
+ "step": 403
+ },
+ {
+ "epoch": 5.614847161572053,
+ "grad_norm": 0.04350962117314339,
+ "learning_rate": 0.0006,
+ "loss": 5.2320332527160645,
+ "step": 404
+ },
+ {
+ "epoch": 5.62882096069869,
+ "grad_norm": 0.04721181467175484,
+ "learning_rate": 0.0006,
+ "loss": 5.228950023651123,
+ "step": 405
+ },
+ {
+ "epoch": 5.642794759825327,
+ "grad_norm": 0.03711158409714699,
+ "learning_rate": 0.0006,
+ "loss": 5.234259605407715,
+ "step": 406
+ },
+ {
+ "epoch": 5.656768558951965,
+ "grad_norm": 0.029691185802221298,
+ "learning_rate": 0.0006,
+ "loss": 5.183767795562744,
+ "step": 407
+ },
+ {
+ "epoch": 5.670742358078603,
+ "grad_norm": 0.03253520280122757,
+ "learning_rate": 0.0006,
+ "loss": 5.224790573120117,
+ "step": 408
+ },
+ {
+ "epoch": 5.68471615720524,
+ "grad_norm": 0.026891207322478294,
+ "learning_rate": 0.0006,
+ "loss": 5.219671249389648,
+ "step": 409
+ },
+ {
+ "epoch": 5.698689956331878,
+ "grad_norm": 0.024443313479423523,
+ "learning_rate": 0.0006,
+ "loss": 5.177947044372559,
+ "step": 410
+ },
+ {
+ "epoch": 5.712663755458515,
+ "grad_norm": 0.024358445778489113,
+ "learning_rate": 0.0006,
+ "loss": 5.184648513793945,
+ "step": 411
+ },
+ {
+ "epoch": 5.726637554585153,
+ "grad_norm": 0.038056857883930206,
+ "learning_rate": 0.0006,
+ "loss": 5.213315010070801,
+ "step": 412
+ },
+ {
+ "epoch": 5.74061135371179,
+ "grad_norm": 0.05382931977510452,
+ "learning_rate": 0.0006,
+ "loss": 5.188442230224609,
+ "step": 413
+ },
+ {
+ "epoch": 5.754585152838428,
+ "grad_norm": 0.04695626348257065,
+ "learning_rate": 0.0006,
+ "loss": 5.214473724365234,
+ "step": 414
+ },
+ {
+ "epoch": 5.7685589519650655,
+ "grad_norm": 0.03373295068740845,
+ "learning_rate": 0.0006,
+ "loss": 5.187349319458008,
+ "step": 415
+ },
+ {
+ "epoch": 5.782532751091703,
+ "grad_norm": 0.04209282621741295,
+ "learning_rate": 0.0006,
+ "loss": 5.215581893920898,
+ "step": 416
+ },
+ {
+ "epoch": 5.796506550218341,
+ "grad_norm": 0.036461904644966125,
+ "learning_rate": 0.0006,
+ "loss": 5.148530006408691,
+ "step": 417
+ },
+ {
+ "epoch": 5.810480349344978,
+ "grad_norm": 0.02530442364513874,
+ "learning_rate": 0.0006,
+ "loss": 5.143393039703369,
+ "step": 418
+ },
+ {
+ "epoch": 5.824454148471616,
+ "grad_norm": 0.02545030415058136,
+ "learning_rate": 0.0006,
+ "loss": 5.167602062225342,
+ "step": 419
+ },
+ {
+ "epoch": 5.8384279475982535,
+ "grad_norm": 0.024862848222255707,
+ "learning_rate": 0.0006,
+ "loss": 5.133827209472656,
+ "step": 420
+ },
+ {
+ "epoch": 5.85240174672489,
+ "grad_norm": 0.0243727695196867,
+ "learning_rate": 0.0006,
+ "loss": 5.196236610412598,
+ "step": 421
+ },
+ {
+ "epoch": 5.866375545851528,
+ "grad_norm": 0.031052641570568085,
+ "learning_rate": 0.0006,
+ "loss": 5.163963317871094,
+ "step": 422
+ },
+ {
+ "epoch": 5.880349344978166,
+ "grad_norm": 0.03085985779762268,
+ "learning_rate": 0.0006,
+ "loss": 5.133022308349609,
+ "step": 423
+ },
+ {
+ "epoch": 5.894323144104804,
+ "grad_norm": 0.026254380121827126,
+ "learning_rate": 0.0006,
+ "loss": 5.126164436340332,
+ "step": 424
+ },
+ {
+ "epoch": 5.908296943231441,
+ "grad_norm": 0.02083180658519268,
+ "learning_rate": 0.0006,
+ "loss": 5.102797508239746,
+ "step": 425
+ },
+ {
+ "epoch": 5.922270742358078,
+ "grad_norm": 0.02210022322833538,
+ "learning_rate": 0.0006,
+ "loss": 5.079900741577148,
+ "step": 426
+ },
+ {
+ "epoch": 5.936244541484716,
+ "grad_norm": 0.024237696081399918,
+ "learning_rate": 0.0006,
+ "loss": 5.131382942199707,
+ "step": 427
+ },
+ {
+ "epoch": 5.950218340611354,
+ "grad_norm": 0.03174173831939697,
+ "learning_rate": 0.0006,
+ "loss": 5.12271785736084,
+ "step": 428
+ },
+ {
+ "epoch": 5.964192139737992,
+ "grad_norm": 0.035321734845638275,
+ "learning_rate": 0.0006,
+ "loss": 5.096363067626953,
+ "step": 429
+ },
+ {
+ "epoch": 5.978165938864628,
+ "grad_norm": 0.03945434093475342,
+ "learning_rate": 0.0006,
+ "loss": 5.104191780090332,
+ "step": 430
+ },
+ {
+ "epoch": 5.992139737991266,
+ "grad_norm": 0.03119991160929203,
+ "learning_rate": 0.0006,
+ "loss": 5.088006973266602,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.025646768510341644,
+ "learning_rate": 0.0006,
+ "loss": 5.060527801513672,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.1733880043029785,
+ "eval_runtime": 49.9632,
+ "eval_samples_per_second": 48.876,
+ "eval_steps_per_second": 1.541,
+ "step": 432
+ },
+ {
+ "epoch": 6.013973799126638,
+ "grad_norm": 0.04027649387717247,
+ "learning_rate": 0.0006,
+ "loss": 5.070117473602295,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279475982532755,
+ "grad_norm": 0.04872274026274681,
+ "learning_rate": 0.0006,
+ "loss": 5.076330184936523,
+ "step": 434
+ },
+ {
+ "epoch": 6.041921397379912,
+ "grad_norm": 0.044163160026073456,
+ "learning_rate": 0.0006,
+ "loss": 5.079638481140137,
+ "step": 435
+ },
+ {
+ "epoch": 6.05589519650655,
+ "grad_norm": 0.051925189793109894,
+ "learning_rate": 0.0006,
+ "loss": 5.077970027923584,
+ "step": 436
+ },
+ {
+ "epoch": 6.069868995633188,
+ "grad_norm": 0.06317602097988129,
+ "learning_rate": 0.0006,
+ "loss": 5.077326774597168,
+ "step": 437
+ },
+ {
+ "epoch": 6.083842794759826,
+ "grad_norm": 0.05190538242459297,
+ "learning_rate": 0.0006,
+ "loss": 5.078523635864258,
+ "step": 438
+ },
+ {
+ "epoch": 6.097816593886463,
+ "grad_norm": 0.054743602871894836,
+ "learning_rate": 0.0006,
+ "loss": 5.041546821594238,
+ "step": 439
+ },
+ {
+ "epoch": 6.1117903930131,
+ "grad_norm": 0.0473523885011673,
+ "learning_rate": 0.0006,
+ "loss": 5.055340766906738,
+ "step": 440
+ },
+ {
+ "epoch": 6.125764192139738,
+ "grad_norm": 0.04575403407216072,
+ "learning_rate": 0.0006,
+ "loss": 5.078280925750732,
+ "step": 441
+ },
+ {
+ "epoch": 6.139737991266376,
+ "grad_norm": 0.04004313051700592,
+ "learning_rate": 0.0006,
+ "loss": 5.0551252365112305,
+ "step": 442
+ },
+ {
+ "epoch": 6.153711790393013,
+ "grad_norm": 0.04324577748775482,
+ "learning_rate": 0.0006,
+ "loss": 5.052831649780273,
+ "step": 443
+ },
+ {
+ "epoch": 6.1676855895196505,
+ "grad_norm": 0.05479790270328522,
+ "learning_rate": 0.0006,
+ "loss": 5.075335502624512,
+ "step": 444
+ },
+ {
+ "epoch": 6.181659388646288,
+ "grad_norm": 0.05768252909183502,
+ "learning_rate": 0.0006,
+ "loss": 5.076082706451416,
+ "step": 445
+ },
+ {
+ "epoch": 6.195633187772926,
+ "grad_norm": 0.05240596458315849,
+ "learning_rate": 0.0006,
+ "loss": 5.058586120605469,
+ "step": 446
+ },
+ {
+ "epoch": 6.209606986899563,
+ "grad_norm": 0.0645335391163826,
+ "learning_rate": 0.0006,
+ "loss": 5.069242477416992,
+ "step": 447
+ },
+ {
+ "epoch": 6.223580786026201,
+ "grad_norm": 0.07776601612567902,
+ "learning_rate": 0.0006,
+ "loss": 5.100368499755859,
+ "step": 448
+ },
+ {
+ "epoch": 6.2375545851528384,
+ "grad_norm": 0.08278049528598785,
+ "learning_rate": 0.0006,
+ "loss": 5.109698295593262,
+ "step": 449
+ },
+ {
+ "epoch": 6.251528384279476,
+ "grad_norm": 0.07187525182962418,
+ "learning_rate": 0.0006,
+ "loss": 5.08582878112793,
+ "step": 450
+ },
+ {
+ "epoch": 6.265502183406113,
+ "grad_norm": 0.07394885271787643,
+ "learning_rate": 0.0006,
+ "loss": 5.06748628616333,
+ "step": 451
+ },
+ {
+ "epoch": 6.279475982532751,
+ "grad_norm": 0.06124480068683624,
+ "learning_rate": 0.0006,
+ "loss": 5.116754531860352,
+ "step": 452
+ },
+ {
+ "epoch": 6.293449781659389,
+ "grad_norm": 0.04062265530228615,
+ "learning_rate": 0.0006,
+ "loss": 5.04876184463501,
+ "step": 453
+ },
+ {
+ "epoch": 6.307423580786026,
+ "grad_norm": 0.04309544339776039,
+ "learning_rate": 0.0006,
+ "loss": 5.038376331329346,
+ "step": 454
+ },
+ {
+ "epoch": 6.321397379912664,
+ "grad_norm": 0.041932251304388046,
+ "learning_rate": 0.0006,
+ "loss": 5.071001052856445,
+ "step": 455
+ },
+ {
+ "epoch": 6.335371179039301,
+ "grad_norm": 0.033776845782995224,
+ "learning_rate": 0.0006,
+ "loss": 5.006098747253418,
+ "step": 456
+ },
+ {
+ "epoch": 6.349344978165939,
+ "grad_norm": 0.034641820937395096,
+ "learning_rate": 0.0006,
+ "loss": 4.992915153503418,
+ "step": 457
+ },
+ {
+ "epoch": 6.3633187772925766,
+ "grad_norm": 0.023475229740142822,
+ "learning_rate": 0.0006,
+ "loss": 5.044340133666992,
+ "step": 458
+ },
+ {
+ "epoch": 6.377292576419214,
+ "grad_norm": 0.02673504501581192,
+ "learning_rate": 0.0006,
+ "loss": 4.998212814331055,
+ "step": 459
+ },
+ {
+ "epoch": 6.391266375545851,
+ "grad_norm": 0.02482164464890957,
+ "learning_rate": 0.0006,
+ "loss": 5.010951042175293,
+ "step": 460
+ },
+ {
+ "epoch": 6.405240174672489,
+ "grad_norm": 0.022635847330093384,
+ "learning_rate": 0.0006,
+ "loss": 4.977993965148926,
+ "step": 461
+ },
+ {
+ "epoch": 6.419213973799127,
+ "grad_norm": 0.023006808012723923,
+ "learning_rate": 0.0006,
+ "loss": 4.947575569152832,
+ "step": 462
+ },
+ {
+ "epoch": 6.4331877729257645,
+ "grad_norm": 0.02624397724866867,
+ "learning_rate": 0.0006,
+ "loss": 4.977143287658691,
+ "step": 463
+ },
+ {
+ "epoch": 6.447161572052401,
+ "grad_norm": 0.03280187025666237,
+ "learning_rate": 0.0006,
+ "loss": 4.941946029663086,
+ "step": 464
+ },
+ {
+ "epoch": 6.461135371179039,
+ "grad_norm": 0.04020314663648605,
+ "learning_rate": 0.0006,
+ "loss": 4.947107315063477,
+ "step": 465
+ },
+ {
+ "epoch": 6.475109170305677,
+ "grad_norm": 0.037292513996362686,
+ "learning_rate": 0.0006,
+ "loss": 4.940674781799316,
+ "step": 466
+ },
+ {
+ "epoch": 6.489082969432315,
+ "grad_norm": 0.03219081461429596,
+ "learning_rate": 0.0006,
+ "loss": 4.945491790771484,
+ "step": 467
+ },
+ {
+ "epoch": 6.503056768558952,
+ "grad_norm": 0.034181494265794754,
+ "learning_rate": 0.0006,
+ "loss": 4.948554039001465,
+ "step": 468
+ },
+ {
+ "epoch": 6.517030567685589,
+ "grad_norm": 0.03098447248339653,
+ "learning_rate": 0.0006,
+ "loss": 4.923150062561035,
+ "step": 469
+ },
+ {
+ "epoch": 6.531004366812227,
+ "grad_norm": 0.026002254337072372,
+ "learning_rate": 0.0006,
+ "loss": 4.9629106521606445,
+ "step": 470
+ },
+ {
+ "epoch": 6.544978165938865,
+ "grad_norm": 0.02463129162788391,
+ "learning_rate": 0.0006,
+ "loss": 4.9400787353515625,
+ "step": 471
+ },
+ {
+ "epoch": 6.558951965065502,
+ "grad_norm": 0.025506779551506042,
+ "learning_rate": 0.0006,
+ "loss": 4.945688247680664,
+ "step": 472
+ },
+ {
+ "epoch": 6.5729257641921395,
+ "grad_norm": 0.021885665133595467,
+ "learning_rate": 0.0006,
+ "loss": 4.893912315368652,
+ "step": 473
+ },
+ {
+ "epoch": 6.586899563318777,
+ "grad_norm": 0.023528503254055977,
+ "learning_rate": 0.0006,
+ "loss": 4.948110580444336,
+ "step": 474
+ },
+ {
+ "epoch": 6.600873362445415,
+ "grad_norm": 0.02838003821671009,
+ "learning_rate": 0.0006,
+ "loss": 4.919154167175293,
+ "step": 475
+ },
+ {
+ "epoch": 6.614847161572053,
+ "grad_norm": 0.028782688081264496,
+ "learning_rate": 0.0006,
+ "loss": 4.89210319519043,
+ "step": 476
+ },
+ {
+ "epoch": 6.62882096069869,
+ "grad_norm": 0.02549571916460991,
+ "learning_rate": 0.0006,
+ "loss": 4.903683185577393,
+ "step": 477
+ },
+ {
+ "epoch": 6.642794759825327,
+ "grad_norm": 0.030100561678409576,
+ "learning_rate": 0.0006,
+ "loss": 4.907907485961914,
+ "step": 478
+ },
+ {
+ "epoch": 6.656768558951965,
+ "grad_norm": 0.03853096067905426,
+ "learning_rate": 0.0006,
+ "loss": 4.916140556335449,
+ "step": 479
+ },
+ {
+ "epoch": 6.670742358078603,
+ "grad_norm": 0.0367201492190361,
+ "learning_rate": 0.0006,
+ "loss": 4.882139205932617,
+ "step": 480
+ },
+ {
+ "epoch": 6.68471615720524,
+ "grad_norm": 0.034214165061712265,
+ "learning_rate": 0.0006,
+ "loss": 4.883127212524414,
+ "step": 481
+ },
+ {
+ "epoch": 6.698689956331878,
+ "grad_norm": 0.03360319137573242,
+ "learning_rate": 0.0006,
+ "loss": 4.903620719909668,
+ "step": 482
+ },
+ {
+ "epoch": 6.712663755458515,
+ "grad_norm": 0.027687804773449898,
+ "learning_rate": 0.0006,
+ "loss": 4.874878883361816,
+ "step": 483
+ },
+ {
+ "epoch": 6.726637554585153,
+ "grad_norm": 0.028244799003005028,
+ "learning_rate": 0.0006,
+ "loss": 4.877007961273193,
+ "step": 484
+ },
+ {
+ "epoch": 6.74061135371179,
+ "grad_norm": 0.027868567034602165,
+ "learning_rate": 0.0006,
+ "loss": 4.893726348876953,
+ "step": 485
+ },
+ {
+ "epoch": 6.754585152838428,
+ "grad_norm": 0.036026086658239365,
+ "learning_rate": 0.0006,
+ "loss": 4.899372577667236,
+ "step": 486
+ },
+ {
+ "epoch": 6.7685589519650655,
+ "grad_norm": 0.03497552126646042,
+ "learning_rate": 0.0006,
+ "loss": 4.8735671043396,
+ "step": 487
+ },
+ {
+ "epoch": 6.782532751091703,
+ "grad_norm": 0.027166219428181648,
+ "learning_rate": 0.0006,
+ "loss": 4.848074913024902,
+ "step": 488
+ },
+ {
+ "epoch": 6.796506550218341,
+ "grad_norm": 0.029360221698880196,
+ "learning_rate": 0.0006,
+ "loss": 4.821354389190674,
+ "step": 489
+ },
+ {
+ "epoch": 6.810480349344978,
+ "grad_norm": 0.030428793281316757,
+ "learning_rate": 0.0006,
+ "loss": 4.857872009277344,
+ "step": 490
+ },
+ {
+ "epoch": 6.824454148471616,
+ "grad_norm": 0.033143963664770126,
+ "learning_rate": 0.0006,
+ "loss": 4.8857526779174805,
+ "step": 491
+ },
+ {
+ "epoch": 6.8384279475982535,
+ "grad_norm": 0.03193509578704834,
+ "learning_rate": 0.0006,
+ "loss": 4.841046333312988,
+ "step": 492
+ },
+ {
+ "epoch": 6.85240174672489,
+ "grad_norm": 0.034551024436950684,
+ "learning_rate": 0.0006,
+ "loss": 4.857826232910156,
+ "step": 493
+ },
+ {
+ "epoch": 6.866375545851528,
+ "grad_norm": 0.04612463712692261,
+ "learning_rate": 0.0006,
+ "loss": 4.880589485168457,
+ "step": 494
+ },
+ {
+ "epoch": 6.880349344978166,
+ "grad_norm": 0.04604615643620491,
+ "learning_rate": 0.0006,
+ "loss": 4.836089134216309,
+ "step": 495
+ },
+ {
+ "epoch": 6.894323144104804,
+ "grad_norm": 0.04121214151382446,
+ "learning_rate": 0.0006,
+ "loss": 4.859458923339844,
+ "step": 496
+ },
+ {
+ "epoch": 6.908296943231441,
+ "grad_norm": 0.03569377213716507,
+ "learning_rate": 0.0006,
+ "loss": 4.846658706665039,
+ "step": 497
+ },
+ {
+ "epoch": 6.922270742358078,
+ "grad_norm": 0.03878311067819595,
+ "learning_rate": 0.0006,
+ "loss": 4.828747749328613,
+ "step": 498
+ },
+ {
+ "epoch": 6.936244541484716,
+ "grad_norm": 0.0379655621945858,
+ "learning_rate": 0.0006,
+ "loss": 4.7911152839660645,
+ "step": 499
+ },
+ {
+ "epoch": 6.950218340611354,
+ "grad_norm": 0.03329150751233101,
+ "learning_rate": 0.0006,
+ "loss": 4.8190741539001465,
+ "step": 500
+ },
+ {
+ "epoch": 6.964192139737992,
+ "grad_norm": 0.0386258140206337,
+ "learning_rate": 0.0006,
+ "loss": 4.826594352722168,
+ "step": 501
+ },
+ {
+ "epoch": 6.978165938864628,
+ "grad_norm": 0.043440066277980804,
+ "learning_rate": 0.0006,
+ "loss": 4.868552207946777,
+ "step": 502
+ },
+ {
+ "epoch": 6.992139737991266,
+ "grad_norm": 0.039522934705019,
+ "learning_rate": 0.0006,
+ "loss": 4.766866683959961,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.038620468229055405,
+ "learning_rate": 0.0006,
+ "loss": 4.828839302062988,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 4.907761573791504,
+ "eval_runtime": 49.951,
+ "eval_samples_per_second": 48.888,
+ "eval_steps_per_second": 1.542,
+ "step": 504
+ },
+ {
+ "epoch": 7.013973799126638,
+ "grad_norm": 0.040495287626981735,
+ "learning_rate": 0.0006,
+ "loss": 4.755504608154297,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279475982532755,
+ "grad_norm": 0.04684276506304741,
+ "learning_rate": 0.0006,
+ "loss": 4.79603385925293,
+ "step": 506
+ },
+ {
+ "epoch": 7.041921397379912,
+ "grad_norm": 0.057431042194366455,
+ "learning_rate": 0.0006,
+ "loss": 4.798529148101807,
+ "step": 507
+ },
+ {
+ "epoch": 7.05589519650655,
+ "grad_norm": 0.06289757043123245,
+ "learning_rate": 0.0006,
+ "loss": 4.819248199462891,
+ "step": 508
+ },
+ {
+ "epoch": 7.069868995633188,
+ "grad_norm": 0.07083664834499359,
+ "learning_rate": 0.0006,
+ "loss": 4.803141117095947,
+ "step": 509
+ },
+ {
+ "epoch": 7.083842794759826,
+ "grad_norm": 0.06081623584032059,
+ "learning_rate": 0.0006,
+ "loss": 4.743819236755371,
+ "step": 510
+ },
+ {
+ "epoch": 7.097816593886463,
+ "grad_norm": 0.05454877391457558,
+ "learning_rate": 0.0006,
+ "loss": 4.854677200317383,
+ "step": 511
+ },
+ {
+ "epoch": 7.1117903930131,
+ "grad_norm": 0.05157916992902756,
+ "learning_rate": 0.0006,
+ "loss": 4.797488212585449,
+ "step": 512
+ },
+ {
+ "epoch": 7.125764192139738,
+ "grad_norm": 0.04780645668506622,
+ "learning_rate": 0.0006,
+ "loss": 4.824231147766113,
+ "step": 513
+ },
+ {
+ "epoch": 7.139737991266376,
+ "grad_norm": 0.058745913207530975,
+ "learning_rate": 0.0006,
+ "loss": 4.79942512512207,
+ "step": 514
+ },
+ {
+ "epoch": 7.153711790393013,
+ "grad_norm": 0.07210857421159744,
+ "learning_rate": 0.0006,
+ "loss": 4.857621192932129,
+ "step": 515
+ },
+ {
+ "epoch": 7.1676855895196505,
+ "grad_norm": 0.0681944340467453,
+ "learning_rate": 0.0006,
+ "loss": 4.798557281494141,
+ "step": 516
+ },
+ {
+ "epoch": 7.181659388646288,
+ "grad_norm": 0.06716784089803696,
+ "learning_rate": 0.0006,
+ "loss": 4.81382942199707,
+ "step": 517
+ },
+ {
+ "epoch": 7.195633187772926,
+ "grad_norm": 0.0700073093175888,
+ "learning_rate": 0.0006,
+ "loss": 4.811261177062988,
+ "step": 518
+ },
+ {
+ "epoch": 7.209606986899563,
+ "grad_norm": 0.05830753222107887,
+ "learning_rate": 0.0006,
+ "loss": 4.818418025970459,
+ "step": 519
+ },
+ {
+ "epoch": 7.223580786026201,
+ "grad_norm": 0.06053008884191513,
+ "learning_rate": 0.0006,
+ "loss": 4.830060005187988,
+ "step": 520
+ },
+ {
+ "epoch": 7.2375545851528384,
+ "grad_norm": 0.04992729425430298,
+ "learning_rate": 0.0006,
+ "loss": 4.820477485656738,
+ "step": 521
+ },
+ {
+ "epoch": 7.251528384279476,
+ "grad_norm": 0.03906334191560745,
+ "learning_rate": 0.0006,
+ "loss": 4.776924133300781,
+ "step": 522
+ },
+ {
+ "epoch": 7.265502183406113,
+ "grad_norm": 0.041200339794158936,
+ "learning_rate": 0.0006,
+ "loss": 4.795502662658691,
+ "step": 523
+ },
+ {
+ "epoch": 7.279475982532751,
+ "grad_norm": 0.03866710141301155,
+ "learning_rate": 0.0006,
+ "loss": 4.748326778411865,
+ "step": 524
+ },
+ {
+ "epoch": 7.293449781659389,
+ "grad_norm": 0.03892578184604645,
+ "learning_rate": 0.0006,
+ "loss": 4.731060028076172,
+ "step": 525
+ },
+ {
+ "epoch": 7.307423580786026,
+ "grad_norm": 0.034929852932691574,
+ "learning_rate": 0.0006,
+ "loss": 4.769538879394531,
+ "step": 526
+ },
+ {
+ "epoch": 7.321397379912664,
+ "grad_norm": 0.03499983623623848,
+ "learning_rate": 0.0006,
+ "loss": 4.750111103057861,
+ "step": 527
+ },
+ {
+ "epoch": 7.335371179039301,
+ "grad_norm": 0.023694142699241638,
+ "learning_rate": 0.0006,
+ "loss": 4.741044998168945,
+ "step": 528
+ },
+ {
+ "epoch": 7.349344978165939,
+ "grad_norm": 0.02783721685409546,
+ "learning_rate": 0.0006,
+ "loss": 4.733529090881348,
+ "step": 529
+ },
+ {
+ "epoch": 7.3633187772925766,
+ "grad_norm": 0.022906454280018806,
+ "learning_rate": 0.0006,
+ "loss": 4.713002681732178,
+ "step": 530
+ },
+ {
+ "epoch": 7.377292576419214,
+ "grad_norm": 0.020011693239212036,
+ "learning_rate": 0.0006,
+ "loss": 4.6840620040893555,
+ "step": 531
+ },
+ {
+ "epoch": 7.391266375545851,
+ "grad_norm": 0.019985370337963104,
+ "learning_rate": 0.0006,
+ "loss": 4.695000171661377,
+ "step": 532
+ },
+ {
+ "epoch": 7.405240174672489,
+ "grad_norm": 0.019822653383016586,
+ "learning_rate": 0.0006,
+ "loss": 4.709036350250244,
+ "step": 533
+ },
+ {
+ "epoch": 7.419213973799127,
+ "grad_norm": 0.020615894347429276,
+ "learning_rate": 0.0006,
+ "loss": 4.679416656494141,
+ "step": 534
+ },
+ {
+ "epoch": 7.4331877729257645,
+ "grad_norm": 0.01958257146179676,
+ "learning_rate": 0.0006,
+ "loss": 4.704957008361816,
+ "step": 535
+ },
+ {
+ "epoch": 7.447161572052401,
+ "grad_norm": 0.02040509134531021,
+ "learning_rate": 0.0006,
+ "loss": 4.651505470275879,
+ "step": 536
+ },
+ {
+ "epoch": 7.461135371179039,
+ "grad_norm": 0.01626836135983467,
+ "learning_rate": 0.0006,
+ "loss": 4.694278240203857,
+ "step": 537
+ },
+ {
+ "epoch": 7.475109170305677,
+ "grad_norm": 0.01660163700580597,
+ "learning_rate": 0.0006,
+ "loss": 4.662658214569092,
+ "step": 538
+ },
+ {
+ "epoch": 7.489082969432315,
+ "grad_norm": 0.016483576968312263,
+ "learning_rate": 0.0006,
+ "loss": 4.695555686950684,
+ "step": 539
+ },
+ {
+ "epoch": 7.503056768558952,
+ "grad_norm": 0.018176909536123276,
+ "learning_rate": 0.0006,
+ "loss": 4.646458625793457,
+ "step": 540
+ },
+ {
+ "epoch": 7.517030567685589,
+ "grad_norm": 0.018314503133296967,
+ "learning_rate": 0.0006,
+ "loss": 4.643884181976318,
+ "step": 541
+ },
+ {
+ "epoch": 7.531004366812227,
+ "grad_norm": 0.016406886279582977,
+ "learning_rate": 0.0006,
+ "loss": 4.637638092041016,
+ "step": 542
+ },
+ {
+ "epoch": 7.544978165938865,
+ "grad_norm": 0.017510421574115753,
+ "learning_rate": 0.0006,
+ "loss": 4.6297926902771,
+ "step": 543
+ },
+ {
+ "epoch": 7.558951965065502,
+ "grad_norm": 0.021575570106506348,
+ "learning_rate": 0.0006,
+ "loss": 4.657093048095703,
+ "step": 544
+ },
+ {
+ "epoch": 7.5729257641921395,
+ "grad_norm": 0.024670056998729706,
+ "learning_rate": 0.0006,
+ "loss": 4.637840270996094,
+ "step": 545
+ },
+ {
+ "epoch": 7.586899563318777,
+ "grad_norm": 0.026005825027823448,
+ "learning_rate": 0.0006,
+ "loss": 4.622672080993652,
+ "step": 546
+ },
+ {
+ "epoch": 7.600873362445415,
+ "grad_norm": 0.024355988949537277,
+ "learning_rate": 0.0006,
+ "loss": 4.627206802368164,
+ "step": 547
+ },
+ {
+ "epoch": 7.614847161572053,
+ "grad_norm": 0.025826960802078247,
+ "learning_rate": 0.0006,
+ "loss": 4.616837501525879,
+ "step": 548
+ },
+ {
+ "epoch": 7.62882096069869,
+ "grad_norm": 0.02809619903564453,
+ "learning_rate": 0.0006,
+ "loss": 4.643812656402588,
+ "step": 549
+ },
+ {
+ "epoch": 7.642794759825327,
+ "grad_norm": 0.023823536932468414,
+ "learning_rate": 0.0006,
+ "loss": 4.623858451843262,
+ "step": 550
+ },
+ {
+ "epoch": 7.656768558951965,
+ "grad_norm": 0.024948647245764732,
+ "learning_rate": 0.0006,
+ "loss": 4.635528564453125,
+ "step": 551
+ },
+ {
+ "epoch": 7.670742358078603,
+ "grad_norm": 0.027852604165673256,
+ "learning_rate": 0.0006,
+ "loss": 4.606395721435547,
+ "step": 552
+ },
+ {
+ "epoch": 7.68471615720524,
+ "grad_norm": 0.031888775527477264,
+ "learning_rate": 0.0006,
+ "loss": 4.630072593688965,
+ "step": 553
+ },
+ {
+ "epoch": 7.698689956331878,
+ "grad_norm": 0.04423221945762634,
+ "learning_rate": 0.0006,
+ "loss": 4.592362880706787,
+ "step": 554
+ },
+ {
+ "epoch": 7.712663755458515,
+ "grad_norm": 0.05360350012779236,
+ "learning_rate": 0.0006,
+ "loss": 4.626799583435059,
+ "step": 555
+ },
+ {
+ "epoch": 7.726637554585153,
+ "grad_norm": 0.05218035727739334,
+ "learning_rate": 0.0006,
+ "loss": 4.591753005981445,
+ "step": 556
+ },
+ {
+ "epoch": 7.74061135371179,
+ "grad_norm": 0.04740380123257637,
+ "learning_rate": 0.0006,
+ "loss": 4.611865520477295,
+ "step": 557
+ },
+ {
+ "epoch": 7.754585152838428,
+ "grad_norm": 0.04325862228870392,
+ "learning_rate": 0.0006,
+ "loss": 4.585417747497559,
+ "step": 558
+ },
+ {
+ "epoch": 7.7685589519650655,
+ "grad_norm": 0.047380927950143814,
+ "learning_rate": 0.0006,
+ "loss": 4.595690727233887,
+ "step": 559
+ },
+ {
+ "epoch": 7.782532751091703,
+ "grad_norm": 0.05398833379149437,
+ "learning_rate": 0.0006,
+ "loss": 4.670032024383545,
+ "step": 560
+ },
+ {
+ "epoch": 7.796506550218341,
+ "grad_norm": 0.05550206080079079,
+ "learning_rate": 0.0006,
+ "loss": 4.603083610534668,
+ "step": 561
+ },
+ {
+ "epoch": 7.810480349344978,
+ "grad_norm": 0.048703186213970184,
+ "learning_rate": 0.0006,
+ "loss": 4.60882568359375,
+ "step": 562
+ },
+ {
+ "epoch": 7.824454148471616,
+ "grad_norm": 0.03849068656563759,
+ "learning_rate": 0.0006,
+ "loss": 4.600196838378906,
+ "step": 563
+ },
+ {
+ "epoch": 7.8384279475982535,
+ "grad_norm": 0.04322432354092598,
+ "learning_rate": 0.0006,
+ "loss": 4.635777473449707,
+ "step": 564
+ },
+ {
+ "epoch": 7.85240174672489,
+ "grad_norm": 0.03958692029118538,
+ "learning_rate": 0.0006,
+ "loss": 4.586699962615967,
+ "step": 565
+ },
+ {
+ "epoch": 7.866375545851528,
+ "grad_norm": 0.035496462136507034,
+ "learning_rate": 0.0006,
+ "loss": 4.602683067321777,
+ "step": 566
+ },
+ {
+ "epoch": 7.880349344978166,
+ "grad_norm": 0.038870155811309814,
+ "learning_rate": 0.0006,
+ "loss": 4.635684013366699,
+ "step": 567
+ },
+ {
+ "epoch": 7.894323144104804,
+ "grad_norm": 0.038049351423978806,
+ "learning_rate": 0.0006,
+ "loss": 4.5812602043151855,
+ "step": 568
+ },
+ {
+ "epoch": 7.908296943231441,
+ "grad_norm": 0.029217766597867012,
+ "learning_rate": 0.0006,
+ "loss": 4.560367584228516,
+ "step": 569
+ },
+ {
+ "epoch": 7.922270742358078,
+ "grad_norm": 0.028376970440149307,
+ "learning_rate": 0.0006,
+ "loss": 4.578996658325195,
+ "step": 570
+ },
+ {
+ "epoch": 7.936244541484716,
+ "grad_norm": 0.035108938813209534,
+ "learning_rate": 0.0006,
+ "loss": 4.554547309875488,
+ "step": 571
+ },
+ {
+ "epoch": 7.950218340611354,
+ "grad_norm": 0.02971036173403263,
+ "learning_rate": 0.0006,
+ "loss": 4.5761919021606445,
+ "step": 572
+ },
+ {
+ "epoch": 7.964192139737992,
+ "grad_norm": 0.02690828964114189,
+ "learning_rate": 0.0006,
+ "loss": 4.568772315979004,
+ "step": 573
+ },
+ {
+ "epoch": 7.978165938864628,
+ "grad_norm": 0.023910939693450928,
+ "learning_rate": 0.0006,
+ "loss": 4.56700325012207,
+ "step": 574
+ },
+ {
+ "epoch": 7.992139737991266,
+ "grad_norm": 0.02027987875044346,
+ "learning_rate": 0.0006,
+ "loss": 4.563353538513184,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.02621232345700264,
+ "learning_rate": 0.0006,
+ "loss": 4.52655029296875,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.659845352172852,
+ "eval_runtime": 54.5122,
+ "eval_samples_per_second": 44.797,
+ "eval_steps_per_second": 1.413,
+ "step": 576
+ },
+ {
+ "epoch": 8.013973799126637,
+ "grad_norm": 0.024295445531606674,
+ "learning_rate": 0.0006,
+ "loss": 4.514026641845703,
+ "step": 577
+ },
+ {
+ "epoch": 8.027947598253276,
+ "grad_norm": 0.029430922120809555,
+ "learning_rate": 0.0006,
+ "loss": 4.479931831359863,
+ "step": 578
+ },
+ {
+ "epoch": 8.041921397379912,
+ "grad_norm": 0.03156977519392967,
+ "learning_rate": 0.0006,
+ "loss": 4.529452323913574,
+ "step": 579
+ },
+ {
+ "epoch": 8.055895196506551,
+ "grad_norm": 0.03411492332816124,
+ "learning_rate": 0.0006,
+ "loss": 4.501816749572754,
+ "step": 580
+ },
+ {
+ "epoch": 8.069868995633188,
+ "grad_norm": 0.03944215178489685,
+ "learning_rate": 0.0006,
+ "loss": 4.503504753112793,
+ "step": 581
+ },
+ {
+ "epoch": 8.083842794759825,
+ "grad_norm": 0.04511773958802223,
+ "learning_rate": 0.0006,
+ "loss": 4.481729984283447,
+ "step": 582
+ },
+ {
+ "epoch": 8.097816593886463,
+ "grad_norm": 0.03235149383544922,
+ "learning_rate": 0.0006,
+ "loss": 4.510499954223633,
+ "step": 583
+ },
+ {
+ "epoch": 8.1117903930131,
+ "grad_norm": 0.027723919600248337,
+ "learning_rate": 0.0006,
+ "loss": 4.492958068847656,
+ "step": 584
+ },
+ {
+ "epoch": 8.125764192139737,
+ "grad_norm": 0.033535368740558624,
+ "learning_rate": 0.0006,
+ "loss": 4.480009078979492,
+ "step": 585
+ },
+ {
+ "epoch": 8.139737991266376,
+ "grad_norm": 0.03412545099854469,
+ "learning_rate": 0.0006,
+ "loss": 4.464960098266602,
+ "step": 586
+ },
+ {
+ "epoch": 8.153711790393013,
+ "grad_norm": 0.03285292908549309,
+ "learning_rate": 0.0006,
+ "loss": 4.478358745574951,
+ "step": 587
+ },
+ {
+ "epoch": 8.167685589519651,
+ "grad_norm": 0.03460532799363136,
+ "learning_rate": 0.0006,
+ "loss": 4.490439414978027,
+ "step": 588
+ },
+ {
+ "epoch": 8.181659388646288,
+ "grad_norm": 0.037275977432727814,
+ "learning_rate": 0.0006,
+ "loss": 4.473151683807373,
+ "step": 589
+ },
+ {
+ "epoch": 8.195633187772925,
+ "grad_norm": 0.03485316038131714,
+ "learning_rate": 0.0006,
+ "loss": 4.491796493530273,
+ "step": 590
+ },
+ {
+ "epoch": 8.209606986899564,
+ "grad_norm": 0.03405699506402016,
+ "learning_rate": 0.0006,
+ "loss": 4.473565101623535,
+ "step": 591
+ },
+ {
+ "epoch": 8.2235807860262,
+ "grad_norm": 0.03975093364715576,
+ "learning_rate": 0.0006,
+ "loss": 4.494463920593262,
+ "step": 592
+ },
+ {
+ "epoch": 8.237554585152838,
+ "grad_norm": 0.03563615307211876,
+ "learning_rate": 0.0006,
+ "loss": 4.458979606628418,
+ "step": 593
+ },
+ {
+ "epoch": 8.251528384279476,
+ "grad_norm": 0.037183649837970734,
+ "learning_rate": 0.0006,
+ "loss": 4.4701948165893555,
+ "step": 594
+ },
+ {
+ "epoch": 8.265502183406113,
+ "grad_norm": 0.039340466260910034,
+ "learning_rate": 0.0006,
+ "loss": 4.489675521850586,
+ "step": 595
+ },
+ {
+ "epoch": 8.279475982532752,
+ "grad_norm": 0.03162173181772232,
+ "learning_rate": 0.0006,
+ "loss": 4.422170162200928,
+ "step": 596
+ },
+ {
+ "epoch": 8.293449781659389,
+ "grad_norm": 0.03257273510098457,
+ "learning_rate": 0.0006,
+ "loss": 4.467840194702148,
+ "step": 597
+ },
+ {
+ "epoch": 8.307423580786025,
+ "grad_norm": 0.028066672384738922,
+ "learning_rate": 0.0006,
+ "loss": 4.471856117248535,
+ "step": 598
+ },
+ {
+ "epoch": 8.321397379912664,
+ "grad_norm": 0.032139431685209274,
+ "learning_rate": 0.0006,
+ "loss": 4.485661029815674,
+ "step": 599
+ },
+ {
+ "epoch": 8.335371179039301,
+ "grad_norm": 0.03333858773112297,
+ "learning_rate": 0.0006,
+ "loss": 4.411584854125977,
+ "step": 600
+ },
+ {
+ "epoch": 8.34934497816594,
+ "grad_norm": 0.03705155476927757,
+ "learning_rate": 0.0006,
+ "loss": 4.466585159301758,
+ "step": 601
+ },
+ {
+ "epoch": 8.363318777292577,
+ "grad_norm": 0.03022557683289051,
+ "learning_rate": 0.0006,
+ "loss": 4.4287428855896,
+ "step": 602
+ },
+ {
+ "epoch": 8.377292576419213,
+ "grad_norm": 0.02911069616675377,
+ "learning_rate": 0.0006,
+ "loss": 4.432306289672852,
+ "step": 603
+ },
+ {
+ "epoch": 8.391266375545852,
+ "grad_norm": 0.0332532562315464,
+ "learning_rate": 0.0006,
+ "loss": 4.446920871734619,
+ "step": 604
+ },
+ {
+ "epoch": 8.405240174672489,
+ "grad_norm": 0.028356043621897697,
+ "learning_rate": 0.0006,
+ "loss": 4.41445779800415,
+ "step": 605
+ },
+ {
+ "epoch": 8.419213973799126,
+ "grad_norm": 0.026536710560321808,
+ "learning_rate": 0.0006,
+ "loss": 4.45195198059082,
+ "step": 606
+ },
+ {
+ "epoch": 8.433187772925764,
+ "grad_norm": 0.027183571830391884,
+ "learning_rate": 0.0006,
+ "loss": 4.482472896575928,
+ "step": 607
+ },
+ {
+ "epoch": 8.447161572052401,
+ "grad_norm": 0.02418459579348564,
+ "learning_rate": 0.0006,
+ "loss": 4.407785415649414,
+ "step": 608
+ },
+ {
+ "epoch": 8.46113537117904,
+ "grad_norm": 0.03382935747504234,
+ "learning_rate": 0.0006,
+ "loss": 4.457126140594482,
+ "step": 609
+ },
+ {
+ "epoch": 8.475109170305677,
+ "grad_norm": 0.0399114228785038,
+ "learning_rate": 0.0006,
+ "loss": 4.404670238494873,
+ "step": 610
+ },
+ {
+ "epoch": 8.489082969432314,
+ "grad_norm": 0.02914121001958847,
+ "learning_rate": 0.0006,
+ "loss": 4.385491371154785,
+ "step": 611
+ },
+ {
+ "epoch": 8.503056768558952,
+ "grad_norm": 0.024029329419136047,
+ "learning_rate": 0.0006,
+ "loss": 4.3807878494262695,
+ "step": 612
+ },
+ {
+ "epoch": 8.51703056768559,
+ "grad_norm": 0.024073908105492592,
+ "learning_rate": 0.0006,
+ "loss": 4.393002033233643,
+ "step": 613
+ },
+ {
+ "epoch": 8.531004366812226,
+ "grad_norm": 0.024022364988923073,
+ "learning_rate": 0.0006,
+ "loss": 4.44310188293457,
+ "step": 614
+ },
+ {
+ "epoch": 8.544978165938865,
+ "grad_norm": 0.02552313171327114,
+ "learning_rate": 0.0006,
+ "loss": 4.370255947113037,
+ "step": 615
+ },
+ {
+ "epoch": 8.558951965065502,
+ "grad_norm": 0.022251879796385765,
+ "learning_rate": 0.0006,
+ "loss": 4.366595268249512,
+ "step": 616
+ },
+ {
+ "epoch": 8.57292576419214,
+ "grad_norm": 0.022750860080122948,
+ "learning_rate": 0.0006,
+ "loss": 4.377684116363525,
+ "step": 617
+ },
+ {
+ "epoch": 8.586899563318777,
+ "grad_norm": 0.022422555834054947,
+ "learning_rate": 0.0006,
+ "loss": 4.397234916687012,
+ "step": 618
+ },
+ {
+ "epoch": 8.600873362445414,
+ "grad_norm": 0.02737540379166603,
+ "learning_rate": 0.0006,
+ "loss": 4.406569957733154,
+ "step": 619
+ },
+ {
+ "epoch": 8.614847161572053,
+ "grad_norm": 0.0230751670897007,
+ "learning_rate": 0.0006,
+ "loss": 4.37363862991333,
+ "step": 620
+ },
+ {
+ "epoch": 8.62882096069869,
+ "grad_norm": 0.02010422758758068,
+ "learning_rate": 0.0006,
+ "loss": 4.396723747253418,
+ "step": 621
+ },
+ {
+ "epoch": 8.642794759825328,
+ "grad_norm": 0.024875663220882416,
+ "learning_rate": 0.0006,
+ "loss": 4.382737159729004,
+ "step": 622
+ },
+ {
+ "epoch": 8.656768558951965,
+ "grad_norm": 0.026101084426045418,
+ "learning_rate": 0.0006,
+ "loss": 4.376001358032227,
+ "step": 623
+ },
+ {
+ "epoch": 8.670742358078602,
+ "grad_norm": 0.026131760329008102,
+ "learning_rate": 0.0006,
+ "loss": 4.392600059509277,
+ "step": 624
+ },
+ {
+ "epoch": 8.68471615720524,
+ "grad_norm": 0.02580229938030243,
+ "learning_rate": 0.0006,
+ "loss": 4.383554458618164,
+ "step": 625
+ },
+ {
+ "epoch": 8.698689956331878,
+ "grad_norm": 0.02919621206820011,
+ "learning_rate": 0.0006,
+ "loss": 4.369998455047607,
+ "step": 626
+ },
+ {
+ "epoch": 8.712663755458514,
+ "grad_norm": 0.03268479183316231,
+ "learning_rate": 0.0006,
+ "loss": 4.364940166473389,
+ "step": 627
+ },
+ {
+ "epoch": 8.726637554585153,
+ "grad_norm": 0.031615134328603745,
+ "learning_rate": 0.0006,
+ "loss": 4.354142189025879,
+ "step": 628
+ },
+ {
+ "epoch": 8.74061135371179,
+ "grad_norm": 0.03091943822801113,
+ "learning_rate": 0.0006,
+ "loss": 4.405896186828613,
+ "step": 629
+ },
+ {
+ "epoch": 8.754585152838429,
+ "grad_norm": 0.03459984436631203,
+ "learning_rate": 0.0006,
+ "loss": 4.386331558227539,
+ "step": 630
+ },
+ {
+ "epoch": 8.768558951965066,
+ "grad_norm": 0.03276519104838371,
+ "learning_rate": 0.0006,
+ "loss": 4.351153373718262,
+ "step": 631
+ },
+ {
+ "epoch": 8.782532751091702,
+ "grad_norm": 0.03300934657454491,
+ "learning_rate": 0.0006,
+ "loss": 4.364960670471191,
+ "step": 632
+ },
+ {
+ "epoch": 8.796506550218341,
+ "grad_norm": 0.03618944436311722,
+ "learning_rate": 0.0006,
+ "loss": 4.3519134521484375,
+ "step": 633
+ },
+ {
+ "epoch": 8.810480349344978,
+ "grad_norm": 0.03368232026696205,
+ "learning_rate": 0.0006,
+ "loss": 4.374147891998291,
+ "step": 634
+ },
+ {
+ "epoch": 8.824454148471617,
+ "grad_norm": 0.03252463415265083,
+ "learning_rate": 0.0006,
+ "loss": 4.367391586303711,
+ "step": 635
+ },
+ {
+ "epoch": 8.838427947598253,
+ "grad_norm": 0.03680579736828804,
+ "learning_rate": 0.0006,
+ "loss": 4.364116191864014,
+ "step": 636
+ },
+ {
+ "epoch": 8.85240174672489,
+ "grad_norm": 0.0317164771258831,
+ "learning_rate": 0.0006,
+ "loss": 4.379790306091309,
+ "step": 637
+ },
+ {
+ "epoch": 8.866375545851529,
+ "grad_norm": 0.031701602041721344,
+ "learning_rate": 0.0006,
+ "loss": 4.353549003601074,
+ "step": 638
+ },
+ {
+ "epoch": 8.880349344978166,
+ "grad_norm": 0.029211340472102165,
+ "learning_rate": 0.0006,
+ "loss": 4.343072891235352,
+ "step": 639
+ },
+ {
+ "epoch": 8.894323144104803,
+ "grad_norm": 0.02774505503475666,
+ "learning_rate": 0.0006,
+ "loss": 4.354020118713379,
+ "step": 640
+ },
+ {
+ "epoch": 8.908296943231441,
+ "grad_norm": 0.027463624253869057,
+ "learning_rate": 0.0006,
+ "loss": 4.354701519012451,
+ "step": 641
+ },
+ {
+ "epoch": 8.922270742358078,
+ "grad_norm": 0.023732105270028114,
+ "learning_rate": 0.0006,
+ "loss": 4.347830772399902,
+ "step": 642
+ },
+ {
+ "epoch": 8.936244541484717,
+ "grad_norm": 0.02339051477611065,
+ "learning_rate": 0.0006,
+ "loss": 4.342405319213867,
+ "step": 643
+ },
+ {
+ "epoch": 8.950218340611354,
+ "grad_norm": 0.023744868114590645,
+ "learning_rate": 0.0006,
+ "loss": 4.352578163146973,
+ "step": 644
+ },
+ {
+ "epoch": 8.96419213973799,
+ "grad_norm": 0.02563423290848732,
+ "learning_rate": 0.0006,
+ "loss": 4.37408971786499,
+ "step": 645
+ },
+ {
+ "epoch": 8.97816593886463,
+ "grad_norm": 0.031334877014160156,
+ "learning_rate": 0.0006,
+ "loss": 4.309673309326172,
+ "step": 646
+ },
+ {
+ "epoch": 8.992139737991266,
+ "grad_norm": 0.03283081576228142,
+ "learning_rate": 0.0006,
+ "loss": 4.348544597625732,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.03263505920767784,
+ "learning_rate": 0.0006,
+ "loss": 4.307372093200684,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.477582931518555,
+ "eval_runtime": 50.1212,
+ "eval_samples_per_second": 48.722,
+ "eval_steps_per_second": 1.536,
+ "step": 648
+ },
+ {
+ "epoch": 9.013973799126637,
+ "grad_norm": 0.038239408284425735,
+ "learning_rate": 0.0006,
+ "loss": 4.2784552574157715,
+ "step": 649
+ },
+ {
+ "epoch": 9.027947598253276,
+ "grad_norm": 0.044226426631212234,
+ "learning_rate": 0.0006,
+ "loss": 4.332424163818359,
+ "step": 650
+ },
+ {
+ "epoch": 9.041921397379912,
+ "grad_norm": 0.04743504151701927,
+ "learning_rate": 0.0006,
+ "loss": 4.303574085235596,
+ "step": 651
+ },
+ {
+ "epoch": 9.055895196506551,
+ "grad_norm": 0.04348866268992424,
+ "learning_rate": 0.0006,
+ "loss": 4.295550346374512,
+ "step": 652
+ },
+ {
+ "epoch": 9.069868995633188,
+ "grad_norm": 0.04830600693821907,
+ "learning_rate": 0.0006,
+ "loss": 4.2577619552612305,
+ "step": 653
+ },
+ {
+ "epoch": 9.083842794759825,
+ "grad_norm": 0.05154724419116974,
+ "learning_rate": 0.0006,
+ "loss": 4.314383506774902,
+ "step": 654
+ },
+ {
+ "epoch": 9.097816593886463,
+ "grad_norm": 0.044492293149232864,
+ "learning_rate": 0.0006,
+ "loss": 4.32614803314209,
+ "step": 655
+ },
+ {
+ "epoch": 9.1117903930131,
+ "grad_norm": 0.03842560201883316,
+ "learning_rate": 0.0006,
+ "loss": 4.273819446563721,
+ "step": 656
+ },
+ {
+ "epoch": 9.125764192139737,
+ "grad_norm": 0.043655358254909515,
+ "learning_rate": 0.0006,
+ "loss": 4.334014892578125,
+ "step": 657
+ },
+ {
+ "epoch": 9.139737991266376,
+ "grad_norm": 0.051922112703323364,
+ "learning_rate": 0.0006,
+ "loss": 4.308163642883301,
+ "step": 658
+ },
+ {
+ "epoch": 9.153711790393013,
+ "grad_norm": 0.049958787858486176,
+ "learning_rate": 0.0006,
+ "loss": 4.30555534362793,
+ "step": 659
+ },
+ {
+ "epoch": 9.167685589519651,
+ "grad_norm": 0.03839104622602463,
+ "learning_rate": 0.0006,
+ "loss": 4.316109657287598,
+ "step": 660
+ },
+ {
+ "epoch": 9.181659388646288,
+ "grad_norm": 0.03898056969046593,
+ "learning_rate": 0.0006,
+ "loss": 4.308863639831543,
+ "step": 661
+ },
+ {
+ "epoch": 9.195633187772925,
+ "grad_norm": 0.028817247599363327,
+ "learning_rate": 0.0006,
+ "loss": 4.300504684448242,
+ "step": 662
+ },
+ {
+ "epoch": 9.209606986899564,
+ "grad_norm": 0.030067335814237595,
+ "learning_rate": 0.0006,
+ "loss": 4.259067535400391,
+ "step": 663
+ },
+ {
+ "epoch": 9.2235807860262,
+ "grad_norm": 0.03195219859480858,
+ "learning_rate": 0.0006,
+ "loss": 4.3144426345825195,
+ "step": 664
+ },
+ {
+ "epoch": 9.237554585152838,
+ "grad_norm": 0.03194814175367355,
+ "learning_rate": 0.0006,
+ "loss": 4.259864330291748,
+ "step": 665
+ },
+ {
+ "epoch": 9.251528384279476,
+ "grad_norm": 0.02754005789756775,
+ "learning_rate": 0.0006,
+ "loss": 4.291876316070557,
+ "step": 666
+ },
+ {
+ "epoch": 9.265502183406113,
+ "grad_norm": 0.026083929464221,
+ "learning_rate": 0.0006,
+ "loss": 4.205921649932861,
+ "step": 667
+ },
+ {
+ "epoch": 9.279475982532752,
+ "grad_norm": 0.025165516883134842,
+ "learning_rate": 0.0006,
+ "loss": 4.23714017868042,
+ "step": 668
+ },
+ {
+ "epoch": 9.293449781659389,
+ "grad_norm": 0.02380996011197567,
+ "learning_rate": 0.0006,
+ "loss": 4.263561725616455,
+ "step": 669
+ },
+ {
+ "epoch": 9.307423580786025,
+ "grad_norm": 0.025552157312631607,
+ "learning_rate": 0.0006,
+ "loss": 4.222456932067871,
+ "step": 670
+ },
+ {
+ "epoch": 9.321397379912664,
+ "grad_norm": 0.024957234039902687,
+ "learning_rate": 0.0006,
+ "loss": 4.250582695007324,
+ "step": 671
+ },
+ {
+ "epoch": 9.335371179039301,
+ "grad_norm": 0.02580283023416996,
+ "learning_rate": 0.0006,
+ "loss": 4.240250587463379,
+ "step": 672
+ },
+ {
+ "epoch": 9.34934497816594,
+ "grad_norm": 0.020701562985777855,
+ "learning_rate": 0.0006,
+ "loss": 4.222497463226318,
+ "step": 673
+ },
+ {
+ "epoch": 9.363318777292577,
+ "grad_norm": 0.021373746916651726,
+ "learning_rate": 0.0006,
+ "loss": 4.242282390594482,
+ "step": 674
+ },
+ {
+ "epoch": 9.377292576419213,
+ "grad_norm": 0.02025660127401352,
+ "learning_rate": 0.0006,
+ "loss": 4.270265579223633,
+ "step": 675
+ },
+ {
+ "epoch": 9.391266375545852,
+ "grad_norm": 0.02325408160686493,
+ "learning_rate": 0.0006,
+ "loss": 4.222276210784912,
+ "step": 676
+ },
+ {
+ "epoch": 9.405240174672489,
+ "grad_norm": 0.02470816671848297,
+ "learning_rate": 0.0006,
+ "loss": 4.238652229309082,
+ "step": 677
+ },
+ {
+ "epoch": 9.419213973799126,
+ "grad_norm": 0.02343972586095333,
+ "learning_rate": 0.0006,
+ "loss": 4.24069881439209,
+ "step": 678
+ },
+ {
+ "epoch": 9.433187772925764,
+ "grad_norm": 0.021034302189946175,
+ "learning_rate": 0.0006,
+ "loss": 4.244692802429199,
+ "step": 679
+ },
+ {
+ "epoch": 9.447161572052401,
+ "grad_norm": 0.021374190226197243,
+ "learning_rate": 0.0006,
+ "loss": 4.224084854125977,
+ "step": 680
+ },
+ {
+ "epoch": 9.46113537117904,
+ "grad_norm": 0.020527871325612068,
+ "learning_rate": 0.0006,
+ "loss": 4.262082099914551,
+ "step": 681
+ },
+ {
+ "epoch": 9.475109170305677,
+ "grad_norm": 0.01585977151989937,
+ "learning_rate": 0.0006,
+ "loss": 4.226033687591553,
+ "step": 682
+ },
+ {
+ "epoch": 9.489082969432314,
+ "grad_norm": 0.016423987224698067,
+ "learning_rate": 0.0006,
+ "loss": 4.171637535095215,
+ "step": 683
+ },
+ {
+ "epoch": 9.503056768558952,
+ "grad_norm": 0.015297142788767815,
+ "learning_rate": 0.0006,
+ "loss": 4.209469795227051,
+ "step": 684
+ },
+ {
+ "epoch": 9.51703056768559,
+ "grad_norm": 0.014817374758422375,
+ "learning_rate": 0.0006,
+ "loss": 4.216704845428467,
+ "step": 685
+ },
+ {
+ "epoch": 9.531004366812226,
+ "grad_norm": 0.015434044413268566,
+ "learning_rate": 0.0006,
+ "loss": 4.256552696228027,
+ "step": 686
+ },
+ {
+ "epoch": 9.544978165938865,
+ "grad_norm": 0.016138242557644844,
+ "learning_rate": 0.0006,
+ "loss": 4.218762397766113,
+ "step": 687
+ },
+ {
+ "epoch": 9.558951965065502,
+ "grad_norm": 0.017201369628310204,
+ "learning_rate": 0.0006,
+ "loss": 4.251995086669922,
+ "step": 688
+ },
+ {
+ "epoch": 9.57292576419214,
+ "grad_norm": 0.01714685745537281,
+ "learning_rate": 0.0006,
+ "loss": 4.219054222106934,
+ "step": 689
+ },
+ {
+ "epoch": 9.586899563318777,
+ "grad_norm": 0.020723173394799232,
+ "learning_rate": 0.0006,
+ "loss": 4.255344390869141,
+ "step": 690
+ },
+ {
+ "epoch": 9.600873362445414,
+ "grad_norm": 0.028826871886849403,
+ "learning_rate": 0.0006,
+ "loss": 4.221752166748047,
+ "step": 691
+ },
+ {
+ "epoch": 9.614847161572053,
+ "grad_norm": 0.03474748879671097,
+ "learning_rate": 0.0006,
+ "loss": 4.205111503601074,
+ "step": 692
+ },
+ {
+ "epoch": 9.62882096069869,
+ "grad_norm": 0.030536217615008354,
+ "learning_rate": 0.0006,
+ "loss": 4.232375144958496,
+ "step": 693
+ },
+ {
+ "epoch": 9.642794759825328,
+ "grad_norm": 0.03158785030245781,
+ "learning_rate": 0.0006,
+ "loss": 4.186178207397461,
+ "step": 694
+ },
+ {
+ "epoch": 9.656768558951965,
+ "grad_norm": 0.032505910843610764,
+ "learning_rate": 0.0006,
+ "loss": 4.208681106567383,
+ "step": 695
+ },
+ {
+ "epoch": 9.670742358078602,
+ "grad_norm": 0.025617435574531555,
+ "learning_rate": 0.0006,
+ "loss": 4.190085411071777,
+ "step": 696
+ },
+ {
+ "epoch": 9.68471615720524,
+ "grad_norm": 0.03047073632478714,
+ "learning_rate": 0.0006,
+ "loss": 4.210445404052734,
+ "step": 697
+ },
+ {
+ "epoch": 9.698689956331878,
+ "grad_norm": 0.033015694469213486,
+ "learning_rate": 0.0006,
+ "loss": 4.215723037719727,
+ "step": 698
+ },
+ {
+ "epoch": 9.712663755458514,
+ "grad_norm": 0.0364084430038929,
+ "learning_rate": 0.0006,
+ "loss": 4.192442417144775,
+ "step": 699
+ },
+ {
+ "epoch": 9.726637554585153,
+ "grad_norm": 0.03577317297458649,
+ "learning_rate": 0.0006,
+ "loss": 4.20793342590332,
+ "step": 700
+ },
+ {
+ "epoch": 9.74061135371179,
+ "grad_norm": 0.031464435160160065,
+ "learning_rate": 0.0006,
+ "loss": 4.205752372741699,
+ "step": 701
+ },
+ {
+ "epoch": 9.754585152838429,
+ "grad_norm": 0.030628090724349022,
+ "learning_rate": 0.0006,
+ "loss": 4.209503173828125,
+ "step": 702
+ },
+ {
+ "epoch": 9.768558951965066,
+ "grad_norm": 0.031171889975667,
+ "learning_rate": 0.0006,
+ "loss": 4.189100742340088,
+ "step": 703
+ },
+ {
+ "epoch": 9.782532751091702,
+ "grad_norm": 0.026728026568889618,
+ "learning_rate": 0.0006,
+ "loss": 4.175262928009033,
+ "step": 704
+ },
+ {
+ "epoch": 9.796506550218341,
+ "grad_norm": 0.02975568361580372,
+ "learning_rate": 0.0006,
+ "loss": 4.180237770080566,
+ "step": 705
+ },
+ {
+ "epoch": 9.810480349344978,
+ "grad_norm": 0.03690735250711441,
+ "learning_rate": 0.0006,
+ "loss": 4.160732269287109,
+ "step": 706
+ },
+ {
+ "epoch": 9.824454148471617,
+ "grad_norm": 0.03488203138113022,
+ "learning_rate": 0.0006,
+ "loss": 4.228294849395752,
+ "step": 707
+ },
+ {
+ "epoch": 9.838427947598253,
+ "grad_norm": 0.032557982951402664,
+ "learning_rate": 0.0006,
+ "loss": 4.144038200378418,
+ "step": 708
+ },
+ {
+ "epoch": 9.85240174672489,
+ "grad_norm": 0.03189995512366295,
+ "learning_rate": 0.0006,
+ "loss": 4.194624900817871,
+ "step": 709
+ },
+ {
+ "epoch": 9.866375545851529,
+ "grad_norm": 0.03439774736762047,
+ "learning_rate": 0.0006,
+ "loss": 4.216994762420654,
+ "step": 710
+ },
+ {
+ "epoch": 9.880349344978166,
+ "grad_norm": 0.03789396584033966,
+ "learning_rate": 0.0006,
+ "loss": 4.196347236633301,
+ "step": 711
+ },
+ {
+ "epoch": 9.894323144104803,
+ "grad_norm": 0.037980109453201294,
+ "learning_rate": 0.0006,
+ "loss": 4.213890075683594,
+ "step": 712
+ },
+ {
+ "epoch": 9.908296943231441,
+ "grad_norm": 0.043379005044698715,
+ "learning_rate": 0.0006,
+ "loss": 4.209582328796387,
+ "step": 713
+ },
+ {
+ "epoch": 9.922270742358078,
+ "grad_norm": 0.03881588950753212,
+ "learning_rate": 0.0006,
+ "loss": 4.210249900817871,
+ "step": 714
+ },
+ {
+ "epoch": 9.936244541484717,
+ "grad_norm": 0.038644567131996155,
+ "learning_rate": 0.0006,
+ "loss": 4.169578552246094,
+ "step": 715
+ },
+ {
+ "epoch": 9.950218340611354,
+ "grad_norm": 0.03676586598157883,
+ "learning_rate": 0.0006,
+ "loss": 4.234776020050049,
+ "step": 716
+ },
+ {
+ "epoch": 9.96419213973799,
+ "grad_norm": 0.032105959951877594,
+ "learning_rate": 0.0006,
+ "loss": 4.218995094299316,
+ "step": 717
+ },
+ {
+ "epoch": 9.97816593886463,
+ "grad_norm": 0.034359272569417953,
+ "learning_rate": 0.0006,
+ "loss": 4.209888458251953,
+ "step": 718
+ },
+ {
+ "epoch": 9.992139737991266,
+ "grad_norm": 0.02772289142012596,
+ "learning_rate": 0.0006,
+ "loss": 4.201578140258789,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.03038903884589672,
+ "learning_rate": 0.0006,
+ "loss": 4.170413494110107,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.344418048858643,
+ "eval_runtime": 50.1464,
+ "eval_samples_per_second": 48.697,
+ "eval_steps_per_second": 1.536,
+ "step": 720
+ },
+ {
+ "epoch": 10.013973799126637,
+ "grad_norm": 0.026941193267703056,
+ "learning_rate": 0.0006,
+ "loss": 4.122128486633301,
+ "step": 721
+ },
+ {
+ "epoch": 10.027947598253276,
+ "grad_norm": 0.028237640857696533,
+ "learning_rate": 0.0006,
+ "loss": 4.120541572570801,
+ "step": 722
+ },
+ {
+ "epoch": 10.041921397379912,
+ "grad_norm": 0.02316083386540413,
+ "learning_rate": 0.0006,
+ "loss": 4.127598285675049,
+ "step": 723
+ },
+ {
+ "epoch": 10.055895196506551,
+ "grad_norm": 0.02862458862364292,
+ "learning_rate": 0.0006,
+ "loss": 4.066249847412109,
+ "step": 724
+ },
+ {
+ "epoch": 10.069868995633188,
+ "grad_norm": 0.031772635877132416,
+ "learning_rate": 0.0006,
+ "loss": 4.1211652755737305,
+ "step": 725
+ },
+ {
+ "epoch": 10.083842794759825,
+ "grad_norm": 0.031032619997859,
+ "learning_rate": 0.0006,
+ "loss": 4.125894546508789,
+ "step": 726
+ },
+ {
+ "epoch": 10.097816593886463,
+ "grad_norm": 0.02898111566901207,
+ "learning_rate": 0.0006,
+ "loss": 4.119715213775635,
+ "step": 727
+ },
+ {
+ "epoch": 10.1117903930131,
+ "grad_norm": 0.030101103708148003,
+ "learning_rate": 0.0006,
+ "loss": 4.087604522705078,
+ "step": 728
+ },
+ {
+ "epoch": 10.125764192139737,
+ "grad_norm": 0.025814464315772057,
+ "learning_rate": 0.0006,
+ "loss": 4.124494552612305,
+ "step": 729
+ },
+ {
+ "epoch": 10.139737991266376,
+ "grad_norm": 0.029547641053795815,
+ "learning_rate": 0.0006,
+ "loss": 4.072463035583496,
+ "step": 730
+ },
+ {
+ "epoch": 10.153711790393013,
+ "grad_norm": 0.03424989432096481,
+ "learning_rate": 0.0006,
+ "loss": 4.111055374145508,
+ "step": 731
+ },
+ {
+ "epoch": 10.167685589519651,
+ "grad_norm": 0.0335191935300827,
+ "learning_rate": 0.0006,
+ "loss": 4.111437797546387,
+ "step": 732
+ },
+ {
+ "epoch": 10.181659388646288,
+ "grad_norm": 0.02894248627126217,
+ "learning_rate": 0.0006,
+ "loss": 4.133310317993164,
+ "step": 733
+ },
+ {
+ "epoch": 10.195633187772925,
+ "grad_norm": 0.0266376081854105,
+ "learning_rate": 0.0006,
+ "loss": 4.132228851318359,
+ "step": 734
+ },
+ {
+ "epoch": 10.209606986899564,
+ "grad_norm": 0.020824341103434563,
+ "learning_rate": 0.0006,
+ "loss": 4.110835075378418,
+ "step": 735
+ },
+ {
+ "epoch": 10.2235807860262,
+ "grad_norm": 0.021089477464556694,
+ "learning_rate": 0.0006,
+ "loss": 4.1186065673828125,
+ "step": 736
+ },
+ {
+ "epoch": 10.237554585152838,
+ "grad_norm": 0.023007674142718315,
+ "learning_rate": 0.0006,
+ "loss": 4.089912414550781,
+ "step": 737
+ },
+ {
+ "epoch": 10.251528384279476,
+ "grad_norm": 0.025911295786499977,
+ "learning_rate": 0.0006,
+ "loss": 4.10264778137207,
+ "step": 738
+ },
+ {
+ "epoch": 10.265502183406113,
+ "grad_norm": 0.02900099940598011,
+ "learning_rate": 0.0006,
+ "loss": 4.074974060058594,
+ "step": 739
+ },
+ {
+ "epoch": 10.279475982532752,
+ "grad_norm": 0.027182135730981827,
+ "learning_rate": 0.0006,
+ "loss": 4.107949256896973,
+ "step": 740
+ },
+ {
+ "epoch": 10.293449781659389,
+ "grad_norm": 0.027884794399142265,
+ "learning_rate": 0.0006,
+ "loss": 4.039497375488281,
+ "step": 741
+ },
+ {
+ "epoch": 10.307423580786025,
+ "grad_norm": 0.025900574401021004,
+ "learning_rate": 0.0006,
+ "loss": 4.063011646270752,
+ "step": 742
+ },
+ {
+ "epoch": 10.321397379912664,
+ "grad_norm": 0.023031197488307953,
+ "learning_rate": 0.0006,
+ "loss": 4.086951732635498,
+ "step": 743
+ },
+ {
+ "epoch": 10.335371179039301,
+ "grad_norm": 0.021363092586398125,
+ "learning_rate": 0.0006,
+ "loss": 4.140152454376221,
+ "step": 744
+ },
+ {
+ "epoch": 10.34934497816594,
+ "grad_norm": 0.019563496112823486,
+ "learning_rate": 0.0006,
+ "loss": 4.087207794189453,
+ "step": 745
+ },
+ {
+ "epoch": 10.363318777292577,
+ "grad_norm": 0.018893307074904442,
+ "learning_rate": 0.0006,
+ "loss": 4.087675094604492,
+ "step": 746
+ },
+ {
+ "epoch": 10.377292576419213,
+ "grad_norm": 0.020667923614382744,
+ "learning_rate": 0.0006,
+ "loss": 4.079525947570801,
+ "step": 747
+ },
+ {
+ "epoch": 10.391266375545852,
+ "grad_norm": 0.021774202585220337,
+ "learning_rate": 0.0006,
+ "loss": 4.107867240905762,
+ "step": 748
+ },
+ {
+ "epoch": 10.405240174672489,
+ "grad_norm": 0.020068392157554626,
+ "learning_rate": 0.0006,
+ "loss": 4.0873212814331055,
+ "step": 749
+ },
+ {
+ "epoch": 10.419213973799126,
+ "grad_norm": 0.01842055842280388,
+ "learning_rate": 0.0006,
+ "loss": 4.101090431213379,
+ "step": 750
+ },
+ {
+ "epoch": 10.433187772925764,
+ "grad_norm": 0.01795836165547371,
+ "learning_rate": 0.0006,
+ "loss": 4.050619602203369,
+ "step": 751
+ },
+ {
+ "epoch": 10.447161572052401,
+ "grad_norm": 0.019673889502882957,
+ "learning_rate": 0.0006,
+ "loss": 4.086307525634766,
+ "step": 752
+ },
+ {
+ "epoch": 10.46113537117904,
+ "grad_norm": 0.01977507211267948,
+ "learning_rate": 0.0006,
+ "loss": 4.0656023025512695,
+ "step": 753
+ },
+ {
+ "epoch": 10.475109170305677,
+ "grad_norm": 0.019471775740385056,
+ "learning_rate": 0.0006,
+ "loss": 4.046194076538086,
+ "step": 754
+ },
+ {
+ "epoch": 10.489082969432314,
+ "grad_norm": 0.018536966294050217,
+ "learning_rate": 0.0006,
+ "loss": 4.033197402954102,
+ "step": 755
+ },
+ {
+ "epoch": 10.503056768558952,
+ "grad_norm": 0.018902234733104706,
+ "learning_rate": 0.0006,
+ "loss": 4.060090065002441,
+ "step": 756
+ },
+ {
+ "epoch": 10.51703056768559,
+ "grad_norm": 0.01902388036251068,
+ "learning_rate": 0.0006,
+ "loss": 4.046975135803223,
+ "step": 757
+ },
+ {
+ "epoch": 10.531004366812226,
+ "grad_norm": 0.01699388213455677,
+ "learning_rate": 0.0006,
+ "loss": 4.081168174743652,
+ "step": 758
+ },
+ {
+ "epoch": 10.544978165938865,
+ "grad_norm": 0.022350501269102097,
+ "learning_rate": 0.0006,
+ "loss": 4.049786567687988,
+ "step": 759
+ },
+ {
+ "epoch": 10.558951965065502,
+ "grad_norm": 0.023642681539058685,
+ "learning_rate": 0.0006,
+ "loss": 4.055563926696777,
+ "step": 760
+ },
+ {
+ "epoch": 10.57292576419214,
+ "grad_norm": 0.02127036638557911,
+ "learning_rate": 0.0006,
+ "loss": 4.027631759643555,
+ "step": 761
+ },
+ {
+ "epoch": 10.586899563318777,
+ "grad_norm": 0.017590979114174843,
+ "learning_rate": 0.0006,
+ "loss": 4.0793137550354,
+ "step": 762
+ },
+ {
+ "epoch": 10.600873362445414,
+ "grad_norm": 0.016930999234318733,
+ "learning_rate": 0.0006,
+ "loss": 4.027737140655518,
+ "step": 763
+ },
+ {
+ "epoch": 10.614847161572053,
+ "grad_norm": 0.018824463710188866,
+ "learning_rate": 0.0006,
+ "loss": 4.046807289123535,
+ "step": 764
+ },
+ {
+ "epoch": 10.62882096069869,
+ "grad_norm": 0.020024564117193222,
+ "learning_rate": 0.0006,
+ "loss": 4.039668083190918,
+ "step": 765
+ },
+ {
+ "epoch": 10.642794759825328,
+ "grad_norm": 0.0220749881118536,
+ "learning_rate": 0.0006,
+ "loss": 4.031907558441162,
+ "step": 766
+ },
+ {
+ "epoch": 10.656768558951965,
+ "grad_norm": 0.023237163200974464,
+ "learning_rate": 0.0006,
+ "loss": 4.059335708618164,
+ "step": 767
+ },
+ {
+ "epoch": 10.670742358078602,
+ "grad_norm": 0.023948276415467262,
+ "learning_rate": 0.0006,
+ "loss": 4.054678440093994,
+ "step": 768
+ },
+ {
+ "epoch": 10.68471615720524,
+ "grad_norm": 0.02620924636721611,
+ "learning_rate": 0.0006,
+ "loss": 4.063493728637695,
+ "step": 769
+ },
+ {
+ "epoch": 10.698689956331878,
+ "grad_norm": 0.02867635153234005,
+ "learning_rate": 0.0006,
+ "loss": 4.036065578460693,
+ "step": 770
+ },
+ {
+ "epoch": 10.712663755458514,
+ "grad_norm": 0.028705662116408348,
+ "learning_rate": 0.0006,
+ "loss": 4.049670219421387,
+ "step": 771
+ },
+ {
+ "epoch": 10.726637554585153,
+ "grad_norm": 0.024740688502788544,
+ "learning_rate": 0.0006,
+ "loss": 4.06446647644043,
+ "step": 772
+ },
+ {
+ "epoch": 10.74061135371179,
+ "grad_norm": 0.03012487292289734,
+ "learning_rate": 0.0006,
+ "loss": 4.0461015701293945,
+ "step": 773
+ },
+ {
+ "epoch": 10.754585152838429,
+ "grad_norm": 0.03286127373576164,
+ "learning_rate": 0.0006,
+ "loss": 4.025463104248047,
+ "step": 774
+ },
+ {
+ "epoch": 10.768558951965066,
+ "grad_norm": 0.028815945610404015,
+ "learning_rate": 0.0006,
+ "loss": 4.064168930053711,
+ "step": 775
+ },
+ {
+ "epoch": 10.782532751091702,
+ "grad_norm": 0.028760947287082672,
+ "learning_rate": 0.0006,
+ "loss": 4.033624649047852,
+ "step": 776
+ },
+ {
+ "epoch": 10.796506550218341,
+ "grad_norm": 0.02942710369825363,
+ "learning_rate": 0.0006,
+ "loss": 4.0383501052856445,
+ "step": 777
+ },
+ {
+ "epoch": 10.810480349344978,
+ "grad_norm": 0.026153555139899254,
+ "learning_rate": 0.0006,
+ "loss": 4.040336608886719,
+ "step": 778
+ },
+ {
+ "epoch": 10.824454148471617,
+ "grad_norm": 0.025876570492982864,
+ "learning_rate": 0.0006,
+ "loss": 4.051267147064209,
+ "step": 779
+ },
+ {
+ "epoch": 10.838427947598253,
+ "grad_norm": 0.024056321009993553,
+ "learning_rate": 0.0006,
+ "loss": 4.035898208618164,
+ "step": 780
+ },
+ {
+ "epoch": 10.85240174672489,
+ "grad_norm": 0.023602450266480446,
+ "learning_rate": 0.0006,
+ "loss": 4.041120529174805,
+ "step": 781
+ },
+ {
+ "epoch": 10.866375545851529,
+ "grad_norm": 0.0207925196737051,
+ "learning_rate": 0.0006,
+ "loss": 4.030442237854004,
+ "step": 782
+ },
+ {
+ "epoch": 10.880349344978166,
+ "grad_norm": 0.021948475390672684,
+ "learning_rate": 0.0006,
+ "loss": 4.059929847717285,
+ "step": 783
+ },
+ {
+ "epoch": 10.894323144104803,
+ "grad_norm": 0.022555390372872353,
+ "learning_rate": 0.0006,
+ "loss": 4.077475547790527,
+ "step": 784
+ },
+ {
+ "epoch": 10.908296943231441,
+ "grad_norm": 0.020376233384013176,
+ "learning_rate": 0.0006,
+ "loss": 4.038033485412598,
+ "step": 785
+ },
+ {
+ "epoch": 10.922270742358078,
+ "grad_norm": 0.019903237000107765,
+ "learning_rate": 0.0006,
+ "loss": 4.036017417907715,
+ "step": 786
+ },
+ {
+ "epoch": 10.936244541484717,
+ "grad_norm": 0.019737590104341507,
+ "learning_rate": 0.0006,
+ "loss": 4.027589321136475,
+ "step": 787
+ },
+ {
+ "epoch": 10.950218340611354,
+ "grad_norm": 0.017857525497674942,
+ "learning_rate": 0.0006,
+ "loss": 4.039187431335449,
+ "step": 788
+ },
+ {
+ "epoch": 10.96419213973799,
+ "grad_norm": 0.019433340057730675,
+ "learning_rate": 0.0006,
+ "loss": 4.025817394256592,
+ "step": 789
+ },
+ {
+ "epoch": 10.97816593886463,
+ "grad_norm": 0.019131962209939957,
+ "learning_rate": 0.0006,
+ "loss": 4.050541877746582,
+ "step": 790
+ },
+ {
+ "epoch": 10.992139737991266,
+ "grad_norm": 0.01899166963994503,
+ "learning_rate": 0.0006,
+ "loss": 4.034682273864746,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.02292267233133316,
+ "learning_rate": 0.0006,
+ "loss": 4.02860689163208,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.223135471343994,
+ "eval_runtime": 50.1809,
+ "eval_samples_per_second": 48.664,
+ "eval_steps_per_second": 1.534,
+ "step": 792
+ },
+ {
+ "epoch": 11.013973799126637,
+ "grad_norm": 0.02331780269742012,
+ "learning_rate": 0.0006,
+ "loss": 3.9552907943725586,
+ "step": 793
+ },
+ {
+ "epoch": 11.027947598253276,
+ "grad_norm": 0.027006106451153755,
+ "learning_rate": 0.0006,
+ "loss": 3.9303345680236816,
+ "step": 794
+ },
+ {
+ "epoch": 11.041921397379912,
+ "grad_norm": 0.03403666242957115,
+ "learning_rate": 0.0006,
+ "loss": 3.93170166015625,
+ "step": 795
+ },
+ {
+ "epoch": 11.055895196506551,
+ "grad_norm": 0.03784231096506119,
+ "learning_rate": 0.0006,
+ "loss": 3.9460182189941406,
+ "step": 796
+ },
+ {
+ "epoch": 11.069868995633188,
+ "grad_norm": 0.036992497742176056,
+ "learning_rate": 0.0006,
+ "loss": 3.9788053035736084,
+ "step": 797
+ },
+ {
+ "epoch": 11.083842794759825,
+ "grad_norm": 0.040899068117141724,
+ "learning_rate": 0.0006,
+ "loss": 3.97415828704834,
+ "step": 798
+ },
+ {
+ "epoch": 11.097816593886463,
+ "grad_norm": 0.0333116240799427,
+ "learning_rate": 0.0006,
+ "loss": 3.9691474437713623,
+ "step": 799
+ },
+ {
+ "epoch": 11.1117903930131,
+ "grad_norm": 0.03146163746714592,
+ "learning_rate": 0.0006,
+ "loss": 3.95757794380188,
+ "step": 800
+ },
+ {
+ "epoch": 11.125764192139737,
+ "grad_norm": 0.031018080189824104,
+ "learning_rate": 0.0006,
+ "loss": 3.9483275413513184,
+ "step": 801
+ },
+ {
+ "epoch": 11.139737991266376,
+ "grad_norm": 0.03301657736301422,
+ "learning_rate": 0.0006,
+ "loss": 3.972309112548828,
+ "step": 802
+ },
+ {
+ "epoch": 11.153711790393013,
+ "grad_norm": 0.03665755316615105,
+ "learning_rate": 0.0006,
+ "loss": 3.963214874267578,
+ "step": 803
+ },
+ {
+ "epoch": 11.167685589519651,
+ "grad_norm": 0.038088612258434296,
+ "learning_rate": 0.0006,
+ "loss": 3.9526877403259277,
+ "step": 804
+ },
+ {
+ "epoch": 11.181659388646288,
+ "grad_norm": 0.035294584929943085,
+ "learning_rate": 0.0006,
+ "loss": 3.9849953651428223,
+ "step": 805
+ },
+ {
+ "epoch": 11.195633187772925,
+ "grad_norm": 0.03202495723962784,
+ "learning_rate": 0.0006,
+ "loss": 3.944120407104492,
+ "step": 806
+ },
+ {
+ "epoch": 11.209606986899564,
+ "grad_norm": 0.028670601546764374,
+ "learning_rate": 0.0006,
+ "loss": 3.9752721786499023,
+ "step": 807
+ },
+ {
+ "epoch": 11.2235807860262,
+ "grad_norm": 0.032401736825704575,
+ "learning_rate": 0.0006,
+ "loss": 3.986171245574951,
+ "step": 808
+ },
+ {
+ "epoch": 11.237554585152838,
+ "grad_norm": 0.033387646079063416,
+ "learning_rate": 0.0006,
+ "loss": 3.977919101715088,
+ "step": 809
+ },
+ {
+ "epoch": 11.251528384279476,
+ "grad_norm": 0.03134278208017349,
+ "learning_rate": 0.0006,
+ "loss": 3.9734086990356445,
+ "step": 810
+ },
+ {
+ "epoch": 11.265502183406113,
+ "grad_norm": 0.030449511483311653,
+ "learning_rate": 0.0006,
+ "loss": 3.995955228805542,
+ "step": 811
+ },
+ {
+ "epoch": 11.279475982532752,
+ "grad_norm": 0.03138570487499237,
+ "learning_rate": 0.0006,
+ "loss": 3.9690403938293457,
+ "step": 812
+ },
+ {
+ "epoch": 11.293449781659389,
+ "grad_norm": 0.03469259291887283,
+ "learning_rate": 0.0006,
+ "loss": 3.9562559127807617,
+ "step": 813
+ },
+ {
+ "epoch": 11.307423580786025,
+ "grad_norm": 0.03249761089682579,
+ "learning_rate": 0.0006,
+ "loss": 3.950381278991699,
+ "step": 814
+ },
+ {
+ "epoch": 11.321397379912664,
+ "grad_norm": 0.03012247197329998,
+ "learning_rate": 0.0006,
+ "loss": 3.9659230709075928,
+ "step": 815
+ },
+ {
+ "epoch": 11.335371179039301,
+ "grad_norm": 0.026212701573967934,
+ "learning_rate": 0.0006,
+ "loss": 3.956185817718506,
+ "step": 816
+ },
+ {
+ "epoch": 11.34934497816594,
+ "grad_norm": 0.02690894901752472,
+ "learning_rate": 0.0006,
+ "loss": 3.9513344764709473,
+ "step": 817
+ },
+ {
+ "epoch": 11.363318777292577,
+ "grad_norm": 0.02419866994023323,
+ "learning_rate": 0.0006,
+ "loss": 3.997973680496216,
+ "step": 818
+ },
+ {
+ "epoch": 11.377292576419213,
+ "grad_norm": 0.027116507291793823,
+ "learning_rate": 0.0006,
+ "loss": 3.9817705154418945,
+ "step": 819
+ },
+ {
+ "epoch": 11.391266375545852,
+ "grad_norm": 0.029049331322312355,
+ "learning_rate": 0.0006,
+ "loss": 3.951998472213745,
+ "step": 820
+ },
+ {
+ "epoch": 11.405240174672489,
+ "grad_norm": 0.026706157252192497,
+ "learning_rate": 0.0006,
+ "loss": 3.9744365215301514,
+ "step": 821
+ },
+ {
+ "epoch": 11.419213973799126,
+ "grad_norm": 0.025000600144267082,
+ "learning_rate": 0.0006,
+ "loss": 3.959059238433838,
+ "step": 822
+ },
+ {
+ "epoch": 11.433187772925764,
+ "grad_norm": 0.024861274287104607,
+ "learning_rate": 0.0006,
+ "loss": 3.9474871158599854,
+ "step": 823
+ },
+ {
+ "epoch": 11.447161572052401,
+ "grad_norm": 0.023006360977888107,
+ "learning_rate": 0.0006,
+ "loss": 3.924236297607422,
+ "step": 824
+ },
+ {
+ "epoch": 11.46113537117904,
+ "grad_norm": 0.023747073486447334,
+ "learning_rate": 0.0006,
+ "loss": 3.9383111000061035,
+ "step": 825
+ },
+ {
+ "epoch": 11.475109170305677,
+ "grad_norm": 0.027958976104855537,
+ "learning_rate": 0.0006,
+ "loss": 3.989518880844116,
+ "step": 826
+ },
+ {
+ "epoch": 11.489082969432314,
+ "grad_norm": 0.026648882776498795,
+ "learning_rate": 0.0006,
+ "loss": 3.9455833435058594,
+ "step": 827
+ },
+ {
+ "epoch": 11.503056768558952,
+ "grad_norm": 0.023990288376808167,
+ "learning_rate": 0.0006,
+ "loss": 3.9832968711853027,
+ "step": 828
+ },
+ {
+ "epoch": 11.51703056768559,
+ "grad_norm": 0.02722238190472126,
+ "learning_rate": 0.0006,
+ "loss": 3.924104690551758,
+ "step": 829
+ },
+ {
+ "epoch": 11.531004366812226,
+ "grad_norm": 0.026512466371059418,
+ "learning_rate": 0.0006,
+ "loss": 3.9410343170166016,
+ "step": 830
+ },
+ {
+ "epoch": 11.544978165938865,
+ "grad_norm": 0.022135436534881592,
+ "learning_rate": 0.0006,
+ "loss": 3.903899669647217,
+ "step": 831
+ },
+ {
+ "epoch": 11.558951965065502,
+ "grad_norm": 0.022456489503383636,
+ "learning_rate": 0.0006,
+ "loss": 3.962076187133789,
+ "step": 832
+ },
+ {
+ "epoch": 11.57292576419214,
+ "grad_norm": 0.024932855740189552,
+ "learning_rate": 0.0006,
+ "loss": 3.9023091793060303,
+ "step": 833
+ },
+ {
+ "epoch": 11.586899563318777,
+ "grad_norm": 0.02856597490608692,
+ "learning_rate": 0.0006,
+ "loss": 3.928679943084717,
+ "step": 834
+ },
+ {
+ "epoch": 11.600873362445414,
+ "grad_norm": 0.034227993339300156,
+ "learning_rate": 0.0006,
+ "loss": 3.9686708450317383,
+ "step": 835
+ },
+ {
+ "epoch": 11.614847161572053,
+ "grad_norm": 0.03348609432578087,
+ "learning_rate": 0.0006,
+ "loss": 4.001498699188232,
+ "step": 836
+ },
+ {
+ "epoch": 11.62882096069869,
+ "grad_norm": 0.028687726706266403,
+ "learning_rate": 0.0006,
+ "loss": 3.9448747634887695,
+ "step": 837
+ },
+ {
+ "epoch": 11.642794759825328,
+ "grad_norm": 0.030512670055031776,
+ "learning_rate": 0.0006,
+ "loss": 3.967744827270508,
+ "step": 838
+ },
+ {
+ "epoch": 11.656768558951965,
+ "grad_norm": 0.028223708271980286,
+ "learning_rate": 0.0006,
+ "loss": 3.937486171722412,
+ "step": 839
+ },
+ {
+ "epoch": 11.670742358078602,
+ "grad_norm": 0.026596587151288986,
+ "learning_rate": 0.0006,
+ "loss": 3.9503097534179688,
+ "step": 840
+ },
+ {
+ "epoch": 11.68471615720524,
+ "grad_norm": 0.025357289239764214,
+ "learning_rate": 0.0006,
+ "loss": 3.9005143642425537,
+ "step": 841
+ },
+ {
+ "epoch": 11.698689956331878,
+ "grad_norm": 0.027513934299349785,
+ "learning_rate": 0.0006,
+ "loss": 3.9426188468933105,
+ "step": 842
+ },
+ {
+ "epoch": 11.712663755458514,
+ "grad_norm": 0.024877114221453667,
+ "learning_rate": 0.0006,
+ "loss": 3.9422965049743652,
+ "step": 843
+ },
+ {
+ "epoch": 11.726637554585153,
+ "grad_norm": 0.024543913081288338,
+ "learning_rate": 0.0006,
+ "loss": 3.9211392402648926,
+ "step": 844
+ },
+ {
+ "epoch": 11.74061135371179,
+ "grad_norm": 0.02748306654393673,
+ "learning_rate": 0.0006,
+ "loss": 3.9308085441589355,
+ "step": 845
+ },
+ {
+ "epoch": 11.754585152838429,
+ "grad_norm": 0.02310740016400814,
+ "learning_rate": 0.0006,
+ "loss": 3.9191694259643555,
+ "step": 846
+ },
+ {
+ "epoch": 11.768558951965066,
+ "grad_norm": 0.01961519382894039,
+ "learning_rate": 0.0006,
+ "loss": 3.963473081588745,
+ "step": 847
+ },
+ {
+ "epoch": 11.782532751091702,
+ "grad_norm": 0.02019876055419445,
+ "learning_rate": 0.0006,
+ "loss": 3.9336318969726562,
+ "step": 848
+ },
+ {
+ "epoch": 11.796506550218341,
+ "grad_norm": 0.017846928909420967,
+ "learning_rate": 0.0006,
+ "loss": 3.9323928356170654,
+ "step": 849
+ },
+ {
+ "epoch": 11.810480349344978,
+ "grad_norm": 0.0204033050686121,
+ "learning_rate": 0.0006,
+ "loss": 3.9221231937408447,
+ "step": 850
+ },
+ {
+ "epoch": 11.824454148471617,
+ "grad_norm": 0.0186605304479599,
+ "learning_rate": 0.0006,
+ "loss": 3.964756965637207,
+ "step": 851
+ },
+ {
+ "epoch": 11.838427947598253,
+ "grad_norm": 0.01672505773603916,
+ "learning_rate": 0.0006,
+ "loss": 3.921032667160034,
+ "step": 852
+ },
+ {
+ "epoch": 11.85240174672489,
+ "grad_norm": 0.01734270341694355,
+ "learning_rate": 0.0006,
+ "loss": 3.9388551712036133,
+ "step": 853
+ },
+ {
+ "epoch": 11.866375545851529,
+ "grad_norm": 0.01686406321823597,
+ "learning_rate": 0.0006,
+ "loss": 3.9283366203308105,
+ "step": 854
+ },
+ {
+ "epoch": 11.880349344978166,
+ "grad_norm": 0.01593155413866043,
+ "learning_rate": 0.0006,
+ "loss": 3.9095754623413086,
+ "step": 855
+ },
+ {
+ "epoch": 11.894323144104803,
+ "grad_norm": 0.014560039155185223,
+ "learning_rate": 0.0006,
+ "loss": 3.942214012145996,
+ "step": 856
+ },
+ {
+ "epoch": 11.908296943231441,
+ "grad_norm": 0.016584530472755432,
+ "learning_rate": 0.0006,
+ "loss": 3.8745198249816895,
+ "step": 857
+ },
+ {
+ "epoch": 11.922270742358078,
+ "grad_norm": 0.016951464116573334,
+ "learning_rate": 0.0006,
+ "loss": 3.9224963188171387,
+ "step": 858
+ },
+ {
+ "epoch": 11.936244541484717,
+ "grad_norm": 0.017965901643037796,
+ "learning_rate": 0.0006,
+ "loss": 3.886237621307373,
+ "step": 859
+ },
+ {
+ "epoch": 11.950218340611354,
+ "grad_norm": 0.01874147541821003,
+ "learning_rate": 0.0006,
+ "loss": 3.9200339317321777,
+ "step": 860
+ },
+ {
+ "epoch": 11.96419213973799,
+ "grad_norm": 0.021464595571160316,
+ "learning_rate": 0.0006,
+ "loss": 3.9424729347229004,
+ "step": 861
+ },
+ {
+ "epoch": 11.97816593886463,
+ "grad_norm": 0.02506706677377224,
+ "learning_rate": 0.0006,
+ "loss": 3.9516968727111816,
+ "step": 862
+ },
+ {
+ "epoch": 11.992139737991266,
+ "grad_norm": 0.02550777979195118,
+ "learning_rate": 0.0006,
+ "loss": 3.9148871898651123,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.022032644599676132,
+ "learning_rate": 0.0006,
+ "loss": 3.934220314025879,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.146186828613281,
+ "eval_runtime": 70.9324,
+ "eval_samples_per_second": 34.427,
+ "eval_steps_per_second": 1.086,
+ "step": 864
+ },
+ {
+ "epoch": 12.013973799126637,
+ "grad_norm": 0.021564407274127007,
+ "learning_rate": 0.0006,
+ "loss": 3.8425402641296387,
+ "step": 865
+ },
+ {
+ "epoch": 12.027947598253276,
+ "grad_norm": 0.021265074610710144,
+ "learning_rate": 0.0006,
+ "loss": 3.8457272052764893,
+ "step": 866
+ },
+ {
+ "epoch": 12.041921397379912,
+ "grad_norm": 0.02154017984867096,
+ "learning_rate": 0.0006,
+ "loss": 3.810920238494873,
+ "step": 867
+ },
+ {
+ "epoch": 12.055895196506551,
+ "grad_norm": 0.020422060042619705,
+ "learning_rate": 0.0006,
+ "loss": 3.8347911834716797,
+ "step": 868
+ },
+ {
+ "epoch": 12.069868995633188,
+ "grad_norm": 0.01949428766965866,
+ "learning_rate": 0.0006,
+ "loss": 3.831073760986328,
+ "step": 869
+ },
+ {
+ "epoch": 12.083842794759825,
+ "grad_norm": 0.021055635064840317,
+ "learning_rate": 0.0006,
+ "loss": 3.8869409561157227,
+ "step": 870
+ },
+ {
+ "epoch": 12.097816593886463,
+ "grad_norm": 0.02397136203944683,
+ "learning_rate": 0.0006,
+ "loss": 3.837860107421875,
+ "step": 871
+ },
+ {
+ "epoch": 12.1117903930131,
+ "grad_norm": 0.02733064442873001,
+ "learning_rate": 0.0006,
+ "loss": 3.8453102111816406,
+ "step": 872
+ },
+ {
+ "epoch": 12.125764192139737,
+ "grad_norm": 0.03023727424442768,
+ "learning_rate": 0.0006,
+ "loss": 3.8106770515441895,
+ "step": 873
+ },
+ {
+ "epoch": 12.139737991266376,
+ "grad_norm": 0.0334315188229084,
+ "learning_rate": 0.0006,
+ "loss": 3.835714817047119,
+ "step": 874
+ },
+ {
+ "epoch": 12.153711790393013,
+ "grad_norm": 0.03233368694782257,
+ "learning_rate": 0.0006,
+ "loss": 3.8509063720703125,
+ "step": 875
+ },
+ {
+ "epoch": 12.167685589519651,
+ "grad_norm": 0.03522663936018944,
+ "learning_rate": 0.0006,
+ "loss": 3.854410171508789,
+ "step": 876
+ },
+ {
+ "epoch": 12.181659388646288,
+ "grad_norm": 0.04753761738538742,
+ "learning_rate": 0.0006,
+ "loss": 3.882387638092041,
+ "step": 877
+ },
+ {
+ "epoch": 12.195633187772925,
+ "grad_norm": 0.049719441682100296,
+ "learning_rate": 0.0006,
+ "loss": 3.8863918781280518,
+ "step": 878
+ },
+ {
+ "epoch": 12.209606986899564,
+ "grad_norm": 0.0482778400182724,
+ "learning_rate": 0.0006,
+ "loss": 3.8418054580688477,
+ "step": 879
+ },
+ {
+ "epoch": 12.2235807860262,
+ "grad_norm": 0.04967353492975235,
+ "learning_rate": 0.0006,
+ "loss": 3.88840389251709,
+ "step": 880
+ },
+ {
+ "epoch": 12.237554585152838,
+ "grad_norm": 0.04709675535559654,
+ "learning_rate": 0.0006,
+ "loss": 3.8831706047058105,
+ "step": 881
+ },
+ {
+ "epoch": 12.251528384279476,
+ "grad_norm": 0.05031110718846321,
+ "learning_rate": 0.0006,
+ "loss": 3.8964877128601074,
+ "step": 882
+ },
+ {
+ "epoch": 12.265502183406113,
+ "grad_norm": 0.04771656170487404,
+ "learning_rate": 0.0006,
+ "loss": 3.902888774871826,
+ "step": 883
+ },
+ {
+ "epoch": 12.279475982532752,
+ "grad_norm": 0.041541457176208496,
+ "learning_rate": 0.0006,
+ "loss": 3.849850654602051,
+ "step": 884
+ },
+ {
+ "epoch": 12.293449781659389,
+ "grad_norm": 0.04055247828364372,
+ "learning_rate": 0.0006,
+ "loss": 3.907242774963379,
+ "step": 885
+ },
+ {
+ "epoch": 12.307423580786025,
+ "grad_norm": 0.0392373651266098,
+ "learning_rate": 0.0006,
+ "loss": 3.882129669189453,
+ "step": 886
+ },
+ {
+ "epoch": 12.321397379912664,
+ "grad_norm": 0.040552686899900436,
+ "learning_rate": 0.0006,
+ "loss": 3.8719077110290527,
+ "step": 887
+ },
+ {
+ "epoch": 12.335371179039301,
+ "grad_norm": 0.03997429832816124,
+ "learning_rate": 0.0006,
+ "loss": 3.8770203590393066,
+ "step": 888
+ },
+ {
+ "epoch": 12.34934497816594,
+ "grad_norm": 0.04006315395236015,
+ "learning_rate": 0.0006,
+ "loss": 3.888833999633789,
+ "step": 889
+ },
+ {
+ "epoch": 12.363318777292577,
+ "grad_norm": 0.04192065820097923,
+ "learning_rate": 0.0006,
+ "loss": 3.9480466842651367,
+ "step": 890
+ },
+ {
+ "epoch": 12.377292576419213,
+ "grad_norm": 0.03901645913720131,
+ "learning_rate": 0.0006,
+ "loss": 3.8987879753112793,
+ "step": 891
+ },
+ {
+ "epoch": 12.391266375545852,
+ "grad_norm": 0.034923430532217026,
+ "learning_rate": 0.0006,
+ "loss": 3.887423515319824,
+ "step": 892
+ },
+ {
+ "epoch": 12.405240174672489,
+ "grad_norm": 0.03397240489721298,
+ "learning_rate": 0.0006,
+ "loss": 3.874734878540039,
+ "step": 893
+ },
+ {
+ "epoch": 12.419213973799126,
+ "grad_norm": 0.03498395159840584,
+ "learning_rate": 0.0006,
+ "loss": 3.8725318908691406,
+ "step": 894
+ },
+ {
+ "epoch": 12.433187772925764,
+ "grad_norm": 0.03299591317772865,
+ "learning_rate": 0.0006,
+ "loss": 3.8542797565460205,
+ "step": 895
+ },
+ {
+ "epoch": 12.447161572052401,
+ "grad_norm": 0.03591961786150932,
+ "learning_rate": 0.0006,
+ "loss": 3.8667421340942383,
+ "step": 896
+ },
+ {
+ "epoch": 12.46113537117904,
+ "grad_norm": 0.032906632870435715,
+ "learning_rate": 0.0006,
+ "loss": 3.802811622619629,
+ "step": 897
+ },
+ {
+ "epoch": 12.475109170305677,
+ "grad_norm": 0.02919355221092701,
+ "learning_rate": 0.0006,
+ "loss": 3.9085006713867188,
+ "step": 898
+ },
+ {
+ "epoch": 12.489082969432314,
+ "grad_norm": 0.02636081911623478,
+ "learning_rate": 0.0006,
+ "loss": 3.876291275024414,
+ "step": 899
+ },
+ {
+ "epoch": 12.503056768558952,
+ "grad_norm": 0.027786940336227417,
+ "learning_rate": 0.0006,
+ "loss": 3.813384532928467,
+ "step": 900
+ },
+ {
+ "epoch": 12.51703056768559,
+ "grad_norm": 0.021504681557416916,
+ "learning_rate": 0.0006,
+ "loss": 3.8531389236450195,
+ "step": 901
+ },
+ {
+ "epoch": 12.531004366812226,
+ "grad_norm": 0.020176850259304047,
+ "learning_rate": 0.0006,
+ "loss": 3.8540682792663574,
+ "step": 902
+ },
+ {
+ "epoch": 12.544978165938865,
+ "grad_norm": 0.018069395795464516,
+ "learning_rate": 0.0006,
+ "loss": 3.8401103019714355,
+ "step": 903
+ },
+ {
+ "epoch": 12.558951965065502,
+ "grad_norm": 0.017131980508565903,
+ "learning_rate": 0.0006,
+ "loss": 3.8590402603149414,
+ "step": 904
+ },
+ {
+ "epoch": 12.57292576419214,
+ "grad_norm": 0.016838181763887405,
+ "learning_rate": 0.0006,
+ "loss": 3.816793441772461,
+ "step": 905
+ },
+ {
+ "epoch": 12.586899563318777,
+ "grad_norm": 0.01688799448311329,
+ "learning_rate": 0.0006,
+ "loss": 3.8501386642456055,
+ "step": 906
+ },
+ {
+ "epoch": 12.600873362445414,
+ "grad_norm": 0.018547389656305313,
+ "learning_rate": 0.0006,
+ "loss": 3.844679355621338,
+ "step": 907
+ },
+ {
+ "epoch": 12.614847161572053,
+ "grad_norm": 0.01693912222981453,
+ "learning_rate": 0.0006,
+ "loss": 3.8392562866210938,
+ "step": 908
+ },
+ {
+ "epoch": 12.62882096069869,
+ "grad_norm": 0.017632123082876205,
+ "learning_rate": 0.0006,
+ "loss": 3.8433165550231934,
+ "step": 909
+ },
+ {
+ "epoch": 12.642794759825328,
+ "grad_norm": 0.017826121300458908,
+ "learning_rate": 0.0006,
+ "loss": 3.880542039871216,
+ "step": 910
+ },
+ {
+ "epoch": 12.656768558951965,
+ "grad_norm": 0.01775546185672283,
+ "learning_rate": 0.0006,
+ "loss": 3.828543186187744,
+ "step": 911
+ },
+ {
+ "epoch": 12.670742358078602,
+ "grad_norm": 0.016220970079302788,
+ "learning_rate": 0.0006,
+ "loss": 3.835036039352417,
+ "step": 912
+ },
+ {
+ "epoch": 12.68471615720524,
+ "grad_norm": 0.015805263072252274,
+ "learning_rate": 0.0006,
+ "loss": 3.860929489135742,
+ "step": 913
+ },
+ {
+ "epoch": 12.698689956331878,
+ "grad_norm": 0.014601027593016624,
+ "learning_rate": 0.0006,
+ "loss": 3.849916934967041,
+ "step": 914
+ },
+ {
+ "epoch": 12.712663755458514,
+ "grad_norm": 0.014955640770494938,
+ "learning_rate": 0.0006,
+ "loss": 3.82222843170166,
+ "step": 915
+ },
+ {
+ "epoch": 12.726637554585153,
+ "grad_norm": 0.01635930687189102,
+ "learning_rate": 0.0006,
+ "loss": 3.8616011142730713,
+ "step": 916
+ },
+ {
+ "epoch": 12.74061135371179,
+ "grad_norm": 0.015701569616794586,
+ "learning_rate": 0.0006,
+ "loss": 3.827305316925049,
+ "step": 917
+ },
+ {
+ "epoch": 12.754585152838429,
+ "grad_norm": 0.014878005720674992,
+ "learning_rate": 0.0006,
+ "loss": 3.8204379081726074,
+ "step": 918
+ },
+ {
+ "epoch": 12.768558951965066,
+ "grad_norm": 0.015863968059420586,
+ "learning_rate": 0.0006,
+ "loss": 3.8282384872436523,
+ "step": 919
+ },
+ {
+ "epoch": 12.782532751091702,
+ "grad_norm": 0.015376720577478409,
+ "learning_rate": 0.0006,
+ "loss": 3.8476157188415527,
+ "step": 920
+ },
+ {
+ "epoch": 12.796506550218341,
+ "grad_norm": 0.015112238936126232,
+ "learning_rate": 0.0006,
+ "loss": 3.814873695373535,
+ "step": 921
+ },
+ {
+ "epoch": 12.810480349344978,
+ "grad_norm": 0.014457261189818382,
+ "learning_rate": 0.0006,
+ "loss": 3.874340295791626,
+ "step": 922
+ },
+ {
+ "epoch": 12.824454148471617,
+ "grad_norm": 0.013799191452562809,
+ "learning_rate": 0.0006,
+ "loss": 3.8461344242095947,
+ "step": 923
+ },
+ {
+ "epoch": 12.838427947598253,
+ "grad_norm": 0.015976861119270325,
+ "learning_rate": 0.0006,
+ "loss": 3.8348283767700195,
+ "step": 924
+ },
+ {
+ "epoch": 12.85240174672489,
+ "grad_norm": 0.016569344326853752,
+ "learning_rate": 0.0006,
+ "loss": 3.8375229835510254,
+ "step": 925
+ },
+ {
+ "epoch": 12.866375545851529,
+ "grad_norm": 0.016443882137537003,
+ "learning_rate": 0.0006,
+ "loss": 3.814178943634033,
+ "step": 926
+ },
+ {
+ "epoch": 12.880349344978166,
+ "grad_norm": 0.01687130145728588,
+ "learning_rate": 0.0006,
+ "loss": 3.7934679985046387,
+ "step": 927
+ },
+ {
+ "epoch": 12.894323144104803,
+ "grad_norm": 0.01750864088535309,
+ "learning_rate": 0.0006,
+ "loss": 3.8297150135040283,
+ "step": 928
+ },
+ {
+ "epoch": 12.908296943231441,
+ "grad_norm": 0.017512314021587372,
+ "learning_rate": 0.0006,
+ "loss": 3.7785584926605225,
+ "step": 929
+ },
+ {
+ "epoch": 12.922270742358078,
+ "grad_norm": 0.01678168773651123,
+ "learning_rate": 0.0006,
+ "loss": 3.8569579124450684,
+ "step": 930
+ },
+ {
+ "epoch": 12.936244541484717,
+ "grad_norm": 0.017443843185901642,
+ "learning_rate": 0.0006,
+ "loss": 3.8003761768341064,
+ "step": 931
+ },
+ {
+ "epoch": 12.950218340611354,
+ "grad_norm": 0.017418883740901947,
+ "learning_rate": 0.0006,
+ "loss": 3.8066251277923584,
+ "step": 932
+ },
+ {
+ "epoch": 12.96419213973799,
+ "grad_norm": 0.01592562161386013,
+ "learning_rate": 0.0006,
+ "loss": 3.8218679428100586,
+ "step": 933
+ },
+ {
+ "epoch": 12.97816593886463,
+ "grad_norm": 0.01742086559534073,
+ "learning_rate": 0.0006,
+ "loss": 3.8229286670684814,
+ "step": 934
+ },
+ {
+ "epoch": 12.992139737991266,
+ "grad_norm": 0.017524391412734985,
+ "learning_rate": 0.0006,
+ "loss": 3.810349941253662,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.019961200654506683,
+ "learning_rate": 0.0006,
+ "loss": 3.8229546546936035,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.08996057510376,
+ "eval_runtime": 49.9041,
+ "eval_samples_per_second": 48.934,
+ "eval_steps_per_second": 1.543,
+ "step": 936
+ },
+ {
+ "epoch": 13.013973799126637,
+ "grad_norm": 0.023570898920297623,
+ "learning_rate": 0.0006,
+ "loss": 3.7133145332336426,
+ "step": 937
+ },
+ {
+ "epoch": 13.027947598253276,
+ "grad_norm": 0.03165869787335396,
+ "learning_rate": 0.0006,
+ "loss": 3.7199676036834717,
+ "step": 938
+ },
+ {
+ "epoch": 13.041921397379912,
+ "grad_norm": 0.03561289608478546,
+ "learning_rate": 0.0006,
+ "loss": 3.7414278984069824,
+ "step": 939
+ },
+ {
+ "epoch": 13.055895196506551,
+ "grad_norm": 0.03167610988020897,
+ "learning_rate": 0.0006,
+ "loss": 3.7263808250427246,
+ "step": 940
+ },
+ {
+ "epoch": 13.069868995633188,
+ "grad_norm": 0.035912878811359406,
+ "learning_rate": 0.0006,
+ "loss": 3.7170684337615967,
+ "step": 941
+ },
+ {
+ "epoch": 13.083842794759825,
+ "grad_norm": 0.03632035478949547,
+ "learning_rate": 0.0006,
+ "loss": 3.750077724456787,
+ "step": 942
+ },
+ {
+ "epoch": 13.097816593886463,
+ "grad_norm": 0.031844258308410645,
+ "learning_rate": 0.0006,
+ "loss": 3.7065911293029785,
+ "step": 943
+ },
+ {
+ "epoch": 13.1117903930131,
+ "grad_norm": 0.03410554304718971,
+ "learning_rate": 0.0006,
+ "loss": 3.739224910736084,
+ "step": 944
+ },
+ {
+ "epoch": 13.125764192139737,
+ "grad_norm": 0.03375937044620514,
+ "learning_rate": 0.0006,
+ "loss": 3.6903367042541504,
+ "step": 945
+ },
+ {
+ "epoch": 13.139737991266376,
+ "grad_norm": 0.03705555200576782,
+ "learning_rate": 0.0006,
+ "loss": 3.778822422027588,
+ "step": 946
+ },
+ {
+ "epoch": 13.153711790393013,
+ "grad_norm": 0.03603963926434517,
+ "learning_rate": 0.0006,
+ "loss": 3.73783802986145,
+ "step": 947
+ },
+ {
+ "epoch": 13.167685589519651,
+ "grad_norm": 0.034089673310518265,
+ "learning_rate": 0.0006,
+ "loss": 3.7886078357696533,
+ "step": 948
+ },
+ {
+ "epoch": 13.181659388646288,
+ "grad_norm": 0.03745635598897934,
+ "learning_rate": 0.0006,
+ "loss": 3.76809024810791,
+ "step": 949
+ },
+ {
+ "epoch": 13.195633187772925,
+ "grad_norm": 0.04209613427519798,
+ "learning_rate": 0.0006,
+ "loss": 3.7813467979431152,
+ "step": 950
+ },
+ {
+ "epoch": 13.209606986899564,
+ "grad_norm": 0.036846764385700226,
+ "learning_rate": 0.0006,
+ "loss": 3.7726383209228516,
+ "step": 951
+ },
+ {
+ "epoch": 13.2235807860262,
+ "grad_norm": 0.036949072033166885,
+ "learning_rate": 0.0006,
+ "loss": 3.7197751998901367,
+ "step": 952
+ },
+ {
+ "epoch": 13.237554585152838,
+ "grad_norm": 0.03458063304424286,
+ "learning_rate": 0.0006,
+ "loss": 3.7695436477661133,
+ "step": 953
+ },
+ {
+ "epoch": 13.251528384279476,
+ "grad_norm": 0.038074951618909836,
+ "learning_rate": 0.0006,
+ "loss": 3.7531425952911377,
+ "step": 954
+ },
+ {
+ "epoch": 13.265502183406113,
+ "grad_norm": 0.03661646693944931,
+ "learning_rate": 0.0006,
+ "loss": 3.767953872680664,
+ "step": 955
+ },
+ {
+ "epoch": 13.279475982532752,
+ "grad_norm": 0.039892520755529404,
+ "learning_rate": 0.0006,
+ "loss": 3.7687599658966064,
+ "step": 956
+ },
+ {
+ "epoch": 13.293449781659389,
+ "grad_norm": 0.036572884768247604,
+ "learning_rate": 0.0006,
+ "loss": 3.7693774700164795,
+ "step": 957
+ },
+ {
+ "epoch": 13.307423580786025,
+ "grad_norm": 0.03855743631720543,
+ "learning_rate": 0.0006,
+ "loss": 3.8233063220977783,
+ "step": 958
+ },
+ {
+ "epoch": 13.321397379912664,
+ "grad_norm": 0.03484344109892845,
+ "learning_rate": 0.0006,
+ "loss": 3.79215669631958,
+ "step": 959
+ },
+ {
+ "epoch": 13.335371179039301,
+ "grad_norm": 0.036101482808589935,
+ "learning_rate": 0.0006,
+ "loss": 3.768373966217041,
+ "step": 960
+ },
+ {
+ "epoch": 13.34934497816594,
+ "grad_norm": 0.03150841221213341,
+ "learning_rate": 0.0006,
+ "loss": 3.7502622604370117,
+ "step": 961
+ },
+ {
+ "epoch": 13.363318777292577,
+ "grad_norm": 0.03154430910944939,
+ "learning_rate": 0.0006,
+ "loss": 3.764416217803955,
+ "step": 962
+ },
+ {
+ "epoch": 13.377292576419213,
+ "grad_norm": 0.03163410350680351,
+ "learning_rate": 0.0006,
+ "loss": 3.757230758666992,
+ "step": 963
+ },
+ {
+ "epoch": 13.391266375545852,
+ "grad_norm": 0.02932742051780224,
+ "learning_rate": 0.0006,
+ "loss": 3.7860183715820312,
+ "step": 964
+ },
+ {
+ "epoch": 13.405240174672489,
+ "grad_norm": 0.025545787066221237,
+ "learning_rate": 0.0006,
+ "loss": 3.748073101043701,
+ "step": 965
+ },
+ {
+ "epoch": 13.419213973799126,
+ "grad_norm": 0.02389710769057274,
+ "learning_rate": 0.0006,
+ "loss": 3.778963565826416,
+ "step": 966
+ },
+ {
+ "epoch": 13.433187772925764,
+ "grad_norm": 0.023781558498740196,
+ "learning_rate": 0.0006,
+ "loss": 3.7151870727539062,
+ "step": 967
+ },
+ {
+ "epoch": 13.447161572052401,
+ "grad_norm": 0.023273715749382973,
+ "learning_rate": 0.0006,
+ "loss": 3.766374111175537,
+ "step": 968
+ },
+ {
+ "epoch": 13.46113537117904,
+ "grad_norm": 0.023059967905282974,
+ "learning_rate": 0.0006,
+ "loss": 3.783663749694824,
+ "step": 969
+ },
+ {
+ "epoch": 13.475109170305677,
+ "grad_norm": 0.020438550040125847,
+ "learning_rate": 0.0006,
+ "loss": 3.755140781402588,
+ "step": 970
+ },
+ {
+ "epoch": 13.489082969432314,
+ "grad_norm": 0.019272785633802414,
+ "learning_rate": 0.0006,
+ "loss": 3.741131544113159,
+ "step": 971
+ },
+ {
+ "epoch": 13.503056768558952,
+ "grad_norm": 0.017616258934140205,
+ "learning_rate": 0.0006,
+ "loss": 3.7395365238189697,
+ "step": 972
+ },
+ {
+ "epoch": 13.51703056768559,
+ "grad_norm": 0.017435181885957718,
+ "learning_rate": 0.0006,
+ "loss": 3.7755181789398193,
+ "step": 973
+ },
+ {
+ "epoch": 13.531004366812226,
+ "grad_norm": 0.01710323616862297,
+ "learning_rate": 0.0006,
+ "loss": 3.7158422470092773,
+ "step": 974
+ },
+ {
+ "epoch": 13.544978165938865,
+ "grad_norm": 0.016912570223212242,
+ "learning_rate": 0.0006,
+ "loss": 3.727623462677002,
+ "step": 975
+ },
+ {
+ "epoch": 13.558951965065502,
+ "grad_norm": 0.0181113388389349,
+ "learning_rate": 0.0006,
+ "loss": 3.771268367767334,
+ "step": 976
+ },
+ {
+ "epoch": 13.57292576419214,
+ "grad_norm": 0.018880970776081085,
+ "learning_rate": 0.0006,
+ "loss": 3.7602953910827637,
+ "step": 977
+ },
+ {
+ "epoch": 13.586899563318777,
+ "grad_norm": 0.019182899966835976,
+ "learning_rate": 0.0006,
+ "loss": 3.7339329719543457,
+ "step": 978
+ },
+ {
+ "epoch": 13.600873362445414,
+ "grad_norm": 0.02025751583278179,
+ "learning_rate": 0.0006,
+ "loss": 3.7562665939331055,
+ "step": 979
+ },
+ {
+ "epoch": 13.614847161572053,
+ "grad_norm": 0.01820831373333931,
+ "learning_rate": 0.0006,
+ "loss": 3.725492477416992,
+ "step": 980
+ },
+ {
+ "epoch": 13.62882096069869,
+ "grad_norm": 0.017619458958506584,
+ "learning_rate": 0.0006,
+ "loss": 3.714106798171997,
+ "step": 981
+ },
+ {
+ "epoch": 13.642794759825328,
+ "grad_norm": 0.016764821484684944,
+ "learning_rate": 0.0006,
+ "loss": 3.7665224075317383,
+ "step": 982
+ },
+ {
+ "epoch": 13.656768558951965,
+ "grad_norm": 0.016131598502397537,
+ "learning_rate": 0.0006,
+ "loss": 3.779419422149658,
+ "step": 983
+ },
+ {
+ "epoch": 13.670742358078602,
+ "grad_norm": 0.01535084005445242,
+ "learning_rate": 0.0006,
+ "loss": 3.7591190338134766,
+ "step": 984
+ },
+ {
+ "epoch": 13.68471615720524,
+ "grad_norm": 0.016390377655625343,
+ "learning_rate": 0.0006,
+ "loss": 3.7544782161712646,
+ "step": 985
+ },
+ {
+ "epoch": 13.698689956331878,
+ "grad_norm": 0.016028346493840218,
+ "learning_rate": 0.0006,
+ "loss": 3.772927761077881,
+ "step": 986
+ },
+ {
+ "epoch": 13.712663755458514,
+ "grad_norm": 0.015925439074635506,
+ "learning_rate": 0.0006,
+ "loss": 3.7092344760894775,
+ "step": 987
+ },
+ {
+ "epoch": 13.726637554585153,
+ "grad_norm": 0.016125058755278587,
+ "learning_rate": 0.0006,
+ "loss": 3.7528953552246094,
+ "step": 988
+ },
+ {
+ "epoch": 13.74061135371179,
+ "grad_norm": 0.015887845307588577,
+ "learning_rate": 0.0006,
+ "loss": 3.744354248046875,
+ "step": 989
+ },
+ {
+ "epoch": 13.754585152838429,
+ "grad_norm": 0.015301455743610859,
+ "learning_rate": 0.0006,
+ "loss": 3.743435859680176,
+ "step": 990
+ },
+ {
+ "epoch": 13.768558951965066,
+ "grad_norm": 0.014814727008342743,
+ "learning_rate": 0.0006,
+ "loss": 3.7351980209350586,
+ "step": 991
+ },
+ {
+ "epoch": 13.782532751091702,
+ "grad_norm": 0.01479976624250412,
+ "learning_rate": 0.0006,
+ "loss": 3.722226619720459,
+ "step": 992
+ },
+ {
+ "epoch": 13.796506550218341,
+ "grad_norm": 0.016558295115828514,
+ "learning_rate": 0.0006,
+ "loss": 3.717442512512207,
+ "step": 993
+ },
+ {
+ "epoch": 13.810480349344978,
+ "grad_norm": 0.01635979674756527,
+ "learning_rate": 0.0006,
+ "loss": 3.707097053527832,
+ "step": 994
+ },
+ {
+ "epoch": 13.824454148471617,
+ "grad_norm": 0.014870786108076572,
+ "learning_rate": 0.0006,
+ "loss": 3.768139362335205,
+ "step": 995
+ },
+ {
+ "epoch": 13.838427947598253,
+ "grad_norm": 0.014958183281123638,
+ "learning_rate": 0.0006,
+ "loss": 3.722902774810791,
+ "step": 996
+ },
+ {
+ "epoch": 13.85240174672489,
+ "grad_norm": 0.015501127578318119,
+ "learning_rate": 0.0006,
+ "loss": 3.7323732376098633,
+ "step": 997
+ },
+ {
+ "epoch": 13.866375545851529,
+ "grad_norm": 0.015276075340807438,
+ "learning_rate": 0.0006,
+ "loss": 3.734039783477783,
+ "step": 998
+ },
+ {
+ "epoch": 13.880349344978166,
+ "grad_norm": 0.01742061786353588,
+ "learning_rate": 0.0006,
+ "loss": 3.737147331237793,
+ "step": 999
+ },
+ {
+ "epoch": 13.894323144104803,
+ "grad_norm": 0.016311734914779663,
+ "learning_rate": 0.0006,
+ "loss": 3.7114202976226807,
+ "step": 1000
+ },
+ {
+ "epoch": 13.908296943231441,
+ "grad_norm": 0.017144575715065002,
+ "learning_rate": 0.0006,
+ "loss": 3.734762191772461,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922270742358078,
+ "grad_norm": 0.016401860862970352,
+ "learning_rate": 0.0006,
+ "loss": 3.753246784210205,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936244541484717,
+ "grad_norm": 0.015357336029410362,
+ "learning_rate": 0.0006,
+ "loss": 3.7216477394104004,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950218340611354,
+ "grad_norm": 0.016586005687713623,
+ "learning_rate": 0.0006,
+ "loss": 3.793790102005005,
+ "step": 1004
+ },
+ {
+ "epoch": 13.96419213973799,
+ "grad_norm": 0.015338776633143425,
+ "learning_rate": 0.0006,
+ "loss": 3.711658000946045,
+ "step": 1005
+ },
+ {
+ "epoch": 13.97816593886463,
+ "grad_norm": 0.017011435702443123,
+ "learning_rate": 0.0006,
+ "loss": 3.752537727355957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992139737991266,
+ "grad_norm": 0.017308345064520836,
+ "learning_rate": 0.0006,
+ "loss": 3.7391486167907715,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.01815737411379814,
+ "learning_rate": 0.0006,
+ "loss": 3.7011828422546387,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.046541690826416,
+ "eval_runtime": 54.3615,
+ "eval_samples_per_second": 44.922,
+ "eval_steps_per_second": 1.416,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013973799126637,
+ "grad_norm": 0.01765853725373745,
+ "learning_rate": 0.0006,
+ "loss": 3.6156458854675293,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027947598253276,
+ "grad_norm": 0.02285143919289112,
+ "learning_rate": 0.0006,
+ "loss": 3.6625490188598633,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041921397379912,
+ "grad_norm": 0.02511940896511078,
+ "learning_rate": 0.0006,
+ "loss": 3.619877815246582,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055895196506551,
+ "grad_norm": 0.02781127765774727,
+ "learning_rate": 0.0006,
+ "loss": 3.676270008087158,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069868995633188,
+ "grad_norm": 0.027363400906324387,
+ "learning_rate": 0.0006,
+ "loss": 3.64404034614563,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083842794759825,
+ "grad_norm": 0.02478782832622528,
+ "learning_rate": 0.0006,
+ "loss": 3.6325106620788574,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097816593886463,
+ "grad_norm": 0.02767058275640011,
+ "learning_rate": 0.0006,
+ "loss": 3.65087890625,
+ "step": 1015
+ },
+ {
+ "epoch": 14.1117903930131,
+ "grad_norm": 0.026782231405377388,
+ "learning_rate": 0.0006,
+ "loss": 3.6227691173553467,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125764192139737,
+ "grad_norm": 0.02921525575220585,
+ "learning_rate": 0.0006,
+ "loss": 3.5829410552978516,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139737991266376,
+ "grad_norm": 0.029077231884002686,
+ "learning_rate": 0.0006,
+ "loss": 3.645134687423706,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153711790393013,
+ "grad_norm": 0.0327303521335125,
+ "learning_rate": 0.0006,
+ "loss": 3.629804849624634,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167685589519651,
+ "grad_norm": 0.035763293504714966,
+ "learning_rate": 0.0006,
+ "loss": 3.6261279582977295,
+ "step": 1020
+ },
+ {
+ "epoch": 14.181659388646288,
+ "grad_norm": 0.03943935036659241,
+ "learning_rate": 0.0006,
+ "loss": 3.6591973304748535,
+ "step": 1021
+ },
+ {
+ "epoch": 14.195633187772925,
+ "grad_norm": 0.03753122314810753,
+ "learning_rate": 0.0006,
+ "loss": 3.6450369358062744,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209606986899564,
+ "grad_norm": 0.04103509336709976,
+ "learning_rate": 0.0006,
+ "loss": 3.6689958572387695,
+ "step": 1023
+ },
+ {
+ "epoch": 14.2235807860262,
+ "grad_norm": 0.04133584722876549,
+ "learning_rate": 0.0006,
+ "loss": 3.6584630012512207,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237554585152838,
+ "grad_norm": 0.04211857542395592,
+ "learning_rate": 0.0006,
+ "loss": 3.6606225967407227,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251528384279476,
+ "grad_norm": 0.038261570036411285,
+ "learning_rate": 0.0006,
+ "loss": 3.667980194091797,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265502183406113,
+ "grad_norm": 0.03518976271152496,
+ "learning_rate": 0.0006,
+ "loss": 3.6699838638305664,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279475982532752,
+ "grad_norm": 0.03253129869699478,
+ "learning_rate": 0.0006,
+ "loss": 3.636895179748535,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293449781659389,
+ "grad_norm": 0.031595997512340546,
+ "learning_rate": 0.0006,
+ "loss": 3.632096290588379,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307423580786025,
+ "grad_norm": 0.03253999352455139,
+ "learning_rate": 0.0006,
+ "loss": 3.6577043533325195,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321397379912664,
+ "grad_norm": 0.034704145044088364,
+ "learning_rate": 0.0006,
+ "loss": 3.703457832336426,
+ "step": 1031
+ },
+ {
+ "epoch": 14.335371179039301,
+ "grad_norm": 0.03362954035401344,
+ "learning_rate": 0.0006,
+ "loss": 3.6303958892822266,
+ "step": 1032
+ },
+ {
+ "epoch": 14.34934497816594,
+ "grad_norm": 0.02985706552863121,
+ "learning_rate": 0.0006,
+ "loss": 3.669577121734619,
+ "step": 1033
+ },
+ {
+ "epoch": 14.363318777292577,
+ "grad_norm": 0.028826212510466576,
+ "learning_rate": 0.0006,
+ "loss": 3.6573240756988525,
+ "step": 1034
+ },
+ {
+ "epoch": 14.377292576419213,
+ "grad_norm": 0.025705639272928238,
+ "learning_rate": 0.0006,
+ "loss": 3.695673942565918,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391266375545852,
+ "grad_norm": 0.02392077073454857,
+ "learning_rate": 0.0006,
+ "loss": 3.699263095855713,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405240174672489,
+ "grad_norm": 0.02234474942088127,
+ "learning_rate": 0.0006,
+ "loss": 3.666858196258545,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419213973799126,
+ "grad_norm": 0.021519573405385017,
+ "learning_rate": 0.0006,
+ "loss": 3.6542158126831055,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433187772925764,
+ "grad_norm": 0.019302112981677055,
+ "learning_rate": 0.0006,
+ "loss": 3.672900676727295,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447161572052401,
+ "grad_norm": 0.01938394270837307,
+ "learning_rate": 0.0006,
+ "loss": 3.6841869354248047,
+ "step": 1040
+ },
+ {
+ "epoch": 14.46113537117904,
+ "grad_norm": 0.01918088085949421,
+ "learning_rate": 0.0006,
+ "loss": 3.6915340423583984,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475109170305677,
+ "grad_norm": 0.019382303580641747,
+ "learning_rate": 0.0006,
+ "loss": 3.696239471435547,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489082969432314,
+ "grad_norm": 0.0190880224108696,
+ "learning_rate": 0.0006,
+ "loss": 3.686777114868164,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503056768558952,
+ "grad_norm": 0.019921699538826942,
+ "learning_rate": 0.0006,
+ "loss": 3.596571207046509,
+ "step": 1044
+ },
+ {
+ "epoch": 14.51703056768559,
+ "grad_norm": 0.019849983975291252,
+ "learning_rate": 0.0006,
+ "loss": 3.6621527671813965,
+ "step": 1045
+ },
+ {
+ "epoch": 14.531004366812226,
+ "grad_norm": 0.01987219788134098,
+ "learning_rate": 0.0006,
+ "loss": 3.6440532207489014,
+ "step": 1046
+ },
+ {
+ "epoch": 14.544978165938865,
+ "grad_norm": 0.019135860726237297,
+ "learning_rate": 0.0006,
+ "loss": 3.663760185241699,
+ "step": 1047
+ },
+ {
+ "epoch": 14.558951965065502,
+ "grad_norm": 0.019754081964492798,
+ "learning_rate": 0.0006,
+ "loss": 3.692115306854248,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57292576419214,
+ "grad_norm": 0.017559237778186798,
+ "learning_rate": 0.0006,
+ "loss": 3.6560468673706055,
+ "step": 1049
+ },
+ {
+ "epoch": 14.586899563318777,
+ "grad_norm": 0.018740499392151833,
+ "learning_rate": 0.0006,
+ "loss": 3.678459405899048,
+ "step": 1050
+ },
+ {
+ "epoch": 14.600873362445414,
+ "grad_norm": 0.020979298278689384,
+ "learning_rate": 0.0006,
+ "loss": 3.6760807037353516,
+ "step": 1051
+ },
+ {
+ "epoch": 14.614847161572053,
+ "grad_norm": 0.024136187508702278,
+ "learning_rate": 0.0006,
+ "loss": 3.6586780548095703,
+ "step": 1052
+ },
+ {
+ "epoch": 14.62882096069869,
+ "grad_norm": 0.022492283955216408,
+ "learning_rate": 0.0006,
+ "loss": 3.6521711349487305,
+ "step": 1053
+ },
+ {
+ "epoch": 14.642794759825328,
+ "grad_norm": 0.022067412734031677,
+ "learning_rate": 0.0006,
+ "loss": 3.6784937381744385,
+ "step": 1054
+ },
+ {
+ "epoch": 14.656768558951965,
+ "grad_norm": 0.019800225272774696,
+ "learning_rate": 0.0006,
+ "loss": 3.6375701427459717,
+ "step": 1055
+ },
+ {
+ "epoch": 14.670742358078602,
+ "grad_norm": 0.018210966140031815,
+ "learning_rate": 0.0006,
+ "loss": 3.6653239727020264,
+ "step": 1056
+ },
+ {
+ "epoch": 14.68471615720524,
+ "grad_norm": 0.018579861149191856,
+ "learning_rate": 0.0006,
+ "loss": 3.718411922454834,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698689956331878,
+ "grad_norm": 0.016911206766963005,
+ "learning_rate": 0.0006,
+ "loss": 3.6463894844055176,
+ "step": 1058
+ },
+ {
+ "epoch": 14.712663755458514,
+ "grad_norm": 0.016846856102347374,
+ "learning_rate": 0.0006,
+ "loss": 3.672767162322998,
+ "step": 1059
+ },
+ {
+ "epoch": 14.726637554585153,
+ "grad_norm": 0.0170889999717474,
+ "learning_rate": 0.0006,
+ "loss": 3.6862080097198486,
+ "step": 1060
+ },
+ {
+ "epoch": 14.74061135371179,
+ "grad_norm": 0.016432611271739006,
+ "learning_rate": 0.0006,
+ "loss": 3.656050682067871,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754585152838429,
+ "grad_norm": 0.016253121197223663,
+ "learning_rate": 0.0006,
+ "loss": 3.6118998527526855,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768558951965066,
+ "grad_norm": 0.016804836690425873,
+ "learning_rate": 0.0006,
+ "loss": 3.6646556854248047,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782532751091702,
+ "grad_norm": 0.016385341063141823,
+ "learning_rate": 0.0006,
+ "loss": 3.6862335205078125,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796506550218341,
+ "grad_norm": 0.016926517710089684,
+ "learning_rate": 0.0006,
+ "loss": 3.675138473510742,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810480349344978,
+ "grad_norm": 0.018508978188037872,
+ "learning_rate": 0.0006,
+ "loss": 3.7009687423706055,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824454148471617,
+ "grad_norm": 0.018666446208953857,
+ "learning_rate": 0.0006,
+ "loss": 3.636359214782715,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838427947598253,
+ "grad_norm": 0.019378433004021645,
+ "learning_rate": 0.0006,
+ "loss": 3.665518283843994,
+ "step": 1068
+ },
+ {
+ "epoch": 14.85240174672489,
+ "grad_norm": 0.02128547430038452,
+ "learning_rate": 0.0006,
+ "loss": 3.7005434036254883,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866375545851529,
+ "grad_norm": 0.02191224694252014,
+ "learning_rate": 0.0006,
+ "loss": 3.6584267616271973,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880349344978166,
+ "grad_norm": 0.019272804260253906,
+ "learning_rate": 0.0006,
+ "loss": 3.673880100250244,
+ "step": 1071
+ },
+ {
+ "epoch": 14.894323144104803,
+ "grad_norm": 0.018591508269309998,
+ "learning_rate": 0.0006,
+ "loss": 3.680145025253296,
+ "step": 1072
+ },
+ {
+ "epoch": 14.908296943231441,
+ "grad_norm": 0.019954141229391098,
+ "learning_rate": 0.0006,
+ "loss": 3.659092903137207,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922270742358078,
+ "grad_norm": 0.019956151023507118,
+ "learning_rate": 0.0006,
+ "loss": 3.680950164794922,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936244541484717,
+ "grad_norm": 0.0198400616645813,
+ "learning_rate": 0.0006,
+ "loss": 3.665740728378296,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950218340611354,
+ "grad_norm": 0.018525801599025726,
+ "learning_rate": 0.0006,
+ "loss": 3.695254325866699,
+ "step": 1076
+ },
+ {
+ "epoch": 14.96419213973799,
+ "grad_norm": 0.019410012289881706,
+ "learning_rate": 0.0006,
+ "loss": 3.637185573577881,
+ "step": 1077
+ },
+ {
+ "epoch": 14.97816593886463,
+ "grad_norm": 0.01842549443244934,
+ "learning_rate": 0.0006,
+ "loss": 3.6925792694091797,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992139737991266,
+ "grad_norm": 0.018512850627303123,
+ "learning_rate": 0.0006,
+ "loss": 3.6421403884887695,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.019783539697527885,
+ "learning_rate": 0.0006,
+ "loss": 3.669989824295044,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.0208282470703125,
+ "eval_runtime": 50.0946,
+ "eval_samples_per_second": 48.748,
+ "eval_steps_per_second": 1.537,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013973799126637,
+ "grad_norm": 0.02009645849466324,
+ "learning_rate": 0.0006,
+ "loss": 3.5637366771698,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027947598253276,
+ "grad_norm": 0.02333172969520092,
+ "learning_rate": 0.0006,
+ "loss": 3.5258095264434814,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041921397379912,
+ "grad_norm": 0.027971796691417694,
+ "learning_rate": 0.0006,
+ "loss": 3.552365779876709,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055895196506551,
+ "grad_norm": 0.03144870325922966,
+ "learning_rate": 0.0006,
+ "loss": 3.570685863494873,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069868995633188,
+ "grad_norm": 0.03174359351396561,
+ "learning_rate": 0.0006,
+ "loss": 3.557307720184326,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083842794759825,
+ "grad_norm": 0.0314076766371727,
+ "learning_rate": 0.0006,
+ "loss": 3.5835516452789307,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097816593886463,
+ "grad_norm": 0.02998494543135166,
+ "learning_rate": 0.0006,
+ "loss": 3.564689874649048,
+ "step": 1087
+ },
+ {
+ "epoch": 15.1117903930131,
+ "grad_norm": 0.027682173997163773,
+ "learning_rate": 0.0006,
+ "loss": 3.5372314453125,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125764192139737,
+ "grad_norm": 0.029720479622483253,
+ "learning_rate": 0.0006,
+ "loss": 3.5263895988464355,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139737991266376,
+ "grad_norm": 0.03526446595788002,
+ "learning_rate": 0.0006,
+ "loss": 3.5656511783599854,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153711790393013,
+ "grad_norm": 0.03473281115293503,
+ "learning_rate": 0.0006,
+ "loss": 3.5796432495117188,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167685589519651,
+ "grad_norm": 0.034728601574897766,
+ "learning_rate": 0.0006,
+ "loss": 3.5634264945983887,
+ "step": 1092
+ },
+ {
+ "epoch": 15.181659388646288,
+ "grad_norm": 0.03513004630804062,
+ "learning_rate": 0.0006,
+ "loss": 3.587097644805908,
+ "step": 1093
+ },
+ {
+ "epoch": 15.195633187772925,
+ "grad_norm": 0.03495538607239723,
+ "learning_rate": 0.0006,
+ "loss": 3.588749885559082,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209606986899564,
+ "grad_norm": 0.03559393063187599,
+ "learning_rate": 0.0006,
+ "loss": 3.588261604309082,
+ "step": 1095
+ },
+ {
+ "epoch": 15.2235807860262,
+ "grad_norm": 0.04117827117443085,
+ "learning_rate": 0.0006,
+ "loss": 3.5925493240356445,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237554585152838,
+ "grad_norm": 0.03481105715036392,
+ "learning_rate": 0.0006,
+ "loss": 3.609713077545166,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251528384279476,
+ "grad_norm": 0.03399660810828209,
+ "learning_rate": 0.0006,
+ "loss": 3.6001386642456055,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265502183406113,
+ "grad_norm": 0.037158723920583725,
+ "learning_rate": 0.0006,
+ "loss": 3.5907320976257324,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279475982532752,
+ "grad_norm": 0.03714929521083832,
+ "learning_rate": 0.0006,
+ "loss": 3.620131015777588,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293449781659389,
+ "grad_norm": 0.03506772965192795,
+ "learning_rate": 0.0006,
+ "loss": 3.5833165645599365,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307423580786025,
+ "grad_norm": 0.03335156291723251,
+ "learning_rate": 0.0006,
+ "loss": 3.588583469390869,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321397379912664,
+ "grad_norm": 0.03749598562717438,
+ "learning_rate": 0.0006,
+ "loss": 3.5726234912872314,
+ "step": 1103
+ },
+ {
+ "epoch": 15.335371179039301,
+ "grad_norm": 0.033490296453237534,
+ "learning_rate": 0.0006,
+ "loss": 3.609440326690674,
+ "step": 1104
+ },
+ {
+ "epoch": 15.34934497816594,
+ "grad_norm": 0.02744245156645775,
+ "learning_rate": 0.0006,
+ "loss": 3.5969347953796387,
+ "step": 1105
+ },
+ {
+ "epoch": 15.363318777292577,
+ "grad_norm": 0.025563672184944153,
+ "learning_rate": 0.0006,
+ "loss": 3.6081204414367676,
+ "step": 1106
+ },
+ {
+ "epoch": 15.377292576419213,
+ "grad_norm": 0.02479025535285473,
+ "learning_rate": 0.0006,
+ "loss": 3.569492816925049,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391266375545852,
+ "grad_norm": 0.022969363257288933,
+ "learning_rate": 0.0006,
+ "loss": 3.5940051078796387,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405240174672489,
+ "grad_norm": 0.0211333017796278,
+ "learning_rate": 0.0006,
+ "loss": 3.6032228469848633,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419213973799126,
+ "grad_norm": 0.023232776671648026,
+ "learning_rate": 0.0006,
+ "loss": 3.597538471221924,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433187772925764,
+ "grad_norm": 0.02560894563794136,
+ "learning_rate": 0.0006,
+ "loss": 3.6099822521209717,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447161572052401,
+ "grad_norm": 0.028530243784189224,
+ "learning_rate": 0.0006,
+ "loss": 3.6099116802215576,
+ "step": 1112
+ },
+ {
+ "epoch": 15.46113537117904,
+ "grad_norm": 0.024349553510546684,
+ "learning_rate": 0.0006,
+ "loss": 3.596257448196411,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475109170305677,
+ "grad_norm": 0.025264214724302292,
+ "learning_rate": 0.0006,
+ "loss": 3.58459210395813,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489082969432314,
+ "grad_norm": 0.024628883227705956,
+ "learning_rate": 0.0006,
+ "loss": 3.5940113067626953,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503056768558952,
+ "grad_norm": 0.02550858072936535,
+ "learning_rate": 0.0006,
+ "loss": 3.6039438247680664,
+ "step": 1116
+ },
+ {
+ "epoch": 15.51703056768559,
+ "grad_norm": 0.02455618977546692,
+ "learning_rate": 0.0006,
+ "loss": 3.582425594329834,
+ "step": 1117
+ },
+ {
+ "epoch": 15.531004366812226,
+ "grad_norm": 0.023190757259726524,
+ "learning_rate": 0.0006,
+ "loss": 3.5945615768432617,
+ "step": 1118
+ },
+ {
+ "epoch": 15.544978165938865,
+ "grad_norm": 0.025178825482726097,
+ "learning_rate": 0.0006,
+ "loss": 3.6276583671569824,
+ "step": 1119
+ },
+ {
+ "epoch": 15.558951965065502,
+ "grad_norm": 0.027304047718644142,
+ "learning_rate": 0.0006,
+ "loss": 3.591130018234253,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57292576419214,
+ "grad_norm": 0.02635739929974079,
+ "learning_rate": 0.0006,
+ "loss": 3.626152992248535,
+ "step": 1121
+ },
+ {
+ "epoch": 15.586899563318777,
+ "grad_norm": 0.023574283346533775,
+ "learning_rate": 0.0006,
+ "loss": 3.5790467262268066,
+ "step": 1122
+ },
+ {
+ "epoch": 15.600873362445414,
+ "grad_norm": 0.02167615108191967,
+ "learning_rate": 0.0006,
+ "loss": 3.5816423892974854,
+ "step": 1123
+ },
+ {
+ "epoch": 15.614847161572053,
+ "grad_norm": 0.020352814346551895,
+ "learning_rate": 0.0006,
+ "loss": 3.5963048934936523,
+ "step": 1124
+ },
+ {
+ "epoch": 15.62882096069869,
+ "grad_norm": 0.022047650068998337,
+ "learning_rate": 0.0006,
+ "loss": 3.5933878421783447,
+ "step": 1125
+ },
+ {
+ "epoch": 15.642794759825328,
+ "grad_norm": 0.022744329646229744,
+ "learning_rate": 0.0006,
+ "loss": 3.5755128860473633,
+ "step": 1126
+ },
+ {
+ "epoch": 15.656768558951965,
+ "grad_norm": 0.020325182005763054,
+ "learning_rate": 0.0006,
+ "loss": 3.5617265701293945,
+ "step": 1127
+ },
+ {
+ "epoch": 15.670742358078602,
+ "grad_norm": 0.021056298166513443,
+ "learning_rate": 0.0006,
+ "loss": 3.5767688751220703,
+ "step": 1128
+ },
+ {
+ "epoch": 15.68471615720524,
+ "grad_norm": 0.019120410084724426,
+ "learning_rate": 0.0006,
+ "loss": 3.5909035205841064,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698689956331878,
+ "grad_norm": 0.01864859275519848,
+ "learning_rate": 0.0006,
+ "loss": 3.586052417755127,
+ "step": 1130
+ },
+ {
+ "epoch": 15.712663755458514,
+ "grad_norm": 0.017953047528862953,
+ "learning_rate": 0.0006,
+ "loss": 3.5801734924316406,
+ "step": 1131
+ },
+ {
+ "epoch": 15.726637554585153,
+ "grad_norm": 0.019331611692905426,
+ "learning_rate": 0.0006,
+ "loss": 3.5663723945617676,
+ "step": 1132
+ },
+ {
+ "epoch": 15.74061135371179,
+ "grad_norm": 0.018863828852772713,
+ "learning_rate": 0.0006,
+ "loss": 3.5982472896575928,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754585152838429,
+ "grad_norm": 0.01941121369600296,
+ "learning_rate": 0.0006,
+ "loss": 3.586141586303711,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768558951965066,
+ "grad_norm": 0.0202215276658535,
+ "learning_rate": 0.0006,
+ "loss": 3.603093385696411,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782532751091702,
+ "grad_norm": 0.02065861038863659,
+ "learning_rate": 0.0006,
+ "loss": 3.6258344650268555,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796506550218341,
+ "grad_norm": 0.019885104149580002,
+ "learning_rate": 0.0006,
+ "loss": 3.5961670875549316,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810480349344978,
+ "grad_norm": 0.019395584240555763,
+ "learning_rate": 0.0006,
+ "loss": 3.6085386276245117,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824454148471617,
+ "grad_norm": 0.02079256810247898,
+ "learning_rate": 0.0006,
+ "loss": 3.5907459259033203,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838427947598253,
+ "grad_norm": 0.021177049726247787,
+ "learning_rate": 0.0006,
+ "loss": 3.6031875610351562,
+ "step": 1140
+ },
+ {
+ "epoch": 15.85240174672489,
+ "grad_norm": 0.01875251717865467,
+ "learning_rate": 0.0006,
+ "loss": 3.5799269676208496,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866375545851529,
+ "grad_norm": 0.018393032252788544,
+ "learning_rate": 0.0006,
+ "loss": 3.589036464691162,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880349344978166,
+ "grad_norm": 0.017482910305261612,
+ "learning_rate": 0.0006,
+ "loss": 3.57010555267334,
+ "step": 1143
+ },
+ {
+ "epoch": 15.894323144104803,
+ "grad_norm": 0.017565404996275902,
+ "learning_rate": 0.0006,
+ "loss": 3.586590051651001,
+ "step": 1144
+ },
+ {
+ "epoch": 15.908296943231441,
+ "grad_norm": 0.018097810447216034,
+ "learning_rate": 0.0006,
+ "loss": 3.60231876373291,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922270742358078,
+ "grad_norm": 0.01748323254287243,
+ "learning_rate": 0.0006,
+ "loss": 3.605266571044922,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936244541484717,
+ "grad_norm": 0.017633914947509766,
+ "learning_rate": 0.0006,
+ "loss": 3.57650089263916,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950218340611354,
+ "grad_norm": 0.017630109563469887,
+ "learning_rate": 0.0006,
+ "loss": 3.599179744720459,
+ "step": 1148
+ },
+ {
+ "epoch": 15.96419213973799,
+ "grad_norm": 0.017756082117557526,
+ "learning_rate": 0.0006,
+ "loss": 3.610539436340332,
+ "step": 1149
+ },
+ {
+ "epoch": 15.97816593886463,
+ "grad_norm": 0.017975619062781334,
+ "learning_rate": 0.0006,
+ "loss": 3.5654094219207764,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992139737991266,
+ "grad_norm": 0.01672595739364624,
+ "learning_rate": 0.0006,
+ "loss": 3.5157313346862793,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.018963614478707314,
+ "learning_rate": 0.0006,
+ "loss": 3.5679218769073486,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.002192497253418,
+ "eval_runtime": 54.7074,
+ "eval_samples_per_second": 44.638,
+ "eval_steps_per_second": 1.407,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397379912664,
+ "grad_norm": 0.019997047260403633,
+ "learning_rate": 0.0006,
+ "loss": 3.4640445709228516,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027947598253274,
+ "grad_norm": 0.02668819949030876,
+ "learning_rate": 0.0006,
+ "loss": 3.4792230129241943,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041921397379912,
+ "grad_norm": 0.03133378177881241,
+ "learning_rate": 0.0006,
+ "loss": 3.445514678955078,
+ "step": 1155
+ },
+ {
+ "epoch": 16.05589519650655,
+ "grad_norm": 0.0333341620862484,
+ "learning_rate": 0.0006,
+ "loss": 3.4823379516601562,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069868995633186,
+ "grad_norm": 0.033309273421764374,
+ "learning_rate": 0.0006,
+ "loss": 3.5140066146850586,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083842794759825,
+ "grad_norm": 0.03211270272731781,
+ "learning_rate": 0.0006,
+ "loss": 3.4474544525146484,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097816593886463,
+ "grad_norm": 0.030286215245723724,
+ "learning_rate": 0.0006,
+ "loss": 3.4566705226898193,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111790393013102,
+ "grad_norm": 0.034668438136577606,
+ "learning_rate": 0.0006,
+ "loss": 3.464046001434326,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125764192139737,
+ "grad_norm": 0.03580283746123314,
+ "learning_rate": 0.0006,
+ "loss": 3.483121871948242,
+ "step": 1161
+ },
+ {
+ "epoch": 16.139737991266376,
+ "grad_norm": 0.03359296917915344,
+ "learning_rate": 0.0006,
+ "loss": 3.477879524230957,
+ "step": 1162
+ },
+ {
+ "epoch": 16.153711790393015,
+ "grad_norm": 0.03444180637598038,
+ "learning_rate": 0.0006,
+ "loss": 3.513066053390503,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16768558951965,
+ "grad_norm": 0.034195005893707275,
+ "learning_rate": 0.0006,
+ "loss": 3.4954705238342285,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18165938864629,
+ "grad_norm": 0.03186183422803879,
+ "learning_rate": 0.0006,
+ "loss": 3.5126149654388428,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195633187772927,
+ "grad_norm": 0.03474068269133568,
+ "learning_rate": 0.0006,
+ "loss": 3.4613423347473145,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209606986899562,
+ "grad_norm": 0.03117581456899643,
+ "learning_rate": 0.0006,
+ "loss": 3.5202698707580566,
+ "step": 1167
+ },
+ {
+ "epoch": 16.2235807860262,
+ "grad_norm": 0.030044663697481155,
+ "learning_rate": 0.0006,
+ "loss": 3.4795448780059814,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23755458515284,
+ "grad_norm": 0.03448783978819847,
+ "learning_rate": 0.0006,
+ "loss": 3.4979453086853027,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251528384279474,
+ "grad_norm": 0.040600501000881195,
+ "learning_rate": 0.0006,
+ "loss": 3.5161967277526855,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265502183406113,
+ "grad_norm": 0.041196491569280624,
+ "learning_rate": 0.0006,
+ "loss": 3.5099880695343018,
+ "step": 1171
+ },
+ {
+ "epoch": 16.27947598253275,
+ "grad_norm": 0.0403696708381176,
+ "learning_rate": 0.0006,
+ "loss": 3.515664577484131,
+ "step": 1172
+ },
+ {
+ "epoch": 16.29344978165939,
+ "grad_norm": 0.0369957759976387,
+ "learning_rate": 0.0006,
+ "loss": 3.568899631500244,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307423580786025,
+ "grad_norm": 0.034086693078279495,
+ "learning_rate": 0.0006,
+ "loss": 3.5406198501586914,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321397379912664,
+ "grad_norm": 0.03118005394935608,
+ "learning_rate": 0.0006,
+ "loss": 3.4970381259918213,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335371179039303,
+ "grad_norm": 0.030468063428997993,
+ "learning_rate": 0.0006,
+ "loss": 3.5451807975769043,
+ "step": 1176
+ },
+ {
+ "epoch": 16.349344978165938,
+ "grad_norm": 0.0309329554438591,
+ "learning_rate": 0.0006,
+ "loss": 3.53481388092041,
+ "step": 1177
+ },
+ {
+ "epoch": 16.363318777292577,
+ "grad_norm": 0.030906643718481064,
+ "learning_rate": 0.0006,
+ "loss": 3.5201809406280518,
+ "step": 1178
+ },
+ {
+ "epoch": 16.377292576419215,
+ "grad_norm": 0.029425526037812233,
+ "learning_rate": 0.0006,
+ "loss": 3.5083932876586914,
+ "step": 1179
+ },
+ {
+ "epoch": 16.39126637554585,
+ "grad_norm": 0.03284955024719238,
+ "learning_rate": 0.0006,
+ "loss": 3.5315258502960205,
+ "step": 1180
+ },
+ {
+ "epoch": 16.40524017467249,
+ "grad_norm": 0.03235018253326416,
+ "learning_rate": 0.0006,
+ "loss": 3.5033299922943115,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419213973799128,
+ "grad_norm": 0.029569406062364578,
+ "learning_rate": 0.0006,
+ "loss": 3.52433180809021,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433187772925763,
+ "grad_norm": 0.028649726882576942,
+ "learning_rate": 0.0006,
+ "loss": 3.486379623413086,
+ "step": 1183
+ },
+ {
+ "epoch": 16.4471615720524,
+ "grad_norm": 0.027956973761320114,
+ "learning_rate": 0.0006,
+ "loss": 3.5237250328063965,
+ "step": 1184
+ },
+ {
+ "epoch": 16.46113537117904,
+ "grad_norm": 0.0276664849370718,
+ "learning_rate": 0.0006,
+ "loss": 3.512511730194092,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475109170305675,
+ "grad_norm": 0.027819795534014702,
+ "learning_rate": 0.0006,
+ "loss": 3.5440287590026855,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489082969432314,
+ "grad_norm": 0.028435861691832542,
+ "learning_rate": 0.0006,
+ "loss": 3.560199737548828,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503056768558952,
+ "grad_norm": 0.02672969177365303,
+ "learning_rate": 0.0006,
+ "loss": 3.5323410034179688,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51703056768559,
+ "grad_norm": 0.024931233376264572,
+ "learning_rate": 0.0006,
+ "loss": 3.5182852745056152,
+ "step": 1189
+ },
+ {
+ "epoch": 16.531004366812226,
+ "grad_norm": 0.02562815696001053,
+ "learning_rate": 0.0006,
+ "loss": 3.525887966156006,
+ "step": 1190
+ },
+ {
+ "epoch": 16.544978165938865,
+ "grad_norm": 0.022041132673621178,
+ "learning_rate": 0.0006,
+ "loss": 3.5331735610961914,
+ "step": 1191
+ },
+ {
+ "epoch": 16.558951965065503,
+ "grad_norm": 0.02091669663786888,
+ "learning_rate": 0.0006,
+ "loss": 3.5219545364379883,
+ "step": 1192
+ },
+ {
+ "epoch": 16.57292576419214,
+ "grad_norm": 0.0208087507635355,
+ "learning_rate": 0.0006,
+ "loss": 3.5721282958984375,
+ "step": 1193
+ },
+ {
+ "epoch": 16.586899563318777,
+ "grad_norm": 0.019807223230600357,
+ "learning_rate": 0.0006,
+ "loss": 3.493896484375,
+ "step": 1194
+ },
+ {
+ "epoch": 16.600873362445416,
+ "grad_norm": 0.019274886697530746,
+ "learning_rate": 0.0006,
+ "loss": 3.5042009353637695,
+ "step": 1195
+ },
+ {
+ "epoch": 16.61484716157205,
+ "grad_norm": 0.01950680837035179,
+ "learning_rate": 0.0006,
+ "loss": 3.5548095703125,
+ "step": 1196
+ },
+ {
+ "epoch": 16.62882096069869,
+ "grad_norm": 0.02027183771133423,
+ "learning_rate": 0.0006,
+ "loss": 3.495508909225464,
+ "step": 1197
+ },
+ {
+ "epoch": 16.64279475982533,
+ "grad_norm": 0.021261053159832954,
+ "learning_rate": 0.0006,
+ "loss": 3.531256675720215,
+ "step": 1198
+ },
+ {
+ "epoch": 16.656768558951963,
+ "grad_norm": 0.02054775319993496,
+ "learning_rate": 0.0006,
+ "loss": 3.499379873275757,
+ "step": 1199
+ },
+ {
+ "epoch": 16.670742358078602,
+ "grad_norm": 0.01810075156390667,
+ "learning_rate": 0.0006,
+ "loss": 3.561351776123047,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68471615720524,
+ "grad_norm": 0.017886348068714142,
+ "learning_rate": 0.0006,
+ "loss": 3.551504373550415,
+ "step": 1201
+ },
+ {
+ "epoch": 16.69868995633188,
+ "grad_norm": 0.01893145777285099,
+ "learning_rate": 0.0006,
+ "loss": 3.4890754222869873,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712663755458514,
+ "grad_norm": 0.018899526447057724,
+ "learning_rate": 0.0006,
+ "loss": 3.545161724090576,
+ "step": 1203
+ },
+ {
+ "epoch": 16.726637554585153,
+ "grad_norm": 0.018913133069872856,
+ "learning_rate": 0.0006,
+ "loss": 3.502636194229126,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74061135371179,
+ "grad_norm": 0.019347554072737694,
+ "learning_rate": 0.0006,
+ "loss": 3.521177291870117,
+ "step": 1205
+ },
+ {
+ "epoch": 16.754585152838427,
+ "grad_norm": 0.02018282189965248,
+ "learning_rate": 0.0006,
+ "loss": 3.5440759658813477,
+ "step": 1206
+ },
+ {
+ "epoch": 16.768558951965066,
+ "grad_norm": 0.018046081066131592,
+ "learning_rate": 0.0006,
+ "loss": 3.5429065227508545,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782532751091704,
+ "grad_norm": 0.01814688742160797,
+ "learning_rate": 0.0006,
+ "loss": 3.524298667907715,
+ "step": 1208
+ },
+ {
+ "epoch": 16.79650655021834,
+ "grad_norm": 0.017817430198192596,
+ "learning_rate": 0.0006,
+ "loss": 3.5429811477661133,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810480349344978,
+ "grad_norm": 0.01804095320403576,
+ "learning_rate": 0.0006,
+ "loss": 3.5601816177368164,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824454148471617,
+ "grad_norm": 0.01939644105732441,
+ "learning_rate": 0.0006,
+ "loss": 3.5711722373962402,
+ "step": 1211
+ },
+ {
+ "epoch": 16.83842794759825,
+ "grad_norm": 0.019648978486657143,
+ "learning_rate": 0.0006,
+ "loss": 3.5105032920837402,
+ "step": 1212
+ },
+ {
+ "epoch": 16.85240174672489,
+ "grad_norm": 0.01914234645664692,
+ "learning_rate": 0.0006,
+ "loss": 3.5199899673461914,
+ "step": 1213
+ },
+ {
+ "epoch": 16.86637554585153,
+ "grad_norm": 0.019934657961130142,
+ "learning_rate": 0.0006,
+ "loss": 3.531907320022583,
+ "step": 1214
+ },
+ {
+ "epoch": 16.880349344978168,
+ "grad_norm": 0.019740048795938492,
+ "learning_rate": 0.0006,
+ "loss": 3.4846372604370117,
+ "step": 1215
+ },
+ {
+ "epoch": 16.894323144104803,
+ "grad_norm": 0.020136266946792603,
+ "learning_rate": 0.0006,
+ "loss": 3.5342910289764404,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90829694323144,
+ "grad_norm": 0.021572282537817955,
+ "learning_rate": 0.0006,
+ "loss": 3.5846221446990967,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92227074235808,
+ "grad_norm": 0.01965942606329918,
+ "learning_rate": 0.0006,
+ "loss": 3.489861011505127,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936244541484715,
+ "grad_norm": 0.018763914704322815,
+ "learning_rate": 0.0006,
+ "loss": 3.5294601917266846,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950218340611354,
+ "grad_norm": 0.017964672297239304,
+ "learning_rate": 0.0006,
+ "loss": 3.5389389991760254,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964192139737992,
+ "grad_norm": 0.018288105726242065,
+ "learning_rate": 0.0006,
+ "loss": 3.531959056854248,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978165938864628,
+ "grad_norm": 0.019321706146001816,
+ "learning_rate": 0.0006,
+ "loss": 3.533597469329834,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992139737991266,
+ "grad_norm": 0.019614171236753464,
+ "learning_rate": 0.0006,
+ "loss": 3.5083813667297363,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.020609203726053238,
+ "learning_rate": 0.0006,
+ "loss": 3.580991268157959,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 3.992704153060913,
+ "eval_runtime": 50.2038,
+ "eval_samples_per_second": 48.642,
+ "eval_steps_per_second": 1.534,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397379912664,
+ "grad_norm": 0.023699766024947166,
+ "learning_rate": 0.0006,
+ "loss": 3.4216837882995605,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027947598253274,
+ "grad_norm": 0.03299031779170036,
+ "learning_rate": 0.0006,
+ "loss": 3.3943543434143066,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041921397379912,
+ "grad_norm": 0.0365300215780735,
+ "learning_rate": 0.0006,
+ "loss": 3.419881820678711,
+ "step": 1227
+ },
+ {
+ "epoch": 17.05589519650655,
+ "grad_norm": 0.037790149450302124,
+ "learning_rate": 0.0006,
+ "loss": 3.397857666015625,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069868995633186,
+ "grad_norm": 0.03478766605257988,
+ "learning_rate": 0.0006,
+ "loss": 3.4057488441467285,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083842794759825,
+ "grad_norm": 0.03660628944635391,
+ "learning_rate": 0.0006,
+ "loss": 3.449805498123169,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097816593886463,
+ "grad_norm": 0.03783934935927391,
+ "learning_rate": 0.0006,
+ "loss": 3.391709804534912,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111790393013102,
+ "grad_norm": 0.03578848019242287,
+ "learning_rate": 0.0006,
+ "loss": 3.3921704292297363,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125764192139737,
+ "grad_norm": 0.04182235524058342,
+ "learning_rate": 0.0006,
+ "loss": 3.406362295150757,
+ "step": 1233
+ },
+ {
+ "epoch": 17.139737991266376,
+ "grad_norm": 0.04345374181866646,
+ "learning_rate": 0.0006,
+ "loss": 3.39174222946167,
+ "step": 1234
+ },
+ {
+ "epoch": 17.153711790393015,
+ "grad_norm": 0.0420818068087101,
+ "learning_rate": 0.0006,
+ "loss": 3.431614398956299,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16768558951965,
+ "grad_norm": 0.045535873621702194,
+ "learning_rate": 0.0006,
+ "loss": 3.4326839447021484,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18165938864629,
+ "grad_norm": 0.05574474856257439,
+ "learning_rate": 0.0006,
+ "loss": 3.4711036682128906,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195633187772927,
+ "grad_norm": 0.057157132774591446,
+ "learning_rate": 0.0006,
+ "loss": 3.4650626182556152,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209606986899562,
+ "grad_norm": 0.053199656307697296,
+ "learning_rate": 0.0006,
+ "loss": 3.4461426734924316,
+ "step": 1239
+ },
+ {
+ "epoch": 17.2235807860262,
+ "grad_norm": 0.054264020174741745,
+ "learning_rate": 0.0006,
+ "loss": 3.4681930541992188,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23755458515284,
+ "grad_norm": 0.05625223368406296,
+ "learning_rate": 0.0006,
+ "loss": 3.4914324283599854,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251528384279474,
+ "grad_norm": 0.061760347336530685,
+ "learning_rate": 0.0006,
+ "loss": 3.525092840194702,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265502183406113,
+ "grad_norm": 0.0628439411520958,
+ "learning_rate": 0.0006,
+ "loss": 3.5061843395233154,
+ "step": 1243
+ },
+ {
+ "epoch": 17.27947598253275,
+ "grad_norm": 0.0659259706735611,
+ "learning_rate": 0.0006,
+ "loss": 3.53128719329834,
+ "step": 1244
+ },
+ {
+ "epoch": 17.29344978165939,
+ "grad_norm": 0.05818862468004227,
+ "learning_rate": 0.0006,
+ "loss": 3.5536415576934814,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307423580786025,
+ "grad_norm": 0.05471836030483246,
+ "learning_rate": 0.0006,
+ "loss": 3.5337672233581543,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321397379912664,
+ "grad_norm": 0.0487399697303772,
+ "learning_rate": 0.0006,
+ "loss": 3.522909641265869,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335371179039303,
+ "grad_norm": 0.05006934702396393,
+ "learning_rate": 0.0006,
+ "loss": 3.5228986740112305,
+ "step": 1248
+ },
+ {
+ "epoch": 17.349344978165938,
+ "grad_norm": 0.047036584466695786,
+ "learning_rate": 0.0006,
+ "loss": 3.582343578338623,
+ "step": 1249
+ },
+ {
+ "epoch": 17.363318777292577,
+ "grad_norm": 0.045836590230464935,
+ "learning_rate": 0.0006,
+ "loss": 3.5376439094543457,
+ "step": 1250
+ },
+ {
+ "epoch": 17.377292576419215,
+ "grad_norm": 0.044237297028303146,
+ "learning_rate": 0.0006,
+ "loss": 3.5435123443603516,
+ "step": 1251
+ },
+ {
+ "epoch": 17.39126637554585,
+ "grad_norm": 0.04441322013735771,
+ "learning_rate": 0.0006,
+ "loss": 3.5400638580322266,
+ "step": 1252
+ },
+ {
+ "epoch": 17.40524017467249,
+ "grad_norm": 0.04533323645591736,
+ "learning_rate": 0.0006,
+ "loss": 3.5287728309631348,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419213973799128,
+ "grad_norm": 0.03689985349774361,
+ "learning_rate": 0.0006,
+ "loss": 3.5161759853363037,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433187772925763,
+ "grad_norm": 0.03836561366915703,
+ "learning_rate": 0.0006,
+ "loss": 3.4899721145629883,
+ "step": 1255
+ },
+ {
+ "epoch": 17.4471615720524,
+ "grad_norm": 0.03594471141695976,
+ "learning_rate": 0.0006,
+ "loss": 3.534101963043213,
+ "step": 1256
+ },
+ {
+ "epoch": 17.46113537117904,
+ "grad_norm": 0.03834489732980728,
+ "learning_rate": 0.0006,
+ "loss": 3.4943580627441406,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475109170305675,
+ "grad_norm": 0.04318688064813614,
+ "learning_rate": 0.0006,
+ "loss": 3.5304384231567383,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489082969432314,
+ "grad_norm": 0.04468952864408493,
+ "learning_rate": 0.0006,
+ "loss": 3.5435900688171387,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503056768558952,
+ "grad_norm": 0.041371092200279236,
+ "learning_rate": 0.0006,
+ "loss": 3.529571056365967,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51703056768559,
+ "grad_norm": 0.03826779127120972,
+ "learning_rate": 0.0006,
+ "loss": 3.5024611949920654,
+ "step": 1261
+ },
+ {
+ "epoch": 17.531004366812226,
+ "grad_norm": 0.030302148312330246,
+ "learning_rate": 0.0006,
+ "loss": 3.5491857528686523,
+ "step": 1262
+ },
+ {
+ "epoch": 17.544978165938865,
+ "grad_norm": 0.02673652581870556,
+ "learning_rate": 0.0006,
+ "loss": 3.498325824737549,
+ "step": 1263
+ },
+ {
+ "epoch": 17.558951965065503,
+ "grad_norm": 0.026035286486148834,
+ "learning_rate": 0.0006,
+ "loss": 3.524242639541626,
+ "step": 1264
+ },
+ {
+ "epoch": 17.57292576419214,
+ "grad_norm": 0.02433512918651104,
+ "learning_rate": 0.0006,
+ "loss": 3.496821880340576,
+ "step": 1265
+ },
+ {
+ "epoch": 17.586899563318777,
+ "grad_norm": 0.023563958704471588,
+ "learning_rate": 0.0006,
+ "loss": 3.4883062839508057,
+ "step": 1266
+ },
+ {
+ "epoch": 17.600873362445416,
+ "grad_norm": 0.0206421110779047,
+ "learning_rate": 0.0006,
+ "loss": 3.519468069076538,
+ "step": 1267
+ },
+ {
+ "epoch": 17.61484716157205,
+ "grad_norm": 0.020854417234659195,
+ "learning_rate": 0.0006,
+ "loss": 3.5546176433563232,
+ "step": 1268
+ },
+ {
+ "epoch": 17.62882096069869,
+ "grad_norm": 0.01948000118136406,
+ "learning_rate": 0.0006,
+ "loss": 3.4945712089538574,
+ "step": 1269
+ },
+ {
+ "epoch": 17.64279475982533,
+ "grad_norm": 0.018670955672860146,
+ "learning_rate": 0.0006,
+ "loss": 3.4944663047790527,
+ "step": 1270
+ },
+ {
+ "epoch": 17.656768558951963,
+ "grad_norm": 0.018675116822123528,
+ "learning_rate": 0.0006,
+ "loss": 3.4906811714172363,
+ "step": 1271
+ },
+ {
+ "epoch": 17.670742358078602,
+ "grad_norm": 0.018198898062109947,
+ "learning_rate": 0.0006,
+ "loss": 3.4814324378967285,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68471615720524,
+ "grad_norm": 0.017625771462917328,
+ "learning_rate": 0.0006,
+ "loss": 3.481903553009033,
+ "step": 1273
+ },
+ {
+ "epoch": 17.69868995633188,
+ "grad_norm": 0.017468655481934547,
+ "learning_rate": 0.0006,
+ "loss": 3.504253625869751,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712663755458514,
+ "grad_norm": 0.017738448455929756,
+ "learning_rate": 0.0006,
+ "loss": 3.4731998443603516,
+ "step": 1275
+ },
+ {
+ "epoch": 17.726637554585153,
+ "grad_norm": 0.01674838177859783,
+ "learning_rate": 0.0006,
+ "loss": 3.501451253890991,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74061135371179,
+ "grad_norm": 0.016940834000706673,
+ "learning_rate": 0.0006,
+ "loss": 3.5022473335266113,
+ "step": 1277
+ },
+ {
+ "epoch": 17.754585152838427,
+ "grad_norm": 0.016655702143907547,
+ "learning_rate": 0.0006,
+ "loss": 3.489267349243164,
+ "step": 1278
+ },
+ {
+ "epoch": 17.768558951965066,
+ "grad_norm": 0.016576141119003296,
+ "learning_rate": 0.0006,
+ "loss": 3.489868402481079,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782532751091704,
+ "grad_norm": 0.015516328625380993,
+ "learning_rate": 0.0006,
+ "loss": 3.4777278900146484,
+ "step": 1280
+ },
+ {
+ "epoch": 17.79650655021834,
+ "grad_norm": 0.01572612300515175,
+ "learning_rate": 0.0006,
+ "loss": 3.4924020767211914,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810480349344978,
+ "grad_norm": 0.01619344763457775,
+ "learning_rate": 0.0006,
+ "loss": 3.4541757106781006,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824454148471617,
+ "grad_norm": 0.016174443066120148,
+ "learning_rate": 0.0006,
+ "loss": 3.496953010559082,
+ "step": 1283
+ },
+ {
+ "epoch": 17.83842794759825,
+ "grad_norm": 0.015538575127720833,
+ "learning_rate": 0.0006,
+ "loss": 3.501938819885254,
+ "step": 1284
+ },
+ {
+ "epoch": 17.85240174672489,
+ "grad_norm": 0.015476577915251255,
+ "learning_rate": 0.0006,
+ "loss": 3.4954936504364014,
+ "step": 1285
+ },
+ {
+ "epoch": 17.86637554585153,
+ "grad_norm": 0.01563846506178379,
+ "learning_rate": 0.0006,
+ "loss": 3.4736757278442383,
+ "step": 1286
+ },
+ {
+ "epoch": 17.880349344978168,
+ "grad_norm": 0.016416197642683983,
+ "learning_rate": 0.0006,
+ "loss": 3.4564414024353027,
+ "step": 1287
+ },
+ {
+ "epoch": 17.894323144104803,
+ "grad_norm": 0.016533056274056435,
+ "learning_rate": 0.0006,
+ "loss": 3.4835453033447266,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90829694323144,
+ "grad_norm": 0.01587281934916973,
+ "learning_rate": 0.0006,
+ "loss": 3.460432529449463,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92227074235808,
+ "grad_norm": 0.01610104739665985,
+ "learning_rate": 0.0006,
+ "loss": 3.4919300079345703,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936244541484715,
+ "grad_norm": 0.01581653021275997,
+ "learning_rate": 0.0006,
+ "loss": 3.4631175994873047,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950218340611354,
+ "grad_norm": 0.015979735180735588,
+ "learning_rate": 0.0006,
+ "loss": 3.4901933670043945,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964192139737992,
+ "grad_norm": 0.01630399376153946,
+ "learning_rate": 0.0006,
+ "loss": 3.4629836082458496,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978165938864628,
+ "grad_norm": 0.017480242997407913,
+ "learning_rate": 0.0006,
+ "loss": 3.4913692474365234,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992139737991266,
+ "grad_norm": 0.016874775290489197,
+ "learning_rate": 0.0006,
+ "loss": 3.4790616035461426,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.01860641874372959,
+ "learning_rate": 0.0006,
+ "loss": 3.451586961746216,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 3.9891297817230225,
+ "eval_runtime": 50.1961,
+ "eval_samples_per_second": 48.649,
+ "eval_steps_per_second": 1.534,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397379912664,
+ "grad_norm": 0.020353643223643303,
+ "learning_rate": 0.0006,
+ "loss": 3.3365015983581543,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027947598253274,
+ "grad_norm": 0.025348901748657227,
+ "learning_rate": 0.0006,
+ "loss": 3.362994909286499,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041921397379912,
+ "grad_norm": 0.025188535451889038,
+ "learning_rate": 0.0006,
+ "loss": 3.363680362701416,
+ "step": 1299
+ },
+ {
+ "epoch": 18.05589519650655,
+ "grad_norm": 0.022153817117214203,
+ "learning_rate": 0.0006,
+ "loss": 3.3311727046966553,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069868995633186,
+ "grad_norm": 0.023192603141069412,
+ "learning_rate": 0.0006,
+ "loss": 3.313582420349121,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083842794759825,
+ "grad_norm": 0.023841004818677902,
+ "learning_rate": 0.0006,
+ "loss": 3.3787522315979004,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097816593886463,
+ "grad_norm": 0.024539794772863388,
+ "learning_rate": 0.0006,
+ "loss": 3.382267475128174,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111790393013102,
+ "grad_norm": 0.026391029357910156,
+ "learning_rate": 0.0006,
+ "loss": 3.3674709796905518,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125764192139737,
+ "grad_norm": 0.027859404683113098,
+ "learning_rate": 0.0006,
+ "loss": 3.3584036827087402,
+ "step": 1305
+ },
+ {
+ "epoch": 18.139737991266376,
+ "grad_norm": 0.027688005939126015,
+ "learning_rate": 0.0006,
+ "loss": 3.314915657043457,
+ "step": 1306
+ },
+ {
+ "epoch": 18.153711790393015,
+ "grad_norm": 0.026942238211631775,
+ "learning_rate": 0.0006,
+ "loss": 3.387618064880371,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16768558951965,
+ "grad_norm": 0.02890498749911785,
+ "learning_rate": 0.0006,
+ "loss": 3.35286021232605,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18165938864629,
+ "grad_norm": 0.028318168595433235,
+ "learning_rate": 0.0006,
+ "loss": 3.347115993499756,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195633187772927,
+ "grad_norm": 0.02423982135951519,
+ "learning_rate": 0.0006,
+ "loss": 3.365628242492676,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209606986899562,
+ "grad_norm": 0.025620151311159134,
+ "learning_rate": 0.0006,
+ "loss": 3.3887939453125,
+ "step": 1311
+ },
+ {
+ "epoch": 18.2235807860262,
+ "grad_norm": 0.02538205496966839,
+ "learning_rate": 0.0006,
+ "loss": 3.3417105674743652,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23755458515284,
+ "grad_norm": 0.024902652949094772,
+ "learning_rate": 0.0006,
+ "loss": 3.348081111907959,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251528384279474,
+ "grad_norm": 0.024858251214027405,
+ "learning_rate": 0.0006,
+ "loss": 3.3346352577209473,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265502183406113,
+ "grad_norm": 0.02413691021502018,
+ "learning_rate": 0.0006,
+ "loss": 3.373331069946289,
+ "step": 1315
+ },
+ {
+ "epoch": 18.27947598253275,
+ "grad_norm": 0.024673711508512497,
+ "learning_rate": 0.0006,
+ "loss": 3.3532657623291016,
+ "step": 1316
+ },
+ {
+ "epoch": 18.29344978165939,
+ "grad_norm": 0.02378152869641781,
+ "learning_rate": 0.0006,
+ "loss": 3.380765438079834,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307423580786025,
+ "grad_norm": 0.025095898658037186,
+ "learning_rate": 0.0006,
+ "loss": 3.3837740421295166,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321397379912664,
+ "grad_norm": 0.028187017887830734,
+ "learning_rate": 0.0006,
+ "loss": 3.4130377769470215,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335371179039303,
+ "grad_norm": 0.030678752809762955,
+ "learning_rate": 0.0006,
+ "loss": 3.353358745574951,
+ "step": 1320
+ },
+ {
+ "epoch": 18.349344978165938,
+ "grad_norm": 0.03067706525325775,
+ "learning_rate": 0.0006,
+ "loss": 3.386003017425537,
+ "step": 1321
+ },
+ {
+ "epoch": 18.363318777292577,
+ "grad_norm": 0.029064467176795006,
+ "learning_rate": 0.0006,
+ "loss": 3.3915395736694336,
+ "step": 1322
+ },
+ {
+ "epoch": 18.377292576419215,
+ "grad_norm": 0.027225302532315254,
+ "learning_rate": 0.0006,
+ "loss": 3.3875136375427246,
+ "step": 1323
+ },
+ {
+ "epoch": 18.39126637554585,
+ "grad_norm": 0.02669711410999298,
+ "learning_rate": 0.0006,
+ "loss": 3.406268358230591,
+ "step": 1324
+ },
+ {
+ "epoch": 18.40524017467249,
+ "grad_norm": 0.028905952349305153,
+ "learning_rate": 0.0006,
+ "loss": 3.3588786125183105,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419213973799128,
+ "grad_norm": 0.02591577172279358,
+ "learning_rate": 0.0006,
+ "loss": 3.378920078277588,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433187772925763,
+ "grad_norm": 0.02405492030084133,
+ "learning_rate": 0.0006,
+ "loss": 3.4215216636657715,
+ "step": 1327
+ },
+ {
+ "epoch": 18.4471615720524,
+ "grad_norm": 0.02288426086306572,
+ "learning_rate": 0.0006,
+ "loss": 3.4051475524902344,
+ "step": 1328
+ },
+ {
+ "epoch": 18.46113537117904,
+ "grad_norm": 0.02265259623527527,
+ "learning_rate": 0.0006,
+ "loss": 3.376089096069336,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475109170305675,
+ "grad_norm": 0.021498411893844604,
+ "learning_rate": 0.0006,
+ "loss": 3.3922982215881348,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489082969432314,
+ "grad_norm": 0.02283475548028946,
+ "learning_rate": 0.0006,
+ "loss": 3.435965061187744,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503056768558952,
+ "grad_norm": 0.02214580774307251,
+ "learning_rate": 0.0006,
+ "loss": 3.4137468338012695,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51703056768559,
+ "grad_norm": 0.02150345966219902,
+ "learning_rate": 0.0006,
+ "loss": 3.3775486946105957,
+ "step": 1333
+ },
+ {
+ "epoch": 18.531004366812226,
+ "grad_norm": 0.02131151221692562,
+ "learning_rate": 0.0006,
+ "loss": 3.3902227878570557,
+ "step": 1334
+ },
+ {
+ "epoch": 18.544978165938865,
+ "grad_norm": 0.019052445888519287,
+ "learning_rate": 0.0006,
+ "loss": 3.4158318042755127,
+ "step": 1335
+ },
+ {
+ "epoch": 18.558951965065503,
+ "grad_norm": 0.018629150465130806,
+ "learning_rate": 0.0006,
+ "loss": 3.40549898147583,
+ "step": 1336
+ },
+ {
+ "epoch": 18.57292576419214,
+ "grad_norm": 0.019917191937565804,
+ "learning_rate": 0.0006,
+ "loss": 3.3770365715026855,
+ "step": 1337
+ },
+ {
+ "epoch": 18.586899563318777,
+ "grad_norm": 0.01985880360007286,
+ "learning_rate": 0.0006,
+ "loss": 3.393543243408203,
+ "step": 1338
+ },
+ {
+ "epoch": 18.600873362445416,
+ "grad_norm": 0.019536739215254784,
+ "learning_rate": 0.0006,
+ "loss": 3.426811695098877,
+ "step": 1339
+ },
+ {
+ "epoch": 18.61484716157205,
+ "grad_norm": 0.01855909265577793,
+ "learning_rate": 0.0006,
+ "loss": 3.401531219482422,
+ "step": 1340
+ },
+ {
+ "epoch": 18.62882096069869,
+ "grad_norm": 0.018492981791496277,
+ "learning_rate": 0.0006,
+ "loss": 3.4268338680267334,
+ "step": 1341
+ },
+ {
+ "epoch": 18.64279475982533,
+ "grad_norm": 0.0180380679666996,
+ "learning_rate": 0.0006,
+ "loss": 3.4302897453308105,
+ "step": 1342
+ },
+ {
+ "epoch": 18.656768558951963,
+ "grad_norm": 0.017962129786610603,
+ "learning_rate": 0.0006,
+ "loss": 3.396136522293091,
+ "step": 1343
+ },
+ {
+ "epoch": 18.670742358078602,
+ "grad_norm": 0.019102413207292557,
+ "learning_rate": 0.0006,
+ "loss": 3.390157699584961,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68471615720524,
+ "grad_norm": 0.01885206066071987,
+ "learning_rate": 0.0006,
+ "loss": 3.410893440246582,
+ "step": 1345
+ },
+ {
+ "epoch": 18.69868995633188,
+ "grad_norm": 0.018043991178274155,
+ "learning_rate": 0.0006,
+ "loss": 3.3919389247894287,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712663755458514,
+ "grad_norm": 0.01806800253689289,
+ "learning_rate": 0.0006,
+ "loss": 3.43209171295166,
+ "step": 1347
+ },
+ {
+ "epoch": 18.726637554585153,
+ "grad_norm": 0.01855402998626232,
+ "learning_rate": 0.0006,
+ "loss": 3.428830146789551,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74061135371179,
+ "grad_norm": 0.018445072695612907,
+ "learning_rate": 0.0006,
+ "loss": 3.4180264472961426,
+ "step": 1349
+ },
+ {
+ "epoch": 18.754585152838427,
+ "grad_norm": 0.018156694248318672,
+ "learning_rate": 0.0006,
+ "loss": 3.4011521339416504,
+ "step": 1350
+ },
+ {
+ "epoch": 18.768558951965066,
+ "grad_norm": 0.019634190946817398,
+ "learning_rate": 0.0006,
+ "loss": 3.388862371444702,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782532751091704,
+ "grad_norm": 0.01954115554690361,
+ "learning_rate": 0.0006,
+ "loss": 3.4300918579101562,
+ "step": 1352
+ },
+ {
+ "epoch": 18.79650655021834,
+ "grad_norm": 0.01783105544745922,
+ "learning_rate": 0.0006,
+ "loss": 3.3942103385925293,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810480349344978,
+ "grad_norm": 0.017380334436893463,
+ "learning_rate": 0.0006,
+ "loss": 3.4005725383758545,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824454148471617,
+ "grad_norm": 0.01806088164448738,
+ "learning_rate": 0.0006,
+ "loss": 3.4157588481903076,
+ "step": 1355
+ },
+ {
+ "epoch": 18.83842794759825,
+ "grad_norm": 0.018839186057448387,
+ "learning_rate": 0.0006,
+ "loss": 3.40814208984375,
+ "step": 1356
+ },
+ {
+ "epoch": 18.85240174672489,
+ "grad_norm": 0.018662428483366966,
+ "learning_rate": 0.0006,
+ "loss": 3.4516561031341553,
+ "step": 1357
+ },
+ {
+ "epoch": 18.86637554585153,
+ "grad_norm": 0.016893137246370316,
+ "learning_rate": 0.0006,
+ "loss": 3.437650680541992,
+ "step": 1358
+ },
+ {
+ "epoch": 18.880349344978168,
+ "grad_norm": 0.017629794776439667,
+ "learning_rate": 0.0006,
+ "loss": 3.4278972148895264,
+ "step": 1359
+ },
+ {
+ "epoch": 18.894323144104803,
+ "grad_norm": 0.018383143469691277,
+ "learning_rate": 0.0006,
+ "loss": 3.4278743267059326,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90829694323144,
+ "grad_norm": 0.01822691783308983,
+ "learning_rate": 0.0006,
+ "loss": 3.4315247535705566,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92227074235808,
+ "grad_norm": 0.019348058849573135,
+ "learning_rate": 0.0006,
+ "loss": 3.401350498199463,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936244541484715,
+ "grad_norm": 0.01952742226421833,
+ "learning_rate": 0.0006,
+ "loss": 3.378289222717285,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950218340611354,
+ "grad_norm": 0.019068529829382896,
+ "learning_rate": 0.0006,
+ "loss": 3.4088215827941895,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964192139737992,
+ "grad_norm": 0.02002856135368347,
+ "learning_rate": 0.0006,
+ "loss": 3.4396965503692627,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978165938864628,
+ "grad_norm": 0.01839490234851837,
+ "learning_rate": 0.0006,
+ "loss": 3.4167215824127197,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992139737991266,
+ "grad_norm": 0.018450899049639702,
+ "learning_rate": 0.0006,
+ "loss": 3.4458084106445312,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.021764317527413368,
+ "learning_rate": 0.0006,
+ "loss": 3.4413537979125977,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 3.9891514778137207,
+ "eval_runtime": 49.9998,
+ "eval_samples_per_second": 48.84,
+ "eval_steps_per_second": 1.54,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397379912664,
+ "grad_norm": 0.02277272194623947,
+ "learning_rate": 0.0006,
+ "loss": 3.2692642211914062,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027947598253274,
+ "grad_norm": 0.03352588415145874,
+ "learning_rate": 0.0006,
+ "loss": 3.2701330184936523,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041921397379912,
+ "grad_norm": 0.03873065486550331,
+ "learning_rate": 0.0006,
+ "loss": 3.3169291019439697,
+ "step": 1371
+ },
+ {
+ "epoch": 19.05589519650655,
+ "grad_norm": 0.03804260492324829,
+ "learning_rate": 0.0006,
+ "loss": 3.2720119953155518,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069868995633186,
+ "grad_norm": 0.04382786899805069,
+ "learning_rate": 0.0006,
+ "loss": 3.2789559364318848,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083842794759825,
+ "grad_norm": 0.042553164064884186,
+ "learning_rate": 0.0006,
+ "loss": 3.287041187286377,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097816593886463,
+ "grad_norm": 0.040354058146476746,
+ "learning_rate": 0.0006,
+ "loss": 3.2970733642578125,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111790393013102,
+ "grad_norm": 0.04003302380442619,
+ "learning_rate": 0.0006,
+ "loss": 3.298656940460205,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125764192139737,
+ "grad_norm": 0.04839435964822769,
+ "learning_rate": 0.0006,
+ "loss": 3.3119897842407227,
+ "step": 1377
+ },
+ {
+ "epoch": 19.139737991266376,
+ "grad_norm": 0.04619353264570236,
+ "learning_rate": 0.0006,
+ "loss": 3.323103904724121,
+ "step": 1378
+ },
+ {
+ "epoch": 19.153711790393015,
+ "grad_norm": 0.04889119043946266,
+ "learning_rate": 0.0006,
+ "loss": 3.29386043548584,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16768558951965,
+ "grad_norm": 0.052284516394138336,
+ "learning_rate": 0.0006,
+ "loss": 3.2952120304107666,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18165938864629,
+ "grad_norm": 0.053939417004585266,
+ "learning_rate": 0.0006,
+ "loss": 3.309581756591797,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195633187772927,
+ "grad_norm": 0.04883198067545891,
+ "learning_rate": 0.0006,
+ "loss": 3.3202223777770996,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209606986899562,
+ "grad_norm": 0.04550885036587715,
+ "learning_rate": 0.0006,
+ "loss": 3.3503410816192627,
+ "step": 1383
+ },
+ {
+ "epoch": 19.2235807860262,
+ "grad_norm": 0.04721444472670555,
+ "learning_rate": 0.0006,
+ "loss": 3.3530726432800293,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23755458515284,
+ "grad_norm": 0.051496051251888275,
+ "learning_rate": 0.0006,
+ "loss": 3.333950996398926,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251528384279474,
+ "grad_norm": 0.053854621946811676,
+ "learning_rate": 0.0006,
+ "loss": 3.3520333766937256,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265502183406113,
+ "grad_norm": 0.04623614624142647,
+ "learning_rate": 0.0006,
+ "loss": 3.350588083267212,
+ "step": 1387
+ },
+ {
+ "epoch": 19.27947598253275,
+ "grad_norm": 0.04073309525847435,
+ "learning_rate": 0.0006,
+ "loss": 3.3644251823425293,
+ "step": 1388
+ },
+ {
+ "epoch": 19.29344978165939,
+ "grad_norm": 0.03639872372150421,
+ "learning_rate": 0.0006,
+ "loss": 3.367534875869751,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307423580786025,
+ "grad_norm": 0.036499980837106705,
+ "learning_rate": 0.0006,
+ "loss": 3.3632423877716064,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321397379912664,
+ "grad_norm": 0.0373394750058651,
+ "learning_rate": 0.0006,
+ "loss": 3.3506932258605957,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335371179039303,
+ "grad_norm": 0.04176274687051773,
+ "learning_rate": 0.0006,
+ "loss": 3.3571481704711914,
+ "step": 1392
+ },
+ {
+ "epoch": 19.349344978165938,
+ "grad_norm": 0.04616089537739754,
+ "learning_rate": 0.0006,
+ "loss": 3.359266996383667,
+ "step": 1393
+ },
+ {
+ "epoch": 19.363318777292577,
+ "grad_norm": 0.04692723974585533,
+ "learning_rate": 0.0006,
+ "loss": 3.390904188156128,
+ "step": 1394
+ },
+ {
+ "epoch": 19.377292576419215,
+ "grad_norm": 0.04957121983170509,
+ "learning_rate": 0.0006,
+ "loss": 3.341733932495117,
+ "step": 1395
+ },
+ {
+ "epoch": 19.39126637554585,
+ "grad_norm": 0.0432475246489048,
+ "learning_rate": 0.0006,
+ "loss": 3.2961924076080322,
+ "step": 1396
+ },
+ {
+ "epoch": 19.40524017467249,
+ "grad_norm": 0.041836753487586975,
+ "learning_rate": 0.0006,
+ "loss": 3.3686509132385254,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419213973799128,
+ "grad_norm": 0.03855185955762863,
+ "learning_rate": 0.0006,
+ "loss": 3.3566665649414062,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433187772925763,
+ "grad_norm": 0.034848880022764206,
+ "learning_rate": 0.0006,
+ "loss": 3.374608039855957,
+ "step": 1399
+ },
+ {
+ "epoch": 19.4471615720524,
+ "grad_norm": 0.03131943941116333,
+ "learning_rate": 0.0006,
+ "loss": 3.3618953227996826,
+ "step": 1400
+ },
+ {
+ "epoch": 19.46113537117904,
+ "grad_norm": 0.029629478231072426,
+ "learning_rate": 0.0006,
+ "loss": 3.3952600955963135,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475109170305675,
+ "grad_norm": 0.02885911799967289,
+ "learning_rate": 0.0006,
+ "loss": 3.382490634918213,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489082969432314,
+ "grad_norm": 0.026441723108291626,
+ "learning_rate": 0.0006,
+ "loss": 3.3543779850006104,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503056768558952,
+ "grad_norm": 0.024119269102811813,
+ "learning_rate": 0.0006,
+ "loss": 3.3829503059387207,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51703056768559,
+ "grad_norm": 0.023766381666064262,
+ "learning_rate": 0.0006,
+ "loss": 3.37758731842041,
+ "step": 1405
+ },
+ {
+ "epoch": 19.531004366812226,
+ "grad_norm": 0.02395741641521454,
+ "learning_rate": 0.0006,
+ "loss": 3.4042277336120605,
+ "step": 1406
+ },
+ {
+ "epoch": 19.544978165938865,
+ "grad_norm": 0.023499730974435806,
+ "learning_rate": 0.0006,
+ "loss": 3.3811798095703125,
+ "step": 1407
+ },
+ {
+ "epoch": 19.558951965065503,
+ "grad_norm": 0.021423807367682457,
+ "learning_rate": 0.0006,
+ "loss": 3.3517274856567383,
+ "step": 1408
+ },
+ {
+ "epoch": 19.57292576419214,
+ "grad_norm": 0.02017848752439022,
+ "learning_rate": 0.0006,
+ "loss": 3.369368314743042,
+ "step": 1409
+ },
+ {
+ "epoch": 19.586899563318777,
+ "grad_norm": 0.02168160304427147,
+ "learning_rate": 0.0006,
+ "loss": 3.357361316680908,
+ "step": 1410
+ },
+ {
+ "epoch": 19.600873362445416,
+ "grad_norm": 0.020053956657648087,
+ "learning_rate": 0.0006,
+ "loss": 3.378511667251587,
+ "step": 1411
+ },
+ {
+ "epoch": 19.61484716157205,
+ "grad_norm": 0.018789371475577354,
+ "learning_rate": 0.0006,
+ "loss": 3.386579990386963,
+ "step": 1412
+ },
+ {
+ "epoch": 19.62882096069869,
+ "grad_norm": 0.01985175907611847,
+ "learning_rate": 0.0006,
+ "loss": 3.3903000354766846,
+ "step": 1413
+ },
+ {
+ "epoch": 19.64279475982533,
+ "grad_norm": 0.019878871738910675,
+ "learning_rate": 0.0006,
+ "loss": 3.362997055053711,
+ "step": 1414
+ },
+ {
+ "epoch": 19.656768558951963,
+ "grad_norm": 0.01920200325548649,
+ "learning_rate": 0.0006,
+ "loss": 3.397496461868286,
+ "step": 1415
+ },
+ {
+ "epoch": 19.670742358078602,
+ "grad_norm": 0.019940156489610672,
+ "learning_rate": 0.0006,
+ "loss": 3.375986099243164,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68471615720524,
+ "grad_norm": 0.019822560250759125,
+ "learning_rate": 0.0006,
+ "loss": 3.351943016052246,
+ "step": 1417
+ },
+ {
+ "epoch": 19.69868995633188,
+ "grad_norm": 0.01987987756729126,
+ "learning_rate": 0.0006,
+ "loss": 3.3699135780334473,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712663755458514,
+ "grad_norm": 0.020490208640694618,
+ "learning_rate": 0.0006,
+ "loss": 3.3826851844787598,
+ "step": 1419
+ },
+ {
+ "epoch": 19.726637554585153,
+ "grad_norm": 0.019540539011359215,
+ "learning_rate": 0.0006,
+ "loss": 3.330385208129883,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74061135371179,
+ "grad_norm": 0.018522001802921295,
+ "learning_rate": 0.0006,
+ "loss": 3.3798022270202637,
+ "step": 1421
+ },
+ {
+ "epoch": 19.754585152838427,
+ "grad_norm": 0.019179968163371086,
+ "learning_rate": 0.0006,
+ "loss": 3.352015733718872,
+ "step": 1422
+ },
+ {
+ "epoch": 19.768558951965066,
+ "grad_norm": 0.018380016088485718,
+ "learning_rate": 0.0006,
+ "loss": 3.3417506217956543,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782532751091704,
+ "grad_norm": 0.018539059907197952,
+ "learning_rate": 0.0006,
+ "loss": 3.3680901527404785,
+ "step": 1424
+ },
+ {
+ "epoch": 19.79650655021834,
+ "grad_norm": 0.01938101463019848,
+ "learning_rate": 0.0006,
+ "loss": 3.3972573280334473,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810480349344978,
+ "grad_norm": 0.019287938252091408,
+ "learning_rate": 0.0006,
+ "loss": 3.3635201454162598,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824454148471617,
+ "grad_norm": 0.01918751373887062,
+ "learning_rate": 0.0006,
+ "loss": 3.3594346046447754,
+ "step": 1427
+ },
+ {
+ "epoch": 19.83842794759825,
+ "grad_norm": 0.01843525469303131,
+ "learning_rate": 0.0006,
+ "loss": 3.3794357776641846,
+ "step": 1428
+ },
+ {
+ "epoch": 19.85240174672489,
+ "grad_norm": 0.017499281093478203,
+ "learning_rate": 0.0006,
+ "loss": 3.3725686073303223,
+ "step": 1429
+ },
+ {
+ "epoch": 19.86637554585153,
+ "grad_norm": 0.01804421842098236,
+ "learning_rate": 0.0006,
+ "loss": 3.3510665893554688,
+ "step": 1430
+ },
+ {
+ "epoch": 19.880349344978168,
+ "grad_norm": 0.01854187622666359,
+ "learning_rate": 0.0006,
+ "loss": 3.366323471069336,
+ "step": 1431
+ },
+ {
+ "epoch": 19.894323144104803,
+ "grad_norm": 0.019070899114012718,
+ "learning_rate": 0.0006,
+ "loss": 3.3426618576049805,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90829694323144,
+ "grad_norm": 0.018046852201223373,
+ "learning_rate": 0.0006,
+ "loss": 3.392629623413086,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92227074235808,
+ "grad_norm": 0.017897332087159157,
+ "learning_rate": 0.0006,
+ "loss": 3.384459972381592,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936244541484715,
+ "grad_norm": 0.018831918016076088,
+ "learning_rate": 0.0006,
+ "loss": 3.3787403106689453,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950218340611354,
+ "grad_norm": 0.017684299498796463,
+ "learning_rate": 0.0006,
+ "loss": 3.3839499950408936,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964192139737992,
+ "grad_norm": 0.018664930015802383,
+ "learning_rate": 0.0006,
+ "loss": 3.361309289932251,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978165938864628,
+ "grad_norm": 0.018459675833582878,
+ "learning_rate": 0.0006,
+ "loss": 3.3763248920440674,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992139737991266,
+ "grad_norm": 0.018684620037674904,
+ "learning_rate": 0.0006,
+ "loss": 3.364279270172119,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.02109597623348236,
+ "learning_rate": 0.0006,
+ "loss": 3.3849806785583496,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 3.997159004211426,
+ "eval_runtime": 54.7559,
+ "eval_samples_per_second": 44.598,
+ "eval_steps_per_second": 1.406,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397379912664,
+ "grad_norm": 0.023242158815264702,
+ "learning_rate": 0.0006,
+ "loss": 3.219148635864258,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027947598253274,
+ "grad_norm": 0.035289909690618515,
+ "learning_rate": 0.0006,
+ "loss": 3.1906566619873047,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041921397379912,
+ "grad_norm": 0.03934298828244209,
+ "learning_rate": 0.0006,
+ "loss": 3.24796199798584,
+ "step": 1443
+ },
+ {
+ "epoch": 20.05589519650655,
+ "grad_norm": 0.03764699772000313,
+ "learning_rate": 0.0006,
+ "loss": 3.258643627166748,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069868995633186,
+ "grad_norm": 0.038128290325403214,
+ "learning_rate": 0.0006,
+ "loss": 3.2360262870788574,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083842794759825,
+ "grad_norm": 0.04228486120700836,
+ "learning_rate": 0.0006,
+ "loss": 3.246365547180176,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097816593886463,
+ "grad_norm": 0.04360193759202957,
+ "learning_rate": 0.0006,
+ "loss": 3.2414700984954834,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111790393013102,
+ "grad_norm": 0.03822943568229675,
+ "learning_rate": 0.0006,
+ "loss": 3.2489700317382812,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125764192139737,
+ "grad_norm": 0.036029502749443054,
+ "learning_rate": 0.0006,
+ "loss": 3.2229957580566406,
+ "step": 1449
+ },
+ {
+ "epoch": 20.139737991266376,
+ "grad_norm": 0.03957182168960571,
+ "learning_rate": 0.0006,
+ "loss": 3.256904125213623,
+ "step": 1450
+ },
+ {
+ "epoch": 20.153711790393015,
+ "grad_norm": 0.039222728461027145,
+ "learning_rate": 0.0006,
+ "loss": 3.268920660018921,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16768558951965,
+ "grad_norm": 0.034906432032585144,
+ "learning_rate": 0.0006,
+ "loss": 3.2575674057006836,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18165938864629,
+ "grad_norm": 0.03401615098118782,
+ "learning_rate": 0.0006,
+ "loss": 3.231116771697998,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195633187772927,
+ "grad_norm": 0.034356508404016495,
+ "learning_rate": 0.0006,
+ "loss": 3.262190580368042,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209606986899562,
+ "grad_norm": 0.03251064196228981,
+ "learning_rate": 0.0006,
+ "loss": 3.2810235023498535,
+ "step": 1455
+ },
+ {
+ "epoch": 20.2235807860262,
+ "grad_norm": 0.03308776021003723,
+ "learning_rate": 0.0006,
+ "loss": 3.2639098167419434,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23755458515284,
+ "grad_norm": 0.03230876103043556,
+ "learning_rate": 0.0006,
+ "loss": 3.2558178901672363,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251528384279474,
+ "grad_norm": 0.03161812946200371,
+ "learning_rate": 0.0006,
+ "loss": 3.291419267654419,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265502183406113,
+ "grad_norm": 0.02916458062827587,
+ "learning_rate": 0.0006,
+ "loss": 3.280852794647217,
+ "step": 1459
+ },
+ {
+ "epoch": 20.27947598253275,
+ "grad_norm": 0.029812375083565712,
+ "learning_rate": 0.0006,
+ "loss": 3.2271876335144043,
+ "step": 1460
+ },
+ {
+ "epoch": 20.29344978165939,
+ "grad_norm": 0.029384229332208633,
+ "learning_rate": 0.0006,
+ "loss": 3.2629804611206055,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307423580786025,
+ "grad_norm": 0.033414218574762344,
+ "learning_rate": 0.0006,
+ "loss": 3.270416498184204,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321397379912664,
+ "grad_norm": 0.03318887576460838,
+ "learning_rate": 0.0006,
+ "loss": 3.272148609161377,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335371179039303,
+ "grad_norm": 0.030193055048584938,
+ "learning_rate": 0.0006,
+ "loss": 3.2646775245666504,
+ "step": 1464
+ },
+ {
+ "epoch": 20.349344978165938,
+ "grad_norm": 0.028252357617020607,
+ "learning_rate": 0.0006,
+ "loss": 3.2772417068481445,
+ "step": 1465
+ },
+ {
+ "epoch": 20.363318777292577,
+ "grad_norm": 0.028565213084220886,
+ "learning_rate": 0.0006,
+ "loss": 3.3179280757904053,
+ "step": 1466
+ },
+ {
+ "epoch": 20.377292576419215,
+ "grad_norm": 0.026722336187958717,
+ "learning_rate": 0.0006,
+ "loss": 3.2810170650482178,
+ "step": 1467
+ },
+ {
+ "epoch": 20.39126637554585,
+ "grad_norm": 0.025114644318819046,
+ "learning_rate": 0.0006,
+ "loss": 3.2686173915863037,
+ "step": 1468
+ },
+ {
+ "epoch": 20.40524017467249,
+ "grad_norm": 0.025851737707853317,
+ "learning_rate": 0.0006,
+ "loss": 3.2975308895111084,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419213973799128,
+ "grad_norm": 0.024468228220939636,
+ "learning_rate": 0.0006,
+ "loss": 3.2880358695983887,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433187772925763,
+ "grad_norm": 0.02360754832625389,
+ "learning_rate": 0.0006,
+ "loss": 3.2768073081970215,
+ "step": 1471
+ },
+ {
+ "epoch": 20.4471615720524,
+ "grad_norm": 0.024596888571977615,
+ "learning_rate": 0.0006,
+ "loss": 3.285207509994507,
+ "step": 1472
+ },
+ {
+ "epoch": 20.46113537117904,
+ "grad_norm": 0.02434864081442356,
+ "learning_rate": 0.0006,
+ "loss": 3.284351110458374,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475109170305675,
+ "grad_norm": 0.023001939058303833,
+ "learning_rate": 0.0006,
+ "loss": 3.2642571926116943,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489082969432314,
+ "grad_norm": 0.022632446140050888,
+ "learning_rate": 0.0006,
+ "loss": 3.32163143157959,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503056768558952,
+ "grad_norm": 0.023113328963518143,
+ "learning_rate": 0.0006,
+ "loss": 3.292109251022339,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51703056768559,
+ "grad_norm": 0.02199697494506836,
+ "learning_rate": 0.0006,
+ "loss": 3.3133938312530518,
+ "step": 1477
+ },
+ {
+ "epoch": 20.531004366812226,
+ "grad_norm": 0.023468362167477608,
+ "learning_rate": 0.0006,
+ "loss": 3.2595276832580566,
+ "step": 1478
+ },
+ {
+ "epoch": 20.544978165938865,
+ "grad_norm": 0.022027716040611267,
+ "learning_rate": 0.0006,
+ "loss": 3.2692484855651855,
+ "step": 1479
+ },
+ {
+ "epoch": 20.558951965065503,
+ "grad_norm": 0.021089443936944008,
+ "learning_rate": 0.0006,
+ "loss": 3.317549467086792,
+ "step": 1480
+ },
+ {
+ "epoch": 20.57292576419214,
+ "grad_norm": 0.020714912563562393,
+ "learning_rate": 0.0006,
+ "loss": 3.2982163429260254,
+ "step": 1481
+ },
+ {
+ "epoch": 20.586899563318777,
+ "grad_norm": 0.021601643413305283,
+ "learning_rate": 0.0006,
+ "loss": 3.303770065307617,
+ "step": 1482
+ },
+ {
+ "epoch": 20.600873362445416,
+ "grad_norm": 0.02164667472243309,
+ "learning_rate": 0.0006,
+ "loss": 3.297548294067383,
+ "step": 1483
+ },
+ {
+ "epoch": 20.61484716157205,
+ "grad_norm": 0.0205276720225811,
+ "learning_rate": 0.0006,
+ "loss": 3.265287399291992,
+ "step": 1484
+ },
+ {
+ "epoch": 20.62882096069869,
+ "grad_norm": 0.020926227793097496,
+ "learning_rate": 0.0006,
+ "loss": 3.3233776092529297,
+ "step": 1485
+ },
+ {
+ "epoch": 20.64279475982533,
+ "grad_norm": 0.020680908113718033,
+ "learning_rate": 0.0006,
+ "loss": 3.299736499786377,
+ "step": 1486
+ },
+ {
+ "epoch": 20.656768558951963,
+ "grad_norm": 0.02010631375014782,
+ "learning_rate": 0.0006,
+ "loss": 3.319195032119751,
+ "step": 1487
+ },
+ {
+ "epoch": 20.670742358078602,
+ "grad_norm": 0.01861870475113392,
+ "learning_rate": 0.0006,
+ "loss": 3.309542179107666,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68471615720524,
+ "grad_norm": 0.019709311425685883,
+ "learning_rate": 0.0006,
+ "loss": 3.2684426307678223,
+ "step": 1489
+ },
+ {
+ "epoch": 20.69868995633188,
+ "grad_norm": 0.019379155710339546,
+ "learning_rate": 0.0006,
+ "loss": 3.3123316764831543,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712663755458514,
+ "grad_norm": 0.018971465528011322,
+ "learning_rate": 0.0006,
+ "loss": 3.3249459266662598,
+ "step": 1491
+ },
+ {
+ "epoch": 20.726637554585153,
+ "grad_norm": 0.01862727664411068,
+ "learning_rate": 0.0006,
+ "loss": 3.2942824363708496,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74061135371179,
+ "grad_norm": 0.01932865008711815,
+ "learning_rate": 0.0006,
+ "loss": 3.3328568935394287,
+ "step": 1493
+ },
+ {
+ "epoch": 20.754585152838427,
+ "grad_norm": 0.019298749044537544,
+ "learning_rate": 0.0006,
+ "loss": 3.2632360458374023,
+ "step": 1494
+ },
+ {
+ "epoch": 20.768558951965066,
+ "grad_norm": 0.018749341368675232,
+ "learning_rate": 0.0006,
+ "loss": 3.320802688598633,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782532751091704,
+ "grad_norm": 0.01888313889503479,
+ "learning_rate": 0.0006,
+ "loss": 3.3290247917175293,
+ "step": 1496
+ },
+ {
+ "epoch": 20.79650655021834,
+ "grad_norm": 0.019536348059773445,
+ "learning_rate": 0.0006,
+ "loss": 3.311213493347168,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810480349344978,
+ "grad_norm": 0.018573017790913582,
+ "learning_rate": 0.0006,
+ "loss": 3.3132004737854004,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824454148471617,
+ "grad_norm": 0.019365103915333748,
+ "learning_rate": 0.0006,
+ "loss": 3.312656879425049,
+ "step": 1499
+ },
+ {
+ "epoch": 20.83842794759825,
+ "grad_norm": 0.021032165735960007,
+ "learning_rate": 0.0006,
+ "loss": 3.330728054046631,
+ "step": 1500
+ },
+ {
+ "epoch": 20.85240174672489,
+ "grad_norm": 0.02062826044857502,
+ "learning_rate": 0.0006,
+ "loss": 3.386507034301758,
+ "step": 1501
+ },
+ {
+ "epoch": 20.86637554585153,
+ "grad_norm": 0.019087517634034157,
+ "learning_rate": 0.0006,
+ "loss": 3.3134851455688477,
+ "step": 1502
+ },
+ {
+ "epoch": 20.880349344978168,
+ "grad_norm": 0.018393544480204582,
+ "learning_rate": 0.0006,
+ "loss": 3.3288557529449463,
+ "step": 1503
+ },
+ {
+ "epoch": 20.894323144104803,
+ "grad_norm": 0.018625570461153984,
+ "learning_rate": 0.0006,
+ "loss": 3.3385863304138184,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90829694323144,
+ "grad_norm": 0.018994612619280815,
+ "learning_rate": 0.0006,
+ "loss": 3.3441519737243652,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92227074235808,
+ "grad_norm": 0.019807450473308563,
+ "learning_rate": 0.0006,
+ "loss": 3.2853572368621826,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936244541484715,
+ "grad_norm": 0.01904045045375824,
+ "learning_rate": 0.0006,
+ "loss": 3.2973103523254395,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950218340611354,
+ "grad_norm": 0.019115809351205826,
+ "learning_rate": 0.0006,
+ "loss": 3.3340232372283936,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964192139737992,
+ "grad_norm": 0.020370563492178917,
+ "learning_rate": 0.0006,
+ "loss": 3.3770620822906494,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978165938864628,
+ "grad_norm": 0.02040398307144642,
+ "learning_rate": 0.0006,
+ "loss": 3.3141350746154785,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992139737991266,
+ "grad_norm": 0.019721226766705513,
+ "learning_rate": 0.0006,
+ "loss": 3.3140838146209717,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.021993499249219894,
+ "learning_rate": 0.0006,
+ "loss": 3.327284574508667,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 4.007121562957764,
+ "eval_runtime": 50.0284,
+ "eval_samples_per_second": 48.812,
+ "eval_steps_per_second": 1.539,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397379912664,
+ "grad_norm": 0.0266740545630455,
+ "learning_rate": 0.0006,
+ "loss": 3.1542232036590576,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027947598253274,
+ "grad_norm": 0.0431625060737133,
+ "learning_rate": 0.0006,
+ "loss": 3.1733574867248535,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041921397379912,
+ "grad_norm": 0.05062565952539444,
+ "learning_rate": 0.0006,
+ "loss": 3.2326841354370117,
+ "step": 1515
+ },
+ {
+ "epoch": 21.05589519650655,
+ "grad_norm": 0.04447261989116669,
+ "learning_rate": 0.0006,
+ "loss": 3.158965587615967,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069868995633186,
+ "grad_norm": 0.04547872766852379,
+ "learning_rate": 0.0006,
+ "loss": 3.1754844188690186,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083842794759825,
+ "grad_norm": 0.045201778411865234,
+ "learning_rate": 0.0006,
+ "loss": 3.164539337158203,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097816593886463,
+ "grad_norm": 0.04903271794319153,
+ "learning_rate": 0.0006,
+ "loss": 3.223135232925415,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111790393013102,
+ "grad_norm": 0.05277688428759575,
+ "learning_rate": 0.0006,
+ "loss": 3.21925687789917,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125764192139737,
+ "grad_norm": 0.055951476097106934,
+ "learning_rate": 0.0006,
+ "loss": 3.2054057121276855,
+ "step": 1521
+ },
+ {
+ "epoch": 21.139737991266376,
+ "grad_norm": 0.05742252990603447,
+ "learning_rate": 0.0006,
+ "loss": 3.2347140312194824,
+ "step": 1522
+ },
+ {
+ "epoch": 21.153711790393015,
+ "grad_norm": 0.05464409664273262,
+ "learning_rate": 0.0006,
+ "loss": 3.2519783973693848,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16768558951965,
+ "grad_norm": 0.06649098545312881,
+ "learning_rate": 0.0006,
+ "loss": 3.2739510536193848,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18165938864629,
+ "grad_norm": 0.07743308693170547,
+ "learning_rate": 0.0006,
+ "loss": 3.2961807250976562,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195633187772927,
+ "grad_norm": 0.0752289667725563,
+ "learning_rate": 0.0006,
+ "loss": 3.284780740737915,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209606986899562,
+ "grad_norm": 0.06247316300868988,
+ "learning_rate": 0.0006,
+ "loss": 3.253411293029785,
+ "step": 1527
+ },
+ {
+ "epoch": 21.2235807860262,
+ "grad_norm": 0.06856120377779007,
+ "learning_rate": 0.0006,
+ "loss": 3.288010597229004,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23755458515284,
+ "grad_norm": 0.06939002871513367,
+ "learning_rate": 0.0006,
+ "loss": 3.2672412395477295,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251528384279474,
+ "grad_norm": 0.06546786427497864,
+ "learning_rate": 0.0006,
+ "loss": 3.2822303771972656,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265502183406113,
+ "grad_norm": 0.06720232218503952,
+ "learning_rate": 0.0006,
+ "loss": 3.332411289215088,
+ "step": 1531
+ },
+ {
+ "epoch": 21.27947598253275,
+ "grad_norm": 0.061658330261707306,
+ "learning_rate": 0.0006,
+ "loss": 3.2908289432525635,
+ "step": 1532
+ },
+ {
+ "epoch": 21.29344978165939,
+ "grad_norm": 0.07328956574201584,
+ "learning_rate": 0.0006,
+ "loss": 3.3375182151794434,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307423580786025,
+ "grad_norm": 0.06822583079338074,
+ "learning_rate": 0.0006,
+ "loss": 3.3630833625793457,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321397379912664,
+ "grad_norm": 0.060682639479637146,
+ "learning_rate": 0.0006,
+ "loss": 3.3475425243377686,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335371179039303,
+ "grad_norm": 0.05718247592449188,
+ "learning_rate": 0.0006,
+ "loss": 3.351832866668701,
+ "step": 1536
+ },
+ {
+ "epoch": 21.349344978165938,
+ "grad_norm": 0.05781054124236107,
+ "learning_rate": 0.0006,
+ "loss": 3.38287091255188,
+ "step": 1537
+ },
+ {
+ "epoch": 21.363318777292577,
+ "grad_norm": 0.05846734717488289,
+ "learning_rate": 0.0006,
+ "loss": 3.3522510528564453,
+ "step": 1538
+ },
+ {
+ "epoch": 21.377292576419215,
+ "grad_norm": 0.0558689683675766,
+ "learning_rate": 0.0006,
+ "loss": 3.3376541137695312,
+ "step": 1539
+ },
+ {
+ "epoch": 21.39126637554585,
+ "grad_norm": 0.050501998513936996,
+ "learning_rate": 0.0006,
+ "loss": 3.359436511993408,
+ "step": 1540
+ },
+ {
+ "epoch": 21.40524017467249,
+ "grad_norm": 0.04265185445547104,
+ "learning_rate": 0.0006,
+ "loss": 3.3644630908966064,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419213973799128,
+ "grad_norm": 0.038762111216783524,
+ "learning_rate": 0.0006,
+ "loss": 3.347414493560791,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433187772925763,
+ "grad_norm": 0.033920831978321075,
+ "learning_rate": 0.0006,
+ "loss": 3.3242359161376953,
+ "step": 1543
+ },
+ {
+ "epoch": 21.4471615720524,
+ "grad_norm": 0.03363734856247902,
+ "learning_rate": 0.0006,
+ "loss": 3.3375630378723145,
+ "step": 1544
+ },
+ {
+ "epoch": 21.46113537117904,
+ "grad_norm": 0.03235653042793274,
+ "learning_rate": 0.0006,
+ "loss": 3.3372178077697754,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475109170305675,
+ "grad_norm": 0.028865264728665352,
+ "learning_rate": 0.0006,
+ "loss": 3.349198341369629,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489082969432314,
+ "grad_norm": 0.026676205918192863,
+ "learning_rate": 0.0006,
+ "loss": 3.355546474456787,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503056768558952,
+ "grad_norm": 0.023821823298931122,
+ "learning_rate": 0.0006,
+ "loss": 3.303542137145996,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51703056768559,
+ "grad_norm": 0.02385578863322735,
+ "learning_rate": 0.0006,
+ "loss": 3.3081653118133545,
+ "step": 1549
+ },
+ {
+ "epoch": 21.531004366812226,
+ "grad_norm": 0.022704163566231728,
+ "learning_rate": 0.0006,
+ "loss": 3.308283805847168,
+ "step": 1550
+ },
+ {
+ "epoch": 21.544978165938865,
+ "grad_norm": 0.02143189311027527,
+ "learning_rate": 0.0006,
+ "loss": 3.309621810913086,
+ "step": 1551
+ },
+ {
+ "epoch": 21.558951965065503,
+ "grad_norm": 0.020797641947865486,
+ "learning_rate": 0.0006,
+ "loss": 3.314361095428467,
+ "step": 1552
+ },
+ {
+ "epoch": 21.57292576419214,
+ "grad_norm": 0.020197909325361252,
+ "learning_rate": 0.0006,
+ "loss": 3.314574956893921,
+ "step": 1553
+ },
+ {
+ "epoch": 21.586899563318777,
+ "grad_norm": 0.020033083856105804,
+ "learning_rate": 0.0006,
+ "loss": 3.3187432289123535,
+ "step": 1554
+ },
+ {
+ "epoch": 21.600873362445416,
+ "grad_norm": 0.019949860870838165,
+ "learning_rate": 0.0006,
+ "loss": 3.292051315307617,
+ "step": 1555
+ },
+ {
+ "epoch": 21.61484716157205,
+ "grad_norm": 0.019957413896918297,
+ "learning_rate": 0.0006,
+ "loss": 3.305405855178833,
+ "step": 1556
+ },
+ {
+ "epoch": 21.62882096069869,
+ "grad_norm": 0.019971443340182304,
+ "learning_rate": 0.0006,
+ "loss": 3.296830177307129,
+ "step": 1557
+ },
+ {
+ "epoch": 21.64279475982533,
+ "grad_norm": 0.020505597814917564,
+ "learning_rate": 0.0006,
+ "loss": 3.2825589179992676,
+ "step": 1558
+ },
+ {
+ "epoch": 21.656768558951963,
+ "grad_norm": 0.019877616316080093,
+ "learning_rate": 0.0006,
+ "loss": 3.313103199005127,
+ "step": 1559
+ },
+ {
+ "epoch": 21.670742358078602,
+ "grad_norm": 0.020201386883854866,
+ "learning_rate": 0.0006,
+ "loss": 3.235610008239746,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68471615720524,
+ "grad_norm": 0.02024715021252632,
+ "learning_rate": 0.0006,
+ "loss": 3.2557928562164307,
+ "step": 1561
+ },
+ {
+ "epoch": 21.69868995633188,
+ "grad_norm": 0.019592178985476494,
+ "learning_rate": 0.0006,
+ "loss": 3.2867813110351562,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712663755458514,
+ "grad_norm": 0.018611110746860504,
+ "learning_rate": 0.0006,
+ "loss": 3.2807016372680664,
+ "step": 1563
+ },
+ {
+ "epoch": 21.726637554585153,
+ "grad_norm": 0.018972786143422127,
+ "learning_rate": 0.0006,
+ "loss": 3.2985191345214844,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74061135371179,
+ "grad_norm": 0.018826451152563095,
+ "learning_rate": 0.0006,
+ "loss": 3.29825758934021,
+ "step": 1565
+ },
+ {
+ "epoch": 21.754585152838427,
+ "grad_norm": 0.018894566223025322,
+ "learning_rate": 0.0006,
+ "loss": 3.276063919067383,
+ "step": 1566
+ },
+ {
+ "epoch": 21.768558951965066,
+ "grad_norm": 0.01885579153895378,
+ "learning_rate": 0.0006,
+ "loss": 3.2703640460968018,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782532751091704,
+ "grad_norm": 0.018351880833506584,
+ "learning_rate": 0.0006,
+ "loss": 3.2634973526000977,
+ "step": 1568
+ },
+ {
+ "epoch": 21.79650655021834,
+ "grad_norm": 0.018520258367061615,
+ "learning_rate": 0.0006,
+ "loss": 3.2701549530029297,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810480349344978,
+ "grad_norm": 0.018321022391319275,
+ "learning_rate": 0.0006,
+ "loss": 3.2998499870300293,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824454148471617,
+ "grad_norm": 0.018834305927157402,
+ "learning_rate": 0.0006,
+ "loss": 3.2863354682922363,
+ "step": 1571
+ },
+ {
+ "epoch": 21.83842794759825,
+ "grad_norm": 0.019185064360499382,
+ "learning_rate": 0.0006,
+ "loss": 3.286705493927002,
+ "step": 1572
+ },
+ {
+ "epoch": 21.85240174672489,
+ "grad_norm": 0.01889665424823761,
+ "learning_rate": 0.0006,
+ "loss": 3.32741641998291,
+ "step": 1573
+ },
+ {
+ "epoch": 21.86637554585153,
+ "grad_norm": 0.018116198480129242,
+ "learning_rate": 0.0006,
+ "loss": 3.3165807723999023,
+ "step": 1574
+ },
+ {
+ "epoch": 21.880349344978168,
+ "grad_norm": 0.019612092524766922,
+ "learning_rate": 0.0006,
+ "loss": 3.2506771087646484,
+ "step": 1575
+ },
+ {
+ "epoch": 21.894323144104803,
+ "grad_norm": 0.018245317041873932,
+ "learning_rate": 0.0006,
+ "loss": 3.287231922149658,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90829694323144,
+ "grad_norm": 0.01800438202917576,
+ "learning_rate": 0.0006,
+ "loss": 3.323281764984131,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92227074235808,
+ "grad_norm": 0.018265806138515472,
+ "learning_rate": 0.0006,
+ "loss": 3.327335834503174,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936244541484715,
+ "grad_norm": 0.01925564929842949,
+ "learning_rate": 0.0006,
+ "loss": 3.3010969161987305,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950218340611354,
+ "grad_norm": 0.019137129187583923,
+ "learning_rate": 0.0006,
+ "loss": 3.2997634410858154,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964192139737992,
+ "grad_norm": 0.01760365068912506,
+ "learning_rate": 0.0006,
+ "loss": 3.2637267112731934,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978165938864628,
+ "grad_norm": 0.018728850409388542,
+ "learning_rate": 0.0006,
+ "loss": 3.2676243782043457,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992139737991266,
+ "grad_norm": 0.018930058926343918,
+ "learning_rate": 0.0006,
+ "loss": 3.280712604522705,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.021552253514528275,
+ "learning_rate": 0.0006,
+ "loss": 3.297333240509033,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 4.021175384521484,
+ "eval_runtime": 50.1224,
+ "eval_samples_per_second": 48.721,
+ "eval_steps_per_second": 1.536,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397379912664,
+ "grad_norm": 0.02215493470430374,
+ "learning_rate": 0.0006,
+ "loss": 3.1229772567749023,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027947598253274,
+ "grad_norm": 0.02967856451869011,
+ "learning_rate": 0.0006,
+ "loss": 3.137763738632202,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041921397379912,
+ "grad_norm": 0.02984168380498886,
+ "learning_rate": 0.0006,
+ "loss": 3.1206588745117188,
+ "step": 1587
+ },
+ {
+ "epoch": 22.05589519650655,
+ "grad_norm": 0.029677357524633408,
+ "learning_rate": 0.0006,
+ "loss": 3.1399269104003906,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069868995633186,
+ "grad_norm": 0.03151305764913559,
+ "learning_rate": 0.0006,
+ "loss": 3.1238462924957275,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083842794759825,
+ "grad_norm": 0.033034879714250565,
+ "learning_rate": 0.0006,
+ "loss": 3.0901098251342773,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097816593886463,
+ "grad_norm": 0.03483431041240692,
+ "learning_rate": 0.0006,
+ "loss": 3.141174077987671,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111790393013102,
+ "grad_norm": 0.03549962490797043,
+ "learning_rate": 0.0006,
+ "loss": 3.1501364707946777,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125764192139737,
+ "grad_norm": 0.03203433007001877,
+ "learning_rate": 0.0006,
+ "loss": 3.159137725830078,
+ "step": 1593
+ },
+ {
+ "epoch": 22.139737991266376,
+ "grad_norm": 0.032320212572813034,
+ "learning_rate": 0.0006,
+ "loss": 3.132265329360962,
+ "step": 1594
+ },
+ {
+ "epoch": 22.153711790393015,
+ "grad_norm": 0.034070853143930435,
+ "learning_rate": 0.0006,
+ "loss": 3.1619839668273926,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16768558951965,
+ "grad_norm": 0.03379609435796738,
+ "learning_rate": 0.0006,
+ "loss": 3.1391677856445312,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18165938864629,
+ "grad_norm": 0.02766602858901024,
+ "learning_rate": 0.0006,
+ "loss": 3.134331226348877,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195633187772927,
+ "grad_norm": 0.02805453911423683,
+ "learning_rate": 0.0006,
+ "loss": 3.1561427116394043,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209606986899562,
+ "grad_norm": 0.028059443458914757,
+ "learning_rate": 0.0006,
+ "loss": 3.1427788734436035,
+ "step": 1599
+ },
+ {
+ "epoch": 22.2235807860262,
+ "grad_norm": 0.028307706117630005,
+ "learning_rate": 0.0006,
+ "loss": 3.1559817790985107,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23755458515284,
+ "grad_norm": 0.0279996320605278,
+ "learning_rate": 0.0006,
+ "loss": 3.132871389389038,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251528384279474,
+ "grad_norm": 0.02574557065963745,
+ "learning_rate": 0.0006,
+ "loss": 3.1786751747131348,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265502183406113,
+ "grad_norm": 0.024875380098819733,
+ "learning_rate": 0.0006,
+ "loss": 3.1568856239318848,
+ "step": 1603
+ },
+ {
+ "epoch": 22.27947598253275,
+ "grad_norm": 0.025276372209191322,
+ "learning_rate": 0.0006,
+ "loss": 3.162123203277588,
+ "step": 1604
+ },
+ {
+ "epoch": 22.29344978165939,
+ "grad_norm": 0.024784576147794724,
+ "learning_rate": 0.0006,
+ "loss": 3.1623098850250244,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307423580786025,
+ "grad_norm": 0.0219266377389431,
+ "learning_rate": 0.0006,
+ "loss": 3.193899393081665,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321397379912664,
+ "grad_norm": 0.02260139398276806,
+ "learning_rate": 0.0006,
+ "loss": 3.1366958618164062,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335371179039303,
+ "grad_norm": 0.023162642493844032,
+ "learning_rate": 0.0006,
+ "loss": 3.1931166648864746,
+ "step": 1608
+ },
+ {
+ "epoch": 22.349344978165938,
+ "grad_norm": 0.022873790934681892,
+ "learning_rate": 0.0006,
+ "loss": 3.1660501956939697,
+ "step": 1609
+ },
+ {
+ "epoch": 22.363318777292577,
+ "grad_norm": 0.02431238628923893,
+ "learning_rate": 0.0006,
+ "loss": 3.172982931137085,
+ "step": 1610
+ },
+ {
+ "epoch": 22.377292576419215,
+ "grad_norm": 0.023474128916859627,
+ "learning_rate": 0.0006,
+ "loss": 3.1941604614257812,
+ "step": 1611
+ },
+ {
+ "epoch": 22.39126637554585,
+ "grad_norm": 0.021899253129959106,
+ "learning_rate": 0.0006,
+ "loss": 3.164011240005493,
+ "step": 1612
+ },
+ {
+ "epoch": 22.40524017467249,
+ "grad_norm": 0.023463290184736252,
+ "learning_rate": 0.0006,
+ "loss": 3.181821823120117,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419213973799128,
+ "grad_norm": 0.022636929526925087,
+ "learning_rate": 0.0006,
+ "loss": 3.1651649475097656,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433187772925763,
+ "grad_norm": 0.022014712914824486,
+ "learning_rate": 0.0006,
+ "loss": 3.1782679557800293,
+ "step": 1615
+ },
+ {
+ "epoch": 22.4471615720524,
+ "grad_norm": 0.02165660634636879,
+ "learning_rate": 0.0006,
+ "loss": 3.188546657562256,
+ "step": 1616
+ },
+ {
+ "epoch": 22.46113537117904,
+ "grad_norm": 0.019901631399989128,
+ "learning_rate": 0.0006,
+ "loss": 3.1988091468811035,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475109170305675,
+ "grad_norm": 0.0209745354950428,
+ "learning_rate": 0.0006,
+ "loss": 3.19329833984375,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489082969432314,
+ "grad_norm": 0.021747298538684845,
+ "learning_rate": 0.0006,
+ "loss": 3.2036776542663574,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503056768558952,
+ "grad_norm": 0.019623076543211937,
+ "learning_rate": 0.0006,
+ "loss": 3.1681504249572754,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51703056768559,
+ "grad_norm": 0.020048566162586212,
+ "learning_rate": 0.0006,
+ "loss": 3.1954283714294434,
+ "step": 1621
+ },
+ {
+ "epoch": 22.531004366812226,
+ "grad_norm": 0.021175740286707878,
+ "learning_rate": 0.0006,
+ "loss": 3.189802646636963,
+ "step": 1622
+ },
+ {
+ "epoch": 22.544978165938865,
+ "grad_norm": 0.02099684439599514,
+ "learning_rate": 0.0006,
+ "loss": 3.2179861068725586,
+ "step": 1623
+ },
+ {
+ "epoch": 22.558951965065503,
+ "grad_norm": 0.020709119737148285,
+ "learning_rate": 0.0006,
+ "loss": 3.219874382019043,
+ "step": 1624
+ },
+ {
+ "epoch": 22.57292576419214,
+ "grad_norm": 0.02090434730052948,
+ "learning_rate": 0.0006,
+ "loss": 3.1864824295043945,
+ "step": 1625
+ },
+ {
+ "epoch": 22.586899563318777,
+ "grad_norm": 0.02059161476790905,
+ "learning_rate": 0.0006,
+ "loss": 3.2084670066833496,
+ "step": 1626
+ },
+ {
+ "epoch": 22.600873362445416,
+ "grad_norm": 0.02269027940928936,
+ "learning_rate": 0.0006,
+ "loss": 3.2111763954162598,
+ "step": 1627
+ },
+ {
+ "epoch": 22.61484716157205,
+ "grad_norm": 0.023081645369529724,
+ "learning_rate": 0.0006,
+ "loss": 3.1888933181762695,
+ "step": 1628
+ },
+ {
+ "epoch": 22.62882096069869,
+ "grad_norm": 0.021397452801465988,
+ "learning_rate": 0.0006,
+ "loss": 3.252058982849121,
+ "step": 1629
+ },
+ {
+ "epoch": 22.64279475982533,
+ "grad_norm": 0.021065089851617813,
+ "learning_rate": 0.0006,
+ "loss": 3.2006194591522217,
+ "step": 1630
+ },
+ {
+ "epoch": 22.656768558951963,
+ "grad_norm": 0.022490495815873146,
+ "learning_rate": 0.0006,
+ "loss": 3.229124069213867,
+ "step": 1631
+ },
+ {
+ "epoch": 22.670742358078602,
+ "grad_norm": 0.021817505359649658,
+ "learning_rate": 0.0006,
+ "loss": 3.194119691848755,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68471615720524,
+ "grad_norm": 0.021232811734080315,
+ "learning_rate": 0.0006,
+ "loss": 3.245544910430908,
+ "step": 1633
+ },
+ {
+ "epoch": 22.69868995633188,
+ "grad_norm": 0.023222077637910843,
+ "learning_rate": 0.0006,
+ "loss": 3.279717445373535,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712663755458514,
+ "grad_norm": 0.02224564366042614,
+ "learning_rate": 0.0006,
+ "loss": 3.2494592666625977,
+ "step": 1635
+ },
+ {
+ "epoch": 22.726637554585153,
+ "grad_norm": 0.021308856084942818,
+ "learning_rate": 0.0006,
+ "loss": 3.204773426055908,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74061135371179,
+ "grad_norm": 0.020439520478248596,
+ "learning_rate": 0.0006,
+ "loss": 3.205946683883667,
+ "step": 1637
+ },
+ {
+ "epoch": 22.754585152838427,
+ "grad_norm": 0.020782779902219772,
+ "learning_rate": 0.0006,
+ "loss": 3.239274501800537,
+ "step": 1638
+ },
+ {
+ "epoch": 22.768558951965066,
+ "grad_norm": 0.022062206640839577,
+ "learning_rate": 0.0006,
+ "loss": 3.2261786460876465,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782532751091704,
+ "grad_norm": 0.02113729901611805,
+ "learning_rate": 0.0006,
+ "loss": 3.2691404819488525,
+ "step": 1640
+ },
+ {
+ "epoch": 22.79650655021834,
+ "grad_norm": 0.021274438127875328,
+ "learning_rate": 0.0006,
+ "loss": 3.226609706878662,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810480349344978,
+ "grad_norm": 0.021622309461236,
+ "learning_rate": 0.0006,
+ "loss": 3.2209739685058594,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824454148471617,
+ "grad_norm": 0.0202135369181633,
+ "learning_rate": 0.0006,
+ "loss": 3.1961019039154053,
+ "step": 1643
+ },
+ {
+ "epoch": 22.83842794759825,
+ "grad_norm": 0.020688654854893684,
+ "learning_rate": 0.0006,
+ "loss": 3.2573604583740234,
+ "step": 1644
+ },
+ {
+ "epoch": 22.85240174672489,
+ "grad_norm": 0.021738961338996887,
+ "learning_rate": 0.0006,
+ "loss": 3.2542853355407715,
+ "step": 1645
+ },
+ {
+ "epoch": 22.86637554585153,
+ "grad_norm": 0.0219196118414402,
+ "learning_rate": 0.0006,
+ "loss": 3.252492904663086,
+ "step": 1646
+ },
+ {
+ "epoch": 22.880349344978168,
+ "grad_norm": 0.0218547023832798,
+ "learning_rate": 0.0006,
+ "loss": 3.2702088356018066,
+ "step": 1647
+ },
+ {
+ "epoch": 22.894323144104803,
+ "grad_norm": 0.021791797131299973,
+ "learning_rate": 0.0006,
+ "loss": 3.2743520736694336,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90829694323144,
+ "grad_norm": 0.02209450677037239,
+ "learning_rate": 0.0006,
+ "loss": 3.2271618843078613,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92227074235808,
+ "grad_norm": 0.021461671218276024,
+ "learning_rate": 0.0006,
+ "loss": 3.237719774246216,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936244541484715,
+ "grad_norm": 0.02116190828382969,
+ "learning_rate": 0.0006,
+ "loss": 3.220345973968506,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950218340611354,
+ "grad_norm": 0.021221552044153214,
+ "learning_rate": 0.0006,
+ "loss": 3.270355224609375,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964192139737992,
+ "grad_norm": 0.021926164627075195,
+ "learning_rate": 0.0006,
+ "loss": 3.251894474029541,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978165938864628,
+ "grad_norm": 0.02037062682211399,
+ "learning_rate": 0.0006,
+ "loss": 3.2335145473480225,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992139737991266,
+ "grad_norm": 0.021061841398477554,
+ "learning_rate": 0.0006,
+ "loss": 3.258089065551758,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.023548489436507225,
+ "learning_rate": 0.0006,
+ "loss": 3.211991548538208,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 4.036250591278076,
+ "eval_runtime": 50.0837,
+ "eval_samples_per_second": 48.758,
+ "eval_steps_per_second": 1.537,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397379912664,
+ "grad_norm": 0.028975404798984528,
+ "learning_rate": 0.0006,
+ "loss": 3.0739121437072754,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027947598253274,
+ "grad_norm": 0.045989733189344406,
+ "learning_rate": 0.0006,
+ "loss": 3.086352825164795,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041921397379912,
+ "grad_norm": 0.054499756544828415,
+ "learning_rate": 0.0006,
+ "loss": 3.0560779571533203,
+ "step": 1659
+ },
+ {
+ "epoch": 23.05589519650655,
+ "grad_norm": 0.05919722840189934,
+ "learning_rate": 0.0006,
+ "loss": 3.0908679962158203,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069868995633186,
+ "grad_norm": 0.05523031949996948,
+ "learning_rate": 0.0006,
+ "loss": 3.143130302429199,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083842794759825,
+ "grad_norm": 0.04946798086166382,
+ "learning_rate": 0.0006,
+ "loss": 3.0894484519958496,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097816593886463,
+ "grad_norm": 0.05096029117703438,
+ "learning_rate": 0.0006,
+ "loss": 3.1163463592529297,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111790393013102,
+ "grad_norm": 0.051004018634557724,
+ "learning_rate": 0.0006,
+ "loss": 3.094862937927246,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125764192139737,
+ "grad_norm": 0.04774824529886246,
+ "learning_rate": 0.0006,
+ "loss": 3.056874990463257,
+ "step": 1665
+ },
+ {
+ "epoch": 23.139737991266376,
+ "grad_norm": 0.04676121845841408,
+ "learning_rate": 0.0006,
+ "loss": 3.1135435104370117,
+ "step": 1666
+ },
+ {
+ "epoch": 23.153711790393015,
+ "grad_norm": 0.04623310640454292,
+ "learning_rate": 0.0006,
+ "loss": 3.0834898948669434,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16768558951965,
+ "grad_norm": 0.04654386639595032,
+ "learning_rate": 0.0006,
+ "loss": 3.1126627922058105,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18165938864629,
+ "grad_norm": 0.05056565999984741,
+ "learning_rate": 0.0006,
+ "loss": 3.1404361724853516,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195633187772927,
+ "grad_norm": 0.04947774112224579,
+ "learning_rate": 0.0006,
+ "loss": 3.0800836086273193,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209606986899562,
+ "grad_norm": 0.05254998058080673,
+ "learning_rate": 0.0006,
+ "loss": 3.1659531593322754,
+ "step": 1671
+ },
+ {
+ "epoch": 23.2235807860262,
+ "grad_norm": 0.05698013678193092,
+ "learning_rate": 0.0006,
+ "loss": 3.124387741088867,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23755458515284,
+ "grad_norm": 0.05885928124189377,
+ "learning_rate": 0.0006,
+ "loss": 3.1883671283721924,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251528384279474,
+ "grad_norm": 0.05118200555443764,
+ "learning_rate": 0.0006,
+ "loss": 3.1102395057678223,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265502183406113,
+ "grad_norm": 0.04967886209487915,
+ "learning_rate": 0.0006,
+ "loss": 3.124696731567383,
+ "step": 1675
+ },
+ {
+ "epoch": 23.27947598253275,
+ "grad_norm": 0.05399557575583458,
+ "learning_rate": 0.0006,
+ "loss": 3.152482032775879,
+ "step": 1676
+ },
+ {
+ "epoch": 23.29344978165939,
+ "grad_norm": 0.04705207049846649,
+ "learning_rate": 0.0006,
+ "loss": 3.1485037803649902,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307423580786025,
+ "grad_norm": 0.045942481607198715,
+ "learning_rate": 0.0006,
+ "loss": 3.149049997329712,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321397379912664,
+ "grad_norm": 0.04364842176437378,
+ "learning_rate": 0.0006,
+ "loss": 3.1753323078155518,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335371179039303,
+ "grad_norm": 0.04357321560382843,
+ "learning_rate": 0.0006,
+ "loss": 3.1530587673187256,
+ "step": 1680
+ },
+ {
+ "epoch": 23.349344978165938,
+ "grad_norm": 0.040299318730831146,
+ "learning_rate": 0.0006,
+ "loss": 3.1689562797546387,
+ "step": 1681
+ },
+ {
+ "epoch": 23.363318777292577,
+ "grad_norm": 0.033832576125860214,
+ "learning_rate": 0.0006,
+ "loss": 3.1539080142974854,
+ "step": 1682
+ },
+ {
+ "epoch": 23.377292576419215,
+ "grad_norm": 0.0333096869289875,
+ "learning_rate": 0.0006,
+ "loss": 3.136540412902832,
+ "step": 1683
+ },
+ {
+ "epoch": 23.39126637554585,
+ "grad_norm": 0.03185306116938591,
+ "learning_rate": 0.0006,
+ "loss": 3.161989450454712,
+ "step": 1684
+ },
+ {
+ "epoch": 23.40524017467249,
+ "grad_norm": 0.030003627762198448,
+ "learning_rate": 0.0006,
+ "loss": 3.1533138751983643,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419213973799128,
+ "grad_norm": 0.028618820011615753,
+ "learning_rate": 0.0006,
+ "loss": 3.185976028442383,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433187772925763,
+ "grad_norm": 0.02691742591559887,
+ "learning_rate": 0.0006,
+ "loss": 3.153627872467041,
+ "step": 1687
+ },
+ {
+ "epoch": 23.4471615720524,
+ "grad_norm": 0.026324588805437088,
+ "learning_rate": 0.0006,
+ "loss": 3.1644554138183594,
+ "step": 1688
+ },
+ {
+ "epoch": 23.46113537117904,
+ "grad_norm": 0.025900371372699738,
+ "learning_rate": 0.0006,
+ "loss": 3.1649692058563232,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475109170305675,
+ "grad_norm": 0.0243719182908535,
+ "learning_rate": 0.0006,
+ "loss": 3.182521343231201,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489082969432314,
+ "grad_norm": 0.022730499505996704,
+ "learning_rate": 0.0006,
+ "loss": 3.1854891777038574,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503056768558952,
+ "grad_norm": 0.02335519716143608,
+ "learning_rate": 0.0006,
+ "loss": 3.151111364364624,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51703056768559,
+ "grad_norm": 0.022645823657512665,
+ "learning_rate": 0.0006,
+ "loss": 3.181077241897583,
+ "step": 1693
+ },
+ {
+ "epoch": 23.531004366812226,
+ "grad_norm": 0.022274266928434372,
+ "learning_rate": 0.0006,
+ "loss": 3.155630111694336,
+ "step": 1694
+ },
+ {
+ "epoch": 23.544978165938865,
+ "grad_norm": 0.02225971594452858,
+ "learning_rate": 0.0006,
+ "loss": 3.20708966255188,
+ "step": 1695
+ },
+ {
+ "epoch": 23.558951965065503,
+ "grad_norm": 0.022145207971334457,
+ "learning_rate": 0.0006,
+ "loss": 3.1944689750671387,
+ "step": 1696
+ },
+ {
+ "epoch": 23.57292576419214,
+ "grad_norm": 0.02143380232155323,
+ "learning_rate": 0.0006,
+ "loss": 3.1928765773773193,
+ "step": 1697
+ },
+ {
+ "epoch": 23.586899563318777,
+ "grad_norm": 0.021410757675766945,
+ "learning_rate": 0.0006,
+ "loss": 3.141218900680542,
+ "step": 1698
+ },
+ {
+ "epoch": 23.600873362445416,
+ "grad_norm": 0.020946916192770004,
+ "learning_rate": 0.0006,
+ "loss": 3.1523003578186035,
+ "step": 1699
+ },
+ {
+ "epoch": 23.61484716157205,
+ "grad_norm": 0.02247041091322899,
+ "learning_rate": 0.0006,
+ "loss": 3.197848320007324,
+ "step": 1700
+ },
+ {
+ "epoch": 23.62882096069869,
+ "grad_norm": 0.02199610322713852,
+ "learning_rate": 0.0006,
+ "loss": 3.146364212036133,
+ "step": 1701
+ },
+ {
+ "epoch": 23.64279475982533,
+ "grad_norm": 0.021192600950598717,
+ "learning_rate": 0.0006,
+ "loss": 3.205726146697998,
+ "step": 1702
+ },
+ {
+ "epoch": 23.656768558951963,
+ "grad_norm": 0.021812601014971733,
+ "learning_rate": 0.0006,
+ "loss": 3.1663761138916016,
+ "step": 1703
+ },
+ {
+ "epoch": 23.670742358078602,
+ "grad_norm": 0.021653084084391594,
+ "learning_rate": 0.0006,
+ "loss": 3.186915397644043,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68471615720524,
+ "grad_norm": 0.02271277830004692,
+ "learning_rate": 0.0006,
+ "loss": 3.1901726722717285,
+ "step": 1705
+ },
+ {
+ "epoch": 23.69868995633188,
+ "grad_norm": 0.022516358643770218,
+ "learning_rate": 0.0006,
+ "loss": 3.1948347091674805,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712663755458514,
+ "grad_norm": 0.021564161404967308,
+ "learning_rate": 0.0006,
+ "loss": 3.18239688873291,
+ "step": 1707
+ },
+ {
+ "epoch": 23.726637554585153,
+ "grad_norm": 0.02193053439259529,
+ "learning_rate": 0.0006,
+ "loss": 3.167478561401367,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74061135371179,
+ "grad_norm": 0.020590802654623985,
+ "learning_rate": 0.0006,
+ "loss": 3.1782495975494385,
+ "step": 1709
+ },
+ {
+ "epoch": 23.754585152838427,
+ "grad_norm": 0.02001943439245224,
+ "learning_rate": 0.0006,
+ "loss": 3.140777111053467,
+ "step": 1710
+ },
+ {
+ "epoch": 23.768558951965066,
+ "grad_norm": 0.02146220952272415,
+ "learning_rate": 0.0006,
+ "loss": 3.196669578552246,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782532751091704,
+ "grad_norm": 0.02064087800681591,
+ "learning_rate": 0.0006,
+ "loss": 3.1968512535095215,
+ "step": 1712
+ },
+ {
+ "epoch": 23.79650655021834,
+ "grad_norm": 0.020168280228972435,
+ "learning_rate": 0.0006,
+ "loss": 3.185011625289917,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810480349344978,
+ "grad_norm": 0.021309854462742805,
+ "learning_rate": 0.0006,
+ "loss": 3.223778247833252,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824454148471617,
+ "grad_norm": 0.021627578884363174,
+ "learning_rate": 0.0006,
+ "loss": 3.2337048053741455,
+ "step": 1715
+ },
+ {
+ "epoch": 23.83842794759825,
+ "grad_norm": 0.022393809631466866,
+ "learning_rate": 0.0006,
+ "loss": 3.1815061569213867,
+ "step": 1716
+ },
+ {
+ "epoch": 23.85240174672489,
+ "grad_norm": 0.021653614938259125,
+ "learning_rate": 0.0006,
+ "loss": 3.2199814319610596,
+ "step": 1717
+ },
+ {
+ "epoch": 23.86637554585153,
+ "grad_norm": 0.021053675562143326,
+ "learning_rate": 0.0006,
+ "loss": 3.2100138664245605,
+ "step": 1718
+ },
+ {
+ "epoch": 23.880349344978168,
+ "grad_norm": 0.02070586569607258,
+ "learning_rate": 0.0006,
+ "loss": 3.169224262237549,
+ "step": 1719
+ },
+ {
+ "epoch": 23.894323144104803,
+ "grad_norm": 0.02080441080033779,
+ "learning_rate": 0.0006,
+ "loss": 3.2199649810791016,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90829694323144,
+ "grad_norm": 0.022092828527092934,
+ "learning_rate": 0.0006,
+ "loss": 3.2059383392333984,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92227074235808,
+ "grad_norm": 0.02031811885535717,
+ "learning_rate": 0.0006,
+ "loss": 3.181447982788086,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936244541484715,
+ "grad_norm": 0.020453795790672302,
+ "learning_rate": 0.0006,
+ "loss": 3.2039992809295654,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950218340611354,
+ "grad_norm": 0.02050524763762951,
+ "learning_rate": 0.0006,
+ "loss": 3.2518773078918457,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964192139737992,
+ "grad_norm": 0.020392276346683502,
+ "learning_rate": 0.0006,
+ "loss": 3.21860408782959,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978165938864628,
+ "grad_norm": 0.02083909884095192,
+ "learning_rate": 0.0006,
+ "loss": 3.2072129249572754,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992139737991266,
+ "grad_norm": 0.020636966452002525,
+ "learning_rate": 0.0006,
+ "loss": 3.1956424713134766,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.02314000204205513,
+ "learning_rate": 0.0006,
+ "loss": 3.1868958473205566,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 4.061861038208008,
+ "eval_runtime": 50.2887,
+ "eval_samples_per_second": 48.56,
+ "eval_steps_per_second": 1.531,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397379912664,
+ "grad_norm": 0.026494357734918594,
+ "learning_rate": 0.0006,
+ "loss": 3.0170693397521973,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027947598253274,
+ "grad_norm": 0.03457538038492203,
+ "learning_rate": 0.0006,
+ "loss": 3.038365364074707,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041921397379912,
+ "grad_norm": 0.0362137034535408,
+ "learning_rate": 0.0006,
+ "loss": 3.042156219482422,
+ "step": 1731
+ },
+ {
+ "epoch": 24.05589519650655,
+ "grad_norm": 0.0380006767809391,
+ "learning_rate": 0.0006,
+ "loss": 2.9978504180908203,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069868995633186,
+ "grad_norm": 0.039754100143909454,
+ "learning_rate": 0.0006,
+ "loss": 3.0558762550354004,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083842794759825,
+ "grad_norm": 0.04269031062722206,
+ "learning_rate": 0.0006,
+ "loss": 3.0549988746643066,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097816593886463,
+ "grad_norm": 0.04441278055310249,
+ "learning_rate": 0.0006,
+ "loss": 3.0869946479797363,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111790393013102,
+ "grad_norm": 0.040790386497974396,
+ "learning_rate": 0.0006,
+ "loss": 3.0361521244049072,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125764192139737,
+ "grad_norm": 0.03730896860361099,
+ "learning_rate": 0.0006,
+ "loss": 3.046663761138916,
+ "step": 1737
+ },
+ {
+ "epoch": 24.139737991266376,
+ "grad_norm": 0.03982469439506531,
+ "learning_rate": 0.0006,
+ "loss": 3.0173420906066895,
+ "step": 1738
+ },
+ {
+ "epoch": 24.153711790393015,
+ "grad_norm": 0.039260219782590866,
+ "learning_rate": 0.0006,
+ "loss": 3.0473644733428955,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16768558951965,
+ "grad_norm": 0.03755051642656326,
+ "learning_rate": 0.0006,
+ "loss": 3.0663342475891113,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18165938864629,
+ "grad_norm": 0.03793613240122795,
+ "learning_rate": 0.0006,
+ "loss": 3.0489985942840576,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195633187772927,
+ "grad_norm": 0.04197019711136818,
+ "learning_rate": 0.0006,
+ "loss": 3.097670555114746,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209606986899562,
+ "grad_norm": 0.0469660609960556,
+ "learning_rate": 0.0006,
+ "loss": 3.1100730895996094,
+ "step": 1743
+ },
+ {
+ "epoch": 24.2235807860262,
+ "grad_norm": 0.04978584498167038,
+ "learning_rate": 0.0006,
+ "loss": 3.079113006591797,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23755458515284,
+ "grad_norm": 0.04865782707929611,
+ "learning_rate": 0.0006,
+ "loss": 3.0800795555114746,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251528384279474,
+ "grad_norm": 0.04515399411320686,
+ "learning_rate": 0.0006,
+ "loss": 3.0951786041259766,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265502183406113,
+ "grad_norm": 0.05194929614663124,
+ "learning_rate": 0.0006,
+ "loss": 3.0923233032226562,
+ "step": 1747
+ },
+ {
+ "epoch": 24.27947598253275,
+ "grad_norm": 0.05268502235412598,
+ "learning_rate": 0.0006,
+ "loss": 3.0762367248535156,
+ "step": 1748
+ },
+ {
+ "epoch": 24.29344978165939,
+ "grad_norm": 0.04807785153388977,
+ "learning_rate": 0.0006,
+ "loss": 3.0600905418395996,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307423580786025,
+ "grad_norm": 0.049069009721279144,
+ "learning_rate": 0.0006,
+ "loss": 3.119414806365967,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321397379912664,
+ "grad_norm": 0.040332380682229996,
+ "learning_rate": 0.0006,
+ "loss": 3.101262092590332,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335371179039303,
+ "grad_norm": 0.037106387317180634,
+ "learning_rate": 0.0006,
+ "loss": 3.111459732055664,
+ "step": 1752
+ },
+ {
+ "epoch": 24.349344978165938,
+ "grad_norm": 0.04089464247226715,
+ "learning_rate": 0.0006,
+ "loss": 3.078132152557373,
+ "step": 1753
+ },
+ {
+ "epoch": 24.363318777292577,
+ "grad_norm": 0.042072005569934845,
+ "learning_rate": 0.0006,
+ "loss": 3.098802089691162,
+ "step": 1754
+ },
+ {
+ "epoch": 24.377292576419215,
+ "grad_norm": 0.03779057413339615,
+ "learning_rate": 0.0006,
+ "loss": 3.137354850769043,
+ "step": 1755
+ },
+ {
+ "epoch": 24.39126637554585,
+ "grad_norm": 0.037271898239851,
+ "learning_rate": 0.0006,
+ "loss": 3.1019601821899414,
+ "step": 1756
+ },
+ {
+ "epoch": 24.40524017467249,
+ "grad_norm": 0.036236681044101715,
+ "learning_rate": 0.0006,
+ "loss": 3.073394775390625,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419213973799128,
+ "grad_norm": 0.03288481757044792,
+ "learning_rate": 0.0006,
+ "loss": 3.085905075073242,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433187772925763,
+ "grad_norm": 0.030534565448760986,
+ "learning_rate": 0.0006,
+ "loss": 3.1430633068084717,
+ "step": 1759
+ },
+ {
+ "epoch": 24.4471615720524,
+ "grad_norm": 0.030080555006861687,
+ "learning_rate": 0.0006,
+ "loss": 3.084897994995117,
+ "step": 1760
+ },
+ {
+ "epoch": 24.46113537117904,
+ "grad_norm": 0.028177041560411453,
+ "learning_rate": 0.0006,
+ "loss": 3.0981075763702393,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475109170305675,
+ "grad_norm": 0.02868589572608471,
+ "learning_rate": 0.0006,
+ "loss": 3.113759994506836,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489082969432314,
+ "grad_norm": 0.02866324409842491,
+ "learning_rate": 0.0006,
+ "loss": 3.146918773651123,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503056768558952,
+ "grad_norm": 0.032893482595682144,
+ "learning_rate": 0.0006,
+ "loss": 3.16141414642334,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51703056768559,
+ "grad_norm": 0.03186864033341408,
+ "learning_rate": 0.0006,
+ "loss": 3.13303804397583,
+ "step": 1765
+ },
+ {
+ "epoch": 24.531004366812226,
+ "grad_norm": 0.0323340930044651,
+ "learning_rate": 0.0006,
+ "loss": 3.1308135986328125,
+ "step": 1766
+ },
+ {
+ "epoch": 24.544978165938865,
+ "grad_norm": 0.03451741859316826,
+ "learning_rate": 0.0006,
+ "loss": 3.13972806930542,
+ "step": 1767
+ },
+ {
+ "epoch": 24.558951965065503,
+ "grad_norm": 0.03144263103604317,
+ "learning_rate": 0.0006,
+ "loss": 3.1428070068359375,
+ "step": 1768
+ },
+ {
+ "epoch": 24.57292576419214,
+ "grad_norm": 0.02920706383883953,
+ "learning_rate": 0.0006,
+ "loss": 3.1201605796813965,
+ "step": 1769
+ },
+ {
+ "epoch": 24.586899563318777,
+ "grad_norm": 0.028445811942219734,
+ "learning_rate": 0.0006,
+ "loss": 3.144218683242798,
+ "step": 1770
+ },
+ {
+ "epoch": 24.600873362445416,
+ "grad_norm": 0.02665509283542633,
+ "learning_rate": 0.0006,
+ "loss": 3.130509853363037,
+ "step": 1771
+ },
+ {
+ "epoch": 24.61484716157205,
+ "grad_norm": 0.02607566863298416,
+ "learning_rate": 0.0006,
+ "loss": 3.1229686737060547,
+ "step": 1772
+ },
+ {
+ "epoch": 24.62882096069869,
+ "grad_norm": 0.02450554072856903,
+ "learning_rate": 0.0006,
+ "loss": 3.1412901878356934,
+ "step": 1773
+ },
+ {
+ "epoch": 24.64279475982533,
+ "grad_norm": 0.024406673386693,
+ "learning_rate": 0.0006,
+ "loss": 3.1482839584350586,
+ "step": 1774
+ },
+ {
+ "epoch": 24.656768558951963,
+ "grad_norm": 0.02445918507874012,
+ "learning_rate": 0.0006,
+ "loss": 3.1525535583496094,
+ "step": 1775
+ },
+ {
+ "epoch": 24.670742358078602,
+ "grad_norm": 0.024329137057065964,
+ "learning_rate": 0.0006,
+ "loss": 3.1237733364105225,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68471615720524,
+ "grad_norm": 0.026551753282546997,
+ "learning_rate": 0.0006,
+ "loss": 3.168206214904785,
+ "step": 1777
+ },
+ {
+ "epoch": 24.69868995633188,
+ "grad_norm": 0.02526521123945713,
+ "learning_rate": 0.0006,
+ "loss": 3.145684242248535,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712663755458514,
+ "grad_norm": 0.022739525884389877,
+ "learning_rate": 0.0006,
+ "loss": 3.109616756439209,
+ "step": 1779
+ },
+ {
+ "epoch": 24.726637554585153,
+ "grad_norm": 0.02353929914534092,
+ "learning_rate": 0.0006,
+ "loss": 3.1133408546447754,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74061135371179,
+ "grad_norm": 0.024195613339543343,
+ "learning_rate": 0.0006,
+ "loss": 3.1797852516174316,
+ "step": 1781
+ },
+ {
+ "epoch": 24.754585152838427,
+ "grad_norm": 0.023433320224285126,
+ "learning_rate": 0.0006,
+ "loss": 3.1500236988067627,
+ "step": 1782
+ },
+ {
+ "epoch": 24.768558951965066,
+ "grad_norm": 0.023815682157874107,
+ "learning_rate": 0.0006,
+ "loss": 3.1468753814697266,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782532751091704,
+ "grad_norm": 0.023465458303689957,
+ "learning_rate": 0.0006,
+ "loss": 3.1285457611083984,
+ "step": 1784
+ },
+ {
+ "epoch": 24.79650655021834,
+ "grad_norm": 0.023044317960739136,
+ "learning_rate": 0.0006,
+ "loss": 3.152935028076172,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810480349344978,
+ "grad_norm": 0.02268923819065094,
+ "learning_rate": 0.0006,
+ "loss": 3.149824619293213,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824454148471617,
+ "grad_norm": 0.02200215309858322,
+ "learning_rate": 0.0006,
+ "loss": 3.136305570602417,
+ "step": 1787
+ },
+ {
+ "epoch": 24.83842794759825,
+ "grad_norm": 0.021768024191260338,
+ "learning_rate": 0.0006,
+ "loss": 3.1580021381378174,
+ "step": 1788
+ },
+ {
+ "epoch": 24.85240174672489,
+ "grad_norm": 0.02197638899087906,
+ "learning_rate": 0.0006,
+ "loss": 3.167720079421997,
+ "step": 1789
+ },
+ {
+ "epoch": 24.86637554585153,
+ "grad_norm": 0.02179424650967121,
+ "learning_rate": 0.0006,
+ "loss": 3.1844677925109863,
+ "step": 1790
+ },
+ {
+ "epoch": 24.880349344978168,
+ "grad_norm": 0.02222774736583233,
+ "learning_rate": 0.0006,
+ "loss": 3.1534781455993652,
+ "step": 1791
+ },
+ {
+ "epoch": 24.894323144104803,
+ "grad_norm": 0.0211419016122818,
+ "learning_rate": 0.0006,
+ "loss": 3.1624507904052734,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90829694323144,
+ "grad_norm": 0.021679047495126724,
+ "learning_rate": 0.0006,
+ "loss": 3.1692471504211426,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92227074235808,
+ "grad_norm": 0.02098955772817135,
+ "learning_rate": 0.0006,
+ "loss": 3.1197893619537354,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936244541484715,
+ "grad_norm": 0.02041255682706833,
+ "learning_rate": 0.0006,
+ "loss": 3.1489920616149902,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950218340611354,
+ "grad_norm": 0.021229229867458344,
+ "learning_rate": 0.0006,
+ "loss": 3.181349277496338,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964192139737992,
+ "grad_norm": 0.021164825186133385,
+ "learning_rate": 0.0006,
+ "loss": 3.174917221069336,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978165938864628,
+ "grad_norm": 0.021351559087634087,
+ "learning_rate": 0.0006,
+ "loss": 3.1783559322357178,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992139737991266,
+ "grad_norm": 0.020969994366168976,
+ "learning_rate": 0.0006,
+ "loss": 3.193674087524414,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.02423921413719654,
+ "learning_rate": 0.0006,
+ "loss": 3.200575590133667,
+ "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-constantlr/checkpoint-1800/training_args.bin b/runs/baseline-constantlr/checkpoint-1800/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..902eed46d9e02245694ec118af9efec9cd359ff6
--- /dev/null
+++ b/runs/baseline-constantlr/checkpoint-1800/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f8a755363e28cfde742d3e37ba600ce14b5716157c9823f5cadd1b47464c7fc2
+size 5201
diff --git a/runs/baseline-constantlr/checkpoint-2160/chat_template.jinja b/runs/baseline-constantlr/checkpoint-2160/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-2160/config.json b/runs/baseline-constantlr/checkpoint-2160/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-2160/generation_config.json b/runs/baseline-constantlr/checkpoint-2160/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-2160/model.safetensors b/runs/baseline-constantlr/checkpoint-2160/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..70ef3e7e69ebc69736cd85fb156a6e287be42629
--- /dev/null
+++ b/runs/baseline-constantlr/checkpoint-2160/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:133fa77284f7ebc5baa4d3b16dfbf3b61dc52e022c8d8f8d1b9a4e198f01d8c9
+size 583356232
diff --git a/runs/baseline-constantlr/checkpoint-2160/optimizer.pt b/runs/baseline-constantlr/checkpoint-2160/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..e131881b024625509ffdbe9066dde3024a303578
--- /dev/null
+++ b/runs/baseline-constantlr/checkpoint-2160/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:282e451a30a7191cbb374f95e8ee675a5db3a96782c978b7db8c520a58577262
+size 1166825803
diff --git a/runs/baseline-constantlr/checkpoint-2160/rng_state_0.pth b/runs/baseline-constantlr/checkpoint-2160/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..86ca1aad69953afb19f9f8da4c01764c2f44d22b
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-2160/rng_state_1.pth b/runs/baseline-constantlr/checkpoint-2160/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..3031af55ab1520df411513147e482ece04c4d4f6
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-2160/scheduler.pt b/runs/baseline-constantlr/checkpoint-2160/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..8325c6270f96806f3e9a2340d4a0f646dd8c8fab
--- /dev/null
+++ b/runs/baseline-constantlr/checkpoint-2160/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:51f88a65e15d81bcfe164129806a077d21365a8588b19646db8b726ccd091288
+size 1465
diff --git a/runs/baseline-constantlr/checkpoint-2160/tokenizer.json b/runs/baseline-constantlr/checkpoint-2160/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-2160/tokenizer_config.json b/runs/baseline-constantlr/checkpoint-2160/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-2160/trainer_state.json b/runs/baseline-constantlr/checkpoint-2160/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..68ef70a888690f0af3b37baa6734c8c6435d8299
--- /dev/null
+++ b/runs/baseline-constantlr/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.13303375244140625,
+ "learning_rate": 0.0,
+ "loss": 12.018817901611328,
+ "step": 1
+ },
+ {
+ "epoch": 0.02794759825327511,
+ "grad_norm": 0.13390742242336273,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.021883964538574,
+ "step": 2
+ },
+ {
+ "epoch": 0.04192139737991266,
+ "grad_norm": 0.13340722024440765,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.986108779907227,
+ "step": 3
+ },
+ {
+ "epoch": 0.05589519650655022,
+ "grad_norm": 0.13777263462543488,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.926837921142578,
+ "step": 4
+ },
+ {
+ "epoch": 0.06986899563318777,
+ "grad_norm": 0.14294272661209106,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.845431327819824,
+ "step": 5
+ },
+ {
+ "epoch": 0.08384279475982533,
+ "grad_norm": 0.15314988791942596,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.736921310424805,
+ "step": 6
+ },
+ {
+ "epoch": 0.09781659388646288,
+ "grad_norm": 0.14554648101329803,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.615877151489258,
+ "step": 7
+ },
+ {
+ "epoch": 0.11179039301310044,
+ "grad_norm": 0.1252845823764801,
+ "learning_rate": 4.2e-05,
+ "loss": 11.501619338989258,
+ "step": 8
+ },
+ {
+ "epoch": 0.125764192139738,
+ "grad_norm": 0.11403433233499527,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.396705627441406,
+ "step": 9
+ },
+ {
+ "epoch": 0.13973799126637554,
+ "grad_norm": 0.10996542125940323,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.31666374206543,
+ "step": 10
+ },
+ {
+ "epoch": 0.1537117903930131,
+ "grad_norm": 0.10755623877048492,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.252704620361328,
+ "step": 11
+ },
+ {
+ "epoch": 0.16768558951965065,
+ "grad_norm": 0.10700664669275284,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.194284439086914,
+ "step": 12
+ },
+ {
+ "epoch": 0.18165938864628822,
+ "grad_norm": 0.10606497526168823,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.14437198638916,
+ "step": 13
+ },
+ {
+ "epoch": 0.19563318777292577,
+ "grad_norm": 0.10551681369543076,
+ "learning_rate": 7.8e-05,
+ "loss": 11.096858024597168,
+ "step": 14
+ },
+ {
+ "epoch": 0.2096069868995633,
+ "grad_norm": 0.10573510080575943,
+ "learning_rate": 8.4e-05,
+ "loss": 11.047990798950195,
+ "step": 15
+ },
+ {
+ "epoch": 0.22358078602620088,
+ "grad_norm": 0.10572560131549835,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 11.000219345092773,
+ "step": 16
+ },
+ {
+ "epoch": 0.23755458515283842,
+ "grad_norm": 0.10625051707029343,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.93830680847168,
+ "step": 17
+ },
+ {
+ "epoch": 0.251528384279476,
+ "grad_norm": 0.10565247386693954,
+ "learning_rate": 0.000102,
+ "loss": 10.88237190246582,
+ "step": 18
+ },
+ {
+ "epoch": 0.26550218340611353,
+ "grad_norm": 0.10570791363716125,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.81382942199707,
+ "step": 19
+ },
+ {
+ "epoch": 0.2794759825327511,
+ "grad_norm": 0.10585319995880127,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.742864608764648,
+ "step": 20
+ },
+ {
+ "epoch": 0.2934497816593886,
+ "grad_norm": 0.10421311110258102,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.675719261169434,
+ "step": 21
+ },
+ {
+ "epoch": 0.3074235807860262,
+ "grad_norm": 0.10436785966157913,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.589548110961914,
+ "step": 22
+ },
+ {
+ "epoch": 0.32139737991266376,
+ "grad_norm": 0.10463878512382507,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.504261016845703,
+ "step": 23
+ },
+ {
+ "epoch": 0.3353711790393013,
+ "grad_norm": 0.104142926633358,
+ "learning_rate": 0.000138,
+ "loss": 10.41696548461914,
+ "step": 24
+ },
+ {
+ "epoch": 0.34934497816593885,
+ "grad_norm": 0.1037549152970314,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.327609062194824,
+ "step": 25
+ },
+ {
+ "epoch": 0.36331877729257644,
+ "grad_norm": 0.10464346408843994,
+ "learning_rate": 0.00015,
+ "loss": 10.226776123046875,
+ "step": 26
+ },
+ {
+ "epoch": 0.377292576419214,
+ "grad_norm": 0.10289040952920914,
+ "learning_rate": 0.000156,
+ "loss": 10.142925262451172,
+ "step": 27
+ },
+ {
+ "epoch": 0.39126637554585153,
+ "grad_norm": 0.10476566106081009,
+ "learning_rate": 0.000162,
+ "loss": 10.032388687133789,
+ "step": 28
+ },
+ {
+ "epoch": 0.4052401746724891,
+ "grad_norm": 0.10285190492868423,
+ "learning_rate": 0.000168,
+ "loss": 9.944738388061523,
+ "step": 29
+ },
+ {
+ "epoch": 0.4192139737991266,
+ "grad_norm": 0.10330761969089508,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.832511901855469,
+ "step": 30
+ },
+ {
+ "epoch": 0.4331877729257642,
+ "grad_norm": 0.10190961509943008,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.742905616760254,
+ "step": 31
+ },
+ {
+ "epoch": 0.44716157205240176,
+ "grad_norm": 0.10172155499458313,
+ "learning_rate": 0.000186,
+ "loss": 9.634834289550781,
+ "step": 32
+ },
+ {
+ "epoch": 0.4611353711790393,
+ "grad_norm": 0.10067209601402283,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.522916793823242,
+ "step": 33
+ },
+ {
+ "epoch": 0.47510917030567684,
+ "grad_norm": 0.10058761388063431,
+ "learning_rate": 0.000198,
+ "loss": 9.416927337646484,
+ "step": 34
+ },
+ {
+ "epoch": 0.4890829694323144,
+ "grad_norm": 0.0981091558933258,
+ "learning_rate": 0.000204,
+ "loss": 9.32928466796875,
+ "step": 35
+ },
+ {
+ "epoch": 0.503056768558952,
+ "grad_norm": 0.09739134460687637,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.215356826782227,
+ "step": 36
+ },
+ {
+ "epoch": 0.5170305676855895,
+ "grad_norm": 0.0969916582107544,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.101107597351074,
+ "step": 37
+ },
+ {
+ "epoch": 0.5310043668122271,
+ "grad_norm": 0.0959910973906517,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.998035430908203,
+ "step": 38
+ },
+ {
+ "epoch": 0.5449781659388646,
+ "grad_norm": 0.09558682143688202,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.89165210723877,
+ "step": 39
+ },
+ {
+ "epoch": 0.5589519650655022,
+ "grad_norm": 0.09313725680112839,
+ "learning_rate": 0.000234,
+ "loss": 8.806523323059082,
+ "step": 40
+ },
+ {
+ "epoch": 0.5729257641921397,
+ "grad_norm": 0.09075582772493362,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.71815299987793,
+ "step": 41
+ },
+ {
+ "epoch": 0.5868995633187772,
+ "grad_norm": 0.08912578970193863,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.617330551147461,
+ "step": 42
+ },
+ {
+ "epoch": 0.6008733624454149,
+ "grad_norm": 0.08745060116052628,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.511157989501953,
+ "step": 43
+ },
+ {
+ "epoch": 0.6148471615720524,
+ "grad_norm": 0.08254463970661163,
+ "learning_rate": 0.000258,
+ "loss": 8.458954811096191,
+ "step": 44
+ },
+ {
+ "epoch": 0.62882096069869,
+ "grad_norm": 0.0795406699180603,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.37498664855957,
+ "step": 45
+ },
+ {
+ "epoch": 0.6427947598253275,
+ "grad_norm": 0.07730695605278015,
+ "learning_rate": 0.00027,
+ "loss": 8.293156623840332,
+ "step": 46
+ },
+ {
+ "epoch": 0.6567685589519651,
+ "grad_norm": 0.07404499500989914,
+ "learning_rate": 0.000276,
+ "loss": 8.200754165649414,
+ "step": 47
+ },
+ {
+ "epoch": 0.6707423580786026,
+ "grad_norm": 0.07091354578733444,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.114692687988281,
+ "step": 48
+ },
+ {
+ "epoch": 0.6847161572052402,
+ "grad_norm": 0.06816772371530533,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.060348510742188,
+ "step": 49
+ },
+ {
+ "epoch": 0.6986899563318777,
+ "grad_norm": 0.0605427622795105,
+ "learning_rate": 0.000294,
+ "loss": 7.991006851196289,
+ "step": 50
+ },
+ {
+ "epoch": 0.7126637554585152,
+ "grad_norm": 0.05635255202651024,
+ "learning_rate": 0.0003,
+ "loss": 7.945850372314453,
+ "step": 51
+ },
+ {
+ "epoch": 0.7266375545851529,
+ "grad_norm": 0.05419522523880005,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.895726203918457,
+ "step": 52
+ },
+ {
+ "epoch": 0.7406113537117904,
+ "grad_norm": 0.06724901497364044,
+ "learning_rate": 0.000312,
+ "loss": 7.839101791381836,
+ "step": 53
+ },
+ {
+ "epoch": 0.754585152838428,
+ "grad_norm": 0.12858672440052032,
+ "learning_rate": 0.000318,
+ "loss": 7.840076446533203,
+ "step": 54
+ },
+ {
+ "epoch": 0.7685589519650655,
+ "grad_norm": 0.05087178573012352,
+ "learning_rate": 0.000324,
+ "loss": 7.77433967590332,
+ "step": 55
+ },
+ {
+ "epoch": 0.7825327510917031,
+ "grad_norm": 0.0458969883620739,
+ "learning_rate": 0.00033,
+ "loss": 7.747459411621094,
+ "step": 56
+ },
+ {
+ "epoch": 0.7965065502183406,
+ "grad_norm": 0.03214738890528679,
+ "learning_rate": 0.000336,
+ "loss": 7.735766410827637,
+ "step": 57
+ },
+ {
+ "epoch": 0.8104803493449781,
+ "grad_norm": 0.022700699046254158,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.716371059417725,
+ "step": 58
+ },
+ {
+ "epoch": 0.8244541484716157,
+ "grad_norm": 0.02415020391345024,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.700209140777588,
+ "step": 59
+ },
+ {
+ "epoch": 0.8384279475982532,
+ "grad_norm": 0.021143650636076927,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.687976360321045,
+ "step": 60
+ },
+ {
+ "epoch": 0.8524017467248908,
+ "grad_norm": 0.019051192328333855,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.640708923339844,
+ "step": 61
+ },
+ {
+ "epoch": 0.8663755458515284,
+ "grad_norm": 0.02110682614147663,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.6529130935668945,
+ "step": 62
+ },
+ {
+ "epoch": 0.880349344978166,
+ "grad_norm": 0.024010686203837395,
+ "learning_rate": 0.000372,
+ "loss": 7.645641326904297,
+ "step": 63
+ },
+ {
+ "epoch": 0.8943231441048035,
+ "grad_norm": 0.02591090090572834,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.626849174499512,
+ "step": 64
+ },
+ {
+ "epoch": 0.9082969432314411,
+ "grad_norm": 0.02841993235051632,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.633922576904297,
+ "step": 65
+ },
+ {
+ "epoch": 0.9222707423580786,
+ "grad_norm": 0.02565363608300686,
+ "learning_rate": 0.00039,
+ "loss": 7.6236772537231445,
+ "step": 66
+ },
+ {
+ "epoch": 0.9362445414847161,
+ "grad_norm": 0.020100994035601616,
+ "learning_rate": 0.000396,
+ "loss": 7.602252006530762,
+ "step": 67
+ },
+ {
+ "epoch": 0.9502183406113537,
+ "grad_norm": 0.017415935173630714,
+ "learning_rate": 0.000402,
+ "loss": 7.574195861816406,
+ "step": 68
+ },
+ {
+ "epoch": 0.9641921397379912,
+ "grad_norm": 0.01630476303398609,
+ "learning_rate": 0.000408,
+ "loss": 7.578503131866455,
+ "step": 69
+ },
+ {
+ "epoch": 0.9781659388646288,
+ "grad_norm": 0.015402277931571007,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.54685115814209,
+ "step": 70
+ },
+ {
+ "epoch": 0.9921397379912664,
+ "grad_norm": 0.01438985951244831,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.546932220458984,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.016883183270692825,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.555042266845703,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.549549579620361,
+ "eval_runtime": 54.3422,
+ "eval_samples_per_second": 44.937,
+ "eval_steps_per_second": 1.417,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139737991266375,
+ "grad_norm": 0.01215015072375536,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.534733295440674,
+ "step": 73
+ },
+ {
+ "epoch": 1.027947598253275,
+ "grad_norm": 0.01328246109187603,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.543649196624756,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419213973799126,
+ "grad_norm": 0.012859524227678776,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.50216817855835,
+ "step": 75
+ },
+ {
+ "epoch": 1.0558951965065502,
+ "grad_norm": 0.011157970875501633,
+ "learning_rate": 0.00045,
+ "loss": 7.508391857147217,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698689956331877,
+ "grad_norm": 0.012834188528358936,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.4759087562561035,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838427947598253,
+ "grad_norm": 0.013627874664962292,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.45142936706543,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978165938864628,
+ "grad_norm": 0.01641070283949375,
+ "learning_rate": 0.000468,
+ "loss": 7.492819786071777,
+ "step": 79
+ },
+ {
+ "epoch": 1.1117903930131003,
+ "grad_norm": 0.025136210024356842,
+ "learning_rate": 0.000474,
+ "loss": 7.474215507507324,
+ "step": 80
+ },
+ {
+ "epoch": 1.125764192139738,
+ "grad_norm": 0.03659580647945404,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.475737571716309,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397379912663754,
+ "grad_norm": 0.04370221868157387,
+ "learning_rate": 0.000486,
+ "loss": 7.453543663024902,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537117903930132,
+ "grad_norm": 0.02917138673365116,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.424599647521973,
+ "step": 83
+ },
+ {
+ "epoch": 1.1676855895196507,
+ "grad_norm": 0.015414979308843613,
+ "learning_rate": 0.000498,
+ "loss": 7.388550758361816,
+ "step": 84
+ },
+ {
+ "epoch": 1.1816593886462883,
+ "grad_norm": 0.029156062752008438,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.379591941833496,
+ "step": 85
+ },
+ {
+ "epoch": 1.1956331877729258,
+ "grad_norm": 0.014958011917769909,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.372748374938965,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096069868995634,
+ "grad_norm": 0.021887343376874924,
+ "learning_rate": 0.000516,
+ "loss": 7.3589630126953125,
+ "step": 87
+ },
+ {
+ "epoch": 1.223580786026201,
+ "grad_norm": 0.02962890826165676,
+ "learning_rate": 0.000522,
+ "loss": 7.373016357421875,
+ "step": 88
+ },
+ {
+ "epoch": 1.2375545851528384,
+ "grad_norm": 0.031032968312501907,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.3282928466796875,
+ "step": 89
+ },
+ {
+ "epoch": 1.251528384279476,
+ "grad_norm": 0.027690274640917778,
+ "learning_rate": 0.000534,
+ "loss": 7.320304870605469,
+ "step": 90
+ },
+ {
+ "epoch": 1.2655021834061135,
+ "grad_norm": 0.022552549839019775,
+ "learning_rate": 0.00054,
+ "loss": 7.3051300048828125,
+ "step": 91
+ },
+ {
+ "epoch": 1.279475982532751,
+ "grad_norm": 0.04130178689956665,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.284594535827637,
+ "step": 92
+ },
+ {
+ "epoch": 1.2934497816593886,
+ "grad_norm": 0.05043136328458786,
+ "learning_rate": 0.000552,
+ "loss": 7.286007881164551,
+ "step": 93
+ },
+ {
+ "epoch": 1.3074235807860262,
+ "grad_norm": 0.04574465751647949,
+ "learning_rate": 0.000558,
+ "loss": 7.22679328918457,
+ "step": 94
+ },
+ {
+ "epoch": 1.3213973799126637,
+ "grad_norm": 0.03277682512998581,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.229741096496582,
+ "step": 95
+ },
+ {
+ "epoch": 1.3353711790393012,
+ "grad_norm": 0.022675029933452606,
+ "learning_rate": 0.00057,
+ "loss": 7.241637706756592,
+ "step": 96
+ },
+ {
+ "epoch": 1.3493449781659388,
+ "grad_norm": 0.03889699652791023,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.193673133850098,
+ "step": 97
+ },
+ {
+ "epoch": 1.3633187772925766,
+ "grad_norm": 0.029434625059366226,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.1953840255737305,
+ "step": 98
+ },
+ {
+ "epoch": 1.3772925764192139,
+ "grad_norm": 0.02118326723575592,
+ "learning_rate": 0.000588,
+ "loss": 7.178635597229004,
+ "step": 99
+ },
+ {
+ "epoch": 1.3912663755458516,
+ "grad_norm": 0.02966528758406639,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.151487350463867,
+ "step": 100
+ },
+ {
+ "epoch": 1.405240174672489,
+ "grad_norm": 0.0450727716088295,
+ "learning_rate": 0.0006,
+ "loss": 7.144834995269775,
+ "step": 101
+ },
+ {
+ "epoch": 1.4192139737991267,
+ "grad_norm": 0.08898167312145233,
+ "learning_rate": 0.0006,
+ "loss": 7.180665969848633,
+ "step": 102
+ },
+ {
+ "epoch": 1.4331877729257643,
+ "grad_norm": 0.10679084807634354,
+ "learning_rate": 0.0006,
+ "loss": 7.233458518981934,
+ "step": 103
+ },
+ {
+ "epoch": 1.4471615720524018,
+ "grad_norm": 0.04746336117386818,
+ "learning_rate": 0.0006,
+ "loss": 7.167373180389404,
+ "step": 104
+ },
+ {
+ "epoch": 1.4611353711790394,
+ "grad_norm": 0.06380590051412582,
+ "learning_rate": 0.0006,
+ "loss": 7.189356803894043,
+ "step": 105
+ },
+ {
+ "epoch": 1.475109170305677,
+ "grad_norm": 0.039717014878988266,
+ "learning_rate": 0.0006,
+ "loss": 7.096653938293457,
+ "step": 106
+ },
+ {
+ "epoch": 1.4890829694323144,
+ "grad_norm": 0.06762711703777313,
+ "learning_rate": 0.0006,
+ "loss": 7.127993583679199,
+ "step": 107
+ },
+ {
+ "epoch": 1.503056768558952,
+ "grad_norm": 0.05134489759802818,
+ "learning_rate": 0.0006,
+ "loss": 7.072257995605469,
+ "step": 108
+ },
+ {
+ "epoch": 1.5170305676855895,
+ "grad_norm": 0.062314722687006,
+ "learning_rate": 0.0006,
+ "loss": 7.073700904846191,
+ "step": 109
+ },
+ {
+ "epoch": 1.531004366812227,
+ "grad_norm": 0.03607739135622978,
+ "learning_rate": 0.0006,
+ "loss": 7.051465034484863,
+ "step": 110
+ },
+ {
+ "epoch": 1.5449781659388646,
+ "grad_norm": 0.04546204209327698,
+ "learning_rate": 0.0006,
+ "loss": 7.049814224243164,
+ "step": 111
+ },
+ {
+ "epoch": 1.5589519650655022,
+ "grad_norm": 0.0319792665541172,
+ "learning_rate": 0.0006,
+ "loss": 7.0164875984191895,
+ "step": 112
+ },
+ {
+ "epoch": 1.5729257641921397,
+ "grad_norm": 0.04590746760368347,
+ "learning_rate": 0.0006,
+ "loss": 7.001565456390381,
+ "step": 113
+ },
+ {
+ "epoch": 1.5868995633187772,
+ "grad_norm": 0.031896382570266724,
+ "learning_rate": 0.0006,
+ "loss": 6.994606018066406,
+ "step": 114
+ },
+ {
+ "epoch": 1.600873362445415,
+ "grad_norm": 0.021410338580608368,
+ "learning_rate": 0.0006,
+ "loss": 6.947071075439453,
+ "step": 115
+ },
+ {
+ "epoch": 1.6148471615720523,
+ "grad_norm": 0.030063210055232048,
+ "learning_rate": 0.0006,
+ "loss": 6.979219913482666,
+ "step": 116
+ },
+ {
+ "epoch": 1.62882096069869,
+ "grad_norm": 0.02234027162194252,
+ "learning_rate": 0.0006,
+ "loss": 6.929020881652832,
+ "step": 117
+ },
+ {
+ "epoch": 1.6427947598253274,
+ "grad_norm": 0.025586063042283058,
+ "learning_rate": 0.0006,
+ "loss": 6.9200663566589355,
+ "step": 118
+ },
+ {
+ "epoch": 1.6567685589519652,
+ "grad_norm": 0.022098371759057045,
+ "learning_rate": 0.0006,
+ "loss": 6.899832248687744,
+ "step": 119
+ },
+ {
+ "epoch": 1.6707423580786025,
+ "grad_norm": 0.019238410517573357,
+ "learning_rate": 0.0006,
+ "loss": 6.8586015701293945,
+ "step": 120
+ },
+ {
+ "epoch": 1.6847161572052403,
+ "grad_norm": 0.024153294041752815,
+ "learning_rate": 0.0006,
+ "loss": 6.867973327636719,
+ "step": 121
+ },
+ {
+ "epoch": 1.6986899563318776,
+ "grad_norm": 0.01690024696290493,
+ "learning_rate": 0.0006,
+ "loss": 6.878490447998047,
+ "step": 122
+ },
+ {
+ "epoch": 1.7126637554585153,
+ "grad_norm": 0.02171619050204754,
+ "learning_rate": 0.0006,
+ "loss": 6.853621959686279,
+ "step": 123
+ },
+ {
+ "epoch": 1.726637554585153,
+ "grad_norm": 0.020535755902528763,
+ "learning_rate": 0.0006,
+ "loss": 6.852185249328613,
+ "step": 124
+ },
+ {
+ "epoch": 1.7406113537117904,
+ "grad_norm": 0.015457311645150185,
+ "learning_rate": 0.0006,
+ "loss": 6.826596260070801,
+ "step": 125
+ },
+ {
+ "epoch": 1.754585152838428,
+ "grad_norm": 0.017492085695266724,
+ "learning_rate": 0.0006,
+ "loss": 6.842765808105469,
+ "step": 126
+ },
+ {
+ "epoch": 1.7685589519650655,
+ "grad_norm": 0.014785612002015114,
+ "learning_rate": 0.0006,
+ "loss": 6.849224090576172,
+ "step": 127
+ },
+ {
+ "epoch": 1.782532751091703,
+ "grad_norm": 0.017512250691652298,
+ "learning_rate": 0.0006,
+ "loss": 6.824787139892578,
+ "step": 128
+ },
+ {
+ "epoch": 1.7965065502183406,
+ "grad_norm": 0.01895114593207836,
+ "learning_rate": 0.0006,
+ "loss": 6.801428318023682,
+ "step": 129
+ },
+ {
+ "epoch": 1.8104803493449781,
+ "grad_norm": 0.015728816390037537,
+ "learning_rate": 0.0006,
+ "loss": 6.801990985870361,
+ "step": 130
+ },
+ {
+ "epoch": 1.8244541484716157,
+ "grad_norm": 0.014321585185825825,
+ "learning_rate": 0.0006,
+ "loss": 6.793122291564941,
+ "step": 131
+ },
+ {
+ "epoch": 1.8384279475982532,
+ "grad_norm": 0.016692014411091805,
+ "learning_rate": 0.0006,
+ "loss": 6.74687385559082,
+ "step": 132
+ },
+ {
+ "epoch": 1.8524017467248908,
+ "grad_norm": 0.016697920858860016,
+ "learning_rate": 0.0006,
+ "loss": 6.75140380859375,
+ "step": 133
+ },
+ {
+ "epoch": 1.8663755458515285,
+ "grad_norm": 0.014954701997339725,
+ "learning_rate": 0.0006,
+ "loss": 6.746084213256836,
+ "step": 134
+ },
+ {
+ "epoch": 1.8803493449781659,
+ "grad_norm": 0.013010316528379917,
+ "learning_rate": 0.0006,
+ "loss": 6.725405693054199,
+ "step": 135
+ },
+ {
+ "epoch": 1.8943231441048036,
+ "grad_norm": 0.011892660520970821,
+ "learning_rate": 0.0006,
+ "loss": 6.718758583068848,
+ "step": 136
+ },
+ {
+ "epoch": 1.908296943231441,
+ "grad_norm": 0.012127497233450413,
+ "learning_rate": 0.0006,
+ "loss": 6.708139419555664,
+ "step": 137
+ },
+ {
+ "epoch": 1.9222707423580787,
+ "grad_norm": 0.015417213551700115,
+ "learning_rate": 0.0006,
+ "loss": 6.705748558044434,
+ "step": 138
+ },
+ {
+ "epoch": 1.936244541484716,
+ "grad_norm": 0.03063729591667652,
+ "learning_rate": 0.0006,
+ "loss": 6.691249847412109,
+ "step": 139
+ },
+ {
+ "epoch": 1.9502183406113538,
+ "grad_norm": 0.07376791536808014,
+ "learning_rate": 0.0006,
+ "loss": 6.71767520904541,
+ "step": 140
+ },
+ {
+ "epoch": 1.9641921397379911,
+ "grad_norm": 0.14157423377037048,
+ "learning_rate": 0.0006,
+ "loss": 6.787544250488281,
+ "step": 141
+ },
+ {
+ "epoch": 1.9781659388646289,
+ "grad_norm": 0.09186933934688568,
+ "learning_rate": 0.0006,
+ "loss": 6.73362398147583,
+ "step": 142
+ },
+ {
+ "epoch": 1.9921397379912664,
+ "grad_norm": 0.06612848490476608,
+ "learning_rate": 0.0006,
+ "loss": 6.719516754150391,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.048072297126054764,
+ "learning_rate": 0.0006,
+ "loss": 6.666120529174805,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 6.7162394523620605,
+ "eval_runtime": 50.5907,
+ "eval_samples_per_second": 48.27,
+ "eval_steps_per_second": 1.522,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139737991266378,
+ "grad_norm": 0.03777749463915825,
+ "learning_rate": 0.0006,
+ "loss": 6.686484336853027,
+ "step": 145
+ },
+ {
+ "epoch": 2.027947598253275,
+ "grad_norm": 0.04378646984696388,
+ "learning_rate": 0.0006,
+ "loss": 6.679071426391602,
+ "step": 146
+ },
+ {
+ "epoch": 2.041921397379913,
+ "grad_norm": 0.027715124189853668,
+ "learning_rate": 0.0006,
+ "loss": 6.6776323318481445,
+ "step": 147
+ },
+ {
+ "epoch": 2.05589519650655,
+ "grad_norm": 0.03411925211548805,
+ "learning_rate": 0.0006,
+ "loss": 6.643917083740234,
+ "step": 148
+ },
+ {
+ "epoch": 2.069868995633188,
+ "grad_norm": 0.034444212913513184,
+ "learning_rate": 0.0006,
+ "loss": 6.67141056060791,
+ "step": 149
+ },
+ {
+ "epoch": 2.0838427947598253,
+ "grad_norm": 0.0387650802731514,
+ "learning_rate": 0.0006,
+ "loss": 6.65234375,
+ "step": 150
+ },
+ {
+ "epoch": 2.097816593886463,
+ "grad_norm": 0.03921861574053764,
+ "learning_rate": 0.0006,
+ "loss": 6.624712944030762,
+ "step": 151
+ },
+ {
+ "epoch": 2.1117903930131003,
+ "grad_norm": 0.02531580813229084,
+ "learning_rate": 0.0006,
+ "loss": 6.617608547210693,
+ "step": 152
+ },
+ {
+ "epoch": 2.125764192139738,
+ "grad_norm": 0.03220974653959274,
+ "learning_rate": 0.0006,
+ "loss": 6.587964057922363,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397379912663754,
+ "grad_norm": 0.03923291340470314,
+ "learning_rate": 0.0006,
+ "loss": 6.588845252990723,
+ "step": 154
+ },
+ {
+ "epoch": 2.153711790393013,
+ "grad_norm": 0.028337281197309494,
+ "learning_rate": 0.0006,
+ "loss": 6.5807952880859375,
+ "step": 155
+ },
+ {
+ "epoch": 2.1676855895196505,
+ "grad_norm": 0.01873156800866127,
+ "learning_rate": 0.0006,
+ "loss": 6.560453414916992,
+ "step": 156
+ },
+ {
+ "epoch": 2.1816593886462883,
+ "grad_norm": 0.027509493753314018,
+ "learning_rate": 0.0006,
+ "loss": 6.5615363121032715,
+ "step": 157
+ },
+ {
+ "epoch": 2.1956331877729256,
+ "grad_norm": 0.025428347289562225,
+ "learning_rate": 0.0006,
+ "loss": 6.5283966064453125,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096069868995634,
+ "grad_norm": 0.02118629403412342,
+ "learning_rate": 0.0006,
+ "loss": 6.526224136352539,
+ "step": 159
+ },
+ {
+ "epoch": 2.2235807860262007,
+ "grad_norm": 0.03233652561903,
+ "learning_rate": 0.0006,
+ "loss": 6.536041259765625,
+ "step": 160
+ },
+ {
+ "epoch": 2.2375545851528384,
+ "grad_norm": 0.04605546221137047,
+ "learning_rate": 0.0006,
+ "loss": 6.537662029266357,
+ "step": 161
+ },
+ {
+ "epoch": 2.251528384279476,
+ "grad_norm": 0.05192062631249428,
+ "learning_rate": 0.0006,
+ "loss": 6.551901817321777,
+ "step": 162
+ },
+ {
+ "epoch": 2.2655021834061135,
+ "grad_norm": 0.042231615632772446,
+ "learning_rate": 0.0006,
+ "loss": 6.511076927185059,
+ "step": 163
+ },
+ {
+ "epoch": 2.279475982532751,
+ "grad_norm": 0.04085887596011162,
+ "learning_rate": 0.0006,
+ "loss": 6.503472328186035,
+ "step": 164
+ },
+ {
+ "epoch": 2.2934497816593886,
+ "grad_norm": 0.031182587146759033,
+ "learning_rate": 0.0006,
+ "loss": 6.504403591156006,
+ "step": 165
+ },
+ {
+ "epoch": 2.3074235807860264,
+ "grad_norm": 0.032555561512708664,
+ "learning_rate": 0.0006,
+ "loss": 6.4552764892578125,
+ "step": 166
+ },
+ {
+ "epoch": 2.3213973799126637,
+ "grad_norm": 0.04939635097980499,
+ "learning_rate": 0.0006,
+ "loss": 6.495351791381836,
+ "step": 167
+ },
+ {
+ "epoch": 2.3353711790393015,
+ "grad_norm": 0.037503793835639954,
+ "learning_rate": 0.0006,
+ "loss": 6.4742560386657715,
+ "step": 168
+ },
+ {
+ "epoch": 2.349344978165939,
+ "grad_norm": 0.02366613782942295,
+ "learning_rate": 0.0006,
+ "loss": 6.478525161743164,
+ "step": 169
+ },
+ {
+ "epoch": 2.3633187772925766,
+ "grad_norm": 0.022314894944429398,
+ "learning_rate": 0.0006,
+ "loss": 6.414134979248047,
+ "step": 170
+ },
+ {
+ "epoch": 2.377292576419214,
+ "grad_norm": 0.030494702979922295,
+ "learning_rate": 0.0006,
+ "loss": 6.444867134094238,
+ "step": 171
+ },
+ {
+ "epoch": 2.3912663755458516,
+ "grad_norm": 0.04064486175775528,
+ "learning_rate": 0.0006,
+ "loss": 6.417036056518555,
+ "step": 172
+ },
+ {
+ "epoch": 2.405240174672489,
+ "grad_norm": 0.03061651438474655,
+ "learning_rate": 0.0006,
+ "loss": 6.423735618591309,
+ "step": 173
+ },
+ {
+ "epoch": 2.4192139737991267,
+ "grad_norm": 0.02046056278049946,
+ "learning_rate": 0.0006,
+ "loss": 6.419736862182617,
+ "step": 174
+ },
+ {
+ "epoch": 2.433187772925764,
+ "grad_norm": 0.02530163712799549,
+ "learning_rate": 0.0006,
+ "loss": 6.399930953979492,
+ "step": 175
+ },
+ {
+ "epoch": 2.447161572052402,
+ "grad_norm": 0.03588842228055,
+ "learning_rate": 0.0006,
+ "loss": 6.418618202209473,
+ "step": 176
+ },
+ {
+ "epoch": 2.461135371179039,
+ "grad_norm": 0.04048234224319458,
+ "learning_rate": 0.0006,
+ "loss": 6.390285491943359,
+ "step": 177
+ },
+ {
+ "epoch": 2.475109170305677,
+ "grad_norm": 0.039080191403627396,
+ "learning_rate": 0.0006,
+ "loss": 6.3688530921936035,
+ "step": 178
+ },
+ {
+ "epoch": 2.489082969432314,
+ "grad_norm": 0.029000122100114822,
+ "learning_rate": 0.0006,
+ "loss": 6.369181156158447,
+ "step": 179
+ },
+ {
+ "epoch": 2.503056768558952,
+ "grad_norm": 0.01609761081635952,
+ "learning_rate": 0.0006,
+ "loss": 6.359917640686035,
+ "step": 180
+ },
+ {
+ "epoch": 2.5170305676855893,
+ "grad_norm": 0.02305005118250847,
+ "learning_rate": 0.0006,
+ "loss": 6.347358226776123,
+ "step": 181
+ },
+ {
+ "epoch": 2.531004366812227,
+ "grad_norm": 0.03316781297326088,
+ "learning_rate": 0.0006,
+ "loss": 6.36626672744751,
+ "step": 182
+ },
+ {
+ "epoch": 2.544978165938865,
+ "grad_norm": 0.05111207440495491,
+ "learning_rate": 0.0006,
+ "loss": 6.380453109741211,
+ "step": 183
+ },
+ {
+ "epoch": 2.558951965065502,
+ "grad_norm": 0.062241602689027786,
+ "learning_rate": 0.0006,
+ "loss": 6.353237152099609,
+ "step": 184
+ },
+ {
+ "epoch": 2.5729257641921395,
+ "grad_norm": 0.060149725526571274,
+ "learning_rate": 0.0006,
+ "loss": 6.358938694000244,
+ "step": 185
+ },
+ {
+ "epoch": 2.5868995633187772,
+ "grad_norm": 0.04228121414780617,
+ "learning_rate": 0.0006,
+ "loss": 6.310116767883301,
+ "step": 186
+ },
+ {
+ "epoch": 2.600873362445415,
+ "grad_norm": 0.019458215683698654,
+ "learning_rate": 0.0006,
+ "loss": 6.284702777862549,
+ "step": 187
+ },
+ {
+ "epoch": 2.6148471615720523,
+ "grad_norm": 0.0342358835041523,
+ "learning_rate": 0.0006,
+ "loss": 6.316659927368164,
+ "step": 188
+ },
+ {
+ "epoch": 2.62882096069869,
+ "grad_norm": 0.04139583557844162,
+ "learning_rate": 0.0006,
+ "loss": 6.301124572753906,
+ "step": 189
+ },
+ {
+ "epoch": 2.6427947598253274,
+ "grad_norm": 0.028264787048101425,
+ "learning_rate": 0.0006,
+ "loss": 6.298510551452637,
+ "step": 190
+ },
+ {
+ "epoch": 2.656768558951965,
+ "grad_norm": 0.023622136563062668,
+ "learning_rate": 0.0006,
+ "loss": 6.2571210861206055,
+ "step": 191
+ },
+ {
+ "epoch": 2.6707423580786025,
+ "grad_norm": 0.039508845657110214,
+ "learning_rate": 0.0006,
+ "loss": 6.267218589782715,
+ "step": 192
+ },
+ {
+ "epoch": 2.6847161572052403,
+ "grad_norm": 0.043358899652957916,
+ "learning_rate": 0.0006,
+ "loss": 6.279658794403076,
+ "step": 193
+ },
+ {
+ "epoch": 2.6986899563318776,
+ "grad_norm": 0.04134640842676163,
+ "learning_rate": 0.0006,
+ "loss": 6.277159214019775,
+ "step": 194
+ },
+ {
+ "epoch": 2.7126637554585153,
+ "grad_norm": 0.05406952276825905,
+ "learning_rate": 0.0006,
+ "loss": 6.295559883117676,
+ "step": 195
+ },
+ {
+ "epoch": 2.726637554585153,
+ "grad_norm": 0.04557774215936661,
+ "learning_rate": 0.0006,
+ "loss": 6.260174751281738,
+ "step": 196
+ },
+ {
+ "epoch": 2.7406113537117904,
+ "grad_norm": 0.04542337730526924,
+ "learning_rate": 0.0006,
+ "loss": 6.244534492492676,
+ "step": 197
+ },
+ {
+ "epoch": 2.7545851528384278,
+ "grad_norm": 0.06924881041049957,
+ "learning_rate": 0.0006,
+ "loss": 6.2060723304748535,
+ "step": 198
+ },
+ {
+ "epoch": 2.7685589519650655,
+ "grad_norm": 0.06679725646972656,
+ "learning_rate": 0.0006,
+ "loss": 6.259133815765381,
+ "step": 199
+ },
+ {
+ "epoch": 2.7825327510917033,
+ "grad_norm": 0.05039471387863159,
+ "learning_rate": 0.0006,
+ "loss": 6.239280700683594,
+ "step": 200
+ },
+ {
+ "epoch": 2.7965065502183406,
+ "grad_norm": 0.05935394763946533,
+ "learning_rate": 0.0006,
+ "loss": 6.242481231689453,
+ "step": 201
+ },
+ {
+ "epoch": 2.810480349344978,
+ "grad_norm": 0.0486418716609478,
+ "learning_rate": 0.0006,
+ "loss": 6.239593505859375,
+ "step": 202
+ },
+ {
+ "epoch": 2.8244541484716157,
+ "grad_norm": 0.05010748282074928,
+ "learning_rate": 0.0006,
+ "loss": 6.2328948974609375,
+ "step": 203
+ },
+ {
+ "epoch": 2.8384279475982535,
+ "grad_norm": 0.03444438800215721,
+ "learning_rate": 0.0006,
+ "loss": 6.200089454650879,
+ "step": 204
+ },
+ {
+ "epoch": 2.8524017467248908,
+ "grad_norm": 0.043253373354673386,
+ "learning_rate": 0.0006,
+ "loss": 6.2089433670043945,
+ "step": 205
+ },
+ {
+ "epoch": 2.8663755458515285,
+ "grad_norm": 0.047505684196949005,
+ "learning_rate": 0.0006,
+ "loss": 6.220322608947754,
+ "step": 206
+ },
+ {
+ "epoch": 2.880349344978166,
+ "grad_norm": 0.04393792524933815,
+ "learning_rate": 0.0006,
+ "loss": 6.178770542144775,
+ "step": 207
+ },
+ {
+ "epoch": 2.8943231441048036,
+ "grad_norm": 0.04025835916399956,
+ "learning_rate": 0.0006,
+ "loss": 6.160248756408691,
+ "step": 208
+ },
+ {
+ "epoch": 2.908296943231441,
+ "grad_norm": 0.03877986595034599,
+ "learning_rate": 0.0006,
+ "loss": 6.164917945861816,
+ "step": 209
+ },
+ {
+ "epoch": 2.9222707423580787,
+ "grad_norm": 0.03666771203279495,
+ "learning_rate": 0.0006,
+ "loss": 6.172199249267578,
+ "step": 210
+ },
+ {
+ "epoch": 2.936244541484716,
+ "grad_norm": 0.028036516159772873,
+ "learning_rate": 0.0006,
+ "loss": 6.179510116577148,
+ "step": 211
+ },
+ {
+ "epoch": 2.950218340611354,
+ "grad_norm": 0.021492617204785347,
+ "learning_rate": 0.0006,
+ "loss": 6.1275153160095215,
+ "step": 212
+ },
+ {
+ "epoch": 2.964192139737991,
+ "grad_norm": 0.026816558092832565,
+ "learning_rate": 0.0006,
+ "loss": 6.131775856018066,
+ "step": 213
+ },
+ {
+ "epoch": 2.978165938864629,
+ "grad_norm": 0.03757898136973381,
+ "learning_rate": 0.0006,
+ "loss": 6.135777473449707,
+ "step": 214
+ },
+ {
+ "epoch": 2.992139737991266,
+ "grad_norm": 0.06036437302827835,
+ "learning_rate": 0.0006,
+ "loss": 6.146076202392578,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.09846952557563782,
+ "learning_rate": 0.0006,
+ "loss": 6.218435287475586,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.23890495300293,
+ "eval_runtime": 50.6822,
+ "eval_samples_per_second": 48.183,
+ "eval_steps_per_second": 1.519,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139737991266378,
+ "grad_norm": 0.10463741421699524,
+ "learning_rate": 0.0006,
+ "loss": 6.197120666503906,
+ "step": 217
+ },
+ {
+ "epoch": 3.027947598253275,
+ "grad_norm": 0.10212419927120209,
+ "learning_rate": 0.0006,
+ "loss": 6.178340911865234,
+ "step": 218
+ },
+ {
+ "epoch": 3.041921397379913,
+ "grad_norm": 0.08038751780986786,
+ "learning_rate": 0.0006,
+ "loss": 6.217406749725342,
+ "step": 219
+ },
+ {
+ "epoch": 3.05589519650655,
+ "grad_norm": 0.04787508398294449,
+ "learning_rate": 0.0006,
+ "loss": 6.155381679534912,
+ "step": 220
+ },
+ {
+ "epoch": 3.069868995633188,
+ "grad_norm": 0.06880322843790054,
+ "learning_rate": 0.0006,
+ "loss": 6.121614933013916,
+ "step": 221
+ },
+ {
+ "epoch": 3.0838427947598253,
+ "grad_norm": 0.03749438002705574,
+ "learning_rate": 0.0006,
+ "loss": 6.120484352111816,
+ "step": 222
+ },
+ {
+ "epoch": 3.097816593886463,
+ "grad_norm": 0.03875046223402023,
+ "learning_rate": 0.0006,
+ "loss": 6.12362003326416,
+ "step": 223
+ },
+ {
+ "epoch": 3.1117903930131003,
+ "grad_norm": 0.030663209035992622,
+ "learning_rate": 0.0006,
+ "loss": 6.1111063957214355,
+ "step": 224
+ },
+ {
+ "epoch": 3.125764192139738,
+ "grad_norm": 0.029520904645323753,
+ "learning_rate": 0.0006,
+ "loss": 6.130336761474609,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397379912663754,
+ "grad_norm": 0.02854953519999981,
+ "learning_rate": 0.0006,
+ "loss": 6.086193084716797,
+ "step": 226
+ },
+ {
+ "epoch": 3.153711790393013,
+ "grad_norm": 0.027147898450493813,
+ "learning_rate": 0.0006,
+ "loss": 6.066827774047852,
+ "step": 227
+ },
+ {
+ "epoch": 3.1676855895196505,
+ "grad_norm": 0.025577887892723083,
+ "learning_rate": 0.0006,
+ "loss": 6.070775032043457,
+ "step": 228
+ },
+ {
+ "epoch": 3.1816593886462883,
+ "grad_norm": 0.026318276301026344,
+ "learning_rate": 0.0006,
+ "loss": 6.064469814300537,
+ "step": 229
+ },
+ {
+ "epoch": 3.1956331877729256,
+ "grad_norm": 0.02595221996307373,
+ "learning_rate": 0.0006,
+ "loss": 6.066489219665527,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096069868995634,
+ "grad_norm": 0.0248890221118927,
+ "learning_rate": 0.0006,
+ "loss": 6.032470703125,
+ "step": 231
+ },
+ {
+ "epoch": 3.2235807860262007,
+ "grad_norm": 0.017041699960827827,
+ "learning_rate": 0.0006,
+ "loss": 6.056160926818848,
+ "step": 232
+ },
+ {
+ "epoch": 3.2375545851528384,
+ "grad_norm": 0.020971592515707016,
+ "learning_rate": 0.0006,
+ "loss": 6.024506568908691,
+ "step": 233
+ },
+ {
+ "epoch": 3.251528384279476,
+ "grad_norm": 0.01897028088569641,
+ "learning_rate": 0.0006,
+ "loss": 6.035656929016113,
+ "step": 234
+ },
+ {
+ "epoch": 3.2655021834061135,
+ "grad_norm": 0.027151981368660927,
+ "learning_rate": 0.0006,
+ "loss": 6.026547431945801,
+ "step": 235
+ },
+ {
+ "epoch": 3.279475982532751,
+ "grad_norm": 0.029453502967953682,
+ "learning_rate": 0.0006,
+ "loss": 5.981723785400391,
+ "step": 236
+ },
+ {
+ "epoch": 3.2934497816593886,
+ "grad_norm": 0.027771083638072014,
+ "learning_rate": 0.0006,
+ "loss": 6.019796371459961,
+ "step": 237
+ },
+ {
+ "epoch": 3.3074235807860264,
+ "grad_norm": 0.02605084516108036,
+ "learning_rate": 0.0006,
+ "loss": 5.984506607055664,
+ "step": 238
+ },
+ {
+ "epoch": 3.3213973799126637,
+ "grad_norm": 0.022903922945261,
+ "learning_rate": 0.0006,
+ "loss": 6.023873805999756,
+ "step": 239
+ },
+ {
+ "epoch": 3.3353711790393015,
+ "grad_norm": 0.01976492442190647,
+ "learning_rate": 0.0006,
+ "loss": 6.009030342102051,
+ "step": 240
+ },
+ {
+ "epoch": 3.349344978165939,
+ "grad_norm": 0.018872970715165138,
+ "learning_rate": 0.0006,
+ "loss": 5.970742702484131,
+ "step": 241
+ },
+ {
+ "epoch": 3.3633187772925766,
+ "grad_norm": 0.017447829246520996,
+ "learning_rate": 0.0006,
+ "loss": 5.968851089477539,
+ "step": 242
+ },
+ {
+ "epoch": 3.377292576419214,
+ "grad_norm": 0.025419825688004494,
+ "learning_rate": 0.0006,
+ "loss": 5.956470489501953,
+ "step": 243
+ },
+ {
+ "epoch": 3.3912663755458516,
+ "grad_norm": 0.03654123470187187,
+ "learning_rate": 0.0006,
+ "loss": 5.94770622253418,
+ "step": 244
+ },
+ {
+ "epoch": 3.405240174672489,
+ "grad_norm": 0.05607098713517189,
+ "learning_rate": 0.0006,
+ "loss": 6.008593559265137,
+ "step": 245
+ },
+ {
+ "epoch": 3.4192139737991267,
+ "grad_norm": 0.07973720878362656,
+ "learning_rate": 0.0006,
+ "loss": 5.9966888427734375,
+ "step": 246
+ },
+ {
+ "epoch": 3.433187772925764,
+ "grad_norm": 0.10906023532152176,
+ "learning_rate": 0.0006,
+ "loss": 6.054642200469971,
+ "step": 247
+ },
+ {
+ "epoch": 3.447161572052402,
+ "grad_norm": 0.09792660176753998,
+ "learning_rate": 0.0006,
+ "loss": 6.067026138305664,
+ "step": 248
+ },
+ {
+ "epoch": 3.461135371179039,
+ "grad_norm": 0.07395700365304947,
+ "learning_rate": 0.0006,
+ "loss": 6.01310920715332,
+ "step": 249
+ },
+ {
+ "epoch": 3.475109170305677,
+ "grad_norm": 0.10172071307897568,
+ "learning_rate": 0.0006,
+ "loss": 6.048509120941162,
+ "step": 250
+ },
+ {
+ "epoch": 3.489082969432314,
+ "grad_norm": 0.0717678815126419,
+ "learning_rate": 0.0006,
+ "loss": 6.055008888244629,
+ "step": 251
+ },
+ {
+ "epoch": 3.503056768558952,
+ "grad_norm": 0.06398089975118637,
+ "learning_rate": 0.0006,
+ "loss": 5.9677276611328125,
+ "step": 252
+ },
+ {
+ "epoch": 3.5170305676855893,
+ "grad_norm": 0.0643860474228859,
+ "learning_rate": 0.0006,
+ "loss": 5.957507133483887,
+ "step": 253
+ },
+ {
+ "epoch": 3.531004366812227,
+ "grad_norm": 0.03472325950860977,
+ "learning_rate": 0.0006,
+ "loss": 5.952362060546875,
+ "step": 254
+ },
+ {
+ "epoch": 3.544978165938865,
+ "grad_norm": 0.03918307647109032,
+ "learning_rate": 0.0006,
+ "loss": 5.957100868225098,
+ "step": 255
+ },
+ {
+ "epoch": 3.558951965065502,
+ "grad_norm": 0.03519073501229286,
+ "learning_rate": 0.0006,
+ "loss": 5.97830867767334,
+ "step": 256
+ },
+ {
+ "epoch": 3.5729257641921395,
+ "grad_norm": 0.03435497358441353,
+ "learning_rate": 0.0006,
+ "loss": 5.93912410736084,
+ "step": 257
+ },
+ {
+ "epoch": 3.5868995633187772,
+ "grad_norm": 0.026064487174153328,
+ "learning_rate": 0.0006,
+ "loss": 5.91353702545166,
+ "step": 258
+ },
+ {
+ "epoch": 3.600873362445415,
+ "grad_norm": 0.03159152343869209,
+ "learning_rate": 0.0006,
+ "loss": 5.913291931152344,
+ "step": 259
+ },
+ {
+ "epoch": 3.6148471615720523,
+ "grad_norm": 0.02195592038333416,
+ "learning_rate": 0.0006,
+ "loss": 5.906322479248047,
+ "step": 260
+ },
+ {
+ "epoch": 3.62882096069869,
+ "grad_norm": 0.020358966663479805,
+ "learning_rate": 0.0006,
+ "loss": 5.891860008239746,
+ "step": 261
+ },
+ {
+ "epoch": 3.6427947598253274,
+ "grad_norm": 0.01964488998055458,
+ "learning_rate": 0.0006,
+ "loss": 5.881132125854492,
+ "step": 262
+ },
+ {
+ "epoch": 3.656768558951965,
+ "grad_norm": 0.022447235882282257,
+ "learning_rate": 0.0006,
+ "loss": 5.8846940994262695,
+ "step": 263
+ },
+ {
+ "epoch": 3.6707423580786025,
+ "grad_norm": 0.018359875306487083,
+ "learning_rate": 0.0006,
+ "loss": 5.8861188888549805,
+ "step": 264
+ },
+ {
+ "epoch": 3.6847161572052403,
+ "grad_norm": 0.018481185659766197,
+ "learning_rate": 0.0006,
+ "loss": 5.874635696411133,
+ "step": 265
+ },
+ {
+ "epoch": 3.6986899563318776,
+ "grad_norm": 0.016943952068686485,
+ "learning_rate": 0.0006,
+ "loss": 5.8380126953125,
+ "step": 266
+ },
+ {
+ "epoch": 3.7126637554585153,
+ "grad_norm": 0.016593772917985916,
+ "learning_rate": 0.0006,
+ "loss": 5.855746269226074,
+ "step": 267
+ },
+ {
+ "epoch": 3.726637554585153,
+ "grad_norm": 0.018204636871814728,
+ "learning_rate": 0.0006,
+ "loss": 5.873927116394043,
+ "step": 268
+ },
+ {
+ "epoch": 3.7406113537117904,
+ "grad_norm": 0.017277248203754425,
+ "learning_rate": 0.0006,
+ "loss": 5.855231285095215,
+ "step": 269
+ },
+ {
+ "epoch": 3.7545851528384278,
+ "grad_norm": 0.01717568188905716,
+ "learning_rate": 0.0006,
+ "loss": 5.847787857055664,
+ "step": 270
+ },
+ {
+ "epoch": 3.7685589519650655,
+ "grad_norm": 0.01537331473082304,
+ "learning_rate": 0.0006,
+ "loss": 5.852605819702148,
+ "step": 271
+ },
+ {
+ "epoch": 3.7825327510917033,
+ "grad_norm": 0.01504798699170351,
+ "learning_rate": 0.0006,
+ "loss": 5.825901031494141,
+ "step": 272
+ },
+ {
+ "epoch": 3.7965065502183406,
+ "grad_norm": 0.023221664130687714,
+ "learning_rate": 0.0006,
+ "loss": 5.812404155731201,
+ "step": 273
+ },
+ {
+ "epoch": 3.810480349344978,
+ "grad_norm": 0.0397733673453331,
+ "learning_rate": 0.0006,
+ "loss": 5.804308891296387,
+ "step": 274
+ },
+ {
+ "epoch": 3.8244541484716157,
+ "grad_norm": 0.05233687534928322,
+ "learning_rate": 0.0006,
+ "loss": 5.788049697875977,
+ "step": 275
+ },
+ {
+ "epoch": 3.8384279475982535,
+ "grad_norm": 0.05563921108841896,
+ "learning_rate": 0.0006,
+ "loss": 5.811939239501953,
+ "step": 276
+ },
+ {
+ "epoch": 3.8524017467248908,
+ "grad_norm": 0.0501336008310318,
+ "learning_rate": 0.0006,
+ "loss": 5.810712814331055,
+ "step": 277
+ },
+ {
+ "epoch": 3.8663755458515285,
+ "grad_norm": 0.07601612061262131,
+ "learning_rate": 0.0006,
+ "loss": 5.846009254455566,
+ "step": 278
+ },
+ {
+ "epoch": 3.880349344978166,
+ "grad_norm": 0.07927536964416504,
+ "learning_rate": 0.0006,
+ "loss": 5.846945285797119,
+ "step": 279
+ },
+ {
+ "epoch": 3.8943231441048036,
+ "grad_norm": 0.05778975039720535,
+ "learning_rate": 0.0006,
+ "loss": 5.8009209632873535,
+ "step": 280
+ },
+ {
+ "epoch": 3.908296943231441,
+ "grad_norm": 0.06650745123624802,
+ "learning_rate": 0.0006,
+ "loss": 5.825387001037598,
+ "step": 281
+ },
+ {
+ "epoch": 3.9222707423580787,
+ "grad_norm": 0.05610830709338188,
+ "learning_rate": 0.0006,
+ "loss": 5.854207992553711,
+ "step": 282
+ },
+ {
+ "epoch": 3.936244541484716,
+ "grad_norm": 0.03054177202284336,
+ "learning_rate": 0.0006,
+ "loss": 5.8229875564575195,
+ "step": 283
+ },
+ {
+ "epoch": 3.950218340611354,
+ "grad_norm": 0.03929241746664047,
+ "learning_rate": 0.0006,
+ "loss": 5.8026041984558105,
+ "step": 284
+ },
+ {
+ "epoch": 3.964192139737991,
+ "grad_norm": 0.03007139079272747,
+ "learning_rate": 0.0006,
+ "loss": 5.7833709716796875,
+ "step": 285
+ },
+ {
+ "epoch": 3.978165938864629,
+ "grad_norm": 0.03231097757816315,
+ "learning_rate": 0.0006,
+ "loss": 5.7852091789245605,
+ "step": 286
+ },
+ {
+ "epoch": 3.992139737991266,
+ "grad_norm": 0.02939445711672306,
+ "learning_rate": 0.0006,
+ "loss": 5.753163814544678,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.02993260696530342,
+ "learning_rate": 0.0006,
+ "loss": 5.762526512145996,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 5.799882888793945,
+ "eval_runtime": 50.8936,
+ "eval_samples_per_second": 47.982,
+ "eval_steps_per_second": 1.513,
+ "step": 288
+ },
+ {
+ "epoch": 4.013973799126638,
+ "grad_norm": 0.025836583226919174,
+ "learning_rate": 0.0006,
+ "loss": 5.74060583114624,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279475982532755,
+ "grad_norm": 0.02240375429391861,
+ "learning_rate": 0.0006,
+ "loss": 5.744357109069824,
+ "step": 290
+ },
+ {
+ "epoch": 4.041921397379912,
+ "grad_norm": 0.019645314663648605,
+ "learning_rate": 0.0006,
+ "loss": 5.714840412139893,
+ "step": 291
+ },
+ {
+ "epoch": 4.05589519650655,
+ "grad_norm": 0.01903143897652626,
+ "learning_rate": 0.0006,
+ "loss": 5.749794006347656,
+ "step": 292
+ },
+ {
+ "epoch": 4.069868995633188,
+ "grad_norm": 0.020970258861780167,
+ "learning_rate": 0.0006,
+ "loss": 5.684886932373047,
+ "step": 293
+ },
+ {
+ "epoch": 4.083842794759826,
+ "grad_norm": 0.022254586219787598,
+ "learning_rate": 0.0006,
+ "loss": 5.690360069274902,
+ "step": 294
+ },
+ {
+ "epoch": 4.097816593886463,
+ "grad_norm": 0.024622811004519463,
+ "learning_rate": 0.0006,
+ "loss": 5.7078962326049805,
+ "step": 295
+ },
+ {
+ "epoch": 4.1117903930131,
+ "grad_norm": 0.023592552170157433,
+ "learning_rate": 0.0006,
+ "loss": 5.7039971351623535,
+ "step": 296
+ },
+ {
+ "epoch": 4.125764192139738,
+ "grad_norm": 0.02667587623000145,
+ "learning_rate": 0.0006,
+ "loss": 5.677852630615234,
+ "step": 297
+ },
+ {
+ "epoch": 4.139737991266376,
+ "grad_norm": 0.03330948203802109,
+ "learning_rate": 0.0006,
+ "loss": 5.688773155212402,
+ "step": 298
+ },
+ {
+ "epoch": 4.153711790393013,
+ "grad_norm": 0.045157793909311295,
+ "learning_rate": 0.0006,
+ "loss": 5.675937652587891,
+ "step": 299
+ },
+ {
+ "epoch": 4.1676855895196505,
+ "grad_norm": 0.07034408301115036,
+ "learning_rate": 0.0006,
+ "loss": 5.687074661254883,
+ "step": 300
+ },
+ {
+ "epoch": 4.181659388646288,
+ "grad_norm": 0.10193091630935669,
+ "learning_rate": 0.0006,
+ "loss": 5.748222351074219,
+ "step": 301
+ },
+ {
+ "epoch": 4.195633187772926,
+ "grad_norm": 0.09606931358575821,
+ "learning_rate": 0.0006,
+ "loss": 5.767232894897461,
+ "step": 302
+ },
+ {
+ "epoch": 4.209606986899563,
+ "grad_norm": 0.05994758382439613,
+ "learning_rate": 0.0006,
+ "loss": 5.723153114318848,
+ "step": 303
+ },
+ {
+ "epoch": 4.223580786026201,
+ "grad_norm": 0.045849986374378204,
+ "learning_rate": 0.0006,
+ "loss": 5.7005815505981445,
+ "step": 304
+ },
+ {
+ "epoch": 4.2375545851528384,
+ "grad_norm": 0.04177941009402275,
+ "learning_rate": 0.0006,
+ "loss": 5.679755210876465,
+ "step": 305
+ },
+ {
+ "epoch": 4.251528384279476,
+ "grad_norm": 0.03307238593697548,
+ "learning_rate": 0.0006,
+ "loss": 5.677393913269043,
+ "step": 306
+ },
+ {
+ "epoch": 4.265502183406113,
+ "grad_norm": 0.04340110346674919,
+ "learning_rate": 0.0006,
+ "loss": 5.702075004577637,
+ "step": 307
+ },
+ {
+ "epoch": 4.279475982532751,
+ "grad_norm": 0.04797970876097679,
+ "learning_rate": 0.0006,
+ "loss": 5.650345802307129,
+ "step": 308
+ },
+ {
+ "epoch": 4.293449781659389,
+ "grad_norm": 0.04946571961045265,
+ "learning_rate": 0.0006,
+ "loss": 5.675044059753418,
+ "step": 309
+ },
+ {
+ "epoch": 4.307423580786026,
+ "grad_norm": 0.03254636004567146,
+ "learning_rate": 0.0006,
+ "loss": 5.622986793518066,
+ "step": 310
+ },
+ {
+ "epoch": 4.321397379912664,
+ "grad_norm": 0.032069381326436996,
+ "learning_rate": 0.0006,
+ "loss": 5.629563331604004,
+ "step": 311
+ },
+ {
+ "epoch": 4.335371179039301,
+ "grad_norm": 0.033597469329833984,
+ "learning_rate": 0.0006,
+ "loss": 5.612854480743408,
+ "step": 312
+ },
+ {
+ "epoch": 4.349344978165939,
+ "grad_norm": 0.02717825584113598,
+ "learning_rate": 0.0006,
+ "loss": 5.652135372161865,
+ "step": 313
+ },
+ {
+ "epoch": 4.3633187772925766,
+ "grad_norm": 0.03312784433364868,
+ "learning_rate": 0.0006,
+ "loss": 5.649629592895508,
+ "step": 314
+ },
+ {
+ "epoch": 4.377292576419214,
+ "grad_norm": 0.03037389926612377,
+ "learning_rate": 0.0006,
+ "loss": 5.6194305419921875,
+ "step": 315
+ },
+ {
+ "epoch": 4.391266375545851,
+ "grad_norm": 0.03778672590851784,
+ "learning_rate": 0.0006,
+ "loss": 5.641755104064941,
+ "step": 316
+ },
+ {
+ "epoch": 4.405240174672489,
+ "grad_norm": 0.053473301231861115,
+ "learning_rate": 0.0006,
+ "loss": 5.621832847595215,
+ "step": 317
+ },
+ {
+ "epoch": 4.419213973799127,
+ "grad_norm": 0.06915664672851562,
+ "learning_rate": 0.0006,
+ "loss": 5.601483345031738,
+ "step": 318
+ },
+ {
+ "epoch": 4.4331877729257645,
+ "grad_norm": 0.06667220592498779,
+ "learning_rate": 0.0006,
+ "loss": 5.642349720001221,
+ "step": 319
+ },
+ {
+ "epoch": 4.447161572052401,
+ "grad_norm": 0.037290167063474655,
+ "learning_rate": 0.0006,
+ "loss": 5.604238510131836,
+ "step": 320
+ },
+ {
+ "epoch": 4.461135371179039,
+ "grad_norm": 0.04003678262233734,
+ "learning_rate": 0.0006,
+ "loss": 5.593315601348877,
+ "step": 321
+ },
+ {
+ "epoch": 4.475109170305677,
+ "grad_norm": 0.028076812624931335,
+ "learning_rate": 0.0006,
+ "loss": 5.566408157348633,
+ "step": 322
+ },
+ {
+ "epoch": 4.489082969432315,
+ "grad_norm": 0.031247343868017197,
+ "learning_rate": 0.0006,
+ "loss": 5.6215410232543945,
+ "step": 323
+ },
+ {
+ "epoch": 4.503056768558952,
+ "grad_norm": 0.02864190936088562,
+ "learning_rate": 0.0006,
+ "loss": 5.583666801452637,
+ "step": 324
+ },
+ {
+ "epoch": 4.517030567685589,
+ "grad_norm": 0.03396870568394661,
+ "learning_rate": 0.0006,
+ "loss": 5.568394184112549,
+ "step": 325
+ },
+ {
+ "epoch": 4.531004366812227,
+ "grad_norm": 0.03053557313978672,
+ "learning_rate": 0.0006,
+ "loss": 5.5704755783081055,
+ "step": 326
+ },
+ {
+ "epoch": 4.544978165938865,
+ "grad_norm": 0.039402369409799576,
+ "learning_rate": 0.0006,
+ "loss": 5.529522895812988,
+ "step": 327
+ },
+ {
+ "epoch": 4.558951965065502,
+ "grad_norm": 0.039162520319223404,
+ "learning_rate": 0.0006,
+ "loss": 5.565547466278076,
+ "step": 328
+ },
+ {
+ "epoch": 4.5729257641921395,
+ "grad_norm": 0.03071208856999874,
+ "learning_rate": 0.0006,
+ "loss": 5.551553726196289,
+ "step": 329
+ },
+ {
+ "epoch": 4.586899563318777,
+ "grad_norm": 0.0320625938475132,
+ "learning_rate": 0.0006,
+ "loss": 5.535126686096191,
+ "step": 330
+ },
+ {
+ "epoch": 4.600873362445415,
+ "grad_norm": 0.03700695186853409,
+ "learning_rate": 0.0006,
+ "loss": 5.560665130615234,
+ "step": 331
+ },
+ {
+ "epoch": 4.614847161572053,
+ "grad_norm": 0.0327119417488575,
+ "learning_rate": 0.0006,
+ "loss": 5.528924465179443,
+ "step": 332
+ },
+ {
+ "epoch": 4.62882096069869,
+ "grad_norm": 0.028552839532494545,
+ "learning_rate": 0.0006,
+ "loss": 5.520917892456055,
+ "step": 333
+ },
+ {
+ "epoch": 4.642794759825327,
+ "grad_norm": 0.029750585556030273,
+ "learning_rate": 0.0006,
+ "loss": 5.512092113494873,
+ "step": 334
+ },
+ {
+ "epoch": 4.656768558951965,
+ "grad_norm": 0.03556099906563759,
+ "learning_rate": 0.0006,
+ "loss": 5.500020503997803,
+ "step": 335
+ },
+ {
+ "epoch": 4.670742358078603,
+ "grad_norm": 0.03819836303591728,
+ "learning_rate": 0.0006,
+ "loss": 5.523126602172852,
+ "step": 336
+ },
+ {
+ "epoch": 4.68471615720524,
+ "grad_norm": 0.038457129150629044,
+ "learning_rate": 0.0006,
+ "loss": 5.497986316680908,
+ "step": 337
+ },
+ {
+ "epoch": 4.698689956331878,
+ "grad_norm": 0.049066998064517975,
+ "learning_rate": 0.0006,
+ "loss": 5.481566429138184,
+ "step": 338
+ },
+ {
+ "epoch": 4.712663755458515,
+ "grad_norm": 0.06208881363272667,
+ "learning_rate": 0.0006,
+ "loss": 5.5200581550598145,
+ "step": 339
+ },
+ {
+ "epoch": 4.726637554585153,
+ "grad_norm": 0.04952879622578621,
+ "learning_rate": 0.0006,
+ "loss": 5.528044700622559,
+ "step": 340
+ },
+ {
+ "epoch": 4.74061135371179,
+ "grad_norm": 0.046794820576906204,
+ "learning_rate": 0.0006,
+ "loss": 5.4694437980651855,
+ "step": 341
+ },
+ {
+ "epoch": 4.754585152838428,
+ "grad_norm": 0.05241665989160538,
+ "learning_rate": 0.0006,
+ "loss": 5.5203752517700195,
+ "step": 342
+ },
+ {
+ "epoch": 4.7685589519650655,
+ "grad_norm": 0.029848996549844742,
+ "learning_rate": 0.0006,
+ "loss": 5.484467506408691,
+ "step": 343
+ },
+ {
+ "epoch": 4.782532751091703,
+ "grad_norm": 0.035734955221414566,
+ "learning_rate": 0.0006,
+ "loss": 5.4982075691223145,
+ "step": 344
+ },
+ {
+ "epoch": 4.796506550218341,
+ "grad_norm": 0.03326781094074249,
+ "learning_rate": 0.0006,
+ "loss": 5.4673380851745605,
+ "step": 345
+ },
+ {
+ "epoch": 4.810480349344978,
+ "grad_norm": 0.02851971797645092,
+ "learning_rate": 0.0006,
+ "loss": 5.466347694396973,
+ "step": 346
+ },
+ {
+ "epoch": 4.824454148471616,
+ "grad_norm": 0.02881411463022232,
+ "learning_rate": 0.0006,
+ "loss": 5.4748992919921875,
+ "step": 347
+ },
+ {
+ "epoch": 4.8384279475982535,
+ "grad_norm": 0.037079520523548126,
+ "learning_rate": 0.0006,
+ "loss": 5.430629730224609,
+ "step": 348
+ },
+ {
+ "epoch": 4.85240174672489,
+ "grad_norm": 0.06697188317775726,
+ "learning_rate": 0.0006,
+ "loss": 5.48007869720459,
+ "step": 349
+ },
+ {
+ "epoch": 4.866375545851528,
+ "grad_norm": 0.08443532884120941,
+ "learning_rate": 0.0006,
+ "loss": 5.519370079040527,
+ "step": 350
+ },
+ {
+ "epoch": 4.880349344978166,
+ "grad_norm": 0.0594899021089077,
+ "learning_rate": 0.0006,
+ "loss": 5.502467155456543,
+ "step": 351
+ },
+ {
+ "epoch": 4.894323144104804,
+ "grad_norm": 0.045731619000434875,
+ "learning_rate": 0.0006,
+ "loss": 5.48048210144043,
+ "step": 352
+ },
+ {
+ "epoch": 4.908296943231441,
+ "grad_norm": 0.02911028079688549,
+ "learning_rate": 0.0006,
+ "loss": 5.45798921585083,
+ "step": 353
+ },
+ {
+ "epoch": 4.922270742358078,
+ "grad_norm": 0.03407920524477959,
+ "learning_rate": 0.0006,
+ "loss": 5.452054977416992,
+ "step": 354
+ },
+ {
+ "epoch": 4.936244541484716,
+ "grad_norm": 0.030616968870162964,
+ "learning_rate": 0.0006,
+ "loss": 5.416000843048096,
+ "step": 355
+ },
+ {
+ "epoch": 4.950218340611354,
+ "grad_norm": 0.036123789846897125,
+ "learning_rate": 0.0006,
+ "loss": 5.448460102081299,
+ "step": 356
+ },
+ {
+ "epoch": 4.964192139737992,
+ "grad_norm": 0.03511728718876839,
+ "learning_rate": 0.0006,
+ "loss": 5.4388580322265625,
+ "step": 357
+ },
+ {
+ "epoch": 4.978165938864628,
+ "grad_norm": 0.032399944961071014,
+ "learning_rate": 0.0006,
+ "loss": 5.439154624938965,
+ "step": 358
+ },
+ {
+ "epoch": 4.992139737991266,
+ "grad_norm": 0.030734507367014885,
+ "learning_rate": 0.0006,
+ "loss": 5.394845485687256,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.036368995904922485,
+ "learning_rate": 0.0006,
+ "loss": 5.4285783767700195,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.480083465576172,
+ "eval_runtime": 50.4055,
+ "eval_samples_per_second": 48.447,
+ "eval_steps_per_second": 1.528,
+ "step": 360
+ },
+ {
+ "epoch": 5.013973799126638,
+ "grad_norm": 0.04241528734564781,
+ "learning_rate": 0.0006,
+ "loss": 5.381251335144043,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279475982532755,
+ "grad_norm": 0.03248775005340576,
+ "learning_rate": 0.0006,
+ "loss": 5.37385892868042,
+ "step": 362
+ },
+ {
+ "epoch": 5.041921397379912,
+ "grad_norm": 0.034749697893857956,
+ "learning_rate": 0.0006,
+ "loss": 5.376180648803711,
+ "step": 363
+ },
+ {
+ "epoch": 5.05589519650655,
+ "grad_norm": 0.03606852516531944,
+ "learning_rate": 0.0006,
+ "loss": 5.374990940093994,
+ "step": 364
+ },
+ {
+ "epoch": 5.069868995633188,
+ "grad_norm": 0.037298817187547684,
+ "learning_rate": 0.0006,
+ "loss": 5.387371063232422,
+ "step": 365
+ },
+ {
+ "epoch": 5.083842794759826,
+ "grad_norm": 0.04082327336072922,
+ "learning_rate": 0.0006,
+ "loss": 5.389516830444336,
+ "step": 366
+ },
+ {
+ "epoch": 5.097816593886463,
+ "grad_norm": 0.04895859211683273,
+ "learning_rate": 0.0006,
+ "loss": 5.3711090087890625,
+ "step": 367
+ },
+ {
+ "epoch": 5.1117903930131,
+ "grad_norm": 0.050905536860227585,
+ "learning_rate": 0.0006,
+ "loss": 5.351629257202148,
+ "step": 368
+ },
+ {
+ "epoch": 5.125764192139738,
+ "grad_norm": 0.04349025338888168,
+ "learning_rate": 0.0006,
+ "loss": 5.348860263824463,
+ "step": 369
+ },
+ {
+ "epoch": 5.139737991266376,
+ "grad_norm": 0.04351300373673439,
+ "learning_rate": 0.0006,
+ "loss": 5.351939678192139,
+ "step": 370
+ },
+ {
+ "epoch": 5.153711790393013,
+ "grad_norm": 0.03227587044239044,
+ "learning_rate": 0.0006,
+ "loss": 5.345745086669922,
+ "step": 371
+ },
+ {
+ "epoch": 5.1676855895196505,
+ "grad_norm": 0.04331260547041893,
+ "learning_rate": 0.0006,
+ "loss": 5.316384315490723,
+ "step": 372
+ },
+ {
+ "epoch": 5.181659388646288,
+ "grad_norm": 0.0464855432510376,
+ "learning_rate": 0.0006,
+ "loss": 5.343276023864746,
+ "step": 373
+ },
+ {
+ "epoch": 5.195633187772926,
+ "grad_norm": 0.05008427053689957,
+ "learning_rate": 0.0006,
+ "loss": 5.369993209838867,
+ "step": 374
+ },
+ {
+ "epoch": 5.209606986899563,
+ "grad_norm": 0.04762439802289009,
+ "learning_rate": 0.0006,
+ "loss": 5.3458051681518555,
+ "step": 375
+ },
+ {
+ "epoch": 5.223580786026201,
+ "grad_norm": 0.04650581255555153,
+ "learning_rate": 0.0006,
+ "loss": 5.352739334106445,
+ "step": 376
+ },
+ {
+ "epoch": 5.2375545851528384,
+ "grad_norm": 0.04960601031780243,
+ "learning_rate": 0.0006,
+ "loss": 5.327419757843018,
+ "step": 377
+ },
+ {
+ "epoch": 5.251528384279476,
+ "grad_norm": 0.04186132177710533,
+ "learning_rate": 0.0006,
+ "loss": 5.319878578186035,
+ "step": 378
+ },
+ {
+ "epoch": 5.265502183406113,
+ "grad_norm": 0.0390714667737484,
+ "learning_rate": 0.0006,
+ "loss": 5.344437599182129,
+ "step": 379
+ },
+ {
+ "epoch": 5.279475982532751,
+ "grad_norm": 0.03270866721868515,
+ "learning_rate": 0.0006,
+ "loss": 5.313382148742676,
+ "step": 380
+ },
+ {
+ "epoch": 5.293449781659389,
+ "grad_norm": 0.031864266842603683,
+ "learning_rate": 0.0006,
+ "loss": 5.326592922210693,
+ "step": 381
+ },
+ {
+ "epoch": 5.307423580786026,
+ "grad_norm": 0.026960339397192,
+ "learning_rate": 0.0006,
+ "loss": 5.286443710327148,
+ "step": 382
+ },
+ {
+ "epoch": 5.321397379912664,
+ "grad_norm": 0.023257168009877205,
+ "learning_rate": 0.0006,
+ "loss": 5.291154384613037,
+ "step": 383
+ },
+ {
+ "epoch": 5.335371179039301,
+ "grad_norm": 0.024317380040884018,
+ "learning_rate": 0.0006,
+ "loss": 5.30286979675293,
+ "step": 384
+ },
+ {
+ "epoch": 5.349344978165939,
+ "grad_norm": 0.022621065378189087,
+ "learning_rate": 0.0006,
+ "loss": 5.315716743469238,
+ "step": 385
+ },
+ {
+ "epoch": 5.3633187772925766,
+ "grad_norm": 0.023142270743846893,
+ "learning_rate": 0.0006,
+ "loss": 5.30342960357666,
+ "step": 386
+ },
+ {
+ "epoch": 5.377292576419214,
+ "grad_norm": 0.023623041808605194,
+ "learning_rate": 0.0006,
+ "loss": 5.250846862792969,
+ "step": 387
+ },
+ {
+ "epoch": 5.391266375545851,
+ "grad_norm": 0.02163100801408291,
+ "learning_rate": 0.0006,
+ "loss": 5.239641189575195,
+ "step": 388
+ },
+ {
+ "epoch": 5.405240174672489,
+ "grad_norm": 0.02896741032600403,
+ "learning_rate": 0.0006,
+ "loss": 5.2592010498046875,
+ "step": 389
+ },
+ {
+ "epoch": 5.419213973799127,
+ "grad_norm": 0.03766395151615143,
+ "learning_rate": 0.0006,
+ "loss": 5.253421783447266,
+ "step": 390
+ },
+ {
+ "epoch": 5.4331877729257645,
+ "grad_norm": 0.04409803822636604,
+ "learning_rate": 0.0006,
+ "loss": 5.271892070770264,
+ "step": 391
+ },
+ {
+ "epoch": 5.447161572052401,
+ "grad_norm": 0.040245357900857925,
+ "learning_rate": 0.0006,
+ "loss": 5.259224891662598,
+ "step": 392
+ },
+ {
+ "epoch": 5.461135371179039,
+ "grad_norm": 0.04515395313501358,
+ "learning_rate": 0.0006,
+ "loss": 5.236300468444824,
+ "step": 393
+ },
+ {
+ "epoch": 5.475109170305677,
+ "grad_norm": 0.060296714305877686,
+ "learning_rate": 0.0006,
+ "loss": 5.265594959259033,
+ "step": 394
+ },
+ {
+ "epoch": 5.489082969432315,
+ "grad_norm": 0.05405225604772568,
+ "learning_rate": 0.0006,
+ "loss": 5.262340545654297,
+ "step": 395
+ },
+ {
+ "epoch": 5.503056768558952,
+ "grad_norm": 0.0568138062953949,
+ "learning_rate": 0.0006,
+ "loss": 5.239948749542236,
+ "step": 396
+ },
+ {
+ "epoch": 5.517030567685589,
+ "grad_norm": 0.059859342873096466,
+ "learning_rate": 0.0006,
+ "loss": 5.189077854156494,
+ "step": 397
+ },
+ {
+ "epoch": 5.531004366812227,
+ "grad_norm": 0.053871408104896545,
+ "learning_rate": 0.0006,
+ "loss": 5.270648956298828,
+ "step": 398
+ },
+ {
+ "epoch": 5.544978165938865,
+ "grad_norm": 0.06081297993659973,
+ "learning_rate": 0.0006,
+ "loss": 5.314695835113525,
+ "step": 399
+ },
+ {
+ "epoch": 5.558951965065502,
+ "grad_norm": 0.0646715834736824,
+ "learning_rate": 0.0006,
+ "loss": 5.286482810974121,
+ "step": 400
+ },
+ {
+ "epoch": 5.5729257641921395,
+ "grad_norm": 0.05934286117553711,
+ "learning_rate": 0.0006,
+ "loss": 5.247529983520508,
+ "step": 401
+ },
+ {
+ "epoch": 5.586899563318777,
+ "grad_norm": 0.05270497500896454,
+ "learning_rate": 0.0006,
+ "loss": 5.213264465332031,
+ "step": 402
+ },
+ {
+ "epoch": 5.600873362445415,
+ "grad_norm": 0.03454767167568207,
+ "learning_rate": 0.0006,
+ "loss": 5.234180450439453,
+ "step": 403
+ },
+ {
+ "epoch": 5.614847161572053,
+ "grad_norm": 0.04350962117314339,
+ "learning_rate": 0.0006,
+ "loss": 5.2320332527160645,
+ "step": 404
+ },
+ {
+ "epoch": 5.62882096069869,
+ "grad_norm": 0.04721181467175484,
+ "learning_rate": 0.0006,
+ "loss": 5.228950023651123,
+ "step": 405
+ },
+ {
+ "epoch": 5.642794759825327,
+ "grad_norm": 0.03711158409714699,
+ "learning_rate": 0.0006,
+ "loss": 5.234259605407715,
+ "step": 406
+ },
+ {
+ "epoch": 5.656768558951965,
+ "grad_norm": 0.029691185802221298,
+ "learning_rate": 0.0006,
+ "loss": 5.183767795562744,
+ "step": 407
+ },
+ {
+ "epoch": 5.670742358078603,
+ "grad_norm": 0.03253520280122757,
+ "learning_rate": 0.0006,
+ "loss": 5.224790573120117,
+ "step": 408
+ },
+ {
+ "epoch": 5.68471615720524,
+ "grad_norm": 0.026891207322478294,
+ "learning_rate": 0.0006,
+ "loss": 5.219671249389648,
+ "step": 409
+ },
+ {
+ "epoch": 5.698689956331878,
+ "grad_norm": 0.024443313479423523,
+ "learning_rate": 0.0006,
+ "loss": 5.177947044372559,
+ "step": 410
+ },
+ {
+ "epoch": 5.712663755458515,
+ "grad_norm": 0.024358445778489113,
+ "learning_rate": 0.0006,
+ "loss": 5.184648513793945,
+ "step": 411
+ },
+ {
+ "epoch": 5.726637554585153,
+ "grad_norm": 0.038056857883930206,
+ "learning_rate": 0.0006,
+ "loss": 5.213315010070801,
+ "step": 412
+ },
+ {
+ "epoch": 5.74061135371179,
+ "grad_norm": 0.05382931977510452,
+ "learning_rate": 0.0006,
+ "loss": 5.188442230224609,
+ "step": 413
+ },
+ {
+ "epoch": 5.754585152838428,
+ "grad_norm": 0.04695626348257065,
+ "learning_rate": 0.0006,
+ "loss": 5.214473724365234,
+ "step": 414
+ },
+ {
+ "epoch": 5.7685589519650655,
+ "grad_norm": 0.03373295068740845,
+ "learning_rate": 0.0006,
+ "loss": 5.187349319458008,
+ "step": 415
+ },
+ {
+ "epoch": 5.782532751091703,
+ "grad_norm": 0.04209282621741295,
+ "learning_rate": 0.0006,
+ "loss": 5.215581893920898,
+ "step": 416
+ },
+ {
+ "epoch": 5.796506550218341,
+ "grad_norm": 0.036461904644966125,
+ "learning_rate": 0.0006,
+ "loss": 5.148530006408691,
+ "step": 417
+ },
+ {
+ "epoch": 5.810480349344978,
+ "grad_norm": 0.02530442364513874,
+ "learning_rate": 0.0006,
+ "loss": 5.143393039703369,
+ "step": 418
+ },
+ {
+ "epoch": 5.824454148471616,
+ "grad_norm": 0.02545030415058136,
+ "learning_rate": 0.0006,
+ "loss": 5.167602062225342,
+ "step": 419
+ },
+ {
+ "epoch": 5.8384279475982535,
+ "grad_norm": 0.024862848222255707,
+ "learning_rate": 0.0006,
+ "loss": 5.133827209472656,
+ "step": 420
+ },
+ {
+ "epoch": 5.85240174672489,
+ "grad_norm": 0.0243727695196867,
+ "learning_rate": 0.0006,
+ "loss": 5.196236610412598,
+ "step": 421
+ },
+ {
+ "epoch": 5.866375545851528,
+ "grad_norm": 0.031052641570568085,
+ "learning_rate": 0.0006,
+ "loss": 5.163963317871094,
+ "step": 422
+ },
+ {
+ "epoch": 5.880349344978166,
+ "grad_norm": 0.03085985779762268,
+ "learning_rate": 0.0006,
+ "loss": 5.133022308349609,
+ "step": 423
+ },
+ {
+ "epoch": 5.894323144104804,
+ "grad_norm": 0.026254380121827126,
+ "learning_rate": 0.0006,
+ "loss": 5.126164436340332,
+ "step": 424
+ },
+ {
+ "epoch": 5.908296943231441,
+ "grad_norm": 0.02083180658519268,
+ "learning_rate": 0.0006,
+ "loss": 5.102797508239746,
+ "step": 425
+ },
+ {
+ "epoch": 5.922270742358078,
+ "grad_norm": 0.02210022322833538,
+ "learning_rate": 0.0006,
+ "loss": 5.079900741577148,
+ "step": 426
+ },
+ {
+ "epoch": 5.936244541484716,
+ "grad_norm": 0.024237696081399918,
+ "learning_rate": 0.0006,
+ "loss": 5.131382942199707,
+ "step": 427
+ },
+ {
+ "epoch": 5.950218340611354,
+ "grad_norm": 0.03174173831939697,
+ "learning_rate": 0.0006,
+ "loss": 5.12271785736084,
+ "step": 428
+ },
+ {
+ "epoch": 5.964192139737992,
+ "grad_norm": 0.035321734845638275,
+ "learning_rate": 0.0006,
+ "loss": 5.096363067626953,
+ "step": 429
+ },
+ {
+ "epoch": 5.978165938864628,
+ "grad_norm": 0.03945434093475342,
+ "learning_rate": 0.0006,
+ "loss": 5.104191780090332,
+ "step": 430
+ },
+ {
+ "epoch": 5.992139737991266,
+ "grad_norm": 0.03119991160929203,
+ "learning_rate": 0.0006,
+ "loss": 5.088006973266602,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.025646768510341644,
+ "learning_rate": 0.0006,
+ "loss": 5.060527801513672,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.1733880043029785,
+ "eval_runtime": 49.9632,
+ "eval_samples_per_second": 48.876,
+ "eval_steps_per_second": 1.541,
+ "step": 432
+ },
+ {
+ "epoch": 6.013973799126638,
+ "grad_norm": 0.04027649387717247,
+ "learning_rate": 0.0006,
+ "loss": 5.070117473602295,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279475982532755,
+ "grad_norm": 0.04872274026274681,
+ "learning_rate": 0.0006,
+ "loss": 5.076330184936523,
+ "step": 434
+ },
+ {
+ "epoch": 6.041921397379912,
+ "grad_norm": 0.044163160026073456,
+ "learning_rate": 0.0006,
+ "loss": 5.079638481140137,
+ "step": 435
+ },
+ {
+ "epoch": 6.05589519650655,
+ "grad_norm": 0.051925189793109894,
+ "learning_rate": 0.0006,
+ "loss": 5.077970027923584,
+ "step": 436
+ },
+ {
+ "epoch": 6.069868995633188,
+ "grad_norm": 0.06317602097988129,
+ "learning_rate": 0.0006,
+ "loss": 5.077326774597168,
+ "step": 437
+ },
+ {
+ "epoch": 6.083842794759826,
+ "grad_norm": 0.05190538242459297,
+ "learning_rate": 0.0006,
+ "loss": 5.078523635864258,
+ "step": 438
+ },
+ {
+ "epoch": 6.097816593886463,
+ "grad_norm": 0.054743602871894836,
+ "learning_rate": 0.0006,
+ "loss": 5.041546821594238,
+ "step": 439
+ },
+ {
+ "epoch": 6.1117903930131,
+ "grad_norm": 0.0473523885011673,
+ "learning_rate": 0.0006,
+ "loss": 5.055340766906738,
+ "step": 440
+ },
+ {
+ "epoch": 6.125764192139738,
+ "grad_norm": 0.04575403407216072,
+ "learning_rate": 0.0006,
+ "loss": 5.078280925750732,
+ "step": 441
+ },
+ {
+ "epoch": 6.139737991266376,
+ "grad_norm": 0.04004313051700592,
+ "learning_rate": 0.0006,
+ "loss": 5.0551252365112305,
+ "step": 442
+ },
+ {
+ "epoch": 6.153711790393013,
+ "grad_norm": 0.04324577748775482,
+ "learning_rate": 0.0006,
+ "loss": 5.052831649780273,
+ "step": 443
+ },
+ {
+ "epoch": 6.1676855895196505,
+ "grad_norm": 0.05479790270328522,
+ "learning_rate": 0.0006,
+ "loss": 5.075335502624512,
+ "step": 444
+ },
+ {
+ "epoch": 6.181659388646288,
+ "grad_norm": 0.05768252909183502,
+ "learning_rate": 0.0006,
+ "loss": 5.076082706451416,
+ "step": 445
+ },
+ {
+ "epoch": 6.195633187772926,
+ "grad_norm": 0.05240596458315849,
+ "learning_rate": 0.0006,
+ "loss": 5.058586120605469,
+ "step": 446
+ },
+ {
+ "epoch": 6.209606986899563,
+ "grad_norm": 0.0645335391163826,
+ "learning_rate": 0.0006,
+ "loss": 5.069242477416992,
+ "step": 447
+ },
+ {
+ "epoch": 6.223580786026201,
+ "grad_norm": 0.07776601612567902,
+ "learning_rate": 0.0006,
+ "loss": 5.100368499755859,
+ "step": 448
+ },
+ {
+ "epoch": 6.2375545851528384,
+ "grad_norm": 0.08278049528598785,
+ "learning_rate": 0.0006,
+ "loss": 5.109698295593262,
+ "step": 449
+ },
+ {
+ "epoch": 6.251528384279476,
+ "grad_norm": 0.07187525182962418,
+ "learning_rate": 0.0006,
+ "loss": 5.08582878112793,
+ "step": 450
+ },
+ {
+ "epoch": 6.265502183406113,
+ "grad_norm": 0.07394885271787643,
+ "learning_rate": 0.0006,
+ "loss": 5.06748628616333,
+ "step": 451
+ },
+ {
+ "epoch": 6.279475982532751,
+ "grad_norm": 0.06124480068683624,
+ "learning_rate": 0.0006,
+ "loss": 5.116754531860352,
+ "step": 452
+ },
+ {
+ "epoch": 6.293449781659389,
+ "grad_norm": 0.04062265530228615,
+ "learning_rate": 0.0006,
+ "loss": 5.04876184463501,
+ "step": 453
+ },
+ {
+ "epoch": 6.307423580786026,
+ "grad_norm": 0.04309544339776039,
+ "learning_rate": 0.0006,
+ "loss": 5.038376331329346,
+ "step": 454
+ },
+ {
+ "epoch": 6.321397379912664,
+ "grad_norm": 0.041932251304388046,
+ "learning_rate": 0.0006,
+ "loss": 5.071001052856445,
+ "step": 455
+ },
+ {
+ "epoch": 6.335371179039301,
+ "grad_norm": 0.033776845782995224,
+ "learning_rate": 0.0006,
+ "loss": 5.006098747253418,
+ "step": 456
+ },
+ {
+ "epoch": 6.349344978165939,
+ "grad_norm": 0.034641820937395096,
+ "learning_rate": 0.0006,
+ "loss": 4.992915153503418,
+ "step": 457
+ },
+ {
+ "epoch": 6.3633187772925766,
+ "grad_norm": 0.023475229740142822,
+ "learning_rate": 0.0006,
+ "loss": 5.044340133666992,
+ "step": 458
+ },
+ {
+ "epoch": 6.377292576419214,
+ "grad_norm": 0.02673504501581192,
+ "learning_rate": 0.0006,
+ "loss": 4.998212814331055,
+ "step": 459
+ },
+ {
+ "epoch": 6.391266375545851,
+ "grad_norm": 0.02482164464890957,
+ "learning_rate": 0.0006,
+ "loss": 5.010951042175293,
+ "step": 460
+ },
+ {
+ "epoch": 6.405240174672489,
+ "grad_norm": 0.022635847330093384,
+ "learning_rate": 0.0006,
+ "loss": 4.977993965148926,
+ "step": 461
+ },
+ {
+ "epoch": 6.419213973799127,
+ "grad_norm": 0.023006808012723923,
+ "learning_rate": 0.0006,
+ "loss": 4.947575569152832,
+ "step": 462
+ },
+ {
+ "epoch": 6.4331877729257645,
+ "grad_norm": 0.02624397724866867,
+ "learning_rate": 0.0006,
+ "loss": 4.977143287658691,
+ "step": 463
+ },
+ {
+ "epoch": 6.447161572052401,
+ "grad_norm": 0.03280187025666237,
+ "learning_rate": 0.0006,
+ "loss": 4.941946029663086,
+ "step": 464
+ },
+ {
+ "epoch": 6.461135371179039,
+ "grad_norm": 0.04020314663648605,
+ "learning_rate": 0.0006,
+ "loss": 4.947107315063477,
+ "step": 465
+ },
+ {
+ "epoch": 6.475109170305677,
+ "grad_norm": 0.037292513996362686,
+ "learning_rate": 0.0006,
+ "loss": 4.940674781799316,
+ "step": 466
+ },
+ {
+ "epoch": 6.489082969432315,
+ "grad_norm": 0.03219081461429596,
+ "learning_rate": 0.0006,
+ "loss": 4.945491790771484,
+ "step": 467
+ },
+ {
+ "epoch": 6.503056768558952,
+ "grad_norm": 0.034181494265794754,
+ "learning_rate": 0.0006,
+ "loss": 4.948554039001465,
+ "step": 468
+ },
+ {
+ "epoch": 6.517030567685589,
+ "grad_norm": 0.03098447248339653,
+ "learning_rate": 0.0006,
+ "loss": 4.923150062561035,
+ "step": 469
+ },
+ {
+ "epoch": 6.531004366812227,
+ "grad_norm": 0.026002254337072372,
+ "learning_rate": 0.0006,
+ "loss": 4.9629106521606445,
+ "step": 470
+ },
+ {
+ "epoch": 6.544978165938865,
+ "grad_norm": 0.02463129162788391,
+ "learning_rate": 0.0006,
+ "loss": 4.9400787353515625,
+ "step": 471
+ },
+ {
+ "epoch": 6.558951965065502,
+ "grad_norm": 0.025506779551506042,
+ "learning_rate": 0.0006,
+ "loss": 4.945688247680664,
+ "step": 472
+ },
+ {
+ "epoch": 6.5729257641921395,
+ "grad_norm": 0.021885665133595467,
+ "learning_rate": 0.0006,
+ "loss": 4.893912315368652,
+ "step": 473
+ },
+ {
+ "epoch": 6.586899563318777,
+ "grad_norm": 0.023528503254055977,
+ "learning_rate": 0.0006,
+ "loss": 4.948110580444336,
+ "step": 474
+ },
+ {
+ "epoch": 6.600873362445415,
+ "grad_norm": 0.02838003821671009,
+ "learning_rate": 0.0006,
+ "loss": 4.919154167175293,
+ "step": 475
+ },
+ {
+ "epoch": 6.614847161572053,
+ "grad_norm": 0.028782688081264496,
+ "learning_rate": 0.0006,
+ "loss": 4.89210319519043,
+ "step": 476
+ },
+ {
+ "epoch": 6.62882096069869,
+ "grad_norm": 0.02549571916460991,
+ "learning_rate": 0.0006,
+ "loss": 4.903683185577393,
+ "step": 477
+ },
+ {
+ "epoch": 6.642794759825327,
+ "grad_norm": 0.030100561678409576,
+ "learning_rate": 0.0006,
+ "loss": 4.907907485961914,
+ "step": 478
+ },
+ {
+ "epoch": 6.656768558951965,
+ "grad_norm": 0.03853096067905426,
+ "learning_rate": 0.0006,
+ "loss": 4.916140556335449,
+ "step": 479
+ },
+ {
+ "epoch": 6.670742358078603,
+ "grad_norm": 0.0367201492190361,
+ "learning_rate": 0.0006,
+ "loss": 4.882139205932617,
+ "step": 480
+ },
+ {
+ "epoch": 6.68471615720524,
+ "grad_norm": 0.034214165061712265,
+ "learning_rate": 0.0006,
+ "loss": 4.883127212524414,
+ "step": 481
+ },
+ {
+ "epoch": 6.698689956331878,
+ "grad_norm": 0.03360319137573242,
+ "learning_rate": 0.0006,
+ "loss": 4.903620719909668,
+ "step": 482
+ },
+ {
+ "epoch": 6.712663755458515,
+ "grad_norm": 0.027687804773449898,
+ "learning_rate": 0.0006,
+ "loss": 4.874878883361816,
+ "step": 483
+ },
+ {
+ "epoch": 6.726637554585153,
+ "grad_norm": 0.028244799003005028,
+ "learning_rate": 0.0006,
+ "loss": 4.877007961273193,
+ "step": 484
+ },
+ {
+ "epoch": 6.74061135371179,
+ "grad_norm": 0.027868567034602165,
+ "learning_rate": 0.0006,
+ "loss": 4.893726348876953,
+ "step": 485
+ },
+ {
+ "epoch": 6.754585152838428,
+ "grad_norm": 0.036026086658239365,
+ "learning_rate": 0.0006,
+ "loss": 4.899372577667236,
+ "step": 486
+ },
+ {
+ "epoch": 6.7685589519650655,
+ "grad_norm": 0.03497552126646042,
+ "learning_rate": 0.0006,
+ "loss": 4.8735671043396,
+ "step": 487
+ },
+ {
+ "epoch": 6.782532751091703,
+ "grad_norm": 0.027166219428181648,
+ "learning_rate": 0.0006,
+ "loss": 4.848074913024902,
+ "step": 488
+ },
+ {
+ "epoch": 6.796506550218341,
+ "grad_norm": 0.029360221698880196,
+ "learning_rate": 0.0006,
+ "loss": 4.821354389190674,
+ "step": 489
+ },
+ {
+ "epoch": 6.810480349344978,
+ "grad_norm": 0.030428793281316757,
+ "learning_rate": 0.0006,
+ "loss": 4.857872009277344,
+ "step": 490
+ },
+ {
+ "epoch": 6.824454148471616,
+ "grad_norm": 0.033143963664770126,
+ "learning_rate": 0.0006,
+ "loss": 4.8857526779174805,
+ "step": 491
+ },
+ {
+ "epoch": 6.8384279475982535,
+ "grad_norm": 0.03193509578704834,
+ "learning_rate": 0.0006,
+ "loss": 4.841046333312988,
+ "step": 492
+ },
+ {
+ "epoch": 6.85240174672489,
+ "grad_norm": 0.034551024436950684,
+ "learning_rate": 0.0006,
+ "loss": 4.857826232910156,
+ "step": 493
+ },
+ {
+ "epoch": 6.866375545851528,
+ "grad_norm": 0.04612463712692261,
+ "learning_rate": 0.0006,
+ "loss": 4.880589485168457,
+ "step": 494
+ },
+ {
+ "epoch": 6.880349344978166,
+ "grad_norm": 0.04604615643620491,
+ "learning_rate": 0.0006,
+ "loss": 4.836089134216309,
+ "step": 495
+ },
+ {
+ "epoch": 6.894323144104804,
+ "grad_norm": 0.04121214151382446,
+ "learning_rate": 0.0006,
+ "loss": 4.859458923339844,
+ "step": 496
+ },
+ {
+ "epoch": 6.908296943231441,
+ "grad_norm": 0.03569377213716507,
+ "learning_rate": 0.0006,
+ "loss": 4.846658706665039,
+ "step": 497
+ },
+ {
+ "epoch": 6.922270742358078,
+ "grad_norm": 0.03878311067819595,
+ "learning_rate": 0.0006,
+ "loss": 4.828747749328613,
+ "step": 498
+ },
+ {
+ "epoch": 6.936244541484716,
+ "grad_norm": 0.0379655621945858,
+ "learning_rate": 0.0006,
+ "loss": 4.7911152839660645,
+ "step": 499
+ },
+ {
+ "epoch": 6.950218340611354,
+ "grad_norm": 0.03329150751233101,
+ "learning_rate": 0.0006,
+ "loss": 4.8190741539001465,
+ "step": 500
+ },
+ {
+ "epoch": 6.964192139737992,
+ "grad_norm": 0.0386258140206337,
+ "learning_rate": 0.0006,
+ "loss": 4.826594352722168,
+ "step": 501
+ },
+ {
+ "epoch": 6.978165938864628,
+ "grad_norm": 0.043440066277980804,
+ "learning_rate": 0.0006,
+ "loss": 4.868552207946777,
+ "step": 502
+ },
+ {
+ "epoch": 6.992139737991266,
+ "grad_norm": 0.039522934705019,
+ "learning_rate": 0.0006,
+ "loss": 4.766866683959961,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.038620468229055405,
+ "learning_rate": 0.0006,
+ "loss": 4.828839302062988,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 4.907761573791504,
+ "eval_runtime": 49.951,
+ "eval_samples_per_second": 48.888,
+ "eval_steps_per_second": 1.542,
+ "step": 504
+ },
+ {
+ "epoch": 7.013973799126638,
+ "grad_norm": 0.040495287626981735,
+ "learning_rate": 0.0006,
+ "loss": 4.755504608154297,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279475982532755,
+ "grad_norm": 0.04684276506304741,
+ "learning_rate": 0.0006,
+ "loss": 4.79603385925293,
+ "step": 506
+ },
+ {
+ "epoch": 7.041921397379912,
+ "grad_norm": 0.057431042194366455,
+ "learning_rate": 0.0006,
+ "loss": 4.798529148101807,
+ "step": 507
+ },
+ {
+ "epoch": 7.05589519650655,
+ "grad_norm": 0.06289757043123245,
+ "learning_rate": 0.0006,
+ "loss": 4.819248199462891,
+ "step": 508
+ },
+ {
+ "epoch": 7.069868995633188,
+ "grad_norm": 0.07083664834499359,
+ "learning_rate": 0.0006,
+ "loss": 4.803141117095947,
+ "step": 509
+ },
+ {
+ "epoch": 7.083842794759826,
+ "grad_norm": 0.06081623584032059,
+ "learning_rate": 0.0006,
+ "loss": 4.743819236755371,
+ "step": 510
+ },
+ {
+ "epoch": 7.097816593886463,
+ "grad_norm": 0.05454877391457558,
+ "learning_rate": 0.0006,
+ "loss": 4.854677200317383,
+ "step": 511
+ },
+ {
+ "epoch": 7.1117903930131,
+ "grad_norm": 0.05157916992902756,
+ "learning_rate": 0.0006,
+ "loss": 4.797488212585449,
+ "step": 512
+ },
+ {
+ "epoch": 7.125764192139738,
+ "grad_norm": 0.04780645668506622,
+ "learning_rate": 0.0006,
+ "loss": 4.824231147766113,
+ "step": 513
+ },
+ {
+ "epoch": 7.139737991266376,
+ "grad_norm": 0.058745913207530975,
+ "learning_rate": 0.0006,
+ "loss": 4.79942512512207,
+ "step": 514
+ },
+ {
+ "epoch": 7.153711790393013,
+ "grad_norm": 0.07210857421159744,
+ "learning_rate": 0.0006,
+ "loss": 4.857621192932129,
+ "step": 515
+ },
+ {
+ "epoch": 7.1676855895196505,
+ "grad_norm": 0.0681944340467453,
+ "learning_rate": 0.0006,
+ "loss": 4.798557281494141,
+ "step": 516
+ },
+ {
+ "epoch": 7.181659388646288,
+ "grad_norm": 0.06716784089803696,
+ "learning_rate": 0.0006,
+ "loss": 4.81382942199707,
+ "step": 517
+ },
+ {
+ "epoch": 7.195633187772926,
+ "grad_norm": 0.0700073093175888,
+ "learning_rate": 0.0006,
+ "loss": 4.811261177062988,
+ "step": 518
+ },
+ {
+ "epoch": 7.209606986899563,
+ "grad_norm": 0.05830753222107887,
+ "learning_rate": 0.0006,
+ "loss": 4.818418025970459,
+ "step": 519
+ },
+ {
+ "epoch": 7.223580786026201,
+ "grad_norm": 0.06053008884191513,
+ "learning_rate": 0.0006,
+ "loss": 4.830060005187988,
+ "step": 520
+ },
+ {
+ "epoch": 7.2375545851528384,
+ "grad_norm": 0.04992729425430298,
+ "learning_rate": 0.0006,
+ "loss": 4.820477485656738,
+ "step": 521
+ },
+ {
+ "epoch": 7.251528384279476,
+ "grad_norm": 0.03906334191560745,
+ "learning_rate": 0.0006,
+ "loss": 4.776924133300781,
+ "step": 522
+ },
+ {
+ "epoch": 7.265502183406113,
+ "grad_norm": 0.041200339794158936,
+ "learning_rate": 0.0006,
+ "loss": 4.795502662658691,
+ "step": 523
+ },
+ {
+ "epoch": 7.279475982532751,
+ "grad_norm": 0.03866710141301155,
+ "learning_rate": 0.0006,
+ "loss": 4.748326778411865,
+ "step": 524
+ },
+ {
+ "epoch": 7.293449781659389,
+ "grad_norm": 0.03892578184604645,
+ "learning_rate": 0.0006,
+ "loss": 4.731060028076172,
+ "step": 525
+ },
+ {
+ "epoch": 7.307423580786026,
+ "grad_norm": 0.034929852932691574,
+ "learning_rate": 0.0006,
+ "loss": 4.769538879394531,
+ "step": 526
+ },
+ {
+ "epoch": 7.321397379912664,
+ "grad_norm": 0.03499983623623848,
+ "learning_rate": 0.0006,
+ "loss": 4.750111103057861,
+ "step": 527
+ },
+ {
+ "epoch": 7.335371179039301,
+ "grad_norm": 0.023694142699241638,
+ "learning_rate": 0.0006,
+ "loss": 4.741044998168945,
+ "step": 528
+ },
+ {
+ "epoch": 7.349344978165939,
+ "grad_norm": 0.02783721685409546,
+ "learning_rate": 0.0006,
+ "loss": 4.733529090881348,
+ "step": 529
+ },
+ {
+ "epoch": 7.3633187772925766,
+ "grad_norm": 0.022906454280018806,
+ "learning_rate": 0.0006,
+ "loss": 4.713002681732178,
+ "step": 530
+ },
+ {
+ "epoch": 7.377292576419214,
+ "grad_norm": 0.020011693239212036,
+ "learning_rate": 0.0006,
+ "loss": 4.6840620040893555,
+ "step": 531
+ },
+ {
+ "epoch": 7.391266375545851,
+ "grad_norm": 0.019985370337963104,
+ "learning_rate": 0.0006,
+ "loss": 4.695000171661377,
+ "step": 532
+ },
+ {
+ "epoch": 7.405240174672489,
+ "grad_norm": 0.019822653383016586,
+ "learning_rate": 0.0006,
+ "loss": 4.709036350250244,
+ "step": 533
+ },
+ {
+ "epoch": 7.419213973799127,
+ "grad_norm": 0.020615894347429276,
+ "learning_rate": 0.0006,
+ "loss": 4.679416656494141,
+ "step": 534
+ },
+ {
+ "epoch": 7.4331877729257645,
+ "grad_norm": 0.01958257146179676,
+ "learning_rate": 0.0006,
+ "loss": 4.704957008361816,
+ "step": 535
+ },
+ {
+ "epoch": 7.447161572052401,
+ "grad_norm": 0.02040509134531021,
+ "learning_rate": 0.0006,
+ "loss": 4.651505470275879,
+ "step": 536
+ },
+ {
+ "epoch": 7.461135371179039,
+ "grad_norm": 0.01626836135983467,
+ "learning_rate": 0.0006,
+ "loss": 4.694278240203857,
+ "step": 537
+ },
+ {
+ "epoch": 7.475109170305677,
+ "grad_norm": 0.01660163700580597,
+ "learning_rate": 0.0006,
+ "loss": 4.662658214569092,
+ "step": 538
+ },
+ {
+ "epoch": 7.489082969432315,
+ "grad_norm": 0.016483576968312263,
+ "learning_rate": 0.0006,
+ "loss": 4.695555686950684,
+ "step": 539
+ },
+ {
+ "epoch": 7.503056768558952,
+ "grad_norm": 0.018176909536123276,
+ "learning_rate": 0.0006,
+ "loss": 4.646458625793457,
+ "step": 540
+ },
+ {
+ "epoch": 7.517030567685589,
+ "grad_norm": 0.018314503133296967,
+ "learning_rate": 0.0006,
+ "loss": 4.643884181976318,
+ "step": 541
+ },
+ {
+ "epoch": 7.531004366812227,
+ "grad_norm": 0.016406886279582977,
+ "learning_rate": 0.0006,
+ "loss": 4.637638092041016,
+ "step": 542
+ },
+ {
+ "epoch": 7.544978165938865,
+ "grad_norm": 0.017510421574115753,
+ "learning_rate": 0.0006,
+ "loss": 4.6297926902771,
+ "step": 543
+ },
+ {
+ "epoch": 7.558951965065502,
+ "grad_norm": 0.021575570106506348,
+ "learning_rate": 0.0006,
+ "loss": 4.657093048095703,
+ "step": 544
+ },
+ {
+ "epoch": 7.5729257641921395,
+ "grad_norm": 0.024670056998729706,
+ "learning_rate": 0.0006,
+ "loss": 4.637840270996094,
+ "step": 545
+ },
+ {
+ "epoch": 7.586899563318777,
+ "grad_norm": 0.026005825027823448,
+ "learning_rate": 0.0006,
+ "loss": 4.622672080993652,
+ "step": 546
+ },
+ {
+ "epoch": 7.600873362445415,
+ "grad_norm": 0.024355988949537277,
+ "learning_rate": 0.0006,
+ "loss": 4.627206802368164,
+ "step": 547
+ },
+ {
+ "epoch": 7.614847161572053,
+ "grad_norm": 0.025826960802078247,
+ "learning_rate": 0.0006,
+ "loss": 4.616837501525879,
+ "step": 548
+ },
+ {
+ "epoch": 7.62882096069869,
+ "grad_norm": 0.02809619903564453,
+ "learning_rate": 0.0006,
+ "loss": 4.643812656402588,
+ "step": 549
+ },
+ {
+ "epoch": 7.642794759825327,
+ "grad_norm": 0.023823536932468414,
+ "learning_rate": 0.0006,
+ "loss": 4.623858451843262,
+ "step": 550
+ },
+ {
+ "epoch": 7.656768558951965,
+ "grad_norm": 0.024948647245764732,
+ "learning_rate": 0.0006,
+ "loss": 4.635528564453125,
+ "step": 551
+ },
+ {
+ "epoch": 7.670742358078603,
+ "grad_norm": 0.027852604165673256,
+ "learning_rate": 0.0006,
+ "loss": 4.606395721435547,
+ "step": 552
+ },
+ {
+ "epoch": 7.68471615720524,
+ "grad_norm": 0.031888775527477264,
+ "learning_rate": 0.0006,
+ "loss": 4.630072593688965,
+ "step": 553
+ },
+ {
+ "epoch": 7.698689956331878,
+ "grad_norm": 0.04423221945762634,
+ "learning_rate": 0.0006,
+ "loss": 4.592362880706787,
+ "step": 554
+ },
+ {
+ "epoch": 7.712663755458515,
+ "grad_norm": 0.05360350012779236,
+ "learning_rate": 0.0006,
+ "loss": 4.626799583435059,
+ "step": 555
+ },
+ {
+ "epoch": 7.726637554585153,
+ "grad_norm": 0.05218035727739334,
+ "learning_rate": 0.0006,
+ "loss": 4.591753005981445,
+ "step": 556
+ },
+ {
+ "epoch": 7.74061135371179,
+ "grad_norm": 0.04740380123257637,
+ "learning_rate": 0.0006,
+ "loss": 4.611865520477295,
+ "step": 557
+ },
+ {
+ "epoch": 7.754585152838428,
+ "grad_norm": 0.04325862228870392,
+ "learning_rate": 0.0006,
+ "loss": 4.585417747497559,
+ "step": 558
+ },
+ {
+ "epoch": 7.7685589519650655,
+ "grad_norm": 0.047380927950143814,
+ "learning_rate": 0.0006,
+ "loss": 4.595690727233887,
+ "step": 559
+ },
+ {
+ "epoch": 7.782532751091703,
+ "grad_norm": 0.05398833379149437,
+ "learning_rate": 0.0006,
+ "loss": 4.670032024383545,
+ "step": 560
+ },
+ {
+ "epoch": 7.796506550218341,
+ "grad_norm": 0.05550206080079079,
+ "learning_rate": 0.0006,
+ "loss": 4.603083610534668,
+ "step": 561
+ },
+ {
+ "epoch": 7.810480349344978,
+ "grad_norm": 0.048703186213970184,
+ "learning_rate": 0.0006,
+ "loss": 4.60882568359375,
+ "step": 562
+ },
+ {
+ "epoch": 7.824454148471616,
+ "grad_norm": 0.03849068656563759,
+ "learning_rate": 0.0006,
+ "loss": 4.600196838378906,
+ "step": 563
+ },
+ {
+ "epoch": 7.8384279475982535,
+ "grad_norm": 0.04322432354092598,
+ "learning_rate": 0.0006,
+ "loss": 4.635777473449707,
+ "step": 564
+ },
+ {
+ "epoch": 7.85240174672489,
+ "grad_norm": 0.03958692029118538,
+ "learning_rate": 0.0006,
+ "loss": 4.586699962615967,
+ "step": 565
+ },
+ {
+ "epoch": 7.866375545851528,
+ "grad_norm": 0.035496462136507034,
+ "learning_rate": 0.0006,
+ "loss": 4.602683067321777,
+ "step": 566
+ },
+ {
+ "epoch": 7.880349344978166,
+ "grad_norm": 0.038870155811309814,
+ "learning_rate": 0.0006,
+ "loss": 4.635684013366699,
+ "step": 567
+ },
+ {
+ "epoch": 7.894323144104804,
+ "grad_norm": 0.038049351423978806,
+ "learning_rate": 0.0006,
+ "loss": 4.5812602043151855,
+ "step": 568
+ },
+ {
+ "epoch": 7.908296943231441,
+ "grad_norm": 0.029217766597867012,
+ "learning_rate": 0.0006,
+ "loss": 4.560367584228516,
+ "step": 569
+ },
+ {
+ "epoch": 7.922270742358078,
+ "grad_norm": 0.028376970440149307,
+ "learning_rate": 0.0006,
+ "loss": 4.578996658325195,
+ "step": 570
+ },
+ {
+ "epoch": 7.936244541484716,
+ "grad_norm": 0.035108938813209534,
+ "learning_rate": 0.0006,
+ "loss": 4.554547309875488,
+ "step": 571
+ },
+ {
+ "epoch": 7.950218340611354,
+ "grad_norm": 0.02971036173403263,
+ "learning_rate": 0.0006,
+ "loss": 4.5761919021606445,
+ "step": 572
+ },
+ {
+ "epoch": 7.964192139737992,
+ "grad_norm": 0.02690828964114189,
+ "learning_rate": 0.0006,
+ "loss": 4.568772315979004,
+ "step": 573
+ },
+ {
+ "epoch": 7.978165938864628,
+ "grad_norm": 0.023910939693450928,
+ "learning_rate": 0.0006,
+ "loss": 4.56700325012207,
+ "step": 574
+ },
+ {
+ "epoch": 7.992139737991266,
+ "grad_norm": 0.02027987875044346,
+ "learning_rate": 0.0006,
+ "loss": 4.563353538513184,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.02621232345700264,
+ "learning_rate": 0.0006,
+ "loss": 4.52655029296875,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.659845352172852,
+ "eval_runtime": 54.5122,
+ "eval_samples_per_second": 44.797,
+ "eval_steps_per_second": 1.413,
+ "step": 576
+ },
+ {
+ "epoch": 8.013973799126637,
+ "grad_norm": 0.024295445531606674,
+ "learning_rate": 0.0006,
+ "loss": 4.514026641845703,
+ "step": 577
+ },
+ {
+ "epoch": 8.027947598253276,
+ "grad_norm": 0.029430922120809555,
+ "learning_rate": 0.0006,
+ "loss": 4.479931831359863,
+ "step": 578
+ },
+ {
+ "epoch": 8.041921397379912,
+ "grad_norm": 0.03156977519392967,
+ "learning_rate": 0.0006,
+ "loss": 4.529452323913574,
+ "step": 579
+ },
+ {
+ "epoch": 8.055895196506551,
+ "grad_norm": 0.03411492332816124,
+ "learning_rate": 0.0006,
+ "loss": 4.501816749572754,
+ "step": 580
+ },
+ {
+ "epoch": 8.069868995633188,
+ "grad_norm": 0.03944215178489685,
+ "learning_rate": 0.0006,
+ "loss": 4.503504753112793,
+ "step": 581
+ },
+ {
+ "epoch": 8.083842794759825,
+ "grad_norm": 0.04511773958802223,
+ "learning_rate": 0.0006,
+ "loss": 4.481729984283447,
+ "step": 582
+ },
+ {
+ "epoch": 8.097816593886463,
+ "grad_norm": 0.03235149383544922,
+ "learning_rate": 0.0006,
+ "loss": 4.510499954223633,
+ "step": 583
+ },
+ {
+ "epoch": 8.1117903930131,
+ "grad_norm": 0.027723919600248337,
+ "learning_rate": 0.0006,
+ "loss": 4.492958068847656,
+ "step": 584
+ },
+ {
+ "epoch": 8.125764192139737,
+ "grad_norm": 0.033535368740558624,
+ "learning_rate": 0.0006,
+ "loss": 4.480009078979492,
+ "step": 585
+ },
+ {
+ "epoch": 8.139737991266376,
+ "grad_norm": 0.03412545099854469,
+ "learning_rate": 0.0006,
+ "loss": 4.464960098266602,
+ "step": 586
+ },
+ {
+ "epoch": 8.153711790393013,
+ "grad_norm": 0.03285292908549309,
+ "learning_rate": 0.0006,
+ "loss": 4.478358745574951,
+ "step": 587
+ },
+ {
+ "epoch": 8.167685589519651,
+ "grad_norm": 0.03460532799363136,
+ "learning_rate": 0.0006,
+ "loss": 4.490439414978027,
+ "step": 588
+ },
+ {
+ "epoch": 8.181659388646288,
+ "grad_norm": 0.037275977432727814,
+ "learning_rate": 0.0006,
+ "loss": 4.473151683807373,
+ "step": 589
+ },
+ {
+ "epoch": 8.195633187772925,
+ "grad_norm": 0.03485316038131714,
+ "learning_rate": 0.0006,
+ "loss": 4.491796493530273,
+ "step": 590
+ },
+ {
+ "epoch": 8.209606986899564,
+ "grad_norm": 0.03405699506402016,
+ "learning_rate": 0.0006,
+ "loss": 4.473565101623535,
+ "step": 591
+ },
+ {
+ "epoch": 8.2235807860262,
+ "grad_norm": 0.03975093364715576,
+ "learning_rate": 0.0006,
+ "loss": 4.494463920593262,
+ "step": 592
+ },
+ {
+ "epoch": 8.237554585152838,
+ "grad_norm": 0.03563615307211876,
+ "learning_rate": 0.0006,
+ "loss": 4.458979606628418,
+ "step": 593
+ },
+ {
+ "epoch": 8.251528384279476,
+ "grad_norm": 0.037183649837970734,
+ "learning_rate": 0.0006,
+ "loss": 4.4701948165893555,
+ "step": 594
+ },
+ {
+ "epoch": 8.265502183406113,
+ "grad_norm": 0.039340466260910034,
+ "learning_rate": 0.0006,
+ "loss": 4.489675521850586,
+ "step": 595
+ },
+ {
+ "epoch": 8.279475982532752,
+ "grad_norm": 0.03162173181772232,
+ "learning_rate": 0.0006,
+ "loss": 4.422170162200928,
+ "step": 596
+ },
+ {
+ "epoch": 8.293449781659389,
+ "grad_norm": 0.03257273510098457,
+ "learning_rate": 0.0006,
+ "loss": 4.467840194702148,
+ "step": 597
+ },
+ {
+ "epoch": 8.307423580786025,
+ "grad_norm": 0.028066672384738922,
+ "learning_rate": 0.0006,
+ "loss": 4.471856117248535,
+ "step": 598
+ },
+ {
+ "epoch": 8.321397379912664,
+ "grad_norm": 0.032139431685209274,
+ "learning_rate": 0.0006,
+ "loss": 4.485661029815674,
+ "step": 599
+ },
+ {
+ "epoch": 8.335371179039301,
+ "grad_norm": 0.03333858773112297,
+ "learning_rate": 0.0006,
+ "loss": 4.411584854125977,
+ "step": 600
+ },
+ {
+ "epoch": 8.34934497816594,
+ "grad_norm": 0.03705155476927757,
+ "learning_rate": 0.0006,
+ "loss": 4.466585159301758,
+ "step": 601
+ },
+ {
+ "epoch": 8.363318777292577,
+ "grad_norm": 0.03022557683289051,
+ "learning_rate": 0.0006,
+ "loss": 4.4287428855896,
+ "step": 602
+ },
+ {
+ "epoch": 8.377292576419213,
+ "grad_norm": 0.02911069616675377,
+ "learning_rate": 0.0006,
+ "loss": 4.432306289672852,
+ "step": 603
+ },
+ {
+ "epoch": 8.391266375545852,
+ "grad_norm": 0.0332532562315464,
+ "learning_rate": 0.0006,
+ "loss": 4.446920871734619,
+ "step": 604
+ },
+ {
+ "epoch": 8.405240174672489,
+ "grad_norm": 0.028356043621897697,
+ "learning_rate": 0.0006,
+ "loss": 4.41445779800415,
+ "step": 605
+ },
+ {
+ "epoch": 8.419213973799126,
+ "grad_norm": 0.026536710560321808,
+ "learning_rate": 0.0006,
+ "loss": 4.45195198059082,
+ "step": 606
+ },
+ {
+ "epoch": 8.433187772925764,
+ "grad_norm": 0.027183571830391884,
+ "learning_rate": 0.0006,
+ "loss": 4.482472896575928,
+ "step": 607
+ },
+ {
+ "epoch": 8.447161572052401,
+ "grad_norm": 0.02418459579348564,
+ "learning_rate": 0.0006,
+ "loss": 4.407785415649414,
+ "step": 608
+ },
+ {
+ "epoch": 8.46113537117904,
+ "grad_norm": 0.03382935747504234,
+ "learning_rate": 0.0006,
+ "loss": 4.457126140594482,
+ "step": 609
+ },
+ {
+ "epoch": 8.475109170305677,
+ "grad_norm": 0.0399114228785038,
+ "learning_rate": 0.0006,
+ "loss": 4.404670238494873,
+ "step": 610
+ },
+ {
+ "epoch": 8.489082969432314,
+ "grad_norm": 0.02914121001958847,
+ "learning_rate": 0.0006,
+ "loss": 4.385491371154785,
+ "step": 611
+ },
+ {
+ "epoch": 8.503056768558952,
+ "grad_norm": 0.024029329419136047,
+ "learning_rate": 0.0006,
+ "loss": 4.3807878494262695,
+ "step": 612
+ },
+ {
+ "epoch": 8.51703056768559,
+ "grad_norm": 0.024073908105492592,
+ "learning_rate": 0.0006,
+ "loss": 4.393002033233643,
+ "step": 613
+ },
+ {
+ "epoch": 8.531004366812226,
+ "grad_norm": 0.024022364988923073,
+ "learning_rate": 0.0006,
+ "loss": 4.44310188293457,
+ "step": 614
+ },
+ {
+ "epoch": 8.544978165938865,
+ "grad_norm": 0.02552313171327114,
+ "learning_rate": 0.0006,
+ "loss": 4.370255947113037,
+ "step": 615
+ },
+ {
+ "epoch": 8.558951965065502,
+ "grad_norm": 0.022251879796385765,
+ "learning_rate": 0.0006,
+ "loss": 4.366595268249512,
+ "step": 616
+ },
+ {
+ "epoch": 8.57292576419214,
+ "grad_norm": 0.022750860080122948,
+ "learning_rate": 0.0006,
+ "loss": 4.377684116363525,
+ "step": 617
+ },
+ {
+ "epoch": 8.586899563318777,
+ "grad_norm": 0.022422555834054947,
+ "learning_rate": 0.0006,
+ "loss": 4.397234916687012,
+ "step": 618
+ },
+ {
+ "epoch": 8.600873362445414,
+ "grad_norm": 0.02737540379166603,
+ "learning_rate": 0.0006,
+ "loss": 4.406569957733154,
+ "step": 619
+ },
+ {
+ "epoch": 8.614847161572053,
+ "grad_norm": 0.0230751670897007,
+ "learning_rate": 0.0006,
+ "loss": 4.37363862991333,
+ "step": 620
+ },
+ {
+ "epoch": 8.62882096069869,
+ "grad_norm": 0.02010422758758068,
+ "learning_rate": 0.0006,
+ "loss": 4.396723747253418,
+ "step": 621
+ },
+ {
+ "epoch": 8.642794759825328,
+ "grad_norm": 0.024875663220882416,
+ "learning_rate": 0.0006,
+ "loss": 4.382737159729004,
+ "step": 622
+ },
+ {
+ "epoch": 8.656768558951965,
+ "grad_norm": 0.026101084426045418,
+ "learning_rate": 0.0006,
+ "loss": 4.376001358032227,
+ "step": 623
+ },
+ {
+ "epoch": 8.670742358078602,
+ "grad_norm": 0.026131760329008102,
+ "learning_rate": 0.0006,
+ "loss": 4.392600059509277,
+ "step": 624
+ },
+ {
+ "epoch": 8.68471615720524,
+ "grad_norm": 0.02580229938030243,
+ "learning_rate": 0.0006,
+ "loss": 4.383554458618164,
+ "step": 625
+ },
+ {
+ "epoch": 8.698689956331878,
+ "grad_norm": 0.02919621206820011,
+ "learning_rate": 0.0006,
+ "loss": 4.369998455047607,
+ "step": 626
+ },
+ {
+ "epoch": 8.712663755458514,
+ "grad_norm": 0.03268479183316231,
+ "learning_rate": 0.0006,
+ "loss": 4.364940166473389,
+ "step": 627
+ },
+ {
+ "epoch": 8.726637554585153,
+ "grad_norm": 0.031615134328603745,
+ "learning_rate": 0.0006,
+ "loss": 4.354142189025879,
+ "step": 628
+ },
+ {
+ "epoch": 8.74061135371179,
+ "grad_norm": 0.03091943822801113,
+ "learning_rate": 0.0006,
+ "loss": 4.405896186828613,
+ "step": 629
+ },
+ {
+ "epoch": 8.754585152838429,
+ "grad_norm": 0.03459984436631203,
+ "learning_rate": 0.0006,
+ "loss": 4.386331558227539,
+ "step": 630
+ },
+ {
+ "epoch": 8.768558951965066,
+ "grad_norm": 0.03276519104838371,
+ "learning_rate": 0.0006,
+ "loss": 4.351153373718262,
+ "step": 631
+ },
+ {
+ "epoch": 8.782532751091702,
+ "grad_norm": 0.03300934657454491,
+ "learning_rate": 0.0006,
+ "loss": 4.364960670471191,
+ "step": 632
+ },
+ {
+ "epoch": 8.796506550218341,
+ "grad_norm": 0.03618944436311722,
+ "learning_rate": 0.0006,
+ "loss": 4.3519134521484375,
+ "step": 633
+ },
+ {
+ "epoch": 8.810480349344978,
+ "grad_norm": 0.03368232026696205,
+ "learning_rate": 0.0006,
+ "loss": 4.374147891998291,
+ "step": 634
+ },
+ {
+ "epoch": 8.824454148471617,
+ "grad_norm": 0.03252463415265083,
+ "learning_rate": 0.0006,
+ "loss": 4.367391586303711,
+ "step": 635
+ },
+ {
+ "epoch": 8.838427947598253,
+ "grad_norm": 0.03680579736828804,
+ "learning_rate": 0.0006,
+ "loss": 4.364116191864014,
+ "step": 636
+ },
+ {
+ "epoch": 8.85240174672489,
+ "grad_norm": 0.0317164771258831,
+ "learning_rate": 0.0006,
+ "loss": 4.379790306091309,
+ "step": 637
+ },
+ {
+ "epoch": 8.866375545851529,
+ "grad_norm": 0.031701602041721344,
+ "learning_rate": 0.0006,
+ "loss": 4.353549003601074,
+ "step": 638
+ },
+ {
+ "epoch": 8.880349344978166,
+ "grad_norm": 0.029211340472102165,
+ "learning_rate": 0.0006,
+ "loss": 4.343072891235352,
+ "step": 639
+ },
+ {
+ "epoch": 8.894323144104803,
+ "grad_norm": 0.02774505503475666,
+ "learning_rate": 0.0006,
+ "loss": 4.354020118713379,
+ "step": 640
+ },
+ {
+ "epoch": 8.908296943231441,
+ "grad_norm": 0.027463624253869057,
+ "learning_rate": 0.0006,
+ "loss": 4.354701519012451,
+ "step": 641
+ },
+ {
+ "epoch": 8.922270742358078,
+ "grad_norm": 0.023732105270028114,
+ "learning_rate": 0.0006,
+ "loss": 4.347830772399902,
+ "step": 642
+ },
+ {
+ "epoch": 8.936244541484717,
+ "grad_norm": 0.02339051477611065,
+ "learning_rate": 0.0006,
+ "loss": 4.342405319213867,
+ "step": 643
+ },
+ {
+ "epoch": 8.950218340611354,
+ "grad_norm": 0.023744868114590645,
+ "learning_rate": 0.0006,
+ "loss": 4.352578163146973,
+ "step": 644
+ },
+ {
+ "epoch": 8.96419213973799,
+ "grad_norm": 0.02563423290848732,
+ "learning_rate": 0.0006,
+ "loss": 4.37408971786499,
+ "step": 645
+ },
+ {
+ "epoch": 8.97816593886463,
+ "grad_norm": 0.031334877014160156,
+ "learning_rate": 0.0006,
+ "loss": 4.309673309326172,
+ "step": 646
+ },
+ {
+ "epoch": 8.992139737991266,
+ "grad_norm": 0.03283081576228142,
+ "learning_rate": 0.0006,
+ "loss": 4.348544597625732,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.03263505920767784,
+ "learning_rate": 0.0006,
+ "loss": 4.307372093200684,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.477582931518555,
+ "eval_runtime": 50.1212,
+ "eval_samples_per_second": 48.722,
+ "eval_steps_per_second": 1.536,
+ "step": 648
+ },
+ {
+ "epoch": 9.013973799126637,
+ "grad_norm": 0.038239408284425735,
+ "learning_rate": 0.0006,
+ "loss": 4.2784552574157715,
+ "step": 649
+ },
+ {
+ "epoch": 9.027947598253276,
+ "grad_norm": 0.044226426631212234,
+ "learning_rate": 0.0006,
+ "loss": 4.332424163818359,
+ "step": 650
+ },
+ {
+ "epoch": 9.041921397379912,
+ "grad_norm": 0.04743504151701927,
+ "learning_rate": 0.0006,
+ "loss": 4.303574085235596,
+ "step": 651
+ },
+ {
+ "epoch": 9.055895196506551,
+ "grad_norm": 0.04348866268992424,
+ "learning_rate": 0.0006,
+ "loss": 4.295550346374512,
+ "step": 652
+ },
+ {
+ "epoch": 9.069868995633188,
+ "grad_norm": 0.04830600693821907,
+ "learning_rate": 0.0006,
+ "loss": 4.2577619552612305,
+ "step": 653
+ },
+ {
+ "epoch": 9.083842794759825,
+ "grad_norm": 0.05154724419116974,
+ "learning_rate": 0.0006,
+ "loss": 4.314383506774902,
+ "step": 654
+ },
+ {
+ "epoch": 9.097816593886463,
+ "grad_norm": 0.044492293149232864,
+ "learning_rate": 0.0006,
+ "loss": 4.32614803314209,
+ "step": 655
+ },
+ {
+ "epoch": 9.1117903930131,
+ "grad_norm": 0.03842560201883316,
+ "learning_rate": 0.0006,
+ "loss": 4.273819446563721,
+ "step": 656
+ },
+ {
+ "epoch": 9.125764192139737,
+ "grad_norm": 0.043655358254909515,
+ "learning_rate": 0.0006,
+ "loss": 4.334014892578125,
+ "step": 657
+ },
+ {
+ "epoch": 9.139737991266376,
+ "grad_norm": 0.051922112703323364,
+ "learning_rate": 0.0006,
+ "loss": 4.308163642883301,
+ "step": 658
+ },
+ {
+ "epoch": 9.153711790393013,
+ "grad_norm": 0.049958787858486176,
+ "learning_rate": 0.0006,
+ "loss": 4.30555534362793,
+ "step": 659
+ },
+ {
+ "epoch": 9.167685589519651,
+ "grad_norm": 0.03839104622602463,
+ "learning_rate": 0.0006,
+ "loss": 4.316109657287598,
+ "step": 660
+ },
+ {
+ "epoch": 9.181659388646288,
+ "grad_norm": 0.03898056969046593,
+ "learning_rate": 0.0006,
+ "loss": 4.308863639831543,
+ "step": 661
+ },
+ {
+ "epoch": 9.195633187772925,
+ "grad_norm": 0.028817247599363327,
+ "learning_rate": 0.0006,
+ "loss": 4.300504684448242,
+ "step": 662
+ },
+ {
+ "epoch": 9.209606986899564,
+ "grad_norm": 0.030067335814237595,
+ "learning_rate": 0.0006,
+ "loss": 4.259067535400391,
+ "step": 663
+ },
+ {
+ "epoch": 9.2235807860262,
+ "grad_norm": 0.03195219859480858,
+ "learning_rate": 0.0006,
+ "loss": 4.3144426345825195,
+ "step": 664
+ },
+ {
+ "epoch": 9.237554585152838,
+ "grad_norm": 0.03194814175367355,
+ "learning_rate": 0.0006,
+ "loss": 4.259864330291748,
+ "step": 665
+ },
+ {
+ "epoch": 9.251528384279476,
+ "grad_norm": 0.02754005789756775,
+ "learning_rate": 0.0006,
+ "loss": 4.291876316070557,
+ "step": 666
+ },
+ {
+ "epoch": 9.265502183406113,
+ "grad_norm": 0.026083929464221,
+ "learning_rate": 0.0006,
+ "loss": 4.205921649932861,
+ "step": 667
+ },
+ {
+ "epoch": 9.279475982532752,
+ "grad_norm": 0.025165516883134842,
+ "learning_rate": 0.0006,
+ "loss": 4.23714017868042,
+ "step": 668
+ },
+ {
+ "epoch": 9.293449781659389,
+ "grad_norm": 0.02380996011197567,
+ "learning_rate": 0.0006,
+ "loss": 4.263561725616455,
+ "step": 669
+ },
+ {
+ "epoch": 9.307423580786025,
+ "grad_norm": 0.025552157312631607,
+ "learning_rate": 0.0006,
+ "loss": 4.222456932067871,
+ "step": 670
+ },
+ {
+ "epoch": 9.321397379912664,
+ "grad_norm": 0.024957234039902687,
+ "learning_rate": 0.0006,
+ "loss": 4.250582695007324,
+ "step": 671
+ },
+ {
+ "epoch": 9.335371179039301,
+ "grad_norm": 0.02580283023416996,
+ "learning_rate": 0.0006,
+ "loss": 4.240250587463379,
+ "step": 672
+ },
+ {
+ "epoch": 9.34934497816594,
+ "grad_norm": 0.020701562985777855,
+ "learning_rate": 0.0006,
+ "loss": 4.222497463226318,
+ "step": 673
+ },
+ {
+ "epoch": 9.363318777292577,
+ "grad_norm": 0.021373746916651726,
+ "learning_rate": 0.0006,
+ "loss": 4.242282390594482,
+ "step": 674
+ },
+ {
+ "epoch": 9.377292576419213,
+ "grad_norm": 0.02025660127401352,
+ "learning_rate": 0.0006,
+ "loss": 4.270265579223633,
+ "step": 675
+ },
+ {
+ "epoch": 9.391266375545852,
+ "grad_norm": 0.02325408160686493,
+ "learning_rate": 0.0006,
+ "loss": 4.222276210784912,
+ "step": 676
+ },
+ {
+ "epoch": 9.405240174672489,
+ "grad_norm": 0.02470816671848297,
+ "learning_rate": 0.0006,
+ "loss": 4.238652229309082,
+ "step": 677
+ },
+ {
+ "epoch": 9.419213973799126,
+ "grad_norm": 0.02343972586095333,
+ "learning_rate": 0.0006,
+ "loss": 4.24069881439209,
+ "step": 678
+ },
+ {
+ "epoch": 9.433187772925764,
+ "grad_norm": 0.021034302189946175,
+ "learning_rate": 0.0006,
+ "loss": 4.244692802429199,
+ "step": 679
+ },
+ {
+ "epoch": 9.447161572052401,
+ "grad_norm": 0.021374190226197243,
+ "learning_rate": 0.0006,
+ "loss": 4.224084854125977,
+ "step": 680
+ },
+ {
+ "epoch": 9.46113537117904,
+ "grad_norm": 0.020527871325612068,
+ "learning_rate": 0.0006,
+ "loss": 4.262082099914551,
+ "step": 681
+ },
+ {
+ "epoch": 9.475109170305677,
+ "grad_norm": 0.01585977151989937,
+ "learning_rate": 0.0006,
+ "loss": 4.226033687591553,
+ "step": 682
+ },
+ {
+ "epoch": 9.489082969432314,
+ "grad_norm": 0.016423987224698067,
+ "learning_rate": 0.0006,
+ "loss": 4.171637535095215,
+ "step": 683
+ },
+ {
+ "epoch": 9.503056768558952,
+ "grad_norm": 0.015297142788767815,
+ "learning_rate": 0.0006,
+ "loss": 4.209469795227051,
+ "step": 684
+ },
+ {
+ "epoch": 9.51703056768559,
+ "grad_norm": 0.014817374758422375,
+ "learning_rate": 0.0006,
+ "loss": 4.216704845428467,
+ "step": 685
+ },
+ {
+ "epoch": 9.531004366812226,
+ "grad_norm": 0.015434044413268566,
+ "learning_rate": 0.0006,
+ "loss": 4.256552696228027,
+ "step": 686
+ },
+ {
+ "epoch": 9.544978165938865,
+ "grad_norm": 0.016138242557644844,
+ "learning_rate": 0.0006,
+ "loss": 4.218762397766113,
+ "step": 687
+ },
+ {
+ "epoch": 9.558951965065502,
+ "grad_norm": 0.017201369628310204,
+ "learning_rate": 0.0006,
+ "loss": 4.251995086669922,
+ "step": 688
+ },
+ {
+ "epoch": 9.57292576419214,
+ "grad_norm": 0.01714685745537281,
+ "learning_rate": 0.0006,
+ "loss": 4.219054222106934,
+ "step": 689
+ },
+ {
+ "epoch": 9.586899563318777,
+ "grad_norm": 0.020723173394799232,
+ "learning_rate": 0.0006,
+ "loss": 4.255344390869141,
+ "step": 690
+ },
+ {
+ "epoch": 9.600873362445414,
+ "grad_norm": 0.028826871886849403,
+ "learning_rate": 0.0006,
+ "loss": 4.221752166748047,
+ "step": 691
+ },
+ {
+ "epoch": 9.614847161572053,
+ "grad_norm": 0.03474748879671097,
+ "learning_rate": 0.0006,
+ "loss": 4.205111503601074,
+ "step": 692
+ },
+ {
+ "epoch": 9.62882096069869,
+ "grad_norm": 0.030536217615008354,
+ "learning_rate": 0.0006,
+ "loss": 4.232375144958496,
+ "step": 693
+ },
+ {
+ "epoch": 9.642794759825328,
+ "grad_norm": 0.03158785030245781,
+ "learning_rate": 0.0006,
+ "loss": 4.186178207397461,
+ "step": 694
+ },
+ {
+ "epoch": 9.656768558951965,
+ "grad_norm": 0.032505910843610764,
+ "learning_rate": 0.0006,
+ "loss": 4.208681106567383,
+ "step": 695
+ },
+ {
+ "epoch": 9.670742358078602,
+ "grad_norm": 0.025617435574531555,
+ "learning_rate": 0.0006,
+ "loss": 4.190085411071777,
+ "step": 696
+ },
+ {
+ "epoch": 9.68471615720524,
+ "grad_norm": 0.03047073632478714,
+ "learning_rate": 0.0006,
+ "loss": 4.210445404052734,
+ "step": 697
+ },
+ {
+ "epoch": 9.698689956331878,
+ "grad_norm": 0.033015694469213486,
+ "learning_rate": 0.0006,
+ "loss": 4.215723037719727,
+ "step": 698
+ },
+ {
+ "epoch": 9.712663755458514,
+ "grad_norm": 0.0364084430038929,
+ "learning_rate": 0.0006,
+ "loss": 4.192442417144775,
+ "step": 699
+ },
+ {
+ "epoch": 9.726637554585153,
+ "grad_norm": 0.03577317297458649,
+ "learning_rate": 0.0006,
+ "loss": 4.20793342590332,
+ "step": 700
+ },
+ {
+ "epoch": 9.74061135371179,
+ "grad_norm": 0.031464435160160065,
+ "learning_rate": 0.0006,
+ "loss": 4.205752372741699,
+ "step": 701
+ },
+ {
+ "epoch": 9.754585152838429,
+ "grad_norm": 0.030628090724349022,
+ "learning_rate": 0.0006,
+ "loss": 4.209503173828125,
+ "step": 702
+ },
+ {
+ "epoch": 9.768558951965066,
+ "grad_norm": 0.031171889975667,
+ "learning_rate": 0.0006,
+ "loss": 4.189100742340088,
+ "step": 703
+ },
+ {
+ "epoch": 9.782532751091702,
+ "grad_norm": 0.026728026568889618,
+ "learning_rate": 0.0006,
+ "loss": 4.175262928009033,
+ "step": 704
+ },
+ {
+ "epoch": 9.796506550218341,
+ "grad_norm": 0.02975568361580372,
+ "learning_rate": 0.0006,
+ "loss": 4.180237770080566,
+ "step": 705
+ },
+ {
+ "epoch": 9.810480349344978,
+ "grad_norm": 0.03690735250711441,
+ "learning_rate": 0.0006,
+ "loss": 4.160732269287109,
+ "step": 706
+ },
+ {
+ "epoch": 9.824454148471617,
+ "grad_norm": 0.03488203138113022,
+ "learning_rate": 0.0006,
+ "loss": 4.228294849395752,
+ "step": 707
+ },
+ {
+ "epoch": 9.838427947598253,
+ "grad_norm": 0.032557982951402664,
+ "learning_rate": 0.0006,
+ "loss": 4.144038200378418,
+ "step": 708
+ },
+ {
+ "epoch": 9.85240174672489,
+ "grad_norm": 0.03189995512366295,
+ "learning_rate": 0.0006,
+ "loss": 4.194624900817871,
+ "step": 709
+ },
+ {
+ "epoch": 9.866375545851529,
+ "grad_norm": 0.03439774736762047,
+ "learning_rate": 0.0006,
+ "loss": 4.216994762420654,
+ "step": 710
+ },
+ {
+ "epoch": 9.880349344978166,
+ "grad_norm": 0.03789396584033966,
+ "learning_rate": 0.0006,
+ "loss": 4.196347236633301,
+ "step": 711
+ },
+ {
+ "epoch": 9.894323144104803,
+ "grad_norm": 0.037980109453201294,
+ "learning_rate": 0.0006,
+ "loss": 4.213890075683594,
+ "step": 712
+ },
+ {
+ "epoch": 9.908296943231441,
+ "grad_norm": 0.043379005044698715,
+ "learning_rate": 0.0006,
+ "loss": 4.209582328796387,
+ "step": 713
+ },
+ {
+ "epoch": 9.922270742358078,
+ "grad_norm": 0.03881588950753212,
+ "learning_rate": 0.0006,
+ "loss": 4.210249900817871,
+ "step": 714
+ },
+ {
+ "epoch": 9.936244541484717,
+ "grad_norm": 0.038644567131996155,
+ "learning_rate": 0.0006,
+ "loss": 4.169578552246094,
+ "step": 715
+ },
+ {
+ "epoch": 9.950218340611354,
+ "grad_norm": 0.03676586598157883,
+ "learning_rate": 0.0006,
+ "loss": 4.234776020050049,
+ "step": 716
+ },
+ {
+ "epoch": 9.96419213973799,
+ "grad_norm": 0.032105959951877594,
+ "learning_rate": 0.0006,
+ "loss": 4.218995094299316,
+ "step": 717
+ },
+ {
+ "epoch": 9.97816593886463,
+ "grad_norm": 0.034359272569417953,
+ "learning_rate": 0.0006,
+ "loss": 4.209888458251953,
+ "step": 718
+ },
+ {
+ "epoch": 9.992139737991266,
+ "grad_norm": 0.02772289142012596,
+ "learning_rate": 0.0006,
+ "loss": 4.201578140258789,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.03038903884589672,
+ "learning_rate": 0.0006,
+ "loss": 4.170413494110107,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.344418048858643,
+ "eval_runtime": 50.1464,
+ "eval_samples_per_second": 48.697,
+ "eval_steps_per_second": 1.536,
+ "step": 720
+ },
+ {
+ "epoch": 10.013973799126637,
+ "grad_norm": 0.026941193267703056,
+ "learning_rate": 0.0006,
+ "loss": 4.122128486633301,
+ "step": 721
+ },
+ {
+ "epoch": 10.027947598253276,
+ "grad_norm": 0.028237640857696533,
+ "learning_rate": 0.0006,
+ "loss": 4.120541572570801,
+ "step": 722
+ },
+ {
+ "epoch": 10.041921397379912,
+ "grad_norm": 0.02316083386540413,
+ "learning_rate": 0.0006,
+ "loss": 4.127598285675049,
+ "step": 723
+ },
+ {
+ "epoch": 10.055895196506551,
+ "grad_norm": 0.02862458862364292,
+ "learning_rate": 0.0006,
+ "loss": 4.066249847412109,
+ "step": 724
+ },
+ {
+ "epoch": 10.069868995633188,
+ "grad_norm": 0.031772635877132416,
+ "learning_rate": 0.0006,
+ "loss": 4.1211652755737305,
+ "step": 725
+ },
+ {
+ "epoch": 10.083842794759825,
+ "grad_norm": 0.031032619997859,
+ "learning_rate": 0.0006,
+ "loss": 4.125894546508789,
+ "step": 726
+ },
+ {
+ "epoch": 10.097816593886463,
+ "grad_norm": 0.02898111566901207,
+ "learning_rate": 0.0006,
+ "loss": 4.119715213775635,
+ "step": 727
+ },
+ {
+ "epoch": 10.1117903930131,
+ "grad_norm": 0.030101103708148003,
+ "learning_rate": 0.0006,
+ "loss": 4.087604522705078,
+ "step": 728
+ },
+ {
+ "epoch": 10.125764192139737,
+ "grad_norm": 0.025814464315772057,
+ "learning_rate": 0.0006,
+ "loss": 4.124494552612305,
+ "step": 729
+ },
+ {
+ "epoch": 10.139737991266376,
+ "grad_norm": 0.029547641053795815,
+ "learning_rate": 0.0006,
+ "loss": 4.072463035583496,
+ "step": 730
+ },
+ {
+ "epoch": 10.153711790393013,
+ "grad_norm": 0.03424989432096481,
+ "learning_rate": 0.0006,
+ "loss": 4.111055374145508,
+ "step": 731
+ },
+ {
+ "epoch": 10.167685589519651,
+ "grad_norm": 0.0335191935300827,
+ "learning_rate": 0.0006,
+ "loss": 4.111437797546387,
+ "step": 732
+ },
+ {
+ "epoch": 10.181659388646288,
+ "grad_norm": 0.02894248627126217,
+ "learning_rate": 0.0006,
+ "loss": 4.133310317993164,
+ "step": 733
+ },
+ {
+ "epoch": 10.195633187772925,
+ "grad_norm": 0.0266376081854105,
+ "learning_rate": 0.0006,
+ "loss": 4.132228851318359,
+ "step": 734
+ },
+ {
+ "epoch": 10.209606986899564,
+ "grad_norm": 0.020824341103434563,
+ "learning_rate": 0.0006,
+ "loss": 4.110835075378418,
+ "step": 735
+ },
+ {
+ "epoch": 10.2235807860262,
+ "grad_norm": 0.021089477464556694,
+ "learning_rate": 0.0006,
+ "loss": 4.1186065673828125,
+ "step": 736
+ },
+ {
+ "epoch": 10.237554585152838,
+ "grad_norm": 0.023007674142718315,
+ "learning_rate": 0.0006,
+ "loss": 4.089912414550781,
+ "step": 737
+ },
+ {
+ "epoch": 10.251528384279476,
+ "grad_norm": 0.025911295786499977,
+ "learning_rate": 0.0006,
+ "loss": 4.10264778137207,
+ "step": 738
+ },
+ {
+ "epoch": 10.265502183406113,
+ "grad_norm": 0.02900099940598011,
+ "learning_rate": 0.0006,
+ "loss": 4.074974060058594,
+ "step": 739
+ },
+ {
+ "epoch": 10.279475982532752,
+ "grad_norm": 0.027182135730981827,
+ "learning_rate": 0.0006,
+ "loss": 4.107949256896973,
+ "step": 740
+ },
+ {
+ "epoch": 10.293449781659389,
+ "grad_norm": 0.027884794399142265,
+ "learning_rate": 0.0006,
+ "loss": 4.039497375488281,
+ "step": 741
+ },
+ {
+ "epoch": 10.307423580786025,
+ "grad_norm": 0.025900574401021004,
+ "learning_rate": 0.0006,
+ "loss": 4.063011646270752,
+ "step": 742
+ },
+ {
+ "epoch": 10.321397379912664,
+ "grad_norm": 0.023031197488307953,
+ "learning_rate": 0.0006,
+ "loss": 4.086951732635498,
+ "step": 743
+ },
+ {
+ "epoch": 10.335371179039301,
+ "grad_norm": 0.021363092586398125,
+ "learning_rate": 0.0006,
+ "loss": 4.140152454376221,
+ "step": 744
+ },
+ {
+ "epoch": 10.34934497816594,
+ "grad_norm": 0.019563496112823486,
+ "learning_rate": 0.0006,
+ "loss": 4.087207794189453,
+ "step": 745
+ },
+ {
+ "epoch": 10.363318777292577,
+ "grad_norm": 0.018893307074904442,
+ "learning_rate": 0.0006,
+ "loss": 4.087675094604492,
+ "step": 746
+ },
+ {
+ "epoch": 10.377292576419213,
+ "grad_norm": 0.020667923614382744,
+ "learning_rate": 0.0006,
+ "loss": 4.079525947570801,
+ "step": 747
+ },
+ {
+ "epoch": 10.391266375545852,
+ "grad_norm": 0.021774202585220337,
+ "learning_rate": 0.0006,
+ "loss": 4.107867240905762,
+ "step": 748
+ },
+ {
+ "epoch": 10.405240174672489,
+ "grad_norm": 0.020068392157554626,
+ "learning_rate": 0.0006,
+ "loss": 4.0873212814331055,
+ "step": 749
+ },
+ {
+ "epoch": 10.419213973799126,
+ "grad_norm": 0.01842055842280388,
+ "learning_rate": 0.0006,
+ "loss": 4.101090431213379,
+ "step": 750
+ },
+ {
+ "epoch": 10.433187772925764,
+ "grad_norm": 0.01795836165547371,
+ "learning_rate": 0.0006,
+ "loss": 4.050619602203369,
+ "step": 751
+ },
+ {
+ "epoch": 10.447161572052401,
+ "grad_norm": 0.019673889502882957,
+ "learning_rate": 0.0006,
+ "loss": 4.086307525634766,
+ "step": 752
+ },
+ {
+ "epoch": 10.46113537117904,
+ "grad_norm": 0.01977507211267948,
+ "learning_rate": 0.0006,
+ "loss": 4.0656023025512695,
+ "step": 753
+ },
+ {
+ "epoch": 10.475109170305677,
+ "grad_norm": 0.019471775740385056,
+ "learning_rate": 0.0006,
+ "loss": 4.046194076538086,
+ "step": 754
+ },
+ {
+ "epoch": 10.489082969432314,
+ "grad_norm": 0.018536966294050217,
+ "learning_rate": 0.0006,
+ "loss": 4.033197402954102,
+ "step": 755
+ },
+ {
+ "epoch": 10.503056768558952,
+ "grad_norm": 0.018902234733104706,
+ "learning_rate": 0.0006,
+ "loss": 4.060090065002441,
+ "step": 756
+ },
+ {
+ "epoch": 10.51703056768559,
+ "grad_norm": 0.01902388036251068,
+ "learning_rate": 0.0006,
+ "loss": 4.046975135803223,
+ "step": 757
+ },
+ {
+ "epoch": 10.531004366812226,
+ "grad_norm": 0.01699388213455677,
+ "learning_rate": 0.0006,
+ "loss": 4.081168174743652,
+ "step": 758
+ },
+ {
+ "epoch": 10.544978165938865,
+ "grad_norm": 0.022350501269102097,
+ "learning_rate": 0.0006,
+ "loss": 4.049786567687988,
+ "step": 759
+ },
+ {
+ "epoch": 10.558951965065502,
+ "grad_norm": 0.023642681539058685,
+ "learning_rate": 0.0006,
+ "loss": 4.055563926696777,
+ "step": 760
+ },
+ {
+ "epoch": 10.57292576419214,
+ "grad_norm": 0.02127036638557911,
+ "learning_rate": 0.0006,
+ "loss": 4.027631759643555,
+ "step": 761
+ },
+ {
+ "epoch": 10.586899563318777,
+ "grad_norm": 0.017590979114174843,
+ "learning_rate": 0.0006,
+ "loss": 4.0793137550354,
+ "step": 762
+ },
+ {
+ "epoch": 10.600873362445414,
+ "grad_norm": 0.016930999234318733,
+ "learning_rate": 0.0006,
+ "loss": 4.027737140655518,
+ "step": 763
+ },
+ {
+ "epoch": 10.614847161572053,
+ "grad_norm": 0.018824463710188866,
+ "learning_rate": 0.0006,
+ "loss": 4.046807289123535,
+ "step": 764
+ },
+ {
+ "epoch": 10.62882096069869,
+ "grad_norm": 0.020024564117193222,
+ "learning_rate": 0.0006,
+ "loss": 4.039668083190918,
+ "step": 765
+ },
+ {
+ "epoch": 10.642794759825328,
+ "grad_norm": 0.0220749881118536,
+ "learning_rate": 0.0006,
+ "loss": 4.031907558441162,
+ "step": 766
+ },
+ {
+ "epoch": 10.656768558951965,
+ "grad_norm": 0.023237163200974464,
+ "learning_rate": 0.0006,
+ "loss": 4.059335708618164,
+ "step": 767
+ },
+ {
+ "epoch": 10.670742358078602,
+ "grad_norm": 0.023948276415467262,
+ "learning_rate": 0.0006,
+ "loss": 4.054678440093994,
+ "step": 768
+ },
+ {
+ "epoch": 10.68471615720524,
+ "grad_norm": 0.02620924636721611,
+ "learning_rate": 0.0006,
+ "loss": 4.063493728637695,
+ "step": 769
+ },
+ {
+ "epoch": 10.698689956331878,
+ "grad_norm": 0.02867635153234005,
+ "learning_rate": 0.0006,
+ "loss": 4.036065578460693,
+ "step": 770
+ },
+ {
+ "epoch": 10.712663755458514,
+ "grad_norm": 0.028705662116408348,
+ "learning_rate": 0.0006,
+ "loss": 4.049670219421387,
+ "step": 771
+ },
+ {
+ "epoch": 10.726637554585153,
+ "grad_norm": 0.024740688502788544,
+ "learning_rate": 0.0006,
+ "loss": 4.06446647644043,
+ "step": 772
+ },
+ {
+ "epoch": 10.74061135371179,
+ "grad_norm": 0.03012487292289734,
+ "learning_rate": 0.0006,
+ "loss": 4.0461015701293945,
+ "step": 773
+ },
+ {
+ "epoch": 10.754585152838429,
+ "grad_norm": 0.03286127373576164,
+ "learning_rate": 0.0006,
+ "loss": 4.025463104248047,
+ "step": 774
+ },
+ {
+ "epoch": 10.768558951965066,
+ "grad_norm": 0.028815945610404015,
+ "learning_rate": 0.0006,
+ "loss": 4.064168930053711,
+ "step": 775
+ },
+ {
+ "epoch": 10.782532751091702,
+ "grad_norm": 0.028760947287082672,
+ "learning_rate": 0.0006,
+ "loss": 4.033624649047852,
+ "step": 776
+ },
+ {
+ "epoch": 10.796506550218341,
+ "grad_norm": 0.02942710369825363,
+ "learning_rate": 0.0006,
+ "loss": 4.0383501052856445,
+ "step": 777
+ },
+ {
+ "epoch": 10.810480349344978,
+ "grad_norm": 0.026153555139899254,
+ "learning_rate": 0.0006,
+ "loss": 4.040336608886719,
+ "step": 778
+ },
+ {
+ "epoch": 10.824454148471617,
+ "grad_norm": 0.025876570492982864,
+ "learning_rate": 0.0006,
+ "loss": 4.051267147064209,
+ "step": 779
+ },
+ {
+ "epoch": 10.838427947598253,
+ "grad_norm": 0.024056321009993553,
+ "learning_rate": 0.0006,
+ "loss": 4.035898208618164,
+ "step": 780
+ },
+ {
+ "epoch": 10.85240174672489,
+ "grad_norm": 0.023602450266480446,
+ "learning_rate": 0.0006,
+ "loss": 4.041120529174805,
+ "step": 781
+ },
+ {
+ "epoch": 10.866375545851529,
+ "grad_norm": 0.0207925196737051,
+ "learning_rate": 0.0006,
+ "loss": 4.030442237854004,
+ "step": 782
+ },
+ {
+ "epoch": 10.880349344978166,
+ "grad_norm": 0.021948475390672684,
+ "learning_rate": 0.0006,
+ "loss": 4.059929847717285,
+ "step": 783
+ },
+ {
+ "epoch": 10.894323144104803,
+ "grad_norm": 0.022555390372872353,
+ "learning_rate": 0.0006,
+ "loss": 4.077475547790527,
+ "step": 784
+ },
+ {
+ "epoch": 10.908296943231441,
+ "grad_norm": 0.020376233384013176,
+ "learning_rate": 0.0006,
+ "loss": 4.038033485412598,
+ "step": 785
+ },
+ {
+ "epoch": 10.922270742358078,
+ "grad_norm": 0.019903237000107765,
+ "learning_rate": 0.0006,
+ "loss": 4.036017417907715,
+ "step": 786
+ },
+ {
+ "epoch": 10.936244541484717,
+ "grad_norm": 0.019737590104341507,
+ "learning_rate": 0.0006,
+ "loss": 4.027589321136475,
+ "step": 787
+ },
+ {
+ "epoch": 10.950218340611354,
+ "grad_norm": 0.017857525497674942,
+ "learning_rate": 0.0006,
+ "loss": 4.039187431335449,
+ "step": 788
+ },
+ {
+ "epoch": 10.96419213973799,
+ "grad_norm": 0.019433340057730675,
+ "learning_rate": 0.0006,
+ "loss": 4.025817394256592,
+ "step": 789
+ },
+ {
+ "epoch": 10.97816593886463,
+ "grad_norm": 0.019131962209939957,
+ "learning_rate": 0.0006,
+ "loss": 4.050541877746582,
+ "step": 790
+ },
+ {
+ "epoch": 10.992139737991266,
+ "grad_norm": 0.01899166963994503,
+ "learning_rate": 0.0006,
+ "loss": 4.034682273864746,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.02292267233133316,
+ "learning_rate": 0.0006,
+ "loss": 4.02860689163208,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.223135471343994,
+ "eval_runtime": 50.1809,
+ "eval_samples_per_second": 48.664,
+ "eval_steps_per_second": 1.534,
+ "step": 792
+ },
+ {
+ "epoch": 11.013973799126637,
+ "grad_norm": 0.02331780269742012,
+ "learning_rate": 0.0006,
+ "loss": 3.9552907943725586,
+ "step": 793
+ },
+ {
+ "epoch": 11.027947598253276,
+ "grad_norm": 0.027006106451153755,
+ "learning_rate": 0.0006,
+ "loss": 3.9303345680236816,
+ "step": 794
+ },
+ {
+ "epoch": 11.041921397379912,
+ "grad_norm": 0.03403666242957115,
+ "learning_rate": 0.0006,
+ "loss": 3.93170166015625,
+ "step": 795
+ },
+ {
+ "epoch": 11.055895196506551,
+ "grad_norm": 0.03784231096506119,
+ "learning_rate": 0.0006,
+ "loss": 3.9460182189941406,
+ "step": 796
+ },
+ {
+ "epoch": 11.069868995633188,
+ "grad_norm": 0.036992497742176056,
+ "learning_rate": 0.0006,
+ "loss": 3.9788053035736084,
+ "step": 797
+ },
+ {
+ "epoch": 11.083842794759825,
+ "grad_norm": 0.040899068117141724,
+ "learning_rate": 0.0006,
+ "loss": 3.97415828704834,
+ "step": 798
+ },
+ {
+ "epoch": 11.097816593886463,
+ "grad_norm": 0.0333116240799427,
+ "learning_rate": 0.0006,
+ "loss": 3.9691474437713623,
+ "step": 799
+ },
+ {
+ "epoch": 11.1117903930131,
+ "grad_norm": 0.03146163746714592,
+ "learning_rate": 0.0006,
+ "loss": 3.95757794380188,
+ "step": 800
+ },
+ {
+ "epoch": 11.125764192139737,
+ "grad_norm": 0.031018080189824104,
+ "learning_rate": 0.0006,
+ "loss": 3.9483275413513184,
+ "step": 801
+ },
+ {
+ "epoch": 11.139737991266376,
+ "grad_norm": 0.03301657736301422,
+ "learning_rate": 0.0006,
+ "loss": 3.972309112548828,
+ "step": 802
+ },
+ {
+ "epoch": 11.153711790393013,
+ "grad_norm": 0.03665755316615105,
+ "learning_rate": 0.0006,
+ "loss": 3.963214874267578,
+ "step": 803
+ },
+ {
+ "epoch": 11.167685589519651,
+ "grad_norm": 0.038088612258434296,
+ "learning_rate": 0.0006,
+ "loss": 3.9526877403259277,
+ "step": 804
+ },
+ {
+ "epoch": 11.181659388646288,
+ "grad_norm": 0.035294584929943085,
+ "learning_rate": 0.0006,
+ "loss": 3.9849953651428223,
+ "step": 805
+ },
+ {
+ "epoch": 11.195633187772925,
+ "grad_norm": 0.03202495723962784,
+ "learning_rate": 0.0006,
+ "loss": 3.944120407104492,
+ "step": 806
+ },
+ {
+ "epoch": 11.209606986899564,
+ "grad_norm": 0.028670601546764374,
+ "learning_rate": 0.0006,
+ "loss": 3.9752721786499023,
+ "step": 807
+ },
+ {
+ "epoch": 11.2235807860262,
+ "grad_norm": 0.032401736825704575,
+ "learning_rate": 0.0006,
+ "loss": 3.986171245574951,
+ "step": 808
+ },
+ {
+ "epoch": 11.237554585152838,
+ "grad_norm": 0.033387646079063416,
+ "learning_rate": 0.0006,
+ "loss": 3.977919101715088,
+ "step": 809
+ },
+ {
+ "epoch": 11.251528384279476,
+ "grad_norm": 0.03134278208017349,
+ "learning_rate": 0.0006,
+ "loss": 3.9734086990356445,
+ "step": 810
+ },
+ {
+ "epoch": 11.265502183406113,
+ "grad_norm": 0.030449511483311653,
+ "learning_rate": 0.0006,
+ "loss": 3.995955228805542,
+ "step": 811
+ },
+ {
+ "epoch": 11.279475982532752,
+ "grad_norm": 0.03138570487499237,
+ "learning_rate": 0.0006,
+ "loss": 3.9690403938293457,
+ "step": 812
+ },
+ {
+ "epoch": 11.293449781659389,
+ "grad_norm": 0.03469259291887283,
+ "learning_rate": 0.0006,
+ "loss": 3.9562559127807617,
+ "step": 813
+ },
+ {
+ "epoch": 11.307423580786025,
+ "grad_norm": 0.03249761089682579,
+ "learning_rate": 0.0006,
+ "loss": 3.950381278991699,
+ "step": 814
+ },
+ {
+ "epoch": 11.321397379912664,
+ "grad_norm": 0.03012247197329998,
+ "learning_rate": 0.0006,
+ "loss": 3.9659230709075928,
+ "step": 815
+ },
+ {
+ "epoch": 11.335371179039301,
+ "grad_norm": 0.026212701573967934,
+ "learning_rate": 0.0006,
+ "loss": 3.956185817718506,
+ "step": 816
+ },
+ {
+ "epoch": 11.34934497816594,
+ "grad_norm": 0.02690894901752472,
+ "learning_rate": 0.0006,
+ "loss": 3.9513344764709473,
+ "step": 817
+ },
+ {
+ "epoch": 11.363318777292577,
+ "grad_norm": 0.02419866994023323,
+ "learning_rate": 0.0006,
+ "loss": 3.997973680496216,
+ "step": 818
+ },
+ {
+ "epoch": 11.377292576419213,
+ "grad_norm": 0.027116507291793823,
+ "learning_rate": 0.0006,
+ "loss": 3.9817705154418945,
+ "step": 819
+ },
+ {
+ "epoch": 11.391266375545852,
+ "grad_norm": 0.029049331322312355,
+ "learning_rate": 0.0006,
+ "loss": 3.951998472213745,
+ "step": 820
+ },
+ {
+ "epoch": 11.405240174672489,
+ "grad_norm": 0.026706157252192497,
+ "learning_rate": 0.0006,
+ "loss": 3.9744365215301514,
+ "step": 821
+ },
+ {
+ "epoch": 11.419213973799126,
+ "grad_norm": 0.025000600144267082,
+ "learning_rate": 0.0006,
+ "loss": 3.959059238433838,
+ "step": 822
+ },
+ {
+ "epoch": 11.433187772925764,
+ "grad_norm": 0.024861274287104607,
+ "learning_rate": 0.0006,
+ "loss": 3.9474871158599854,
+ "step": 823
+ },
+ {
+ "epoch": 11.447161572052401,
+ "grad_norm": 0.023006360977888107,
+ "learning_rate": 0.0006,
+ "loss": 3.924236297607422,
+ "step": 824
+ },
+ {
+ "epoch": 11.46113537117904,
+ "grad_norm": 0.023747073486447334,
+ "learning_rate": 0.0006,
+ "loss": 3.9383111000061035,
+ "step": 825
+ },
+ {
+ "epoch": 11.475109170305677,
+ "grad_norm": 0.027958976104855537,
+ "learning_rate": 0.0006,
+ "loss": 3.989518880844116,
+ "step": 826
+ },
+ {
+ "epoch": 11.489082969432314,
+ "grad_norm": 0.026648882776498795,
+ "learning_rate": 0.0006,
+ "loss": 3.9455833435058594,
+ "step": 827
+ },
+ {
+ "epoch": 11.503056768558952,
+ "grad_norm": 0.023990288376808167,
+ "learning_rate": 0.0006,
+ "loss": 3.9832968711853027,
+ "step": 828
+ },
+ {
+ "epoch": 11.51703056768559,
+ "grad_norm": 0.02722238190472126,
+ "learning_rate": 0.0006,
+ "loss": 3.924104690551758,
+ "step": 829
+ },
+ {
+ "epoch": 11.531004366812226,
+ "grad_norm": 0.026512466371059418,
+ "learning_rate": 0.0006,
+ "loss": 3.9410343170166016,
+ "step": 830
+ },
+ {
+ "epoch": 11.544978165938865,
+ "grad_norm": 0.022135436534881592,
+ "learning_rate": 0.0006,
+ "loss": 3.903899669647217,
+ "step": 831
+ },
+ {
+ "epoch": 11.558951965065502,
+ "grad_norm": 0.022456489503383636,
+ "learning_rate": 0.0006,
+ "loss": 3.962076187133789,
+ "step": 832
+ },
+ {
+ "epoch": 11.57292576419214,
+ "grad_norm": 0.024932855740189552,
+ "learning_rate": 0.0006,
+ "loss": 3.9023091793060303,
+ "step": 833
+ },
+ {
+ "epoch": 11.586899563318777,
+ "grad_norm": 0.02856597490608692,
+ "learning_rate": 0.0006,
+ "loss": 3.928679943084717,
+ "step": 834
+ },
+ {
+ "epoch": 11.600873362445414,
+ "grad_norm": 0.034227993339300156,
+ "learning_rate": 0.0006,
+ "loss": 3.9686708450317383,
+ "step": 835
+ },
+ {
+ "epoch": 11.614847161572053,
+ "grad_norm": 0.03348609432578087,
+ "learning_rate": 0.0006,
+ "loss": 4.001498699188232,
+ "step": 836
+ },
+ {
+ "epoch": 11.62882096069869,
+ "grad_norm": 0.028687726706266403,
+ "learning_rate": 0.0006,
+ "loss": 3.9448747634887695,
+ "step": 837
+ },
+ {
+ "epoch": 11.642794759825328,
+ "grad_norm": 0.030512670055031776,
+ "learning_rate": 0.0006,
+ "loss": 3.967744827270508,
+ "step": 838
+ },
+ {
+ "epoch": 11.656768558951965,
+ "grad_norm": 0.028223708271980286,
+ "learning_rate": 0.0006,
+ "loss": 3.937486171722412,
+ "step": 839
+ },
+ {
+ "epoch": 11.670742358078602,
+ "grad_norm": 0.026596587151288986,
+ "learning_rate": 0.0006,
+ "loss": 3.9503097534179688,
+ "step": 840
+ },
+ {
+ "epoch": 11.68471615720524,
+ "grad_norm": 0.025357289239764214,
+ "learning_rate": 0.0006,
+ "loss": 3.9005143642425537,
+ "step": 841
+ },
+ {
+ "epoch": 11.698689956331878,
+ "grad_norm": 0.027513934299349785,
+ "learning_rate": 0.0006,
+ "loss": 3.9426188468933105,
+ "step": 842
+ },
+ {
+ "epoch": 11.712663755458514,
+ "grad_norm": 0.024877114221453667,
+ "learning_rate": 0.0006,
+ "loss": 3.9422965049743652,
+ "step": 843
+ },
+ {
+ "epoch": 11.726637554585153,
+ "grad_norm": 0.024543913081288338,
+ "learning_rate": 0.0006,
+ "loss": 3.9211392402648926,
+ "step": 844
+ },
+ {
+ "epoch": 11.74061135371179,
+ "grad_norm": 0.02748306654393673,
+ "learning_rate": 0.0006,
+ "loss": 3.9308085441589355,
+ "step": 845
+ },
+ {
+ "epoch": 11.754585152838429,
+ "grad_norm": 0.02310740016400814,
+ "learning_rate": 0.0006,
+ "loss": 3.9191694259643555,
+ "step": 846
+ },
+ {
+ "epoch": 11.768558951965066,
+ "grad_norm": 0.01961519382894039,
+ "learning_rate": 0.0006,
+ "loss": 3.963473081588745,
+ "step": 847
+ },
+ {
+ "epoch": 11.782532751091702,
+ "grad_norm": 0.02019876055419445,
+ "learning_rate": 0.0006,
+ "loss": 3.9336318969726562,
+ "step": 848
+ },
+ {
+ "epoch": 11.796506550218341,
+ "grad_norm": 0.017846928909420967,
+ "learning_rate": 0.0006,
+ "loss": 3.9323928356170654,
+ "step": 849
+ },
+ {
+ "epoch": 11.810480349344978,
+ "grad_norm": 0.0204033050686121,
+ "learning_rate": 0.0006,
+ "loss": 3.9221231937408447,
+ "step": 850
+ },
+ {
+ "epoch": 11.824454148471617,
+ "grad_norm": 0.0186605304479599,
+ "learning_rate": 0.0006,
+ "loss": 3.964756965637207,
+ "step": 851
+ },
+ {
+ "epoch": 11.838427947598253,
+ "grad_norm": 0.01672505773603916,
+ "learning_rate": 0.0006,
+ "loss": 3.921032667160034,
+ "step": 852
+ },
+ {
+ "epoch": 11.85240174672489,
+ "grad_norm": 0.01734270341694355,
+ "learning_rate": 0.0006,
+ "loss": 3.9388551712036133,
+ "step": 853
+ },
+ {
+ "epoch": 11.866375545851529,
+ "grad_norm": 0.01686406321823597,
+ "learning_rate": 0.0006,
+ "loss": 3.9283366203308105,
+ "step": 854
+ },
+ {
+ "epoch": 11.880349344978166,
+ "grad_norm": 0.01593155413866043,
+ "learning_rate": 0.0006,
+ "loss": 3.9095754623413086,
+ "step": 855
+ },
+ {
+ "epoch": 11.894323144104803,
+ "grad_norm": 0.014560039155185223,
+ "learning_rate": 0.0006,
+ "loss": 3.942214012145996,
+ "step": 856
+ },
+ {
+ "epoch": 11.908296943231441,
+ "grad_norm": 0.016584530472755432,
+ "learning_rate": 0.0006,
+ "loss": 3.8745198249816895,
+ "step": 857
+ },
+ {
+ "epoch": 11.922270742358078,
+ "grad_norm": 0.016951464116573334,
+ "learning_rate": 0.0006,
+ "loss": 3.9224963188171387,
+ "step": 858
+ },
+ {
+ "epoch": 11.936244541484717,
+ "grad_norm": 0.017965901643037796,
+ "learning_rate": 0.0006,
+ "loss": 3.886237621307373,
+ "step": 859
+ },
+ {
+ "epoch": 11.950218340611354,
+ "grad_norm": 0.01874147541821003,
+ "learning_rate": 0.0006,
+ "loss": 3.9200339317321777,
+ "step": 860
+ },
+ {
+ "epoch": 11.96419213973799,
+ "grad_norm": 0.021464595571160316,
+ "learning_rate": 0.0006,
+ "loss": 3.9424729347229004,
+ "step": 861
+ },
+ {
+ "epoch": 11.97816593886463,
+ "grad_norm": 0.02506706677377224,
+ "learning_rate": 0.0006,
+ "loss": 3.9516968727111816,
+ "step": 862
+ },
+ {
+ "epoch": 11.992139737991266,
+ "grad_norm": 0.02550777979195118,
+ "learning_rate": 0.0006,
+ "loss": 3.9148871898651123,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.022032644599676132,
+ "learning_rate": 0.0006,
+ "loss": 3.934220314025879,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.146186828613281,
+ "eval_runtime": 70.9324,
+ "eval_samples_per_second": 34.427,
+ "eval_steps_per_second": 1.086,
+ "step": 864
+ },
+ {
+ "epoch": 12.013973799126637,
+ "grad_norm": 0.021564407274127007,
+ "learning_rate": 0.0006,
+ "loss": 3.8425402641296387,
+ "step": 865
+ },
+ {
+ "epoch": 12.027947598253276,
+ "grad_norm": 0.021265074610710144,
+ "learning_rate": 0.0006,
+ "loss": 3.8457272052764893,
+ "step": 866
+ },
+ {
+ "epoch": 12.041921397379912,
+ "grad_norm": 0.02154017984867096,
+ "learning_rate": 0.0006,
+ "loss": 3.810920238494873,
+ "step": 867
+ },
+ {
+ "epoch": 12.055895196506551,
+ "grad_norm": 0.020422060042619705,
+ "learning_rate": 0.0006,
+ "loss": 3.8347911834716797,
+ "step": 868
+ },
+ {
+ "epoch": 12.069868995633188,
+ "grad_norm": 0.01949428766965866,
+ "learning_rate": 0.0006,
+ "loss": 3.831073760986328,
+ "step": 869
+ },
+ {
+ "epoch": 12.083842794759825,
+ "grad_norm": 0.021055635064840317,
+ "learning_rate": 0.0006,
+ "loss": 3.8869409561157227,
+ "step": 870
+ },
+ {
+ "epoch": 12.097816593886463,
+ "grad_norm": 0.02397136203944683,
+ "learning_rate": 0.0006,
+ "loss": 3.837860107421875,
+ "step": 871
+ },
+ {
+ "epoch": 12.1117903930131,
+ "grad_norm": 0.02733064442873001,
+ "learning_rate": 0.0006,
+ "loss": 3.8453102111816406,
+ "step": 872
+ },
+ {
+ "epoch": 12.125764192139737,
+ "grad_norm": 0.03023727424442768,
+ "learning_rate": 0.0006,
+ "loss": 3.8106770515441895,
+ "step": 873
+ },
+ {
+ "epoch": 12.139737991266376,
+ "grad_norm": 0.0334315188229084,
+ "learning_rate": 0.0006,
+ "loss": 3.835714817047119,
+ "step": 874
+ },
+ {
+ "epoch": 12.153711790393013,
+ "grad_norm": 0.03233368694782257,
+ "learning_rate": 0.0006,
+ "loss": 3.8509063720703125,
+ "step": 875
+ },
+ {
+ "epoch": 12.167685589519651,
+ "grad_norm": 0.03522663936018944,
+ "learning_rate": 0.0006,
+ "loss": 3.854410171508789,
+ "step": 876
+ },
+ {
+ "epoch": 12.181659388646288,
+ "grad_norm": 0.04753761738538742,
+ "learning_rate": 0.0006,
+ "loss": 3.882387638092041,
+ "step": 877
+ },
+ {
+ "epoch": 12.195633187772925,
+ "grad_norm": 0.049719441682100296,
+ "learning_rate": 0.0006,
+ "loss": 3.8863918781280518,
+ "step": 878
+ },
+ {
+ "epoch": 12.209606986899564,
+ "grad_norm": 0.0482778400182724,
+ "learning_rate": 0.0006,
+ "loss": 3.8418054580688477,
+ "step": 879
+ },
+ {
+ "epoch": 12.2235807860262,
+ "grad_norm": 0.04967353492975235,
+ "learning_rate": 0.0006,
+ "loss": 3.88840389251709,
+ "step": 880
+ },
+ {
+ "epoch": 12.237554585152838,
+ "grad_norm": 0.04709675535559654,
+ "learning_rate": 0.0006,
+ "loss": 3.8831706047058105,
+ "step": 881
+ },
+ {
+ "epoch": 12.251528384279476,
+ "grad_norm": 0.05031110718846321,
+ "learning_rate": 0.0006,
+ "loss": 3.8964877128601074,
+ "step": 882
+ },
+ {
+ "epoch": 12.265502183406113,
+ "grad_norm": 0.04771656170487404,
+ "learning_rate": 0.0006,
+ "loss": 3.902888774871826,
+ "step": 883
+ },
+ {
+ "epoch": 12.279475982532752,
+ "grad_norm": 0.041541457176208496,
+ "learning_rate": 0.0006,
+ "loss": 3.849850654602051,
+ "step": 884
+ },
+ {
+ "epoch": 12.293449781659389,
+ "grad_norm": 0.04055247828364372,
+ "learning_rate": 0.0006,
+ "loss": 3.907242774963379,
+ "step": 885
+ },
+ {
+ "epoch": 12.307423580786025,
+ "grad_norm": 0.0392373651266098,
+ "learning_rate": 0.0006,
+ "loss": 3.882129669189453,
+ "step": 886
+ },
+ {
+ "epoch": 12.321397379912664,
+ "grad_norm": 0.040552686899900436,
+ "learning_rate": 0.0006,
+ "loss": 3.8719077110290527,
+ "step": 887
+ },
+ {
+ "epoch": 12.335371179039301,
+ "grad_norm": 0.03997429832816124,
+ "learning_rate": 0.0006,
+ "loss": 3.8770203590393066,
+ "step": 888
+ },
+ {
+ "epoch": 12.34934497816594,
+ "grad_norm": 0.04006315395236015,
+ "learning_rate": 0.0006,
+ "loss": 3.888833999633789,
+ "step": 889
+ },
+ {
+ "epoch": 12.363318777292577,
+ "grad_norm": 0.04192065820097923,
+ "learning_rate": 0.0006,
+ "loss": 3.9480466842651367,
+ "step": 890
+ },
+ {
+ "epoch": 12.377292576419213,
+ "grad_norm": 0.03901645913720131,
+ "learning_rate": 0.0006,
+ "loss": 3.8987879753112793,
+ "step": 891
+ },
+ {
+ "epoch": 12.391266375545852,
+ "grad_norm": 0.034923430532217026,
+ "learning_rate": 0.0006,
+ "loss": 3.887423515319824,
+ "step": 892
+ },
+ {
+ "epoch": 12.405240174672489,
+ "grad_norm": 0.03397240489721298,
+ "learning_rate": 0.0006,
+ "loss": 3.874734878540039,
+ "step": 893
+ },
+ {
+ "epoch": 12.419213973799126,
+ "grad_norm": 0.03498395159840584,
+ "learning_rate": 0.0006,
+ "loss": 3.8725318908691406,
+ "step": 894
+ },
+ {
+ "epoch": 12.433187772925764,
+ "grad_norm": 0.03299591317772865,
+ "learning_rate": 0.0006,
+ "loss": 3.8542797565460205,
+ "step": 895
+ },
+ {
+ "epoch": 12.447161572052401,
+ "grad_norm": 0.03591961786150932,
+ "learning_rate": 0.0006,
+ "loss": 3.8667421340942383,
+ "step": 896
+ },
+ {
+ "epoch": 12.46113537117904,
+ "grad_norm": 0.032906632870435715,
+ "learning_rate": 0.0006,
+ "loss": 3.802811622619629,
+ "step": 897
+ },
+ {
+ "epoch": 12.475109170305677,
+ "grad_norm": 0.02919355221092701,
+ "learning_rate": 0.0006,
+ "loss": 3.9085006713867188,
+ "step": 898
+ },
+ {
+ "epoch": 12.489082969432314,
+ "grad_norm": 0.02636081911623478,
+ "learning_rate": 0.0006,
+ "loss": 3.876291275024414,
+ "step": 899
+ },
+ {
+ "epoch": 12.503056768558952,
+ "grad_norm": 0.027786940336227417,
+ "learning_rate": 0.0006,
+ "loss": 3.813384532928467,
+ "step": 900
+ },
+ {
+ "epoch": 12.51703056768559,
+ "grad_norm": 0.021504681557416916,
+ "learning_rate": 0.0006,
+ "loss": 3.8531389236450195,
+ "step": 901
+ },
+ {
+ "epoch": 12.531004366812226,
+ "grad_norm": 0.020176850259304047,
+ "learning_rate": 0.0006,
+ "loss": 3.8540682792663574,
+ "step": 902
+ },
+ {
+ "epoch": 12.544978165938865,
+ "grad_norm": 0.018069395795464516,
+ "learning_rate": 0.0006,
+ "loss": 3.8401103019714355,
+ "step": 903
+ },
+ {
+ "epoch": 12.558951965065502,
+ "grad_norm": 0.017131980508565903,
+ "learning_rate": 0.0006,
+ "loss": 3.8590402603149414,
+ "step": 904
+ },
+ {
+ "epoch": 12.57292576419214,
+ "grad_norm": 0.016838181763887405,
+ "learning_rate": 0.0006,
+ "loss": 3.816793441772461,
+ "step": 905
+ },
+ {
+ "epoch": 12.586899563318777,
+ "grad_norm": 0.01688799448311329,
+ "learning_rate": 0.0006,
+ "loss": 3.8501386642456055,
+ "step": 906
+ },
+ {
+ "epoch": 12.600873362445414,
+ "grad_norm": 0.018547389656305313,
+ "learning_rate": 0.0006,
+ "loss": 3.844679355621338,
+ "step": 907
+ },
+ {
+ "epoch": 12.614847161572053,
+ "grad_norm": 0.01693912222981453,
+ "learning_rate": 0.0006,
+ "loss": 3.8392562866210938,
+ "step": 908
+ },
+ {
+ "epoch": 12.62882096069869,
+ "grad_norm": 0.017632123082876205,
+ "learning_rate": 0.0006,
+ "loss": 3.8433165550231934,
+ "step": 909
+ },
+ {
+ "epoch": 12.642794759825328,
+ "grad_norm": 0.017826121300458908,
+ "learning_rate": 0.0006,
+ "loss": 3.880542039871216,
+ "step": 910
+ },
+ {
+ "epoch": 12.656768558951965,
+ "grad_norm": 0.01775546185672283,
+ "learning_rate": 0.0006,
+ "loss": 3.828543186187744,
+ "step": 911
+ },
+ {
+ "epoch": 12.670742358078602,
+ "grad_norm": 0.016220970079302788,
+ "learning_rate": 0.0006,
+ "loss": 3.835036039352417,
+ "step": 912
+ },
+ {
+ "epoch": 12.68471615720524,
+ "grad_norm": 0.015805263072252274,
+ "learning_rate": 0.0006,
+ "loss": 3.860929489135742,
+ "step": 913
+ },
+ {
+ "epoch": 12.698689956331878,
+ "grad_norm": 0.014601027593016624,
+ "learning_rate": 0.0006,
+ "loss": 3.849916934967041,
+ "step": 914
+ },
+ {
+ "epoch": 12.712663755458514,
+ "grad_norm": 0.014955640770494938,
+ "learning_rate": 0.0006,
+ "loss": 3.82222843170166,
+ "step": 915
+ },
+ {
+ "epoch": 12.726637554585153,
+ "grad_norm": 0.01635930687189102,
+ "learning_rate": 0.0006,
+ "loss": 3.8616011142730713,
+ "step": 916
+ },
+ {
+ "epoch": 12.74061135371179,
+ "grad_norm": 0.015701569616794586,
+ "learning_rate": 0.0006,
+ "loss": 3.827305316925049,
+ "step": 917
+ },
+ {
+ "epoch": 12.754585152838429,
+ "grad_norm": 0.014878005720674992,
+ "learning_rate": 0.0006,
+ "loss": 3.8204379081726074,
+ "step": 918
+ },
+ {
+ "epoch": 12.768558951965066,
+ "grad_norm": 0.015863968059420586,
+ "learning_rate": 0.0006,
+ "loss": 3.8282384872436523,
+ "step": 919
+ },
+ {
+ "epoch": 12.782532751091702,
+ "grad_norm": 0.015376720577478409,
+ "learning_rate": 0.0006,
+ "loss": 3.8476157188415527,
+ "step": 920
+ },
+ {
+ "epoch": 12.796506550218341,
+ "grad_norm": 0.015112238936126232,
+ "learning_rate": 0.0006,
+ "loss": 3.814873695373535,
+ "step": 921
+ },
+ {
+ "epoch": 12.810480349344978,
+ "grad_norm": 0.014457261189818382,
+ "learning_rate": 0.0006,
+ "loss": 3.874340295791626,
+ "step": 922
+ },
+ {
+ "epoch": 12.824454148471617,
+ "grad_norm": 0.013799191452562809,
+ "learning_rate": 0.0006,
+ "loss": 3.8461344242095947,
+ "step": 923
+ },
+ {
+ "epoch": 12.838427947598253,
+ "grad_norm": 0.015976861119270325,
+ "learning_rate": 0.0006,
+ "loss": 3.8348283767700195,
+ "step": 924
+ },
+ {
+ "epoch": 12.85240174672489,
+ "grad_norm": 0.016569344326853752,
+ "learning_rate": 0.0006,
+ "loss": 3.8375229835510254,
+ "step": 925
+ },
+ {
+ "epoch": 12.866375545851529,
+ "grad_norm": 0.016443882137537003,
+ "learning_rate": 0.0006,
+ "loss": 3.814178943634033,
+ "step": 926
+ },
+ {
+ "epoch": 12.880349344978166,
+ "grad_norm": 0.01687130145728588,
+ "learning_rate": 0.0006,
+ "loss": 3.7934679985046387,
+ "step": 927
+ },
+ {
+ "epoch": 12.894323144104803,
+ "grad_norm": 0.01750864088535309,
+ "learning_rate": 0.0006,
+ "loss": 3.8297150135040283,
+ "step": 928
+ },
+ {
+ "epoch": 12.908296943231441,
+ "grad_norm": 0.017512314021587372,
+ "learning_rate": 0.0006,
+ "loss": 3.7785584926605225,
+ "step": 929
+ },
+ {
+ "epoch": 12.922270742358078,
+ "grad_norm": 0.01678168773651123,
+ "learning_rate": 0.0006,
+ "loss": 3.8569579124450684,
+ "step": 930
+ },
+ {
+ "epoch": 12.936244541484717,
+ "grad_norm": 0.017443843185901642,
+ "learning_rate": 0.0006,
+ "loss": 3.8003761768341064,
+ "step": 931
+ },
+ {
+ "epoch": 12.950218340611354,
+ "grad_norm": 0.017418883740901947,
+ "learning_rate": 0.0006,
+ "loss": 3.8066251277923584,
+ "step": 932
+ },
+ {
+ "epoch": 12.96419213973799,
+ "grad_norm": 0.01592562161386013,
+ "learning_rate": 0.0006,
+ "loss": 3.8218679428100586,
+ "step": 933
+ },
+ {
+ "epoch": 12.97816593886463,
+ "grad_norm": 0.01742086559534073,
+ "learning_rate": 0.0006,
+ "loss": 3.8229286670684814,
+ "step": 934
+ },
+ {
+ "epoch": 12.992139737991266,
+ "grad_norm": 0.017524391412734985,
+ "learning_rate": 0.0006,
+ "loss": 3.810349941253662,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.019961200654506683,
+ "learning_rate": 0.0006,
+ "loss": 3.8229546546936035,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.08996057510376,
+ "eval_runtime": 49.9041,
+ "eval_samples_per_second": 48.934,
+ "eval_steps_per_second": 1.543,
+ "step": 936
+ },
+ {
+ "epoch": 13.013973799126637,
+ "grad_norm": 0.023570898920297623,
+ "learning_rate": 0.0006,
+ "loss": 3.7133145332336426,
+ "step": 937
+ },
+ {
+ "epoch": 13.027947598253276,
+ "grad_norm": 0.03165869787335396,
+ "learning_rate": 0.0006,
+ "loss": 3.7199676036834717,
+ "step": 938
+ },
+ {
+ "epoch": 13.041921397379912,
+ "grad_norm": 0.03561289608478546,
+ "learning_rate": 0.0006,
+ "loss": 3.7414278984069824,
+ "step": 939
+ },
+ {
+ "epoch": 13.055895196506551,
+ "grad_norm": 0.03167610988020897,
+ "learning_rate": 0.0006,
+ "loss": 3.7263808250427246,
+ "step": 940
+ },
+ {
+ "epoch": 13.069868995633188,
+ "grad_norm": 0.035912878811359406,
+ "learning_rate": 0.0006,
+ "loss": 3.7170684337615967,
+ "step": 941
+ },
+ {
+ "epoch": 13.083842794759825,
+ "grad_norm": 0.03632035478949547,
+ "learning_rate": 0.0006,
+ "loss": 3.750077724456787,
+ "step": 942
+ },
+ {
+ "epoch": 13.097816593886463,
+ "grad_norm": 0.031844258308410645,
+ "learning_rate": 0.0006,
+ "loss": 3.7065911293029785,
+ "step": 943
+ },
+ {
+ "epoch": 13.1117903930131,
+ "grad_norm": 0.03410554304718971,
+ "learning_rate": 0.0006,
+ "loss": 3.739224910736084,
+ "step": 944
+ },
+ {
+ "epoch": 13.125764192139737,
+ "grad_norm": 0.03375937044620514,
+ "learning_rate": 0.0006,
+ "loss": 3.6903367042541504,
+ "step": 945
+ },
+ {
+ "epoch": 13.139737991266376,
+ "grad_norm": 0.03705555200576782,
+ "learning_rate": 0.0006,
+ "loss": 3.778822422027588,
+ "step": 946
+ },
+ {
+ "epoch": 13.153711790393013,
+ "grad_norm": 0.03603963926434517,
+ "learning_rate": 0.0006,
+ "loss": 3.73783802986145,
+ "step": 947
+ },
+ {
+ "epoch": 13.167685589519651,
+ "grad_norm": 0.034089673310518265,
+ "learning_rate": 0.0006,
+ "loss": 3.7886078357696533,
+ "step": 948
+ },
+ {
+ "epoch": 13.181659388646288,
+ "grad_norm": 0.03745635598897934,
+ "learning_rate": 0.0006,
+ "loss": 3.76809024810791,
+ "step": 949
+ },
+ {
+ "epoch": 13.195633187772925,
+ "grad_norm": 0.04209613427519798,
+ "learning_rate": 0.0006,
+ "loss": 3.7813467979431152,
+ "step": 950
+ },
+ {
+ "epoch": 13.209606986899564,
+ "grad_norm": 0.036846764385700226,
+ "learning_rate": 0.0006,
+ "loss": 3.7726383209228516,
+ "step": 951
+ },
+ {
+ "epoch": 13.2235807860262,
+ "grad_norm": 0.036949072033166885,
+ "learning_rate": 0.0006,
+ "loss": 3.7197751998901367,
+ "step": 952
+ },
+ {
+ "epoch": 13.237554585152838,
+ "grad_norm": 0.03458063304424286,
+ "learning_rate": 0.0006,
+ "loss": 3.7695436477661133,
+ "step": 953
+ },
+ {
+ "epoch": 13.251528384279476,
+ "grad_norm": 0.038074951618909836,
+ "learning_rate": 0.0006,
+ "loss": 3.7531425952911377,
+ "step": 954
+ },
+ {
+ "epoch": 13.265502183406113,
+ "grad_norm": 0.03661646693944931,
+ "learning_rate": 0.0006,
+ "loss": 3.767953872680664,
+ "step": 955
+ },
+ {
+ "epoch": 13.279475982532752,
+ "grad_norm": 0.039892520755529404,
+ "learning_rate": 0.0006,
+ "loss": 3.7687599658966064,
+ "step": 956
+ },
+ {
+ "epoch": 13.293449781659389,
+ "grad_norm": 0.036572884768247604,
+ "learning_rate": 0.0006,
+ "loss": 3.7693774700164795,
+ "step": 957
+ },
+ {
+ "epoch": 13.307423580786025,
+ "grad_norm": 0.03855743631720543,
+ "learning_rate": 0.0006,
+ "loss": 3.8233063220977783,
+ "step": 958
+ },
+ {
+ "epoch": 13.321397379912664,
+ "grad_norm": 0.03484344109892845,
+ "learning_rate": 0.0006,
+ "loss": 3.79215669631958,
+ "step": 959
+ },
+ {
+ "epoch": 13.335371179039301,
+ "grad_norm": 0.036101482808589935,
+ "learning_rate": 0.0006,
+ "loss": 3.768373966217041,
+ "step": 960
+ },
+ {
+ "epoch": 13.34934497816594,
+ "grad_norm": 0.03150841221213341,
+ "learning_rate": 0.0006,
+ "loss": 3.7502622604370117,
+ "step": 961
+ },
+ {
+ "epoch": 13.363318777292577,
+ "grad_norm": 0.03154430910944939,
+ "learning_rate": 0.0006,
+ "loss": 3.764416217803955,
+ "step": 962
+ },
+ {
+ "epoch": 13.377292576419213,
+ "grad_norm": 0.03163410350680351,
+ "learning_rate": 0.0006,
+ "loss": 3.757230758666992,
+ "step": 963
+ },
+ {
+ "epoch": 13.391266375545852,
+ "grad_norm": 0.02932742051780224,
+ "learning_rate": 0.0006,
+ "loss": 3.7860183715820312,
+ "step": 964
+ },
+ {
+ "epoch": 13.405240174672489,
+ "grad_norm": 0.025545787066221237,
+ "learning_rate": 0.0006,
+ "loss": 3.748073101043701,
+ "step": 965
+ },
+ {
+ "epoch": 13.419213973799126,
+ "grad_norm": 0.02389710769057274,
+ "learning_rate": 0.0006,
+ "loss": 3.778963565826416,
+ "step": 966
+ },
+ {
+ "epoch": 13.433187772925764,
+ "grad_norm": 0.023781558498740196,
+ "learning_rate": 0.0006,
+ "loss": 3.7151870727539062,
+ "step": 967
+ },
+ {
+ "epoch": 13.447161572052401,
+ "grad_norm": 0.023273715749382973,
+ "learning_rate": 0.0006,
+ "loss": 3.766374111175537,
+ "step": 968
+ },
+ {
+ "epoch": 13.46113537117904,
+ "grad_norm": 0.023059967905282974,
+ "learning_rate": 0.0006,
+ "loss": 3.783663749694824,
+ "step": 969
+ },
+ {
+ "epoch": 13.475109170305677,
+ "grad_norm": 0.020438550040125847,
+ "learning_rate": 0.0006,
+ "loss": 3.755140781402588,
+ "step": 970
+ },
+ {
+ "epoch": 13.489082969432314,
+ "grad_norm": 0.019272785633802414,
+ "learning_rate": 0.0006,
+ "loss": 3.741131544113159,
+ "step": 971
+ },
+ {
+ "epoch": 13.503056768558952,
+ "grad_norm": 0.017616258934140205,
+ "learning_rate": 0.0006,
+ "loss": 3.7395365238189697,
+ "step": 972
+ },
+ {
+ "epoch": 13.51703056768559,
+ "grad_norm": 0.017435181885957718,
+ "learning_rate": 0.0006,
+ "loss": 3.7755181789398193,
+ "step": 973
+ },
+ {
+ "epoch": 13.531004366812226,
+ "grad_norm": 0.01710323616862297,
+ "learning_rate": 0.0006,
+ "loss": 3.7158422470092773,
+ "step": 974
+ },
+ {
+ "epoch": 13.544978165938865,
+ "grad_norm": 0.016912570223212242,
+ "learning_rate": 0.0006,
+ "loss": 3.727623462677002,
+ "step": 975
+ },
+ {
+ "epoch": 13.558951965065502,
+ "grad_norm": 0.0181113388389349,
+ "learning_rate": 0.0006,
+ "loss": 3.771268367767334,
+ "step": 976
+ },
+ {
+ "epoch": 13.57292576419214,
+ "grad_norm": 0.018880970776081085,
+ "learning_rate": 0.0006,
+ "loss": 3.7602953910827637,
+ "step": 977
+ },
+ {
+ "epoch": 13.586899563318777,
+ "grad_norm": 0.019182899966835976,
+ "learning_rate": 0.0006,
+ "loss": 3.7339329719543457,
+ "step": 978
+ },
+ {
+ "epoch": 13.600873362445414,
+ "grad_norm": 0.02025751583278179,
+ "learning_rate": 0.0006,
+ "loss": 3.7562665939331055,
+ "step": 979
+ },
+ {
+ "epoch": 13.614847161572053,
+ "grad_norm": 0.01820831373333931,
+ "learning_rate": 0.0006,
+ "loss": 3.725492477416992,
+ "step": 980
+ },
+ {
+ "epoch": 13.62882096069869,
+ "grad_norm": 0.017619458958506584,
+ "learning_rate": 0.0006,
+ "loss": 3.714106798171997,
+ "step": 981
+ },
+ {
+ "epoch": 13.642794759825328,
+ "grad_norm": 0.016764821484684944,
+ "learning_rate": 0.0006,
+ "loss": 3.7665224075317383,
+ "step": 982
+ },
+ {
+ "epoch": 13.656768558951965,
+ "grad_norm": 0.016131598502397537,
+ "learning_rate": 0.0006,
+ "loss": 3.779419422149658,
+ "step": 983
+ },
+ {
+ "epoch": 13.670742358078602,
+ "grad_norm": 0.01535084005445242,
+ "learning_rate": 0.0006,
+ "loss": 3.7591190338134766,
+ "step": 984
+ },
+ {
+ "epoch": 13.68471615720524,
+ "grad_norm": 0.016390377655625343,
+ "learning_rate": 0.0006,
+ "loss": 3.7544782161712646,
+ "step": 985
+ },
+ {
+ "epoch": 13.698689956331878,
+ "grad_norm": 0.016028346493840218,
+ "learning_rate": 0.0006,
+ "loss": 3.772927761077881,
+ "step": 986
+ },
+ {
+ "epoch": 13.712663755458514,
+ "grad_norm": 0.015925439074635506,
+ "learning_rate": 0.0006,
+ "loss": 3.7092344760894775,
+ "step": 987
+ },
+ {
+ "epoch": 13.726637554585153,
+ "grad_norm": 0.016125058755278587,
+ "learning_rate": 0.0006,
+ "loss": 3.7528953552246094,
+ "step": 988
+ },
+ {
+ "epoch": 13.74061135371179,
+ "grad_norm": 0.015887845307588577,
+ "learning_rate": 0.0006,
+ "loss": 3.744354248046875,
+ "step": 989
+ },
+ {
+ "epoch": 13.754585152838429,
+ "grad_norm": 0.015301455743610859,
+ "learning_rate": 0.0006,
+ "loss": 3.743435859680176,
+ "step": 990
+ },
+ {
+ "epoch": 13.768558951965066,
+ "grad_norm": 0.014814727008342743,
+ "learning_rate": 0.0006,
+ "loss": 3.7351980209350586,
+ "step": 991
+ },
+ {
+ "epoch": 13.782532751091702,
+ "grad_norm": 0.01479976624250412,
+ "learning_rate": 0.0006,
+ "loss": 3.722226619720459,
+ "step": 992
+ },
+ {
+ "epoch": 13.796506550218341,
+ "grad_norm": 0.016558295115828514,
+ "learning_rate": 0.0006,
+ "loss": 3.717442512512207,
+ "step": 993
+ },
+ {
+ "epoch": 13.810480349344978,
+ "grad_norm": 0.01635979674756527,
+ "learning_rate": 0.0006,
+ "loss": 3.707097053527832,
+ "step": 994
+ },
+ {
+ "epoch": 13.824454148471617,
+ "grad_norm": 0.014870786108076572,
+ "learning_rate": 0.0006,
+ "loss": 3.768139362335205,
+ "step": 995
+ },
+ {
+ "epoch": 13.838427947598253,
+ "grad_norm": 0.014958183281123638,
+ "learning_rate": 0.0006,
+ "loss": 3.722902774810791,
+ "step": 996
+ },
+ {
+ "epoch": 13.85240174672489,
+ "grad_norm": 0.015501127578318119,
+ "learning_rate": 0.0006,
+ "loss": 3.7323732376098633,
+ "step": 997
+ },
+ {
+ "epoch": 13.866375545851529,
+ "grad_norm": 0.015276075340807438,
+ "learning_rate": 0.0006,
+ "loss": 3.734039783477783,
+ "step": 998
+ },
+ {
+ "epoch": 13.880349344978166,
+ "grad_norm": 0.01742061786353588,
+ "learning_rate": 0.0006,
+ "loss": 3.737147331237793,
+ "step": 999
+ },
+ {
+ "epoch": 13.894323144104803,
+ "grad_norm": 0.016311734914779663,
+ "learning_rate": 0.0006,
+ "loss": 3.7114202976226807,
+ "step": 1000
+ },
+ {
+ "epoch": 13.908296943231441,
+ "grad_norm": 0.017144575715065002,
+ "learning_rate": 0.0006,
+ "loss": 3.734762191772461,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922270742358078,
+ "grad_norm": 0.016401860862970352,
+ "learning_rate": 0.0006,
+ "loss": 3.753246784210205,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936244541484717,
+ "grad_norm": 0.015357336029410362,
+ "learning_rate": 0.0006,
+ "loss": 3.7216477394104004,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950218340611354,
+ "grad_norm": 0.016586005687713623,
+ "learning_rate": 0.0006,
+ "loss": 3.793790102005005,
+ "step": 1004
+ },
+ {
+ "epoch": 13.96419213973799,
+ "grad_norm": 0.015338776633143425,
+ "learning_rate": 0.0006,
+ "loss": 3.711658000946045,
+ "step": 1005
+ },
+ {
+ "epoch": 13.97816593886463,
+ "grad_norm": 0.017011435702443123,
+ "learning_rate": 0.0006,
+ "loss": 3.752537727355957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992139737991266,
+ "grad_norm": 0.017308345064520836,
+ "learning_rate": 0.0006,
+ "loss": 3.7391486167907715,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.01815737411379814,
+ "learning_rate": 0.0006,
+ "loss": 3.7011828422546387,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.046541690826416,
+ "eval_runtime": 54.3615,
+ "eval_samples_per_second": 44.922,
+ "eval_steps_per_second": 1.416,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013973799126637,
+ "grad_norm": 0.01765853725373745,
+ "learning_rate": 0.0006,
+ "loss": 3.6156458854675293,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027947598253276,
+ "grad_norm": 0.02285143919289112,
+ "learning_rate": 0.0006,
+ "loss": 3.6625490188598633,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041921397379912,
+ "grad_norm": 0.02511940896511078,
+ "learning_rate": 0.0006,
+ "loss": 3.619877815246582,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055895196506551,
+ "grad_norm": 0.02781127765774727,
+ "learning_rate": 0.0006,
+ "loss": 3.676270008087158,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069868995633188,
+ "grad_norm": 0.027363400906324387,
+ "learning_rate": 0.0006,
+ "loss": 3.64404034614563,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083842794759825,
+ "grad_norm": 0.02478782832622528,
+ "learning_rate": 0.0006,
+ "loss": 3.6325106620788574,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097816593886463,
+ "grad_norm": 0.02767058275640011,
+ "learning_rate": 0.0006,
+ "loss": 3.65087890625,
+ "step": 1015
+ },
+ {
+ "epoch": 14.1117903930131,
+ "grad_norm": 0.026782231405377388,
+ "learning_rate": 0.0006,
+ "loss": 3.6227691173553467,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125764192139737,
+ "grad_norm": 0.02921525575220585,
+ "learning_rate": 0.0006,
+ "loss": 3.5829410552978516,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139737991266376,
+ "grad_norm": 0.029077231884002686,
+ "learning_rate": 0.0006,
+ "loss": 3.645134687423706,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153711790393013,
+ "grad_norm": 0.0327303521335125,
+ "learning_rate": 0.0006,
+ "loss": 3.629804849624634,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167685589519651,
+ "grad_norm": 0.035763293504714966,
+ "learning_rate": 0.0006,
+ "loss": 3.6261279582977295,
+ "step": 1020
+ },
+ {
+ "epoch": 14.181659388646288,
+ "grad_norm": 0.03943935036659241,
+ "learning_rate": 0.0006,
+ "loss": 3.6591973304748535,
+ "step": 1021
+ },
+ {
+ "epoch": 14.195633187772925,
+ "grad_norm": 0.03753122314810753,
+ "learning_rate": 0.0006,
+ "loss": 3.6450369358062744,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209606986899564,
+ "grad_norm": 0.04103509336709976,
+ "learning_rate": 0.0006,
+ "loss": 3.6689958572387695,
+ "step": 1023
+ },
+ {
+ "epoch": 14.2235807860262,
+ "grad_norm": 0.04133584722876549,
+ "learning_rate": 0.0006,
+ "loss": 3.6584630012512207,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237554585152838,
+ "grad_norm": 0.04211857542395592,
+ "learning_rate": 0.0006,
+ "loss": 3.6606225967407227,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251528384279476,
+ "grad_norm": 0.038261570036411285,
+ "learning_rate": 0.0006,
+ "loss": 3.667980194091797,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265502183406113,
+ "grad_norm": 0.03518976271152496,
+ "learning_rate": 0.0006,
+ "loss": 3.6699838638305664,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279475982532752,
+ "grad_norm": 0.03253129869699478,
+ "learning_rate": 0.0006,
+ "loss": 3.636895179748535,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293449781659389,
+ "grad_norm": 0.031595997512340546,
+ "learning_rate": 0.0006,
+ "loss": 3.632096290588379,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307423580786025,
+ "grad_norm": 0.03253999352455139,
+ "learning_rate": 0.0006,
+ "loss": 3.6577043533325195,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321397379912664,
+ "grad_norm": 0.034704145044088364,
+ "learning_rate": 0.0006,
+ "loss": 3.703457832336426,
+ "step": 1031
+ },
+ {
+ "epoch": 14.335371179039301,
+ "grad_norm": 0.03362954035401344,
+ "learning_rate": 0.0006,
+ "loss": 3.6303958892822266,
+ "step": 1032
+ },
+ {
+ "epoch": 14.34934497816594,
+ "grad_norm": 0.02985706552863121,
+ "learning_rate": 0.0006,
+ "loss": 3.669577121734619,
+ "step": 1033
+ },
+ {
+ "epoch": 14.363318777292577,
+ "grad_norm": 0.028826212510466576,
+ "learning_rate": 0.0006,
+ "loss": 3.6573240756988525,
+ "step": 1034
+ },
+ {
+ "epoch": 14.377292576419213,
+ "grad_norm": 0.025705639272928238,
+ "learning_rate": 0.0006,
+ "loss": 3.695673942565918,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391266375545852,
+ "grad_norm": 0.02392077073454857,
+ "learning_rate": 0.0006,
+ "loss": 3.699263095855713,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405240174672489,
+ "grad_norm": 0.02234474942088127,
+ "learning_rate": 0.0006,
+ "loss": 3.666858196258545,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419213973799126,
+ "grad_norm": 0.021519573405385017,
+ "learning_rate": 0.0006,
+ "loss": 3.6542158126831055,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433187772925764,
+ "grad_norm": 0.019302112981677055,
+ "learning_rate": 0.0006,
+ "loss": 3.672900676727295,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447161572052401,
+ "grad_norm": 0.01938394270837307,
+ "learning_rate": 0.0006,
+ "loss": 3.6841869354248047,
+ "step": 1040
+ },
+ {
+ "epoch": 14.46113537117904,
+ "grad_norm": 0.01918088085949421,
+ "learning_rate": 0.0006,
+ "loss": 3.6915340423583984,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475109170305677,
+ "grad_norm": 0.019382303580641747,
+ "learning_rate": 0.0006,
+ "loss": 3.696239471435547,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489082969432314,
+ "grad_norm": 0.0190880224108696,
+ "learning_rate": 0.0006,
+ "loss": 3.686777114868164,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503056768558952,
+ "grad_norm": 0.019921699538826942,
+ "learning_rate": 0.0006,
+ "loss": 3.596571207046509,
+ "step": 1044
+ },
+ {
+ "epoch": 14.51703056768559,
+ "grad_norm": 0.019849983975291252,
+ "learning_rate": 0.0006,
+ "loss": 3.6621527671813965,
+ "step": 1045
+ },
+ {
+ "epoch": 14.531004366812226,
+ "grad_norm": 0.01987219788134098,
+ "learning_rate": 0.0006,
+ "loss": 3.6440532207489014,
+ "step": 1046
+ },
+ {
+ "epoch": 14.544978165938865,
+ "grad_norm": 0.019135860726237297,
+ "learning_rate": 0.0006,
+ "loss": 3.663760185241699,
+ "step": 1047
+ },
+ {
+ "epoch": 14.558951965065502,
+ "grad_norm": 0.019754081964492798,
+ "learning_rate": 0.0006,
+ "loss": 3.692115306854248,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57292576419214,
+ "grad_norm": 0.017559237778186798,
+ "learning_rate": 0.0006,
+ "loss": 3.6560468673706055,
+ "step": 1049
+ },
+ {
+ "epoch": 14.586899563318777,
+ "grad_norm": 0.018740499392151833,
+ "learning_rate": 0.0006,
+ "loss": 3.678459405899048,
+ "step": 1050
+ },
+ {
+ "epoch": 14.600873362445414,
+ "grad_norm": 0.020979298278689384,
+ "learning_rate": 0.0006,
+ "loss": 3.6760807037353516,
+ "step": 1051
+ },
+ {
+ "epoch": 14.614847161572053,
+ "grad_norm": 0.024136187508702278,
+ "learning_rate": 0.0006,
+ "loss": 3.6586780548095703,
+ "step": 1052
+ },
+ {
+ "epoch": 14.62882096069869,
+ "grad_norm": 0.022492283955216408,
+ "learning_rate": 0.0006,
+ "loss": 3.6521711349487305,
+ "step": 1053
+ },
+ {
+ "epoch": 14.642794759825328,
+ "grad_norm": 0.022067412734031677,
+ "learning_rate": 0.0006,
+ "loss": 3.6784937381744385,
+ "step": 1054
+ },
+ {
+ "epoch": 14.656768558951965,
+ "grad_norm": 0.019800225272774696,
+ "learning_rate": 0.0006,
+ "loss": 3.6375701427459717,
+ "step": 1055
+ },
+ {
+ "epoch": 14.670742358078602,
+ "grad_norm": 0.018210966140031815,
+ "learning_rate": 0.0006,
+ "loss": 3.6653239727020264,
+ "step": 1056
+ },
+ {
+ "epoch": 14.68471615720524,
+ "grad_norm": 0.018579861149191856,
+ "learning_rate": 0.0006,
+ "loss": 3.718411922454834,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698689956331878,
+ "grad_norm": 0.016911206766963005,
+ "learning_rate": 0.0006,
+ "loss": 3.6463894844055176,
+ "step": 1058
+ },
+ {
+ "epoch": 14.712663755458514,
+ "grad_norm": 0.016846856102347374,
+ "learning_rate": 0.0006,
+ "loss": 3.672767162322998,
+ "step": 1059
+ },
+ {
+ "epoch": 14.726637554585153,
+ "grad_norm": 0.0170889999717474,
+ "learning_rate": 0.0006,
+ "loss": 3.6862080097198486,
+ "step": 1060
+ },
+ {
+ "epoch": 14.74061135371179,
+ "grad_norm": 0.016432611271739006,
+ "learning_rate": 0.0006,
+ "loss": 3.656050682067871,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754585152838429,
+ "grad_norm": 0.016253121197223663,
+ "learning_rate": 0.0006,
+ "loss": 3.6118998527526855,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768558951965066,
+ "grad_norm": 0.016804836690425873,
+ "learning_rate": 0.0006,
+ "loss": 3.6646556854248047,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782532751091702,
+ "grad_norm": 0.016385341063141823,
+ "learning_rate": 0.0006,
+ "loss": 3.6862335205078125,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796506550218341,
+ "grad_norm": 0.016926517710089684,
+ "learning_rate": 0.0006,
+ "loss": 3.675138473510742,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810480349344978,
+ "grad_norm": 0.018508978188037872,
+ "learning_rate": 0.0006,
+ "loss": 3.7009687423706055,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824454148471617,
+ "grad_norm": 0.018666446208953857,
+ "learning_rate": 0.0006,
+ "loss": 3.636359214782715,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838427947598253,
+ "grad_norm": 0.019378433004021645,
+ "learning_rate": 0.0006,
+ "loss": 3.665518283843994,
+ "step": 1068
+ },
+ {
+ "epoch": 14.85240174672489,
+ "grad_norm": 0.02128547430038452,
+ "learning_rate": 0.0006,
+ "loss": 3.7005434036254883,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866375545851529,
+ "grad_norm": 0.02191224694252014,
+ "learning_rate": 0.0006,
+ "loss": 3.6584267616271973,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880349344978166,
+ "grad_norm": 0.019272804260253906,
+ "learning_rate": 0.0006,
+ "loss": 3.673880100250244,
+ "step": 1071
+ },
+ {
+ "epoch": 14.894323144104803,
+ "grad_norm": 0.018591508269309998,
+ "learning_rate": 0.0006,
+ "loss": 3.680145025253296,
+ "step": 1072
+ },
+ {
+ "epoch": 14.908296943231441,
+ "grad_norm": 0.019954141229391098,
+ "learning_rate": 0.0006,
+ "loss": 3.659092903137207,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922270742358078,
+ "grad_norm": 0.019956151023507118,
+ "learning_rate": 0.0006,
+ "loss": 3.680950164794922,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936244541484717,
+ "grad_norm": 0.0198400616645813,
+ "learning_rate": 0.0006,
+ "loss": 3.665740728378296,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950218340611354,
+ "grad_norm": 0.018525801599025726,
+ "learning_rate": 0.0006,
+ "loss": 3.695254325866699,
+ "step": 1076
+ },
+ {
+ "epoch": 14.96419213973799,
+ "grad_norm": 0.019410012289881706,
+ "learning_rate": 0.0006,
+ "loss": 3.637185573577881,
+ "step": 1077
+ },
+ {
+ "epoch": 14.97816593886463,
+ "grad_norm": 0.01842549443244934,
+ "learning_rate": 0.0006,
+ "loss": 3.6925792694091797,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992139737991266,
+ "grad_norm": 0.018512850627303123,
+ "learning_rate": 0.0006,
+ "loss": 3.6421403884887695,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.019783539697527885,
+ "learning_rate": 0.0006,
+ "loss": 3.669989824295044,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.0208282470703125,
+ "eval_runtime": 50.0946,
+ "eval_samples_per_second": 48.748,
+ "eval_steps_per_second": 1.537,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013973799126637,
+ "grad_norm": 0.02009645849466324,
+ "learning_rate": 0.0006,
+ "loss": 3.5637366771698,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027947598253276,
+ "grad_norm": 0.02333172969520092,
+ "learning_rate": 0.0006,
+ "loss": 3.5258095264434814,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041921397379912,
+ "grad_norm": 0.027971796691417694,
+ "learning_rate": 0.0006,
+ "loss": 3.552365779876709,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055895196506551,
+ "grad_norm": 0.03144870325922966,
+ "learning_rate": 0.0006,
+ "loss": 3.570685863494873,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069868995633188,
+ "grad_norm": 0.03174359351396561,
+ "learning_rate": 0.0006,
+ "loss": 3.557307720184326,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083842794759825,
+ "grad_norm": 0.0314076766371727,
+ "learning_rate": 0.0006,
+ "loss": 3.5835516452789307,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097816593886463,
+ "grad_norm": 0.02998494543135166,
+ "learning_rate": 0.0006,
+ "loss": 3.564689874649048,
+ "step": 1087
+ },
+ {
+ "epoch": 15.1117903930131,
+ "grad_norm": 0.027682173997163773,
+ "learning_rate": 0.0006,
+ "loss": 3.5372314453125,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125764192139737,
+ "grad_norm": 0.029720479622483253,
+ "learning_rate": 0.0006,
+ "loss": 3.5263895988464355,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139737991266376,
+ "grad_norm": 0.03526446595788002,
+ "learning_rate": 0.0006,
+ "loss": 3.5656511783599854,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153711790393013,
+ "grad_norm": 0.03473281115293503,
+ "learning_rate": 0.0006,
+ "loss": 3.5796432495117188,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167685589519651,
+ "grad_norm": 0.034728601574897766,
+ "learning_rate": 0.0006,
+ "loss": 3.5634264945983887,
+ "step": 1092
+ },
+ {
+ "epoch": 15.181659388646288,
+ "grad_norm": 0.03513004630804062,
+ "learning_rate": 0.0006,
+ "loss": 3.587097644805908,
+ "step": 1093
+ },
+ {
+ "epoch": 15.195633187772925,
+ "grad_norm": 0.03495538607239723,
+ "learning_rate": 0.0006,
+ "loss": 3.588749885559082,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209606986899564,
+ "grad_norm": 0.03559393063187599,
+ "learning_rate": 0.0006,
+ "loss": 3.588261604309082,
+ "step": 1095
+ },
+ {
+ "epoch": 15.2235807860262,
+ "grad_norm": 0.04117827117443085,
+ "learning_rate": 0.0006,
+ "loss": 3.5925493240356445,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237554585152838,
+ "grad_norm": 0.03481105715036392,
+ "learning_rate": 0.0006,
+ "loss": 3.609713077545166,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251528384279476,
+ "grad_norm": 0.03399660810828209,
+ "learning_rate": 0.0006,
+ "loss": 3.6001386642456055,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265502183406113,
+ "grad_norm": 0.037158723920583725,
+ "learning_rate": 0.0006,
+ "loss": 3.5907320976257324,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279475982532752,
+ "grad_norm": 0.03714929521083832,
+ "learning_rate": 0.0006,
+ "loss": 3.620131015777588,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293449781659389,
+ "grad_norm": 0.03506772965192795,
+ "learning_rate": 0.0006,
+ "loss": 3.5833165645599365,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307423580786025,
+ "grad_norm": 0.03335156291723251,
+ "learning_rate": 0.0006,
+ "loss": 3.588583469390869,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321397379912664,
+ "grad_norm": 0.03749598562717438,
+ "learning_rate": 0.0006,
+ "loss": 3.5726234912872314,
+ "step": 1103
+ },
+ {
+ "epoch": 15.335371179039301,
+ "grad_norm": 0.033490296453237534,
+ "learning_rate": 0.0006,
+ "loss": 3.609440326690674,
+ "step": 1104
+ },
+ {
+ "epoch": 15.34934497816594,
+ "grad_norm": 0.02744245156645775,
+ "learning_rate": 0.0006,
+ "loss": 3.5969347953796387,
+ "step": 1105
+ },
+ {
+ "epoch": 15.363318777292577,
+ "grad_norm": 0.025563672184944153,
+ "learning_rate": 0.0006,
+ "loss": 3.6081204414367676,
+ "step": 1106
+ },
+ {
+ "epoch": 15.377292576419213,
+ "grad_norm": 0.02479025535285473,
+ "learning_rate": 0.0006,
+ "loss": 3.569492816925049,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391266375545852,
+ "grad_norm": 0.022969363257288933,
+ "learning_rate": 0.0006,
+ "loss": 3.5940051078796387,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405240174672489,
+ "grad_norm": 0.0211333017796278,
+ "learning_rate": 0.0006,
+ "loss": 3.6032228469848633,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419213973799126,
+ "grad_norm": 0.023232776671648026,
+ "learning_rate": 0.0006,
+ "loss": 3.597538471221924,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433187772925764,
+ "grad_norm": 0.02560894563794136,
+ "learning_rate": 0.0006,
+ "loss": 3.6099822521209717,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447161572052401,
+ "grad_norm": 0.028530243784189224,
+ "learning_rate": 0.0006,
+ "loss": 3.6099116802215576,
+ "step": 1112
+ },
+ {
+ "epoch": 15.46113537117904,
+ "grad_norm": 0.024349553510546684,
+ "learning_rate": 0.0006,
+ "loss": 3.596257448196411,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475109170305677,
+ "grad_norm": 0.025264214724302292,
+ "learning_rate": 0.0006,
+ "loss": 3.58459210395813,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489082969432314,
+ "grad_norm": 0.024628883227705956,
+ "learning_rate": 0.0006,
+ "loss": 3.5940113067626953,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503056768558952,
+ "grad_norm": 0.02550858072936535,
+ "learning_rate": 0.0006,
+ "loss": 3.6039438247680664,
+ "step": 1116
+ },
+ {
+ "epoch": 15.51703056768559,
+ "grad_norm": 0.02455618977546692,
+ "learning_rate": 0.0006,
+ "loss": 3.582425594329834,
+ "step": 1117
+ },
+ {
+ "epoch": 15.531004366812226,
+ "grad_norm": 0.023190757259726524,
+ "learning_rate": 0.0006,
+ "loss": 3.5945615768432617,
+ "step": 1118
+ },
+ {
+ "epoch": 15.544978165938865,
+ "grad_norm": 0.025178825482726097,
+ "learning_rate": 0.0006,
+ "loss": 3.6276583671569824,
+ "step": 1119
+ },
+ {
+ "epoch": 15.558951965065502,
+ "grad_norm": 0.027304047718644142,
+ "learning_rate": 0.0006,
+ "loss": 3.591130018234253,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57292576419214,
+ "grad_norm": 0.02635739929974079,
+ "learning_rate": 0.0006,
+ "loss": 3.626152992248535,
+ "step": 1121
+ },
+ {
+ "epoch": 15.586899563318777,
+ "grad_norm": 0.023574283346533775,
+ "learning_rate": 0.0006,
+ "loss": 3.5790467262268066,
+ "step": 1122
+ },
+ {
+ "epoch": 15.600873362445414,
+ "grad_norm": 0.02167615108191967,
+ "learning_rate": 0.0006,
+ "loss": 3.5816423892974854,
+ "step": 1123
+ },
+ {
+ "epoch": 15.614847161572053,
+ "grad_norm": 0.020352814346551895,
+ "learning_rate": 0.0006,
+ "loss": 3.5963048934936523,
+ "step": 1124
+ },
+ {
+ "epoch": 15.62882096069869,
+ "grad_norm": 0.022047650068998337,
+ "learning_rate": 0.0006,
+ "loss": 3.5933878421783447,
+ "step": 1125
+ },
+ {
+ "epoch": 15.642794759825328,
+ "grad_norm": 0.022744329646229744,
+ "learning_rate": 0.0006,
+ "loss": 3.5755128860473633,
+ "step": 1126
+ },
+ {
+ "epoch": 15.656768558951965,
+ "grad_norm": 0.020325182005763054,
+ "learning_rate": 0.0006,
+ "loss": 3.5617265701293945,
+ "step": 1127
+ },
+ {
+ "epoch": 15.670742358078602,
+ "grad_norm": 0.021056298166513443,
+ "learning_rate": 0.0006,
+ "loss": 3.5767688751220703,
+ "step": 1128
+ },
+ {
+ "epoch": 15.68471615720524,
+ "grad_norm": 0.019120410084724426,
+ "learning_rate": 0.0006,
+ "loss": 3.5909035205841064,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698689956331878,
+ "grad_norm": 0.01864859275519848,
+ "learning_rate": 0.0006,
+ "loss": 3.586052417755127,
+ "step": 1130
+ },
+ {
+ "epoch": 15.712663755458514,
+ "grad_norm": 0.017953047528862953,
+ "learning_rate": 0.0006,
+ "loss": 3.5801734924316406,
+ "step": 1131
+ },
+ {
+ "epoch": 15.726637554585153,
+ "grad_norm": 0.019331611692905426,
+ "learning_rate": 0.0006,
+ "loss": 3.5663723945617676,
+ "step": 1132
+ },
+ {
+ "epoch": 15.74061135371179,
+ "grad_norm": 0.018863828852772713,
+ "learning_rate": 0.0006,
+ "loss": 3.5982472896575928,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754585152838429,
+ "grad_norm": 0.01941121369600296,
+ "learning_rate": 0.0006,
+ "loss": 3.586141586303711,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768558951965066,
+ "grad_norm": 0.0202215276658535,
+ "learning_rate": 0.0006,
+ "loss": 3.603093385696411,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782532751091702,
+ "grad_norm": 0.02065861038863659,
+ "learning_rate": 0.0006,
+ "loss": 3.6258344650268555,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796506550218341,
+ "grad_norm": 0.019885104149580002,
+ "learning_rate": 0.0006,
+ "loss": 3.5961670875549316,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810480349344978,
+ "grad_norm": 0.019395584240555763,
+ "learning_rate": 0.0006,
+ "loss": 3.6085386276245117,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824454148471617,
+ "grad_norm": 0.02079256810247898,
+ "learning_rate": 0.0006,
+ "loss": 3.5907459259033203,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838427947598253,
+ "grad_norm": 0.021177049726247787,
+ "learning_rate": 0.0006,
+ "loss": 3.6031875610351562,
+ "step": 1140
+ },
+ {
+ "epoch": 15.85240174672489,
+ "grad_norm": 0.01875251717865467,
+ "learning_rate": 0.0006,
+ "loss": 3.5799269676208496,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866375545851529,
+ "grad_norm": 0.018393032252788544,
+ "learning_rate": 0.0006,
+ "loss": 3.589036464691162,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880349344978166,
+ "grad_norm": 0.017482910305261612,
+ "learning_rate": 0.0006,
+ "loss": 3.57010555267334,
+ "step": 1143
+ },
+ {
+ "epoch": 15.894323144104803,
+ "grad_norm": 0.017565404996275902,
+ "learning_rate": 0.0006,
+ "loss": 3.586590051651001,
+ "step": 1144
+ },
+ {
+ "epoch": 15.908296943231441,
+ "grad_norm": 0.018097810447216034,
+ "learning_rate": 0.0006,
+ "loss": 3.60231876373291,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922270742358078,
+ "grad_norm": 0.01748323254287243,
+ "learning_rate": 0.0006,
+ "loss": 3.605266571044922,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936244541484717,
+ "grad_norm": 0.017633914947509766,
+ "learning_rate": 0.0006,
+ "loss": 3.57650089263916,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950218340611354,
+ "grad_norm": 0.017630109563469887,
+ "learning_rate": 0.0006,
+ "loss": 3.599179744720459,
+ "step": 1148
+ },
+ {
+ "epoch": 15.96419213973799,
+ "grad_norm": 0.017756082117557526,
+ "learning_rate": 0.0006,
+ "loss": 3.610539436340332,
+ "step": 1149
+ },
+ {
+ "epoch": 15.97816593886463,
+ "grad_norm": 0.017975619062781334,
+ "learning_rate": 0.0006,
+ "loss": 3.5654094219207764,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992139737991266,
+ "grad_norm": 0.01672595739364624,
+ "learning_rate": 0.0006,
+ "loss": 3.5157313346862793,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.018963614478707314,
+ "learning_rate": 0.0006,
+ "loss": 3.5679218769073486,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.002192497253418,
+ "eval_runtime": 54.7074,
+ "eval_samples_per_second": 44.638,
+ "eval_steps_per_second": 1.407,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397379912664,
+ "grad_norm": 0.019997047260403633,
+ "learning_rate": 0.0006,
+ "loss": 3.4640445709228516,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027947598253274,
+ "grad_norm": 0.02668819949030876,
+ "learning_rate": 0.0006,
+ "loss": 3.4792230129241943,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041921397379912,
+ "grad_norm": 0.03133378177881241,
+ "learning_rate": 0.0006,
+ "loss": 3.445514678955078,
+ "step": 1155
+ },
+ {
+ "epoch": 16.05589519650655,
+ "grad_norm": 0.0333341620862484,
+ "learning_rate": 0.0006,
+ "loss": 3.4823379516601562,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069868995633186,
+ "grad_norm": 0.033309273421764374,
+ "learning_rate": 0.0006,
+ "loss": 3.5140066146850586,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083842794759825,
+ "grad_norm": 0.03211270272731781,
+ "learning_rate": 0.0006,
+ "loss": 3.4474544525146484,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097816593886463,
+ "grad_norm": 0.030286215245723724,
+ "learning_rate": 0.0006,
+ "loss": 3.4566705226898193,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111790393013102,
+ "grad_norm": 0.034668438136577606,
+ "learning_rate": 0.0006,
+ "loss": 3.464046001434326,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125764192139737,
+ "grad_norm": 0.03580283746123314,
+ "learning_rate": 0.0006,
+ "loss": 3.483121871948242,
+ "step": 1161
+ },
+ {
+ "epoch": 16.139737991266376,
+ "grad_norm": 0.03359296917915344,
+ "learning_rate": 0.0006,
+ "loss": 3.477879524230957,
+ "step": 1162
+ },
+ {
+ "epoch": 16.153711790393015,
+ "grad_norm": 0.03444180637598038,
+ "learning_rate": 0.0006,
+ "loss": 3.513066053390503,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16768558951965,
+ "grad_norm": 0.034195005893707275,
+ "learning_rate": 0.0006,
+ "loss": 3.4954705238342285,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18165938864629,
+ "grad_norm": 0.03186183422803879,
+ "learning_rate": 0.0006,
+ "loss": 3.5126149654388428,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195633187772927,
+ "grad_norm": 0.03474068269133568,
+ "learning_rate": 0.0006,
+ "loss": 3.4613423347473145,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209606986899562,
+ "grad_norm": 0.03117581456899643,
+ "learning_rate": 0.0006,
+ "loss": 3.5202698707580566,
+ "step": 1167
+ },
+ {
+ "epoch": 16.2235807860262,
+ "grad_norm": 0.030044663697481155,
+ "learning_rate": 0.0006,
+ "loss": 3.4795448780059814,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23755458515284,
+ "grad_norm": 0.03448783978819847,
+ "learning_rate": 0.0006,
+ "loss": 3.4979453086853027,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251528384279474,
+ "grad_norm": 0.040600501000881195,
+ "learning_rate": 0.0006,
+ "loss": 3.5161967277526855,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265502183406113,
+ "grad_norm": 0.041196491569280624,
+ "learning_rate": 0.0006,
+ "loss": 3.5099880695343018,
+ "step": 1171
+ },
+ {
+ "epoch": 16.27947598253275,
+ "grad_norm": 0.0403696708381176,
+ "learning_rate": 0.0006,
+ "loss": 3.515664577484131,
+ "step": 1172
+ },
+ {
+ "epoch": 16.29344978165939,
+ "grad_norm": 0.0369957759976387,
+ "learning_rate": 0.0006,
+ "loss": 3.568899631500244,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307423580786025,
+ "grad_norm": 0.034086693078279495,
+ "learning_rate": 0.0006,
+ "loss": 3.5406198501586914,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321397379912664,
+ "grad_norm": 0.03118005394935608,
+ "learning_rate": 0.0006,
+ "loss": 3.4970381259918213,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335371179039303,
+ "grad_norm": 0.030468063428997993,
+ "learning_rate": 0.0006,
+ "loss": 3.5451807975769043,
+ "step": 1176
+ },
+ {
+ "epoch": 16.349344978165938,
+ "grad_norm": 0.0309329554438591,
+ "learning_rate": 0.0006,
+ "loss": 3.53481388092041,
+ "step": 1177
+ },
+ {
+ "epoch": 16.363318777292577,
+ "grad_norm": 0.030906643718481064,
+ "learning_rate": 0.0006,
+ "loss": 3.5201809406280518,
+ "step": 1178
+ },
+ {
+ "epoch": 16.377292576419215,
+ "grad_norm": 0.029425526037812233,
+ "learning_rate": 0.0006,
+ "loss": 3.5083932876586914,
+ "step": 1179
+ },
+ {
+ "epoch": 16.39126637554585,
+ "grad_norm": 0.03284955024719238,
+ "learning_rate": 0.0006,
+ "loss": 3.5315258502960205,
+ "step": 1180
+ },
+ {
+ "epoch": 16.40524017467249,
+ "grad_norm": 0.03235018253326416,
+ "learning_rate": 0.0006,
+ "loss": 3.5033299922943115,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419213973799128,
+ "grad_norm": 0.029569406062364578,
+ "learning_rate": 0.0006,
+ "loss": 3.52433180809021,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433187772925763,
+ "grad_norm": 0.028649726882576942,
+ "learning_rate": 0.0006,
+ "loss": 3.486379623413086,
+ "step": 1183
+ },
+ {
+ "epoch": 16.4471615720524,
+ "grad_norm": 0.027956973761320114,
+ "learning_rate": 0.0006,
+ "loss": 3.5237250328063965,
+ "step": 1184
+ },
+ {
+ "epoch": 16.46113537117904,
+ "grad_norm": 0.0276664849370718,
+ "learning_rate": 0.0006,
+ "loss": 3.512511730194092,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475109170305675,
+ "grad_norm": 0.027819795534014702,
+ "learning_rate": 0.0006,
+ "loss": 3.5440287590026855,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489082969432314,
+ "grad_norm": 0.028435861691832542,
+ "learning_rate": 0.0006,
+ "loss": 3.560199737548828,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503056768558952,
+ "grad_norm": 0.02672969177365303,
+ "learning_rate": 0.0006,
+ "loss": 3.5323410034179688,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51703056768559,
+ "grad_norm": 0.024931233376264572,
+ "learning_rate": 0.0006,
+ "loss": 3.5182852745056152,
+ "step": 1189
+ },
+ {
+ "epoch": 16.531004366812226,
+ "grad_norm": 0.02562815696001053,
+ "learning_rate": 0.0006,
+ "loss": 3.525887966156006,
+ "step": 1190
+ },
+ {
+ "epoch": 16.544978165938865,
+ "grad_norm": 0.022041132673621178,
+ "learning_rate": 0.0006,
+ "loss": 3.5331735610961914,
+ "step": 1191
+ },
+ {
+ "epoch": 16.558951965065503,
+ "grad_norm": 0.02091669663786888,
+ "learning_rate": 0.0006,
+ "loss": 3.5219545364379883,
+ "step": 1192
+ },
+ {
+ "epoch": 16.57292576419214,
+ "grad_norm": 0.0208087507635355,
+ "learning_rate": 0.0006,
+ "loss": 3.5721282958984375,
+ "step": 1193
+ },
+ {
+ "epoch": 16.586899563318777,
+ "grad_norm": 0.019807223230600357,
+ "learning_rate": 0.0006,
+ "loss": 3.493896484375,
+ "step": 1194
+ },
+ {
+ "epoch": 16.600873362445416,
+ "grad_norm": 0.019274886697530746,
+ "learning_rate": 0.0006,
+ "loss": 3.5042009353637695,
+ "step": 1195
+ },
+ {
+ "epoch": 16.61484716157205,
+ "grad_norm": 0.01950680837035179,
+ "learning_rate": 0.0006,
+ "loss": 3.5548095703125,
+ "step": 1196
+ },
+ {
+ "epoch": 16.62882096069869,
+ "grad_norm": 0.02027183771133423,
+ "learning_rate": 0.0006,
+ "loss": 3.495508909225464,
+ "step": 1197
+ },
+ {
+ "epoch": 16.64279475982533,
+ "grad_norm": 0.021261053159832954,
+ "learning_rate": 0.0006,
+ "loss": 3.531256675720215,
+ "step": 1198
+ },
+ {
+ "epoch": 16.656768558951963,
+ "grad_norm": 0.02054775319993496,
+ "learning_rate": 0.0006,
+ "loss": 3.499379873275757,
+ "step": 1199
+ },
+ {
+ "epoch": 16.670742358078602,
+ "grad_norm": 0.01810075156390667,
+ "learning_rate": 0.0006,
+ "loss": 3.561351776123047,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68471615720524,
+ "grad_norm": 0.017886348068714142,
+ "learning_rate": 0.0006,
+ "loss": 3.551504373550415,
+ "step": 1201
+ },
+ {
+ "epoch": 16.69868995633188,
+ "grad_norm": 0.01893145777285099,
+ "learning_rate": 0.0006,
+ "loss": 3.4890754222869873,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712663755458514,
+ "grad_norm": 0.018899526447057724,
+ "learning_rate": 0.0006,
+ "loss": 3.545161724090576,
+ "step": 1203
+ },
+ {
+ "epoch": 16.726637554585153,
+ "grad_norm": 0.018913133069872856,
+ "learning_rate": 0.0006,
+ "loss": 3.502636194229126,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74061135371179,
+ "grad_norm": 0.019347554072737694,
+ "learning_rate": 0.0006,
+ "loss": 3.521177291870117,
+ "step": 1205
+ },
+ {
+ "epoch": 16.754585152838427,
+ "grad_norm": 0.02018282189965248,
+ "learning_rate": 0.0006,
+ "loss": 3.5440759658813477,
+ "step": 1206
+ },
+ {
+ "epoch": 16.768558951965066,
+ "grad_norm": 0.018046081066131592,
+ "learning_rate": 0.0006,
+ "loss": 3.5429065227508545,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782532751091704,
+ "grad_norm": 0.01814688742160797,
+ "learning_rate": 0.0006,
+ "loss": 3.524298667907715,
+ "step": 1208
+ },
+ {
+ "epoch": 16.79650655021834,
+ "grad_norm": 0.017817430198192596,
+ "learning_rate": 0.0006,
+ "loss": 3.5429811477661133,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810480349344978,
+ "grad_norm": 0.01804095320403576,
+ "learning_rate": 0.0006,
+ "loss": 3.5601816177368164,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824454148471617,
+ "grad_norm": 0.01939644105732441,
+ "learning_rate": 0.0006,
+ "loss": 3.5711722373962402,
+ "step": 1211
+ },
+ {
+ "epoch": 16.83842794759825,
+ "grad_norm": 0.019648978486657143,
+ "learning_rate": 0.0006,
+ "loss": 3.5105032920837402,
+ "step": 1212
+ },
+ {
+ "epoch": 16.85240174672489,
+ "grad_norm": 0.01914234645664692,
+ "learning_rate": 0.0006,
+ "loss": 3.5199899673461914,
+ "step": 1213
+ },
+ {
+ "epoch": 16.86637554585153,
+ "grad_norm": 0.019934657961130142,
+ "learning_rate": 0.0006,
+ "loss": 3.531907320022583,
+ "step": 1214
+ },
+ {
+ "epoch": 16.880349344978168,
+ "grad_norm": 0.019740048795938492,
+ "learning_rate": 0.0006,
+ "loss": 3.4846372604370117,
+ "step": 1215
+ },
+ {
+ "epoch": 16.894323144104803,
+ "grad_norm": 0.020136266946792603,
+ "learning_rate": 0.0006,
+ "loss": 3.5342910289764404,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90829694323144,
+ "grad_norm": 0.021572282537817955,
+ "learning_rate": 0.0006,
+ "loss": 3.5846221446990967,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92227074235808,
+ "grad_norm": 0.01965942606329918,
+ "learning_rate": 0.0006,
+ "loss": 3.489861011505127,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936244541484715,
+ "grad_norm": 0.018763914704322815,
+ "learning_rate": 0.0006,
+ "loss": 3.5294601917266846,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950218340611354,
+ "grad_norm": 0.017964672297239304,
+ "learning_rate": 0.0006,
+ "loss": 3.5389389991760254,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964192139737992,
+ "grad_norm": 0.018288105726242065,
+ "learning_rate": 0.0006,
+ "loss": 3.531959056854248,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978165938864628,
+ "grad_norm": 0.019321706146001816,
+ "learning_rate": 0.0006,
+ "loss": 3.533597469329834,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992139737991266,
+ "grad_norm": 0.019614171236753464,
+ "learning_rate": 0.0006,
+ "loss": 3.5083813667297363,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.020609203726053238,
+ "learning_rate": 0.0006,
+ "loss": 3.580991268157959,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 3.992704153060913,
+ "eval_runtime": 50.2038,
+ "eval_samples_per_second": 48.642,
+ "eval_steps_per_second": 1.534,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397379912664,
+ "grad_norm": 0.023699766024947166,
+ "learning_rate": 0.0006,
+ "loss": 3.4216837882995605,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027947598253274,
+ "grad_norm": 0.03299031779170036,
+ "learning_rate": 0.0006,
+ "loss": 3.3943543434143066,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041921397379912,
+ "grad_norm": 0.0365300215780735,
+ "learning_rate": 0.0006,
+ "loss": 3.419881820678711,
+ "step": 1227
+ },
+ {
+ "epoch": 17.05589519650655,
+ "grad_norm": 0.037790149450302124,
+ "learning_rate": 0.0006,
+ "loss": 3.397857666015625,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069868995633186,
+ "grad_norm": 0.03478766605257988,
+ "learning_rate": 0.0006,
+ "loss": 3.4057488441467285,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083842794759825,
+ "grad_norm": 0.03660628944635391,
+ "learning_rate": 0.0006,
+ "loss": 3.449805498123169,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097816593886463,
+ "grad_norm": 0.03783934935927391,
+ "learning_rate": 0.0006,
+ "loss": 3.391709804534912,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111790393013102,
+ "grad_norm": 0.03578848019242287,
+ "learning_rate": 0.0006,
+ "loss": 3.3921704292297363,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125764192139737,
+ "grad_norm": 0.04182235524058342,
+ "learning_rate": 0.0006,
+ "loss": 3.406362295150757,
+ "step": 1233
+ },
+ {
+ "epoch": 17.139737991266376,
+ "grad_norm": 0.04345374181866646,
+ "learning_rate": 0.0006,
+ "loss": 3.39174222946167,
+ "step": 1234
+ },
+ {
+ "epoch": 17.153711790393015,
+ "grad_norm": 0.0420818068087101,
+ "learning_rate": 0.0006,
+ "loss": 3.431614398956299,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16768558951965,
+ "grad_norm": 0.045535873621702194,
+ "learning_rate": 0.0006,
+ "loss": 3.4326839447021484,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18165938864629,
+ "grad_norm": 0.05574474856257439,
+ "learning_rate": 0.0006,
+ "loss": 3.4711036682128906,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195633187772927,
+ "grad_norm": 0.057157132774591446,
+ "learning_rate": 0.0006,
+ "loss": 3.4650626182556152,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209606986899562,
+ "grad_norm": 0.053199656307697296,
+ "learning_rate": 0.0006,
+ "loss": 3.4461426734924316,
+ "step": 1239
+ },
+ {
+ "epoch": 17.2235807860262,
+ "grad_norm": 0.054264020174741745,
+ "learning_rate": 0.0006,
+ "loss": 3.4681930541992188,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23755458515284,
+ "grad_norm": 0.05625223368406296,
+ "learning_rate": 0.0006,
+ "loss": 3.4914324283599854,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251528384279474,
+ "grad_norm": 0.061760347336530685,
+ "learning_rate": 0.0006,
+ "loss": 3.525092840194702,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265502183406113,
+ "grad_norm": 0.0628439411520958,
+ "learning_rate": 0.0006,
+ "loss": 3.5061843395233154,
+ "step": 1243
+ },
+ {
+ "epoch": 17.27947598253275,
+ "grad_norm": 0.0659259706735611,
+ "learning_rate": 0.0006,
+ "loss": 3.53128719329834,
+ "step": 1244
+ },
+ {
+ "epoch": 17.29344978165939,
+ "grad_norm": 0.05818862468004227,
+ "learning_rate": 0.0006,
+ "loss": 3.5536415576934814,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307423580786025,
+ "grad_norm": 0.05471836030483246,
+ "learning_rate": 0.0006,
+ "loss": 3.5337672233581543,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321397379912664,
+ "grad_norm": 0.0487399697303772,
+ "learning_rate": 0.0006,
+ "loss": 3.522909641265869,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335371179039303,
+ "grad_norm": 0.05006934702396393,
+ "learning_rate": 0.0006,
+ "loss": 3.5228986740112305,
+ "step": 1248
+ },
+ {
+ "epoch": 17.349344978165938,
+ "grad_norm": 0.047036584466695786,
+ "learning_rate": 0.0006,
+ "loss": 3.582343578338623,
+ "step": 1249
+ },
+ {
+ "epoch": 17.363318777292577,
+ "grad_norm": 0.045836590230464935,
+ "learning_rate": 0.0006,
+ "loss": 3.5376439094543457,
+ "step": 1250
+ },
+ {
+ "epoch": 17.377292576419215,
+ "grad_norm": 0.044237297028303146,
+ "learning_rate": 0.0006,
+ "loss": 3.5435123443603516,
+ "step": 1251
+ },
+ {
+ "epoch": 17.39126637554585,
+ "grad_norm": 0.04441322013735771,
+ "learning_rate": 0.0006,
+ "loss": 3.5400638580322266,
+ "step": 1252
+ },
+ {
+ "epoch": 17.40524017467249,
+ "grad_norm": 0.04533323645591736,
+ "learning_rate": 0.0006,
+ "loss": 3.5287728309631348,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419213973799128,
+ "grad_norm": 0.03689985349774361,
+ "learning_rate": 0.0006,
+ "loss": 3.5161759853363037,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433187772925763,
+ "grad_norm": 0.03836561366915703,
+ "learning_rate": 0.0006,
+ "loss": 3.4899721145629883,
+ "step": 1255
+ },
+ {
+ "epoch": 17.4471615720524,
+ "grad_norm": 0.03594471141695976,
+ "learning_rate": 0.0006,
+ "loss": 3.534101963043213,
+ "step": 1256
+ },
+ {
+ "epoch": 17.46113537117904,
+ "grad_norm": 0.03834489732980728,
+ "learning_rate": 0.0006,
+ "loss": 3.4943580627441406,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475109170305675,
+ "grad_norm": 0.04318688064813614,
+ "learning_rate": 0.0006,
+ "loss": 3.5304384231567383,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489082969432314,
+ "grad_norm": 0.04468952864408493,
+ "learning_rate": 0.0006,
+ "loss": 3.5435900688171387,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503056768558952,
+ "grad_norm": 0.041371092200279236,
+ "learning_rate": 0.0006,
+ "loss": 3.529571056365967,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51703056768559,
+ "grad_norm": 0.03826779127120972,
+ "learning_rate": 0.0006,
+ "loss": 3.5024611949920654,
+ "step": 1261
+ },
+ {
+ "epoch": 17.531004366812226,
+ "grad_norm": 0.030302148312330246,
+ "learning_rate": 0.0006,
+ "loss": 3.5491857528686523,
+ "step": 1262
+ },
+ {
+ "epoch": 17.544978165938865,
+ "grad_norm": 0.02673652581870556,
+ "learning_rate": 0.0006,
+ "loss": 3.498325824737549,
+ "step": 1263
+ },
+ {
+ "epoch": 17.558951965065503,
+ "grad_norm": 0.026035286486148834,
+ "learning_rate": 0.0006,
+ "loss": 3.524242639541626,
+ "step": 1264
+ },
+ {
+ "epoch": 17.57292576419214,
+ "grad_norm": 0.02433512918651104,
+ "learning_rate": 0.0006,
+ "loss": 3.496821880340576,
+ "step": 1265
+ },
+ {
+ "epoch": 17.586899563318777,
+ "grad_norm": 0.023563958704471588,
+ "learning_rate": 0.0006,
+ "loss": 3.4883062839508057,
+ "step": 1266
+ },
+ {
+ "epoch": 17.600873362445416,
+ "grad_norm": 0.0206421110779047,
+ "learning_rate": 0.0006,
+ "loss": 3.519468069076538,
+ "step": 1267
+ },
+ {
+ "epoch": 17.61484716157205,
+ "grad_norm": 0.020854417234659195,
+ "learning_rate": 0.0006,
+ "loss": 3.5546176433563232,
+ "step": 1268
+ },
+ {
+ "epoch": 17.62882096069869,
+ "grad_norm": 0.01948000118136406,
+ "learning_rate": 0.0006,
+ "loss": 3.4945712089538574,
+ "step": 1269
+ },
+ {
+ "epoch": 17.64279475982533,
+ "grad_norm": 0.018670955672860146,
+ "learning_rate": 0.0006,
+ "loss": 3.4944663047790527,
+ "step": 1270
+ },
+ {
+ "epoch": 17.656768558951963,
+ "grad_norm": 0.018675116822123528,
+ "learning_rate": 0.0006,
+ "loss": 3.4906811714172363,
+ "step": 1271
+ },
+ {
+ "epoch": 17.670742358078602,
+ "grad_norm": 0.018198898062109947,
+ "learning_rate": 0.0006,
+ "loss": 3.4814324378967285,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68471615720524,
+ "grad_norm": 0.017625771462917328,
+ "learning_rate": 0.0006,
+ "loss": 3.481903553009033,
+ "step": 1273
+ },
+ {
+ "epoch": 17.69868995633188,
+ "grad_norm": 0.017468655481934547,
+ "learning_rate": 0.0006,
+ "loss": 3.504253625869751,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712663755458514,
+ "grad_norm": 0.017738448455929756,
+ "learning_rate": 0.0006,
+ "loss": 3.4731998443603516,
+ "step": 1275
+ },
+ {
+ "epoch": 17.726637554585153,
+ "grad_norm": 0.01674838177859783,
+ "learning_rate": 0.0006,
+ "loss": 3.501451253890991,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74061135371179,
+ "grad_norm": 0.016940834000706673,
+ "learning_rate": 0.0006,
+ "loss": 3.5022473335266113,
+ "step": 1277
+ },
+ {
+ "epoch": 17.754585152838427,
+ "grad_norm": 0.016655702143907547,
+ "learning_rate": 0.0006,
+ "loss": 3.489267349243164,
+ "step": 1278
+ },
+ {
+ "epoch": 17.768558951965066,
+ "grad_norm": 0.016576141119003296,
+ "learning_rate": 0.0006,
+ "loss": 3.489868402481079,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782532751091704,
+ "grad_norm": 0.015516328625380993,
+ "learning_rate": 0.0006,
+ "loss": 3.4777278900146484,
+ "step": 1280
+ },
+ {
+ "epoch": 17.79650655021834,
+ "grad_norm": 0.01572612300515175,
+ "learning_rate": 0.0006,
+ "loss": 3.4924020767211914,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810480349344978,
+ "grad_norm": 0.01619344763457775,
+ "learning_rate": 0.0006,
+ "loss": 3.4541757106781006,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824454148471617,
+ "grad_norm": 0.016174443066120148,
+ "learning_rate": 0.0006,
+ "loss": 3.496953010559082,
+ "step": 1283
+ },
+ {
+ "epoch": 17.83842794759825,
+ "grad_norm": 0.015538575127720833,
+ "learning_rate": 0.0006,
+ "loss": 3.501938819885254,
+ "step": 1284
+ },
+ {
+ "epoch": 17.85240174672489,
+ "grad_norm": 0.015476577915251255,
+ "learning_rate": 0.0006,
+ "loss": 3.4954936504364014,
+ "step": 1285
+ },
+ {
+ "epoch": 17.86637554585153,
+ "grad_norm": 0.01563846506178379,
+ "learning_rate": 0.0006,
+ "loss": 3.4736757278442383,
+ "step": 1286
+ },
+ {
+ "epoch": 17.880349344978168,
+ "grad_norm": 0.016416197642683983,
+ "learning_rate": 0.0006,
+ "loss": 3.4564414024353027,
+ "step": 1287
+ },
+ {
+ "epoch": 17.894323144104803,
+ "grad_norm": 0.016533056274056435,
+ "learning_rate": 0.0006,
+ "loss": 3.4835453033447266,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90829694323144,
+ "grad_norm": 0.01587281934916973,
+ "learning_rate": 0.0006,
+ "loss": 3.460432529449463,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92227074235808,
+ "grad_norm": 0.01610104739665985,
+ "learning_rate": 0.0006,
+ "loss": 3.4919300079345703,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936244541484715,
+ "grad_norm": 0.01581653021275997,
+ "learning_rate": 0.0006,
+ "loss": 3.4631175994873047,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950218340611354,
+ "grad_norm": 0.015979735180735588,
+ "learning_rate": 0.0006,
+ "loss": 3.4901933670043945,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964192139737992,
+ "grad_norm": 0.01630399376153946,
+ "learning_rate": 0.0006,
+ "loss": 3.4629836082458496,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978165938864628,
+ "grad_norm": 0.017480242997407913,
+ "learning_rate": 0.0006,
+ "loss": 3.4913692474365234,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992139737991266,
+ "grad_norm": 0.016874775290489197,
+ "learning_rate": 0.0006,
+ "loss": 3.4790616035461426,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.01860641874372959,
+ "learning_rate": 0.0006,
+ "loss": 3.451586961746216,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 3.9891297817230225,
+ "eval_runtime": 50.1961,
+ "eval_samples_per_second": 48.649,
+ "eval_steps_per_second": 1.534,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397379912664,
+ "grad_norm": 0.020353643223643303,
+ "learning_rate": 0.0006,
+ "loss": 3.3365015983581543,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027947598253274,
+ "grad_norm": 0.025348901748657227,
+ "learning_rate": 0.0006,
+ "loss": 3.362994909286499,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041921397379912,
+ "grad_norm": 0.025188535451889038,
+ "learning_rate": 0.0006,
+ "loss": 3.363680362701416,
+ "step": 1299
+ },
+ {
+ "epoch": 18.05589519650655,
+ "grad_norm": 0.022153817117214203,
+ "learning_rate": 0.0006,
+ "loss": 3.3311727046966553,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069868995633186,
+ "grad_norm": 0.023192603141069412,
+ "learning_rate": 0.0006,
+ "loss": 3.313582420349121,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083842794759825,
+ "grad_norm": 0.023841004818677902,
+ "learning_rate": 0.0006,
+ "loss": 3.3787522315979004,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097816593886463,
+ "grad_norm": 0.024539794772863388,
+ "learning_rate": 0.0006,
+ "loss": 3.382267475128174,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111790393013102,
+ "grad_norm": 0.026391029357910156,
+ "learning_rate": 0.0006,
+ "loss": 3.3674709796905518,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125764192139737,
+ "grad_norm": 0.027859404683113098,
+ "learning_rate": 0.0006,
+ "loss": 3.3584036827087402,
+ "step": 1305
+ },
+ {
+ "epoch": 18.139737991266376,
+ "grad_norm": 0.027688005939126015,
+ "learning_rate": 0.0006,
+ "loss": 3.314915657043457,
+ "step": 1306
+ },
+ {
+ "epoch": 18.153711790393015,
+ "grad_norm": 0.026942238211631775,
+ "learning_rate": 0.0006,
+ "loss": 3.387618064880371,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16768558951965,
+ "grad_norm": 0.02890498749911785,
+ "learning_rate": 0.0006,
+ "loss": 3.35286021232605,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18165938864629,
+ "grad_norm": 0.028318168595433235,
+ "learning_rate": 0.0006,
+ "loss": 3.347115993499756,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195633187772927,
+ "grad_norm": 0.02423982135951519,
+ "learning_rate": 0.0006,
+ "loss": 3.365628242492676,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209606986899562,
+ "grad_norm": 0.025620151311159134,
+ "learning_rate": 0.0006,
+ "loss": 3.3887939453125,
+ "step": 1311
+ },
+ {
+ "epoch": 18.2235807860262,
+ "grad_norm": 0.02538205496966839,
+ "learning_rate": 0.0006,
+ "loss": 3.3417105674743652,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23755458515284,
+ "grad_norm": 0.024902652949094772,
+ "learning_rate": 0.0006,
+ "loss": 3.348081111907959,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251528384279474,
+ "grad_norm": 0.024858251214027405,
+ "learning_rate": 0.0006,
+ "loss": 3.3346352577209473,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265502183406113,
+ "grad_norm": 0.02413691021502018,
+ "learning_rate": 0.0006,
+ "loss": 3.373331069946289,
+ "step": 1315
+ },
+ {
+ "epoch": 18.27947598253275,
+ "grad_norm": 0.024673711508512497,
+ "learning_rate": 0.0006,
+ "loss": 3.3532657623291016,
+ "step": 1316
+ },
+ {
+ "epoch": 18.29344978165939,
+ "grad_norm": 0.02378152869641781,
+ "learning_rate": 0.0006,
+ "loss": 3.380765438079834,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307423580786025,
+ "grad_norm": 0.025095898658037186,
+ "learning_rate": 0.0006,
+ "loss": 3.3837740421295166,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321397379912664,
+ "grad_norm": 0.028187017887830734,
+ "learning_rate": 0.0006,
+ "loss": 3.4130377769470215,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335371179039303,
+ "grad_norm": 0.030678752809762955,
+ "learning_rate": 0.0006,
+ "loss": 3.353358745574951,
+ "step": 1320
+ },
+ {
+ "epoch": 18.349344978165938,
+ "grad_norm": 0.03067706525325775,
+ "learning_rate": 0.0006,
+ "loss": 3.386003017425537,
+ "step": 1321
+ },
+ {
+ "epoch": 18.363318777292577,
+ "grad_norm": 0.029064467176795006,
+ "learning_rate": 0.0006,
+ "loss": 3.3915395736694336,
+ "step": 1322
+ },
+ {
+ "epoch": 18.377292576419215,
+ "grad_norm": 0.027225302532315254,
+ "learning_rate": 0.0006,
+ "loss": 3.3875136375427246,
+ "step": 1323
+ },
+ {
+ "epoch": 18.39126637554585,
+ "grad_norm": 0.02669711410999298,
+ "learning_rate": 0.0006,
+ "loss": 3.406268358230591,
+ "step": 1324
+ },
+ {
+ "epoch": 18.40524017467249,
+ "grad_norm": 0.028905952349305153,
+ "learning_rate": 0.0006,
+ "loss": 3.3588786125183105,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419213973799128,
+ "grad_norm": 0.02591577172279358,
+ "learning_rate": 0.0006,
+ "loss": 3.378920078277588,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433187772925763,
+ "grad_norm": 0.02405492030084133,
+ "learning_rate": 0.0006,
+ "loss": 3.4215216636657715,
+ "step": 1327
+ },
+ {
+ "epoch": 18.4471615720524,
+ "grad_norm": 0.02288426086306572,
+ "learning_rate": 0.0006,
+ "loss": 3.4051475524902344,
+ "step": 1328
+ },
+ {
+ "epoch": 18.46113537117904,
+ "grad_norm": 0.02265259623527527,
+ "learning_rate": 0.0006,
+ "loss": 3.376089096069336,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475109170305675,
+ "grad_norm": 0.021498411893844604,
+ "learning_rate": 0.0006,
+ "loss": 3.3922982215881348,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489082969432314,
+ "grad_norm": 0.02283475548028946,
+ "learning_rate": 0.0006,
+ "loss": 3.435965061187744,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503056768558952,
+ "grad_norm": 0.02214580774307251,
+ "learning_rate": 0.0006,
+ "loss": 3.4137468338012695,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51703056768559,
+ "grad_norm": 0.02150345966219902,
+ "learning_rate": 0.0006,
+ "loss": 3.3775486946105957,
+ "step": 1333
+ },
+ {
+ "epoch": 18.531004366812226,
+ "grad_norm": 0.02131151221692562,
+ "learning_rate": 0.0006,
+ "loss": 3.3902227878570557,
+ "step": 1334
+ },
+ {
+ "epoch": 18.544978165938865,
+ "grad_norm": 0.019052445888519287,
+ "learning_rate": 0.0006,
+ "loss": 3.4158318042755127,
+ "step": 1335
+ },
+ {
+ "epoch": 18.558951965065503,
+ "grad_norm": 0.018629150465130806,
+ "learning_rate": 0.0006,
+ "loss": 3.40549898147583,
+ "step": 1336
+ },
+ {
+ "epoch": 18.57292576419214,
+ "grad_norm": 0.019917191937565804,
+ "learning_rate": 0.0006,
+ "loss": 3.3770365715026855,
+ "step": 1337
+ },
+ {
+ "epoch": 18.586899563318777,
+ "grad_norm": 0.01985880360007286,
+ "learning_rate": 0.0006,
+ "loss": 3.393543243408203,
+ "step": 1338
+ },
+ {
+ "epoch": 18.600873362445416,
+ "grad_norm": 0.019536739215254784,
+ "learning_rate": 0.0006,
+ "loss": 3.426811695098877,
+ "step": 1339
+ },
+ {
+ "epoch": 18.61484716157205,
+ "grad_norm": 0.01855909265577793,
+ "learning_rate": 0.0006,
+ "loss": 3.401531219482422,
+ "step": 1340
+ },
+ {
+ "epoch": 18.62882096069869,
+ "grad_norm": 0.018492981791496277,
+ "learning_rate": 0.0006,
+ "loss": 3.4268338680267334,
+ "step": 1341
+ },
+ {
+ "epoch": 18.64279475982533,
+ "grad_norm": 0.0180380679666996,
+ "learning_rate": 0.0006,
+ "loss": 3.4302897453308105,
+ "step": 1342
+ },
+ {
+ "epoch": 18.656768558951963,
+ "grad_norm": 0.017962129786610603,
+ "learning_rate": 0.0006,
+ "loss": 3.396136522293091,
+ "step": 1343
+ },
+ {
+ "epoch": 18.670742358078602,
+ "grad_norm": 0.019102413207292557,
+ "learning_rate": 0.0006,
+ "loss": 3.390157699584961,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68471615720524,
+ "grad_norm": 0.01885206066071987,
+ "learning_rate": 0.0006,
+ "loss": 3.410893440246582,
+ "step": 1345
+ },
+ {
+ "epoch": 18.69868995633188,
+ "grad_norm": 0.018043991178274155,
+ "learning_rate": 0.0006,
+ "loss": 3.3919389247894287,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712663755458514,
+ "grad_norm": 0.01806800253689289,
+ "learning_rate": 0.0006,
+ "loss": 3.43209171295166,
+ "step": 1347
+ },
+ {
+ "epoch": 18.726637554585153,
+ "grad_norm": 0.01855402998626232,
+ "learning_rate": 0.0006,
+ "loss": 3.428830146789551,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74061135371179,
+ "grad_norm": 0.018445072695612907,
+ "learning_rate": 0.0006,
+ "loss": 3.4180264472961426,
+ "step": 1349
+ },
+ {
+ "epoch": 18.754585152838427,
+ "grad_norm": 0.018156694248318672,
+ "learning_rate": 0.0006,
+ "loss": 3.4011521339416504,
+ "step": 1350
+ },
+ {
+ "epoch": 18.768558951965066,
+ "grad_norm": 0.019634190946817398,
+ "learning_rate": 0.0006,
+ "loss": 3.388862371444702,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782532751091704,
+ "grad_norm": 0.01954115554690361,
+ "learning_rate": 0.0006,
+ "loss": 3.4300918579101562,
+ "step": 1352
+ },
+ {
+ "epoch": 18.79650655021834,
+ "grad_norm": 0.01783105544745922,
+ "learning_rate": 0.0006,
+ "loss": 3.3942103385925293,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810480349344978,
+ "grad_norm": 0.017380334436893463,
+ "learning_rate": 0.0006,
+ "loss": 3.4005725383758545,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824454148471617,
+ "grad_norm": 0.01806088164448738,
+ "learning_rate": 0.0006,
+ "loss": 3.4157588481903076,
+ "step": 1355
+ },
+ {
+ "epoch": 18.83842794759825,
+ "grad_norm": 0.018839186057448387,
+ "learning_rate": 0.0006,
+ "loss": 3.40814208984375,
+ "step": 1356
+ },
+ {
+ "epoch": 18.85240174672489,
+ "grad_norm": 0.018662428483366966,
+ "learning_rate": 0.0006,
+ "loss": 3.4516561031341553,
+ "step": 1357
+ },
+ {
+ "epoch": 18.86637554585153,
+ "grad_norm": 0.016893137246370316,
+ "learning_rate": 0.0006,
+ "loss": 3.437650680541992,
+ "step": 1358
+ },
+ {
+ "epoch": 18.880349344978168,
+ "grad_norm": 0.017629794776439667,
+ "learning_rate": 0.0006,
+ "loss": 3.4278972148895264,
+ "step": 1359
+ },
+ {
+ "epoch": 18.894323144104803,
+ "grad_norm": 0.018383143469691277,
+ "learning_rate": 0.0006,
+ "loss": 3.4278743267059326,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90829694323144,
+ "grad_norm": 0.01822691783308983,
+ "learning_rate": 0.0006,
+ "loss": 3.4315247535705566,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92227074235808,
+ "grad_norm": 0.019348058849573135,
+ "learning_rate": 0.0006,
+ "loss": 3.401350498199463,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936244541484715,
+ "grad_norm": 0.01952742226421833,
+ "learning_rate": 0.0006,
+ "loss": 3.378289222717285,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950218340611354,
+ "grad_norm": 0.019068529829382896,
+ "learning_rate": 0.0006,
+ "loss": 3.4088215827941895,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964192139737992,
+ "grad_norm": 0.02002856135368347,
+ "learning_rate": 0.0006,
+ "loss": 3.4396965503692627,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978165938864628,
+ "grad_norm": 0.01839490234851837,
+ "learning_rate": 0.0006,
+ "loss": 3.4167215824127197,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992139737991266,
+ "grad_norm": 0.018450899049639702,
+ "learning_rate": 0.0006,
+ "loss": 3.4458084106445312,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.021764317527413368,
+ "learning_rate": 0.0006,
+ "loss": 3.4413537979125977,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 3.9891514778137207,
+ "eval_runtime": 49.9998,
+ "eval_samples_per_second": 48.84,
+ "eval_steps_per_second": 1.54,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397379912664,
+ "grad_norm": 0.02277272194623947,
+ "learning_rate": 0.0006,
+ "loss": 3.2692642211914062,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027947598253274,
+ "grad_norm": 0.03352588415145874,
+ "learning_rate": 0.0006,
+ "loss": 3.2701330184936523,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041921397379912,
+ "grad_norm": 0.03873065486550331,
+ "learning_rate": 0.0006,
+ "loss": 3.3169291019439697,
+ "step": 1371
+ },
+ {
+ "epoch": 19.05589519650655,
+ "grad_norm": 0.03804260492324829,
+ "learning_rate": 0.0006,
+ "loss": 3.2720119953155518,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069868995633186,
+ "grad_norm": 0.04382786899805069,
+ "learning_rate": 0.0006,
+ "loss": 3.2789559364318848,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083842794759825,
+ "grad_norm": 0.042553164064884186,
+ "learning_rate": 0.0006,
+ "loss": 3.287041187286377,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097816593886463,
+ "grad_norm": 0.040354058146476746,
+ "learning_rate": 0.0006,
+ "loss": 3.2970733642578125,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111790393013102,
+ "grad_norm": 0.04003302380442619,
+ "learning_rate": 0.0006,
+ "loss": 3.298656940460205,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125764192139737,
+ "grad_norm": 0.04839435964822769,
+ "learning_rate": 0.0006,
+ "loss": 3.3119897842407227,
+ "step": 1377
+ },
+ {
+ "epoch": 19.139737991266376,
+ "grad_norm": 0.04619353264570236,
+ "learning_rate": 0.0006,
+ "loss": 3.323103904724121,
+ "step": 1378
+ },
+ {
+ "epoch": 19.153711790393015,
+ "grad_norm": 0.04889119043946266,
+ "learning_rate": 0.0006,
+ "loss": 3.29386043548584,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16768558951965,
+ "grad_norm": 0.052284516394138336,
+ "learning_rate": 0.0006,
+ "loss": 3.2952120304107666,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18165938864629,
+ "grad_norm": 0.053939417004585266,
+ "learning_rate": 0.0006,
+ "loss": 3.309581756591797,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195633187772927,
+ "grad_norm": 0.04883198067545891,
+ "learning_rate": 0.0006,
+ "loss": 3.3202223777770996,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209606986899562,
+ "grad_norm": 0.04550885036587715,
+ "learning_rate": 0.0006,
+ "loss": 3.3503410816192627,
+ "step": 1383
+ },
+ {
+ "epoch": 19.2235807860262,
+ "grad_norm": 0.04721444472670555,
+ "learning_rate": 0.0006,
+ "loss": 3.3530726432800293,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23755458515284,
+ "grad_norm": 0.051496051251888275,
+ "learning_rate": 0.0006,
+ "loss": 3.333950996398926,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251528384279474,
+ "grad_norm": 0.053854621946811676,
+ "learning_rate": 0.0006,
+ "loss": 3.3520333766937256,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265502183406113,
+ "grad_norm": 0.04623614624142647,
+ "learning_rate": 0.0006,
+ "loss": 3.350588083267212,
+ "step": 1387
+ },
+ {
+ "epoch": 19.27947598253275,
+ "grad_norm": 0.04073309525847435,
+ "learning_rate": 0.0006,
+ "loss": 3.3644251823425293,
+ "step": 1388
+ },
+ {
+ "epoch": 19.29344978165939,
+ "grad_norm": 0.03639872372150421,
+ "learning_rate": 0.0006,
+ "loss": 3.367534875869751,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307423580786025,
+ "grad_norm": 0.036499980837106705,
+ "learning_rate": 0.0006,
+ "loss": 3.3632423877716064,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321397379912664,
+ "grad_norm": 0.0373394750058651,
+ "learning_rate": 0.0006,
+ "loss": 3.3506932258605957,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335371179039303,
+ "grad_norm": 0.04176274687051773,
+ "learning_rate": 0.0006,
+ "loss": 3.3571481704711914,
+ "step": 1392
+ },
+ {
+ "epoch": 19.349344978165938,
+ "grad_norm": 0.04616089537739754,
+ "learning_rate": 0.0006,
+ "loss": 3.359266996383667,
+ "step": 1393
+ },
+ {
+ "epoch": 19.363318777292577,
+ "grad_norm": 0.04692723974585533,
+ "learning_rate": 0.0006,
+ "loss": 3.390904188156128,
+ "step": 1394
+ },
+ {
+ "epoch": 19.377292576419215,
+ "grad_norm": 0.04957121983170509,
+ "learning_rate": 0.0006,
+ "loss": 3.341733932495117,
+ "step": 1395
+ },
+ {
+ "epoch": 19.39126637554585,
+ "grad_norm": 0.0432475246489048,
+ "learning_rate": 0.0006,
+ "loss": 3.2961924076080322,
+ "step": 1396
+ },
+ {
+ "epoch": 19.40524017467249,
+ "grad_norm": 0.041836753487586975,
+ "learning_rate": 0.0006,
+ "loss": 3.3686509132385254,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419213973799128,
+ "grad_norm": 0.03855185955762863,
+ "learning_rate": 0.0006,
+ "loss": 3.3566665649414062,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433187772925763,
+ "grad_norm": 0.034848880022764206,
+ "learning_rate": 0.0006,
+ "loss": 3.374608039855957,
+ "step": 1399
+ },
+ {
+ "epoch": 19.4471615720524,
+ "grad_norm": 0.03131943941116333,
+ "learning_rate": 0.0006,
+ "loss": 3.3618953227996826,
+ "step": 1400
+ },
+ {
+ "epoch": 19.46113537117904,
+ "grad_norm": 0.029629478231072426,
+ "learning_rate": 0.0006,
+ "loss": 3.3952600955963135,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475109170305675,
+ "grad_norm": 0.02885911799967289,
+ "learning_rate": 0.0006,
+ "loss": 3.382490634918213,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489082969432314,
+ "grad_norm": 0.026441723108291626,
+ "learning_rate": 0.0006,
+ "loss": 3.3543779850006104,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503056768558952,
+ "grad_norm": 0.024119269102811813,
+ "learning_rate": 0.0006,
+ "loss": 3.3829503059387207,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51703056768559,
+ "grad_norm": 0.023766381666064262,
+ "learning_rate": 0.0006,
+ "loss": 3.37758731842041,
+ "step": 1405
+ },
+ {
+ "epoch": 19.531004366812226,
+ "grad_norm": 0.02395741641521454,
+ "learning_rate": 0.0006,
+ "loss": 3.4042277336120605,
+ "step": 1406
+ },
+ {
+ "epoch": 19.544978165938865,
+ "grad_norm": 0.023499730974435806,
+ "learning_rate": 0.0006,
+ "loss": 3.3811798095703125,
+ "step": 1407
+ },
+ {
+ "epoch": 19.558951965065503,
+ "grad_norm": 0.021423807367682457,
+ "learning_rate": 0.0006,
+ "loss": 3.3517274856567383,
+ "step": 1408
+ },
+ {
+ "epoch": 19.57292576419214,
+ "grad_norm": 0.02017848752439022,
+ "learning_rate": 0.0006,
+ "loss": 3.369368314743042,
+ "step": 1409
+ },
+ {
+ "epoch": 19.586899563318777,
+ "grad_norm": 0.02168160304427147,
+ "learning_rate": 0.0006,
+ "loss": 3.357361316680908,
+ "step": 1410
+ },
+ {
+ "epoch": 19.600873362445416,
+ "grad_norm": 0.020053956657648087,
+ "learning_rate": 0.0006,
+ "loss": 3.378511667251587,
+ "step": 1411
+ },
+ {
+ "epoch": 19.61484716157205,
+ "grad_norm": 0.018789371475577354,
+ "learning_rate": 0.0006,
+ "loss": 3.386579990386963,
+ "step": 1412
+ },
+ {
+ "epoch": 19.62882096069869,
+ "grad_norm": 0.01985175907611847,
+ "learning_rate": 0.0006,
+ "loss": 3.3903000354766846,
+ "step": 1413
+ },
+ {
+ "epoch": 19.64279475982533,
+ "grad_norm": 0.019878871738910675,
+ "learning_rate": 0.0006,
+ "loss": 3.362997055053711,
+ "step": 1414
+ },
+ {
+ "epoch": 19.656768558951963,
+ "grad_norm": 0.01920200325548649,
+ "learning_rate": 0.0006,
+ "loss": 3.397496461868286,
+ "step": 1415
+ },
+ {
+ "epoch": 19.670742358078602,
+ "grad_norm": 0.019940156489610672,
+ "learning_rate": 0.0006,
+ "loss": 3.375986099243164,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68471615720524,
+ "grad_norm": 0.019822560250759125,
+ "learning_rate": 0.0006,
+ "loss": 3.351943016052246,
+ "step": 1417
+ },
+ {
+ "epoch": 19.69868995633188,
+ "grad_norm": 0.01987987756729126,
+ "learning_rate": 0.0006,
+ "loss": 3.3699135780334473,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712663755458514,
+ "grad_norm": 0.020490208640694618,
+ "learning_rate": 0.0006,
+ "loss": 3.3826851844787598,
+ "step": 1419
+ },
+ {
+ "epoch": 19.726637554585153,
+ "grad_norm": 0.019540539011359215,
+ "learning_rate": 0.0006,
+ "loss": 3.330385208129883,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74061135371179,
+ "grad_norm": 0.018522001802921295,
+ "learning_rate": 0.0006,
+ "loss": 3.3798022270202637,
+ "step": 1421
+ },
+ {
+ "epoch": 19.754585152838427,
+ "grad_norm": 0.019179968163371086,
+ "learning_rate": 0.0006,
+ "loss": 3.352015733718872,
+ "step": 1422
+ },
+ {
+ "epoch": 19.768558951965066,
+ "grad_norm": 0.018380016088485718,
+ "learning_rate": 0.0006,
+ "loss": 3.3417506217956543,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782532751091704,
+ "grad_norm": 0.018539059907197952,
+ "learning_rate": 0.0006,
+ "loss": 3.3680901527404785,
+ "step": 1424
+ },
+ {
+ "epoch": 19.79650655021834,
+ "grad_norm": 0.01938101463019848,
+ "learning_rate": 0.0006,
+ "loss": 3.3972573280334473,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810480349344978,
+ "grad_norm": 0.019287938252091408,
+ "learning_rate": 0.0006,
+ "loss": 3.3635201454162598,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824454148471617,
+ "grad_norm": 0.01918751373887062,
+ "learning_rate": 0.0006,
+ "loss": 3.3594346046447754,
+ "step": 1427
+ },
+ {
+ "epoch": 19.83842794759825,
+ "grad_norm": 0.01843525469303131,
+ "learning_rate": 0.0006,
+ "loss": 3.3794357776641846,
+ "step": 1428
+ },
+ {
+ "epoch": 19.85240174672489,
+ "grad_norm": 0.017499281093478203,
+ "learning_rate": 0.0006,
+ "loss": 3.3725686073303223,
+ "step": 1429
+ },
+ {
+ "epoch": 19.86637554585153,
+ "grad_norm": 0.01804421842098236,
+ "learning_rate": 0.0006,
+ "loss": 3.3510665893554688,
+ "step": 1430
+ },
+ {
+ "epoch": 19.880349344978168,
+ "grad_norm": 0.01854187622666359,
+ "learning_rate": 0.0006,
+ "loss": 3.366323471069336,
+ "step": 1431
+ },
+ {
+ "epoch": 19.894323144104803,
+ "grad_norm": 0.019070899114012718,
+ "learning_rate": 0.0006,
+ "loss": 3.3426618576049805,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90829694323144,
+ "grad_norm": 0.018046852201223373,
+ "learning_rate": 0.0006,
+ "loss": 3.392629623413086,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92227074235808,
+ "grad_norm": 0.017897332087159157,
+ "learning_rate": 0.0006,
+ "loss": 3.384459972381592,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936244541484715,
+ "grad_norm": 0.018831918016076088,
+ "learning_rate": 0.0006,
+ "loss": 3.3787403106689453,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950218340611354,
+ "grad_norm": 0.017684299498796463,
+ "learning_rate": 0.0006,
+ "loss": 3.3839499950408936,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964192139737992,
+ "grad_norm": 0.018664930015802383,
+ "learning_rate": 0.0006,
+ "loss": 3.361309289932251,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978165938864628,
+ "grad_norm": 0.018459675833582878,
+ "learning_rate": 0.0006,
+ "loss": 3.3763248920440674,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992139737991266,
+ "grad_norm": 0.018684620037674904,
+ "learning_rate": 0.0006,
+ "loss": 3.364279270172119,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.02109597623348236,
+ "learning_rate": 0.0006,
+ "loss": 3.3849806785583496,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 3.997159004211426,
+ "eval_runtime": 54.7559,
+ "eval_samples_per_second": 44.598,
+ "eval_steps_per_second": 1.406,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397379912664,
+ "grad_norm": 0.023242158815264702,
+ "learning_rate": 0.0006,
+ "loss": 3.219148635864258,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027947598253274,
+ "grad_norm": 0.035289909690618515,
+ "learning_rate": 0.0006,
+ "loss": 3.1906566619873047,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041921397379912,
+ "grad_norm": 0.03934298828244209,
+ "learning_rate": 0.0006,
+ "loss": 3.24796199798584,
+ "step": 1443
+ },
+ {
+ "epoch": 20.05589519650655,
+ "grad_norm": 0.03764699772000313,
+ "learning_rate": 0.0006,
+ "loss": 3.258643627166748,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069868995633186,
+ "grad_norm": 0.038128290325403214,
+ "learning_rate": 0.0006,
+ "loss": 3.2360262870788574,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083842794759825,
+ "grad_norm": 0.04228486120700836,
+ "learning_rate": 0.0006,
+ "loss": 3.246365547180176,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097816593886463,
+ "grad_norm": 0.04360193759202957,
+ "learning_rate": 0.0006,
+ "loss": 3.2414700984954834,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111790393013102,
+ "grad_norm": 0.03822943568229675,
+ "learning_rate": 0.0006,
+ "loss": 3.2489700317382812,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125764192139737,
+ "grad_norm": 0.036029502749443054,
+ "learning_rate": 0.0006,
+ "loss": 3.2229957580566406,
+ "step": 1449
+ },
+ {
+ "epoch": 20.139737991266376,
+ "grad_norm": 0.03957182168960571,
+ "learning_rate": 0.0006,
+ "loss": 3.256904125213623,
+ "step": 1450
+ },
+ {
+ "epoch": 20.153711790393015,
+ "grad_norm": 0.039222728461027145,
+ "learning_rate": 0.0006,
+ "loss": 3.268920660018921,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16768558951965,
+ "grad_norm": 0.034906432032585144,
+ "learning_rate": 0.0006,
+ "loss": 3.2575674057006836,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18165938864629,
+ "grad_norm": 0.03401615098118782,
+ "learning_rate": 0.0006,
+ "loss": 3.231116771697998,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195633187772927,
+ "grad_norm": 0.034356508404016495,
+ "learning_rate": 0.0006,
+ "loss": 3.262190580368042,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209606986899562,
+ "grad_norm": 0.03251064196228981,
+ "learning_rate": 0.0006,
+ "loss": 3.2810235023498535,
+ "step": 1455
+ },
+ {
+ "epoch": 20.2235807860262,
+ "grad_norm": 0.03308776021003723,
+ "learning_rate": 0.0006,
+ "loss": 3.2639098167419434,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23755458515284,
+ "grad_norm": 0.03230876103043556,
+ "learning_rate": 0.0006,
+ "loss": 3.2558178901672363,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251528384279474,
+ "grad_norm": 0.03161812946200371,
+ "learning_rate": 0.0006,
+ "loss": 3.291419267654419,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265502183406113,
+ "grad_norm": 0.02916458062827587,
+ "learning_rate": 0.0006,
+ "loss": 3.280852794647217,
+ "step": 1459
+ },
+ {
+ "epoch": 20.27947598253275,
+ "grad_norm": 0.029812375083565712,
+ "learning_rate": 0.0006,
+ "loss": 3.2271876335144043,
+ "step": 1460
+ },
+ {
+ "epoch": 20.29344978165939,
+ "grad_norm": 0.029384229332208633,
+ "learning_rate": 0.0006,
+ "loss": 3.2629804611206055,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307423580786025,
+ "grad_norm": 0.033414218574762344,
+ "learning_rate": 0.0006,
+ "loss": 3.270416498184204,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321397379912664,
+ "grad_norm": 0.03318887576460838,
+ "learning_rate": 0.0006,
+ "loss": 3.272148609161377,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335371179039303,
+ "grad_norm": 0.030193055048584938,
+ "learning_rate": 0.0006,
+ "loss": 3.2646775245666504,
+ "step": 1464
+ },
+ {
+ "epoch": 20.349344978165938,
+ "grad_norm": 0.028252357617020607,
+ "learning_rate": 0.0006,
+ "loss": 3.2772417068481445,
+ "step": 1465
+ },
+ {
+ "epoch": 20.363318777292577,
+ "grad_norm": 0.028565213084220886,
+ "learning_rate": 0.0006,
+ "loss": 3.3179280757904053,
+ "step": 1466
+ },
+ {
+ "epoch": 20.377292576419215,
+ "grad_norm": 0.026722336187958717,
+ "learning_rate": 0.0006,
+ "loss": 3.2810170650482178,
+ "step": 1467
+ },
+ {
+ "epoch": 20.39126637554585,
+ "grad_norm": 0.025114644318819046,
+ "learning_rate": 0.0006,
+ "loss": 3.2686173915863037,
+ "step": 1468
+ },
+ {
+ "epoch": 20.40524017467249,
+ "grad_norm": 0.025851737707853317,
+ "learning_rate": 0.0006,
+ "loss": 3.2975308895111084,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419213973799128,
+ "grad_norm": 0.024468228220939636,
+ "learning_rate": 0.0006,
+ "loss": 3.2880358695983887,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433187772925763,
+ "grad_norm": 0.02360754832625389,
+ "learning_rate": 0.0006,
+ "loss": 3.2768073081970215,
+ "step": 1471
+ },
+ {
+ "epoch": 20.4471615720524,
+ "grad_norm": 0.024596888571977615,
+ "learning_rate": 0.0006,
+ "loss": 3.285207509994507,
+ "step": 1472
+ },
+ {
+ "epoch": 20.46113537117904,
+ "grad_norm": 0.02434864081442356,
+ "learning_rate": 0.0006,
+ "loss": 3.284351110458374,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475109170305675,
+ "grad_norm": 0.023001939058303833,
+ "learning_rate": 0.0006,
+ "loss": 3.2642571926116943,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489082969432314,
+ "grad_norm": 0.022632446140050888,
+ "learning_rate": 0.0006,
+ "loss": 3.32163143157959,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503056768558952,
+ "grad_norm": 0.023113328963518143,
+ "learning_rate": 0.0006,
+ "loss": 3.292109251022339,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51703056768559,
+ "grad_norm": 0.02199697494506836,
+ "learning_rate": 0.0006,
+ "loss": 3.3133938312530518,
+ "step": 1477
+ },
+ {
+ "epoch": 20.531004366812226,
+ "grad_norm": 0.023468362167477608,
+ "learning_rate": 0.0006,
+ "loss": 3.2595276832580566,
+ "step": 1478
+ },
+ {
+ "epoch": 20.544978165938865,
+ "grad_norm": 0.022027716040611267,
+ "learning_rate": 0.0006,
+ "loss": 3.2692484855651855,
+ "step": 1479
+ },
+ {
+ "epoch": 20.558951965065503,
+ "grad_norm": 0.021089443936944008,
+ "learning_rate": 0.0006,
+ "loss": 3.317549467086792,
+ "step": 1480
+ },
+ {
+ "epoch": 20.57292576419214,
+ "grad_norm": 0.020714912563562393,
+ "learning_rate": 0.0006,
+ "loss": 3.2982163429260254,
+ "step": 1481
+ },
+ {
+ "epoch": 20.586899563318777,
+ "grad_norm": 0.021601643413305283,
+ "learning_rate": 0.0006,
+ "loss": 3.303770065307617,
+ "step": 1482
+ },
+ {
+ "epoch": 20.600873362445416,
+ "grad_norm": 0.02164667472243309,
+ "learning_rate": 0.0006,
+ "loss": 3.297548294067383,
+ "step": 1483
+ },
+ {
+ "epoch": 20.61484716157205,
+ "grad_norm": 0.0205276720225811,
+ "learning_rate": 0.0006,
+ "loss": 3.265287399291992,
+ "step": 1484
+ },
+ {
+ "epoch": 20.62882096069869,
+ "grad_norm": 0.020926227793097496,
+ "learning_rate": 0.0006,
+ "loss": 3.3233776092529297,
+ "step": 1485
+ },
+ {
+ "epoch": 20.64279475982533,
+ "grad_norm": 0.020680908113718033,
+ "learning_rate": 0.0006,
+ "loss": 3.299736499786377,
+ "step": 1486
+ },
+ {
+ "epoch": 20.656768558951963,
+ "grad_norm": 0.02010631375014782,
+ "learning_rate": 0.0006,
+ "loss": 3.319195032119751,
+ "step": 1487
+ },
+ {
+ "epoch": 20.670742358078602,
+ "grad_norm": 0.01861870475113392,
+ "learning_rate": 0.0006,
+ "loss": 3.309542179107666,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68471615720524,
+ "grad_norm": 0.019709311425685883,
+ "learning_rate": 0.0006,
+ "loss": 3.2684426307678223,
+ "step": 1489
+ },
+ {
+ "epoch": 20.69868995633188,
+ "grad_norm": 0.019379155710339546,
+ "learning_rate": 0.0006,
+ "loss": 3.3123316764831543,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712663755458514,
+ "grad_norm": 0.018971465528011322,
+ "learning_rate": 0.0006,
+ "loss": 3.3249459266662598,
+ "step": 1491
+ },
+ {
+ "epoch": 20.726637554585153,
+ "grad_norm": 0.01862727664411068,
+ "learning_rate": 0.0006,
+ "loss": 3.2942824363708496,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74061135371179,
+ "grad_norm": 0.01932865008711815,
+ "learning_rate": 0.0006,
+ "loss": 3.3328568935394287,
+ "step": 1493
+ },
+ {
+ "epoch": 20.754585152838427,
+ "grad_norm": 0.019298749044537544,
+ "learning_rate": 0.0006,
+ "loss": 3.2632360458374023,
+ "step": 1494
+ },
+ {
+ "epoch": 20.768558951965066,
+ "grad_norm": 0.018749341368675232,
+ "learning_rate": 0.0006,
+ "loss": 3.320802688598633,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782532751091704,
+ "grad_norm": 0.01888313889503479,
+ "learning_rate": 0.0006,
+ "loss": 3.3290247917175293,
+ "step": 1496
+ },
+ {
+ "epoch": 20.79650655021834,
+ "grad_norm": 0.019536348059773445,
+ "learning_rate": 0.0006,
+ "loss": 3.311213493347168,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810480349344978,
+ "grad_norm": 0.018573017790913582,
+ "learning_rate": 0.0006,
+ "loss": 3.3132004737854004,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824454148471617,
+ "grad_norm": 0.019365103915333748,
+ "learning_rate": 0.0006,
+ "loss": 3.312656879425049,
+ "step": 1499
+ },
+ {
+ "epoch": 20.83842794759825,
+ "grad_norm": 0.021032165735960007,
+ "learning_rate": 0.0006,
+ "loss": 3.330728054046631,
+ "step": 1500
+ },
+ {
+ "epoch": 20.85240174672489,
+ "grad_norm": 0.02062826044857502,
+ "learning_rate": 0.0006,
+ "loss": 3.386507034301758,
+ "step": 1501
+ },
+ {
+ "epoch": 20.86637554585153,
+ "grad_norm": 0.019087517634034157,
+ "learning_rate": 0.0006,
+ "loss": 3.3134851455688477,
+ "step": 1502
+ },
+ {
+ "epoch": 20.880349344978168,
+ "grad_norm": 0.018393544480204582,
+ "learning_rate": 0.0006,
+ "loss": 3.3288557529449463,
+ "step": 1503
+ },
+ {
+ "epoch": 20.894323144104803,
+ "grad_norm": 0.018625570461153984,
+ "learning_rate": 0.0006,
+ "loss": 3.3385863304138184,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90829694323144,
+ "grad_norm": 0.018994612619280815,
+ "learning_rate": 0.0006,
+ "loss": 3.3441519737243652,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92227074235808,
+ "grad_norm": 0.019807450473308563,
+ "learning_rate": 0.0006,
+ "loss": 3.2853572368621826,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936244541484715,
+ "grad_norm": 0.01904045045375824,
+ "learning_rate": 0.0006,
+ "loss": 3.2973103523254395,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950218340611354,
+ "grad_norm": 0.019115809351205826,
+ "learning_rate": 0.0006,
+ "loss": 3.3340232372283936,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964192139737992,
+ "grad_norm": 0.020370563492178917,
+ "learning_rate": 0.0006,
+ "loss": 3.3770620822906494,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978165938864628,
+ "grad_norm": 0.02040398307144642,
+ "learning_rate": 0.0006,
+ "loss": 3.3141350746154785,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992139737991266,
+ "grad_norm": 0.019721226766705513,
+ "learning_rate": 0.0006,
+ "loss": 3.3140838146209717,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.021993499249219894,
+ "learning_rate": 0.0006,
+ "loss": 3.327284574508667,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 4.007121562957764,
+ "eval_runtime": 50.0284,
+ "eval_samples_per_second": 48.812,
+ "eval_steps_per_second": 1.539,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397379912664,
+ "grad_norm": 0.0266740545630455,
+ "learning_rate": 0.0006,
+ "loss": 3.1542232036590576,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027947598253274,
+ "grad_norm": 0.0431625060737133,
+ "learning_rate": 0.0006,
+ "loss": 3.1733574867248535,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041921397379912,
+ "grad_norm": 0.05062565952539444,
+ "learning_rate": 0.0006,
+ "loss": 3.2326841354370117,
+ "step": 1515
+ },
+ {
+ "epoch": 21.05589519650655,
+ "grad_norm": 0.04447261989116669,
+ "learning_rate": 0.0006,
+ "loss": 3.158965587615967,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069868995633186,
+ "grad_norm": 0.04547872766852379,
+ "learning_rate": 0.0006,
+ "loss": 3.1754844188690186,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083842794759825,
+ "grad_norm": 0.045201778411865234,
+ "learning_rate": 0.0006,
+ "loss": 3.164539337158203,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097816593886463,
+ "grad_norm": 0.04903271794319153,
+ "learning_rate": 0.0006,
+ "loss": 3.223135232925415,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111790393013102,
+ "grad_norm": 0.05277688428759575,
+ "learning_rate": 0.0006,
+ "loss": 3.21925687789917,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125764192139737,
+ "grad_norm": 0.055951476097106934,
+ "learning_rate": 0.0006,
+ "loss": 3.2054057121276855,
+ "step": 1521
+ },
+ {
+ "epoch": 21.139737991266376,
+ "grad_norm": 0.05742252990603447,
+ "learning_rate": 0.0006,
+ "loss": 3.2347140312194824,
+ "step": 1522
+ },
+ {
+ "epoch": 21.153711790393015,
+ "grad_norm": 0.05464409664273262,
+ "learning_rate": 0.0006,
+ "loss": 3.2519783973693848,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16768558951965,
+ "grad_norm": 0.06649098545312881,
+ "learning_rate": 0.0006,
+ "loss": 3.2739510536193848,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18165938864629,
+ "grad_norm": 0.07743308693170547,
+ "learning_rate": 0.0006,
+ "loss": 3.2961807250976562,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195633187772927,
+ "grad_norm": 0.0752289667725563,
+ "learning_rate": 0.0006,
+ "loss": 3.284780740737915,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209606986899562,
+ "grad_norm": 0.06247316300868988,
+ "learning_rate": 0.0006,
+ "loss": 3.253411293029785,
+ "step": 1527
+ },
+ {
+ "epoch": 21.2235807860262,
+ "grad_norm": 0.06856120377779007,
+ "learning_rate": 0.0006,
+ "loss": 3.288010597229004,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23755458515284,
+ "grad_norm": 0.06939002871513367,
+ "learning_rate": 0.0006,
+ "loss": 3.2672412395477295,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251528384279474,
+ "grad_norm": 0.06546786427497864,
+ "learning_rate": 0.0006,
+ "loss": 3.2822303771972656,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265502183406113,
+ "grad_norm": 0.06720232218503952,
+ "learning_rate": 0.0006,
+ "loss": 3.332411289215088,
+ "step": 1531
+ },
+ {
+ "epoch": 21.27947598253275,
+ "grad_norm": 0.061658330261707306,
+ "learning_rate": 0.0006,
+ "loss": 3.2908289432525635,
+ "step": 1532
+ },
+ {
+ "epoch": 21.29344978165939,
+ "grad_norm": 0.07328956574201584,
+ "learning_rate": 0.0006,
+ "loss": 3.3375182151794434,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307423580786025,
+ "grad_norm": 0.06822583079338074,
+ "learning_rate": 0.0006,
+ "loss": 3.3630833625793457,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321397379912664,
+ "grad_norm": 0.060682639479637146,
+ "learning_rate": 0.0006,
+ "loss": 3.3475425243377686,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335371179039303,
+ "grad_norm": 0.05718247592449188,
+ "learning_rate": 0.0006,
+ "loss": 3.351832866668701,
+ "step": 1536
+ },
+ {
+ "epoch": 21.349344978165938,
+ "grad_norm": 0.05781054124236107,
+ "learning_rate": 0.0006,
+ "loss": 3.38287091255188,
+ "step": 1537
+ },
+ {
+ "epoch": 21.363318777292577,
+ "grad_norm": 0.05846734717488289,
+ "learning_rate": 0.0006,
+ "loss": 3.3522510528564453,
+ "step": 1538
+ },
+ {
+ "epoch": 21.377292576419215,
+ "grad_norm": 0.0558689683675766,
+ "learning_rate": 0.0006,
+ "loss": 3.3376541137695312,
+ "step": 1539
+ },
+ {
+ "epoch": 21.39126637554585,
+ "grad_norm": 0.050501998513936996,
+ "learning_rate": 0.0006,
+ "loss": 3.359436511993408,
+ "step": 1540
+ },
+ {
+ "epoch": 21.40524017467249,
+ "grad_norm": 0.04265185445547104,
+ "learning_rate": 0.0006,
+ "loss": 3.3644630908966064,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419213973799128,
+ "grad_norm": 0.038762111216783524,
+ "learning_rate": 0.0006,
+ "loss": 3.347414493560791,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433187772925763,
+ "grad_norm": 0.033920831978321075,
+ "learning_rate": 0.0006,
+ "loss": 3.3242359161376953,
+ "step": 1543
+ },
+ {
+ "epoch": 21.4471615720524,
+ "grad_norm": 0.03363734856247902,
+ "learning_rate": 0.0006,
+ "loss": 3.3375630378723145,
+ "step": 1544
+ },
+ {
+ "epoch": 21.46113537117904,
+ "grad_norm": 0.03235653042793274,
+ "learning_rate": 0.0006,
+ "loss": 3.3372178077697754,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475109170305675,
+ "grad_norm": 0.028865264728665352,
+ "learning_rate": 0.0006,
+ "loss": 3.349198341369629,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489082969432314,
+ "grad_norm": 0.026676205918192863,
+ "learning_rate": 0.0006,
+ "loss": 3.355546474456787,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503056768558952,
+ "grad_norm": 0.023821823298931122,
+ "learning_rate": 0.0006,
+ "loss": 3.303542137145996,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51703056768559,
+ "grad_norm": 0.02385578863322735,
+ "learning_rate": 0.0006,
+ "loss": 3.3081653118133545,
+ "step": 1549
+ },
+ {
+ "epoch": 21.531004366812226,
+ "grad_norm": 0.022704163566231728,
+ "learning_rate": 0.0006,
+ "loss": 3.308283805847168,
+ "step": 1550
+ },
+ {
+ "epoch": 21.544978165938865,
+ "grad_norm": 0.02143189311027527,
+ "learning_rate": 0.0006,
+ "loss": 3.309621810913086,
+ "step": 1551
+ },
+ {
+ "epoch": 21.558951965065503,
+ "grad_norm": 0.020797641947865486,
+ "learning_rate": 0.0006,
+ "loss": 3.314361095428467,
+ "step": 1552
+ },
+ {
+ "epoch": 21.57292576419214,
+ "grad_norm": 0.020197909325361252,
+ "learning_rate": 0.0006,
+ "loss": 3.314574956893921,
+ "step": 1553
+ },
+ {
+ "epoch": 21.586899563318777,
+ "grad_norm": 0.020033083856105804,
+ "learning_rate": 0.0006,
+ "loss": 3.3187432289123535,
+ "step": 1554
+ },
+ {
+ "epoch": 21.600873362445416,
+ "grad_norm": 0.019949860870838165,
+ "learning_rate": 0.0006,
+ "loss": 3.292051315307617,
+ "step": 1555
+ },
+ {
+ "epoch": 21.61484716157205,
+ "grad_norm": 0.019957413896918297,
+ "learning_rate": 0.0006,
+ "loss": 3.305405855178833,
+ "step": 1556
+ },
+ {
+ "epoch": 21.62882096069869,
+ "grad_norm": 0.019971443340182304,
+ "learning_rate": 0.0006,
+ "loss": 3.296830177307129,
+ "step": 1557
+ },
+ {
+ "epoch": 21.64279475982533,
+ "grad_norm": 0.020505597814917564,
+ "learning_rate": 0.0006,
+ "loss": 3.2825589179992676,
+ "step": 1558
+ },
+ {
+ "epoch": 21.656768558951963,
+ "grad_norm": 0.019877616316080093,
+ "learning_rate": 0.0006,
+ "loss": 3.313103199005127,
+ "step": 1559
+ },
+ {
+ "epoch": 21.670742358078602,
+ "grad_norm": 0.020201386883854866,
+ "learning_rate": 0.0006,
+ "loss": 3.235610008239746,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68471615720524,
+ "grad_norm": 0.02024715021252632,
+ "learning_rate": 0.0006,
+ "loss": 3.2557928562164307,
+ "step": 1561
+ },
+ {
+ "epoch": 21.69868995633188,
+ "grad_norm": 0.019592178985476494,
+ "learning_rate": 0.0006,
+ "loss": 3.2867813110351562,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712663755458514,
+ "grad_norm": 0.018611110746860504,
+ "learning_rate": 0.0006,
+ "loss": 3.2807016372680664,
+ "step": 1563
+ },
+ {
+ "epoch": 21.726637554585153,
+ "grad_norm": 0.018972786143422127,
+ "learning_rate": 0.0006,
+ "loss": 3.2985191345214844,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74061135371179,
+ "grad_norm": 0.018826451152563095,
+ "learning_rate": 0.0006,
+ "loss": 3.29825758934021,
+ "step": 1565
+ },
+ {
+ "epoch": 21.754585152838427,
+ "grad_norm": 0.018894566223025322,
+ "learning_rate": 0.0006,
+ "loss": 3.276063919067383,
+ "step": 1566
+ },
+ {
+ "epoch": 21.768558951965066,
+ "grad_norm": 0.01885579153895378,
+ "learning_rate": 0.0006,
+ "loss": 3.2703640460968018,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782532751091704,
+ "grad_norm": 0.018351880833506584,
+ "learning_rate": 0.0006,
+ "loss": 3.2634973526000977,
+ "step": 1568
+ },
+ {
+ "epoch": 21.79650655021834,
+ "grad_norm": 0.018520258367061615,
+ "learning_rate": 0.0006,
+ "loss": 3.2701549530029297,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810480349344978,
+ "grad_norm": 0.018321022391319275,
+ "learning_rate": 0.0006,
+ "loss": 3.2998499870300293,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824454148471617,
+ "grad_norm": 0.018834305927157402,
+ "learning_rate": 0.0006,
+ "loss": 3.2863354682922363,
+ "step": 1571
+ },
+ {
+ "epoch": 21.83842794759825,
+ "grad_norm": 0.019185064360499382,
+ "learning_rate": 0.0006,
+ "loss": 3.286705493927002,
+ "step": 1572
+ },
+ {
+ "epoch": 21.85240174672489,
+ "grad_norm": 0.01889665424823761,
+ "learning_rate": 0.0006,
+ "loss": 3.32741641998291,
+ "step": 1573
+ },
+ {
+ "epoch": 21.86637554585153,
+ "grad_norm": 0.018116198480129242,
+ "learning_rate": 0.0006,
+ "loss": 3.3165807723999023,
+ "step": 1574
+ },
+ {
+ "epoch": 21.880349344978168,
+ "grad_norm": 0.019612092524766922,
+ "learning_rate": 0.0006,
+ "loss": 3.2506771087646484,
+ "step": 1575
+ },
+ {
+ "epoch": 21.894323144104803,
+ "grad_norm": 0.018245317041873932,
+ "learning_rate": 0.0006,
+ "loss": 3.287231922149658,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90829694323144,
+ "grad_norm": 0.01800438202917576,
+ "learning_rate": 0.0006,
+ "loss": 3.323281764984131,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92227074235808,
+ "grad_norm": 0.018265806138515472,
+ "learning_rate": 0.0006,
+ "loss": 3.327335834503174,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936244541484715,
+ "grad_norm": 0.01925564929842949,
+ "learning_rate": 0.0006,
+ "loss": 3.3010969161987305,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950218340611354,
+ "grad_norm": 0.019137129187583923,
+ "learning_rate": 0.0006,
+ "loss": 3.2997634410858154,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964192139737992,
+ "grad_norm": 0.01760365068912506,
+ "learning_rate": 0.0006,
+ "loss": 3.2637267112731934,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978165938864628,
+ "grad_norm": 0.018728850409388542,
+ "learning_rate": 0.0006,
+ "loss": 3.2676243782043457,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992139737991266,
+ "grad_norm": 0.018930058926343918,
+ "learning_rate": 0.0006,
+ "loss": 3.280712604522705,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.021552253514528275,
+ "learning_rate": 0.0006,
+ "loss": 3.297333240509033,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 4.021175384521484,
+ "eval_runtime": 50.1224,
+ "eval_samples_per_second": 48.721,
+ "eval_steps_per_second": 1.536,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397379912664,
+ "grad_norm": 0.02215493470430374,
+ "learning_rate": 0.0006,
+ "loss": 3.1229772567749023,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027947598253274,
+ "grad_norm": 0.02967856451869011,
+ "learning_rate": 0.0006,
+ "loss": 3.137763738632202,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041921397379912,
+ "grad_norm": 0.02984168380498886,
+ "learning_rate": 0.0006,
+ "loss": 3.1206588745117188,
+ "step": 1587
+ },
+ {
+ "epoch": 22.05589519650655,
+ "grad_norm": 0.029677357524633408,
+ "learning_rate": 0.0006,
+ "loss": 3.1399269104003906,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069868995633186,
+ "grad_norm": 0.03151305764913559,
+ "learning_rate": 0.0006,
+ "loss": 3.1238462924957275,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083842794759825,
+ "grad_norm": 0.033034879714250565,
+ "learning_rate": 0.0006,
+ "loss": 3.0901098251342773,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097816593886463,
+ "grad_norm": 0.03483431041240692,
+ "learning_rate": 0.0006,
+ "loss": 3.141174077987671,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111790393013102,
+ "grad_norm": 0.03549962490797043,
+ "learning_rate": 0.0006,
+ "loss": 3.1501364707946777,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125764192139737,
+ "grad_norm": 0.03203433007001877,
+ "learning_rate": 0.0006,
+ "loss": 3.159137725830078,
+ "step": 1593
+ },
+ {
+ "epoch": 22.139737991266376,
+ "grad_norm": 0.032320212572813034,
+ "learning_rate": 0.0006,
+ "loss": 3.132265329360962,
+ "step": 1594
+ },
+ {
+ "epoch": 22.153711790393015,
+ "grad_norm": 0.034070853143930435,
+ "learning_rate": 0.0006,
+ "loss": 3.1619839668273926,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16768558951965,
+ "grad_norm": 0.03379609435796738,
+ "learning_rate": 0.0006,
+ "loss": 3.1391677856445312,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18165938864629,
+ "grad_norm": 0.02766602858901024,
+ "learning_rate": 0.0006,
+ "loss": 3.134331226348877,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195633187772927,
+ "grad_norm": 0.02805453911423683,
+ "learning_rate": 0.0006,
+ "loss": 3.1561427116394043,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209606986899562,
+ "grad_norm": 0.028059443458914757,
+ "learning_rate": 0.0006,
+ "loss": 3.1427788734436035,
+ "step": 1599
+ },
+ {
+ "epoch": 22.2235807860262,
+ "grad_norm": 0.028307706117630005,
+ "learning_rate": 0.0006,
+ "loss": 3.1559817790985107,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23755458515284,
+ "grad_norm": 0.0279996320605278,
+ "learning_rate": 0.0006,
+ "loss": 3.132871389389038,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251528384279474,
+ "grad_norm": 0.02574557065963745,
+ "learning_rate": 0.0006,
+ "loss": 3.1786751747131348,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265502183406113,
+ "grad_norm": 0.024875380098819733,
+ "learning_rate": 0.0006,
+ "loss": 3.1568856239318848,
+ "step": 1603
+ },
+ {
+ "epoch": 22.27947598253275,
+ "grad_norm": 0.025276372209191322,
+ "learning_rate": 0.0006,
+ "loss": 3.162123203277588,
+ "step": 1604
+ },
+ {
+ "epoch": 22.29344978165939,
+ "grad_norm": 0.024784576147794724,
+ "learning_rate": 0.0006,
+ "loss": 3.1623098850250244,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307423580786025,
+ "grad_norm": 0.0219266377389431,
+ "learning_rate": 0.0006,
+ "loss": 3.193899393081665,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321397379912664,
+ "grad_norm": 0.02260139398276806,
+ "learning_rate": 0.0006,
+ "loss": 3.1366958618164062,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335371179039303,
+ "grad_norm": 0.023162642493844032,
+ "learning_rate": 0.0006,
+ "loss": 3.1931166648864746,
+ "step": 1608
+ },
+ {
+ "epoch": 22.349344978165938,
+ "grad_norm": 0.022873790934681892,
+ "learning_rate": 0.0006,
+ "loss": 3.1660501956939697,
+ "step": 1609
+ },
+ {
+ "epoch": 22.363318777292577,
+ "grad_norm": 0.02431238628923893,
+ "learning_rate": 0.0006,
+ "loss": 3.172982931137085,
+ "step": 1610
+ },
+ {
+ "epoch": 22.377292576419215,
+ "grad_norm": 0.023474128916859627,
+ "learning_rate": 0.0006,
+ "loss": 3.1941604614257812,
+ "step": 1611
+ },
+ {
+ "epoch": 22.39126637554585,
+ "grad_norm": 0.021899253129959106,
+ "learning_rate": 0.0006,
+ "loss": 3.164011240005493,
+ "step": 1612
+ },
+ {
+ "epoch": 22.40524017467249,
+ "grad_norm": 0.023463290184736252,
+ "learning_rate": 0.0006,
+ "loss": 3.181821823120117,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419213973799128,
+ "grad_norm": 0.022636929526925087,
+ "learning_rate": 0.0006,
+ "loss": 3.1651649475097656,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433187772925763,
+ "grad_norm": 0.022014712914824486,
+ "learning_rate": 0.0006,
+ "loss": 3.1782679557800293,
+ "step": 1615
+ },
+ {
+ "epoch": 22.4471615720524,
+ "grad_norm": 0.02165660634636879,
+ "learning_rate": 0.0006,
+ "loss": 3.188546657562256,
+ "step": 1616
+ },
+ {
+ "epoch": 22.46113537117904,
+ "grad_norm": 0.019901631399989128,
+ "learning_rate": 0.0006,
+ "loss": 3.1988091468811035,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475109170305675,
+ "grad_norm": 0.0209745354950428,
+ "learning_rate": 0.0006,
+ "loss": 3.19329833984375,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489082969432314,
+ "grad_norm": 0.021747298538684845,
+ "learning_rate": 0.0006,
+ "loss": 3.2036776542663574,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503056768558952,
+ "grad_norm": 0.019623076543211937,
+ "learning_rate": 0.0006,
+ "loss": 3.1681504249572754,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51703056768559,
+ "grad_norm": 0.020048566162586212,
+ "learning_rate": 0.0006,
+ "loss": 3.1954283714294434,
+ "step": 1621
+ },
+ {
+ "epoch": 22.531004366812226,
+ "grad_norm": 0.021175740286707878,
+ "learning_rate": 0.0006,
+ "loss": 3.189802646636963,
+ "step": 1622
+ },
+ {
+ "epoch": 22.544978165938865,
+ "grad_norm": 0.02099684439599514,
+ "learning_rate": 0.0006,
+ "loss": 3.2179861068725586,
+ "step": 1623
+ },
+ {
+ "epoch": 22.558951965065503,
+ "grad_norm": 0.020709119737148285,
+ "learning_rate": 0.0006,
+ "loss": 3.219874382019043,
+ "step": 1624
+ },
+ {
+ "epoch": 22.57292576419214,
+ "grad_norm": 0.02090434730052948,
+ "learning_rate": 0.0006,
+ "loss": 3.1864824295043945,
+ "step": 1625
+ },
+ {
+ "epoch": 22.586899563318777,
+ "grad_norm": 0.02059161476790905,
+ "learning_rate": 0.0006,
+ "loss": 3.2084670066833496,
+ "step": 1626
+ },
+ {
+ "epoch": 22.600873362445416,
+ "grad_norm": 0.02269027940928936,
+ "learning_rate": 0.0006,
+ "loss": 3.2111763954162598,
+ "step": 1627
+ },
+ {
+ "epoch": 22.61484716157205,
+ "grad_norm": 0.023081645369529724,
+ "learning_rate": 0.0006,
+ "loss": 3.1888933181762695,
+ "step": 1628
+ },
+ {
+ "epoch": 22.62882096069869,
+ "grad_norm": 0.021397452801465988,
+ "learning_rate": 0.0006,
+ "loss": 3.252058982849121,
+ "step": 1629
+ },
+ {
+ "epoch": 22.64279475982533,
+ "grad_norm": 0.021065089851617813,
+ "learning_rate": 0.0006,
+ "loss": 3.2006194591522217,
+ "step": 1630
+ },
+ {
+ "epoch": 22.656768558951963,
+ "grad_norm": 0.022490495815873146,
+ "learning_rate": 0.0006,
+ "loss": 3.229124069213867,
+ "step": 1631
+ },
+ {
+ "epoch": 22.670742358078602,
+ "grad_norm": 0.021817505359649658,
+ "learning_rate": 0.0006,
+ "loss": 3.194119691848755,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68471615720524,
+ "grad_norm": 0.021232811734080315,
+ "learning_rate": 0.0006,
+ "loss": 3.245544910430908,
+ "step": 1633
+ },
+ {
+ "epoch": 22.69868995633188,
+ "grad_norm": 0.023222077637910843,
+ "learning_rate": 0.0006,
+ "loss": 3.279717445373535,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712663755458514,
+ "grad_norm": 0.02224564366042614,
+ "learning_rate": 0.0006,
+ "loss": 3.2494592666625977,
+ "step": 1635
+ },
+ {
+ "epoch": 22.726637554585153,
+ "grad_norm": 0.021308856084942818,
+ "learning_rate": 0.0006,
+ "loss": 3.204773426055908,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74061135371179,
+ "grad_norm": 0.020439520478248596,
+ "learning_rate": 0.0006,
+ "loss": 3.205946683883667,
+ "step": 1637
+ },
+ {
+ "epoch": 22.754585152838427,
+ "grad_norm": 0.020782779902219772,
+ "learning_rate": 0.0006,
+ "loss": 3.239274501800537,
+ "step": 1638
+ },
+ {
+ "epoch": 22.768558951965066,
+ "grad_norm": 0.022062206640839577,
+ "learning_rate": 0.0006,
+ "loss": 3.2261786460876465,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782532751091704,
+ "grad_norm": 0.02113729901611805,
+ "learning_rate": 0.0006,
+ "loss": 3.2691404819488525,
+ "step": 1640
+ },
+ {
+ "epoch": 22.79650655021834,
+ "grad_norm": 0.021274438127875328,
+ "learning_rate": 0.0006,
+ "loss": 3.226609706878662,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810480349344978,
+ "grad_norm": 0.021622309461236,
+ "learning_rate": 0.0006,
+ "loss": 3.2209739685058594,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824454148471617,
+ "grad_norm": 0.0202135369181633,
+ "learning_rate": 0.0006,
+ "loss": 3.1961019039154053,
+ "step": 1643
+ },
+ {
+ "epoch": 22.83842794759825,
+ "grad_norm": 0.020688654854893684,
+ "learning_rate": 0.0006,
+ "loss": 3.2573604583740234,
+ "step": 1644
+ },
+ {
+ "epoch": 22.85240174672489,
+ "grad_norm": 0.021738961338996887,
+ "learning_rate": 0.0006,
+ "loss": 3.2542853355407715,
+ "step": 1645
+ },
+ {
+ "epoch": 22.86637554585153,
+ "grad_norm": 0.0219196118414402,
+ "learning_rate": 0.0006,
+ "loss": 3.252492904663086,
+ "step": 1646
+ },
+ {
+ "epoch": 22.880349344978168,
+ "grad_norm": 0.0218547023832798,
+ "learning_rate": 0.0006,
+ "loss": 3.2702088356018066,
+ "step": 1647
+ },
+ {
+ "epoch": 22.894323144104803,
+ "grad_norm": 0.021791797131299973,
+ "learning_rate": 0.0006,
+ "loss": 3.2743520736694336,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90829694323144,
+ "grad_norm": 0.02209450677037239,
+ "learning_rate": 0.0006,
+ "loss": 3.2271618843078613,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92227074235808,
+ "grad_norm": 0.021461671218276024,
+ "learning_rate": 0.0006,
+ "loss": 3.237719774246216,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936244541484715,
+ "grad_norm": 0.02116190828382969,
+ "learning_rate": 0.0006,
+ "loss": 3.220345973968506,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950218340611354,
+ "grad_norm": 0.021221552044153214,
+ "learning_rate": 0.0006,
+ "loss": 3.270355224609375,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964192139737992,
+ "grad_norm": 0.021926164627075195,
+ "learning_rate": 0.0006,
+ "loss": 3.251894474029541,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978165938864628,
+ "grad_norm": 0.02037062682211399,
+ "learning_rate": 0.0006,
+ "loss": 3.2335145473480225,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992139737991266,
+ "grad_norm": 0.021061841398477554,
+ "learning_rate": 0.0006,
+ "loss": 3.258089065551758,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.023548489436507225,
+ "learning_rate": 0.0006,
+ "loss": 3.211991548538208,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 4.036250591278076,
+ "eval_runtime": 50.0837,
+ "eval_samples_per_second": 48.758,
+ "eval_steps_per_second": 1.537,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397379912664,
+ "grad_norm": 0.028975404798984528,
+ "learning_rate": 0.0006,
+ "loss": 3.0739121437072754,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027947598253274,
+ "grad_norm": 0.045989733189344406,
+ "learning_rate": 0.0006,
+ "loss": 3.086352825164795,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041921397379912,
+ "grad_norm": 0.054499756544828415,
+ "learning_rate": 0.0006,
+ "loss": 3.0560779571533203,
+ "step": 1659
+ },
+ {
+ "epoch": 23.05589519650655,
+ "grad_norm": 0.05919722840189934,
+ "learning_rate": 0.0006,
+ "loss": 3.0908679962158203,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069868995633186,
+ "grad_norm": 0.05523031949996948,
+ "learning_rate": 0.0006,
+ "loss": 3.143130302429199,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083842794759825,
+ "grad_norm": 0.04946798086166382,
+ "learning_rate": 0.0006,
+ "loss": 3.0894484519958496,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097816593886463,
+ "grad_norm": 0.05096029117703438,
+ "learning_rate": 0.0006,
+ "loss": 3.1163463592529297,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111790393013102,
+ "grad_norm": 0.051004018634557724,
+ "learning_rate": 0.0006,
+ "loss": 3.094862937927246,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125764192139737,
+ "grad_norm": 0.04774824529886246,
+ "learning_rate": 0.0006,
+ "loss": 3.056874990463257,
+ "step": 1665
+ },
+ {
+ "epoch": 23.139737991266376,
+ "grad_norm": 0.04676121845841408,
+ "learning_rate": 0.0006,
+ "loss": 3.1135435104370117,
+ "step": 1666
+ },
+ {
+ "epoch": 23.153711790393015,
+ "grad_norm": 0.04623310640454292,
+ "learning_rate": 0.0006,
+ "loss": 3.0834898948669434,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16768558951965,
+ "grad_norm": 0.04654386639595032,
+ "learning_rate": 0.0006,
+ "loss": 3.1126627922058105,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18165938864629,
+ "grad_norm": 0.05056565999984741,
+ "learning_rate": 0.0006,
+ "loss": 3.1404361724853516,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195633187772927,
+ "grad_norm": 0.04947774112224579,
+ "learning_rate": 0.0006,
+ "loss": 3.0800836086273193,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209606986899562,
+ "grad_norm": 0.05254998058080673,
+ "learning_rate": 0.0006,
+ "loss": 3.1659531593322754,
+ "step": 1671
+ },
+ {
+ "epoch": 23.2235807860262,
+ "grad_norm": 0.05698013678193092,
+ "learning_rate": 0.0006,
+ "loss": 3.124387741088867,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23755458515284,
+ "grad_norm": 0.05885928124189377,
+ "learning_rate": 0.0006,
+ "loss": 3.1883671283721924,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251528384279474,
+ "grad_norm": 0.05118200555443764,
+ "learning_rate": 0.0006,
+ "loss": 3.1102395057678223,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265502183406113,
+ "grad_norm": 0.04967886209487915,
+ "learning_rate": 0.0006,
+ "loss": 3.124696731567383,
+ "step": 1675
+ },
+ {
+ "epoch": 23.27947598253275,
+ "grad_norm": 0.05399557575583458,
+ "learning_rate": 0.0006,
+ "loss": 3.152482032775879,
+ "step": 1676
+ },
+ {
+ "epoch": 23.29344978165939,
+ "grad_norm": 0.04705207049846649,
+ "learning_rate": 0.0006,
+ "loss": 3.1485037803649902,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307423580786025,
+ "grad_norm": 0.045942481607198715,
+ "learning_rate": 0.0006,
+ "loss": 3.149049997329712,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321397379912664,
+ "grad_norm": 0.04364842176437378,
+ "learning_rate": 0.0006,
+ "loss": 3.1753323078155518,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335371179039303,
+ "grad_norm": 0.04357321560382843,
+ "learning_rate": 0.0006,
+ "loss": 3.1530587673187256,
+ "step": 1680
+ },
+ {
+ "epoch": 23.349344978165938,
+ "grad_norm": 0.040299318730831146,
+ "learning_rate": 0.0006,
+ "loss": 3.1689562797546387,
+ "step": 1681
+ },
+ {
+ "epoch": 23.363318777292577,
+ "grad_norm": 0.033832576125860214,
+ "learning_rate": 0.0006,
+ "loss": 3.1539080142974854,
+ "step": 1682
+ },
+ {
+ "epoch": 23.377292576419215,
+ "grad_norm": 0.0333096869289875,
+ "learning_rate": 0.0006,
+ "loss": 3.136540412902832,
+ "step": 1683
+ },
+ {
+ "epoch": 23.39126637554585,
+ "grad_norm": 0.03185306116938591,
+ "learning_rate": 0.0006,
+ "loss": 3.161989450454712,
+ "step": 1684
+ },
+ {
+ "epoch": 23.40524017467249,
+ "grad_norm": 0.030003627762198448,
+ "learning_rate": 0.0006,
+ "loss": 3.1533138751983643,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419213973799128,
+ "grad_norm": 0.028618820011615753,
+ "learning_rate": 0.0006,
+ "loss": 3.185976028442383,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433187772925763,
+ "grad_norm": 0.02691742591559887,
+ "learning_rate": 0.0006,
+ "loss": 3.153627872467041,
+ "step": 1687
+ },
+ {
+ "epoch": 23.4471615720524,
+ "grad_norm": 0.026324588805437088,
+ "learning_rate": 0.0006,
+ "loss": 3.1644554138183594,
+ "step": 1688
+ },
+ {
+ "epoch": 23.46113537117904,
+ "grad_norm": 0.025900371372699738,
+ "learning_rate": 0.0006,
+ "loss": 3.1649692058563232,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475109170305675,
+ "grad_norm": 0.0243719182908535,
+ "learning_rate": 0.0006,
+ "loss": 3.182521343231201,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489082969432314,
+ "grad_norm": 0.022730499505996704,
+ "learning_rate": 0.0006,
+ "loss": 3.1854891777038574,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503056768558952,
+ "grad_norm": 0.02335519716143608,
+ "learning_rate": 0.0006,
+ "loss": 3.151111364364624,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51703056768559,
+ "grad_norm": 0.022645823657512665,
+ "learning_rate": 0.0006,
+ "loss": 3.181077241897583,
+ "step": 1693
+ },
+ {
+ "epoch": 23.531004366812226,
+ "grad_norm": 0.022274266928434372,
+ "learning_rate": 0.0006,
+ "loss": 3.155630111694336,
+ "step": 1694
+ },
+ {
+ "epoch": 23.544978165938865,
+ "grad_norm": 0.02225971594452858,
+ "learning_rate": 0.0006,
+ "loss": 3.20708966255188,
+ "step": 1695
+ },
+ {
+ "epoch": 23.558951965065503,
+ "grad_norm": 0.022145207971334457,
+ "learning_rate": 0.0006,
+ "loss": 3.1944689750671387,
+ "step": 1696
+ },
+ {
+ "epoch": 23.57292576419214,
+ "grad_norm": 0.02143380232155323,
+ "learning_rate": 0.0006,
+ "loss": 3.1928765773773193,
+ "step": 1697
+ },
+ {
+ "epoch": 23.586899563318777,
+ "grad_norm": 0.021410757675766945,
+ "learning_rate": 0.0006,
+ "loss": 3.141218900680542,
+ "step": 1698
+ },
+ {
+ "epoch": 23.600873362445416,
+ "grad_norm": 0.020946916192770004,
+ "learning_rate": 0.0006,
+ "loss": 3.1523003578186035,
+ "step": 1699
+ },
+ {
+ "epoch": 23.61484716157205,
+ "grad_norm": 0.02247041091322899,
+ "learning_rate": 0.0006,
+ "loss": 3.197848320007324,
+ "step": 1700
+ },
+ {
+ "epoch": 23.62882096069869,
+ "grad_norm": 0.02199610322713852,
+ "learning_rate": 0.0006,
+ "loss": 3.146364212036133,
+ "step": 1701
+ },
+ {
+ "epoch": 23.64279475982533,
+ "grad_norm": 0.021192600950598717,
+ "learning_rate": 0.0006,
+ "loss": 3.205726146697998,
+ "step": 1702
+ },
+ {
+ "epoch": 23.656768558951963,
+ "grad_norm": 0.021812601014971733,
+ "learning_rate": 0.0006,
+ "loss": 3.1663761138916016,
+ "step": 1703
+ },
+ {
+ "epoch": 23.670742358078602,
+ "grad_norm": 0.021653084084391594,
+ "learning_rate": 0.0006,
+ "loss": 3.186915397644043,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68471615720524,
+ "grad_norm": 0.02271277830004692,
+ "learning_rate": 0.0006,
+ "loss": 3.1901726722717285,
+ "step": 1705
+ },
+ {
+ "epoch": 23.69868995633188,
+ "grad_norm": 0.022516358643770218,
+ "learning_rate": 0.0006,
+ "loss": 3.1948347091674805,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712663755458514,
+ "grad_norm": 0.021564161404967308,
+ "learning_rate": 0.0006,
+ "loss": 3.18239688873291,
+ "step": 1707
+ },
+ {
+ "epoch": 23.726637554585153,
+ "grad_norm": 0.02193053439259529,
+ "learning_rate": 0.0006,
+ "loss": 3.167478561401367,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74061135371179,
+ "grad_norm": 0.020590802654623985,
+ "learning_rate": 0.0006,
+ "loss": 3.1782495975494385,
+ "step": 1709
+ },
+ {
+ "epoch": 23.754585152838427,
+ "grad_norm": 0.02001943439245224,
+ "learning_rate": 0.0006,
+ "loss": 3.140777111053467,
+ "step": 1710
+ },
+ {
+ "epoch": 23.768558951965066,
+ "grad_norm": 0.02146220952272415,
+ "learning_rate": 0.0006,
+ "loss": 3.196669578552246,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782532751091704,
+ "grad_norm": 0.02064087800681591,
+ "learning_rate": 0.0006,
+ "loss": 3.1968512535095215,
+ "step": 1712
+ },
+ {
+ "epoch": 23.79650655021834,
+ "grad_norm": 0.020168280228972435,
+ "learning_rate": 0.0006,
+ "loss": 3.185011625289917,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810480349344978,
+ "grad_norm": 0.021309854462742805,
+ "learning_rate": 0.0006,
+ "loss": 3.223778247833252,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824454148471617,
+ "grad_norm": 0.021627578884363174,
+ "learning_rate": 0.0006,
+ "loss": 3.2337048053741455,
+ "step": 1715
+ },
+ {
+ "epoch": 23.83842794759825,
+ "grad_norm": 0.022393809631466866,
+ "learning_rate": 0.0006,
+ "loss": 3.1815061569213867,
+ "step": 1716
+ },
+ {
+ "epoch": 23.85240174672489,
+ "grad_norm": 0.021653614938259125,
+ "learning_rate": 0.0006,
+ "loss": 3.2199814319610596,
+ "step": 1717
+ },
+ {
+ "epoch": 23.86637554585153,
+ "grad_norm": 0.021053675562143326,
+ "learning_rate": 0.0006,
+ "loss": 3.2100138664245605,
+ "step": 1718
+ },
+ {
+ "epoch": 23.880349344978168,
+ "grad_norm": 0.02070586569607258,
+ "learning_rate": 0.0006,
+ "loss": 3.169224262237549,
+ "step": 1719
+ },
+ {
+ "epoch": 23.894323144104803,
+ "grad_norm": 0.02080441080033779,
+ "learning_rate": 0.0006,
+ "loss": 3.2199649810791016,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90829694323144,
+ "grad_norm": 0.022092828527092934,
+ "learning_rate": 0.0006,
+ "loss": 3.2059383392333984,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92227074235808,
+ "grad_norm": 0.02031811885535717,
+ "learning_rate": 0.0006,
+ "loss": 3.181447982788086,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936244541484715,
+ "grad_norm": 0.020453795790672302,
+ "learning_rate": 0.0006,
+ "loss": 3.2039992809295654,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950218340611354,
+ "grad_norm": 0.02050524763762951,
+ "learning_rate": 0.0006,
+ "loss": 3.2518773078918457,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964192139737992,
+ "grad_norm": 0.020392276346683502,
+ "learning_rate": 0.0006,
+ "loss": 3.21860408782959,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978165938864628,
+ "grad_norm": 0.02083909884095192,
+ "learning_rate": 0.0006,
+ "loss": 3.2072129249572754,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992139737991266,
+ "grad_norm": 0.020636966452002525,
+ "learning_rate": 0.0006,
+ "loss": 3.1956424713134766,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.02314000204205513,
+ "learning_rate": 0.0006,
+ "loss": 3.1868958473205566,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 4.061861038208008,
+ "eval_runtime": 50.2887,
+ "eval_samples_per_second": 48.56,
+ "eval_steps_per_second": 1.531,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397379912664,
+ "grad_norm": 0.026494357734918594,
+ "learning_rate": 0.0006,
+ "loss": 3.0170693397521973,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027947598253274,
+ "grad_norm": 0.03457538038492203,
+ "learning_rate": 0.0006,
+ "loss": 3.038365364074707,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041921397379912,
+ "grad_norm": 0.0362137034535408,
+ "learning_rate": 0.0006,
+ "loss": 3.042156219482422,
+ "step": 1731
+ },
+ {
+ "epoch": 24.05589519650655,
+ "grad_norm": 0.0380006767809391,
+ "learning_rate": 0.0006,
+ "loss": 2.9978504180908203,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069868995633186,
+ "grad_norm": 0.039754100143909454,
+ "learning_rate": 0.0006,
+ "loss": 3.0558762550354004,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083842794759825,
+ "grad_norm": 0.04269031062722206,
+ "learning_rate": 0.0006,
+ "loss": 3.0549988746643066,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097816593886463,
+ "grad_norm": 0.04441278055310249,
+ "learning_rate": 0.0006,
+ "loss": 3.0869946479797363,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111790393013102,
+ "grad_norm": 0.040790386497974396,
+ "learning_rate": 0.0006,
+ "loss": 3.0361521244049072,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125764192139737,
+ "grad_norm": 0.03730896860361099,
+ "learning_rate": 0.0006,
+ "loss": 3.046663761138916,
+ "step": 1737
+ },
+ {
+ "epoch": 24.139737991266376,
+ "grad_norm": 0.03982469439506531,
+ "learning_rate": 0.0006,
+ "loss": 3.0173420906066895,
+ "step": 1738
+ },
+ {
+ "epoch": 24.153711790393015,
+ "grad_norm": 0.039260219782590866,
+ "learning_rate": 0.0006,
+ "loss": 3.0473644733428955,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16768558951965,
+ "grad_norm": 0.03755051642656326,
+ "learning_rate": 0.0006,
+ "loss": 3.0663342475891113,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18165938864629,
+ "grad_norm": 0.03793613240122795,
+ "learning_rate": 0.0006,
+ "loss": 3.0489985942840576,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195633187772927,
+ "grad_norm": 0.04197019711136818,
+ "learning_rate": 0.0006,
+ "loss": 3.097670555114746,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209606986899562,
+ "grad_norm": 0.0469660609960556,
+ "learning_rate": 0.0006,
+ "loss": 3.1100730895996094,
+ "step": 1743
+ },
+ {
+ "epoch": 24.2235807860262,
+ "grad_norm": 0.04978584498167038,
+ "learning_rate": 0.0006,
+ "loss": 3.079113006591797,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23755458515284,
+ "grad_norm": 0.04865782707929611,
+ "learning_rate": 0.0006,
+ "loss": 3.0800795555114746,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251528384279474,
+ "grad_norm": 0.04515399411320686,
+ "learning_rate": 0.0006,
+ "loss": 3.0951786041259766,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265502183406113,
+ "grad_norm": 0.05194929614663124,
+ "learning_rate": 0.0006,
+ "loss": 3.0923233032226562,
+ "step": 1747
+ },
+ {
+ "epoch": 24.27947598253275,
+ "grad_norm": 0.05268502235412598,
+ "learning_rate": 0.0006,
+ "loss": 3.0762367248535156,
+ "step": 1748
+ },
+ {
+ "epoch": 24.29344978165939,
+ "grad_norm": 0.04807785153388977,
+ "learning_rate": 0.0006,
+ "loss": 3.0600905418395996,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307423580786025,
+ "grad_norm": 0.049069009721279144,
+ "learning_rate": 0.0006,
+ "loss": 3.119414806365967,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321397379912664,
+ "grad_norm": 0.040332380682229996,
+ "learning_rate": 0.0006,
+ "loss": 3.101262092590332,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335371179039303,
+ "grad_norm": 0.037106387317180634,
+ "learning_rate": 0.0006,
+ "loss": 3.111459732055664,
+ "step": 1752
+ },
+ {
+ "epoch": 24.349344978165938,
+ "grad_norm": 0.04089464247226715,
+ "learning_rate": 0.0006,
+ "loss": 3.078132152557373,
+ "step": 1753
+ },
+ {
+ "epoch": 24.363318777292577,
+ "grad_norm": 0.042072005569934845,
+ "learning_rate": 0.0006,
+ "loss": 3.098802089691162,
+ "step": 1754
+ },
+ {
+ "epoch": 24.377292576419215,
+ "grad_norm": 0.03779057413339615,
+ "learning_rate": 0.0006,
+ "loss": 3.137354850769043,
+ "step": 1755
+ },
+ {
+ "epoch": 24.39126637554585,
+ "grad_norm": 0.037271898239851,
+ "learning_rate": 0.0006,
+ "loss": 3.1019601821899414,
+ "step": 1756
+ },
+ {
+ "epoch": 24.40524017467249,
+ "grad_norm": 0.036236681044101715,
+ "learning_rate": 0.0006,
+ "loss": 3.073394775390625,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419213973799128,
+ "grad_norm": 0.03288481757044792,
+ "learning_rate": 0.0006,
+ "loss": 3.085905075073242,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433187772925763,
+ "grad_norm": 0.030534565448760986,
+ "learning_rate": 0.0006,
+ "loss": 3.1430633068084717,
+ "step": 1759
+ },
+ {
+ "epoch": 24.4471615720524,
+ "grad_norm": 0.030080555006861687,
+ "learning_rate": 0.0006,
+ "loss": 3.084897994995117,
+ "step": 1760
+ },
+ {
+ "epoch": 24.46113537117904,
+ "grad_norm": 0.028177041560411453,
+ "learning_rate": 0.0006,
+ "loss": 3.0981075763702393,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475109170305675,
+ "grad_norm": 0.02868589572608471,
+ "learning_rate": 0.0006,
+ "loss": 3.113759994506836,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489082969432314,
+ "grad_norm": 0.02866324409842491,
+ "learning_rate": 0.0006,
+ "loss": 3.146918773651123,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503056768558952,
+ "grad_norm": 0.032893482595682144,
+ "learning_rate": 0.0006,
+ "loss": 3.16141414642334,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51703056768559,
+ "grad_norm": 0.03186864033341408,
+ "learning_rate": 0.0006,
+ "loss": 3.13303804397583,
+ "step": 1765
+ },
+ {
+ "epoch": 24.531004366812226,
+ "grad_norm": 0.0323340930044651,
+ "learning_rate": 0.0006,
+ "loss": 3.1308135986328125,
+ "step": 1766
+ },
+ {
+ "epoch": 24.544978165938865,
+ "grad_norm": 0.03451741859316826,
+ "learning_rate": 0.0006,
+ "loss": 3.13972806930542,
+ "step": 1767
+ },
+ {
+ "epoch": 24.558951965065503,
+ "grad_norm": 0.03144263103604317,
+ "learning_rate": 0.0006,
+ "loss": 3.1428070068359375,
+ "step": 1768
+ },
+ {
+ "epoch": 24.57292576419214,
+ "grad_norm": 0.02920706383883953,
+ "learning_rate": 0.0006,
+ "loss": 3.1201605796813965,
+ "step": 1769
+ },
+ {
+ "epoch": 24.586899563318777,
+ "grad_norm": 0.028445811942219734,
+ "learning_rate": 0.0006,
+ "loss": 3.144218683242798,
+ "step": 1770
+ },
+ {
+ "epoch": 24.600873362445416,
+ "grad_norm": 0.02665509283542633,
+ "learning_rate": 0.0006,
+ "loss": 3.130509853363037,
+ "step": 1771
+ },
+ {
+ "epoch": 24.61484716157205,
+ "grad_norm": 0.02607566863298416,
+ "learning_rate": 0.0006,
+ "loss": 3.1229686737060547,
+ "step": 1772
+ },
+ {
+ "epoch": 24.62882096069869,
+ "grad_norm": 0.02450554072856903,
+ "learning_rate": 0.0006,
+ "loss": 3.1412901878356934,
+ "step": 1773
+ },
+ {
+ "epoch": 24.64279475982533,
+ "grad_norm": 0.024406673386693,
+ "learning_rate": 0.0006,
+ "loss": 3.1482839584350586,
+ "step": 1774
+ },
+ {
+ "epoch": 24.656768558951963,
+ "grad_norm": 0.02445918507874012,
+ "learning_rate": 0.0006,
+ "loss": 3.1525535583496094,
+ "step": 1775
+ },
+ {
+ "epoch": 24.670742358078602,
+ "grad_norm": 0.024329137057065964,
+ "learning_rate": 0.0006,
+ "loss": 3.1237733364105225,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68471615720524,
+ "grad_norm": 0.026551753282546997,
+ "learning_rate": 0.0006,
+ "loss": 3.168206214904785,
+ "step": 1777
+ },
+ {
+ "epoch": 24.69868995633188,
+ "grad_norm": 0.02526521123945713,
+ "learning_rate": 0.0006,
+ "loss": 3.145684242248535,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712663755458514,
+ "grad_norm": 0.022739525884389877,
+ "learning_rate": 0.0006,
+ "loss": 3.109616756439209,
+ "step": 1779
+ },
+ {
+ "epoch": 24.726637554585153,
+ "grad_norm": 0.02353929914534092,
+ "learning_rate": 0.0006,
+ "loss": 3.1133408546447754,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74061135371179,
+ "grad_norm": 0.024195613339543343,
+ "learning_rate": 0.0006,
+ "loss": 3.1797852516174316,
+ "step": 1781
+ },
+ {
+ "epoch": 24.754585152838427,
+ "grad_norm": 0.023433320224285126,
+ "learning_rate": 0.0006,
+ "loss": 3.1500236988067627,
+ "step": 1782
+ },
+ {
+ "epoch": 24.768558951965066,
+ "grad_norm": 0.023815682157874107,
+ "learning_rate": 0.0006,
+ "loss": 3.1468753814697266,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782532751091704,
+ "grad_norm": 0.023465458303689957,
+ "learning_rate": 0.0006,
+ "loss": 3.1285457611083984,
+ "step": 1784
+ },
+ {
+ "epoch": 24.79650655021834,
+ "grad_norm": 0.023044317960739136,
+ "learning_rate": 0.0006,
+ "loss": 3.152935028076172,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810480349344978,
+ "grad_norm": 0.02268923819065094,
+ "learning_rate": 0.0006,
+ "loss": 3.149824619293213,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824454148471617,
+ "grad_norm": 0.02200215309858322,
+ "learning_rate": 0.0006,
+ "loss": 3.136305570602417,
+ "step": 1787
+ },
+ {
+ "epoch": 24.83842794759825,
+ "grad_norm": 0.021768024191260338,
+ "learning_rate": 0.0006,
+ "loss": 3.1580021381378174,
+ "step": 1788
+ },
+ {
+ "epoch": 24.85240174672489,
+ "grad_norm": 0.02197638899087906,
+ "learning_rate": 0.0006,
+ "loss": 3.167720079421997,
+ "step": 1789
+ },
+ {
+ "epoch": 24.86637554585153,
+ "grad_norm": 0.02179424650967121,
+ "learning_rate": 0.0006,
+ "loss": 3.1844677925109863,
+ "step": 1790
+ },
+ {
+ "epoch": 24.880349344978168,
+ "grad_norm": 0.02222774736583233,
+ "learning_rate": 0.0006,
+ "loss": 3.1534781455993652,
+ "step": 1791
+ },
+ {
+ "epoch": 24.894323144104803,
+ "grad_norm": 0.0211419016122818,
+ "learning_rate": 0.0006,
+ "loss": 3.1624507904052734,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90829694323144,
+ "grad_norm": 0.021679047495126724,
+ "learning_rate": 0.0006,
+ "loss": 3.1692471504211426,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92227074235808,
+ "grad_norm": 0.02098955772817135,
+ "learning_rate": 0.0006,
+ "loss": 3.1197893619537354,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936244541484715,
+ "grad_norm": 0.02041255682706833,
+ "learning_rate": 0.0006,
+ "loss": 3.1489920616149902,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950218340611354,
+ "grad_norm": 0.021229229867458344,
+ "learning_rate": 0.0006,
+ "loss": 3.181349277496338,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964192139737992,
+ "grad_norm": 0.021164825186133385,
+ "learning_rate": 0.0006,
+ "loss": 3.174917221069336,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978165938864628,
+ "grad_norm": 0.021351559087634087,
+ "learning_rate": 0.0006,
+ "loss": 3.1783559322357178,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992139737991266,
+ "grad_norm": 0.020969994366168976,
+ "learning_rate": 0.0006,
+ "loss": 3.193674087524414,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.02423921413719654,
+ "learning_rate": 0.0006,
+ "loss": 3.200575590133667,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 4.083610534667969,
+ "eval_runtime": 49.9782,
+ "eval_samples_per_second": 48.861,
+ "eval_steps_per_second": 1.541,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397379912664,
+ "grad_norm": 0.02671094425022602,
+ "learning_rate": 0.0006,
+ "loss": 2.9603734016418457,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027947598253274,
+ "grad_norm": 0.04277094826102257,
+ "learning_rate": 0.0006,
+ "loss": 2.97347354888916,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041921397379912,
+ "grad_norm": 0.05197378247976303,
+ "learning_rate": 0.0006,
+ "loss": 2.999575614929199,
+ "step": 1803
+ },
+ {
+ "epoch": 25.05589519650655,
+ "grad_norm": 0.05377629026770592,
+ "learning_rate": 0.0006,
+ "loss": 2.9785799980163574,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069868995633186,
+ "grad_norm": 0.056606143712997437,
+ "learning_rate": 0.0006,
+ "loss": 3.0218558311462402,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083842794759825,
+ "grad_norm": 0.054323576390743256,
+ "learning_rate": 0.0006,
+ "loss": 3.009265899658203,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097816593886463,
+ "grad_norm": 0.05065226927399635,
+ "learning_rate": 0.0006,
+ "loss": 3.033031702041626,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111790393013102,
+ "grad_norm": 0.05075160786509514,
+ "learning_rate": 0.0006,
+ "loss": 3.0429916381835938,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125764192139737,
+ "grad_norm": 0.05267050117254257,
+ "learning_rate": 0.0006,
+ "loss": 3.0145187377929688,
+ "step": 1809
+ },
+ {
+ "epoch": 25.139737991266376,
+ "grad_norm": 0.04282816872000694,
+ "learning_rate": 0.0006,
+ "loss": 3.019191026687622,
+ "step": 1810
+ },
+ {
+ "epoch": 25.153711790393015,
+ "grad_norm": 0.042729251086711884,
+ "learning_rate": 0.0006,
+ "loss": 3.024594783782959,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16768558951965,
+ "grad_norm": 0.04174517095088959,
+ "learning_rate": 0.0006,
+ "loss": 3.021573066711426,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18165938864629,
+ "grad_norm": 0.039621077477931976,
+ "learning_rate": 0.0006,
+ "loss": 3.033224105834961,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195633187772927,
+ "grad_norm": 0.037193190306425095,
+ "learning_rate": 0.0006,
+ "loss": 3.022829532623291,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209606986899562,
+ "grad_norm": 0.03468523919582367,
+ "learning_rate": 0.0006,
+ "loss": 3.016298294067383,
+ "step": 1815
+ },
+ {
+ "epoch": 25.2235807860262,
+ "grad_norm": 0.03721904382109642,
+ "learning_rate": 0.0006,
+ "loss": 2.991225242614746,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23755458515284,
+ "grad_norm": 0.03951790928840637,
+ "learning_rate": 0.0006,
+ "loss": 3.0309948921203613,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251528384279474,
+ "grad_norm": 0.04039984196424484,
+ "learning_rate": 0.0006,
+ "loss": 3.032059669494629,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265502183406113,
+ "grad_norm": 0.041549600660800934,
+ "learning_rate": 0.0006,
+ "loss": 3.041177749633789,
+ "step": 1819
+ },
+ {
+ "epoch": 25.27947598253275,
+ "grad_norm": 0.041605785489082336,
+ "learning_rate": 0.0006,
+ "loss": 3.052733898162842,
+ "step": 1820
+ },
+ {
+ "epoch": 25.29344978165939,
+ "grad_norm": 0.03979694843292236,
+ "learning_rate": 0.0006,
+ "loss": 3.030470371246338,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307423580786025,
+ "grad_norm": 0.038538020104169846,
+ "learning_rate": 0.0006,
+ "loss": 3.0051193237304688,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321397379912664,
+ "grad_norm": 0.035272035747766495,
+ "learning_rate": 0.0006,
+ "loss": 3.0283000469207764,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335371179039303,
+ "grad_norm": 0.03455478698015213,
+ "learning_rate": 0.0006,
+ "loss": 3.070821523666382,
+ "step": 1824
+ },
+ {
+ "epoch": 25.349344978165938,
+ "grad_norm": 0.035375602543354034,
+ "learning_rate": 0.0006,
+ "loss": 3.0163800716400146,
+ "step": 1825
+ },
+ {
+ "epoch": 25.363318777292577,
+ "grad_norm": 0.03162388876080513,
+ "learning_rate": 0.0006,
+ "loss": 3.037997245788574,
+ "step": 1826
+ },
+ {
+ "epoch": 25.377292576419215,
+ "grad_norm": 0.031044775620102882,
+ "learning_rate": 0.0006,
+ "loss": 3.0624966621398926,
+ "step": 1827
+ },
+ {
+ "epoch": 25.39126637554585,
+ "grad_norm": 0.03079981915652752,
+ "learning_rate": 0.0006,
+ "loss": 3.0983829498291016,
+ "step": 1828
+ },
+ {
+ "epoch": 25.40524017467249,
+ "grad_norm": 0.029769832268357277,
+ "learning_rate": 0.0006,
+ "loss": 3.0633068084716797,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419213973799128,
+ "grad_norm": 0.029182543978095055,
+ "learning_rate": 0.0006,
+ "loss": 3.038501501083374,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433187772925763,
+ "grad_norm": 0.02948548085987568,
+ "learning_rate": 0.0006,
+ "loss": 3.074523448944092,
+ "step": 1831
+ },
+ {
+ "epoch": 25.4471615720524,
+ "grad_norm": 0.02877483330667019,
+ "learning_rate": 0.0006,
+ "loss": 3.067094326019287,
+ "step": 1832
+ },
+ {
+ "epoch": 25.46113537117904,
+ "grad_norm": 0.029504863545298576,
+ "learning_rate": 0.0006,
+ "loss": 3.071795701980591,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475109170305675,
+ "grad_norm": 0.030246607959270477,
+ "learning_rate": 0.0006,
+ "loss": 3.0463738441467285,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489082969432314,
+ "grad_norm": 0.03195366635918617,
+ "learning_rate": 0.0006,
+ "loss": 3.1079678535461426,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503056768558952,
+ "grad_norm": 0.0315500870347023,
+ "learning_rate": 0.0006,
+ "loss": 3.074368953704834,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51703056768559,
+ "grad_norm": 0.03132857382297516,
+ "learning_rate": 0.0006,
+ "loss": 3.070516347885132,
+ "step": 1837
+ },
+ {
+ "epoch": 25.531004366812226,
+ "grad_norm": 0.031229723244905472,
+ "learning_rate": 0.0006,
+ "loss": 3.129385471343994,
+ "step": 1838
+ },
+ {
+ "epoch": 25.544978165938865,
+ "grad_norm": 0.027454618364572525,
+ "learning_rate": 0.0006,
+ "loss": 3.0627448558807373,
+ "step": 1839
+ },
+ {
+ "epoch": 25.558951965065503,
+ "grad_norm": 0.028137732297182083,
+ "learning_rate": 0.0006,
+ "loss": 3.109487533569336,
+ "step": 1840
+ },
+ {
+ "epoch": 25.57292576419214,
+ "grad_norm": 0.029513249173760414,
+ "learning_rate": 0.0006,
+ "loss": 3.0803885459899902,
+ "step": 1841
+ },
+ {
+ "epoch": 25.586899563318777,
+ "grad_norm": 0.02965722233057022,
+ "learning_rate": 0.0006,
+ "loss": 3.105023145675659,
+ "step": 1842
+ },
+ {
+ "epoch": 25.600873362445416,
+ "grad_norm": 0.027627428993582726,
+ "learning_rate": 0.0006,
+ "loss": 3.1149749755859375,
+ "step": 1843
+ },
+ {
+ "epoch": 25.61484716157205,
+ "grad_norm": 0.026547718793153763,
+ "learning_rate": 0.0006,
+ "loss": 3.061279058456421,
+ "step": 1844
+ },
+ {
+ "epoch": 25.62882096069869,
+ "grad_norm": 0.025937994942069054,
+ "learning_rate": 0.0006,
+ "loss": 3.106267213821411,
+ "step": 1845
+ },
+ {
+ "epoch": 25.64279475982533,
+ "grad_norm": 0.024786189198493958,
+ "learning_rate": 0.0006,
+ "loss": 3.1162233352661133,
+ "step": 1846
+ },
+ {
+ "epoch": 25.656768558951963,
+ "grad_norm": 0.024458372965455055,
+ "learning_rate": 0.0006,
+ "loss": 3.0887248516082764,
+ "step": 1847
+ },
+ {
+ "epoch": 25.670742358078602,
+ "grad_norm": 0.02396211586892605,
+ "learning_rate": 0.0006,
+ "loss": 3.0862269401550293,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68471615720524,
+ "grad_norm": 0.025120655074715614,
+ "learning_rate": 0.0006,
+ "loss": 3.1100106239318848,
+ "step": 1849
+ },
+ {
+ "epoch": 25.69868995633188,
+ "grad_norm": 0.023946302011609077,
+ "learning_rate": 0.0006,
+ "loss": 3.1287240982055664,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712663755458514,
+ "grad_norm": 0.024584904313087463,
+ "learning_rate": 0.0006,
+ "loss": 3.131906270980835,
+ "step": 1851
+ },
+ {
+ "epoch": 25.726637554585153,
+ "grad_norm": 0.024075916036963463,
+ "learning_rate": 0.0006,
+ "loss": 3.1310033798217773,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74061135371179,
+ "grad_norm": 0.024674106389284134,
+ "learning_rate": 0.0006,
+ "loss": 3.098094940185547,
+ "step": 1853
+ },
+ {
+ "epoch": 25.754585152838427,
+ "grad_norm": 0.02386128157377243,
+ "learning_rate": 0.0006,
+ "loss": 3.13789963722229,
+ "step": 1854
+ },
+ {
+ "epoch": 25.768558951965066,
+ "grad_norm": 0.023464003577828407,
+ "learning_rate": 0.0006,
+ "loss": 3.130636215209961,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782532751091704,
+ "grad_norm": 0.022808177396655083,
+ "learning_rate": 0.0006,
+ "loss": 3.0649960041046143,
+ "step": 1856
+ },
+ {
+ "epoch": 25.79650655021834,
+ "grad_norm": 0.02347465232014656,
+ "learning_rate": 0.0006,
+ "loss": 3.1142053604125977,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810480349344978,
+ "grad_norm": 0.022884836420416832,
+ "learning_rate": 0.0006,
+ "loss": 3.135101795196533,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824454148471617,
+ "grad_norm": 0.022401098161935806,
+ "learning_rate": 0.0006,
+ "loss": 3.1598546504974365,
+ "step": 1859
+ },
+ {
+ "epoch": 25.83842794759825,
+ "grad_norm": 0.024321401491761208,
+ "learning_rate": 0.0006,
+ "loss": 3.1175436973571777,
+ "step": 1860
+ },
+ {
+ "epoch": 25.85240174672489,
+ "grad_norm": 0.0246965941041708,
+ "learning_rate": 0.0006,
+ "loss": 3.103957176208496,
+ "step": 1861
+ },
+ {
+ "epoch": 25.86637554585153,
+ "grad_norm": 0.02330162189900875,
+ "learning_rate": 0.0006,
+ "loss": 3.1311264038085938,
+ "step": 1862
+ },
+ {
+ "epoch": 25.880349344978168,
+ "grad_norm": 0.02354249730706215,
+ "learning_rate": 0.0006,
+ "loss": 3.14554500579834,
+ "step": 1863
+ },
+ {
+ "epoch": 25.894323144104803,
+ "grad_norm": 0.023865245282649994,
+ "learning_rate": 0.0006,
+ "loss": 3.124208927154541,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90829694323144,
+ "grad_norm": 0.023171618580818176,
+ "learning_rate": 0.0006,
+ "loss": 3.1324727535247803,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92227074235808,
+ "grad_norm": 0.023055147379636765,
+ "learning_rate": 0.0006,
+ "loss": 3.141408920288086,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936244541484715,
+ "grad_norm": 0.02303205616772175,
+ "learning_rate": 0.0006,
+ "loss": 3.135986804962158,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950218340611354,
+ "grad_norm": 0.02289523370563984,
+ "learning_rate": 0.0006,
+ "loss": 3.1296586990356445,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964192139737992,
+ "grad_norm": 0.024415697902441025,
+ "learning_rate": 0.0006,
+ "loss": 3.119215726852417,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978165938864628,
+ "grad_norm": 0.024061039090156555,
+ "learning_rate": 0.0006,
+ "loss": 3.096515417098999,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992139737991266,
+ "grad_norm": 0.021828658878803253,
+ "learning_rate": 0.0006,
+ "loss": 3.1706314086914062,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.025072937831282616,
+ "learning_rate": 0.0006,
+ "loss": 3.0891950130462646,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 4.104246616363525,
+ "eval_runtime": 50.0171,
+ "eval_samples_per_second": 48.823,
+ "eval_steps_per_second": 1.539,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397379912664,
+ "grad_norm": 0.031121261417865753,
+ "learning_rate": 0.0006,
+ "loss": 2.9661660194396973,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027947598253274,
+ "grad_norm": 0.04691348224878311,
+ "learning_rate": 0.0006,
+ "loss": 2.932932138442993,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041921397379912,
+ "grad_norm": 0.054467298090457916,
+ "learning_rate": 0.0006,
+ "loss": 2.9723329544067383,
+ "step": 1875
+ },
+ {
+ "epoch": 26.05589519650655,
+ "grad_norm": 0.055070292204618454,
+ "learning_rate": 0.0006,
+ "loss": 2.941164016723633,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069868995633186,
+ "grad_norm": 0.06226547062397003,
+ "learning_rate": 0.0006,
+ "loss": 2.9275927543640137,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083842794759825,
+ "grad_norm": 0.08149895071983337,
+ "learning_rate": 0.0006,
+ "loss": 2.9974710941314697,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097816593886463,
+ "grad_norm": 0.07903563231229782,
+ "learning_rate": 0.0006,
+ "loss": 3.028019666671753,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111790393013102,
+ "grad_norm": 0.07048483937978745,
+ "learning_rate": 0.0006,
+ "loss": 3.0385470390319824,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125764192139737,
+ "grad_norm": 0.07622414827346802,
+ "learning_rate": 0.0006,
+ "loss": 3.006513833999634,
+ "step": 1881
+ },
+ {
+ "epoch": 26.139737991266376,
+ "grad_norm": 0.06729200482368469,
+ "learning_rate": 0.0006,
+ "loss": 3.042820453643799,
+ "step": 1882
+ },
+ {
+ "epoch": 26.153711790393015,
+ "grad_norm": 0.0560869500041008,
+ "learning_rate": 0.0006,
+ "loss": 3.0113673210144043,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16768558951965,
+ "grad_norm": 0.05453485623002052,
+ "learning_rate": 0.0006,
+ "loss": 3.005843162536621,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18165938864629,
+ "grad_norm": 0.05410083383321762,
+ "learning_rate": 0.0006,
+ "loss": 3.0122809410095215,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195633187772927,
+ "grad_norm": 0.05099239945411682,
+ "learning_rate": 0.0006,
+ "loss": 3.003960132598877,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209606986899562,
+ "grad_norm": 0.054503440856933594,
+ "learning_rate": 0.0006,
+ "loss": 3.0250349044799805,
+ "step": 1887
+ },
+ {
+ "epoch": 26.2235807860262,
+ "grad_norm": 0.06119848042726517,
+ "learning_rate": 0.0006,
+ "loss": 3.013659954071045,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23755458515284,
+ "grad_norm": 0.05560006573796272,
+ "learning_rate": 0.0006,
+ "loss": 3.045351028442383,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251528384279474,
+ "grad_norm": 0.04513552039861679,
+ "learning_rate": 0.0006,
+ "loss": 3.0176339149475098,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265502183406113,
+ "grad_norm": 0.04880162701010704,
+ "learning_rate": 0.0006,
+ "loss": 2.997415065765381,
+ "step": 1891
+ },
+ {
+ "epoch": 26.27947598253275,
+ "grad_norm": 0.04402848333120346,
+ "learning_rate": 0.0006,
+ "loss": 3.035266876220703,
+ "step": 1892
+ },
+ {
+ "epoch": 26.29344978165939,
+ "grad_norm": 0.040773630142211914,
+ "learning_rate": 0.0006,
+ "loss": 3.0323173999786377,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307423580786025,
+ "grad_norm": 0.03853452205657959,
+ "learning_rate": 0.0006,
+ "loss": 3.0291802883148193,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321397379912664,
+ "grad_norm": 0.037200599908828735,
+ "learning_rate": 0.0006,
+ "loss": 3.0359907150268555,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335371179039303,
+ "grad_norm": 0.035764336585998535,
+ "learning_rate": 0.0006,
+ "loss": 3.017059326171875,
+ "step": 1896
+ },
+ {
+ "epoch": 26.349344978165938,
+ "grad_norm": 0.0344136580824852,
+ "learning_rate": 0.0006,
+ "loss": 3.0438151359558105,
+ "step": 1897
+ },
+ {
+ "epoch": 26.363318777292577,
+ "grad_norm": 0.03413735702633858,
+ "learning_rate": 0.0006,
+ "loss": 3.0627403259277344,
+ "step": 1898
+ },
+ {
+ "epoch": 26.377292576419215,
+ "grad_norm": 0.03260914236307144,
+ "learning_rate": 0.0006,
+ "loss": 2.9989752769470215,
+ "step": 1899
+ },
+ {
+ "epoch": 26.39126637554585,
+ "grad_norm": 0.03044072724878788,
+ "learning_rate": 0.0006,
+ "loss": 3.0424299240112305,
+ "step": 1900
+ },
+ {
+ "epoch": 26.40524017467249,
+ "grad_norm": 0.030227871611714363,
+ "learning_rate": 0.0006,
+ "loss": 3.0220985412597656,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419213973799128,
+ "grad_norm": 0.031268492341041565,
+ "learning_rate": 0.0006,
+ "loss": 3.056239128112793,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433187772925763,
+ "grad_norm": 0.028938250616192818,
+ "learning_rate": 0.0006,
+ "loss": 3.017686367034912,
+ "step": 1903
+ },
+ {
+ "epoch": 26.4471615720524,
+ "grad_norm": 0.02674158848822117,
+ "learning_rate": 0.0006,
+ "loss": 3.066281318664551,
+ "step": 1904
+ },
+ {
+ "epoch": 26.46113537117904,
+ "grad_norm": 0.028296295553445816,
+ "learning_rate": 0.0006,
+ "loss": 3.02766752243042,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475109170305675,
+ "grad_norm": 0.03080872818827629,
+ "learning_rate": 0.0006,
+ "loss": 3.059089422225952,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489082969432314,
+ "grad_norm": 0.028370540589094162,
+ "learning_rate": 0.0006,
+ "loss": 3.0661725997924805,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503056768558952,
+ "grad_norm": 0.025940680876374245,
+ "learning_rate": 0.0006,
+ "loss": 3.050424098968506,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51703056768559,
+ "grad_norm": 0.025786688551306725,
+ "learning_rate": 0.0006,
+ "loss": 3.035883665084839,
+ "step": 1909
+ },
+ {
+ "epoch": 26.531004366812226,
+ "grad_norm": 0.025683339685201645,
+ "learning_rate": 0.0006,
+ "loss": 3.057992935180664,
+ "step": 1910
+ },
+ {
+ "epoch": 26.544978165938865,
+ "grad_norm": 0.028027107939124107,
+ "learning_rate": 0.0006,
+ "loss": 3.047372579574585,
+ "step": 1911
+ },
+ {
+ "epoch": 26.558951965065503,
+ "grad_norm": 0.02833317033946514,
+ "learning_rate": 0.0006,
+ "loss": 3.056609630584717,
+ "step": 1912
+ },
+ {
+ "epoch": 26.57292576419214,
+ "grad_norm": 0.028734203428030014,
+ "learning_rate": 0.0006,
+ "loss": 3.08479642868042,
+ "step": 1913
+ },
+ {
+ "epoch": 26.586899563318777,
+ "grad_norm": 0.027691153809428215,
+ "learning_rate": 0.0006,
+ "loss": 3.0392603874206543,
+ "step": 1914
+ },
+ {
+ "epoch": 26.600873362445416,
+ "grad_norm": 0.0263577438890934,
+ "learning_rate": 0.0006,
+ "loss": 3.0504343509674072,
+ "step": 1915
+ },
+ {
+ "epoch": 26.61484716157205,
+ "grad_norm": 0.026692545041441917,
+ "learning_rate": 0.0006,
+ "loss": 3.100642204284668,
+ "step": 1916
+ },
+ {
+ "epoch": 26.62882096069869,
+ "grad_norm": 0.025303112342953682,
+ "learning_rate": 0.0006,
+ "loss": 3.05635929107666,
+ "step": 1917
+ },
+ {
+ "epoch": 26.64279475982533,
+ "grad_norm": 0.024708664044737816,
+ "learning_rate": 0.0006,
+ "loss": 3.059967517852783,
+ "step": 1918
+ },
+ {
+ "epoch": 26.656768558951963,
+ "grad_norm": 0.02639661729335785,
+ "learning_rate": 0.0006,
+ "loss": 3.0737743377685547,
+ "step": 1919
+ },
+ {
+ "epoch": 26.670742358078602,
+ "grad_norm": 0.025596698746085167,
+ "learning_rate": 0.0006,
+ "loss": 3.067931890487671,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68471615720524,
+ "grad_norm": 0.02229447290301323,
+ "learning_rate": 0.0006,
+ "loss": 3.0820088386535645,
+ "step": 1921
+ },
+ {
+ "epoch": 26.69868995633188,
+ "grad_norm": 0.02375129424035549,
+ "learning_rate": 0.0006,
+ "loss": 3.07956862449646,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712663755458514,
+ "grad_norm": 0.02399134822189808,
+ "learning_rate": 0.0006,
+ "loss": 3.061767101287842,
+ "step": 1923
+ },
+ {
+ "epoch": 26.726637554585153,
+ "grad_norm": 0.024671411141753197,
+ "learning_rate": 0.0006,
+ "loss": 3.1015849113464355,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74061135371179,
+ "grad_norm": 0.024321842938661575,
+ "learning_rate": 0.0006,
+ "loss": 3.0476126670837402,
+ "step": 1925
+ },
+ {
+ "epoch": 26.754585152838427,
+ "grad_norm": 0.023859843611717224,
+ "learning_rate": 0.0006,
+ "loss": 3.0923385620117188,
+ "step": 1926
+ },
+ {
+ "epoch": 26.768558951965066,
+ "grad_norm": 0.024472227320075035,
+ "learning_rate": 0.0006,
+ "loss": 3.0999197959899902,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782532751091704,
+ "grad_norm": 0.02513224445283413,
+ "learning_rate": 0.0006,
+ "loss": 3.067659854888916,
+ "step": 1928
+ },
+ {
+ "epoch": 26.79650655021834,
+ "grad_norm": 0.023755615577101707,
+ "learning_rate": 0.0006,
+ "loss": 3.070265293121338,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810480349344978,
+ "grad_norm": 0.023443203419446945,
+ "learning_rate": 0.0006,
+ "loss": 3.0928702354431152,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824454148471617,
+ "grad_norm": 0.024389786645770073,
+ "learning_rate": 0.0006,
+ "loss": 3.039468288421631,
+ "step": 1931
+ },
+ {
+ "epoch": 26.83842794759825,
+ "grad_norm": 0.021939845755696297,
+ "learning_rate": 0.0006,
+ "loss": 3.0597710609436035,
+ "step": 1932
+ },
+ {
+ "epoch": 26.85240174672489,
+ "grad_norm": 0.022113796323537827,
+ "learning_rate": 0.0006,
+ "loss": 3.078843593597412,
+ "step": 1933
+ },
+ {
+ "epoch": 26.86637554585153,
+ "grad_norm": 0.023516526445746422,
+ "learning_rate": 0.0006,
+ "loss": 3.136680841445923,
+ "step": 1934
+ },
+ {
+ "epoch": 26.880349344978168,
+ "grad_norm": 0.023710910230875015,
+ "learning_rate": 0.0006,
+ "loss": 3.103081703186035,
+ "step": 1935
+ },
+ {
+ "epoch": 26.894323144104803,
+ "grad_norm": 0.023430297151207924,
+ "learning_rate": 0.0006,
+ "loss": 3.098705291748047,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90829694323144,
+ "grad_norm": 0.023761266842484474,
+ "learning_rate": 0.0006,
+ "loss": 3.1277971267700195,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92227074235808,
+ "grad_norm": 0.023715797811746597,
+ "learning_rate": 0.0006,
+ "loss": 3.0877621173858643,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936244541484715,
+ "grad_norm": 0.023883594200015068,
+ "learning_rate": 0.0006,
+ "loss": 3.087163209915161,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950218340611354,
+ "grad_norm": 0.022293508052825928,
+ "learning_rate": 0.0006,
+ "loss": 3.086988925933838,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964192139737992,
+ "grad_norm": 0.022041622549295425,
+ "learning_rate": 0.0006,
+ "loss": 3.1225247383117676,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978165938864628,
+ "grad_norm": 0.021637167781591415,
+ "learning_rate": 0.0006,
+ "loss": 3.0737392902374268,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992139737991266,
+ "grad_norm": 0.02192411944270134,
+ "learning_rate": 0.0006,
+ "loss": 3.104888916015625,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.025614608079195023,
+ "learning_rate": 0.0006,
+ "loss": 3.12424898147583,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 4.125223636627197,
+ "eval_runtime": 50.2001,
+ "eval_samples_per_second": 48.645,
+ "eval_steps_per_second": 1.534,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397379912664,
+ "grad_norm": 0.028453795239329338,
+ "learning_rate": 0.0006,
+ "loss": 2.879258632659912,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027947598253274,
+ "grad_norm": 0.04377718269824982,
+ "learning_rate": 0.0006,
+ "loss": 2.9013819694519043,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041921397379912,
+ "grad_norm": 0.049764763563871384,
+ "learning_rate": 0.0006,
+ "loss": 2.9127326011657715,
+ "step": 1947
+ },
+ {
+ "epoch": 27.05589519650655,
+ "grad_norm": 0.05033150315284729,
+ "learning_rate": 0.0006,
+ "loss": 2.8803203105926514,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069868995633186,
+ "grad_norm": 0.05057684704661369,
+ "learning_rate": 0.0006,
+ "loss": 2.9041876792907715,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083842794759825,
+ "grad_norm": 0.05503581836819649,
+ "learning_rate": 0.0006,
+ "loss": 2.9236111640930176,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097816593886463,
+ "grad_norm": 0.0504646934568882,
+ "learning_rate": 0.0006,
+ "loss": 2.898369789123535,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111790393013102,
+ "grad_norm": 0.05223672091960907,
+ "learning_rate": 0.0006,
+ "loss": 2.922698974609375,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125764192139737,
+ "grad_norm": 0.061617255210876465,
+ "learning_rate": 0.0006,
+ "loss": 2.933682680130005,
+ "step": 1953
+ },
+ {
+ "epoch": 27.139737991266376,
+ "grad_norm": 0.06874233484268188,
+ "learning_rate": 0.0006,
+ "loss": 2.9357151985168457,
+ "step": 1954
+ },
+ {
+ "epoch": 27.153711790393015,
+ "grad_norm": 0.06190113350749016,
+ "learning_rate": 0.0006,
+ "loss": 2.954944610595703,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16768558951965,
+ "grad_norm": 0.05684139207005501,
+ "learning_rate": 0.0006,
+ "loss": 2.9126837253570557,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18165938864629,
+ "grad_norm": 0.06056728586554527,
+ "learning_rate": 0.0006,
+ "loss": 2.9814395904541016,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195633187772927,
+ "grad_norm": 0.056225795298814774,
+ "learning_rate": 0.0006,
+ "loss": 2.991654872894287,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209606986899562,
+ "grad_norm": 0.045878518372774124,
+ "learning_rate": 0.0006,
+ "loss": 3.001042604446411,
+ "step": 1959
+ },
+ {
+ "epoch": 27.2235807860262,
+ "grad_norm": 0.0471920520067215,
+ "learning_rate": 0.0006,
+ "loss": 2.9564008712768555,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23755458515284,
+ "grad_norm": 0.053059689700603485,
+ "learning_rate": 0.0006,
+ "loss": 2.996217727661133,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251528384279474,
+ "grad_norm": 0.0541369765996933,
+ "learning_rate": 0.0006,
+ "loss": 2.9720678329467773,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265502183406113,
+ "grad_norm": 0.047301989048719406,
+ "learning_rate": 0.0006,
+ "loss": 2.9787089824676514,
+ "step": 1963
+ },
+ {
+ "epoch": 27.27947598253275,
+ "grad_norm": 0.046062350273132324,
+ "learning_rate": 0.0006,
+ "loss": 2.9771294593811035,
+ "step": 1964
+ },
+ {
+ "epoch": 27.29344978165939,
+ "grad_norm": 0.05031602457165718,
+ "learning_rate": 0.0006,
+ "loss": 2.9904980659484863,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307423580786025,
+ "grad_norm": 0.049279652535915375,
+ "learning_rate": 0.0006,
+ "loss": 2.994781494140625,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321397379912664,
+ "grad_norm": 0.05007164552807808,
+ "learning_rate": 0.0006,
+ "loss": 3.0293216705322266,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335371179039303,
+ "grad_norm": 0.053599122911691666,
+ "learning_rate": 0.0006,
+ "loss": 2.966653347015381,
+ "step": 1968
+ },
+ {
+ "epoch": 27.349344978165938,
+ "grad_norm": 0.053869765251874924,
+ "learning_rate": 0.0006,
+ "loss": 2.986807107925415,
+ "step": 1969
+ },
+ {
+ "epoch": 27.363318777292577,
+ "grad_norm": 0.049204543232917786,
+ "learning_rate": 0.0006,
+ "loss": 3.035799264907837,
+ "step": 1970
+ },
+ {
+ "epoch": 27.377292576419215,
+ "grad_norm": 0.041741687804460526,
+ "learning_rate": 0.0006,
+ "loss": 3.01177978515625,
+ "step": 1971
+ },
+ {
+ "epoch": 27.39126637554585,
+ "grad_norm": 0.04108894243836403,
+ "learning_rate": 0.0006,
+ "loss": 3.0135087966918945,
+ "step": 1972
+ },
+ {
+ "epoch": 27.40524017467249,
+ "grad_norm": 0.03928737714886665,
+ "learning_rate": 0.0006,
+ "loss": 2.9952547550201416,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419213973799128,
+ "grad_norm": 0.038500797003507614,
+ "learning_rate": 0.0006,
+ "loss": 3.047365188598633,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433187772925763,
+ "grad_norm": 0.03740246221423149,
+ "learning_rate": 0.0006,
+ "loss": 3.033809185028076,
+ "step": 1975
+ },
+ {
+ "epoch": 27.4471615720524,
+ "grad_norm": 0.03386867046356201,
+ "learning_rate": 0.0006,
+ "loss": 3.025137424468994,
+ "step": 1976
+ },
+ {
+ "epoch": 27.46113537117904,
+ "grad_norm": 0.03259620815515518,
+ "learning_rate": 0.0006,
+ "loss": 3.031647205352783,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475109170305675,
+ "grad_norm": 0.03135821223258972,
+ "learning_rate": 0.0006,
+ "loss": 3.038449287414551,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489082969432314,
+ "grad_norm": 0.02891516126692295,
+ "learning_rate": 0.0006,
+ "loss": 3.0067849159240723,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503056768558952,
+ "grad_norm": 0.029571816325187683,
+ "learning_rate": 0.0006,
+ "loss": 3.0450942516326904,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51703056768559,
+ "grad_norm": 0.02915847674012184,
+ "learning_rate": 0.0006,
+ "loss": 3.0238382816314697,
+ "step": 1981
+ },
+ {
+ "epoch": 27.531004366812226,
+ "grad_norm": 0.02730637416243553,
+ "learning_rate": 0.0006,
+ "loss": 2.9970340728759766,
+ "step": 1982
+ },
+ {
+ "epoch": 27.544978165938865,
+ "grad_norm": 0.026363128796219826,
+ "learning_rate": 0.0006,
+ "loss": 3.042269229888916,
+ "step": 1983
+ },
+ {
+ "epoch": 27.558951965065503,
+ "grad_norm": 0.02613256685435772,
+ "learning_rate": 0.0006,
+ "loss": 2.9850640296936035,
+ "step": 1984
+ },
+ {
+ "epoch": 27.57292576419214,
+ "grad_norm": 0.025504328310489655,
+ "learning_rate": 0.0006,
+ "loss": 3.02850341796875,
+ "step": 1985
+ },
+ {
+ "epoch": 27.586899563318777,
+ "grad_norm": 0.025076977908611298,
+ "learning_rate": 0.0006,
+ "loss": 3.022831678390503,
+ "step": 1986
+ },
+ {
+ "epoch": 27.600873362445416,
+ "grad_norm": 0.026498636230826378,
+ "learning_rate": 0.0006,
+ "loss": 3.036193370819092,
+ "step": 1987
+ },
+ {
+ "epoch": 27.61484716157205,
+ "grad_norm": 0.02634165622293949,
+ "learning_rate": 0.0006,
+ "loss": 2.988772392272949,
+ "step": 1988
+ },
+ {
+ "epoch": 27.62882096069869,
+ "grad_norm": 0.02386527881026268,
+ "learning_rate": 0.0006,
+ "loss": 3.0652225017547607,
+ "step": 1989
+ },
+ {
+ "epoch": 27.64279475982533,
+ "grad_norm": 0.025630373507738113,
+ "learning_rate": 0.0006,
+ "loss": 3.025211811065674,
+ "step": 1990
+ },
+ {
+ "epoch": 27.656768558951963,
+ "grad_norm": 0.02564374916255474,
+ "learning_rate": 0.0006,
+ "loss": 3.038477659225464,
+ "step": 1991
+ },
+ {
+ "epoch": 27.670742358078602,
+ "grad_norm": 0.024687733501195908,
+ "learning_rate": 0.0006,
+ "loss": 3.0274953842163086,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68471615720524,
+ "grad_norm": 0.0237992312759161,
+ "learning_rate": 0.0006,
+ "loss": 3.020660638809204,
+ "step": 1993
+ },
+ {
+ "epoch": 27.69868995633188,
+ "grad_norm": 0.024008993059396744,
+ "learning_rate": 0.0006,
+ "loss": 3.0048153400421143,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712663755458514,
+ "grad_norm": 0.024011511355638504,
+ "learning_rate": 0.0006,
+ "loss": 3.028651714324951,
+ "step": 1995
+ },
+ {
+ "epoch": 27.726637554585153,
+ "grad_norm": 0.023767957463860512,
+ "learning_rate": 0.0006,
+ "loss": 3.024357795715332,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74061135371179,
+ "grad_norm": 0.02491922304034233,
+ "learning_rate": 0.0006,
+ "loss": 3.0481948852539062,
+ "step": 1997
+ },
+ {
+ "epoch": 27.754585152838427,
+ "grad_norm": 0.023492073640227318,
+ "learning_rate": 0.0006,
+ "loss": 3.0265281200408936,
+ "step": 1998
+ },
+ {
+ "epoch": 27.768558951965066,
+ "grad_norm": 0.022904539480805397,
+ "learning_rate": 0.0006,
+ "loss": 3.035724401473999,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782532751091704,
+ "grad_norm": 0.02523794211447239,
+ "learning_rate": 0.0006,
+ "loss": 3.0473437309265137,
+ "step": 2000
+ },
+ {
+ "epoch": 27.79650655021834,
+ "grad_norm": 0.02560942806303501,
+ "learning_rate": 0.0006,
+ "loss": 3.031550168991089,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810480349344978,
+ "grad_norm": 0.025517819449305534,
+ "learning_rate": 0.0006,
+ "loss": 3.0686302185058594,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824454148471617,
+ "grad_norm": 0.02572985179722309,
+ "learning_rate": 0.0006,
+ "loss": 3.07204270362854,
+ "step": 2003
+ },
+ {
+ "epoch": 27.83842794759825,
+ "grad_norm": 0.025370420888066292,
+ "learning_rate": 0.0006,
+ "loss": 3.0560848712921143,
+ "step": 2004
+ },
+ {
+ "epoch": 27.85240174672489,
+ "grad_norm": 0.02532627247273922,
+ "learning_rate": 0.0006,
+ "loss": 3.0176045894622803,
+ "step": 2005
+ },
+ {
+ "epoch": 27.86637554585153,
+ "grad_norm": 0.02456071600317955,
+ "learning_rate": 0.0006,
+ "loss": 3.0588455200195312,
+ "step": 2006
+ },
+ {
+ "epoch": 27.880349344978168,
+ "grad_norm": 0.025378121063113213,
+ "learning_rate": 0.0006,
+ "loss": 3.086975574493408,
+ "step": 2007
+ },
+ {
+ "epoch": 27.894323144104803,
+ "grad_norm": 0.024764427915215492,
+ "learning_rate": 0.0006,
+ "loss": 3.0386085510253906,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90829694323144,
+ "grad_norm": 0.024318184703588486,
+ "learning_rate": 0.0006,
+ "loss": 3.0750131607055664,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92227074235808,
+ "grad_norm": 0.023893442004919052,
+ "learning_rate": 0.0006,
+ "loss": 3.0715298652648926,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936244541484715,
+ "grad_norm": 0.023891527205705643,
+ "learning_rate": 0.0006,
+ "loss": 3.063795804977417,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950218340611354,
+ "grad_norm": 0.023563770577311516,
+ "learning_rate": 0.0006,
+ "loss": 3.066619873046875,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964192139737992,
+ "grad_norm": 0.023340724408626556,
+ "learning_rate": 0.0006,
+ "loss": 3.0637826919555664,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978165938864628,
+ "grad_norm": 0.024990880861878395,
+ "learning_rate": 0.0006,
+ "loss": 3.0814566612243652,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992139737991266,
+ "grad_norm": 0.024654274806380272,
+ "learning_rate": 0.0006,
+ "loss": 3.0768063068389893,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.02644839696586132,
+ "learning_rate": 0.0006,
+ "loss": 3.0343258380889893,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 4.1515045166015625,
+ "eval_runtime": 50.2049,
+ "eval_samples_per_second": 48.641,
+ "eval_steps_per_second": 1.534,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397379912664,
+ "grad_norm": 0.03195852413773537,
+ "learning_rate": 0.0006,
+ "loss": 2.834456443786621,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027947598253274,
+ "grad_norm": 0.0489632710814476,
+ "learning_rate": 0.0006,
+ "loss": 2.864487648010254,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041921397379912,
+ "grad_norm": 0.052848201245069504,
+ "learning_rate": 0.0006,
+ "loss": 2.881183624267578,
+ "step": 2019
+ },
+ {
+ "epoch": 28.05589519650655,
+ "grad_norm": 0.05033821240067482,
+ "learning_rate": 0.0006,
+ "loss": 2.8849921226501465,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069868995633186,
+ "grad_norm": 0.04925774410367012,
+ "learning_rate": 0.0006,
+ "loss": 2.8940699100494385,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083842794759825,
+ "grad_norm": 0.048295699059963226,
+ "learning_rate": 0.0006,
+ "loss": 2.8744611740112305,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097816593886463,
+ "grad_norm": 0.05191510170698166,
+ "learning_rate": 0.0006,
+ "loss": 2.8981003761291504,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111790393013102,
+ "grad_norm": 0.054681845009326935,
+ "learning_rate": 0.0006,
+ "loss": 2.894259452819824,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125764192139737,
+ "grad_norm": 0.05124315246939659,
+ "learning_rate": 0.0006,
+ "loss": 2.8902621269226074,
+ "step": 2025
+ },
+ {
+ "epoch": 28.139737991266376,
+ "grad_norm": 0.05269423872232437,
+ "learning_rate": 0.0006,
+ "loss": 2.9419264793395996,
+ "step": 2026
+ },
+ {
+ "epoch": 28.153711790393015,
+ "grad_norm": 0.052072685211896896,
+ "learning_rate": 0.0006,
+ "loss": 2.8902721405029297,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16768558951965,
+ "grad_norm": 0.04868622496724129,
+ "learning_rate": 0.0006,
+ "loss": 2.9544949531555176,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18165938864629,
+ "grad_norm": 0.04919573664665222,
+ "learning_rate": 0.0006,
+ "loss": 2.9149084091186523,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195633187772927,
+ "grad_norm": 0.05350393056869507,
+ "learning_rate": 0.0006,
+ "loss": 2.9301857948303223,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209606986899562,
+ "grad_norm": 0.06072673574090004,
+ "learning_rate": 0.0006,
+ "loss": 2.937542200088501,
+ "step": 2031
+ },
+ {
+ "epoch": 28.2235807860262,
+ "grad_norm": 0.06678931415081024,
+ "learning_rate": 0.0006,
+ "loss": 2.9437155723571777,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23755458515284,
+ "grad_norm": 0.07136489450931549,
+ "learning_rate": 0.0006,
+ "loss": 2.9720969200134277,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251528384279474,
+ "grad_norm": 0.06340529769659042,
+ "learning_rate": 0.0006,
+ "loss": 2.957184076309204,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265502183406113,
+ "grad_norm": 0.05951949581503868,
+ "learning_rate": 0.0006,
+ "loss": 2.9483275413513184,
+ "step": 2035
+ },
+ {
+ "epoch": 28.27947598253275,
+ "grad_norm": 0.05508637800812721,
+ "learning_rate": 0.0006,
+ "loss": 2.944632053375244,
+ "step": 2036
+ },
+ {
+ "epoch": 28.29344978165939,
+ "grad_norm": 0.04451477900147438,
+ "learning_rate": 0.0006,
+ "loss": 2.9538841247558594,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307423580786025,
+ "grad_norm": 0.04283531755208969,
+ "learning_rate": 0.0006,
+ "loss": 2.942497730255127,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321397379912664,
+ "grad_norm": 0.04256067052483559,
+ "learning_rate": 0.0006,
+ "loss": 2.9589486122131348,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335371179039303,
+ "grad_norm": 0.040724314749240875,
+ "learning_rate": 0.0006,
+ "loss": 2.9297492504119873,
+ "step": 2040
+ },
+ {
+ "epoch": 28.349344978165938,
+ "grad_norm": 0.035998500883579254,
+ "learning_rate": 0.0006,
+ "loss": 2.921250820159912,
+ "step": 2041
+ },
+ {
+ "epoch": 28.363318777292577,
+ "grad_norm": 0.03447495028376579,
+ "learning_rate": 0.0006,
+ "loss": 2.9901719093322754,
+ "step": 2042
+ },
+ {
+ "epoch": 28.377292576419215,
+ "grad_norm": 0.03475875034928322,
+ "learning_rate": 0.0006,
+ "loss": 2.975034236907959,
+ "step": 2043
+ },
+ {
+ "epoch": 28.39126637554585,
+ "grad_norm": 0.035763081163167953,
+ "learning_rate": 0.0006,
+ "loss": 2.9198880195617676,
+ "step": 2044
+ },
+ {
+ "epoch": 28.40524017467249,
+ "grad_norm": 0.03533506393432617,
+ "learning_rate": 0.0006,
+ "loss": 2.954592704772949,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419213973799128,
+ "grad_norm": 0.03279201313853264,
+ "learning_rate": 0.0006,
+ "loss": 2.9453115463256836,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433187772925763,
+ "grad_norm": 0.031335968524217606,
+ "learning_rate": 0.0006,
+ "loss": 2.9707398414611816,
+ "step": 2047
+ },
+ {
+ "epoch": 28.4471615720524,
+ "grad_norm": 0.028612999245524406,
+ "learning_rate": 0.0006,
+ "loss": 2.9935314655303955,
+ "step": 2048
+ },
+ {
+ "epoch": 28.46113537117904,
+ "grad_norm": 0.027722638100385666,
+ "learning_rate": 0.0006,
+ "loss": 2.937558650970459,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475109170305675,
+ "grad_norm": 0.026583192870020866,
+ "learning_rate": 0.0006,
+ "loss": 2.9509410858154297,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489082969432314,
+ "grad_norm": 0.026762869209051132,
+ "learning_rate": 0.0006,
+ "loss": 3.011293888092041,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503056768558952,
+ "grad_norm": 0.027254173532128334,
+ "learning_rate": 0.0006,
+ "loss": 2.9635009765625,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51703056768559,
+ "grad_norm": 0.028218677267432213,
+ "learning_rate": 0.0006,
+ "loss": 2.9973299503326416,
+ "step": 2053
+ },
+ {
+ "epoch": 28.531004366812226,
+ "grad_norm": 0.028099076822400093,
+ "learning_rate": 0.0006,
+ "loss": 2.980783462524414,
+ "step": 2054
+ },
+ {
+ "epoch": 28.544978165938865,
+ "grad_norm": 0.02740541286766529,
+ "learning_rate": 0.0006,
+ "loss": 3.0181171894073486,
+ "step": 2055
+ },
+ {
+ "epoch": 28.558951965065503,
+ "grad_norm": 0.028045643121004105,
+ "learning_rate": 0.0006,
+ "loss": 2.998990774154663,
+ "step": 2056
+ },
+ {
+ "epoch": 28.57292576419214,
+ "grad_norm": 0.026816850528120995,
+ "learning_rate": 0.0006,
+ "loss": 3.0068860054016113,
+ "step": 2057
+ },
+ {
+ "epoch": 28.586899563318777,
+ "grad_norm": 0.025382595136761665,
+ "learning_rate": 0.0006,
+ "loss": 2.9418373107910156,
+ "step": 2058
+ },
+ {
+ "epoch": 28.600873362445416,
+ "grad_norm": 0.026060424745082855,
+ "learning_rate": 0.0006,
+ "loss": 2.936776638031006,
+ "step": 2059
+ },
+ {
+ "epoch": 28.61484716157205,
+ "grad_norm": 0.025853872299194336,
+ "learning_rate": 0.0006,
+ "loss": 3.0203466415405273,
+ "step": 2060
+ },
+ {
+ "epoch": 28.62882096069869,
+ "grad_norm": 0.02508033812046051,
+ "learning_rate": 0.0006,
+ "loss": 2.9945011138916016,
+ "step": 2061
+ },
+ {
+ "epoch": 28.64279475982533,
+ "grad_norm": 0.025970350950956345,
+ "learning_rate": 0.0006,
+ "loss": 2.9931695461273193,
+ "step": 2062
+ },
+ {
+ "epoch": 28.656768558951963,
+ "grad_norm": 0.025476455688476562,
+ "learning_rate": 0.0006,
+ "loss": 2.957230567932129,
+ "step": 2063
+ },
+ {
+ "epoch": 28.670742358078602,
+ "grad_norm": 0.026332074776291847,
+ "learning_rate": 0.0006,
+ "loss": 3.0264182090759277,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68471615720524,
+ "grad_norm": 0.025519322603940964,
+ "learning_rate": 0.0006,
+ "loss": 3.0092458724975586,
+ "step": 2065
+ },
+ {
+ "epoch": 28.69868995633188,
+ "grad_norm": 0.024840593338012695,
+ "learning_rate": 0.0006,
+ "loss": 2.986766815185547,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712663755458514,
+ "grad_norm": 0.02441803738474846,
+ "learning_rate": 0.0006,
+ "loss": 2.9874420166015625,
+ "step": 2067
+ },
+ {
+ "epoch": 28.726637554585153,
+ "grad_norm": 0.02630285918712616,
+ "learning_rate": 0.0006,
+ "loss": 3.0578904151916504,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74061135371179,
+ "grad_norm": 0.026446865871548653,
+ "learning_rate": 0.0006,
+ "loss": 3.0013539791107178,
+ "step": 2069
+ },
+ {
+ "epoch": 28.754585152838427,
+ "grad_norm": 0.02450861781835556,
+ "learning_rate": 0.0006,
+ "loss": 3.0490686893463135,
+ "step": 2070
+ },
+ {
+ "epoch": 28.768558951965066,
+ "grad_norm": 0.02672298066318035,
+ "learning_rate": 0.0006,
+ "loss": 3.020845413208008,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782532751091704,
+ "grad_norm": 0.025726495310664177,
+ "learning_rate": 0.0006,
+ "loss": 3.0180835723876953,
+ "step": 2072
+ },
+ {
+ "epoch": 28.79650655021834,
+ "grad_norm": 0.026580246165394783,
+ "learning_rate": 0.0006,
+ "loss": 2.991779327392578,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810480349344978,
+ "grad_norm": 0.02619314193725586,
+ "learning_rate": 0.0006,
+ "loss": 2.963550329208374,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824454148471617,
+ "grad_norm": 0.02470521256327629,
+ "learning_rate": 0.0006,
+ "loss": 2.9849443435668945,
+ "step": 2075
+ },
+ {
+ "epoch": 28.83842794759825,
+ "grad_norm": 0.02675030194222927,
+ "learning_rate": 0.0006,
+ "loss": 2.996417284011841,
+ "step": 2076
+ },
+ {
+ "epoch": 28.85240174672489,
+ "grad_norm": 0.02626962400972843,
+ "learning_rate": 0.0006,
+ "loss": 3.037600040435791,
+ "step": 2077
+ },
+ {
+ "epoch": 28.86637554585153,
+ "grad_norm": 0.025189539417624474,
+ "learning_rate": 0.0006,
+ "loss": 3.0162289142608643,
+ "step": 2078
+ },
+ {
+ "epoch": 28.880349344978168,
+ "grad_norm": 0.023836355656385422,
+ "learning_rate": 0.0006,
+ "loss": 3.0182363986968994,
+ "step": 2079
+ },
+ {
+ "epoch": 28.894323144104803,
+ "grad_norm": 0.025875985622406006,
+ "learning_rate": 0.0006,
+ "loss": 3.0712671279907227,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90829694323144,
+ "grad_norm": 0.025787588208913803,
+ "learning_rate": 0.0006,
+ "loss": 3.060253858566284,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92227074235808,
+ "grad_norm": 0.025029966607689857,
+ "learning_rate": 0.0006,
+ "loss": 3.0385570526123047,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936244541484715,
+ "grad_norm": 0.024807918816804886,
+ "learning_rate": 0.0006,
+ "loss": 3.030642509460449,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950218340611354,
+ "grad_norm": 0.02444799616932869,
+ "learning_rate": 0.0006,
+ "loss": 3.025789260864258,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964192139737992,
+ "grad_norm": 0.02498369850218296,
+ "learning_rate": 0.0006,
+ "loss": 3.0041980743408203,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978165938864628,
+ "grad_norm": 0.02519051544368267,
+ "learning_rate": 0.0006,
+ "loss": 3.0126523971557617,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992139737991266,
+ "grad_norm": 0.026262952014803886,
+ "learning_rate": 0.0006,
+ "loss": 3.036421775817871,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.028925646096467972,
+ "learning_rate": 0.0006,
+ "loss": 2.9996514320373535,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 4.17269229888916,
+ "eval_runtime": 54.6168,
+ "eval_samples_per_second": 44.711,
+ "eval_steps_per_second": 1.41,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397379912664,
+ "grad_norm": 0.033029936254024506,
+ "learning_rate": 0.0006,
+ "loss": 2.8362483978271484,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027947598253274,
+ "grad_norm": 0.04538845643401146,
+ "learning_rate": 0.0006,
+ "loss": 2.8311057090759277,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041921397379912,
+ "grad_norm": 0.046482112258672714,
+ "learning_rate": 0.0006,
+ "loss": 2.851710319519043,
+ "step": 2091
+ },
+ {
+ "epoch": 29.05589519650655,
+ "grad_norm": 0.04495995491743088,
+ "learning_rate": 0.0006,
+ "loss": 2.8197240829467773,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069868995633186,
+ "grad_norm": 0.043497391045093536,
+ "learning_rate": 0.0006,
+ "loss": 2.835160255432129,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083842794759825,
+ "grad_norm": 0.042180925607681274,
+ "learning_rate": 0.0006,
+ "loss": 2.814297914505005,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097816593886463,
+ "grad_norm": 0.046564772725105286,
+ "learning_rate": 0.0006,
+ "loss": 2.8432681560516357,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111790393013102,
+ "grad_norm": 0.05109454691410065,
+ "learning_rate": 0.0006,
+ "loss": 2.8209657669067383,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125764192139737,
+ "grad_norm": 0.054633282124996185,
+ "learning_rate": 0.0006,
+ "loss": 2.860410213470459,
+ "step": 2097
+ },
+ {
+ "epoch": 29.139737991266376,
+ "grad_norm": 0.05523914843797684,
+ "learning_rate": 0.0006,
+ "loss": 2.850083827972412,
+ "step": 2098
+ },
+ {
+ "epoch": 29.153711790393015,
+ "grad_norm": 0.055773504078388214,
+ "learning_rate": 0.0006,
+ "loss": 2.8240323066711426,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16768558951965,
+ "grad_norm": 0.054498568177223206,
+ "learning_rate": 0.0006,
+ "loss": 2.8628149032592773,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18165938864629,
+ "grad_norm": 0.053030889481306076,
+ "learning_rate": 0.0006,
+ "loss": 2.8365299701690674,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195633187772927,
+ "grad_norm": 0.05545743182301521,
+ "learning_rate": 0.0006,
+ "loss": 2.884146213531494,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209606986899562,
+ "grad_norm": 0.057719431817531586,
+ "learning_rate": 0.0006,
+ "loss": 2.8857107162475586,
+ "step": 2103
+ },
+ {
+ "epoch": 29.2235807860262,
+ "grad_norm": 0.060189153999090195,
+ "learning_rate": 0.0006,
+ "loss": 2.896878242492676,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23755458515284,
+ "grad_norm": 0.06222223490476608,
+ "learning_rate": 0.0006,
+ "loss": 2.883173704147339,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251528384279474,
+ "grad_norm": 0.06780146062374115,
+ "learning_rate": 0.0006,
+ "loss": 2.926743745803833,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265502183406113,
+ "grad_norm": 0.06533487886190414,
+ "learning_rate": 0.0006,
+ "loss": 2.9010519981384277,
+ "step": 2107
+ },
+ {
+ "epoch": 29.27947598253275,
+ "grad_norm": 0.05744635686278343,
+ "learning_rate": 0.0006,
+ "loss": 2.922598123550415,
+ "step": 2108
+ },
+ {
+ "epoch": 29.29344978165939,
+ "grad_norm": 0.05649896338582039,
+ "learning_rate": 0.0006,
+ "loss": 2.905834674835205,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307423580786025,
+ "grad_norm": 0.06080562621355057,
+ "learning_rate": 0.0006,
+ "loss": 2.92208194732666,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321397379912664,
+ "grad_norm": 0.059314578771591187,
+ "learning_rate": 0.0006,
+ "loss": 2.9546284675598145,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335371179039303,
+ "grad_norm": 0.047971680760383606,
+ "learning_rate": 0.0006,
+ "loss": 2.9306116104125977,
+ "step": 2112
+ },
+ {
+ "epoch": 29.349344978165938,
+ "grad_norm": 0.041513457894325256,
+ "learning_rate": 0.0006,
+ "loss": 2.885359287261963,
+ "step": 2113
+ },
+ {
+ "epoch": 29.363318777292577,
+ "grad_norm": 0.044294606894254684,
+ "learning_rate": 0.0006,
+ "loss": 2.923374652862549,
+ "step": 2114
+ },
+ {
+ "epoch": 29.377292576419215,
+ "grad_norm": 0.0417361743748188,
+ "learning_rate": 0.0006,
+ "loss": 2.88425350189209,
+ "step": 2115
+ },
+ {
+ "epoch": 29.39126637554585,
+ "grad_norm": 0.041468895971775055,
+ "learning_rate": 0.0006,
+ "loss": 2.9643259048461914,
+ "step": 2116
+ },
+ {
+ "epoch": 29.40524017467249,
+ "grad_norm": 0.04073813930153847,
+ "learning_rate": 0.0006,
+ "loss": 2.95505952835083,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419213973799128,
+ "grad_norm": 0.039006855338811874,
+ "learning_rate": 0.0006,
+ "loss": 2.9500551223754883,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433187772925763,
+ "grad_norm": 0.035800445824861526,
+ "learning_rate": 0.0006,
+ "loss": 2.954481601715088,
+ "step": 2119
+ },
+ {
+ "epoch": 29.4471615720524,
+ "grad_norm": 0.03534843400120735,
+ "learning_rate": 0.0006,
+ "loss": 2.949183940887451,
+ "step": 2120
+ },
+ {
+ "epoch": 29.46113537117904,
+ "grad_norm": 0.03376666083931923,
+ "learning_rate": 0.0006,
+ "loss": 2.9482197761535645,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475109170305675,
+ "grad_norm": 0.032544493675231934,
+ "learning_rate": 0.0006,
+ "loss": 2.9613194465637207,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489082969432314,
+ "grad_norm": 0.02941369079053402,
+ "learning_rate": 0.0006,
+ "loss": 2.9054269790649414,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503056768558952,
+ "grad_norm": 0.030306288972496986,
+ "learning_rate": 0.0006,
+ "loss": 2.955117702484131,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51703056768559,
+ "grad_norm": 0.029188739135861397,
+ "learning_rate": 0.0006,
+ "loss": 2.9344658851623535,
+ "step": 2125
+ },
+ {
+ "epoch": 29.531004366812226,
+ "grad_norm": 0.028544921427965164,
+ "learning_rate": 0.0006,
+ "loss": 2.9878439903259277,
+ "step": 2126
+ },
+ {
+ "epoch": 29.544978165938865,
+ "grad_norm": 0.029478471726179123,
+ "learning_rate": 0.0006,
+ "loss": 2.9671640396118164,
+ "step": 2127
+ },
+ {
+ "epoch": 29.558951965065503,
+ "grad_norm": 0.029838059097528458,
+ "learning_rate": 0.0006,
+ "loss": 2.9319276809692383,
+ "step": 2128
+ },
+ {
+ "epoch": 29.57292576419214,
+ "grad_norm": 0.031277935951948166,
+ "learning_rate": 0.0006,
+ "loss": 2.9517064094543457,
+ "step": 2129
+ },
+ {
+ "epoch": 29.586899563318777,
+ "grad_norm": 0.028920911252498627,
+ "learning_rate": 0.0006,
+ "loss": 3.0010836124420166,
+ "step": 2130
+ },
+ {
+ "epoch": 29.600873362445416,
+ "grad_norm": 0.028258386999368668,
+ "learning_rate": 0.0006,
+ "loss": 2.9552881717681885,
+ "step": 2131
+ },
+ {
+ "epoch": 29.61484716157205,
+ "grad_norm": 0.027709737420082092,
+ "learning_rate": 0.0006,
+ "loss": 2.9699630737304688,
+ "step": 2132
+ },
+ {
+ "epoch": 29.62882096069869,
+ "grad_norm": 0.027644682675600052,
+ "learning_rate": 0.0006,
+ "loss": 2.966932535171509,
+ "step": 2133
+ },
+ {
+ "epoch": 29.64279475982533,
+ "grad_norm": 0.026919284835457802,
+ "learning_rate": 0.0006,
+ "loss": 2.9580016136169434,
+ "step": 2134
+ },
+ {
+ "epoch": 29.656768558951963,
+ "grad_norm": 0.025746364146471024,
+ "learning_rate": 0.0006,
+ "loss": 2.9671740531921387,
+ "step": 2135
+ },
+ {
+ "epoch": 29.670742358078602,
+ "grad_norm": 0.026482900604605675,
+ "learning_rate": 0.0006,
+ "loss": 2.9920620918273926,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68471615720524,
+ "grad_norm": 0.028580941259860992,
+ "learning_rate": 0.0006,
+ "loss": 2.998594045639038,
+ "step": 2137
+ },
+ {
+ "epoch": 29.69868995633188,
+ "grad_norm": 0.027317512780427933,
+ "learning_rate": 0.0006,
+ "loss": 2.978580951690674,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712663755458514,
+ "grad_norm": 0.026336928829550743,
+ "learning_rate": 0.0006,
+ "loss": 2.9933362007141113,
+ "step": 2139
+ },
+ {
+ "epoch": 29.726637554585153,
+ "grad_norm": 0.025520015507936478,
+ "learning_rate": 0.0006,
+ "loss": 2.9906885623931885,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74061135371179,
+ "grad_norm": 0.024093175306916237,
+ "learning_rate": 0.0006,
+ "loss": 2.95902419090271,
+ "step": 2141
+ },
+ {
+ "epoch": 29.754585152838427,
+ "grad_norm": 0.024410322308540344,
+ "learning_rate": 0.0006,
+ "loss": 2.96647047996521,
+ "step": 2142
+ },
+ {
+ "epoch": 29.768558951965066,
+ "grad_norm": 0.024991247802972794,
+ "learning_rate": 0.0006,
+ "loss": 2.9643096923828125,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782532751091704,
+ "grad_norm": 0.025067847222089767,
+ "learning_rate": 0.0006,
+ "loss": 3.0112953186035156,
+ "step": 2144
+ },
+ {
+ "epoch": 29.79650655021834,
+ "grad_norm": 0.025362879037857056,
+ "learning_rate": 0.0006,
+ "loss": 2.971529483795166,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810480349344978,
+ "grad_norm": 0.024684470146894455,
+ "learning_rate": 0.0006,
+ "loss": 2.989647388458252,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824454148471617,
+ "grad_norm": 0.02385212853550911,
+ "learning_rate": 0.0006,
+ "loss": 2.977238178253174,
+ "step": 2147
+ },
+ {
+ "epoch": 29.83842794759825,
+ "grad_norm": 0.02527615986764431,
+ "learning_rate": 0.0006,
+ "loss": 2.9751431941986084,
+ "step": 2148
+ },
+ {
+ "epoch": 29.85240174672489,
+ "grad_norm": 0.024217894300818443,
+ "learning_rate": 0.0006,
+ "loss": 2.9607608318328857,
+ "step": 2149
+ },
+ {
+ "epoch": 29.86637554585153,
+ "grad_norm": 0.0244144294410944,
+ "learning_rate": 0.0006,
+ "loss": 3.0002236366271973,
+ "step": 2150
+ },
+ {
+ "epoch": 29.880349344978168,
+ "grad_norm": 0.026171889156103134,
+ "learning_rate": 0.0006,
+ "loss": 2.9608335494995117,
+ "step": 2151
+ },
+ {
+ "epoch": 29.894323144104803,
+ "grad_norm": 0.025675922632217407,
+ "learning_rate": 0.0006,
+ "loss": 3.0153677463531494,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90829694323144,
+ "grad_norm": 0.026269402354955673,
+ "learning_rate": 0.0006,
+ "loss": 2.990961790084839,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92227074235808,
+ "grad_norm": 0.025278599932789803,
+ "learning_rate": 0.0006,
+ "loss": 2.9858884811401367,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936244541484715,
+ "grad_norm": 0.02442092075943947,
+ "learning_rate": 0.0006,
+ "loss": 2.981938123703003,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950218340611354,
+ "grad_norm": 0.025676338002085686,
+ "learning_rate": 0.0006,
+ "loss": 3.007082462310791,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964192139737992,
+ "grad_norm": 0.02556379698216915,
+ "learning_rate": 0.0006,
+ "loss": 3.030315399169922,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978165938864628,
+ "grad_norm": 0.027025923132896423,
+ "learning_rate": 0.0006,
+ "loss": 2.9751744270324707,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992139737991266,
+ "grad_norm": 0.027581017464399338,
+ "learning_rate": 0.0006,
+ "loss": 3.0025429725646973,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.029440129175782204,
+ "learning_rate": 0.0006,
+ "loss": 2.9936294555664062,
+ "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-constantlr/checkpoint-2160/training_args.bin b/runs/baseline-constantlr/checkpoint-2160/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..902eed46d9e02245694ec118af9efec9cd359ff6
--- /dev/null
+++ b/runs/baseline-constantlr/checkpoint-2160/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f8a755363e28cfde742d3e37ba600ce14b5716157c9823f5cadd1b47464c7fc2
+size 5201
diff --git a/runs/baseline-constantlr/checkpoint-2520/chat_template.jinja b/runs/baseline-constantlr/checkpoint-2520/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-2520/config.json b/runs/baseline-constantlr/checkpoint-2520/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-2520/generation_config.json b/runs/baseline-constantlr/checkpoint-2520/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-2520/model.safetensors b/runs/baseline-constantlr/checkpoint-2520/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..70a55194e603a34589ffe09982efc8321d26ce81
--- /dev/null
+++ b/runs/baseline-constantlr/checkpoint-2520/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:be1ea06e679f6ff0edc276834515b159a1018ae0ce322319e9c4ace0393384a4
+size 583356232
diff --git a/runs/baseline-constantlr/checkpoint-2520/optimizer.pt b/runs/baseline-constantlr/checkpoint-2520/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..370da9c39420c920fd5b7344be59d17e08dddbb5
--- /dev/null
+++ b/runs/baseline-constantlr/checkpoint-2520/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d6c667a352ef9b3e473325e6ab929600101115a2a7d84c0d84ddca7aed6a0491
+size 1166825803
diff --git a/runs/baseline-constantlr/checkpoint-2520/rng_state_0.pth b/runs/baseline-constantlr/checkpoint-2520/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..f6a767b5a760715c982d5f3b7abf7f7ae7024858
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-2520/rng_state_1.pth b/runs/baseline-constantlr/checkpoint-2520/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..b0b2ce7324fa0e3d93e84f806452f72a932cb665
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-2520/scheduler.pt b/runs/baseline-constantlr/checkpoint-2520/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..70fe345e2168e54c43fce627911c2425f0eff891
--- /dev/null
+++ b/runs/baseline-constantlr/checkpoint-2520/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:8d30d1576af58ab51df64722cedcca94b4450a96d0c4c8e8696a1bde64f7de49
+size 1465
diff --git a/runs/baseline-constantlr/checkpoint-2520/tokenizer.json b/runs/baseline-constantlr/checkpoint-2520/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-2520/tokenizer_config.json b/runs/baseline-constantlr/checkpoint-2520/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-2520/trainer_state.json b/runs/baseline-constantlr/checkpoint-2520/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..8d31274f4b9f3a0d932e07dd90dd580f59e3cd25
--- /dev/null
+++ b/runs/baseline-constantlr/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.13303375244140625,
+ "learning_rate": 0.0,
+ "loss": 12.018817901611328,
+ "step": 1
+ },
+ {
+ "epoch": 0.02794759825327511,
+ "grad_norm": 0.13390742242336273,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.021883964538574,
+ "step": 2
+ },
+ {
+ "epoch": 0.04192139737991266,
+ "grad_norm": 0.13340722024440765,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.986108779907227,
+ "step": 3
+ },
+ {
+ "epoch": 0.05589519650655022,
+ "grad_norm": 0.13777263462543488,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.926837921142578,
+ "step": 4
+ },
+ {
+ "epoch": 0.06986899563318777,
+ "grad_norm": 0.14294272661209106,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.845431327819824,
+ "step": 5
+ },
+ {
+ "epoch": 0.08384279475982533,
+ "grad_norm": 0.15314988791942596,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.736921310424805,
+ "step": 6
+ },
+ {
+ "epoch": 0.09781659388646288,
+ "grad_norm": 0.14554648101329803,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.615877151489258,
+ "step": 7
+ },
+ {
+ "epoch": 0.11179039301310044,
+ "grad_norm": 0.1252845823764801,
+ "learning_rate": 4.2e-05,
+ "loss": 11.501619338989258,
+ "step": 8
+ },
+ {
+ "epoch": 0.125764192139738,
+ "grad_norm": 0.11403433233499527,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.396705627441406,
+ "step": 9
+ },
+ {
+ "epoch": 0.13973799126637554,
+ "grad_norm": 0.10996542125940323,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.31666374206543,
+ "step": 10
+ },
+ {
+ "epoch": 0.1537117903930131,
+ "grad_norm": 0.10755623877048492,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.252704620361328,
+ "step": 11
+ },
+ {
+ "epoch": 0.16768558951965065,
+ "grad_norm": 0.10700664669275284,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.194284439086914,
+ "step": 12
+ },
+ {
+ "epoch": 0.18165938864628822,
+ "grad_norm": 0.10606497526168823,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.14437198638916,
+ "step": 13
+ },
+ {
+ "epoch": 0.19563318777292577,
+ "grad_norm": 0.10551681369543076,
+ "learning_rate": 7.8e-05,
+ "loss": 11.096858024597168,
+ "step": 14
+ },
+ {
+ "epoch": 0.2096069868995633,
+ "grad_norm": 0.10573510080575943,
+ "learning_rate": 8.4e-05,
+ "loss": 11.047990798950195,
+ "step": 15
+ },
+ {
+ "epoch": 0.22358078602620088,
+ "grad_norm": 0.10572560131549835,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 11.000219345092773,
+ "step": 16
+ },
+ {
+ "epoch": 0.23755458515283842,
+ "grad_norm": 0.10625051707029343,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.93830680847168,
+ "step": 17
+ },
+ {
+ "epoch": 0.251528384279476,
+ "grad_norm": 0.10565247386693954,
+ "learning_rate": 0.000102,
+ "loss": 10.88237190246582,
+ "step": 18
+ },
+ {
+ "epoch": 0.26550218340611353,
+ "grad_norm": 0.10570791363716125,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.81382942199707,
+ "step": 19
+ },
+ {
+ "epoch": 0.2794759825327511,
+ "grad_norm": 0.10585319995880127,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.742864608764648,
+ "step": 20
+ },
+ {
+ "epoch": 0.2934497816593886,
+ "grad_norm": 0.10421311110258102,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.675719261169434,
+ "step": 21
+ },
+ {
+ "epoch": 0.3074235807860262,
+ "grad_norm": 0.10436785966157913,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.589548110961914,
+ "step": 22
+ },
+ {
+ "epoch": 0.32139737991266376,
+ "grad_norm": 0.10463878512382507,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.504261016845703,
+ "step": 23
+ },
+ {
+ "epoch": 0.3353711790393013,
+ "grad_norm": 0.104142926633358,
+ "learning_rate": 0.000138,
+ "loss": 10.41696548461914,
+ "step": 24
+ },
+ {
+ "epoch": 0.34934497816593885,
+ "grad_norm": 0.1037549152970314,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.327609062194824,
+ "step": 25
+ },
+ {
+ "epoch": 0.36331877729257644,
+ "grad_norm": 0.10464346408843994,
+ "learning_rate": 0.00015,
+ "loss": 10.226776123046875,
+ "step": 26
+ },
+ {
+ "epoch": 0.377292576419214,
+ "grad_norm": 0.10289040952920914,
+ "learning_rate": 0.000156,
+ "loss": 10.142925262451172,
+ "step": 27
+ },
+ {
+ "epoch": 0.39126637554585153,
+ "grad_norm": 0.10476566106081009,
+ "learning_rate": 0.000162,
+ "loss": 10.032388687133789,
+ "step": 28
+ },
+ {
+ "epoch": 0.4052401746724891,
+ "grad_norm": 0.10285190492868423,
+ "learning_rate": 0.000168,
+ "loss": 9.944738388061523,
+ "step": 29
+ },
+ {
+ "epoch": 0.4192139737991266,
+ "grad_norm": 0.10330761969089508,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.832511901855469,
+ "step": 30
+ },
+ {
+ "epoch": 0.4331877729257642,
+ "grad_norm": 0.10190961509943008,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.742905616760254,
+ "step": 31
+ },
+ {
+ "epoch": 0.44716157205240176,
+ "grad_norm": 0.10172155499458313,
+ "learning_rate": 0.000186,
+ "loss": 9.634834289550781,
+ "step": 32
+ },
+ {
+ "epoch": 0.4611353711790393,
+ "grad_norm": 0.10067209601402283,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.522916793823242,
+ "step": 33
+ },
+ {
+ "epoch": 0.47510917030567684,
+ "grad_norm": 0.10058761388063431,
+ "learning_rate": 0.000198,
+ "loss": 9.416927337646484,
+ "step": 34
+ },
+ {
+ "epoch": 0.4890829694323144,
+ "grad_norm": 0.0981091558933258,
+ "learning_rate": 0.000204,
+ "loss": 9.32928466796875,
+ "step": 35
+ },
+ {
+ "epoch": 0.503056768558952,
+ "grad_norm": 0.09739134460687637,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.215356826782227,
+ "step": 36
+ },
+ {
+ "epoch": 0.5170305676855895,
+ "grad_norm": 0.0969916582107544,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.101107597351074,
+ "step": 37
+ },
+ {
+ "epoch": 0.5310043668122271,
+ "grad_norm": 0.0959910973906517,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.998035430908203,
+ "step": 38
+ },
+ {
+ "epoch": 0.5449781659388646,
+ "grad_norm": 0.09558682143688202,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.89165210723877,
+ "step": 39
+ },
+ {
+ "epoch": 0.5589519650655022,
+ "grad_norm": 0.09313725680112839,
+ "learning_rate": 0.000234,
+ "loss": 8.806523323059082,
+ "step": 40
+ },
+ {
+ "epoch": 0.5729257641921397,
+ "grad_norm": 0.09075582772493362,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.71815299987793,
+ "step": 41
+ },
+ {
+ "epoch": 0.5868995633187772,
+ "grad_norm": 0.08912578970193863,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.617330551147461,
+ "step": 42
+ },
+ {
+ "epoch": 0.6008733624454149,
+ "grad_norm": 0.08745060116052628,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.511157989501953,
+ "step": 43
+ },
+ {
+ "epoch": 0.6148471615720524,
+ "grad_norm": 0.08254463970661163,
+ "learning_rate": 0.000258,
+ "loss": 8.458954811096191,
+ "step": 44
+ },
+ {
+ "epoch": 0.62882096069869,
+ "grad_norm": 0.0795406699180603,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.37498664855957,
+ "step": 45
+ },
+ {
+ "epoch": 0.6427947598253275,
+ "grad_norm": 0.07730695605278015,
+ "learning_rate": 0.00027,
+ "loss": 8.293156623840332,
+ "step": 46
+ },
+ {
+ "epoch": 0.6567685589519651,
+ "grad_norm": 0.07404499500989914,
+ "learning_rate": 0.000276,
+ "loss": 8.200754165649414,
+ "step": 47
+ },
+ {
+ "epoch": 0.6707423580786026,
+ "grad_norm": 0.07091354578733444,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.114692687988281,
+ "step": 48
+ },
+ {
+ "epoch": 0.6847161572052402,
+ "grad_norm": 0.06816772371530533,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.060348510742188,
+ "step": 49
+ },
+ {
+ "epoch": 0.6986899563318777,
+ "grad_norm": 0.0605427622795105,
+ "learning_rate": 0.000294,
+ "loss": 7.991006851196289,
+ "step": 50
+ },
+ {
+ "epoch": 0.7126637554585152,
+ "grad_norm": 0.05635255202651024,
+ "learning_rate": 0.0003,
+ "loss": 7.945850372314453,
+ "step": 51
+ },
+ {
+ "epoch": 0.7266375545851529,
+ "grad_norm": 0.05419522523880005,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.895726203918457,
+ "step": 52
+ },
+ {
+ "epoch": 0.7406113537117904,
+ "grad_norm": 0.06724901497364044,
+ "learning_rate": 0.000312,
+ "loss": 7.839101791381836,
+ "step": 53
+ },
+ {
+ "epoch": 0.754585152838428,
+ "grad_norm": 0.12858672440052032,
+ "learning_rate": 0.000318,
+ "loss": 7.840076446533203,
+ "step": 54
+ },
+ {
+ "epoch": 0.7685589519650655,
+ "grad_norm": 0.05087178573012352,
+ "learning_rate": 0.000324,
+ "loss": 7.77433967590332,
+ "step": 55
+ },
+ {
+ "epoch": 0.7825327510917031,
+ "grad_norm": 0.0458969883620739,
+ "learning_rate": 0.00033,
+ "loss": 7.747459411621094,
+ "step": 56
+ },
+ {
+ "epoch": 0.7965065502183406,
+ "grad_norm": 0.03214738890528679,
+ "learning_rate": 0.000336,
+ "loss": 7.735766410827637,
+ "step": 57
+ },
+ {
+ "epoch": 0.8104803493449781,
+ "grad_norm": 0.022700699046254158,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.716371059417725,
+ "step": 58
+ },
+ {
+ "epoch": 0.8244541484716157,
+ "grad_norm": 0.02415020391345024,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.700209140777588,
+ "step": 59
+ },
+ {
+ "epoch": 0.8384279475982532,
+ "grad_norm": 0.021143650636076927,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.687976360321045,
+ "step": 60
+ },
+ {
+ "epoch": 0.8524017467248908,
+ "grad_norm": 0.019051192328333855,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.640708923339844,
+ "step": 61
+ },
+ {
+ "epoch": 0.8663755458515284,
+ "grad_norm": 0.02110682614147663,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.6529130935668945,
+ "step": 62
+ },
+ {
+ "epoch": 0.880349344978166,
+ "grad_norm": 0.024010686203837395,
+ "learning_rate": 0.000372,
+ "loss": 7.645641326904297,
+ "step": 63
+ },
+ {
+ "epoch": 0.8943231441048035,
+ "grad_norm": 0.02591090090572834,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.626849174499512,
+ "step": 64
+ },
+ {
+ "epoch": 0.9082969432314411,
+ "grad_norm": 0.02841993235051632,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.633922576904297,
+ "step": 65
+ },
+ {
+ "epoch": 0.9222707423580786,
+ "grad_norm": 0.02565363608300686,
+ "learning_rate": 0.00039,
+ "loss": 7.6236772537231445,
+ "step": 66
+ },
+ {
+ "epoch": 0.9362445414847161,
+ "grad_norm": 0.020100994035601616,
+ "learning_rate": 0.000396,
+ "loss": 7.602252006530762,
+ "step": 67
+ },
+ {
+ "epoch": 0.9502183406113537,
+ "grad_norm": 0.017415935173630714,
+ "learning_rate": 0.000402,
+ "loss": 7.574195861816406,
+ "step": 68
+ },
+ {
+ "epoch": 0.9641921397379912,
+ "grad_norm": 0.01630476303398609,
+ "learning_rate": 0.000408,
+ "loss": 7.578503131866455,
+ "step": 69
+ },
+ {
+ "epoch": 0.9781659388646288,
+ "grad_norm": 0.015402277931571007,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.54685115814209,
+ "step": 70
+ },
+ {
+ "epoch": 0.9921397379912664,
+ "grad_norm": 0.01438985951244831,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.546932220458984,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.016883183270692825,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.555042266845703,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.549549579620361,
+ "eval_runtime": 54.3422,
+ "eval_samples_per_second": 44.937,
+ "eval_steps_per_second": 1.417,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139737991266375,
+ "grad_norm": 0.01215015072375536,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.534733295440674,
+ "step": 73
+ },
+ {
+ "epoch": 1.027947598253275,
+ "grad_norm": 0.01328246109187603,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.543649196624756,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419213973799126,
+ "grad_norm": 0.012859524227678776,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.50216817855835,
+ "step": 75
+ },
+ {
+ "epoch": 1.0558951965065502,
+ "grad_norm": 0.011157970875501633,
+ "learning_rate": 0.00045,
+ "loss": 7.508391857147217,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698689956331877,
+ "grad_norm": 0.012834188528358936,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.4759087562561035,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838427947598253,
+ "grad_norm": 0.013627874664962292,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.45142936706543,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978165938864628,
+ "grad_norm": 0.01641070283949375,
+ "learning_rate": 0.000468,
+ "loss": 7.492819786071777,
+ "step": 79
+ },
+ {
+ "epoch": 1.1117903930131003,
+ "grad_norm": 0.025136210024356842,
+ "learning_rate": 0.000474,
+ "loss": 7.474215507507324,
+ "step": 80
+ },
+ {
+ "epoch": 1.125764192139738,
+ "grad_norm": 0.03659580647945404,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.475737571716309,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397379912663754,
+ "grad_norm": 0.04370221868157387,
+ "learning_rate": 0.000486,
+ "loss": 7.453543663024902,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537117903930132,
+ "grad_norm": 0.02917138673365116,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.424599647521973,
+ "step": 83
+ },
+ {
+ "epoch": 1.1676855895196507,
+ "grad_norm": 0.015414979308843613,
+ "learning_rate": 0.000498,
+ "loss": 7.388550758361816,
+ "step": 84
+ },
+ {
+ "epoch": 1.1816593886462883,
+ "grad_norm": 0.029156062752008438,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.379591941833496,
+ "step": 85
+ },
+ {
+ "epoch": 1.1956331877729258,
+ "grad_norm": 0.014958011917769909,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.372748374938965,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096069868995634,
+ "grad_norm": 0.021887343376874924,
+ "learning_rate": 0.000516,
+ "loss": 7.3589630126953125,
+ "step": 87
+ },
+ {
+ "epoch": 1.223580786026201,
+ "grad_norm": 0.02962890826165676,
+ "learning_rate": 0.000522,
+ "loss": 7.373016357421875,
+ "step": 88
+ },
+ {
+ "epoch": 1.2375545851528384,
+ "grad_norm": 0.031032968312501907,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.3282928466796875,
+ "step": 89
+ },
+ {
+ "epoch": 1.251528384279476,
+ "grad_norm": 0.027690274640917778,
+ "learning_rate": 0.000534,
+ "loss": 7.320304870605469,
+ "step": 90
+ },
+ {
+ "epoch": 1.2655021834061135,
+ "grad_norm": 0.022552549839019775,
+ "learning_rate": 0.00054,
+ "loss": 7.3051300048828125,
+ "step": 91
+ },
+ {
+ "epoch": 1.279475982532751,
+ "grad_norm": 0.04130178689956665,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.284594535827637,
+ "step": 92
+ },
+ {
+ "epoch": 1.2934497816593886,
+ "grad_norm": 0.05043136328458786,
+ "learning_rate": 0.000552,
+ "loss": 7.286007881164551,
+ "step": 93
+ },
+ {
+ "epoch": 1.3074235807860262,
+ "grad_norm": 0.04574465751647949,
+ "learning_rate": 0.000558,
+ "loss": 7.22679328918457,
+ "step": 94
+ },
+ {
+ "epoch": 1.3213973799126637,
+ "grad_norm": 0.03277682512998581,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.229741096496582,
+ "step": 95
+ },
+ {
+ "epoch": 1.3353711790393012,
+ "grad_norm": 0.022675029933452606,
+ "learning_rate": 0.00057,
+ "loss": 7.241637706756592,
+ "step": 96
+ },
+ {
+ "epoch": 1.3493449781659388,
+ "grad_norm": 0.03889699652791023,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.193673133850098,
+ "step": 97
+ },
+ {
+ "epoch": 1.3633187772925766,
+ "grad_norm": 0.029434625059366226,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.1953840255737305,
+ "step": 98
+ },
+ {
+ "epoch": 1.3772925764192139,
+ "grad_norm": 0.02118326723575592,
+ "learning_rate": 0.000588,
+ "loss": 7.178635597229004,
+ "step": 99
+ },
+ {
+ "epoch": 1.3912663755458516,
+ "grad_norm": 0.02966528758406639,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.151487350463867,
+ "step": 100
+ },
+ {
+ "epoch": 1.405240174672489,
+ "grad_norm": 0.0450727716088295,
+ "learning_rate": 0.0006,
+ "loss": 7.144834995269775,
+ "step": 101
+ },
+ {
+ "epoch": 1.4192139737991267,
+ "grad_norm": 0.08898167312145233,
+ "learning_rate": 0.0006,
+ "loss": 7.180665969848633,
+ "step": 102
+ },
+ {
+ "epoch": 1.4331877729257643,
+ "grad_norm": 0.10679084807634354,
+ "learning_rate": 0.0006,
+ "loss": 7.233458518981934,
+ "step": 103
+ },
+ {
+ "epoch": 1.4471615720524018,
+ "grad_norm": 0.04746336117386818,
+ "learning_rate": 0.0006,
+ "loss": 7.167373180389404,
+ "step": 104
+ },
+ {
+ "epoch": 1.4611353711790394,
+ "grad_norm": 0.06380590051412582,
+ "learning_rate": 0.0006,
+ "loss": 7.189356803894043,
+ "step": 105
+ },
+ {
+ "epoch": 1.475109170305677,
+ "grad_norm": 0.039717014878988266,
+ "learning_rate": 0.0006,
+ "loss": 7.096653938293457,
+ "step": 106
+ },
+ {
+ "epoch": 1.4890829694323144,
+ "grad_norm": 0.06762711703777313,
+ "learning_rate": 0.0006,
+ "loss": 7.127993583679199,
+ "step": 107
+ },
+ {
+ "epoch": 1.503056768558952,
+ "grad_norm": 0.05134489759802818,
+ "learning_rate": 0.0006,
+ "loss": 7.072257995605469,
+ "step": 108
+ },
+ {
+ "epoch": 1.5170305676855895,
+ "grad_norm": 0.062314722687006,
+ "learning_rate": 0.0006,
+ "loss": 7.073700904846191,
+ "step": 109
+ },
+ {
+ "epoch": 1.531004366812227,
+ "grad_norm": 0.03607739135622978,
+ "learning_rate": 0.0006,
+ "loss": 7.051465034484863,
+ "step": 110
+ },
+ {
+ "epoch": 1.5449781659388646,
+ "grad_norm": 0.04546204209327698,
+ "learning_rate": 0.0006,
+ "loss": 7.049814224243164,
+ "step": 111
+ },
+ {
+ "epoch": 1.5589519650655022,
+ "grad_norm": 0.0319792665541172,
+ "learning_rate": 0.0006,
+ "loss": 7.0164875984191895,
+ "step": 112
+ },
+ {
+ "epoch": 1.5729257641921397,
+ "grad_norm": 0.04590746760368347,
+ "learning_rate": 0.0006,
+ "loss": 7.001565456390381,
+ "step": 113
+ },
+ {
+ "epoch": 1.5868995633187772,
+ "grad_norm": 0.031896382570266724,
+ "learning_rate": 0.0006,
+ "loss": 6.994606018066406,
+ "step": 114
+ },
+ {
+ "epoch": 1.600873362445415,
+ "grad_norm": 0.021410338580608368,
+ "learning_rate": 0.0006,
+ "loss": 6.947071075439453,
+ "step": 115
+ },
+ {
+ "epoch": 1.6148471615720523,
+ "grad_norm": 0.030063210055232048,
+ "learning_rate": 0.0006,
+ "loss": 6.979219913482666,
+ "step": 116
+ },
+ {
+ "epoch": 1.62882096069869,
+ "grad_norm": 0.02234027162194252,
+ "learning_rate": 0.0006,
+ "loss": 6.929020881652832,
+ "step": 117
+ },
+ {
+ "epoch": 1.6427947598253274,
+ "grad_norm": 0.025586063042283058,
+ "learning_rate": 0.0006,
+ "loss": 6.9200663566589355,
+ "step": 118
+ },
+ {
+ "epoch": 1.6567685589519652,
+ "grad_norm": 0.022098371759057045,
+ "learning_rate": 0.0006,
+ "loss": 6.899832248687744,
+ "step": 119
+ },
+ {
+ "epoch": 1.6707423580786025,
+ "grad_norm": 0.019238410517573357,
+ "learning_rate": 0.0006,
+ "loss": 6.8586015701293945,
+ "step": 120
+ },
+ {
+ "epoch": 1.6847161572052403,
+ "grad_norm": 0.024153294041752815,
+ "learning_rate": 0.0006,
+ "loss": 6.867973327636719,
+ "step": 121
+ },
+ {
+ "epoch": 1.6986899563318776,
+ "grad_norm": 0.01690024696290493,
+ "learning_rate": 0.0006,
+ "loss": 6.878490447998047,
+ "step": 122
+ },
+ {
+ "epoch": 1.7126637554585153,
+ "grad_norm": 0.02171619050204754,
+ "learning_rate": 0.0006,
+ "loss": 6.853621959686279,
+ "step": 123
+ },
+ {
+ "epoch": 1.726637554585153,
+ "grad_norm": 0.020535755902528763,
+ "learning_rate": 0.0006,
+ "loss": 6.852185249328613,
+ "step": 124
+ },
+ {
+ "epoch": 1.7406113537117904,
+ "grad_norm": 0.015457311645150185,
+ "learning_rate": 0.0006,
+ "loss": 6.826596260070801,
+ "step": 125
+ },
+ {
+ "epoch": 1.754585152838428,
+ "grad_norm": 0.017492085695266724,
+ "learning_rate": 0.0006,
+ "loss": 6.842765808105469,
+ "step": 126
+ },
+ {
+ "epoch": 1.7685589519650655,
+ "grad_norm": 0.014785612002015114,
+ "learning_rate": 0.0006,
+ "loss": 6.849224090576172,
+ "step": 127
+ },
+ {
+ "epoch": 1.782532751091703,
+ "grad_norm": 0.017512250691652298,
+ "learning_rate": 0.0006,
+ "loss": 6.824787139892578,
+ "step": 128
+ },
+ {
+ "epoch": 1.7965065502183406,
+ "grad_norm": 0.01895114593207836,
+ "learning_rate": 0.0006,
+ "loss": 6.801428318023682,
+ "step": 129
+ },
+ {
+ "epoch": 1.8104803493449781,
+ "grad_norm": 0.015728816390037537,
+ "learning_rate": 0.0006,
+ "loss": 6.801990985870361,
+ "step": 130
+ },
+ {
+ "epoch": 1.8244541484716157,
+ "grad_norm": 0.014321585185825825,
+ "learning_rate": 0.0006,
+ "loss": 6.793122291564941,
+ "step": 131
+ },
+ {
+ "epoch": 1.8384279475982532,
+ "grad_norm": 0.016692014411091805,
+ "learning_rate": 0.0006,
+ "loss": 6.74687385559082,
+ "step": 132
+ },
+ {
+ "epoch": 1.8524017467248908,
+ "grad_norm": 0.016697920858860016,
+ "learning_rate": 0.0006,
+ "loss": 6.75140380859375,
+ "step": 133
+ },
+ {
+ "epoch": 1.8663755458515285,
+ "grad_norm": 0.014954701997339725,
+ "learning_rate": 0.0006,
+ "loss": 6.746084213256836,
+ "step": 134
+ },
+ {
+ "epoch": 1.8803493449781659,
+ "grad_norm": 0.013010316528379917,
+ "learning_rate": 0.0006,
+ "loss": 6.725405693054199,
+ "step": 135
+ },
+ {
+ "epoch": 1.8943231441048036,
+ "grad_norm": 0.011892660520970821,
+ "learning_rate": 0.0006,
+ "loss": 6.718758583068848,
+ "step": 136
+ },
+ {
+ "epoch": 1.908296943231441,
+ "grad_norm": 0.012127497233450413,
+ "learning_rate": 0.0006,
+ "loss": 6.708139419555664,
+ "step": 137
+ },
+ {
+ "epoch": 1.9222707423580787,
+ "grad_norm": 0.015417213551700115,
+ "learning_rate": 0.0006,
+ "loss": 6.705748558044434,
+ "step": 138
+ },
+ {
+ "epoch": 1.936244541484716,
+ "grad_norm": 0.03063729591667652,
+ "learning_rate": 0.0006,
+ "loss": 6.691249847412109,
+ "step": 139
+ },
+ {
+ "epoch": 1.9502183406113538,
+ "grad_norm": 0.07376791536808014,
+ "learning_rate": 0.0006,
+ "loss": 6.71767520904541,
+ "step": 140
+ },
+ {
+ "epoch": 1.9641921397379911,
+ "grad_norm": 0.14157423377037048,
+ "learning_rate": 0.0006,
+ "loss": 6.787544250488281,
+ "step": 141
+ },
+ {
+ "epoch": 1.9781659388646289,
+ "grad_norm": 0.09186933934688568,
+ "learning_rate": 0.0006,
+ "loss": 6.73362398147583,
+ "step": 142
+ },
+ {
+ "epoch": 1.9921397379912664,
+ "grad_norm": 0.06612848490476608,
+ "learning_rate": 0.0006,
+ "loss": 6.719516754150391,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.048072297126054764,
+ "learning_rate": 0.0006,
+ "loss": 6.666120529174805,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 6.7162394523620605,
+ "eval_runtime": 50.5907,
+ "eval_samples_per_second": 48.27,
+ "eval_steps_per_second": 1.522,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139737991266378,
+ "grad_norm": 0.03777749463915825,
+ "learning_rate": 0.0006,
+ "loss": 6.686484336853027,
+ "step": 145
+ },
+ {
+ "epoch": 2.027947598253275,
+ "grad_norm": 0.04378646984696388,
+ "learning_rate": 0.0006,
+ "loss": 6.679071426391602,
+ "step": 146
+ },
+ {
+ "epoch": 2.041921397379913,
+ "grad_norm": 0.027715124189853668,
+ "learning_rate": 0.0006,
+ "loss": 6.6776323318481445,
+ "step": 147
+ },
+ {
+ "epoch": 2.05589519650655,
+ "grad_norm": 0.03411925211548805,
+ "learning_rate": 0.0006,
+ "loss": 6.643917083740234,
+ "step": 148
+ },
+ {
+ "epoch": 2.069868995633188,
+ "grad_norm": 0.034444212913513184,
+ "learning_rate": 0.0006,
+ "loss": 6.67141056060791,
+ "step": 149
+ },
+ {
+ "epoch": 2.0838427947598253,
+ "grad_norm": 0.0387650802731514,
+ "learning_rate": 0.0006,
+ "loss": 6.65234375,
+ "step": 150
+ },
+ {
+ "epoch": 2.097816593886463,
+ "grad_norm": 0.03921861574053764,
+ "learning_rate": 0.0006,
+ "loss": 6.624712944030762,
+ "step": 151
+ },
+ {
+ "epoch": 2.1117903930131003,
+ "grad_norm": 0.02531580813229084,
+ "learning_rate": 0.0006,
+ "loss": 6.617608547210693,
+ "step": 152
+ },
+ {
+ "epoch": 2.125764192139738,
+ "grad_norm": 0.03220974653959274,
+ "learning_rate": 0.0006,
+ "loss": 6.587964057922363,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397379912663754,
+ "grad_norm": 0.03923291340470314,
+ "learning_rate": 0.0006,
+ "loss": 6.588845252990723,
+ "step": 154
+ },
+ {
+ "epoch": 2.153711790393013,
+ "grad_norm": 0.028337281197309494,
+ "learning_rate": 0.0006,
+ "loss": 6.5807952880859375,
+ "step": 155
+ },
+ {
+ "epoch": 2.1676855895196505,
+ "grad_norm": 0.01873156800866127,
+ "learning_rate": 0.0006,
+ "loss": 6.560453414916992,
+ "step": 156
+ },
+ {
+ "epoch": 2.1816593886462883,
+ "grad_norm": 0.027509493753314018,
+ "learning_rate": 0.0006,
+ "loss": 6.5615363121032715,
+ "step": 157
+ },
+ {
+ "epoch": 2.1956331877729256,
+ "grad_norm": 0.025428347289562225,
+ "learning_rate": 0.0006,
+ "loss": 6.5283966064453125,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096069868995634,
+ "grad_norm": 0.02118629403412342,
+ "learning_rate": 0.0006,
+ "loss": 6.526224136352539,
+ "step": 159
+ },
+ {
+ "epoch": 2.2235807860262007,
+ "grad_norm": 0.03233652561903,
+ "learning_rate": 0.0006,
+ "loss": 6.536041259765625,
+ "step": 160
+ },
+ {
+ "epoch": 2.2375545851528384,
+ "grad_norm": 0.04605546221137047,
+ "learning_rate": 0.0006,
+ "loss": 6.537662029266357,
+ "step": 161
+ },
+ {
+ "epoch": 2.251528384279476,
+ "grad_norm": 0.05192062631249428,
+ "learning_rate": 0.0006,
+ "loss": 6.551901817321777,
+ "step": 162
+ },
+ {
+ "epoch": 2.2655021834061135,
+ "grad_norm": 0.042231615632772446,
+ "learning_rate": 0.0006,
+ "loss": 6.511076927185059,
+ "step": 163
+ },
+ {
+ "epoch": 2.279475982532751,
+ "grad_norm": 0.04085887596011162,
+ "learning_rate": 0.0006,
+ "loss": 6.503472328186035,
+ "step": 164
+ },
+ {
+ "epoch": 2.2934497816593886,
+ "grad_norm": 0.031182587146759033,
+ "learning_rate": 0.0006,
+ "loss": 6.504403591156006,
+ "step": 165
+ },
+ {
+ "epoch": 2.3074235807860264,
+ "grad_norm": 0.032555561512708664,
+ "learning_rate": 0.0006,
+ "loss": 6.4552764892578125,
+ "step": 166
+ },
+ {
+ "epoch": 2.3213973799126637,
+ "grad_norm": 0.04939635097980499,
+ "learning_rate": 0.0006,
+ "loss": 6.495351791381836,
+ "step": 167
+ },
+ {
+ "epoch": 2.3353711790393015,
+ "grad_norm": 0.037503793835639954,
+ "learning_rate": 0.0006,
+ "loss": 6.4742560386657715,
+ "step": 168
+ },
+ {
+ "epoch": 2.349344978165939,
+ "grad_norm": 0.02366613782942295,
+ "learning_rate": 0.0006,
+ "loss": 6.478525161743164,
+ "step": 169
+ },
+ {
+ "epoch": 2.3633187772925766,
+ "grad_norm": 0.022314894944429398,
+ "learning_rate": 0.0006,
+ "loss": 6.414134979248047,
+ "step": 170
+ },
+ {
+ "epoch": 2.377292576419214,
+ "grad_norm": 0.030494702979922295,
+ "learning_rate": 0.0006,
+ "loss": 6.444867134094238,
+ "step": 171
+ },
+ {
+ "epoch": 2.3912663755458516,
+ "grad_norm": 0.04064486175775528,
+ "learning_rate": 0.0006,
+ "loss": 6.417036056518555,
+ "step": 172
+ },
+ {
+ "epoch": 2.405240174672489,
+ "grad_norm": 0.03061651438474655,
+ "learning_rate": 0.0006,
+ "loss": 6.423735618591309,
+ "step": 173
+ },
+ {
+ "epoch": 2.4192139737991267,
+ "grad_norm": 0.02046056278049946,
+ "learning_rate": 0.0006,
+ "loss": 6.419736862182617,
+ "step": 174
+ },
+ {
+ "epoch": 2.433187772925764,
+ "grad_norm": 0.02530163712799549,
+ "learning_rate": 0.0006,
+ "loss": 6.399930953979492,
+ "step": 175
+ },
+ {
+ "epoch": 2.447161572052402,
+ "grad_norm": 0.03588842228055,
+ "learning_rate": 0.0006,
+ "loss": 6.418618202209473,
+ "step": 176
+ },
+ {
+ "epoch": 2.461135371179039,
+ "grad_norm": 0.04048234224319458,
+ "learning_rate": 0.0006,
+ "loss": 6.390285491943359,
+ "step": 177
+ },
+ {
+ "epoch": 2.475109170305677,
+ "grad_norm": 0.039080191403627396,
+ "learning_rate": 0.0006,
+ "loss": 6.3688530921936035,
+ "step": 178
+ },
+ {
+ "epoch": 2.489082969432314,
+ "grad_norm": 0.029000122100114822,
+ "learning_rate": 0.0006,
+ "loss": 6.369181156158447,
+ "step": 179
+ },
+ {
+ "epoch": 2.503056768558952,
+ "grad_norm": 0.01609761081635952,
+ "learning_rate": 0.0006,
+ "loss": 6.359917640686035,
+ "step": 180
+ },
+ {
+ "epoch": 2.5170305676855893,
+ "grad_norm": 0.02305005118250847,
+ "learning_rate": 0.0006,
+ "loss": 6.347358226776123,
+ "step": 181
+ },
+ {
+ "epoch": 2.531004366812227,
+ "grad_norm": 0.03316781297326088,
+ "learning_rate": 0.0006,
+ "loss": 6.36626672744751,
+ "step": 182
+ },
+ {
+ "epoch": 2.544978165938865,
+ "grad_norm": 0.05111207440495491,
+ "learning_rate": 0.0006,
+ "loss": 6.380453109741211,
+ "step": 183
+ },
+ {
+ "epoch": 2.558951965065502,
+ "grad_norm": 0.062241602689027786,
+ "learning_rate": 0.0006,
+ "loss": 6.353237152099609,
+ "step": 184
+ },
+ {
+ "epoch": 2.5729257641921395,
+ "grad_norm": 0.060149725526571274,
+ "learning_rate": 0.0006,
+ "loss": 6.358938694000244,
+ "step": 185
+ },
+ {
+ "epoch": 2.5868995633187772,
+ "grad_norm": 0.04228121414780617,
+ "learning_rate": 0.0006,
+ "loss": 6.310116767883301,
+ "step": 186
+ },
+ {
+ "epoch": 2.600873362445415,
+ "grad_norm": 0.019458215683698654,
+ "learning_rate": 0.0006,
+ "loss": 6.284702777862549,
+ "step": 187
+ },
+ {
+ "epoch": 2.6148471615720523,
+ "grad_norm": 0.0342358835041523,
+ "learning_rate": 0.0006,
+ "loss": 6.316659927368164,
+ "step": 188
+ },
+ {
+ "epoch": 2.62882096069869,
+ "grad_norm": 0.04139583557844162,
+ "learning_rate": 0.0006,
+ "loss": 6.301124572753906,
+ "step": 189
+ },
+ {
+ "epoch": 2.6427947598253274,
+ "grad_norm": 0.028264787048101425,
+ "learning_rate": 0.0006,
+ "loss": 6.298510551452637,
+ "step": 190
+ },
+ {
+ "epoch": 2.656768558951965,
+ "grad_norm": 0.023622136563062668,
+ "learning_rate": 0.0006,
+ "loss": 6.2571210861206055,
+ "step": 191
+ },
+ {
+ "epoch": 2.6707423580786025,
+ "grad_norm": 0.039508845657110214,
+ "learning_rate": 0.0006,
+ "loss": 6.267218589782715,
+ "step": 192
+ },
+ {
+ "epoch": 2.6847161572052403,
+ "grad_norm": 0.043358899652957916,
+ "learning_rate": 0.0006,
+ "loss": 6.279658794403076,
+ "step": 193
+ },
+ {
+ "epoch": 2.6986899563318776,
+ "grad_norm": 0.04134640842676163,
+ "learning_rate": 0.0006,
+ "loss": 6.277159214019775,
+ "step": 194
+ },
+ {
+ "epoch": 2.7126637554585153,
+ "grad_norm": 0.05406952276825905,
+ "learning_rate": 0.0006,
+ "loss": 6.295559883117676,
+ "step": 195
+ },
+ {
+ "epoch": 2.726637554585153,
+ "grad_norm": 0.04557774215936661,
+ "learning_rate": 0.0006,
+ "loss": 6.260174751281738,
+ "step": 196
+ },
+ {
+ "epoch": 2.7406113537117904,
+ "grad_norm": 0.04542337730526924,
+ "learning_rate": 0.0006,
+ "loss": 6.244534492492676,
+ "step": 197
+ },
+ {
+ "epoch": 2.7545851528384278,
+ "grad_norm": 0.06924881041049957,
+ "learning_rate": 0.0006,
+ "loss": 6.2060723304748535,
+ "step": 198
+ },
+ {
+ "epoch": 2.7685589519650655,
+ "grad_norm": 0.06679725646972656,
+ "learning_rate": 0.0006,
+ "loss": 6.259133815765381,
+ "step": 199
+ },
+ {
+ "epoch": 2.7825327510917033,
+ "grad_norm": 0.05039471387863159,
+ "learning_rate": 0.0006,
+ "loss": 6.239280700683594,
+ "step": 200
+ },
+ {
+ "epoch": 2.7965065502183406,
+ "grad_norm": 0.05935394763946533,
+ "learning_rate": 0.0006,
+ "loss": 6.242481231689453,
+ "step": 201
+ },
+ {
+ "epoch": 2.810480349344978,
+ "grad_norm": 0.0486418716609478,
+ "learning_rate": 0.0006,
+ "loss": 6.239593505859375,
+ "step": 202
+ },
+ {
+ "epoch": 2.8244541484716157,
+ "grad_norm": 0.05010748282074928,
+ "learning_rate": 0.0006,
+ "loss": 6.2328948974609375,
+ "step": 203
+ },
+ {
+ "epoch": 2.8384279475982535,
+ "grad_norm": 0.03444438800215721,
+ "learning_rate": 0.0006,
+ "loss": 6.200089454650879,
+ "step": 204
+ },
+ {
+ "epoch": 2.8524017467248908,
+ "grad_norm": 0.043253373354673386,
+ "learning_rate": 0.0006,
+ "loss": 6.2089433670043945,
+ "step": 205
+ },
+ {
+ "epoch": 2.8663755458515285,
+ "grad_norm": 0.047505684196949005,
+ "learning_rate": 0.0006,
+ "loss": 6.220322608947754,
+ "step": 206
+ },
+ {
+ "epoch": 2.880349344978166,
+ "grad_norm": 0.04393792524933815,
+ "learning_rate": 0.0006,
+ "loss": 6.178770542144775,
+ "step": 207
+ },
+ {
+ "epoch": 2.8943231441048036,
+ "grad_norm": 0.04025835916399956,
+ "learning_rate": 0.0006,
+ "loss": 6.160248756408691,
+ "step": 208
+ },
+ {
+ "epoch": 2.908296943231441,
+ "grad_norm": 0.03877986595034599,
+ "learning_rate": 0.0006,
+ "loss": 6.164917945861816,
+ "step": 209
+ },
+ {
+ "epoch": 2.9222707423580787,
+ "grad_norm": 0.03666771203279495,
+ "learning_rate": 0.0006,
+ "loss": 6.172199249267578,
+ "step": 210
+ },
+ {
+ "epoch": 2.936244541484716,
+ "grad_norm": 0.028036516159772873,
+ "learning_rate": 0.0006,
+ "loss": 6.179510116577148,
+ "step": 211
+ },
+ {
+ "epoch": 2.950218340611354,
+ "grad_norm": 0.021492617204785347,
+ "learning_rate": 0.0006,
+ "loss": 6.1275153160095215,
+ "step": 212
+ },
+ {
+ "epoch": 2.964192139737991,
+ "grad_norm": 0.026816558092832565,
+ "learning_rate": 0.0006,
+ "loss": 6.131775856018066,
+ "step": 213
+ },
+ {
+ "epoch": 2.978165938864629,
+ "grad_norm": 0.03757898136973381,
+ "learning_rate": 0.0006,
+ "loss": 6.135777473449707,
+ "step": 214
+ },
+ {
+ "epoch": 2.992139737991266,
+ "grad_norm": 0.06036437302827835,
+ "learning_rate": 0.0006,
+ "loss": 6.146076202392578,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.09846952557563782,
+ "learning_rate": 0.0006,
+ "loss": 6.218435287475586,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.23890495300293,
+ "eval_runtime": 50.6822,
+ "eval_samples_per_second": 48.183,
+ "eval_steps_per_second": 1.519,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139737991266378,
+ "grad_norm": 0.10463741421699524,
+ "learning_rate": 0.0006,
+ "loss": 6.197120666503906,
+ "step": 217
+ },
+ {
+ "epoch": 3.027947598253275,
+ "grad_norm": 0.10212419927120209,
+ "learning_rate": 0.0006,
+ "loss": 6.178340911865234,
+ "step": 218
+ },
+ {
+ "epoch": 3.041921397379913,
+ "grad_norm": 0.08038751780986786,
+ "learning_rate": 0.0006,
+ "loss": 6.217406749725342,
+ "step": 219
+ },
+ {
+ "epoch": 3.05589519650655,
+ "grad_norm": 0.04787508398294449,
+ "learning_rate": 0.0006,
+ "loss": 6.155381679534912,
+ "step": 220
+ },
+ {
+ "epoch": 3.069868995633188,
+ "grad_norm": 0.06880322843790054,
+ "learning_rate": 0.0006,
+ "loss": 6.121614933013916,
+ "step": 221
+ },
+ {
+ "epoch": 3.0838427947598253,
+ "grad_norm": 0.03749438002705574,
+ "learning_rate": 0.0006,
+ "loss": 6.120484352111816,
+ "step": 222
+ },
+ {
+ "epoch": 3.097816593886463,
+ "grad_norm": 0.03875046223402023,
+ "learning_rate": 0.0006,
+ "loss": 6.12362003326416,
+ "step": 223
+ },
+ {
+ "epoch": 3.1117903930131003,
+ "grad_norm": 0.030663209035992622,
+ "learning_rate": 0.0006,
+ "loss": 6.1111063957214355,
+ "step": 224
+ },
+ {
+ "epoch": 3.125764192139738,
+ "grad_norm": 0.029520904645323753,
+ "learning_rate": 0.0006,
+ "loss": 6.130336761474609,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397379912663754,
+ "grad_norm": 0.02854953519999981,
+ "learning_rate": 0.0006,
+ "loss": 6.086193084716797,
+ "step": 226
+ },
+ {
+ "epoch": 3.153711790393013,
+ "grad_norm": 0.027147898450493813,
+ "learning_rate": 0.0006,
+ "loss": 6.066827774047852,
+ "step": 227
+ },
+ {
+ "epoch": 3.1676855895196505,
+ "grad_norm": 0.025577887892723083,
+ "learning_rate": 0.0006,
+ "loss": 6.070775032043457,
+ "step": 228
+ },
+ {
+ "epoch": 3.1816593886462883,
+ "grad_norm": 0.026318276301026344,
+ "learning_rate": 0.0006,
+ "loss": 6.064469814300537,
+ "step": 229
+ },
+ {
+ "epoch": 3.1956331877729256,
+ "grad_norm": 0.02595221996307373,
+ "learning_rate": 0.0006,
+ "loss": 6.066489219665527,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096069868995634,
+ "grad_norm": 0.0248890221118927,
+ "learning_rate": 0.0006,
+ "loss": 6.032470703125,
+ "step": 231
+ },
+ {
+ "epoch": 3.2235807860262007,
+ "grad_norm": 0.017041699960827827,
+ "learning_rate": 0.0006,
+ "loss": 6.056160926818848,
+ "step": 232
+ },
+ {
+ "epoch": 3.2375545851528384,
+ "grad_norm": 0.020971592515707016,
+ "learning_rate": 0.0006,
+ "loss": 6.024506568908691,
+ "step": 233
+ },
+ {
+ "epoch": 3.251528384279476,
+ "grad_norm": 0.01897028088569641,
+ "learning_rate": 0.0006,
+ "loss": 6.035656929016113,
+ "step": 234
+ },
+ {
+ "epoch": 3.2655021834061135,
+ "grad_norm": 0.027151981368660927,
+ "learning_rate": 0.0006,
+ "loss": 6.026547431945801,
+ "step": 235
+ },
+ {
+ "epoch": 3.279475982532751,
+ "grad_norm": 0.029453502967953682,
+ "learning_rate": 0.0006,
+ "loss": 5.981723785400391,
+ "step": 236
+ },
+ {
+ "epoch": 3.2934497816593886,
+ "grad_norm": 0.027771083638072014,
+ "learning_rate": 0.0006,
+ "loss": 6.019796371459961,
+ "step": 237
+ },
+ {
+ "epoch": 3.3074235807860264,
+ "grad_norm": 0.02605084516108036,
+ "learning_rate": 0.0006,
+ "loss": 5.984506607055664,
+ "step": 238
+ },
+ {
+ "epoch": 3.3213973799126637,
+ "grad_norm": 0.022903922945261,
+ "learning_rate": 0.0006,
+ "loss": 6.023873805999756,
+ "step": 239
+ },
+ {
+ "epoch": 3.3353711790393015,
+ "grad_norm": 0.01976492442190647,
+ "learning_rate": 0.0006,
+ "loss": 6.009030342102051,
+ "step": 240
+ },
+ {
+ "epoch": 3.349344978165939,
+ "grad_norm": 0.018872970715165138,
+ "learning_rate": 0.0006,
+ "loss": 5.970742702484131,
+ "step": 241
+ },
+ {
+ "epoch": 3.3633187772925766,
+ "grad_norm": 0.017447829246520996,
+ "learning_rate": 0.0006,
+ "loss": 5.968851089477539,
+ "step": 242
+ },
+ {
+ "epoch": 3.377292576419214,
+ "grad_norm": 0.025419825688004494,
+ "learning_rate": 0.0006,
+ "loss": 5.956470489501953,
+ "step": 243
+ },
+ {
+ "epoch": 3.3912663755458516,
+ "grad_norm": 0.03654123470187187,
+ "learning_rate": 0.0006,
+ "loss": 5.94770622253418,
+ "step": 244
+ },
+ {
+ "epoch": 3.405240174672489,
+ "grad_norm": 0.05607098713517189,
+ "learning_rate": 0.0006,
+ "loss": 6.008593559265137,
+ "step": 245
+ },
+ {
+ "epoch": 3.4192139737991267,
+ "grad_norm": 0.07973720878362656,
+ "learning_rate": 0.0006,
+ "loss": 5.9966888427734375,
+ "step": 246
+ },
+ {
+ "epoch": 3.433187772925764,
+ "grad_norm": 0.10906023532152176,
+ "learning_rate": 0.0006,
+ "loss": 6.054642200469971,
+ "step": 247
+ },
+ {
+ "epoch": 3.447161572052402,
+ "grad_norm": 0.09792660176753998,
+ "learning_rate": 0.0006,
+ "loss": 6.067026138305664,
+ "step": 248
+ },
+ {
+ "epoch": 3.461135371179039,
+ "grad_norm": 0.07395700365304947,
+ "learning_rate": 0.0006,
+ "loss": 6.01310920715332,
+ "step": 249
+ },
+ {
+ "epoch": 3.475109170305677,
+ "grad_norm": 0.10172071307897568,
+ "learning_rate": 0.0006,
+ "loss": 6.048509120941162,
+ "step": 250
+ },
+ {
+ "epoch": 3.489082969432314,
+ "grad_norm": 0.0717678815126419,
+ "learning_rate": 0.0006,
+ "loss": 6.055008888244629,
+ "step": 251
+ },
+ {
+ "epoch": 3.503056768558952,
+ "grad_norm": 0.06398089975118637,
+ "learning_rate": 0.0006,
+ "loss": 5.9677276611328125,
+ "step": 252
+ },
+ {
+ "epoch": 3.5170305676855893,
+ "grad_norm": 0.0643860474228859,
+ "learning_rate": 0.0006,
+ "loss": 5.957507133483887,
+ "step": 253
+ },
+ {
+ "epoch": 3.531004366812227,
+ "grad_norm": 0.03472325950860977,
+ "learning_rate": 0.0006,
+ "loss": 5.952362060546875,
+ "step": 254
+ },
+ {
+ "epoch": 3.544978165938865,
+ "grad_norm": 0.03918307647109032,
+ "learning_rate": 0.0006,
+ "loss": 5.957100868225098,
+ "step": 255
+ },
+ {
+ "epoch": 3.558951965065502,
+ "grad_norm": 0.03519073501229286,
+ "learning_rate": 0.0006,
+ "loss": 5.97830867767334,
+ "step": 256
+ },
+ {
+ "epoch": 3.5729257641921395,
+ "grad_norm": 0.03435497358441353,
+ "learning_rate": 0.0006,
+ "loss": 5.93912410736084,
+ "step": 257
+ },
+ {
+ "epoch": 3.5868995633187772,
+ "grad_norm": 0.026064487174153328,
+ "learning_rate": 0.0006,
+ "loss": 5.91353702545166,
+ "step": 258
+ },
+ {
+ "epoch": 3.600873362445415,
+ "grad_norm": 0.03159152343869209,
+ "learning_rate": 0.0006,
+ "loss": 5.913291931152344,
+ "step": 259
+ },
+ {
+ "epoch": 3.6148471615720523,
+ "grad_norm": 0.02195592038333416,
+ "learning_rate": 0.0006,
+ "loss": 5.906322479248047,
+ "step": 260
+ },
+ {
+ "epoch": 3.62882096069869,
+ "grad_norm": 0.020358966663479805,
+ "learning_rate": 0.0006,
+ "loss": 5.891860008239746,
+ "step": 261
+ },
+ {
+ "epoch": 3.6427947598253274,
+ "grad_norm": 0.01964488998055458,
+ "learning_rate": 0.0006,
+ "loss": 5.881132125854492,
+ "step": 262
+ },
+ {
+ "epoch": 3.656768558951965,
+ "grad_norm": 0.022447235882282257,
+ "learning_rate": 0.0006,
+ "loss": 5.8846940994262695,
+ "step": 263
+ },
+ {
+ "epoch": 3.6707423580786025,
+ "grad_norm": 0.018359875306487083,
+ "learning_rate": 0.0006,
+ "loss": 5.8861188888549805,
+ "step": 264
+ },
+ {
+ "epoch": 3.6847161572052403,
+ "grad_norm": 0.018481185659766197,
+ "learning_rate": 0.0006,
+ "loss": 5.874635696411133,
+ "step": 265
+ },
+ {
+ "epoch": 3.6986899563318776,
+ "grad_norm": 0.016943952068686485,
+ "learning_rate": 0.0006,
+ "loss": 5.8380126953125,
+ "step": 266
+ },
+ {
+ "epoch": 3.7126637554585153,
+ "grad_norm": 0.016593772917985916,
+ "learning_rate": 0.0006,
+ "loss": 5.855746269226074,
+ "step": 267
+ },
+ {
+ "epoch": 3.726637554585153,
+ "grad_norm": 0.018204636871814728,
+ "learning_rate": 0.0006,
+ "loss": 5.873927116394043,
+ "step": 268
+ },
+ {
+ "epoch": 3.7406113537117904,
+ "grad_norm": 0.017277248203754425,
+ "learning_rate": 0.0006,
+ "loss": 5.855231285095215,
+ "step": 269
+ },
+ {
+ "epoch": 3.7545851528384278,
+ "grad_norm": 0.01717568188905716,
+ "learning_rate": 0.0006,
+ "loss": 5.847787857055664,
+ "step": 270
+ },
+ {
+ "epoch": 3.7685589519650655,
+ "grad_norm": 0.01537331473082304,
+ "learning_rate": 0.0006,
+ "loss": 5.852605819702148,
+ "step": 271
+ },
+ {
+ "epoch": 3.7825327510917033,
+ "grad_norm": 0.01504798699170351,
+ "learning_rate": 0.0006,
+ "loss": 5.825901031494141,
+ "step": 272
+ },
+ {
+ "epoch": 3.7965065502183406,
+ "grad_norm": 0.023221664130687714,
+ "learning_rate": 0.0006,
+ "loss": 5.812404155731201,
+ "step": 273
+ },
+ {
+ "epoch": 3.810480349344978,
+ "grad_norm": 0.0397733673453331,
+ "learning_rate": 0.0006,
+ "loss": 5.804308891296387,
+ "step": 274
+ },
+ {
+ "epoch": 3.8244541484716157,
+ "grad_norm": 0.05233687534928322,
+ "learning_rate": 0.0006,
+ "loss": 5.788049697875977,
+ "step": 275
+ },
+ {
+ "epoch": 3.8384279475982535,
+ "grad_norm": 0.05563921108841896,
+ "learning_rate": 0.0006,
+ "loss": 5.811939239501953,
+ "step": 276
+ },
+ {
+ "epoch": 3.8524017467248908,
+ "grad_norm": 0.0501336008310318,
+ "learning_rate": 0.0006,
+ "loss": 5.810712814331055,
+ "step": 277
+ },
+ {
+ "epoch": 3.8663755458515285,
+ "grad_norm": 0.07601612061262131,
+ "learning_rate": 0.0006,
+ "loss": 5.846009254455566,
+ "step": 278
+ },
+ {
+ "epoch": 3.880349344978166,
+ "grad_norm": 0.07927536964416504,
+ "learning_rate": 0.0006,
+ "loss": 5.846945285797119,
+ "step": 279
+ },
+ {
+ "epoch": 3.8943231441048036,
+ "grad_norm": 0.05778975039720535,
+ "learning_rate": 0.0006,
+ "loss": 5.8009209632873535,
+ "step": 280
+ },
+ {
+ "epoch": 3.908296943231441,
+ "grad_norm": 0.06650745123624802,
+ "learning_rate": 0.0006,
+ "loss": 5.825387001037598,
+ "step": 281
+ },
+ {
+ "epoch": 3.9222707423580787,
+ "grad_norm": 0.05610830709338188,
+ "learning_rate": 0.0006,
+ "loss": 5.854207992553711,
+ "step": 282
+ },
+ {
+ "epoch": 3.936244541484716,
+ "grad_norm": 0.03054177202284336,
+ "learning_rate": 0.0006,
+ "loss": 5.8229875564575195,
+ "step": 283
+ },
+ {
+ "epoch": 3.950218340611354,
+ "grad_norm": 0.03929241746664047,
+ "learning_rate": 0.0006,
+ "loss": 5.8026041984558105,
+ "step": 284
+ },
+ {
+ "epoch": 3.964192139737991,
+ "grad_norm": 0.03007139079272747,
+ "learning_rate": 0.0006,
+ "loss": 5.7833709716796875,
+ "step": 285
+ },
+ {
+ "epoch": 3.978165938864629,
+ "grad_norm": 0.03231097757816315,
+ "learning_rate": 0.0006,
+ "loss": 5.7852091789245605,
+ "step": 286
+ },
+ {
+ "epoch": 3.992139737991266,
+ "grad_norm": 0.02939445711672306,
+ "learning_rate": 0.0006,
+ "loss": 5.753163814544678,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.02993260696530342,
+ "learning_rate": 0.0006,
+ "loss": 5.762526512145996,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 5.799882888793945,
+ "eval_runtime": 50.8936,
+ "eval_samples_per_second": 47.982,
+ "eval_steps_per_second": 1.513,
+ "step": 288
+ },
+ {
+ "epoch": 4.013973799126638,
+ "grad_norm": 0.025836583226919174,
+ "learning_rate": 0.0006,
+ "loss": 5.74060583114624,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279475982532755,
+ "grad_norm": 0.02240375429391861,
+ "learning_rate": 0.0006,
+ "loss": 5.744357109069824,
+ "step": 290
+ },
+ {
+ "epoch": 4.041921397379912,
+ "grad_norm": 0.019645314663648605,
+ "learning_rate": 0.0006,
+ "loss": 5.714840412139893,
+ "step": 291
+ },
+ {
+ "epoch": 4.05589519650655,
+ "grad_norm": 0.01903143897652626,
+ "learning_rate": 0.0006,
+ "loss": 5.749794006347656,
+ "step": 292
+ },
+ {
+ "epoch": 4.069868995633188,
+ "grad_norm": 0.020970258861780167,
+ "learning_rate": 0.0006,
+ "loss": 5.684886932373047,
+ "step": 293
+ },
+ {
+ "epoch": 4.083842794759826,
+ "grad_norm": 0.022254586219787598,
+ "learning_rate": 0.0006,
+ "loss": 5.690360069274902,
+ "step": 294
+ },
+ {
+ "epoch": 4.097816593886463,
+ "grad_norm": 0.024622811004519463,
+ "learning_rate": 0.0006,
+ "loss": 5.7078962326049805,
+ "step": 295
+ },
+ {
+ "epoch": 4.1117903930131,
+ "grad_norm": 0.023592552170157433,
+ "learning_rate": 0.0006,
+ "loss": 5.7039971351623535,
+ "step": 296
+ },
+ {
+ "epoch": 4.125764192139738,
+ "grad_norm": 0.02667587623000145,
+ "learning_rate": 0.0006,
+ "loss": 5.677852630615234,
+ "step": 297
+ },
+ {
+ "epoch": 4.139737991266376,
+ "grad_norm": 0.03330948203802109,
+ "learning_rate": 0.0006,
+ "loss": 5.688773155212402,
+ "step": 298
+ },
+ {
+ "epoch": 4.153711790393013,
+ "grad_norm": 0.045157793909311295,
+ "learning_rate": 0.0006,
+ "loss": 5.675937652587891,
+ "step": 299
+ },
+ {
+ "epoch": 4.1676855895196505,
+ "grad_norm": 0.07034408301115036,
+ "learning_rate": 0.0006,
+ "loss": 5.687074661254883,
+ "step": 300
+ },
+ {
+ "epoch": 4.181659388646288,
+ "grad_norm": 0.10193091630935669,
+ "learning_rate": 0.0006,
+ "loss": 5.748222351074219,
+ "step": 301
+ },
+ {
+ "epoch": 4.195633187772926,
+ "grad_norm": 0.09606931358575821,
+ "learning_rate": 0.0006,
+ "loss": 5.767232894897461,
+ "step": 302
+ },
+ {
+ "epoch": 4.209606986899563,
+ "grad_norm": 0.05994758382439613,
+ "learning_rate": 0.0006,
+ "loss": 5.723153114318848,
+ "step": 303
+ },
+ {
+ "epoch": 4.223580786026201,
+ "grad_norm": 0.045849986374378204,
+ "learning_rate": 0.0006,
+ "loss": 5.7005815505981445,
+ "step": 304
+ },
+ {
+ "epoch": 4.2375545851528384,
+ "grad_norm": 0.04177941009402275,
+ "learning_rate": 0.0006,
+ "loss": 5.679755210876465,
+ "step": 305
+ },
+ {
+ "epoch": 4.251528384279476,
+ "grad_norm": 0.03307238593697548,
+ "learning_rate": 0.0006,
+ "loss": 5.677393913269043,
+ "step": 306
+ },
+ {
+ "epoch": 4.265502183406113,
+ "grad_norm": 0.04340110346674919,
+ "learning_rate": 0.0006,
+ "loss": 5.702075004577637,
+ "step": 307
+ },
+ {
+ "epoch": 4.279475982532751,
+ "grad_norm": 0.04797970876097679,
+ "learning_rate": 0.0006,
+ "loss": 5.650345802307129,
+ "step": 308
+ },
+ {
+ "epoch": 4.293449781659389,
+ "grad_norm": 0.04946571961045265,
+ "learning_rate": 0.0006,
+ "loss": 5.675044059753418,
+ "step": 309
+ },
+ {
+ "epoch": 4.307423580786026,
+ "grad_norm": 0.03254636004567146,
+ "learning_rate": 0.0006,
+ "loss": 5.622986793518066,
+ "step": 310
+ },
+ {
+ "epoch": 4.321397379912664,
+ "grad_norm": 0.032069381326436996,
+ "learning_rate": 0.0006,
+ "loss": 5.629563331604004,
+ "step": 311
+ },
+ {
+ "epoch": 4.335371179039301,
+ "grad_norm": 0.033597469329833984,
+ "learning_rate": 0.0006,
+ "loss": 5.612854480743408,
+ "step": 312
+ },
+ {
+ "epoch": 4.349344978165939,
+ "grad_norm": 0.02717825584113598,
+ "learning_rate": 0.0006,
+ "loss": 5.652135372161865,
+ "step": 313
+ },
+ {
+ "epoch": 4.3633187772925766,
+ "grad_norm": 0.03312784433364868,
+ "learning_rate": 0.0006,
+ "loss": 5.649629592895508,
+ "step": 314
+ },
+ {
+ "epoch": 4.377292576419214,
+ "grad_norm": 0.03037389926612377,
+ "learning_rate": 0.0006,
+ "loss": 5.6194305419921875,
+ "step": 315
+ },
+ {
+ "epoch": 4.391266375545851,
+ "grad_norm": 0.03778672590851784,
+ "learning_rate": 0.0006,
+ "loss": 5.641755104064941,
+ "step": 316
+ },
+ {
+ "epoch": 4.405240174672489,
+ "grad_norm": 0.053473301231861115,
+ "learning_rate": 0.0006,
+ "loss": 5.621832847595215,
+ "step": 317
+ },
+ {
+ "epoch": 4.419213973799127,
+ "grad_norm": 0.06915664672851562,
+ "learning_rate": 0.0006,
+ "loss": 5.601483345031738,
+ "step": 318
+ },
+ {
+ "epoch": 4.4331877729257645,
+ "grad_norm": 0.06667220592498779,
+ "learning_rate": 0.0006,
+ "loss": 5.642349720001221,
+ "step": 319
+ },
+ {
+ "epoch": 4.447161572052401,
+ "grad_norm": 0.037290167063474655,
+ "learning_rate": 0.0006,
+ "loss": 5.604238510131836,
+ "step": 320
+ },
+ {
+ "epoch": 4.461135371179039,
+ "grad_norm": 0.04003678262233734,
+ "learning_rate": 0.0006,
+ "loss": 5.593315601348877,
+ "step": 321
+ },
+ {
+ "epoch": 4.475109170305677,
+ "grad_norm": 0.028076812624931335,
+ "learning_rate": 0.0006,
+ "loss": 5.566408157348633,
+ "step": 322
+ },
+ {
+ "epoch": 4.489082969432315,
+ "grad_norm": 0.031247343868017197,
+ "learning_rate": 0.0006,
+ "loss": 5.6215410232543945,
+ "step": 323
+ },
+ {
+ "epoch": 4.503056768558952,
+ "grad_norm": 0.02864190936088562,
+ "learning_rate": 0.0006,
+ "loss": 5.583666801452637,
+ "step": 324
+ },
+ {
+ "epoch": 4.517030567685589,
+ "grad_norm": 0.03396870568394661,
+ "learning_rate": 0.0006,
+ "loss": 5.568394184112549,
+ "step": 325
+ },
+ {
+ "epoch": 4.531004366812227,
+ "grad_norm": 0.03053557313978672,
+ "learning_rate": 0.0006,
+ "loss": 5.5704755783081055,
+ "step": 326
+ },
+ {
+ "epoch": 4.544978165938865,
+ "grad_norm": 0.039402369409799576,
+ "learning_rate": 0.0006,
+ "loss": 5.529522895812988,
+ "step": 327
+ },
+ {
+ "epoch": 4.558951965065502,
+ "grad_norm": 0.039162520319223404,
+ "learning_rate": 0.0006,
+ "loss": 5.565547466278076,
+ "step": 328
+ },
+ {
+ "epoch": 4.5729257641921395,
+ "grad_norm": 0.03071208856999874,
+ "learning_rate": 0.0006,
+ "loss": 5.551553726196289,
+ "step": 329
+ },
+ {
+ "epoch": 4.586899563318777,
+ "grad_norm": 0.0320625938475132,
+ "learning_rate": 0.0006,
+ "loss": 5.535126686096191,
+ "step": 330
+ },
+ {
+ "epoch": 4.600873362445415,
+ "grad_norm": 0.03700695186853409,
+ "learning_rate": 0.0006,
+ "loss": 5.560665130615234,
+ "step": 331
+ },
+ {
+ "epoch": 4.614847161572053,
+ "grad_norm": 0.0327119417488575,
+ "learning_rate": 0.0006,
+ "loss": 5.528924465179443,
+ "step": 332
+ },
+ {
+ "epoch": 4.62882096069869,
+ "grad_norm": 0.028552839532494545,
+ "learning_rate": 0.0006,
+ "loss": 5.520917892456055,
+ "step": 333
+ },
+ {
+ "epoch": 4.642794759825327,
+ "grad_norm": 0.029750585556030273,
+ "learning_rate": 0.0006,
+ "loss": 5.512092113494873,
+ "step": 334
+ },
+ {
+ "epoch": 4.656768558951965,
+ "grad_norm": 0.03556099906563759,
+ "learning_rate": 0.0006,
+ "loss": 5.500020503997803,
+ "step": 335
+ },
+ {
+ "epoch": 4.670742358078603,
+ "grad_norm": 0.03819836303591728,
+ "learning_rate": 0.0006,
+ "loss": 5.523126602172852,
+ "step": 336
+ },
+ {
+ "epoch": 4.68471615720524,
+ "grad_norm": 0.038457129150629044,
+ "learning_rate": 0.0006,
+ "loss": 5.497986316680908,
+ "step": 337
+ },
+ {
+ "epoch": 4.698689956331878,
+ "grad_norm": 0.049066998064517975,
+ "learning_rate": 0.0006,
+ "loss": 5.481566429138184,
+ "step": 338
+ },
+ {
+ "epoch": 4.712663755458515,
+ "grad_norm": 0.06208881363272667,
+ "learning_rate": 0.0006,
+ "loss": 5.5200581550598145,
+ "step": 339
+ },
+ {
+ "epoch": 4.726637554585153,
+ "grad_norm": 0.04952879622578621,
+ "learning_rate": 0.0006,
+ "loss": 5.528044700622559,
+ "step": 340
+ },
+ {
+ "epoch": 4.74061135371179,
+ "grad_norm": 0.046794820576906204,
+ "learning_rate": 0.0006,
+ "loss": 5.4694437980651855,
+ "step": 341
+ },
+ {
+ "epoch": 4.754585152838428,
+ "grad_norm": 0.05241665989160538,
+ "learning_rate": 0.0006,
+ "loss": 5.5203752517700195,
+ "step": 342
+ },
+ {
+ "epoch": 4.7685589519650655,
+ "grad_norm": 0.029848996549844742,
+ "learning_rate": 0.0006,
+ "loss": 5.484467506408691,
+ "step": 343
+ },
+ {
+ "epoch": 4.782532751091703,
+ "grad_norm": 0.035734955221414566,
+ "learning_rate": 0.0006,
+ "loss": 5.4982075691223145,
+ "step": 344
+ },
+ {
+ "epoch": 4.796506550218341,
+ "grad_norm": 0.03326781094074249,
+ "learning_rate": 0.0006,
+ "loss": 5.4673380851745605,
+ "step": 345
+ },
+ {
+ "epoch": 4.810480349344978,
+ "grad_norm": 0.02851971797645092,
+ "learning_rate": 0.0006,
+ "loss": 5.466347694396973,
+ "step": 346
+ },
+ {
+ "epoch": 4.824454148471616,
+ "grad_norm": 0.02881411463022232,
+ "learning_rate": 0.0006,
+ "loss": 5.4748992919921875,
+ "step": 347
+ },
+ {
+ "epoch": 4.8384279475982535,
+ "grad_norm": 0.037079520523548126,
+ "learning_rate": 0.0006,
+ "loss": 5.430629730224609,
+ "step": 348
+ },
+ {
+ "epoch": 4.85240174672489,
+ "grad_norm": 0.06697188317775726,
+ "learning_rate": 0.0006,
+ "loss": 5.48007869720459,
+ "step": 349
+ },
+ {
+ "epoch": 4.866375545851528,
+ "grad_norm": 0.08443532884120941,
+ "learning_rate": 0.0006,
+ "loss": 5.519370079040527,
+ "step": 350
+ },
+ {
+ "epoch": 4.880349344978166,
+ "grad_norm": 0.0594899021089077,
+ "learning_rate": 0.0006,
+ "loss": 5.502467155456543,
+ "step": 351
+ },
+ {
+ "epoch": 4.894323144104804,
+ "grad_norm": 0.045731619000434875,
+ "learning_rate": 0.0006,
+ "loss": 5.48048210144043,
+ "step": 352
+ },
+ {
+ "epoch": 4.908296943231441,
+ "grad_norm": 0.02911028079688549,
+ "learning_rate": 0.0006,
+ "loss": 5.45798921585083,
+ "step": 353
+ },
+ {
+ "epoch": 4.922270742358078,
+ "grad_norm": 0.03407920524477959,
+ "learning_rate": 0.0006,
+ "loss": 5.452054977416992,
+ "step": 354
+ },
+ {
+ "epoch": 4.936244541484716,
+ "grad_norm": 0.030616968870162964,
+ "learning_rate": 0.0006,
+ "loss": 5.416000843048096,
+ "step": 355
+ },
+ {
+ "epoch": 4.950218340611354,
+ "grad_norm": 0.036123789846897125,
+ "learning_rate": 0.0006,
+ "loss": 5.448460102081299,
+ "step": 356
+ },
+ {
+ "epoch": 4.964192139737992,
+ "grad_norm": 0.03511728718876839,
+ "learning_rate": 0.0006,
+ "loss": 5.4388580322265625,
+ "step": 357
+ },
+ {
+ "epoch": 4.978165938864628,
+ "grad_norm": 0.032399944961071014,
+ "learning_rate": 0.0006,
+ "loss": 5.439154624938965,
+ "step": 358
+ },
+ {
+ "epoch": 4.992139737991266,
+ "grad_norm": 0.030734507367014885,
+ "learning_rate": 0.0006,
+ "loss": 5.394845485687256,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.036368995904922485,
+ "learning_rate": 0.0006,
+ "loss": 5.4285783767700195,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.480083465576172,
+ "eval_runtime": 50.4055,
+ "eval_samples_per_second": 48.447,
+ "eval_steps_per_second": 1.528,
+ "step": 360
+ },
+ {
+ "epoch": 5.013973799126638,
+ "grad_norm": 0.04241528734564781,
+ "learning_rate": 0.0006,
+ "loss": 5.381251335144043,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279475982532755,
+ "grad_norm": 0.03248775005340576,
+ "learning_rate": 0.0006,
+ "loss": 5.37385892868042,
+ "step": 362
+ },
+ {
+ "epoch": 5.041921397379912,
+ "grad_norm": 0.034749697893857956,
+ "learning_rate": 0.0006,
+ "loss": 5.376180648803711,
+ "step": 363
+ },
+ {
+ "epoch": 5.05589519650655,
+ "grad_norm": 0.03606852516531944,
+ "learning_rate": 0.0006,
+ "loss": 5.374990940093994,
+ "step": 364
+ },
+ {
+ "epoch": 5.069868995633188,
+ "grad_norm": 0.037298817187547684,
+ "learning_rate": 0.0006,
+ "loss": 5.387371063232422,
+ "step": 365
+ },
+ {
+ "epoch": 5.083842794759826,
+ "grad_norm": 0.04082327336072922,
+ "learning_rate": 0.0006,
+ "loss": 5.389516830444336,
+ "step": 366
+ },
+ {
+ "epoch": 5.097816593886463,
+ "grad_norm": 0.04895859211683273,
+ "learning_rate": 0.0006,
+ "loss": 5.3711090087890625,
+ "step": 367
+ },
+ {
+ "epoch": 5.1117903930131,
+ "grad_norm": 0.050905536860227585,
+ "learning_rate": 0.0006,
+ "loss": 5.351629257202148,
+ "step": 368
+ },
+ {
+ "epoch": 5.125764192139738,
+ "grad_norm": 0.04349025338888168,
+ "learning_rate": 0.0006,
+ "loss": 5.348860263824463,
+ "step": 369
+ },
+ {
+ "epoch": 5.139737991266376,
+ "grad_norm": 0.04351300373673439,
+ "learning_rate": 0.0006,
+ "loss": 5.351939678192139,
+ "step": 370
+ },
+ {
+ "epoch": 5.153711790393013,
+ "grad_norm": 0.03227587044239044,
+ "learning_rate": 0.0006,
+ "loss": 5.345745086669922,
+ "step": 371
+ },
+ {
+ "epoch": 5.1676855895196505,
+ "grad_norm": 0.04331260547041893,
+ "learning_rate": 0.0006,
+ "loss": 5.316384315490723,
+ "step": 372
+ },
+ {
+ "epoch": 5.181659388646288,
+ "grad_norm": 0.0464855432510376,
+ "learning_rate": 0.0006,
+ "loss": 5.343276023864746,
+ "step": 373
+ },
+ {
+ "epoch": 5.195633187772926,
+ "grad_norm": 0.05008427053689957,
+ "learning_rate": 0.0006,
+ "loss": 5.369993209838867,
+ "step": 374
+ },
+ {
+ "epoch": 5.209606986899563,
+ "grad_norm": 0.04762439802289009,
+ "learning_rate": 0.0006,
+ "loss": 5.3458051681518555,
+ "step": 375
+ },
+ {
+ "epoch": 5.223580786026201,
+ "grad_norm": 0.04650581255555153,
+ "learning_rate": 0.0006,
+ "loss": 5.352739334106445,
+ "step": 376
+ },
+ {
+ "epoch": 5.2375545851528384,
+ "grad_norm": 0.04960601031780243,
+ "learning_rate": 0.0006,
+ "loss": 5.327419757843018,
+ "step": 377
+ },
+ {
+ "epoch": 5.251528384279476,
+ "grad_norm": 0.04186132177710533,
+ "learning_rate": 0.0006,
+ "loss": 5.319878578186035,
+ "step": 378
+ },
+ {
+ "epoch": 5.265502183406113,
+ "grad_norm": 0.0390714667737484,
+ "learning_rate": 0.0006,
+ "loss": 5.344437599182129,
+ "step": 379
+ },
+ {
+ "epoch": 5.279475982532751,
+ "grad_norm": 0.03270866721868515,
+ "learning_rate": 0.0006,
+ "loss": 5.313382148742676,
+ "step": 380
+ },
+ {
+ "epoch": 5.293449781659389,
+ "grad_norm": 0.031864266842603683,
+ "learning_rate": 0.0006,
+ "loss": 5.326592922210693,
+ "step": 381
+ },
+ {
+ "epoch": 5.307423580786026,
+ "grad_norm": 0.026960339397192,
+ "learning_rate": 0.0006,
+ "loss": 5.286443710327148,
+ "step": 382
+ },
+ {
+ "epoch": 5.321397379912664,
+ "grad_norm": 0.023257168009877205,
+ "learning_rate": 0.0006,
+ "loss": 5.291154384613037,
+ "step": 383
+ },
+ {
+ "epoch": 5.335371179039301,
+ "grad_norm": 0.024317380040884018,
+ "learning_rate": 0.0006,
+ "loss": 5.30286979675293,
+ "step": 384
+ },
+ {
+ "epoch": 5.349344978165939,
+ "grad_norm": 0.022621065378189087,
+ "learning_rate": 0.0006,
+ "loss": 5.315716743469238,
+ "step": 385
+ },
+ {
+ "epoch": 5.3633187772925766,
+ "grad_norm": 0.023142270743846893,
+ "learning_rate": 0.0006,
+ "loss": 5.30342960357666,
+ "step": 386
+ },
+ {
+ "epoch": 5.377292576419214,
+ "grad_norm": 0.023623041808605194,
+ "learning_rate": 0.0006,
+ "loss": 5.250846862792969,
+ "step": 387
+ },
+ {
+ "epoch": 5.391266375545851,
+ "grad_norm": 0.02163100801408291,
+ "learning_rate": 0.0006,
+ "loss": 5.239641189575195,
+ "step": 388
+ },
+ {
+ "epoch": 5.405240174672489,
+ "grad_norm": 0.02896741032600403,
+ "learning_rate": 0.0006,
+ "loss": 5.2592010498046875,
+ "step": 389
+ },
+ {
+ "epoch": 5.419213973799127,
+ "grad_norm": 0.03766395151615143,
+ "learning_rate": 0.0006,
+ "loss": 5.253421783447266,
+ "step": 390
+ },
+ {
+ "epoch": 5.4331877729257645,
+ "grad_norm": 0.04409803822636604,
+ "learning_rate": 0.0006,
+ "loss": 5.271892070770264,
+ "step": 391
+ },
+ {
+ "epoch": 5.447161572052401,
+ "grad_norm": 0.040245357900857925,
+ "learning_rate": 0.0006,
+ "loss": 5.259224891662598,
+ "step": 392
+ },
+ {
+ "epoch": 5.461135371179039,
+ "grad_norm": 0.04515395313501358,
+ "learning_rate": 0.0006,
+ "loss": 5.236300468444824,
+ "step": 393
+ },
+ {
+ "epoch": 5.475109170305677,
+ "grad_norm": 0.060296714305877686,
+ "learning_rate": 0.0006,
+ "loss": 5.265594959259033,
+ "step": 394
+ },
+ {
+ "epoch": 5.489082969432315,
+ "grad_norm": 0.05405225604772568,
+ "learning_rate": 0.0006,
+ "loss": 5.262340545654297,
+ "step": 395
+ },
+ {
+ "epoch": 5.503056768558952,
+ "grad_norm": 0.0568138062953949,
+ "learning_rate": 0.0006,
+ "loss": 5.239948749542236,
+ "step": 396
+ },
+ {
+ "epoch": 5.517030567685589,
+ "grad_norm": 0.059859342873096466,
+ "learning_rate": 0.0006,
+ "loss": 5.189077854156494,
+ "step": 397
+ },
+ {
+ "epoch": 5.531004366812227,
+ "grad_norm": 0.053871408104896545,
+ "learning_rate": 0.0006,
+ "loss": 5.270648956298828,
+ "step": 398
+ },
+ {
+ "epoch": 5.544978165938865,
+ "grad_norm": 0.06081297993659973,
+ "learning_rate": 0.0006,
+ "loss": 5.314695835113525,
+ "step": 399
+ },
+ {
+ "epoch": 5.558951965065502,
+ "grad_norm": 0.0646715834736824,
+ "learning_rate": 0.0006,
+ "loss": 5.286482810974121,
+ "step": 400
+ },
+ {
+ "epoch": 5.5729257641921395,
+ "grad_norm": 0.05934286117553711,
+ "learning_rate": 0.0006,
+ "loss": 5.247529983520508,
+ "step": 401
+ },
+ {
+ "epoch": 5.586899563318777,
+ "grad_norm": 0.05270497500896454,
+ "learning_rate": 0.0006,
+ "loss": 5.213264465332031,
+ "step": 402
+ },
+ {
+ "epoch": 5.600873362445415,
+ "grad_norm": 0.03454767167568207,
+ "learning_rate": 0.0006,
+ "loss": 5.234180450439453,
+ "step": 403
+ },
+ {
+ "epoch": 5.614847161572053,
+ "grad_norm": 0.04350962117314339,
+ "learning_rate": 0.0006,
+ "loss": 5.2320332527160645,
+ "step": 404
+ },
+ {
+ "epoch": 5.62882096069869,
+ "grad_norm": 0.04721181467175484,
+ "learning_rate": 0.0006,
+ "loss": 5.228950023651123,
+ "step": 405
+ },
+ {
+ "epoch": 5.642794759825327,
+ "grad_norm": 0.03711158409714699,
+ "learning_rate": 0.0006,
+ "loss": 5.234259605407715,
+ "step": 406
+ },
+ {
+ "epoch": 5.656768558951965,
+ "grad_norm": 0.029691185802221298,
+ "learning_rate": 0.0006,
+ "loss": 5.183767795562744,
+ "step": 407
+ },
+ {
+ "epoch": 5.670742358078603,
+ "grad_norm": 0.03253520280122757,
+ "learning_rate": 0.0006,
+ "loss": 5.224790573120117,
+ "step": 408
+ },
+ {
+ "epoch": 5.68471615720524,
+ "grad_norm": 0.026891207322478294,
+ "learning_rate": 0.0006,
+ "loss": 5.219671249389648,
+ "step": 409
+ },
+ {
+ "epoch": 5.698689956331878,
+ "grad_norm": 0.024443313479423523,
+ "learning_rate": 0.0006,
+ "loss": 5.177947044372559,
+ "step": 410
+ },
+ {
+ "epoch": 5.712663755458515,
+ "grad_norm": 0.024358445778489113,
+ "learning_rate": 0.0006,
+ "loss": 5.184648513793945,
+ "step": 411
+ },
+ {
+ "epoch": 5.726637554585153,
+ "grad_norm": 0.038056857883930206,
+ "learning_rate": 0.0006,
+ "loss": 5.213315010070801,
+ "step": 412
+ },
+ {
+ "epoch": 5.74061135371179,
+ "grad_norm": 0.05382931977510452,
+ "learning_rate": 0.0006,
+ "loss": 5.188442230224609,
+ "step": 413
+ },
+ {
+ "epoch": 5.754585152838428,
+ "grad_norm": 0.04695626348257065,
+ "learning_rate": 0.0006,
+ "loss": 5.214473724365234,
+ "step": 414
+ },
+ {
+ "epoch": 5.7685589519650655,
+ "grad_norm": 0.03373295068740845,
+ "learning_rate": 0.0006,
+ "loss": 5.187349319458008,
+ "step": 415
+ },
+ {
+ "epoch": 5.782532751091703,
+ "grad_norm": 0.04209282621741295,
+ "learning_rate": 0.0006,
+ "loss": 5.215581893920898,
+ "step": 416
+ },
+ {
+ "epoch": 5.796506550218341,
+ "grad_norm": 0.036461904644966125,
+ "learning_rate": 0.0006,
+ "loss": 5.148530006408691,
+ "step": 417
+ },
+ {
+ "epoch": 5.810480349344978,
+ "grad_norm": 0.02530442364513874,
+ "learning_rate": 0.0006,
+ "loss": 5.143393039703369,
+ "step": 418
+ },
+ {
+ "epoch": 5.824454148471616,
+ "grad_norm": 0.02545030415058136,
+ "learning_rate": 0.0006,
+ "loss": 5.167602062225342,
+ "step": 419
+ },
+ {
+ "epoch": 5.8384279475982535,
+ "grad_norm": 0.024862848222255707,
+ "learning_rate": 0.0006,
+ "loss": 5.133827209472656,
+ "step": 420
+ },
+ {
+ "epoch": 5.85240174672489,
+ "grad_norm": 0.0243727695196867,
+ "learning_rate": 0.0006,
+ "loss": 5.196236610412598,
+ "step": 421
+ },
+ {
+ "epoch": 5.866375545851528,
+ "grad_norm": 0.031052641570568085,
+ "learning_rate": 0.0006,
+ "loss": 5.163963317871094,
+ "step": 422
+ },
+ {
+ "epoch": 5.880349344978166,
+ "grad_norm": 0.03085985779762268,
+ "learning_rate": 0.0006,
+ "loss": 5.133022308349609,
+ "step": 423
+ },
+ {
+ "epoch": 5.894323144104804,
+ "grad_norm": 0.026254380121827126,
+ "learning_rate": 0.0006,
+ "loss": 5.126164436340332,
+ "step": 424
+ },
+ {
+ "epoch": 5.908296943231441,
+ "grad_norm": 0.02083180658519268,
+ "learning_rate": 0.0006,
+ "loss": 5.102797508239746,
+ "step": 425
+ },
+ {
+ "epoch": 5.922270742358078,
+ "grad_norm": 0.02210022322833538,
+ "learning_rate": 0.0006,
+ "loss": 5.079900741577148,
+ "step": 426
+ },
+ {
+ "epoch": 5.936244541484716,
+ "grad_norm": 0.024237696081399918,
+ "learning_rate": 0.0006,
+ "loss": 5.131382942199707,
+ "step": 427
+ },
+ {
+ "epoch": 5.950218340611354,
+ "grad_norm": 0.03174173831939697,
+ "learning_rate": 0.0006,
+ "loss": 5.12271785736084,
+ "step": 428
+ },
+ {
+ "epoch": 5.964192139737992,
+ "grad_norm": 0.035321734845638275,
+ "learning_rate": 0.0006,
+ "loss": 5.096363067626953,
+ "step": 429
+ },
+ {
+ "epoch": 5.978165938864628,
+ "grad_norm": 0.03945434093475342,
+ "learning_rate": 0.0006,
+ "loss": 5.104191780090332,
+ "step": 430
+ },
+ {
+ "epoch": 5.992139737991266,
+ "grad_norm": 0.03119991160929203,
+ "learning_rate": 0.0006,
+ "loss": 5.088006973266602,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.025646768510341644,
+ "learning_rate": 0.0006,
+ "loss": 5.060527801513672,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.1733880043029785,
+ "eval_runtime": 49.9632,
+ "eval_samples_per_second": 48.876,
+ "eval_steps_per_second": 1.541,
+ "step": 432
+ },
+ {
+ "epoch": 6.013973799126638,
+ "grad_norm": 0.04027649387717247,
+ "learning_rate": 0.0006,
+ "loss": 5.070117473602295,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279475982532755,
+ "grad_norm": 0.04872274026274681,
+ "learning_rate": 0.0006,
+ "loss": 5.076330184936523,
+ "step": 434
+ },
+ {
+ "epoch": 6.041921397379912,
+ "grad_norm": 0.044163160026073456,
+ "learning_rate": 0.0006,
+ "loss": 5.079638481140137,
+ "step": 435
+ },
+ {
+ "epoch": 6.05589519650655,
+ "grad_norm": 0.051925189793109894,
+ "learning_rate": 0.0006,
+ "loss": 5.077970027923584,
+ "step": 436
+ },
+ {
+ "epoch": 6.069868995633188,
+ "grad_norm": 0.06317602097988129,
+ "learning_rate": 0.0006,
+ "loss": 5.077326774597168,
+ "step": 437
+ },
+ {
+ "epoch": 6.083842794759826,
+ "grad_norm": 0.05190538242459297,
+ "learning_rate": 0.0006,
+ "loss": 5.078523635864258,
+ "step": 438
+ },
+ {
+ "epoch": 6.097816593886463,
+ "grad_norm": 0.054743602871894836,
+ "learning_rate": 0.0006,
+ "loss": 5.041546821594238,
+ "step": 439
+ },
+ {
+ "epoch": 6.1117903930131,
+ "grad_norm": 0.0473523885011673,
+ "learning_rate": 0.0006,
+ "loss": 5.055340766906738,
+ "step": 440
+ },
+ {
+ "epoch": 6.125764192139738,
+ "grad_norm": 0.04575403407216072,
+ "learning_rate": 0.0006,
+ "loss": 5.078280925750732,
+ "step": 441
+ },
+ {
+ "epoch": 6.139737991266376,
+ "grad_norm": 0.04004313051700592,
+ "learning_rate": 0.0006,
+ "loss": 5.0551252365112305,
+ "step": 442
+ },
+ {
+ "epoch": 6.153711790393013,
+ "grad_norm": 0.04324577748775482,
+ "learning_rate": 0.0006,
+ "loss": 5.052831649780273,
+ "step": 443
+ },
+ {
+ "epoch": 6.1676855895196505,
+ "grad_norm": 0.05479790270328522,
+ "learning_rate": 0.0006,
+ "loss": 5.075335502624512,
+ "step": 444
+ },
+ {
+ "epoch": 6.181659388646288,
+ "grad_norm": 0.05768252909183502,
+ "learning_rate": 0.0006,
+ "loss": 5.076082706451416,
+ "step": 445
+ },
+ {
+ "epoch": 6.195633187772926,
+ "grad_norm": 0.05240596458315849,
+ "learning_rate": 0.0006,
+ "loss": 5.058586120605469,
+ "step": 446
+ },
+ {
+ "epoch": 6.209606986899563,
+ "grad_norm": 0.0645335391163826,
+ "learning_rate": 0.0006,
+ "loss": 5.069242477416992,
+ "step": 447
+ },
+ {
+ "epoch": 6.223580786026201,
+ "grad_norm": 0.07776601612567902,
+ "learning_rate": 0.0006,
+ "loss": 5.100368499755859,
+ "step": 448
+ },
+ {
+ "epoch": 6.2375545851528384,
+ "grad_norm": 0.08278049528598785,
+ "learning_rate": 0.0006,
+ "loss": 5.109698295593262,
+ "step": 449
+ },
+ {
+ "epoch": 6.251528384279476,
+ "grad_norm": 0.07187525182962418,
+ "learning_rate": 0.0006,
+ "loss": 5.08582878112793,
+ "step": 450
+ },
+ {
+ "epoch": 6.265502183406113,
+ "grad_norm": 0.07394885271787643,
+ "learning_rate": 0.0006,
+ "loss": 5.06748628616333,
+ "step": 451
+ },
+ {
+ "epoch": 6.279475982532751,
+ "grad_norm": 0.06124480068683624,
+ "learning_rate": 0.0006,
+ "loss": 5.116754531860352,
+ "step": 452
+ },
+ {
+ "epoch": 6.293449781659389,
+ "grad_norm": 0.04062265530228615,
+ "learning_rate": 0.0006,
+ "loss": 5.04876184463501,
+ "step": 453
+ },
+ {
+ "epoch": 6.307423580786026,
+ "grad_norm": 0.04309544339776039,
+ "learning_rate": 0.0006,
+ "loss": 5.038376331329346,
+ "step": 454
+ },
+ {
+ "epoch": 6.321397379912664,
+ "grad_norm": 0.041932251304388046,
+ "learning_rate": 0.0006,
+ "loss": 5.071001052856445,
+ "step": 455
+ },
+ {
+ "epoch": 6.335371179039301,
+ "grad_norm": 0.033776845782995224,
+ "learning_rate": 0.0006,
+ "loss": 5.006098747253418,
+ "step": 456
+ },
+ {
+ "epoch": 6.349344978165939,
+ "grad_norm": 0.034641820937395096,
+ "learning_rate": 0.0006,
+ "loss": 4.992915153503418,
+ "step": 457
+ },
+ {
+ "epoch": 6.3633187772925766,
+ "grad_norm": 0.023475229740142822,
+ "learning_rate": 0.0006,
+ "loss": 5.044340133666992,
+ "step": 458
+ },
+ {
+ "epoch": 6.377292576419214,
+ "grad_norm": 0.02673504501581192,
+ "learning_rate": 0.0006,
+ "loss": 4.998212814331055,
+ "step": 459
+ },
+ {
+ "epoch": 6.391266375545851,
+ "grad_norm": 0.02482164464890957,
+ "learning_rate": 0.0006,
+ "loss": 5.010951042175293,
+ "step": 460
+ },
+ {
+ "epoch": 6.405240174672489,
+ "grad_norm": 0.022635847330093384,
+ "learning_rate": 0.0006,
+ "loss": 4.977993965148926,
+ "step": 461
+ },
+ {
+ "epoch": 6.419213973799127,
+ "grad_norm": 0.023006808012723923,
+ "learning_rate": 0.0006,
+ "loss": 4.947575569152832,
+ "step": 462
+ },
+ {
+ "epoch": 6.4331877729257645,
+ "grad_norm": 0.02624397724866867,
+ "learning_rate": 0.0006,
+ "loss": 4.977143287658691,
+ "step": 463
+ },
+ {
+ "epoch": 6.447161572052401,
+ "grad_norm": 0.03280187025666237,
+ "learning_rate": 0.0006,
+ "loss": 4.941946029663086,
+ "step": 464
+ },
+ {
+ "epoch": 6.461135371179039,
+ "grad_norm": 0.04020314663648605,
+ "learning_rate": 0.0006,
+ "loss": 4.947107315063477,
+ "step": 465
+ },
+ {
+ "epoch": 6.475109170305677,
+ "grad_norm": 0.037292513996362686,
+ "learning_rate": 0.0006,
+ "loss": 4.940674781799316,
+ "step": 466
+ },
+ {
+ "epoch": 6.489082969432315,
+ "grad_norm": 0.03219081461429596,
+ "learning_rate": 0.0006,
+ "loss": 4.945491790771484,
+ "step": 467
+ },
+ {
+ "epoch": 6.503056768558952,
+ "grad_norm": 0.034181494265794754,
+ "learning_rate": 0.0006,
+ "loss": 4.948554039001465,
+ "step": 468
+ },
+ {
+ "epoch": 6.517030567685589,
+ "grad_norm": 0.03098447248339653,
+ "learning_rate": 0.0006,
+ "loss": 4.923150062561035,
+ "step": 469
+ },
+ {
+ "epoch": 6.531004366812227,
+ "grad_norm": 0.026002254337072372,
+ "learning_rate": 0.0006,
+ "loss": 4.9629106521606445,
+ "step": 470
+ },
+ {
+ "epoch": 6.544978165938865,
+ "grad_norm": 0.02463129162788391,
+ "learning_rate": 0.0006,
+ "loss": 4.9400787353515625,
+ "step": 471
+ },
+ {
+ "epoch": 6.558951965065502,
+ "grad_norm": 0.025506779551506042,
+ "learning_rate": 0.0006,
+ "loss": 4.945688247680664,
+ "step": 472
+ },
+ {
+ "epoch": 6.5729257641921395,
+ "grad_norm": 0.021885665133595467,
+ "learning_rate": 0.0006,
+ "loss": 4.893912315368652,
+ "step": 473
+ },
+ {
+ "epoch": 6.586899563318777,
+ "grad_norm": 0.023528503254055977,
+ "learning_rate": 0.0006,
+ "loss": 4.948110580444336,
+ "step": 474
+ },
+ {
+ "epoch": 6.600873362445415,
+ "grad_norm": 0.02838003821671009,
+ "learning_rate": 0.0006,
+ "loss": 4.919154167175293,
+ "step": 475
+ },
+ {
+ "epoch": 6.614847161572053,
+ "grad_norm": 0.028782688081264496,
+ "learning_rate": 0.0006,
+ "loss": 4.89210319519043,
+ "step": 476
+ },
+ {
+ "epoch": 6.62882096069869,
+ "grad_norm": 0.02549571916460991,
+ "learning_rate": 0.0006,
+ "loss": 4.903683185577393,
+ "step": 477
+ },
+ {
+ "epoch": 6.642794759825327,
+ "grad_norm": 0.030100561678409576,
+ "learning_rate": 0.0006,
+ "loss": 4.907907485961914,
+ "step": 478
+ },
+ {
+ "epoch": 6.656768558951965,
+ "grad_norm": 0.03853096067905426,
+ "learning_rate": 0.0006,
+ "loss": 4.916140556335449,
+ "step": 479
+ },
+ {
+ "epoch": 6.670742358078603,
+ "grad_norm": 0.0367201492190361,
+ "learning_rate": 0.0006,
+ "loss": 4.882139205932617,
+ "step": 480
+ },
+ {
+ "epoch": 6.68471615720524,
+ "grad_norm": 0.034214165061712265,
+ "learning_rate": 0.0006,
+ "loss": 4.883127212524414,
+ "step": 481
+ },
+ {
+ "epoch": 6.698689956331878,
+ "grad_norm": 0.03360319137573242,
+ "learning_rate": 0.0006,
+ "loss": 4.903620719909668,
+ "step": 482
+ },
+ {
+ "epoch": 6.712663755458515,
+ "grad_norm": 0.027687804773449898,
+ "learning_rate": 0.0006,
+ "loss": 4.874878883361816,
+ "step": 483
+ },
+ {
+ "epoch": 6.726637554585153,
+ "grad_norm": 0.028244799003005028,
+ "learning_rate": 0.0006,
+ "loss": 4.877007961273193,
+ "step": 484
+ },
+ {
+ "epoch": 6.74061135371179,
+ "grad_norm": 0.027868567034602165,
+ "learning_rate": 0.0006,
+ "loss": 4.893726348876953,
+ "step": 485
+ },
+ {
+ "epoch": 6.754585152838428,
+ "grad_norm": 0.036026086658239365,
+ "learning_rate": 0.0006,
+ "loss": 4.899372577667236,
+ "step": 486
+ },
+ {
+ "epoch": 6.7685589519650655,
+ "grad_norm": 0.03497552126646042,
+ "learning_rate": 0.0006,
+ "loss": 4.8735671043396,
+ "step": 487
+ },
+ {
+ "epoch": 6.782532751091703,
+ "grad_norm": 0.027166219428181648,
+ "learning_rate": 0.0006,
+ "loss": 4.848074913024902,
+ "step": 488
+ },
+ {
+ "epoch": 6.796506550218341,
+ "grad_norm": 0.029360221698880196,
+ "learning_rate": 0.0006,
+ "loss": 4.821354389190674,
+ "step": 489
+ },
+ {
+ "epoch": 6.810480349344978,
+ "grad_norm": 0.030428793281316757,
+ "learning_rate": 0.0006,
+ "loss": 4.857872009277344,
+ "step": 490
+ },
+ {
+ "epoch": 6.824454148471616,
+ "grad_norm": 0.033143963664770126,
+ "learning_rate": 0.0006,
+ "loss": 4.8857526779174805,
+ "step": 491
+ },
+ {
+ "epoch": 6.8384279475982535,
+ "grad_norm": 0.03193509578704834,
+ "learning_rate": 0.0006,
+ "loss": 4.841046333312988,
+ "step": 492
+ },
+ {
+ "epoch": 6.85240174672489,
+ "grad_norm": 0.034551024436950684,
+ "learning_rate": 0.0006,
+ "loss": 4.857826232910156,
+ "step": 493
+ },
+ {
+ "epoch": 6.866375545851528,
+ "grad_norm": 0.04612463712692261,
+ "learning_rate": 0.0006,
+ "loss": 4.880589485168457,
+ "step": 494
+ },
+ {
+ "epoch": 6.880349344978166,
+ "grad_norm": 0.04604615643620491,
+ "learning_rate": 0.0006,
+ "loss": 4.836089134216309,
+ "step": 495
+ },
+ {
+ "epoch": 6.894323144104804,
+ "grad_norm": 0.04121214151382446,
+ "learning_rate": 0.0006,
+ "loss": 4.859458923339844,
+ "step": 496
+ },
+ {
+ "epoch": 6.908296943231441,
+ "grad_norm": 0.03569377213716507,
+ "learning_rate": 0.0006,
+ "loss": 4.846658706665039,
+ "step": 497
+ },
+ {
+ "epoch": 6.922270742358078,
+ "grad_norm": 0.03878311067819595,
+ "learning_rate": 0.0006,
+ "loss": 4.828747749328613,
+ "step": 498
+ },
+ {
+ "epoch": 6.936244541484716,
+ "grad_norm": 0.0379655621945858,
+ "learning_rate": 0.0006,
+ "loss": 4.7911152839660645,
+ "step": 499
+ },
+ {
+ "epoch": 6.950218340611354,
+ "grad_norm": 0.03329150751233101,
+ "learning_rate": 0.0006,
+ "loss": 4.8190741539001465,
+ "step": 500
+ },
+ {
+ "epoch": 6.964192139737992,
+ "grad_norm": 0.0386258140206337,
+ "learning_rate": 0.0006,
+ "loss": 4.826594352722168,
+ "step": 501
+ },
+ {
+ "epoch": 6.978165938864628,
+ "grad_norm": 0.043440066277980804,
+ "learning_rate": 0.0006,
+ "loss": 4.868552207946777,
+ "step": 502
+ },
+ {
+ "epoch": 6.992139737991266,
+ "grad_norm": 0.039522934705019,
+ "learning_rate": 0.0006,
+ "loss": 4.766866683959961,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.038620468229055405,
+ "learning_rate": 0.0006,
+ "loss": 4.828839302062988,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 4.907761573791504,
+ "eval_runtime": 49.951,
+ "eval_samples_per_second": 48.888,
+ "eval_steps_per_second": 1.542,
+ "step": 504
+ },
+ {
+ "epoch": 7.013973799126638,
+ "grad_norm": 0.040495287626981735,
+ "learning_rate": 0.0006,
+ "loss": 4.755504608154297,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279475982532755,
+ "grad_norm": 0.04684276506304741,
+ "learning_rate": 0.0006,
+ "loss": 4.79603385925293,
+ "step": 506
+ },
+ {
+ "epoch": 7.041921397379912,
+ "grad_norm": 0.057431042194366455,
+ "learning_rate": 0.0006,
+ "loss": 4.798529148101807,
+ "step": 507
+ },
+ {
+ "epoch": 7.05589519650655,
+ "grad_norm": 0.06289757043123245,
+ "learning_rate": 0.0006,
+ "loss": 4.819248199462891,
+ "step": 508
+ },
+ {
+ "epoch": 7.069868995633188,
+ "grad_norm": 0.07083664834499359,
+ "learning_rate": 0.0006,
+ "loss": 4.803141117095947,
+ "step": 509
+ },
+ {
+ "epoch": 7.083842794759826,
+ "grad_norm": 0.06081623584032059,
+ "learning_rate": 0.0006,
+ "loss": 4.743819236755371,
+ "step": 510
+ },
+ {
+ "epoch": 7.097816593886463,
+ "grad_norm": 0.05454877391457558,
+ "learning_rate": 0.0006,
+ "loss": 4.854677200317383,
+ "step": 511
+ },
+ {
+ "epoch": 7.1117903930131,
+ "grad_norm": 0.05157916992902756,
+ "learning_rate": 0.0006,
+ "loss": 4.797488212585449,
+ "step": 512
+ },
+ {
+ "epoch": 7.125764192139738,
+ "grad_norm": 0.04780645668506622,
+ "learning_rate": 0.0006,
+ "loss": 4.824231147766113,
+ "step": 513
+ },
+ {
+ "epoch": 7.139737991266376,
+ "grad_norm": 0.058745913207530975,
+ "learning_rate": 0.0006,
+ "loss": 4.79942512512207,
+ "step": 514
+ },
+ {
+ "epoch": 7.153711790393013,
+ "grad_norm": 0.07210857421159744,
+ "learning_rate": 0.0006,
+ "loss": 4.857621192932129,
+ "step": 515
+ },
+ {
+ "epoch": 7.1676855895196505,
+ "grad_norm": 0.0681944340467453,
+ "learning_rate": 0.0006,
+ "loss": 4.798557281494141,
+ "step": 516
+ },
+ {
+ "epoch": 7.181659388646288,
+ "grad_norm": 0.06716784089803696,
+ "learning_rate": 0.0006,
+ "loss": 4.81382942199707,
+ "step": 517
+ },
+ {
+ "epoch": 7.195633187772926,
+ "grad_norm": 0.0700073093175888,
+ "learning_rate": 0.0006,
+ "loss": 4.811261177062988,
+ "step": 518
+ },
+ {
+ "epoch": 7.209606986899563,
+ "grad_norm": 0.05830753222107887,
+ "learning_rate": 0.0006,
+ "loss": 4.818418025970459,
+ "step": 519
+ },
+ {
+ "epoch": 7.223580786026201,
+ "grad_norm": 0.06053008884191513,
+ "learning_rate": 0.0006,
+ "loss": 4.830060005187988,
+ "step": 520
+ },
+ {
+ "epoch": 7.2375545851528384,
+ "grad_norm": 0.04992729425430298,
+ "learning_rate": 0.0006,
+ "loss": 4.820477485656738,
+ "step": 521
+ },
+ {
+ "epoch": 7.251528384279476,
+ "grad_norm": 0.03906334191560745,
+ "learning_rate": 0.0006,
+ "loss": 4.776924133300781,
+ "step": 522
+ },
+ {
+ "epoch": 7.265502183406113,
+ "grad_norm": 0.041200339794158936,
+ "learning_rate": 0.0006,
+ "loss": 4.795502662658691,
+ "step": 523
+ },
+ {
+ "epoch": 7.279475982532751,
+ "grad_norm": 0.03866710141301155,
+ "learning_rate": 0.0006,
+ "loss": 4.748326778411865,
+ "step": 524
+ },
+ {
+ "epoch": 7.293449781659389,
+ "grad_norm": 0.03892578184604645,
+ "learning_rate": 0.0006,
+ "loss": 4.731060028076172,
+ "step": 525
+ },
+ {
+ "epoch": 7.307423580786026,
+ "grad_norm": 0.034929852932691574,
+ "learning_rate": 0.0006,
+ "loss": 4.769538879394531,
+ "step": 526
+ },
+ {
+ "epoch": 7.321397379912664,
+ "grad_norm": 0.03499983623623848,
+ "learning_rate": 0.0006,
+ "loss": 4.750111103057861,
+ "step": 527
+ },
+ {
+ "epoch": 7.335371179039301,
+ "grad_norm": 0.023694142699241638,
+ "learning_rate": 0.0006,
+ "loss": 4.741044998168945,
+ "step": 528
+ },
+ {
+ "epoch": 7.349344978165939,
+ "grad_norm": 0.02783721685409546,
+ "learning_rate": 0.0006,
+ "loss": 4.733529090881348,
+ "step": 529
+ },
+ {
+ "epoch": 7.3633187772925766,
+ "grad_norm": 0.022906454280018806,
+ "learning_rate": 0.0006,
+ "loss": 4.713002681732178,
+ "step": 530
+ },
+ {
+ "epoch": 7.377292576419214,
+ "grad_norm": 0.020011693239212036,
+ "learning_rate": 0.0006,
+ "loss": 4.6840620040893555,
+ "step": 531
+ },
+ {
+ "epoch": 7.391266375545851,
+ "grad_norm": 0.019985370337963104,
+ "learning_rate": 0.0006,
+ "loss": 4.695000171661377,
+ "step": 532
+ },
+ {
+ "epoch": 7.405240174672489,
+ "grad_norm": 0.019822653383016586,
+ "learning_rate": 0.0006,
+ "loss": 4.709036350250244,
+ "step": 533
+ },
+ {
+ "epoch": 7.419213973799127,
+ "grad_norm": 0.020615894347429276,
+ "learning_rate": 0.0006,
+ "loss": 4.679416656494141,
+ "step": 534
+ },
+ {
+ "epoch": 7.4331877729257645,
+ "grad_norm": 0.01958257146179676,
+ "learning_rate": 0.0006,
+ "loss": 4.704957008361816,
+ "step": 535
+ },
+ {
+ "epoch": 7.447161572052401,
+ "grad_norm": 0.02040509134531021,
+ "learning_rate": 0.0006,
+ "loss": 4.651505470275879,
+ "step": 536
+ },
+ {
+ "epoch": 7.461135371179039,
+ "grad_norm": 0.01626836135983467,
+ "learning_rate": 0.0006,
+ "loss": 4.694278240203857,
+ "step": 537
+ },
+ {
+ "epoch": 7.475109170305677,
+ "grad_norm": 0.01660163700580597,
+ "learning_rate": 0.0006,
+ "loss": 4.662658214569092,
+ "step": 538
+ },
+ {
+ "epoch": 7.489082969432315,
+ "grad_norm": 0.016483576968312263,
+ "learning_rate": 0.0006,
+ "loss": 4.695555686950684,
+ "step": 539
+ },
+ {
+ "epoch": 7.503056768558952,
+ "grad_norm": 0.018176909536123276,
+ "learning_rate": 0.0006,
+ "loss": 4.646458625793457,
+ "step": 540
+ },
+ {
+ "epoch": 7.517030567685589,
+ "grad_norm": 0.018314503133296967,
+ "learning_rate": 0.0006,
+ "loss": 4.643884181976318,
+ "step": 541
+ },
+ {
+ "epoch": 7.531004366812227,
+ "grad_norm": 0.016406886279582977,
+ "learning_rate": 0.0006,
+ "loss": 4.637638092041016,
+ "step": 542
+ },
+ {
+ "epoch": 7.544978165938865,
+ "grad_norm": 0.017510421574115753,
+ "learning_rate": 0.0006,
+ "loss": 4.6297926902771,
+ "step": 543
+ },
+ {
+ "epoch": 7.558951965065502,
+ "grad_norm": 0.021575570106506348,
+ "learning_rate": 0.0006,
+ "loss": 4.657093048095703,
+ "step": 544
+ },
+ {
+ "epoch": 7.5729257641921395,
+ "grad_norm": 0.024670056998729706,
+ "learning_rate": 0.0006,
+ "loss": 4.637840270996094,
+ "step": 545
+ },
+ {
+ "epoch": 7.586899563318777,
+ "grad_norm": 0.026005825027823448,
+ "learning_rate": 0.0006,
+ "loss": 4.622672080993652,
+ "step": 546
+ },
+ {
+ "epoch": 7.600873362445415,
+ "grad_norm": 0.024355988949537277,
+ "learning_rate": 0.0006,
+ "loss": 4.627206802368164,
+ "step": 547
+ },
+ {
+ "epoch": 7.614847161572053,
+ "grad_norm": 0.025826960802078247,
+ "learning_rate": 0.0006,
+ "loss": 4.616837501525879,
+ "step": 548
+ },
+ {
+ "epoch": 7.62882096069869,
+ "grad_norm": 0.02809619903564453,
+ "learning_rate": 0.0006,
+ "loss": 4.643812656402588,
+ "step": 549
+ },
+ {
+ "epoch": 7.642794759825327,
+ "grad_norm": 0.023823536932468414,
+ "learning_rate": 0.0006,
+ "loss": 4.623858451843262,
+ "step": 550
+ },
+ {
+ "epoch": 7.656768558951965,
+ "grad_norm": 0.024948647245764732,
+ "learning_rate": 0.0006,
+ "loss": 4.635528564453125,
+ "step": 551
+ },
+ {
+ "epoch": 7.670742358078603,
+ "grad_norm": 0.027852604165673256,
+ "learning_rate": 0.0006,
+ "loss": 4.606395721435547,
+ "step": 552
+ },
+ {
+ "epoch": 7.68471615720524,
+ "grad_norm": 0.031888775527477264,
+ "learning_rate": 0.0006,
+ "loss": 4.630072593688965,
+ "step": 553
+ },
+ {
+ "epoch": 7.698689956331878,
+ "grad_norm": 0.04423221945762634,
+ "learning_rate": 0.0006,
+ "loss": 4.592362880706787,
+ "step": 554
+ },
+ {
+ "epoch": 7.712663755458515,
+ "grad_norm": 0.05360350012779236,
+ "learning_rate": 0.0006,
+ "loss": 4.626799583435059,
+ "step": 555
+ },
+ {
+ "epoch": 7.726637554585153,
+ "grad_norm": 0.05218035727739334,
+ "learning_rate": 0.0006,
+ "loss": 4.591753005981445,
+ "step": 556
+ },
+ {
+ "epoch": 7.74061135371179,
+ "grad_norm": 0.04740380123257637,
+ "learning_rate": 0.0006,
+ "loss": 4.611865520477295,
+ "step": 557
+ },
+ {
+ "epoch": 7.754585152838428,
+ "grad_norm": 0.04325862228870392,
+ "learning_rate": 0.0006,
+ "loss": 4.585417747497559,
+ "step": 558
+ },
+ {
+ "epoch": 7.7685589519650655,
+ "grad_norm": 0.047380927950143814,
+ "learning_rate": 0.0006,
+ "loss": 4.595690727233887,
+ "step": 559
+ },
+ {
+ "epoch": 7.782532751091703,
+ "grad_norm": 0.05398833379149437,
+ "learning_rate": 0.0006,
+ "loss": 4.670032024383545,
+ "step": 560
+ },
+ {
+ "epoch": 7.796506550218341,
+ "grad_norm": 0.05550206080079079,
+ "learning_rate": 0.0006,
+ "loss": 4.603083610534668,
+ "step": 561
+ },
+ {
+ "epoch": 7.810480349344978,
+ "grad_norm": 0.048703186213970184,
+ "learning_rate": 0.0006,
+ "loss": 4.60882568359375,
+ "step": 562
+ },
+ {
+ "epoch": 7.824454148471616,
+ "grad_norm": 0.03849068656563759,
+ "learning_rate": 0.0006,
+ "loss": 4.600196838378906,
+ "step": 563
+ },
+ {
+ "epoch": 7.8384279475982535,
+ "grad_norm": 0.04322432354092598,
+ "learning_rate": 0.0006,
+ "loss": 4.635777473449707,
+ "step": 564
+ },
+ {
+ "epoch": 7.85240174672489,
+ "grad_norm": 0.03958692029118538,
+ "learning_rate": 0.0006,
+ "loss": 4.586699962615967,
+ "step": 565
+ },
+ {
+ "epoch": 7.866375545851528,
+ "grad_norm": 0.035496462136507034,
+ "learning_rate": 0.0006,
+ "loss": 4.602683067321777,
+ "step": 566
+ },
+ {
+ "epoch": 7.880349344978166,
+ "grad_norm": 0.038870155811309814,
+ "learning_rate": 0.0006,
+ "loss": 4.635684013366699,
+ "step": 567
+ },
+ {
+ "epoch": 7.894323144104804,
+ "grad_norm": 0.038049351423978806,
+ "learning_rate": 0.0006,
+ "loss": 4.5812602043151855,
+ "step": 568
+ },
+ {
+ "epoch": 7.908296943231441,
+ "grad_norm": 0.029217766597867012,
+ "learning_rate": 0.0006,
+ "loss": 4.560367584228516,
+ "step": 569
+ },
+ {
+ "epoch": 7.922270742358078,
+ "grad_norm": 0.028376970440149307,
+ "learning_rate": 0.0006,
+ "loss": 4.578996658325195,
+ "step": 570
+ },
+ {
+ "epoch": 7.936244541484716,
+ "grad_norm": 0.035108938813209534,
+ "learning_rate": 0.0006,
+ "loss": 4.554547309875488,
+ "step": 571
+ },
+ {
+ "epoch": 7.950218340611354,
+ "grad_norm": 0.02971036173403263,
+ "learning_rate": 0.0006,
+ "loss": 4.5761919021606445,
+ "step": 572
+ },
+ {
+ "epoch": 7.964192139737992,
+ "grad_norm": 0.02690828964114189,
+ "learning_rate": 0.0006,
+ "loss": 4.568772315979004,
+ "step": 573
+ },
+ {
+ "epoch": 7.978165938864628,
+ "grad_norm": 0.023910939693450928,
+ "learning_rate": 0.0006,
+ "loss": 4.56700325012207,
+ "step": 574
+ },
+ {
+ "epoch": 7.992139737991266,
+ "grad_norm": 0.02027987875044346,
+ "learning_rate": 0.0006,
+ "loss": 4.563353538513184,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.02621232345700264,
+ "learning_rate": 0.0006,
+ "loss": 4.52655029296875,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.659845352172852,
+ "eval_runtime": 54.5122,
+ "eval_samples_per_second": 44.797,
+ "eval_steps_per_second": 1.413,
+ "step": 576
+ },
+ {
+ "epoch": 8.013973799126637,
+ "grad_norm": 0.024295445531606674,
+ "learning_rate": 0.0006,
+ "loss": 4.514026641845703,
+ "step": 577
+ },
+ {
+ "epoch": 8.027947598253276,
+ "grad_norm": 0.029430922120809555,
+ "learning_rate": 0.0006,
+ "loss": 4.479931831359863,
+ "step": 578
+ },
+ {
+ "epoch": 8.041921397379912,
+ "grad_norm": 0.03156977519392967,
+ "learning_rate": 0.0006,
+ "loss": 4.529452323913574,
+ "step": 579
+ },
+ {
+ "epoch": 8.055895196506551,
+ "grad_norm": 0.03411492332816124,
+ "learning_rate": 0.0006,
+ "loss": 4.501816749572754,
+ "step": 580
+ },
+ {
+ "epoch": 8.069868995633188,
+ "grad_norm": 0.03944215178489685,
+ "learning_rate": 0.0006,
+ "loss": 4.503504753112793,
+ "step": 581
+ },
+ {
+ "epoch": 8.083842794759825,
+ "grad_norm": 0.04511773958802223,
+ "learning_rate": 0.0006,
+ "loss": 4.481729984283447,
+ "step": 582
+ },
+ {
+ "epoch": 8.097816593886463,
+ "grad_norm": 0.03235149383544922,
+ "learning_rate": 0.0006,
+ "loss": 4.510499954223633,
+ "step": 583
+ },
+ {
+ "epoch": 8.1117903930131,
+ "grad_norm": 0.027723919600248337,
+ "learning_rate": 0.0006,
+ "loss": 4.492958068847656,
+ "step": 584
+ },
+ {
+ "epoch": 8.125764192139737,
+ "grad_norm": 0.033535368740558624,
+ "learning_rate": 0.0006,
+ "loss": 4.480009078979492,
+ "step": 585
+ },
+ {
+ "epoch": 8.139737991266376,
+ "grad_norm": 0.03412545099854469,
+ "learning_rate": 0.0006,
+ "loss": 4.464960098266602,
+ "step": 586
+ },
+ {
+ "epoch": 8.153711790393013,
+ "grad_norm": 0.03285292908549309,
+ "learning_rate": 0.0006,
+ "loss": 4.478358745574951,
+ "step": 587
+ },
+ {
+ "epoch": 8.167685589519651,
+ "grad_norm": 0.03460532799363136,
+ "learning_rate": 0.0006,
+ "loss": 4.490439414978027,
+ "step": 588
+ },
+ {
+ "epoch": 8.181659388646288,
+ "grad_norm": 0.037275977432727814,
+ "learning_rate": 0.0006,
+ "loss": 4.473151683807373,
+ "step": 589
+ },
+ {
+ "epoch": 8.195633187772925,
+ "grad_norm": 0.03485316038131714,
+ "learning_rate": 0.0006,
+ "loss": 4.491796493530273,
+ "step": 590
+ },
+ {
+ "epoch": 8.209606986899564,
+ "grad_norm": 0.03405699506402016,
+ "learning_rate": 0.0006,
+ "loss": 4.473565101623535,
+ "step": 591
+ },
+ {
+ "epoch": 8.2235807860262,
+ "grad_norm": 0.03975093364715576,
+ "learning_rate": 0.0006,
+ "loss": 4.494463920593262,
+ "step": 592
+ },
+ {
+ "epoch": 8.237554585152838,
+ "grad_norm": 0.03563615307211876,
+ "learning_rate": 0.0006,
+ "loss": 4.458979606628418,
+ "step": 593
+ },
+ {
+ "epoch": 8.251528384279476,
+ "grad_norm": 0.037183649837970734,
+ "learning_rate": 0.0006,
+ "loss": 4.4701948165893555,
+ "step": 594
+ },
+ {
+ "epoch": 8.265502183406113,
+ "grad_norm": 0.039340466260910034,
+ "learning_rate": 0.0006,
+ "loss": 4.489675521850586,
+ "step": 595
+ },
+ {
+ "epoch": 8.279475982532752,
+ "grad_norm": 0.03162173181772232,
+ "learning_rate": 0.0006,
+ "loss": 4.422170162200928,
+ "step": 596
+ },
+ {
+ "epoch": 8.293449781659389,
+ "grad_norm": 0.03257273510098457,
+ "learning_rate": 0.0006,
+ "loss": 4.467840194702148,
+ "step": 597
+ },
+ {
+ "epoch": 8.307423580786025,
+ "grad_norm": 0.028066672384738922,
+ "learning_rate": 0.0006,
+ "loss": 4.471856117248535,
+ "step": 598
+ },
+ {
+ "epoch": 8.321397379912664,
+ "grad_norm": 0.032139431685209274,
+ "learning_rate": 0.0006,
+ "loss": 4.485661029815674,
+ "step": 599
+ },
+ {
+ "epoch": 8.335371179039301,
+ "grad_norm": 0.03333858773112297,
+ "learning_rate": 0.0006,
+ "loss": 4.411584854125977,
+ "step": 600
+ },
+ {
+ "epoch": 8.34934497816594,
+ "grad_norm": 0.03705155476927757,
+ "learning_rate": 0.0006,
+ "loss": 4.466585159301758,
+ "step": 601
+ },
+ {
+ "epoch": 8.363318777292577,
+ "grad_norm": 0.03022557683289051,
+ "learning_rate": 0.0006,
+ "loss": 4.4287428855896,
+ "step": 602
+ },
+ {
+ "epoch": 8.377292576419213,
+ "grad_norm": 0.02911069616675377,
+ "learning_rate": 0.0006,
+ "loss": 4.432306289672852,
+ "step": 603
+ },
+ {
+ "epoch": 8.391266375545852,
+ "grad_norm": 0.0332532562315464,
+ "learning_rate": 0.0006,
+ "loss": 4.446920871734619,
+ "step": 604
+ },
+ {
+ "epoch": 8.405240174672489,
+ "grad_norm": 0.028356043621897697,
+ "learning_rate": 0.0006,
+ "loss": 4.41445779800415,
+ "step": 605
+ },
+ {
+ "epoch": 8.419213973799126,
+ "grad_norm": 0.026536710560321808,
+ "learning_rate": 0.0006,
+ "loss": 4.45195198059082,
+ "step": 606
+ },
+ {
+ "epoch": 8.433187772925764,
+ "grad_norm": 0.027183571830391884,
+ "learning_rate": 0.0006,
+ "loss": 4.482472896575928,
+ "step": 607
+ },
+ {
+ "epoch": 8.447161572052401,
+ "grad_norm": 0.02418459579348564,
+ "learning_rate": 0.0006,
+ "loss": 4.407785415649414,
+ "step": 608
+ },
+ {
+ "epoch": 8.46113537117904,
+ "grad_norm": 0.03382935747504234,
+ "learning_rate": 0.0006,
+ "loss": 4.457126140594482,
+ "step": 609
+ },
+ {
+ "epoch": 8.475109170305677,
+ "grad_norm": 0.0399114228785038,
+ "learning_rate": 0.0006,
+ "loss": 4.404670238494873,
+ "step": 610
+ },
+ {
+ "epoch": 8.489082969432314,
+ "grad_norm": 0.02914121001958847,
+ "learning_rate": 0.0006,
+ "loss": 4.385491371154785,
+ "step": 611
+ },
+ {
+ "epoch": 8.503056768558952,
+ "grad_norm": 0.024029329419136047,
+ "learning_rate": 0.0006,
+ "loss": 4.3807878494262695,
+ "step": 612
+ },
+ {
+ "epoch": 8.51703056768559,
+ "grad_norm": 0.024073908105492592,
+ "learning_rate": 0.0006,
+ "loss": 4.393002033233643,
+ "step": 613
+ },
+ {
+ "epoch": 8.531004366812226,
+ "grad_norm": 0.024022364988923073,
+ "learning_rate": 0.0006,
+ "loss": 4.44310188293457,
+ "step": 614
+ },
+ {
+ "epoch": 8.544978165938865,
+ "grad_norm": 0.02552313171327114,
+ "learning_rate": 0.0006,
+ "loss": 4.370255947113037,
+ "step": 615
+ },
+ {
+ "epoch": 8.558951965065502,
+ "grad_norm": 0.022251879796385765,
+ "learning_rate": 0.0006,
+ "loss": 4.366595268249512,
+ "step": 616
+ },
+ {
+ "epoch": 8.57292576419214,
+ "grad_norm": 0.022750860080122948,
+ "learning_rate": 0.0006,
+ "loss": 4.377684116363525,
+ "step": 617
+ },
+ {
+ "epoch": 8.586899563318777,
+ "grad_norm": 0.022422555834054947,
+ "learning_rate": 0.0006,
+ "loss": 4.397234916687012,
+ "step": 618
+ },
+ {
+ "epoch": 8.600873362445414,
+ "grad_norm": 0.02737540379166603,
+ "learning_rate": 0.0006,
+ "loss": 4.406569957733154,
+ "step": 619
+ },
+ {
+ "epoch": 8.614847161572053,
+ "grad_norm": 0.0230751670897007,
+ "learning_rate": 0.0006,
+ "loss": 4.37363862991333,
+ "step": 620
+ },
+ {
+ "epoch": 8.62882096069869,
+ "grad_norm": 0.02010422758758068,
+ "learning_rate": 0.0006,
+ "loss": 4.396723747253418,
+ "step": 621
+ },
+ {
+ "epoch": 8.642794759825328,
+ "grad_norm": 0.024875663220882416,
+ "learning_rate": 0.0006,
+ "loss": 4.382737159729004,
+ "step": 622
+ },
+ {
+ "epoch": 8.656768558951965,
+ "grad_norm": 0.026101084426045418,
+ "learning_rate": 0.0006,
+ "loss": 4.376001358032227,
+ "step": 623
+ },
+ {
+ "epoch": 8.670742358078602,
+ "grad_norm": 0.026131760329008102,
+ "learning_rate": 0.0006,
+ "loss": 4.392600059509277,
+ "step": 624
+ },
+ {
+ "epoch": 8.68471615720524,
+ "grad_norm": 0.02580229938030243,
+ "learning_rate": 0.0006,
+ "loss": 4.383554458618164,
+ "step": 625
+ },
+ {
+ "epoch": 8.698689956331878,
+ "grad_norm": 0.02919621206820011,
+ "learning_rate": 0.0006,
+ "loss": 4.369998455047607,
+ "step": 626
+ },
+ {
+ "epoch": 8.712663755458514,
+ "grad_norm": 0.03268479183316231,
+ "learning_rate": 0.0006,
+ "loss": 4.364940166473389,
+ "step": 627
+ },
+ {
+ "epoch": 8.726637554585153,
+ "grad_norm": 0.031615134328603745,
+ "learning_rate": 0.0006,
+ "loss": 4.354142189025879,
+ "step": 628
+ },
+ {
+ "epoch": 8.74061135371179,
+ "grad_norm": 0.03091943822801113,
+ "learning_rate": 0.0006,
+ "loss": 4.405896186828613,
+ "step": 629
+ },
+ {
+ "epoch": 8.754585152838429,
+ "grad_norm": 0.03459984436631203,
+ "learning_rate": 0.0006,
+ "loss": 4.386331558227539,
+ "step": 630
+ },
+ {
+ "epoch": 8.768558951965066,
+ "grad_norm": 0.03276519104838371,
+ "learning_rate": 0.0006,
+ "loss": 4.351153373718262,
+ "step": 631
+ },
+ {
+ "epoch": 8.782532751091702,
+ "grad_norm": 0.03300934657454491,
+ "learning_rate": 0.0006,
+ "loss": 4.364960670471191,
+ "step": 632
+ },
+ {
+ "epoch": 8.796506550218341,
+ "grad_norm": 0.03618944436311722,
+ "learning_rate": 0.0006,
+ "loss": 4.3519134521484375,
+ "step": 633
+ },
+ {
+ "epoch": 8.810480349344978,
+ "grad_norm": 0.03368232026696205,
+ "learning_rate": 0.0006,
+ "loss": 4.374147891998291,
+ "step": 634
+ },
+ {
+ "epoch": 8.824454148471617,
+ "grad_norm": 0.03252463415265083,
+ "learning_rate": 0.0006,
+ "loss": 4.367391586303711,
+ "step": 635
+ },
+ {
+ "epoch": 8.838427947598253,
+ "grad_norm": 0.03680579736828804,
+ "learning_rate": 0.0006,
+ "loss": 4.364116191864014,
+ "step": 636
+ },
+ {
+ "epoch": 8.85240174672489,
+ "grad_norm": 0.0317164771258831,
+ "learning_rate": 0.0006,
+ "loss": 4.379790306091309,
+ "step": 637
+ },
+ {
+ "epoch": 8.866375545851529,
+ "grad_norm": 0.031701602041721344,
+ "learning_rate": 0.0006,
+ "loss": 4.353549003601074,
+ "step": 638
+ },
+ {
+ "epoch": 8.880349344978166,
+ "grad_norm": 0.029211340472102165,
+ "learning_rate": 0.0006,
+ "loss": 4.343072891235352,
+ "step": 639
+ },
+ {
+ "epoch": 8.894323144104803,
+ "grad_norm": 0.02774505503475666,
+ "learning_rate": 0.0006,
+ "loss": 4.354020118713379,
+ "step": 640
+ },
+ {
+ "epoch": 8.908296943231441,
+ "grad_norm": 0.027463624253869057,
+ "learning_rate": 0.0006,
+ "loss": 4.354701519012451,
+ "step": 641
+ },
+ {
+ "epoch": 8.922270742358078,
+ "grad_norm": 0.023732105270028114,
+ "learning_rate": 0.0006,
+ "loss": 4.347830772399902,
+ "step": 642
+ },
+ {
+ "epoch": 8.936244541484717,
+ "grad_norm": 0.02339051477611065,
+ "learning_rate": 0.0006,
+ "loss": 4.342405319213867,
+ "step": 643
+ },
+ {
+ "epoch": 8.950218340611354,
+ "grad_norm": 0.023744868114590645,
+ "learning_rate": 0.0006,
+ "loss": 4.352578163146973,
+ "step": 644
+ },
+ {
+ "epoch": 8.96419213973799,
+ "grad_norm": 0.02563423290848732,
+ "learning_rate": 0.0006,
+ "loss": 4.37408971786499,
+ "step": 645
+ },
+ {
+ "epoch": 8.97816593886463,
+ "grad_norm": 0.031334877014160156,
+ "learning_rate": 0.0006,
+ "loss": 4.309673309326172,
+ "step": 646
+ },
+ {
+ "epoch": 8.992139737991266,
+ "grad_norm": 0.03283081576228142,
+ "learning_rate": 0.0006,
+ "loss": 4.348544597625732,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.03263505920767784,
+ "learning_rate": 0.0006,
+ "loss": 4.307372093200684,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.477582931518555,
+ "eval_runtime": 50.1212,
+ "eval_samples_per_second": 48.722,
+ "eval_steps_per_second": 1.536,
+ "step": 648
+ },
+ {
+ "epoch": 9.013973799126637,
+ "grad_norm": 0.038239408284425735,
+ "learning_rate": 0.0006,
+ "loss": 4.2784552574157715,
+ "step": 649
+ },
+ {
+ "epoch": 9.027947598253276,
+ "grad_norm": 0.044226426631212234,
+ "learning_rate": 0.0006,
+ "loss": 4.332424163818359,
+ "step": 650
+ },
+ {
+ "epoch": 9.041921397379912,
+ "grad_norm": 0.04743504151701927,
+ "learning_rate": 0.0006,
+ "loss": 4.303574085235596,
+ "step": 651
+ },
+ {
+ "epoch": 9.055895196506551,
+ "grad_norm": 0.04348866268992424,
+ "learning_rate": 0.0006,
+ "loss": 4.295550346374512,
+ "step": 652
+ },
+ {
+ "epoch": 9.069868995633188,
+ "grad_norm": 0.04830600693821907,
+ "learning_rate": 0.0006,
+ "loss": 4.2577619552612305,
+ "step": 653
+ },
+ {
+ "epoch": 9.083842794759825,
+ "grad_norm": 0.05154724419116974,
+ "learning_rate": 0.0006,
+ "loss": 4.314383506774902,
+ "step": 654
+ },
+ {
+ "epoch": 9.097816593886463,
+ "grad_norm": 0.044492293149232864,
+ "learning_rate": 0.0006,
+ "loss": 4.32614803314209,
+ "step": 655
+ },
+ {
+ "epoch": 9.1117903930131,
+ "grad_norm": 0.03842560201883316,
+ "learning_rate": 0.0006,
+ "loss": 4.273819446563721,
+ "step": 656
+ },
+ {
+ "epoch": 9.125764192139737,
+ "grad_norm": 0.043655358254909515,
+ "learning_rate": 0.0006,
+ "loss": 4.334014892578125,
+ "step": 657
+ },
+ {
+ "epoch": 9.139737991266376,
+ "grad_norm": 0.051922112703323364,
+ "learning_rate": 0.0006,
+ "loss": 4.308163642883301,
+ "step": 658
+ },
+ {
+ "epoch": 9.153711790393013,
+ "grad_norm": 0.049958787858486176,
+ "learning_rate": 0.0006,
+ "loss": 4.30555534362793,
+ "step": 659
+ },
+ {
+ "epoch": 9.167685589519651,
+ "grad_norm": 0.03839104622602463,
+ "learning_rate": 0.0006,
+ "loss": 4.316109657287598,
+ "step": 660
+ },
+ {
+ "epoch": 9.181659388646288,
+ "grad_norm": 0.03898056969046593,
+ "learning_rate": 0.0006,
+ "loss": 4.308863639831543,
+ "step": 661
+ },
+ {
+ "epoch": 9.195633187772925,
+ "grad_norm": 0.028817247599363327,
+ "learning_rate": 0.0006,
+ "loss": 4.300504684448242,
+ "step": 662
+ },
+ {
+ "epoch": 9.209606986899564,
+ "grad_norm": 0.030067335814237595,
+ "learning_rate": 0.0006,
+ "loss": 4.259067535400391,
+ "step": 663
+ },
+ {
+ "epoch": 9.2235807860262,
+ "grad_norm": 0.03195219859480858,
+ "learning_rate": 0.0006,
+ "loss": 4.3144426345825195,
+ "step": 664
+ },
+ {
+ "epoch": 9.237554585152838,
+ "grad_norm": 0.03194814175367355,
+ "learning_rate": 0.0006,
+ "loss": 4.259864330291748,
+ "step": 665
+ },
+ {
+ "epoch": 9.251528384279476,
+ "grad_norm": 0.02754005789756775,
+ "learning_rate": 0.0006,
+ "loss": 4.291876316070557,
+ "step": 666
+ },
+ {
+ "epoch": 9.265502183406113,
+ "grad_norm": 0.026083929464221,
+ "learning_rate": 0.0006,
+ "loss": 4.205921649932861,
+ "step": 667
+ },
+ {
+ "epoch": 9.279475982532752,
+ "grad_norm": 0.025165516883134842,
+ "learning_rate": 0.0006,
+ "loss": 4.23714017868042,
+ "step": 668
+ },
+ {
+ "epoch": 9.293449781659389,
+ "grad_norm": 0.02380996011197567,
+ "learning_rate": 0.0006,
+ "loss": 4.263561725616455,
+ "step": 669
+ },
+ {
+ "epoch": 9.307423580786025,
+ "grad_norm": 0.025552157312631607,
+ "learning_rate": 0.0006,
+ "loss": 4.222456932067871,
+ "step": 670
+ },
+ {
+ "epoch": 9.321397379912664,
+ "grad_norm": 0.024957234039902687,
+ "learning_rate": 0.0006,
+ "loss": 4.250582695007324,
+ "step": 671
+ },
+ {
+ "epoch": 9.335371179039301,
+ "grad_norm": 0.02580283023416996,
+ "learning_rate": 0.0006,
+ "loss": 4.240250587463379,
+ "step": 672
+ },
+ {
+ "epoch": 9.34934497816594,
+ "grad_norm": 0.020701562985777855,
+ "learning_rate": 0.0006,
+ "loss": 4.222497463226318,
+ "step": 673
+ },
+ {
+ "epoch": 9.363318777292577,
+ "grad_norm": 0.021373746916651726,
+ "learning_rate": 0.0006,
+ "loss": 4.242282390594482,
+ "step": 674
+ },
+ {
+ "epoch": 9.377292576419213,
+ "grad_norm": 0.02025660127401352,
+ "learning_rate": 0.0006,
+ "loss": 4.270265579223633,
+ "step": 675
+ },
+ {
+ "epoch": 9.391266375545852,
+ "grad_norm": 0.02325408160686493,
+ "learning_rate": 0.0006,
+ "loss": 4.222276210784912,
+ "step": 676
+ },
+ {
+ "epoch": 9.405240174672489,
+ "grad_norm": 0.02470816671848297,
+ "learning_rate": 0.0006,
+ "loss": 4.238652229309082,
+ "step": 677
+ },
+ {
+ "epoch": 9.419213973799126,
+ "grad_norm": 0.02343972586095333,
+ "learning_rate": 0.0006,
+ "loss": 4.24069881439209,
+ "step": 678
+ },
+ {
+ "epoch": 9.433187772925764,
+ "grad_norm": 0.021034302189946175,
+ "learning_rate": 0.0006,
+ "loss": 4.244692802429199,
+ "step": 679
+ },
+ {
+ "epoch": 9.447161572052401,
+ "grad_norm": 0.021374190226197243,
+ "learning_rate": 0.0006,
+ "loss": 4.224084854125977,
+ "step": 680
+ },
+ {
+ "epoch": 9.46113537117904,
+ "grad_norm": 0.020527871325612068,
+ "learning_rate": 0.0006,
+ "loss": 4.262082099914551,
+ "step": 681
+ },
+ {
+ "epoch": 9.475109170305677,
+ "grad_norm": 0.01585977151989937,
+ "learning_rate": 0.0006,
+ "loss": 4.226033687591553,
+ "step": 682
+ },
+ {
+ "epoch": 9.489082969432314,
+ "grad_norm": 0.016423987224698067,
+ "learning_rate": 0.0006,
+ "loss": 4.171637535095215,
+ "step": 683
+ },
+ {
+ "epoch": 9.503056768558952,
+ "grad_norm": 0.015297142788767815,
+ "learning_rate": 0.0006,
+ "loss": 4.209469795227051,
+ "step": 684
+ },
+ {
+ "epoch": 9.51703056768559,
+ "grad_norm": 0.014817374758422375,
+ "learning_rate": 0.0006,
+ "loss": 4.216704845428467,
+ "step": 685
+ },
+ {
+ "epoch": 9.531004366812226,
+ "grad_norm": 0.015434044413268566,
+ "learning_rate": 0.0006,
+ "loss": 4.256552696228027,
+ "step": 686
+ },
+ {
+ "epoch": 9.544978165938865,
+ "grad_norm": 0.016138242557644844,
+ "learning_rate": 0.0006,
+ "loss": 4.218762397766113,
+ "step": 687
+ },
+ {
+ "epoch": 9.558951965065502,
+ "grad_norm": 0.017201369628310204,
+ "learning_rate": 0.0006,
+ "loss": 4.251995086669922,
+ "step": 688
+ },
+ {
+ "epoch": 9.57292576419214,
+ "grad_norm": 0.01714685745537281,
+ "learning_rate": 0.0006,
+ "loss": 4.219054222106934,
+ "step": 689
+ },
+ {
+ "epoch": 9.586899563318777,
+ "grad_norm": 0.020723173394799232,
+ "learning_rate": 0.0006,
+ "loss": 4.255344390869141,
+ "step": 690
+ },
+ {
+ "epoch": 9.600873362445414,
+ "grad_norm": 0.028826871886849403,
+ "learning_rate": 0.0006,
+ "loss": 4.221752166748047,
+ "step": 691
+ },
+ {
+ "epoch": 9.614847161572053,
+ "grad_norm": 0.03474748879671097,
+ "learning_rate": 0.0006,
+ "loss": 4.205111503601074,
+ "step": 692
+ },
+ {
+ "epoch": 9.62882096069869,
+ "grad_norm": 0.030536217615008354,
+ "learning_rate": 0.0006,
+ "loss": 4.232375144958496,
+ "step": 693
+ },
+ {
+ "epoch": 9.642794759825328,
+ "grad_norm": 0.03158785030245781,
+ "learning_rate": 0.0006,
+ "loss": 4.186178207397461,
+ "step": 694
+ },
+ {
+ "epoch": 9.656768558951965,
+ "grad_norm": 0.032505910843610764,
+ "learning_rate": 0.0006,
+ "loss": 4.208681106567383,
+ "step": 695
+ },
+ {
+ "epoch": 9.670742358078602,
+ "grad_norm": 0.025617435574531555,
+ "learning_rate": 0.0006,
+ "loss": 4.190085411071777,
+ "step": 696
+ },
+ {
+ "epoch": 9.68471615720524,
+ "grad_norm": 0.03047073632478714,
+ "learning_rate": 0.0006,
+ "loss": 4.210445404052734,
+ "step": 697
+ },
+ {
+ "epoch": 9.698689956331878,
+ "grad_norm": 0.033015694469213486,
+ "learning_rate": 0.0006,
+ "loss": 4.215723037719727,
+ "step": 698
+ },
+ {
+ "epoch": 9.712663755458514,
+ "grad_norm": 0.0364084430038929,
+ "learning_rate": 0.0006,
+ "loss": 4.192442417144775,
+ "step": 699
+ },
+ {
+ "epoch": 9.726637554585153,
+ "grad_norm": 0.03577317297458649,
+ "learning_rate": 0.0006,
+ "loss": 4.20793342590332,
+ "step": 700
+ },
+ {
+ "epoch": 9.74061135371179,
+ "grad_norm": 0.031464435160160065,
+ "learning_rate": 0.0006,
+ "loss": 4.205752372741699,
+ "step": 701
+ },
+ {
+ "epoch": 9.754585152838429,
+ "grad_norm": 0.030628090724349022,
+ "learning_rate": 0.0006,
+ "loss": 4.209503173828125,
+ "step": 702
+ },
+ {
+ "epoch": 9.768558951965066,
+ "grad_norm": 0.031171889975667,
+ "learning_rate": 0.0006,
+ "loss": 4.189100742340088,
+ "step": 703
+ },
+ {
+ "epoch": 9.782532751091702,
+ "grad_norm": 0.026728026568889618,
+ "learning_rate": 0.0006,
+ "loss": 4.175262928009033,
+ "step": 704
+ },
+ {
+ "epoch": 9.796506550218341,
+ "grad_norm": 0.02975568361580372,
+ "learning_rate": 0.0006,
+ "loss": 4.180237770080566,
+ "step": 705
+ },
+ {
+ "epoch": 9.810480349344978,
+ "grad_norm": 0.03690735250711441,
+ "learning_rate": 0.0006,
+ "loss": 4.160732269287109,
+ "step": 706
+ },
+ {
+ "epoch": 9.824454148471617,
+ "grad_norm": 0.03488203138113022,
+ "learning_rate": 0.0006,
+ "loss": 4.228294849395752,
+ "step": 707
+ },
+ {
+ "epoch": 9.838427947598253,
+ "grad_norm": 0.032557982951402664,
+ "learning_rate": 0.0006,
+ "loss": 4.144038200378418,
+ "step": 708
+ },
+ {
+ "epoch": 9.85240174672489,
+ "grad_norm": 0.03189995512366295,
+ "learning_rate": 0.0006,
+ "loss": 4.194624900817871,
+ "step": 709
+ },
+ {
+ "epoch": 9.866375545851529,
+ "grad_norm": 0.03439774736762047,
+ "learning_rate": 0.0006,
+ "loss": 4.216994762420654,
+ "step": 710
+ },
+ {
+ "epoch": 9.880349344978166,
+ "grad_norm": 0.03789396584033966,
+ "learning_rate": 0.0006,
+ "loss": 4.196347236633301,
+ "step": 711
+ },
+ {
+ "epoch": 9.894323144104803,
+ "grad_norm": 0.037980109453201294,
+ "learning_rate": 0.0006,
+ "loss": 4.213890075683594,
+ "step": 712
+ },
+ {
+ "epoch": 9.908296943231441,
+ "grad_norm": 0.043379005044698715,
+ "learning_rate": 0.0006,
+ "loss": 4.209582328796387,
+ "step": 713
+ },
+ {
+ "epoch": 9.922270742358078,
+ "grad_norm": 0.03881588950753212,
+ "learning_rate": 0.0006,
+ "loss": 4.210249900817871,
+ "step": 714
+ },
+ {
+ "epoch": 9.936244541484717,
+ "grad_norm": 0.038644567131996155,
+ "learning_rate": 0.0006,
+ "loss": 4.169578552246094,
+ "step": 715
+ },
+ {
+ "epoch": 9.950218340611354,
+ "grad_norm": 0.03676586598157883,
+ "learning_rate": 0.0006,
+ "loss": 4.234776020050049,
+ "step": 716
+ },
+ {
+ "epoch": 9.96419213973799,
+ "grad_norm": 0.032105959951877594,
+ "learning_rate": 0.0006,
+ "loss": 4.218995094299316,
+ "step": 717
+ },
+ {
+ "epoch": 9.97816593886463,
+ "grad_norm": 0.034359272569417953,
+ "learning_rate": 0.0006,
+ "loss": 4.209888458251953,
+ "step": 718
+ },
+ {
+ "epoch": 9.992139737991266,
+ "grad_norm": 0.02772289142012596,
+ "learning_rate": 0.0006,
+ "loss": 4.201578140258789,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.03038903884589672,
+ "learning_rate": 0.0006,
+ "loss": 4.170413494110107,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.344418048858643,
+ "eval_runtime": 50.1464,
+ "eval_samples_per_second": 48.697,
+ "eval_steps_per_second": 1.536,
+ "step": 720
+ },
+ {
+ "epoch": 10.013973799126637,
+ "grad_norm": 0.026941193267703056,
+ "learning_rate": 0.0006,
+ "loss": 4.122128486633301,
+ "step": 721
+ },
+ {
+ "epoch": 10.027947598253276,
+ "grad_norm": 0.028237640857696533,
+ "learning_rate": 0.0006,
+ "loss": 4.120541572570801,
+ "step": 722
+ },
+ {
+ "epoch": 10.041921397379912,
+ "grad_norm": 0.02316083386540413,
+ "learning_rate": 0.0006,
+ "loss": 4.127598285675049,
+ "step": 723
+ },
+ {
+ "epoch": 10.055895196506551,
+ "grad_norm": 0.02862458862364292,
+ "learning_rate": 0.0006,
+ "loss": 4.066249847412109,
+ "step": 724
+ },
+ {
+ "epoch": 10.069868995633188,
+ "grad_norm": 0.031772635877132416,
+ "learning_rate": 0.0006,
+ "loss": 4.1211652755737305,
+ "step": 725
+ },
+ {
+ "epoch": 10.083842794759825,
+ "grad_norm": 0.031032619997859,
+ "learning_rate": 0.0006,
+ "loss": 4.125894546508789,
+ "step": 726
+ },
+ {
+ "epoch": 10.097816593886463,
+ "grad_norm": 0.02898111566901207,
+ "learning_rate": 0.0006,
+ "loss": 4.119715213775635,
+ "step": 727
+ },
+ {
+ "epoch": 10.1117903930131,
+ "grad_norm": 0.030101103708148003,
+ "learning_rate": 0.0006,
+ "loss": 4.087604522705078,
+ "step": 728
+ },
+ {
+ "epoch": 10.125764192139737,
+ "grad_norm": 0.025814464315772057,
+ "learning_rate": 0.0006,
+ "loss": 4.124494552612305,
+ "step": 729
+ },
+ {
+ "epoch": 10.139737991266376,
+ "grad_norm": 0.029547641053795815,
+ "learning_rate": 0.0006,
+ "loss": 4.072463035583496,
+ "step": 730
+ },
+ {
+ "epoch": 10.153711790393013,
+ "grad_norm": 0.03424989432096481,
+ "learning_rate": 0.0006,
+ "loss": 4.111055374145508,
+ "step": 731
+ },
+ {
+ "epoch": 10.167685589519651,
+ "grad_norm": 0.0335191935300827,
+ "learning_rate": 0.0006,
+ "loss": 4.111437797546387,
+ "step": 732
+ },
+ {
+ "epoch": 10.181659388646288,
+ "grad_norm": 0.02894248627126217,
+ "learning_rate": 0.0006,
+ "loss": 4.133310317993164,
+ "step": 733
+ },
+ {
+ "epoch": 10.195633187772925,
+ "grad_norm": 0.0266376081854105,
+ "learning_rate": 0.0006,
+ "loss": 4.132228851318359,
+ "step": 734
+ },
+ {
+ "epoch": 10.209606986899564,
+ "grad_norm": 0.020824341103434563,
+ "learning_rate": 0.0006,
+ "loss": 4.110835075378418,
+ "step": 735
+ },
+ {
+ "epoch": 10.2235807860262,
+ "grad_norm": 0.021089477464556694,
+ "learning_rate": 0.0006,
+ "loss": 4.1186065673828125,
+ "step": 736
+ },
+ {
+ "epoch": 10.237554585152838,
+ "grad_norm": 0.023007674142718315,
+ "learning_rate": 0.0006,
+ "loss": 4.089912414550781,
+ "step": 737
+ },
+ {
+ "epoch": 10.251528384279476,
+ "grad_norm": 0.025911295786499977,
+ "learning_rate": 0.0006,
+ "loss": 4.10264778137207,
+ "step": 738
+ },
+ {
+ "epoch": 10.265502183406113,
+ "grad_norm": 0.02900099940598011,
+ "learning_rate": 0.0006,
+ "loss": 4.074974060058594,
+ "step": 739
+ },
+ {
+ "epoch": 10.279475982532752,
+ "grad_norm": 0.027182135730981827,
+ "learning_rate": 0.0006,
+ "loss": 4.107949256896973,
+ "step": 740
+ },
+ {
+ "epoch": 10.293449781659389,
+ "grad_norm": 0.027884794399142265,
+ "learning_rate": 0.0006,
+ "loss": 4.039497375488281,
+ "step": 741
+ },
+ {
+ "epoch": 10.307423580786025,
+ "grad_norm": 0.025900574401021004,
+ "learning_rate": 0.0006,
+ "loss": 4.063011646270752,
+ "step": 742
+ },
+ {
+ "epoch": 10.321397379912664,
+ "grad_norm": 0.023031197488307953,
+ "learning_rate": 0.0006,
+ "loss": 4.086951732635498,
+ "step": 743
+ },
+ {
+ "epoch": 10.335371179039301,
+ "grad_norm": 0.021363092586398125,
+ "learning_rate": 0.0006,
+ "loss": 4.140152454376221,
+ "step": 744
+ },
+ {
+ "epoch": 10.34934497816594,
+ "grad_norm": 0.019563496112823486,
+ "learning_rate": 0.0006,
+ "loss": 4.087207794189453,
+ "step": 745
+ },
+ {
+ "epoch": 10.363318777292577,
+ "grad_norm": 0.018893307074904442,
+ "learning_rate": 0.0006,
+ "loss": 4.087675094604492,
+ "step": 746
+ },
+ {
+ "epoch": 10.377292576419213,
+ "grad_norm": 0.020667923614382744,
+ "learning_rate": 0.0006,
+ "loss": 4.079525947570801,
+ "step": 747
+ },
+ {
+ "epoch": 10.391266375545852,
+ "grad_norm": 0.021774202585220337,
+ "learning_rate": 0.0006,
+ "loss": 4.107867240905762,
+ "step": 748
+ },
+ {
+ "epoch": 10.405240174672489,
+ "grad_norm": 0.020068392157554626,
+ "learning_rate": 0.0006,
+ "loss": 4.0873212814331055,
+ "step": 749
+ },
+ {
+ "epoch": 10.419213973799126,
+ "grad_norm": 0.01842055842280388,
+ "learning_rate": 0.0006,
+ "loss": 4.101090431213379,
+ "step": 750
+ },
+ {
+ "epoch": 10.433187772925764,
+ "grad_norm": 0.01795836165547371,
+ "learning_rate": 0.0006,
+ "loss": 4.050619602203369,
+ "step": 751
+ },
+ {
+ "epoch": 10.447161572052401,
+ "grad_norm": 0.019673889502882957,
+ "learning_rate": 0.0006,
+ "loss": 4.086307525634766,
+ "step": 752
+ },
+ {
+ "epoch": 10.46113537117904,
+ "grad_norm": 0.01977507211267948,
+ "learning_rate": 0.0006,
+ "loss": 4.0656023025512695,
+ "step": 753
+ },
+ {
+ "epoch": 10.475109170305677,
+ "grad_norm": 0.019471775740385056,
+ "learning_rate": 0.0006,
+ "loss": 4.046194076538086,
+ "step": 754
+ },
+ {
+ "epoch": 10.489082969432314,
+ "grad_norm": 0.018536966294050217,
+ "learning_rate": 0.0006,
+ "loss": 4.033197402954102,
+ "step": 755
+ },
+ {
+ "epoch": 10.503056768558952,
+ "grad_norm": 0.018902234733104706,
+ "learning_rate": 0.0006,
+ "loss": 4.060090065002441,
+ "step": 756
+ },
+ {
+ "epoch": 10.51703056768559,
+ "grad_norm": 0.01902388036251068,
+ "learning_rate": 0.0006,
+ "loss": 4.046975135803223,
+ "step": 757
+ },
+ {
+ "epoch": 10.531004366812226,
+ "grad_norm": 0.01699388213455677,
+ "learning_rate": 0.0006,
+ "loss": 4.081168174743652,
+ "step": 758
+ },
+ {
+ "epoch": 10.544978165938865,
+ "grad_norm": 0.022350501269102097,
+ "learning_rate": 0.0006,
+ "loss": 4.049786567687988,
+ "step": 759
+ },
+ {
+ "epoch": 10.558951965065502,
+ "grad_norm": 0.023642681539058685,
+ "learning_rate": 0.0006,
+ "loss": 4.055563926696777,
+ "step": 760
+ },
+ {
+ "epoch": 10.57292576419214,
+ "grad_norm": 0.02127036638557911,
+ "learning_rate": 0.0006,
+ "loss": 4.027631759643555,
+ "step": 761
+ },
+ {
+ "epoch": 10.586899563318777,
+ "grad_norm": 0.017590979114174843,
+ "learning_rate": 0.0006,
+ "loss": 4.0793137550354,
+ "step": 762
+ },
+ {
+ "epoch": 10.600873362445414,
+ "grad_norm": 0.016930999234318733,
+ "learning_rate": 0.0006,
+ "loss": 4.027737140655518,
+ "step": 763
+ },
+ {
+ "epoch": 10.614847161572053,
+ "grad_norm": 0.018824463710188866,
+ "learning_rate": 0.0006,
+ "loss": 4.046807289123535,
+ "step": 764
+ },
+ {
+ "epoch": 10.62882096069869,
+ "grad_norm": 0.020024564117193222,
+ "learning_rate": 0.0006,
+ "loss": 4.039668083190918,
+ "step": 765
+ },
+ {
+ "epoch": 10.642794759825328,
+ "grad_norm": 0.0220749881118536,
+ "learning_rate": 0.0006,
+ "loss": 4.031907558441162,
+ "step": 766
+ },
+ {
+ "epoch": 10.656768558951965,
+ "grad_norm": 0.023237163200974464,
+ "learning_rate": 0.0006,
+ "loss": 4.059335708618164,
+ "step": 767
+ },
+ {
+ "epoch": 10.670742358078602,
+ "grad_norm": 0.023948276415467262,
+ "learning_rate": 0.0006,
+ "loss": 4.054678440093994,
+ "step": 768
+ },
+ {
+ "epoch": 10.68471615720524,
+ "grad_norm": 0.02620924636721611,
+ "learning_rate": 0.0006,
+ "loss": 4.063493728637695,
+ "step": 769
+ },
+ {
+ "epoch": 10.698689956331878,
+ "grad_norm": 0.02867635153234005,
+ "learning_rate": 0.0006,
+ "loss": 4.036065578460693,
+ "step": 770
+ },
+ {
+ "epoch": 10.712663755458514,
+ "grad_norm": 0.028705662116408348,
+ "learning_rate": 0.0006,
+ "loss": 4.049670219421387,
+ "step": 771
+ },
+ {
+ "epoch": 10.726637554585153,
+ "grad_norm": 0.024740688502788544,
+ "learning_rate": 0.0006,
+ "loss": 4.06446647644043,
+ "step": 772
+ },
+ {
+ "epoch": 10.74061135371179,
+ "grad_norm": 0.03012487292289734,
+ "learning_rate": 0.0006,
+ "loss": 4.0461015701293945,
+ "step": 773
+ },
+ {
+ "epoch": 10.754585152838429,
+ "grad_norm": 0.03286127373576164,
+ "learning_rate": 0.0006,
+ "loss": 4.025463104248047,
+ "step": 774
+ },
+ {
+ "epoch": 10.768558951965066,
+ "grad_norm": 0.028815945610404015,
+ "learning_rate": 0.0006,
+ "loss": 4.064168930053711,
+ "step": 775
+ },
+ {
+ "epoch": 10.782532751091702,
+ "grad_norm": 0.028760947287082672,
+ "learning_rate": 0.0006,
+ "loss": 4.033624649047852,
+ "step": 776
+ },
+ {
+ "epoch": 10.796506550218341,
+ "grad_norm": 0.02942710369825363,
+ "learning_rate": 0.0006,
+ "loss": 4.0383501052856445,
+ "step": 777
+ },
+ {
+ "epoch": 10.810480349344978,
+ "grad_norm": 0.026153555139899254,
+ "learning_rate": 0.0006,
+ "loss": 4.040336608886719,
+ "step": 778
+ },
+ {
+ "epoch": 10.824454148471617,
+ "grad_norm": 0.025876570492982864,
+ "learning_rate": 0.0006,
+ "loss": 4.051267147064209,
+ "step": 779
+ },
+ {
+ "epoch": 10.838427947598253,
+ "grad_norm": 0.024056321009993553,
+ "learning_rate": 0.0006,
+ "loss": 4.035898208618164,
+ "step": 780
+ },
+ {
+ "epoch": 10.85240174672489,
+ "grad_norm": 0.023602450266480446,
+ "learning_rate": 0.0006,
+ "loss": 4.041120529174805,
+ "step": 781
+ },
+ {
+ "epoch": 10.866375545851529,
+ "grad_norm": 0.0207925196737051,
+ "learning_rate": 0.0006,
+ "loss": 4.030442237854004,
+ "step": 782
+ },
+ {
+ "epoch": 10.880349344978166,
+ "grad_norm": 0.021948475390672684,
+ "learning_rate": 0.0006,
+ "loss": 4.059929847717285,
+ "step": 783
+ },
+ {
+ "epoch": 10.894323144104803,
+ "grad_norm": 0.022555390372872353,
+ "learning_rate": 0.0006,
+ "loss": 4.077475547790527,
+ "step": 784
+ },
+ {
+ "epoch": 10.908296943231441,
+ "grad_norm": 0.020376233384013176,
+ "learning_rate": 0.0006,
+ "loss": 4.038033485412598,
+ "step": 785
+ },
+ {
+ "epoch": 10.922270742358078,
+ "grad_norm": 0.019903237000107765,
+ "learning_rate": 0.0006,
+ "loss": 4.036017417907715,
+ "step": 786
+ },
+ {
+ "epoch": 10.936244541484717,
+ "grad_norm": 0.019737590104341507,
+ "learning_rate": 0.0006,
+ "loss": 4.027589321136475,
+ "step": 787
+ },
+ {
+ "epoch": 10.950218340611354,
+ "grad_norm": 0.017857525497674942,
+ "learning_rate": 0.0006,
+ "loss": 4.039187431335449,
+ "step": 788
+ },
+ {
+ "epoch": 10.96419213973799,
+ "grad_norm": 0.019433340057730675,
+ "learning_rate": 0.0006,
+ "loss": 4.025817394256592,
+ "step": 789
+ },
+ {
+ "epoch": 10.97816593886463,
+ "grad_norm": 0.019131962209939957,
+ "learning_rate": 0.0006,
+ "loss": 4.050541877746582,
+ "step": 790
+ },
+ {
+ "epoch": 10.992139737991266,
+ "grad_norm": 0.01899166963994503,
+ "learning_rate": 0.0006,
+ "loss": 4.034682273864746,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.02292267233133316,
+ "learning_rate": 0.0006,
+ "loss": 4.02860689163208,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.223135471343994,
+ "eval_runtime": 50.1809,
+ "eval_samples_per_second": 48.664,
+ "eval_steps_per_second": 1.534,
+ "step": 792
+ },
+ {
+ "epoch": 11.013973799126637,
+ "grad_norm": 0.02331780269742012,
+ "learning_rate": 0.0006,
+ "loss": 3.9552907943725586,
+ "step": 793
+ },
+ {
+ "epoch": 11.027947598253276,
+ "grad_norm": 0.027006106451153755,
+ "learning_rate": 0.0006,
+ "loss": 3.9303345680236816,
+ "step": 794
+ },
+ {
+ "epoch": 11.041921397379912,
+ "grad_norm": 0.03403666242957115,
+ "learning_rate": 0.0006,
+ "loss": 3.93170166015625,
+ "step": 795
+ },
+ {
+ "epoch": 11.055895196506551,
+ "grad_norm": 0.03784231096506119,
+ "learning_rate": 0.0006,
+ "loss": 3.9460182189941406,
+ "step": 796
+ },
+ {
+ "epoch": 11.069868995633188,
+ "grad_norm": 0.036992497742176056,
+ "learning_rate": 0.0006,
+ "loss": 3.9788053035736084,
+ "step": 797
+ },
+ {
+ "epoch": 11.083842794759825,
+ "grad_norm": 0.040899068117141724,
+ "learning_rate": 0.0006,
+ "loss": 3.97415828704834,
+ "step": 798
+ },
+ {
+ "epoch": 11.097816593886463,
+ "grad_norm": 0.0333116240799427,
+ "learning_rate": 0.0006,
+ "loss": 3.9691474437713623,
+ "step": 799
+ },
+ {
+ "epoch": 11.1117903930131,
+ "grad_norm": 0.03146163746714592,
+ "learning_rate": 0.0006,
+ "loss": 3.95757794380188,
+ "step": 800
+ },
+ {
+ "epoch": 11.125764192139737,
+ "grad_norm": 0.031018080189824104,
+ "learning_rate": 0.0006,
+ "loss": 3.9483275413513184,
+ "step": 801
+ },
+ {
+ "epoch": 11.139737991266376,
+ "grad_norm": 0.03301657736301422,
+ "learning_rate": 0.0006,
+ "loss": 3.972309112548828,
+ "step": 802
+ },
+ {
+ "epoch": 11.153711790393013,
+ "grad_norm": 0.03665755316615105,
+ "learning_rate": 0.0006,
+ "loss": 3.963214874267578,
+ "step": 803
+ },
+ {
+ "epoch": 11.167685589519651,
+ "grad_norm": 0.038088612258434296,
+ "learning_rate": 0.0006,
+ "loss": 3.9526877403259277,
+ "step": 804
+ },
+ {
+ "epoch": 11.181659388646288,
+ "grad_norm": 0.035294584929943085,
+ "learning_rate": 0.0006,
+ "loss": 3.9849953651428223,
+ "step": 805
+ },
+ {
+ "epoch": 11.195633187772925,
+ "grad_norm": 0.03202495723962784,
+ "learning_rate": 0.0006,
+ "loss": 3.944120407104492,
+ "step": 806
+ },
+ {
+ "epoch": 11.209606986899564,
+ "grad_norm": 0.028670601546764374,
+ "learning_rate": 0.0006,
+ "loss": 3.9752721786499023,
+ "step": 807
+ },
+ {
+ "epoch": 11.2235807860262,
+ "grad_norm": 0.032401736825704575,
+ "learning_rate": 0.0006,
+ "loss": 3.986171245574951,
+ "step": 808
+ },
+ {
+ "epoch": 11.237554585152838,
+ "grad_norm": 0.033387646079063416,
+ "learning_rate": 0.0006,
+ "loss": 3.977919101715088,
+ "step": 809
+ },
+ {
+ "epoch": 11.251528384279476,
+ "grad_norm": 0.03134278208017349,
+ "learning_rate": 0.0006,
+ "loss": 3.9734086990356445,
+ "step": 810
+ },
+ {
+ "epoch": 11.265502183406113,
+ "grad_norm": 0.030449511483311653,
+ "learning_rate": 0.0006,
+ "loss": 3.995955228805542,
+ "step": 811
+ },
+ {
+ "epoch": 11.279475982532752,
+ "grad_norm": 0.03138570487499237,
+ "learning_rate": 0.0006,
+ "loss": 3.9690403938293457,
+ "step": 812
+ },
+ {
+ "epoch": 11.293449781659389,
+ "grad_norm": 0.03469259291887283,
+ "learning_rate": 0.0006,
+ "loss": 3.9562559127807617,
+ "step": 813
+ },
+ {
+ "epoch": 11.307423580786025,
+ "grad_norm": 0.03249761089682579,
+ "learning_rate": 0.0006,
+ "loss": 3.950381278991699,
+ "step": 814
+ },
+ {
+ "epoch": 11.321397379912664,
+ "grad_norm": 0.03012247197329998,
+ "learning_rate": 0.0006,
+ "loss": 3.9659230709075928,
+ "step": 815
+ },
+ {
+ "epoch": 11.335371179039301,
+ "grad_norm": 0.026212701573967934,
+ "learning_rate": 0.0006,
+ "loss": 3.956185817718506,
+ "step": 816
+ },
+ {
+ "epoch": 11.34934497816594,
+ "grad_norm": 0.02690894901752472,
+ "learning_rate": 0.0006,
+ "loss": 3.9513344764709473,
+ "step": 817
+ },
+ {
+ "epoch": 11.363318777292577,
+ "grad_norm": 0.02419866994023323,
+ "learning_rate": 0.0006,
+ "loss": 3.997973680496216,
+ "step": 818
+ },
+ {
+ "epoch": 11.377292576419213,
+ "grad_norm": 0.027116507291793823,
+ "learning_rate": 0.0006,
+ "loss": 3.9817705154418945,
+ "step": 819
+ },
+ {
+ "epoch": 11.391266375545852,
+ "grad_norm": 0.029049331322312355,
+ "learning_rate": 0.0006,
+ "loss": 3.951998472213745,
+ "step": 820
+ },
+ {
+ "epoch": 11.405240174672489,
+ "grad_norm": 0.026706157252192497,
+ "learning_rate": 0.0006,
+ "loss": 3.9744365215301514,
+ "step": 821
+ },
+ {
+ "epoch": 11.419213973799126,
+ "grad_norm": 0.025000600144267082,
+ "learning_rate": 0.0006,
+ "loss": 3.959059238433838,
+ "step": 822
+ },
+ {
+ "epoch": 11.433187772925764,
+ "grad_norm": 0.024861274287104607,
+ "learning_rate": 0.0006,
+ "loss": 3.9474871158599854,
+ "step": 823
+ },
+ {
+ "epoch": 11.447161572052401,
+ "grad_norm": 0.023006360977888107,
+ "learning_rate": 0.0006,
+ "loss": 3.924236297607422,
+ "step": 824
+ },
+ {
+ "epoch": 11.46113537117904,
+ "grad_norm": 0.023747073486447334,
+ "learning_rate": 0.0006,
+ "loss": 3.9383111000061035,
+ "step": 825
+ },
+ {
+ "epoch": 11.475109170305677,
+ "grad_norm": 0.027958976104855537,
+ "learning_rate": 0.0006,
+ "loss": 3.989518880844116,
+ "step": 826
+ },
+ {
+ "epoch": 11.489082969432314,
+ "grad_norm": 0.026648882776498795,
+ "learning_rate": 0.0006,
+ "loss": 3.9455833435058594,
+ "step": 827
+ },
+ {
+ "epoch": 11.503056768558952,
+ "grad_norm": 0.023990288376808167,
+ "learning_rate": 0.0006,
+ "loss": 3.9832968711853027,
+ "step": 828
+ },
+ {
+ "epoch": 11.51703056768559,
+ "grad_norm": 0.02722238190472126,
+ "learning_rate": 0.0006,
+ "loss": 3.924104690551758,
+ "step": 829
+ },
+ {
+ "epoch": 11.531004366812226,
+ "grad_norm": 0.026512466371059418,
+ "learning_rate": 0.0006,
+ "loss": 3.9410343170166016,
+ "step": 830
+ },
+ {
+ "epoch": 11.544978165938865,
+ "grad_norm": 0.022135436534881592,
+ "learning_rate": 0.0006,
+ "loss": 3.903899669647217,
+ "step": 831
+ },
+ {
+ "epoch": 11.558951965065502,
+ "grad_norm": 0.022456489503383636,
+ "learning_rate": 0.0006,
+ "loss": 3.962076187133789,
+ "step": 832
+ },
+ {
+ "epoch": 11.57292576419214,
+ "grad_norm": 0.024932855740189552,
+ "learning_rate": 0.0006,
+ "loss": 3.9023091793060303,
+ "step": 833
+ },
+ {
+ "epoch": 11.586899563318777,
+ "grad_norm": 0.02856597490608692,
+ "learning_rate": 0.0006,
+ "loss": 3.928679943084717,
+ "step": 834
+ },
+ {
+ "epoch": 11.600873362445414,
+ "grad_norm": 0.034227993339300156,
+ "learning_rate": 0.0006,
+ "loss": 3.9686708450317383,
+ "step": 835
+ },
+ {
+ "epoch": 11.614847161572053,
+ "grad_norm": 0.03348609432578087,
+ "learning_rate": 0.0006,
+ "loss": 4.001498699188232,
+ "step": 836
+ },
+ {
+ "epoch": 11.62882096069869,
+ "grad_norm": 0.028687726706266403,
+ "learning_rate": 0.0006,
+ "loss": 3.9448747634887695,
+ "step": 837
+ },
+ {
+ "epoch": 11.642794759825328,
+ "grad_norm": 0.030512670055031776,
+ "learning_rate": 0.0006,
+ "loss": 3.967744827270508,
+ "step": 838
+ },
+ {
+ "epoch": 11.656768558951965,
+ "grad_norm": 0.028223708271980286,
+ "learning_rate": 0.0006,
+ "loss": 3.937486171722412,
+ "step": 839
+ },
+ {
+ "epoch": 11.670742358078602,
+ "grad_norm": 0.026596587151288986,
+ "learning_rate": 0.0006,
+ "loss": 3.9503097534179688,
+ "step": 840
+ },
+ {
+ "epoch": 11.68471615720524,
+ "grad_norm": 0.025357289239764214,
+ "learning_rate": 0.0006,
+ "loss": 3.9005143642425537,
+ "step": 841
+ },
+ {
+ "epoch": 11.698689956331878,
+ "grad_norm": 0.027513934299349785,
+ "learning_rate": 0.0006,
+ "loss": 3.9426188468933105,
+ "step": 842
+ },
+ {
+ "epoch": 11.712663755458514,
+ "grad_norm": 0.024877114221453667,
+ "learning_rate": 0.0006,
+ "loss": 3.9422965049743652,
+ "step": 843
+ },
+ {
+ "epoch": 11.726637554585153,
+ "grad_norm": 0.024543913081288338,
+ "learning_rate": 0.0006,
+ "loss": 3.9211392402648926,
+ "step": 844
+ },
+ {
+ "epoch": 11.74061135371179,
+ "grad_norm": 0.02748306654393673,
+ "learning_rate": 0.0006,
+ "loss": 3.9308085441589355,
+ "step": 845
+ },
+ {
+ "epoch": 11.754585152838429,
+ "grad_norm": 0.02310740016400814,
+ "learning_rate": 0.0006,
+ "loss": 3.9191694259643555,
+ "step": 846
+ },
+ {
+ "epoch": 11.768558951965066,
+ "grad_norm": 0.01961519382894039,
+ "learning_rate": 0.0006,
+ "loss": 3.963473081588745,
+ "step": 847
+ },
+ {
+ "epoch": 11.782532751091702,
+ "grad_norm": 0.02019876055419445,
+ "learning_rate": 0.0006,
+ "loss": 3.9336318969726562,
+ "step": 848
+ },
+ {
+ "epoch": 11.796506550218341,
+ "grad_norm": 0.017846928909420967,
+ "learning_rate": 0.0006,
+ "loss": 3.9323928356170654,
+ "step": 849
+ },
+ {
+ "epoch": 11.810480349344978,
+ "grad_norm": 0.0204033050686121,
+ "learning_rate": 0.0006,
+ "loss": 3.9221231937408447,
+ "step": 850
+ },
+ {
+ "epoch": 11.824454148471617,
+ "grad_norm": 0.0186605304479599,
+ "learning_rate": 0.0006,
+ "loss": 3.964756965637207,
+ "step": 851
+ },
+ {
+ "epoch": 11.838427947598253,
+ "grad_norm": 0.01672505773603916,
+ "learning_rate": 0.0006,
+ "loss": 3.921032667160034,
+ "step": 852
+ },
+ {
+ "epoch": 11.85240174672489,
+ "grad_norm": 0.01734270341694355,
+ "learning_rate": 0.0006,
+ "loss": 3.9388551712036133,
+ "step": 853
+ },
+ {
+ "epoch": 11.866375545851529,
+ "grad_norm": 0.01686406321823597,
+ "learning_rate": 0.0006,
+ "loss": 3.9283366203308105,
+ "step": 854
+ },
+ {
+ "epoch": 11.880349344978166,
+ "grad_norm": 0.01593155413866043,
+ "learning_rate": 0.0006,
+ "loss": 3.9095754623413086,
+ "step": 855
+ },
+ {
+ "epoch": 11.894323144104803,
+ "grad_norm": 0.014560039155185223,
+ "learning_rate": 0.0006,
+ "loss": 3.942214012145996,
+ "step": 856
+ },
+ {
+ "epoch": 11.908296943231441,
+ "grad_norm": 0.016584530472755432,
+ "learning_rate": 0.0006,
+ "loss": 3.8745198249816895,
+ "step": 857
+ },
+ {
+ "epoch": 11.922270742358078,
+ "grad_norm": 0.016951464116573334,
+ "learning_rate": 0.0006,
+ "loss": 3.9224963188171387,
+ "step": 858
+ },
+ {
+ "epoch": 11.936244541484717,
+ "grad_norm": 0.017965901643037796,
+ "learning_rate": 0.0006,
+ "loss": 3.886237621307373,
+ "step": 859
+ },
+ {
+ "epoch": 11.950218340611354,
+ "grad_norm": 0.01874147541821003,
+ "learning_rate": 0.0006,
+ "loss": 3.9200339317321777,
+ "step": 860
+ },
+ {
+ "epoch": 11.96419213973799,
+ "grad_norm": 0.021464595571160316,
+ "learning_rate": 0.0006,
+ "loss": 3.9424729347229004,
+ "step": 861
+ },
+ {
+ "epoch": 11.97816593886463,
+ "grad_norm": 0.02506706677377224,
+ "learning_rate": 0.0006,
+ "loss": 3.9516968727111816,
+ "step": 862
+ },
+ {
+ "epoch": 11.992139737991266,
+ "grad_norm": 0.02550777979195118,
+ "learning_rate": 0.0006,
+ "loss": 3.9148871898651123,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.022032644599676132,
+ "learning_rate": 0.0006,
+ "loss": 3.934220314025879,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.146186828613281,
+ "eval_runtime": 70.9324,
+ "eval_samples_per_second": 34.427,
+ "eval_steps_per_second": 1.086,
+ "step": 864
+ },
+ {
+ "epoch": 12.013973799126637,
+ "grad_norm": 0.021564407274127007,
+ "learning_rate": 0.0006,
+ "loss": 3.8425402641296387,
+ "step": 865
+ },
+ {
+ "epoch": 12.027947598253276,
+ "grad_norm": 0.021265074610710144,
+ "learning_rate": 0.0006,
+ "loss": 3.8457272052764893,
+ "step": 866
+ },
+ {
+ "epoch": 12.041921397379912,
+ "grad_norm": 0.02154017984867096,
+ "learning_rate": 0.0006,
+ "loss": 3.810920238494873,
+ "step": 867
+ },
+ {
+ "epoch": 12.055895196506551,
+ "grad_norm": 0.020422060042619705,
+ "learning_rate": 0.0006,
+ "loss": 3.8347911834716797,
+ "step": 868
+ },
+ {
+ "epoch": 12.069868995633188,
+ "grad_norm": 0.01949428766965866,
+ "learning_rate": 0.0006,
+ "loss": 3.831073760986328,
+ "step": 869
+ },
+ {
+ "epoch": 12.083842794759825,
+ "grad_norm": 0.021055635064840317,
+ "learning_rate": 0.0006,
+ "loss": 3.8869409561157227,
+ "step": 870
+ },
+ {
+ "epoch": 12.097816593886463,
+ "grad_norm": 0.02397136203944683,
+ "learning_rate": 0.0006,
+ "loss": 3.837860107421875,
+ "step": 871
+ },
+ {
+ "epoch": 12.1117903930131,
+ "grad_norm": 0.02733064442873001,
+ "learning_rate": 0.0006,
+ "loss": 3.8453102111816406,
+ "step": 872
+ },
+ {
+ "epoch": 12.125764192139737,
+ "grad_norm": 0.03023727424442768,
+ "learning_rate": 0.0006,
+ "loss": 3.8106770515441895,
+ "step": 873
+ },
+ {
+ "epoch": 12.139737991266376,
+ "grad_norm": 0.0334315188229084,
+ "learning_rate": 0.0006,
+ "loss": 3.835714817047119,
+ "step": 874
+ },
+ {
+ "epoch": 12.153711790393013,
+ "grad_norm": 0.03233368694782257,
+ "learning_rate": 0.0006,
+ "loss": 3.8509063720703125,
+ "step": 875
+ },
+ {
+ "epoch": 12.167685589519651,
+ "grad_norm": 0.03522663936018944,
+ "learning_rate": 0.0006,
+ "loss": 3.854410171508789,
+ "step": 876
+ },
+ {
+ "epoch": 12.181659388646288,
+ "grad_norm": 0.04753761738538742,
+ "learning_rate": 0.0006,
+ "loss": 3.882387638092041,
+ "step": 877
+ },
+ {
+ "epoch": 12.195633187772925,
+ "grad_norm": 0.049719441682100296,
+ "learning_rate": 0.0006,
+ "loss": 3.8863918781280518,
+ "step": 878
+ },
+ {
+ "epoch": 12.209606986899564,
+ "grad_norm": 0.0482778400182724,
+ "learning_rate": 0.0006,
+ "loss": 3.8418054580688477,
+ "step": 879
+ },
+ {
+ "epoch": 12.2235807860262,
+ "grad_norm": 0.04967353492975235,
+ "learning_rate": 0.0006,
+ "loss": 3.88840389251709,
+ "step": 880
+ },
+ {
+ "epoch": 12.237554585152838,
+ "grad_norm": 0.04709675535559654,
+ "learning_rate": 0.0006,
+ "loss": 3.8831706047058105,
+ "step": 881
+ },
+ {
+ "epoch": 12.251528384279476,
+ "grad_norm": 0.05031110718846321,
+ "learning_rate": 0.0006,
+ "loss": 3.8964877128601074,
+ "step": 882
+ },
+ {
+ "epoch": 12.265502183406113,
+ "grad_norm": 0.04771656170487404,
+ "learning_rate": 0.0006,
+ "loss": 3.902888774871826,
+ "step": 883
+ },
+ {
+ "epoch": 12.279475982532752,
+ "grad_norm": 0.041541457176208496,
+ "learning_rate": 0.0006,
+ "loss": 3.849850654602051,
+ "step": 884
+ },
+ {
+ "epoch": 12.293449781659389,
+ "grad_norm": 0.04055247828364372,
+ "learning_rate": 0.0006,
+ "loss": 3.907242774963379,
+ "step": 885
+ },
+ {
+ "epoch": 12.307423580786025,
+ "grad_norm": 0.0392373651266098,
+ "learning_rate": 0.0006,
+ "loss": 3.882129669189453,
+ "step": 886
+ },
+ {
+ "epoch": 12.321397379912664,
+ "grad_norm": 0.040552686899900436,
+ "learning_rate": 0.0006,
+ "loss": 3.8719077110290527,
+ "step": 887
+ },
+ {
+ "epoch": 12.335371179039301,
+ "grad_norm": 0.03997429832816124,
+ "learning_rate": 0.0006,
+ "loss": 3.8770203590393066,
+ "step": 888
+ },
+ {
+ "epoch": 12.34934497816594,
+ "grad_norm": 0.04006315395236015,
+ "learning_rate": 0.0006,
+ "loss": 3.888833999633789,
+ "step": 889
+ },
+ {
+ "epoch": 12.363318777292577,
+ "grad_norm": 0.04192065820097923,
+ "learning_rate": 0.0006,
+ "loss": 3.9480466842651367,
+ "step": 890
+ },
+ {
+ "epoch": 12.377292576419213,
+ "grad_norm": 0.03901645913720131,
+ "learning_rate": 0.0006,
+ "loss": 3.8987879753112793,
+ "step": 891
+ },
+ {
+ "epoch": 12.391266375545852,
+ "grad_norm": 0.034923430532217026,
+ "learning_rate": 0.0006,
+ "loss": 3.887423515319824,
+ "step": 892
+ },
+ {
+ "epoch": 12.405240174672489,
+ "grad_norm": 0.03397240489721298,
+ "learning_rate": 0.0006,
+ "loss": 3.874734878540039,
+ "step": 893
+ },
+ {
+ "epoch": 12.419213973799126,
+ "grad_norm": 0.03498395159840584,
+ "learning_rate": 0.0006,
+ "loss": 3.8725318908691406,
+ "step": 894
+ },
+ {
+ "epoch": 12.433187772925764,
+ "grad_norm": 0.03299591317772865,
+ "learning_rate": 0.0006,
+ "loss": 3.8542797565460205,
+ "step": 895
+ },
+ {
+ "epoch": 12.447161572052401,
+ "grad_norm": 0.03591961786150932,
+ "learning_rate": 0.0006,
+ "loss": 3.8667421340942383,
+ "step": 896
+ },
+ {
+ "epoch": 12.46113537117904,
+ "grad_norm": 0.032906632870435715,
+ "learning_rate": 0.0006,
+ "loss": 3.802811622619629,
+ "step": 897
+ },
+ {
+ "epoch": 12.475109170305677,
+ "grad_norm": 0.02919355221092701,
+ "learning_rate": 0.0006,
+ "loss": 3.9085006713867188,
+ "step": 898
+ },
+ {
+ "epoch": 12.489082969432314,
+ "grad_norm": 0.02636081911623478,
+ "learning_rate": 0.0006,
+ "loss": 3.876291275024414,
+ "step": 899
+ },
+ {
+ "epoch": 12.503056768558952,
+ "grad_norm": 0.027786940336227417,
+ "learning_rate": 0.0006,
+ "loss": 3.813384532928467,
+ "step": 900
+ },
+ {
+ "epoch": 12.51703056768559,
+ "grad_norm": 0.021504681557416916,
+ "learning_rate": 0.0006,
+ "loss": 3.8531389236450195,
+ "step": 901
+ },
+ {
+ "epoch": 12.531004366812226,
+ "grad_norm": 0.020176850259304047,
+ "learning_rate": 0.0006,
+ "loss": 3.8540682792663574,
+ "step": 902
+ },
+ {
+ "epoch": 12.544978165938865,
+ "grad_norm": 0.018069395795464516,
+ "learning_rate": 0.0006,
+ "loss": 3.8401103019714355,
+ "step": 903
+ },
+ {
+ "epoch": 12.558951965065502,
+ "grad_norm": 0.017131980508565903,
+ "learning_rate": 0.0006,
+ "loss": 3.8590402603149414,
+ "step": 904
+ },
+ {
+ "epoch": 12.57292576419214,
+ "grad_norm": 0.016838181763887405,
+ "learning_rate": 0.0006,
+ "loss": 3.816793441772461,
+ "step": 905
+ },
+ {
+ "epoch": 12.586899563318777,
+ "grad_norm": 0.01688799448311329,
+ "learning_rate": 0.0006,
+ "loss": 3.8501386642456055,
+ "step": 906
+ },
+ {
+ "epoch": 12.600873362445414,
+ "grad_norm": 0.018547389656305313,
+ "learning_rate": 0.0006,
+ "loss": 3.844679355621338,
+ "step": 907
+ },
+ {
+ "epoch": 12.614847161572053,
+ "grad_norm": 0.01693912222981453,
+ "learning_rate": 0.0006,
+ "loss": 3.8392562866210938,
+ "step": 908
+ },
+ {
+ "epoch": 12.62882096069869,
+ "grad_norm": 0.017632123082876205,
+ "learning_rate": 0.0006,
+ "loss": 3.8433165550231934,
+ "step": 909
+ },
+ {
+ "epoch": 12.642794759825328,
+ "grad_norm": 0.017826121300458908,
+ "learning_rate": 0.0006,
+ "loss": 3.880542039871216,
+ "step": 910
+ },
+ {
+ "epoch": 12.656768558951965,
+ "grad_norm": 0.01775546185672283,
+ "learning_rate": 0.0006,
+ "loss": 3.828543186187744,
+ "step": 911
+ },
+ {
+ "epoch": 12.670742358078602,
+ "grad_norm": 0.016220970079302788,
+ "learning_rate": 0.0006,
+ "loss": 3.835036039352417,
+ "step": 912
+ },
+ {
+ "epoch": 12.68471615720524,
+ "grad_norm": 0.015805263072252274,
+ "learning_rate": 0.0006,
+ "loss": 3.860929489135742,
+ "step": 913
+ },
+ {
+ "epoch": 12.698689956331878,
+ "grad_norm": 0.014601027593016624,
+ "learning_rate": 0.0006,
+ "loss": 3.849916934967041,
+ "step": 914
+ },
+ {
+ "epoch": 12.712663755458514,
+ "grad_norm": 0.014955640770494938,
+ "learning_rate": 0.0006,
+ "loss": 3.82222843170166,
+ "step": 915
+ },
+ {
+ "epoch": 12.726637554585153,
+ "grad_norm": 0.01635930687189102,
+ "learning_rate": 0.0006,
+ "loss": 3.8616011142730713,
+ "step": 916
+ },
+ {
+ "epoch": 12.74061135371179,
+ "grad_norm": 0.015701569616794586,
+ "learning_rate": 0.0006,
+ "loss": 3.827305316925049,
+ "step": 917
+ },
+ {
+ "epoch": 12.754585152838429,
+ "grad_norm": 0.014878005720674992,
+ "learning_rate": 0.0006,
+ "loss": 3.8204379081726074,
+ "step": 918
+ },
+ {
+ "epoch": 12.768558951965066,
+ "grad_norm": 0.015863968059420586,
+ "learning_rate": 0.0006,
+ "loss": 3.8282384872436523,
+ "step": 919
+ },
+ {
+ "epoch": 12.782532751091702,
+ "grad_norm": 0.015376720577478409,
+ "learning_rate": 0.0006,
+ "loss": 3.8476157188415527,
+ "step": 920
+ },
+ {
+ "epoch": 12.796506550218341,
+ "grad_norm": 0.015112238936126232,
+ "learning_rate": 0.0006,
+ "loss": 3.814873695373535,
+ "step": 921
+ },
+ {
+ "epoch": 12.810480349344978,
+ "grad_norm": 0.014457261189818382,
+ "learning_rate": 0.0006,
+ "loss": 3.874340295791626,
+ "step": 922
+ },
+ {
+ "epoch": 12.824454148471617,
+ "grad_norm": 0.013799191452562809,
+ "learning_rate": 0.0006,
+ "loss": 3.8461344242095947,
+ "step": 923
+ },
+ {
+ "epoch": 12.838427947598253,
+ "grad_norm": 0.015976861119270325,
+ "learning_rate": 0.0006,
+ "loss": 3.8348283767700195,
+ "step": 924
+ },
+ {
+ "epoch": 12.85240174672489,
+ "grad_norm": 0.016569344326853752,
+ "learning_rate": 0.0006,
+ "loss": 3.8375229835510254,
+ "step": 925
+ },
+ {
+ "epoch": 12.866375545851529,
+ "grad_norm": 0.016443882137537003,
+ "learning_rate": 0.0006,
+ "loss": 3.814178943634033,
+ "step": 926
+ },
+ {
+ "epoch": 12.880349344978166,
+ "grad_norm": 0.01687130145728588,
+ "learning_rate": 0.0006,
+ "loss": 3.7934679985046387,
+ "step": 927
+ },
+ {
+ "epoch": 12.894323144104803,
+ "grad_norm": 0.01750864088535309,
+ "learning_rate": 0.0006,
+ "loss": 3.8297150135040283,
+ "step": 928
+ },
+ {
+ "epoch": 12.908296943231441,
+ "grad_norm": 0.017512314021587372,
+ "learning_rate": 0.0006,
+ "loss": 3.7785584926605225,
+ "step": 929
+ },
+ {
+ "epoch": 12.922270742358078,
+ "grad_norm": 0.01678168773651123,
+ "learning_rate": 0.0006,
+ "loss": 3.8569579124450684,
+ "step": 930
+ },
+ {
+ "epoch": 12.936244541484717,
+ "grad_norm": 0.017443843185901642,
+ "learning_rate": 0.0006,
+ "loss": 3.8003761768341064,
+ "step": 931
+ },
+ {
+ "epoch": 12.950218340611354,
+ "grad_norm": 0.017418883740901947,
+ "learning_rate": 0.0006,
+ "loss": 3.8066251277923584,
+ "step": 932
+ },
+ {
+ "epoch": 12.96419213973799,
+ "grad_norm": 0.01592562161386013,
+ "learning_rate": 0.0006,
+ "loss": 3.8218679428100586,
+ "step": 933
+ },
+ {
+ "epoch": 12.97816593886463,
+ "grad_norm": 0.01742086559534073,
+ "learning_rate": 0.0006,
+ "loss": 3.8229286670684814,
+ "step": 934
+ },
+ {
+ "epoch": 12.992139737991266,
+ "grad_norm": 0.017524391412734985,
+ "learning_rate": 0.0006,
+ "loss": 3.810349941253662,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.019961200654506683,
+ "learning_rate": 0.0006,
+ "loss": 3.8229546546936035,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.08996057510376,
+ "eval_runtime": 49.9041,
+ "eval_samples_per_second": 48.934,
+ "eval_steps_per_second": 1.543,
+ "step": 936
+ },
+ {
+ "epoch": 13.013973799126637,
+ "grad_norm": 0.023570898920297623,
+ "learning_rate": 0.0006,
+ "loss": 3.7133145332336426,
+ "step": 937
+ },
+ {
+ "epoch": 13.027947598253276,
+ "grad_norm": 0.03165869787335396,
+ "learning_rate": 0.0006,
+ "loss": 3.7199676036834717,
+ "step": 938
+ },
+ {
+ "epoch": 13.041921397379912,
+ "grad_norm": 0.03561289608478546,
+ "learning_rate": 0.0006,
+ "loss": 3.7414278984069824,
+ "step": 939
+ },
+ {
+ "epoch": 13.055895196506551,
+ "grad_norm": 0.03167610988020897,
+ "learning_rate": 0.0006,
+ "loss": 3.7263808250427246,
+ "step": 940
+ },
+ {
+ "epoch": 13.069868995633188,
+ "grad_norm": 0.035912878811359406,
+ "learning_rate": 0.0006,
+ "loss": 3.7170684337615967,
+ "step": 941
+ },
+ {
+ "epoch": 13.083842794759825,
+ "grad_norm": 0.03632035478949547,
+ "learning_rate": 0.0006,
+ "loss": 3.750077724456787,
+ "step": 942
+ },
+ {
+ "epoch": 13.097816593886463,
+ "grad_norm": 0.031844258308410645,
+ "learning_rate": 0.0006,
+ "loss": 3.7065911293029785,
+ "step": 943
+ },
+ {
+ "epoch": 13.1117903930131,
+ "grad_norm": 0.03410554304718971,
+ "learning_rate": 0.0006,
+ "loss": 3.739224910736084,
+ "step": 944
+ },
+ {
+ "epoch": 13.125764192139737,
+ "grad_norm": 0.03375937044620514,
+ "learning_rate": 0.0006,
+ "loss": 3.6903367042541504,
+ "step": 945
+ },
+ {
+ "epoch": 13.139737991266376,
+ "grad_norm": 0.03705555200576782,
+ "learning_rate": 0.0006,
+ "loss": 3.778822422027588,
+ "step": 946
+ },
+ {
+ "epoch": 13.153711790393013,
+ "grad_norm": 0.03603963926434517,
+ "learning_rate": 0.0006,
+ "loss": 3.73783802986145,
+ "step": 947
+ },
+ {
+ "epoch": 13.167685589519651,
+ "grad_norm": 0.034089673310518265,
+ "learning_rate": 0.0006,
+ "loss": 3.7886078357696533,
+ "step": 948
+ },
+ {
+ "epoch": 13.181659388646288,
+ "grad_norm": 0.03745635598897934,
+ "learning_rate": 0.0006,
+ "loss": 3.76809024810791,
+ "step": 949
+ },
+ {
+ "epoch": 13.195633187772925,
+ "grad_norm": 0.04209613427519798,
+ "learning_rate": 0.0006,
+ "loss": 3.7813467979431152,
+ "step": 950
+ },
+ {
+ "epoch": 13.209606986899564,
+ "grad_norm": 0.036846764385700226,
+ "learning_rate": 0.0006,
+ "loss": 3.7726383209228516,
+ "step": 951
+ },
+ {
+ "epoch": 13.2235807860262,
+ "grad_norm": 0.036949072033166885,
+ "learning_rate": 0.0006,
+ "loss": 3.7197751998901367,
+ "step": 952
+ },
+ {
+ "epoch": 13.237554585152838,
+ "grad_norm": 0.03458063304424286,
+ "learning_rate": 0.0006,
+ "loss": 3.7695436477661133,
+ "step": 953
+ },
+ {
+ "epoch": 13.251528384279476,
+ "grad_norm": 0.038074951618909836,
+ "learning_rate": 0.0006,
+ "loss": 3.7531425952911377,
+ "step": 954
+ },
+ {
+ "epoch": 13.265502183406113,
+ "grad_norm": 0.03661646693944931,
+ "learning_rate": 0.0006,
+ "loss": 3.767953872680664,
+ "step": 955
+ },
+ {
+ "epoch": 13.279475982532752,
+ "grad_norm": 0.039892520755529404,
+ "learning_rate": 0.0006,
+ "loss": 3.7687599658966064,
+ "step": 956
+ },
+ {
+ "epoch": 13.293449781659389,
+ "grad_norm": 0.036572884768247604,
+ "learning_rate": 0.0006,
+ "loss": 3.7693774700164795,
+ "step": 957
+ },
+ {
+ "epoch": 13.307423580786025,
+ "grad_norm": 0.03855743631720543,
+ "learning_rate": 0.0006,
+ "loss": 3.8233063220977783,
+ "step": 958
+ },
+ {
+ "epoch": 13.321397379912664,
+ "grad_norm": 0.03484344109892845,
+ "learning_rate": 0.0006,
+ "loss": 3.79215669631958,
+ "step": 959
+ },
+ {
+ "epoch": 13.335371179039301,
+ "grad_norm": 0.036101482808589935,
+ "learning_rate": 0.0006,
+ "loss": 3.768373966217041,
+ "step": 960
+ },
+ {
+ "epoch": 13.34934497816594,
+ "grad_norm": 0.03150841221213341,
+ "learning_rate": 0.0006,
+ "loss": 3.7502622604370117,
+ "step": 961
+ },
+ {
+ "epoch": 13.363318777292577,
+ "grad_norm": 0.03154430910944939,
+ "learning_rate": 0.0006,
+ "loss": 3.764416217803955,
+ "step": 962
+ },
+ {
+ "epoch": 13.377292576419213,
+ "grad_norm": 0.03163410350680351,
+ "learning_rate": 0.0006,
+ "loss": 3.757230758666992,
+ "step": 963
+ },
+ {
+ "epoch": 13.391266375545852,
+ "grad_norm": 0.02932742051780224,
+ "learning_rate": 0.0006,
+ "loss": 3.7860183715820312,
+ "step": 964
+ },
+ {
+ "epoch": 13.405240174672489,
+ "grad_norm": 0.025545787066221237,
+ "learning_rate": 0.0006,
+ "loss": 3.748073101043701,
+ "step": 965
+ },
+ {
+ "epoch": 13.419213973799126,
+ "grad_norm": 0.02389710769057274,
+ "learning_rate": 0.0006,
+ "loss": 3.778963565826416,
+ "step": 966
+ },
+ {
+ "epoch": 13.433187772925764,
+ "grad_norm": 0.023781558498740196,
+ "learning_rate": 0.0006,
+ "loss": 3.7151870727539062,
+ "step": 967
+ },
+ {
+ "epoch": 13.447161572052401,
+ "grad_norm": 0.023273715749382973,
+ "learning_rate": 0.0006,
+ "loss": 3.766374111175537,
+ "step": 968
+ },
+ {
+ "epoch": 13.46113537117904,
+ "grad_norm": 0.023059967905282974,
+ "learning_rate": 0.0006,
+ "loss": 3.783663749694824,
+ "step": 969
+ },
+ {
+ "epoch": 13.475109170305677,
+ "grad_norm": 0.020438550040125847,
+ "learning_rate": 0.0006,
+ "loss": 3.755140781402588,
+ "step": 970
+ },
+ {
+ "epoch": 13.489082969432314,
+ "grad_norm": 0.019272785633802414,
+ "learning_rate": 0.0006,
+ "loss": 3.741131544113159,
+ "step": 971
+ },
+ {
+ "epoch": 13.503056768558952,
+ "grad_norm": 0.017616258934140205,
+ "learning_rate": 0.0006,
+ "loss": 3.7395365238189697,
+ "step": 972
+ },
+ {
+ "epoch": 13.51703056768559,
+ "grad_norm": 0.017435181885957718,
+ "learning_rate": 0.0006,
+ "loss": 3.7755181789398193,
+ "step": 973
+ },
+ {
+ "epoch": 13.531004366812226,
+ "grad_norm": 0.01710323616862297,
+ "learning_rate": 0.0006,
+ "loss": 3.7158422470092773,
+ "step": 974
+ },
+ {
+ "epoch": 13.544978165938865,
+ "grad_norm": 0.016912570223212242,
+ "learning_rate": 0.0006,
+ "loss": 3.727623462677002,
+ "step": 975
+ },
+ {
+ "epoch": 13.558951965065502,
+ "grad_norm": 0.0181113388389349,
+ "learning_rate": 0.0006,
+ "loss": 3.771268367767334,
+ "step": 976
+ },
+ {
+ "epoch": 13.57292576419214,
+ "grad_norm": 0.018880970776081085,
+ "learning_rate": 0.0006,
+ "loss": 3.7602953910827637,
+ "step": 977
+ },
+ {
+ "epoch": 13.586899563318777,
+ "grad_norm": 0.019182899966835976,
+ "learning_rate": 0.0006,
+ "loss": 3.7339329719543457,
+ "step": 978
+ },
+ {
+ "epoch": 13.600873362445414,
+ "grad_norm": 0.02025751583278179,
+ "learning_rate": 0.0006,
+ "loss": 3.7562665939331055,
+ "step": 979
+ },
+ {
+ "epoch": 13.614847161572053,
+ "grad_norm": 0.01820831373333931,
+ "learning_rate": 0.0006,
+ "loss": 3.725492477416992,
+ "step": 980
+ },
+ {
+ "epoch": 13.62882096069869,
+ "grad_norm": 0.017619458958506584,
+ "learning_rate": 0.0006,
+ "loss": 3.714106798171997,
+ "step": 981
+ },
+ {
+ "epoch": 13.642794759825328,
+ "grad_norm": 0.016764821484684944,
+ "learning_rate": 0.0006,
+ "loss": 3.7665224075317383,
+ "step": 982
+ },
+ {
+ "epoch": 13.656768558951965,
+ "grad_norm": 0.016131598502397537,
+ "learning_rate": 0.0006,
+ "loss": 3.779419422149658,
+ "step": 983
+ },
+ {
+ "epoch": 13.670742358078602,
+ "grad_norm": 0.01535084005445242,
+ "learning_rate": 0.0006,
+ "loss": 3.7591190338134766,
+ "step": 984
+ },
+ {
+ "epoch": 13.68471615720524,
+ "grad_norm": 0.016390377655625343,
+ "learning_rate": 0.0006,
+ "loss": 3.7544782161712646,
+ "step": 985
+ },
+ {
+ "epoch": 13.698689956331878,
+ "grad_norm": 0.016028346493840218,
+ "learning_rate": 0.0006,
+ "loss": 3.772927761077881,
+ "step": 986
+ },
+ {
+ "epoch": 13.712663755458514,
+ "grad_norm": 0.015925439074635506,
+ "learning_rate": 0.0006,
+ "loss": 3.7092344760894775,
+ "step": 987
+ },
+ {
+ "epoch": 13.726637554585153,
+ "grad_norm": 0.016125058755278587,
+ "learning_rate": 0.0006,
+ "loss": 3.7528953552246094,
+ "step": 988
+ },
+ {
+ "epoch": 13.74061135371179,
+ "grad_norm": 0.015887845307588577,
+ "learning_rate": 0.0006,
+ "loss": 3.744354248046875,
+ "step": 989
+ },
+ {
+ "epoch": 13.754585152838429,
+ "grad_norm": 0.015301455743610859,
+ "learning_rate": 0.0006,
+ "loss": 3.743435859680176,
+ "step": 990
+ },
+ {
+ "epoch": 13.768558951965066,
+ "grad_norm": 0.014814727008342743,
+ "learning_rate": 0.0006,
+ "loss": 3.7351980209350586,
+ "step": 991
+ },
+ {
+ "epoch": 13.782532751091702,
+ "grad_norm": 0.01479976624250412,
+ "learning_rate": 0.0006,
+ "loss": 3.722226619720459,
+ "step": 992
+ },
+ {
+ "epoch": 13.796506550218341,
+ "grad_norm": 0.016558295115828514,
+ "learning_rate": 0.0006,
+ "loss": 3.717442512512207,
+ "step": 993
+ },
+ {
+ "epoch": 13.810480349344978,
+ "grad_norm": 0.01635979674756527,
+ "learning_rate": 0.0006,
+ "loss": 3.707097053527832,
+ "step": 994
+ },
+ {
+ "epoch": 13.824454148471617,
+ "grad_norm": 0.014870786108076572,
+ "learning_rate": 0.0006,
+ "loss": 3.768139362335205,
+ "step": 995
+ },
+ {
+ "epoch": 13.838427947598253,
+ "grad_norm": 0.014958183281123638,
+ "learning_rate": 0.0006,
+ "loss": 3.722902774810791,
+ "step": 996
+ },
+ {
+ "epoch": 13.85240174672489,
+ "grad_norm": 0.015501127578318119,
+ "learning_rate": 0.0006,
+ "loss": 3.7323732376098633,
+ "step": 997
+ },
+ {
+ "epoch": 13.866375545851529,
+ "grad_norm": 0.015276075340807438,
+ "learning_rate": 0.0006,
+ "loss": 3.734039783477783,
+ "step": 998
+ },
+ {
+ "epoch": 13.880349344978166,
+ "grad_norm": 0.01742061786353588,
+ "learning_rate": 0.0006,
+ "loss": 3.737147331237793,
+ "step": 999
+ },
+ {
+ "epoch": 13.894323144104803,
+ "grad_norm": 0.016311734914779663,
+ "learning_rate": 0.0006,
+ "loss": 3.7114202976226807,
+ "step": 1000
+ },
+ {
+ "epoch": 13.908296943231441,
+ "grad_norm": 0.017144575715065002,
+ "learning_rate": 0.0006,
+ "loss": 3.734762191772461,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922270742358078,
+ "grad_norm": 0.016401860862970352,
+ "learning_rate": 0.0006,
+ "loss": 3.753246784210205,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936244541484717,
+ "grad_norm": 0.015357336029410362,
+ "learning_rate": 0.0006,
+ "loss": 3.7216477394104004,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950218340611354,
+ "grad_norm": 0.016586005687713623,
+ "learning_rate": 0.0006,
+ "loss": 3.793790102005005,
+ "step": 1004
+ },
+ {
+ "epoch": 13.96419213973799,
+ "grad_norm": 0.015338776633143425,
+ "learning_rate": 0.0006,
+ "loss": 3.711658000946045,
+ "step": 1005
+ },
+ {
+ "epoch": 13.97816593886463,
+ "grad_norm": 0.017011435702443123,
+ "learning_rate": 0.0006,
+ "loss": 3.752537727355957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992139737991266,
+ "grad_norm": 0.017308345064520836,
+ "learning_rate": 0.0006,
+ "loss": 3.7391486167907715,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.01815737411379814,
+ "learning_rate": 0.0006,
+ "loss": 3.7011828422546387,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.046541690826416,
+ "eval_runtime": 54.3615,
+ "eval_samples_per_second": 44.922,
+ "eval_steps_per_second": 1.416,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013973799126637,
+ "grad_norm": 0.01765853725373745,
+ "learning_rate": 0.0006,
+ "loss": 3.6156458854675293,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027947598253276,
+ "grad_norm": 0.02285143919289112,
+ "learning_rate": 0.0006,
+ "loss": 3.6625490188598633,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041921397379912,
+ "grad_norm": 0.02511940896511078,
+ "learning_rate": 0.0006,
+ "loss": 3.619877815246582,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055895196506551,
+ "grad_norm": 0.02781127765774727,
+ "learning_rate": 0.0006,
+ "loss": 3.676270008087158,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069868995633188,
+ "grad_norm": 0.027363400906324387,
+ "learning_rate": 0.0006,
+ "loss": 3.64404034614563,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083842794759825,
+ "grad_norm": 0.02478782832622528,
+ "learning_rate": 0.0006,
+ "loss": 3.6325106620788574,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097816593886463,
+ "grad_norm": 0.02767058275640011,
+ "learning_rate": 0.0006,
+ "loss": 3.65087890625,
+ "step": 1015
+ },
+ {
+ "epoch": 14.1117903930131,
+ "grad_norm": 0.026782231405377388,
+ "learning_rate": 0.0006,
+ "loss": 3.6227691173553467,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125764192139737,
+ "grad_norm": 0.02921525575220585,
+ "learning_rate": 0.0006,
+ "loss": 3.5829410552978516,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139737991266376,
+ "grad_norm": 0.029077231884002686,
+ "learning_rate": 0.0006,
+ "loss": 3.645134687423706,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153711790393013,
+ "grad_norm": 0.0327303521335125,
+ "learning_rate": 0.0006,
+ "loss": 3.629804849624634,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167685589519651,
+ "grad_norm": 0.035763293504714966,
+ "learning_rate": 0.0006,
+ "loss": 3.6261279582977295,
+ "step": 1020
+ },
+ {
+ "epoch": 14.181659388646288,
+ "grad_norm": 0.03943935036659241,
+ "learning_rate": 0.0006,
+ "loss": 3.6591973304748535,
+ "step": 1021
+ },
+ {
+ "epoch": 14.195633187772925,
+ "grad_norm": 0.03753122314810753,
+ "learning_rate": 0.0006,
+ "loss": 3.6450369358062744,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209606986899564,
+ "grad_norm": 0.04103509336709976,
+ "learning_rate": 0.0006,
+ "loss": 3.6689958572387695,
+ "step": 1023
+ },
+ {
+ "epoch": 14.2235807860262,
+ "grad_norm": 0.04133584722876549,
+ "learning_rate": 0.0006,
+ "loss": 3.6584630012512207,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237554585152838,
+ "grad_norm": 0.04211857542395592,
+ "learning_rate": 0.0006,
+ "loss": 3.6606225967407227,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251528384279476,
+ "grad_norm": 0.038261570036411285,
+ "learning_rate": 0.0006,
+ "loss": 3.667980194091797,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265502183406113,
+ "grad_norm": 0.03518976271152496,
+ "learning_rate": 0.0006,
+ "loss": 3.6699838638305664,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279475982532752,
+ "grad_norm": 0.03253129869699478,
+ "learning_rate": 0.0006,
+ "loss": 3.636895179748535,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293449781659389,
+ "grad_norm": 0.031595997512340546,
+ "learning_rate": 0.0006,
+ "loss": 3.632096290588379,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307423580786025,
+ "grad_norm": 0.03253999352455139,
+ "learning_rate": 0.0006,
+ "loss": 3.6577043533325195,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321397379912664,
+ "grad_norm": 0.034704145044088364,
+ "learning_rate": 0.0006,
+ "loss": 3.703457832336426,
+ "step": 1031
+ },
+ {
+ "epoch": 14.335371179039301,
+ "grad_norm": 0.03362954035401344,
+ "learning_rate": 0.0006,
+ "loss": 3.6303958892822266,
+ "step": 1032
+ },
+ {
+ "epoch": 14.34934497816594,
+ "grad_norm": 0.02985706552863121,
+ "learning_rate": 0.0006,
+ "loss": 3.669577121734619,
+ "step": 1033
+ },
+ {
+ "epoch": 14.363318777292577,
+ "grad_norm": 0.028826212510466576,
+ "learning_rate": 0.0006,
+ "loss": 3.6573240756988525,
+ "step": 1034
+ },
+ {
+ "epoch": 14.377292576419213,
+ "grad_norm": 0.025705639272928238,
+ "learning_rate": 0.0006,
+ "loss": 3.695673942565918,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391266375545852,
+ "grad_norm": 0.02392077073454857,
+ "learning_rate": 0.0006,
+ "loss": 3.699263095855713,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405240174672489,
+ "grad_norm": 0.02234474942088127,
+ "learning_rate": 0.0006,
+ "loss": 3.666858196258545,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419213973799126,
+ "grad_norm": 0.021519573405385017,
+ "learning_rate": 0.0006,
+ "loss": 3.6542158126831055,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433187772925764,
+ "grad_norm": 0.019302112981677055,
+ "learning_rate": 0.0006,
+ "loss": 3.672900676727295,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447161572052401,
+ "grad_norm": 0.01938394270837307,
+ "learning_rate": 0.0006,
+ "loss": 3.6841869354248047,
+ "step": 1040
+ },
+ {
+ "epoch": 14.46113537117904,
+ "grad_norm": 0.01918088085949421,
+ "learning_rate": 0.0006,
+ "loss": 3.6915340423583984,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475109170305677,
+ "grad_norm": 0.019382303580641747,
+ "learning_rate": 0.0006,
+ "loss": 3.696239471435547,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489082969432314,
+ "grad_norm": 0.0190880224108696,
+ "learning_rate": 0.0006,
+ "loss": 3.686777114868164,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503056768558952,
+ "grad_norm": 0.019921699538826942,
+ "learning_rate": 0.0006,
+ "loss": 3.596571207046509,
+ "step": 1044
+ },
+ {
+ "epoch": 14.51703056768559,
+ "grad_norm": 0.019849983975291252,
+ "learning_rate": 0.0006,
+ "loss": 3.6621527671813965,
+ "step": 1045
+ },
+ {
+ "epoch": 14.531004366812226,
+ "grad_norm": 0.01987219788134098,
+ "learning_rate": 0.0006,
+ "loss": 3.6440532207489014,
+ "step": 1046
+ },
+ {
+ "epoch": 14.544978165938865,
+ "grad_norm": 0.019135860726237297,
+ "learning_rate": 0.0006,
+ "loss": 3.663760185241699,
+ "step": 1047
+ },
+ {
+ "epoch": 14.558951965065502,
+ "grad_norm": 0.019754081964492798,
+ "learning_rate": 0.0006,
+ "loss": 3.692115306854248,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57292576419214,
+ "grad_norm": 0.017559237778186798,
+ "learning_rate": 0.0006,
+ "loss": 3.6560468673706055,
+ "step": 1049
+ },
+ {
+ "epoch": 14.586899563318777,
+ "grad_norm": 0.018740499392151833,
+ "learning_rate": 0.0006,
+ "loss": 3.678459405899048,
+ "step": 1050
+ },
+ {
+ "epoch": 14.600873362445414,
+ "grad_norm": 0.020979298278689384,
+ "learning_rate": 0.0006,
+ "loss": 3.6760807037353516,
+ "step": 1051
+ },
+ {
+ "epoch": 14.614847161572053,
+ "grad_norm": 0.024136187508702278,
+ "learning_rate": 0.0006,
+ "loss": 3.6586780548095703,
+ "step": 1052
+ },
+ {
+ "epoch": 14.62882096069869,
+ "grad_norm": 0.022492283955216408,
+ "learning_rate": 0.0006,
+ "loss": 3.6521711349487305,
+ "step": 1053
+ },
+ {
+ "epoch": 14.642794759825328,
+ "grad_norm": 0.022067412734031677,
+ "learning_rate": 0.0006,
+ "loss": 3.6784937381744385,
+ "step": 1054
+ },
+ {
+ "epoch": 14.656768558951965,
+ "grad_norm": 0.019800225272774696,
+ "learning_rate": 0.0006,
+ "loss": 3.6375701427459717,
+ "step": 1055
+ },
+ {
+ "epoch": 14.670742358078602,
+ "grad_norm": 0.018210966140031815,
+ "learning_rate": 0.0006,
+ "loss": 3.6653239727020264,
+ "step": 1056
+ },
+ {
+ "epoch": 14.68471615720524,
+ "grad_norm": 0.018579861149191856,
+ "learning_rate": 0.0006,
+ "loss": 3.718411922454834,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698689956331878,
+ "grad_norm": 0.016911206766963005,
+ "learning_rate": 0.0006,
+ "loss": 3.6463894844055176,
+ "step": 1058
+ },
+ {
+ "epoch": 14.712663755458514,
+ "grad_norm": 0.016846856102347374,
+ "learning_rate": 0.0006,
+ "loss": 3.672767162322998,
+ "step": 1059
+ },
+ {
+ "epoch": 14.726637554585153,
+ "grad_norm": 0.0170889999717474,
+ "learning_rate": 0.0006,
+ "loss": 3.6862080097198486,
+ "step": 1060
+ },
+ {
+ "epoch": 14.74061135371179,
+ "grad_norm": 0.016432611271739006,
+ "learning_rate": 0.0006,
+ "loss": 3.656050682067871,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754585152838429,
+ "grad_norm": 0.016253121197223663,
+ "learning_rate": 0.0006,
+ "loss": 3.6118998527526855,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768558951965066,
+ "grad_norm": 0.016804836690425873,
+ "learning_rate": 0.0006,
+ "loss": 3.6646556854248047,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782532751091702,
+ "grad_norm": 0.016385341063141823,
+ "learning_rate": 0.0006,
+ "loss": 3.6862335205078125,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796506550218341,
+ "grad_norm": 0.016926517710089684,
+ "learning_rate": 0.0006,
+ "loss": 3.675138473510742,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810480349344978,
+ "grad_norm": 0.018508978188037872,
+ "learning_rate": 0.0006,
+ "loss": 3.7009687423706055,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824454148471617,
+ "grad_norm": 0.018666446208953857,
+ "learning_rate": 0.0006,
+ "loss": 3.636359214782715,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838427947598253,
+ "grad_norm": 0.019378433004021645,
+ "learning_rate": 0.0006,
+ "loss": 3.665518283843994,
+ "step": 1068
+ },
+ {
+ "epoch": 14.85240174672489,
+ "grad_norm": 0.02128547430038452,
+ "learning_rate": 0.0006,
+ "loss": 3.7005434036254883,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866375545851529,
+ "grad_norm": 0.02191224694252014,
+ "learning_rate": 0.0006,
+ "loss": 3.6584267616271973,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880349344978166,
+ "grad_norm": 0.019272804260253906,
+ "learning_rate": 0.0006,
+ "loss": 3.673880100250244,
+ "step": 1071
+ },
+ {
+ "epoch": 14.894323144104803,
+ "grad_norm": 0.018591508269309998,
+ "learning_rate": 0.0006,
+ "loss": 3.680145025253296,
+ "step": 1072
+ },
+ {
+ "epoch": 14.908296943231441,
+ "grad_norm": 0.019954141229391098,
+ "learning_rate": 0.0006,
+ "loss": 3.659092903137207,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922270742358078,
+ "grad_norm": 0.019956151023507118,
+ "learning_rate": 0.0006,
+ "loss": 3.680950164794922,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936244541484717,
+ "grad_norm": 0.0198400616645813,
+ "learning_rate": 0.0006,
+ "loss": 3.665740728378296,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950218340611354,
+ "grad_norm": 0.018525801599025726,
+ "learning_rate": 0.0006,
+ "loss": 3.695254325866699,
+ "step": 1076
+ },
+ {
+ "epoch": 14.96419213973799,
+ "grad_norm": 0.019410012289881706,
+ "learning_rate": 0.0006,
+ "loss": 3.637185573577881,
+ "step": 1077
+ },
+ {
+ "epoch": 14.97816593886463,
+ "grad_norm": 0.01842549443244934,
+ "learning_rate": 0.0006,
+ "loss": 3.6925792694091797,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992139737991266,
+ "grad_norm": 0.018512850627303123,
+ "learning_rate": 0.0006,
+ "loss": 3.6421403884887695,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.019783539697527885,
+ "learning_rate": 0.0006,
+ "loss": 3.669989824295044,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.0208282470703125,
+ "eval_runtime": 50.0946,
+ "eval_samples_per_second": 48.748,
+ "eval_steps_per_second": 1.537,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013973799126637,
+ "grad_norm": 0.02009645849466324,
+ "learning_rate": 0.0006,
+ "loss": 3.5637366771698,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027947598253276,
+ "grad_norm": 0.02333172969520092,
+ "learning_rate": 0.0006,
+ "loss": 3.5258095264434814,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041921397379912,
+ "grad_norm": 0.027971796691417694,
+ "learning_rate": 0.0006,
+ "loss": 3.552365779876709,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055895196506551,
+ "grad_norm": 0.03144870325922966,
+ "learning_rate": 0.0006,
+ "loss": 3.570685863494873,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069868995633188,
+ "grad_norm": 0.03174359351396561,
+ "learning_rate": 0.0006,
+ "loss": 3.557307720184326,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083842794759825,
+ "grad_norm": 0.0314076766371727,
+ "learning_rate": 0.0006,
+ "loss": 3.5835516452789307,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097816593886463,
+ "grad_norm": 0.02998494543135166,
+ "learning_rate": 0.0006,
+ "loss": 3.564689874649048,
+ "step": 1087
+ },
+ {
+ "epoch": 15.1117903930131,
+ "grad_norm": 0.027682173997163773,
+ "learning_rate": 0.0006,
+ "loss": 3.5372314453125,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125764192139737,
+ "grad_norm": 0.029720479622483253,
+ "learning_rate": 0.0006,
+ "loss": 3.5263895988464355,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139737991266376,
+ "grad_norm": 0.03526446595788002,
+ "learning_rate": 0.0006,
+ "loss": 3.5656511783599854,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153711790393013,
+ "grad_norm": 0.03473281115293503,
+ "learning_rate": 0.0006,
+ "loss": 3.5796432495117188,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167685589519651,
+ "grad_norm": 0.034728601574897766,
+ "learning_rate": 0.0006,
+ "loss": 3.5634264945983887,
+ "step": 1092
+ },
+ {
+ "epoch": 15.181659388646288,
+ "grad_norm": 0.03513004630804062,
+ "learning_rate": 0.0006,
+ "loss": 3.587097644805908,
+ "step": 1093
+ },
+ {
+ "epoch": 15.195633187772925,
+ "grad_norm": 0.03495538607239723,
+ "learning_rate": 0.0006,
+ "loss": 3.588749885559082,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209606986899564,
+ "grad_norm": 0.03559393063187599,
+ "learning_rate": 0.0006,
+ "loss": 3.588261604309082,
+ "step": 1095
+ },
+ {
+ "epoch": 15.2235807860262,
+ "grad_norm": 0.04117827117443085,
+ "learning_rate": 0.0006,
+ "loss": 3.5925493240356445,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237554585152838,
+ "grad_norm": 0.03481105715036392,
+ "learning_rate": 0.0006,
+ "loss": 3.609713077545166,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251528384279476,
+ "grad_norm": 0.03399660810828209,
+ "learning_rate": 0.0006,
+ "loss": 3.6001386642456055,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265502183406113,
+ "grad_norm": 0.037158723920583725,
+ "learning_rate": 0.0006,
+ "loss": 3.5907320976257324,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279475982532752,
+ "grad_norm": 0.03714929521083832,
+ "learning_rate": 0.0006,
+ "loss": 3.620131015777588,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293449781659389,
+ "grad_norm": 0.03506772965192795,
+ "learning_rate": 0.0006,
+ "loss": 3.5833165645599365,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307423580786025,
+ "grad_norm": 0.03335156291723251,
+ "learning_rate": 0.0006,
+ "loss": 3.588583469390869,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321397379912664,
+ "grad_norm": 0.03749598562717438,
+ "learning_rate": 0.0006,
+ "loss": 3.5726234912872314,
+ "step": 1103
+ },
+ {
+ "epoch": 15.335371179039301,
+ "grad_norm": 0.033490296453237534,
+ "learning_rate": 0.0006,
+ "loss": 3.609440326690674,
+ "step": 1104
+ },
+ {
+ "epoch": 15.34934497816594,
+ "grad_norm": 0.02744245156645775,
+ "learning_rate": 0.0006,
+ "loss": 3.5969347953796387,
+ "step": 1105
+ },
+ {
+ "epoch": 15.363318777292577,
+ "grad_norm": 0.025563672184944153,
+ "learning_rate": 0.0006,
+ "loss": 3.6081204414367676,
+ "step": 1106
+ },
+ {
+ "epoch": 15.377292576419213,
+ "grad_norm": 0.02479025535285473,
+ "learning_rate": 0.0006,
+ "loss": 3.569492816925049,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391266375545852,
+ "grad_norm": 0.022969363257288933,
+ "learning_rate": 0.0006,
+ "loss": 3.5940051078796387,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405240174672489,
+ "grad_norm": 0.0211333017796278,
+ "learning_rate": 0.0006,
+ "loss": 3.6032228469848633,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419213973799126,
+ "grad_norm": 0.023232776671648026,
+ "learning_rate": 0.0006,
+ "loss": 3.597538471221924,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433187772925764,
+ "grad_norm": 0.02560894563794136,
+ "learning_rate": 0.0006,
+ "loss": 3.6099822521209717,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447161572052401,
+ "grad_norm": 0.028530243784189224,
+ "learning_rate": 0.0006,
+ "loss": 3.6099116802215576,
+ "step": 1112
+ },
+ {
+ "epoch": 15.46113537117904,
+ "grad_norm": 0.024349553510546684,
+ "learning_rate": 0.0006,
+ "loss": 3.596257448196411,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475109170305677,
+ "grad_norm": 0.025264214724302292,
+ "learning_rate": 0.0006,
+ "loss": 3.58459210395813,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489082969432314,
+ "grad_norm": 0.024628883227705956,
+ "learning_rate": 0.0006,
+ "loss": 3.5940113067626953,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503056768558952,
+ "grad_norm": 0.02550858072936535,
+ "learning_rate": 0.0006,
+ "loss": 3.6039438247680664,
+ "step": 1116
+ },
+ {
+ "epoch": 15.51703056768559,
+ "grad_norm": 0.02455618977546692,
+ "learning_rate": 0.0006,
+ "loss": 3.582425594329834,
+ "step": 1117
+ },
+ {
+ "epoch": 15.531004366812226,
+ "grad_norm": 0.023190757259726524,
+ "learning_rate": 0.0006,
+ "loss": 3.5945615768432617,
+ "step": 1118
+ },
+ {
+ "epoch": 15.544978165938865,
+ "grad_norm": 0.025178825482726097,
+ "learning_rate": 0.0006,
+ "loss": 3.6276583671569824,
+ "step": 1119
+ },
+ {
+ "epoch": 15.558951965065502,
+ "grad_norm": 0.027304047718644142,
+ "learning_rate": 0.0006,
+ "loss": 3.591130018234253,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57292576419214,
+ "grad_norm": 0.02635739929974079,
+ "learning_rate": 0.0006,
+ "loss": 3.626152992248535,
+ "step": 1121
+ },
+ {
+ "epoch": 15.586899563318777,
+ "grad_norm": 0.023574283346533775,
+ "learning_rate": 0.0006,
+ "loss": 3.5790467262268066,
+ "step": 1122
+ },
+ {
+ "epoch": 15.600873362445414,
+ "grad_norm": 0.02167615108191967,
+ "learning_rate": 0.0006,
+ "loss": 3.5816423892974854,
+ "step": 1123
+ },
+ {
+ "epoch": 15.614847161572053,
+ "grad_norm": 0.020352814346551895,
+ "learning_rate": 0.0006,
+ "loss": 3.5963048934936523,
+ "step": 1124
+ },
+ {
+ "epoch": 15.62882096069869,
+ "grad_norm": 0.022047650068998337,
+ "learning_rate": 0.0006,
+ "loss": 3.5933878421783447,
+ "step": 1125
+ },
+ {
+ "epoch": 15.642794759825328,
+ "grad_norm": 0.022744329646229744,
+ "learning_rate": 0.0006,
+ "loss": 3.5755128860473633,
+ "step": 1126
+ },
+ {
+ "epoch": 15.656768558951965,
+ "grad_norm": 0.020325182005763054,
+ "learning_rate": 0.0006,
+ "loss": 3.5617265701293945,
+ "step": 1127
+ },
+ {
+ "epoch": 15.670742358078602,
+ "grad_norm": 0.021056298166513443,
+ "learning_rate": 0.0006,
+ "loss": 3.5767688751220703,
+ "step": 1128
+ },
+ {
+ "epoch": 15.68471615720524,
+ "grad_norm": 0.019120410084724426,
+ "learning_rate": 0.0006,
+ "loss": 3.5909035205841064,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698689956331878,
+ "grad_norm": 0.01864859275519848,
+ "learning_rate": 0.0006,
+ "loss": 3.586052417755127,
+ "step": 1130
+ },
+ {
+ "epoch": 15.712663755458514,
+ "grad_norm": 0.017953047528862953,
+ "learning_rate": 0.0006,
+ "loss": 3.5801734924316406,
+ "step": 1131
+ },
+ {
+ "epoch": 15.726637554585153,
+ "grad_norm": 0.019331611692905426,
+ "learning_rate": 0.0006,
+ "loss": 3.5663723945617676,
+ "step": 1132
+ },
+ {
+ "epoch": 15.74061135371179,
+ "grad_norm": 0.018863828852772713,
+ "learning_rate": 0.0006,
+ "loss": 3.5982472896575928,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754585152838429,
+ "grad_norm": 0.01941121369600296,
+ "learning_rate": 0.0006,
+ "loss": 3.586141586303711,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768558951965066,
+ "grad_norm": 0.0202215276658535,
+ "learning_rate": 0.0006,
+ "loss": 3.603093385696411,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782532751091702,
+ "grad_norm": 0.02065861038863659,
+ "learning_rate": 0.0006,
+ "loss": 3.6258344650268555,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796506550218341,
+ "grad_norm": 0.019885104149580002,
+ "learning_rate": 0.0006,
+ "loss": 3.5961670875549316,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810480349344978,
+ "grad_norm": 0.019395584240555763,
+ "learning_rate": 0.0006,
+ "loss": 3.6085386276245117,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824454148471617,
+ "grad_norm": 0.02079256810247898,
+ "learning_rate": 0.0006,
+ "loss": 3.5907459259033203,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838427947598253,
+ "grad_norm": 0.021177049726247787,
+ "learning_rate": 0.0006,
+ "loss": 3.6031875610351562,
+ "step": 1140
+ },
+ {
+ "epoch": 15.85240174672489,
+ "grad_norm": 0.01875251717865467,
+ "learning_rate": 0.0006,
+ "loss": 3.5799269676208496,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866375545851529,
+ "grad_norm": 0.018393032252788544,
+ "learning_rate": 0.0006,
+ "loss": 3.589036464691162,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880349344978166,
+ "grad_norm": 0.017482910305261612,
+ "learning_rate": 0.0006,
+ "loss": 3.57010555267334,
+ "step": 1143
+ },
+ {
+ "epoch": 15.894323144104803,
+ "grad_norm": 0.017565404996275902,
+ "learning_rate": 0.0006,
+ "loss": 3.586590051651001,
+ "step": 1144
+ },
+ {
+ "epoch": 15.908296943231441,
+ "grad_norm": 0.018097810447216034,
+ "learning_rate": 0.0006,
+ "loss": 3.60231876373291,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922270742358078,
+ "grad_norm": 0.01748323254287243,
+ "learning_rate": 0.0006,
+ "loss": 3.605266571044922,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936244541484717,
+ "grad_norm": 0.017633914947509766,
+ "learning_rate": 0.0006,
+ "loss": 3.57650089263916,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950218340611354,
+ "grad_norm": 0.017630109563469887,
+ "learning_rate": 0.0006,
+ "loss": 3.599179744720459,
+ "step": 1148
+ },
+ {
+ "epoch": 15.96419213973799,
+ "grad_norm": 0.017756082117557526,
+ "learning_rate": 0.0006,
+ "loss": 3.610539436340332,
+ "step": 1149
+ },
+ {
+ "epoch": 15.97816593886463,
+ "grad_norm": 0.017975619062781334,
+ "learning_rate": 0.0006,
+ "loss": 3.5654094219207764,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992139737991266,
+ "grad_norm": 0.01672595739364624,
+ "learning_rate": 0.0006,
+ "loss": 3.5157313346862793,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.018963614478707314,
+ "learning_rate": 0.0006,
+ "loss": 3.5679218769073486,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.002192497253418,
+ "eval_runtime": 54.7074,
+ "eval_samples_per_second": 44.638,
+ "eval_steps_per_second": 1.407,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397379912664,
+ "grad_norm": 0.019997047260403633,
+ "learning_rate": 0.0006,
+ "loss": 3.4640445709228516,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027947598253274,
+ "grad_norm": 0.02668819949030876,
+ "learning_rate": 0.0006,
+ "loss": 3.4792230129241943,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041921397379912,
+ "grad_norm": 0.03133378177881241,
+ "learning_rate": 0.0006,
+ "loss": 3.445514678955078,
+ "step": 1155
+ },
+ {
+ "epoch": 16.05589519650655,
+ "grad_norm": 0.0333341620862484,
+ "learning_rate": 0.0006,
+ "loss": 3.4823379516601562,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069868995633186,
+ "grad_norm": 0.033309273421764374,
+ "learning_rate": 0.0006,
+ "loss": 3.5140066146850586,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083842794759825,
+ "grad_norm": 0.03211270272731781,
+ "learning_rate": 0.0006,
+ "loss": 3.4474544525146484,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097816593886463,
+ "grad_norm": 0.030286215245723724,
+ "learning_rate": 0.0006,
+ "loss": 3.4566705226898193,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111790393013102,
+ "grad_norm": 0.034668438136577606,
+ "learning_rate": 0.0006,
+ "loss": 3.464046001434326,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125764192139737,
+ "grad_norm": 0.03580283746123314,
+ "learning_rate": 0.0006,
+ "loss": 3.483121871948242,
+ "step": 1161
+ },
+ {
+ "epoch": 16.139737991266376,
+ "grad_norm": 0.03359296917915344,
+ "learning_rate": 0.0006,
+ "loss": 3.477879524230957,
+ "step": 1162
+ },
+ {
+ "epoch": 16.153711790393015,
+ "grad_norm": 0.03444180637598038,
+ "learning_rate": 0.0006,
+ "loss": 3.513066053390503,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16768558951965,
+ "grad_norm": 0.034195005893707275,
+ "learning_rate": 0.0006,
+ "loss": 3.4954705238342285,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18165938864629,
+ "grad_norm": 0.03186183422803879,
+ "learning_rate": 0.0006,
+ "loss": 3.5126149654388428,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195633187772927,
+ "grad_norm": 0.03474068269133568,
+ "learning_rate": 0.0006,
+ "loss": 3.4613423347473145,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209606986899562,
+ "grad_norm": 0.03117581456899643,
+ "learning_rate": 0.0006,
+ "loss": 3.5202698707580566,
+ "step": 1167
+ },
+ {
+ "epoch": 16.2235807860262,
+ "grad_norm": 0.030044663697481155,
+ "learning_rate": 0.0006,
+ "loss": 3.4795448780059814,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23755458515284,
+ "grad_norm": 0.03448783978819847,
+ "learning_rate": 0.0006,
+ "loss": 3.4979453086853027,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251528384279474,
+ "grad_norm": 0.040600501000881195,
+ "learning_rate": 0.0006,
+ "loss": 3.5161967277526855,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265502183406113,
+ "grad_norm": 0.041196491569280624,
+ "learning_rate": 0.0006,
+ "loss": 3.5099880695343018,
+ "step": 1171
+ },
+ {
+ "epoch": 16.27947598253275,
+ "grad_norm": 0.0403696708381176,
+ "learning_rate": 0.0006,
+ "loss": 3.515664577484131,
+ "step": 1172
+ },
+ {
+ "epoch": 16.29344978165939,
+ "grad_norm": 0.0369957759976387,
+ "learning_rate": 0.0006,
+ "loss": 3.568899631500244,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307423580786025,
+ "grad_norm": 0.034086693078279495,
+ "learning_rate": 0.0006,
+ "loss": 3.5406198501586914,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321397379912664,
+ "grad_norm": 0.03118005394935608,
+ "learning_rate": 0.0006,
+ "loss": 3.4970381259918213,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335371179039303,
+ "grad_norm": 0.030468063428997993,
+ "learning_rate": 0.0006,
+ "loss": 3.5451807975769043,
+ "step": 1176
+ },
+ {
+ "epoch": 16.349344978165938,
+ "grad_norm": 0.0309329554438591,
+ "learning_rate": 0.0006,
+ "loss": 3.53481388092041,
+ "step": 1177
+ },
+ {
+ "epoch": 16.363318777292577,
+ "grad_norm": 0.030906643718481064,
+ "learning_rate": 0.0006,
+ "loss": 3.5201809406280518,
+ "step": 1178
+ },
+ {
+ "epoch": 16.377292576419215,
+ "grad_norm": 0.029425526037812233,
+ "learning_rate": 0.0006,
+ "loss": 3.5083932876586914,
+ "step": 1179
+ },
+ {
+ "epoch": 16.39126637554585,
+ "grad_norm": 0.03284955024719238,
+ "learning_rate": 0.0006,
+ "loss": 3.5315258502960205,
+ "step": 1180
+ },
+ {
+ "epoch": 16.40524017467249,
+ "grad_norm": 0.03235018253326416,
+ "learning_rate": 0.0006,
+ "loss": 3.5033299922943115,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419213973799128,
+ "grad_norm": 0.029569406062364578,
+ "learning_rate": 0.0006,
+ "loss": 3.52433180809021,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433187772925763,
+ "grad_norm": 0.028649726882576942,
+ "learning_rate": 0.0006,
+ "loss": 3.486379623413086,
+ "step": 1183
+ },
+ {
+ "epoch": 16.4471615720524,
+ "grad_norm": 0.027956973761320114,
+ "learning_rate": 0.0006,
+ "loss": 3.5237250328063965,
+ "step": 1184
+ },
+ {
+ "epoch": 16.46113537117904,
+ "grad_norm": 0.0276664849370718,
+ "learning_rate": 0.0006,
+ "loss": 3.512511730194092,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475109170305675,
+ "grad_norm": 0.027819795534014702,
+ "learning_rate": 0.0006,
+ "loss": 3.5440287590026855,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489082969432314,
+ "grad_norm": 0.028435861691832542,
+ "learning_rate": 0.0006,
+ "loss": 3.560199737548828,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503056768558952,
+ "grad_norm": 0.02672969177365303,
+ "learning_rate": 0.0006,
+ "loss": 3.5323410034179688,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51703056768559,
+ "grad_norm": 0.024931233376264572,
+ "learning_rate": 0.0006,
+ "loss": 3.5182852745056152,
+ "step": 1189
+ },
+ {
+ "epoch": 16.531004366812226,
+ "grad_norm": 0.02562815696001053,
+ "learning_rate": 0.0006,
+ "loss": 3.525887966156006,
+ "step": 1190
+ },
+ {
+ "epoch": 16.544978165938865,
+ "grad_norm": 0.022041132673621178,
+ "learning_rate": 0.0006,
+ "loss": 3.5331735610961914,
+ "step": 1191
+ },
+ {
+ "epoch": 16.558951965065503,
+ "grad_norm": 0.02091669663786888,
+ "learning_rate": 0.0006,
+ "loss": 3.5219545364379883,
+ "step": 1192
+ },
+ {
+ "epoch": 16.57292576419214,
+ "grad_norm": 0.0208087507635355,
+ "learning_rate": 0.0006,
+ "loss": 3.5721282958984375,
+ "step": 1193
+ },
+ {
+ "epoch": 16.586899563318777,
+ "grad_norm": 0.019807223230600357,
+ "learning_rate": 0.0006,
+ "loss": 3.493896484375,
+ "step": 1194
+ },
+ {
+ "epoch": 16.600873362445416,
+ "grad_norm": 0.019274886697530746,
+ "learning_rate": 0.0006,
+ "loss": 3.5042009353637695,
+ "step": 1195
+ },
+ {
+ "epoch": 16.61484716157205,
+ "grad_norm": 0.01950680837035179,
+ "learning_rate": 0.0006,
+ "loss": 3.5548095703125,
+ "step": 1196
+ },
+ {
+ "epoch": 16.62882096069869,
+ "grad_norm": 0.02027183771133423,
+ "learning_rate": 0.0006,
+ "loss": 3.495508909225464,
+ "step": 1197
+ },
+ {
+ "epoch": 16.64279475982533,
+ "grad_norm": 0.021261053159832954,
+ "learning_rate": 0.0006,
+ "loss": 3.531256675720215,
+ "step": 1198
+ },
+ {
+ "epoch": 16.656768558951963,
+ "grad_norm": 0.02054775319993496,
+ "learning_rate": 0.0006,
+ "loss": 3.499379873275757,
+ "step": 1199
+ },
+ {
+ "epoch": 16.670742358078602,
+ "grad_norm": 0.01810075156390667,
+ "learning_rate": 0.0006,
+ "loss": 3.561351776123047,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68471615720524,
+ "grad_norm": 0.017886348068714142,
+ "learning_rate": 0.0006,
+ "loss": 3.551504373550415,
+ "step": 1201
+ },
+ {
+ "epoch": 16.69868995633188,
+ "grad_norm": 0.01893145777285099,
+ "learning_rate": 0.0006,
+ "loss": 3.4890754222869873,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712663755458514,
+ "grad_norm": 0.018899526447057724,
+ "learning_rate": 0.0006,
+ "loss": 3.545161724090576,
+ "step": 1203
+ },
+ {
+ "epoch": 16.726637554585153,
+ "grad_norm": 0.018913133069872856,
+ "learning_rate": 0.0006,
+ "loss": 3.502636194229126,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74061135371179,
+ "grad_norm": 0.019347554072737694,
+ "learning_rate": 0.0006,
+ "loss": 3.521177291870117,
+ "step": 1205
+ },
+ {
+ "epoch": 16.754585152838427,
+ "grad_norm": 0.02018282189965248,
+ "learning_rate": 0.0006,
+ "loss": 3.5440759658813477,
+ "step": 1206
+ },
+ {
+ "epoch": 16.768558951965066,
+ "grad_norm": 0.018046081066131592,
+ "learning_rate": 0.0006,
+ "loss": 3.5429065227508545,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782532751091704,
+ "grad_norm": 0.01814688742160797,
+ "learning_rate": 0.0006,
+ "loss": 3.524298667907715,
+ "step": 1208
+ },
+ {
+ "epoch": 16.79650655021834,
+ "grad_norm": 0.017817430198192596,
+ "learning_rate": 0.0006,
+ "loss": 3.5429811477661133,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810480349344978,
+ "grad_norm": 0.01804095320403576,
+ "learning_rate": 0.0006,
+ "loss": 3.5601816177368164,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824454148471617,
+ "grad_norm": 0.01939644105732441,
+ "learning_rate": 0.0006,
+ "loss": 3.5711722373962402,
+ "step": 1211
+ },
+ {
+ "epoch": 16.83842794759825,
+ "grad_norm": 0.019648978486657143,
+ "learning_rate": 0.0006,
+ "loss": 3.5105032920837402,
+ "step": 1212
+ },
+ {
+ "epoch": 16.85240174672489,
+ "grad_norm": 0.01914234645664692,
+ "learning_rate": 0.0006,
+ "loss": 3.5199899673461914,
+ "step": 1213
+ },
+ {
+ "epoch": 16.86637554585153,
+ "grad_norm": 0.019934657961130142,
+ "learning_rate": 0.0006,
+ "loss": 3.531907320022583,
+ "step": 1214
+ },
+ {
+ "epoch": 16.880349344978168,
+ "grad_norm": 0.019740048795938492,
+ "learning_rate": 0.0006,
+ "loss": 3.4846372604370117,
+ "step": 1215
+ },
+ {
+ "epoch": 16.894323144104803,
+ "grad_norm": 0.020136266946792603,
+ "learning_rate": 0.0006,
+ "loss": 3.5342910289764404,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90829694323144,
+ "grad_norm": 0.021572282537817955,
+ "learning_rate": 0.0006,
+ "loss": 3.5846221446990967,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92227074235808,
+ "grad_norm": 0.01965942606329918,
+ "learning_rate": 0.0006,
+ "loss": 3.489861011505127,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936244541484715,
+ "grad_norm": 0.018763914704322815,
+ "learning_rate": 0.0006,
+ "loss": 3.5294601917266846,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950218340611354,
+ "grad_norm": 0.017964672297239304,
+ "learning_rate": 0.0006,
+ "loss": 3.5389389991760254,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964192139737992,
+ "grad_norm": 0.018288105726242065,
+ "learning_rate": 0.0006,
+ "loss": 3.531959056854248,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978165938864628,
+ "grad_norm": 0.019321706146001816,
+ "learning_rate": 0.0006,
+ "loss": 3.533597469329834,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992139737991266,
+ "grad_norm": 0.019614171236753464,
+ "learning_rate": 0.0006,
+ "loss": 3.5083813667297363,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.020609203726053238,
+ "learning_rate": 0.0006,
+ "loss": 3.580991268157959,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 3.992704153060913,
+ "eval_runtime": 50.2038,
+ "eval_samples_per_second": 48.642,
+ "eval_steps_per_second": 1.534,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397379912664,
+ "grad_norm": 0.023699766024947166,
+ "learning_rate": 0.0006,
+ "loss": 3.4216837882995605,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027947598253274,
+ "grad_norm": 0.03299031779170036,
+ "learning_rate": 0.0006,
+ "loss": 3.3943543434143066,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041921397379912,
+ "grad_norm": 0.0365300215780735,
+ "learning_rate": 0.0006,
+ "loss": 3.419881820678711,
+ "step": 1227
+ },
+ {
+ "epoch": 17.05589519650655,
+ "grad_norm": 0.037790149450302124,
+ "learning_rate": 0.0006,
+ "loss": 3.397857666015625,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069868995633186,
+ "grad_norm": 0.03478766605257988,
+ "learning_rate": 0.0006,
+ "loss": 3.4057488441467285,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083842794759825,
+ "grad_norm": 0.03660628944635391,
+ "learning_rate": 0.0006,
+ "loss": 3.449805498123169,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097816593886463,
+ "grad_norm": 0.03783934935927391,
+ "learning_rate": 0.0006,
+ "loss": 3.391709804534912,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111790393013102,
+ "grad_norm": 0.03578848019242287,
+ "learning_rate": 0.0006,
+ "loss": 3.3921704292297363,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125764192139737,
+ "grad_norm": 0.04182235524058342,
+ "learning_rate": 0.0006,
+ "loss": 3.406362295150757,
+ "step": 1233
+ },
+ {
+ "epoch": 17.139737991266376,
+ "grad_norm": 0.04345374181866646,
+ "learning_rate": 0.0006,
+ "loss": 3.39174222946167,
+ "step": 1234
+ },
+ {
+ "epoch": 17.153711790393015,
+ "grad_norm": 0.0420818068087101,
+ "learning_rate": 0.0006,
+ "loss": 3.431614398956299,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16768558951965,
+ "grad_norm": 0.045535873621702194,
+ "learning_rate": 0.0006,
+ "loss": 3.4326839447021484,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18165938864629,
+ "grad_norm": 0.05574474856257439,
+ "learning_rate": 0.0006,
+ "loss": 3.4711036682128906,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195633187772927,
+ "grad_norm": 0.057157132774591446,
+ "learning_rate": 0.0006,
+ "loss": 3.4650626182556152,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209606986899562,
+ "grad_norm": 0.053199656307697296,
+ "learning_rate": 0.0006,
+ "loss": 3.4461426734924316,
+ "step": 1239
+ },
+ {
+ "epoch": 17.2235807860262,
+ "grad_norm": 0.054264020174741745,
+ "learning_rate": 0.0006,
+ "loss": 3.4681930541992188,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23755458515284,
+ "grad_norm": 0.05625223368406296,
+ "learning_rate": 0.0006,
+ "loss": 3.4914324283599854,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251528384279474,
+ "grad_norm": 0.061760347336530685,
+ "learning_rate": 0.0006,
+ "loss": 3.525092840194702,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265502183406113,
+ "grad_norm": 0.0628439411520958,
+ "learning_rate": 0.0006,
+ "loss": 3.5061843395233154,
+ "step": 1243
+ },
+ {
+ "epoch": 17.27947598253275,
+ "grad_norm": 0.0659259706735611,
+ "learning_rate": 0.0006,
+ "loss": 3.53128719329834,
+ "step": 1244
+ },
+ {
+ "epoch": 17.29344978165939,
+ "grad_norm": 0.05818862468004227,
+ "learning_rate": 0.0006,
+ "loss": 3.5536415576934814,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307423580786025,
+ "grad_norm": 0.05471836030483246,
+ "learning_rate": 0.0006,
+ "loss": 3.5337672233581543,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321397379912664,
+ "grad_norm": 0.0487399697303772,
+ "learning_rate": 0.0006,
+ "loss": 3.522909641265869,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335371179039303,
+ "grad_norm": 0.05006934702396393,
+ "learning_rate": 0.0006,
+ "loss": 3.5228986740112305,
+ "step": 1248
+ },
+ {
+ "epoch": 17.349344978165938,
+ "grad_norm": 0.047036584466695786,
+ "learning_rate": 0.0006,
+ "loss": 3.582343578338623,
+ "step": 1249
+ },
+ {
+ "epoch": 17.363318777292577,
+ "grad_norm": 0.045836590230464935,
+ "learning_rate": 0.0006,
+ "loss": 3.5376439094543457,
+ "step": 1250
+ },
+ {
+ "epoch": 17.377292576419215,
+ "grad_norm": 0.044237297028303146,
+ "learning_rate": 0.0006,
+ "loss": 3.5435123443603516,
+ "step": 1251
+ },
+ {
+ "epoch": 17.39126637554585,
+ "grad_norm": 0.04441322013735771,
+ "learning_rate": 0.0006,
+ "loss": 3.5400638580322266,
+ "step": 1252
+ },
+ {
+ "epoch": 17.40524017467249,
+ "grad_norm": 0.04533323645591736,
+ "learning_rate": 0.0006,
+ "loss": 3.5287728309631348,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419213973799128,
+ "grad_norm": 0.03689985349774361,
+ "learning_rate": 0.0006,
+ "loss": 3.5161759853363037,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433187772925763,
+ "grad_norm": 0.03836561366915703,
+ "learning_rate": 0.0006,
+ "loss": 3.4899721145629883,
+ "step": 1255
+ },
+ {
+ "epoch": 17.4471615720524,
+ "grad_norm": 0.03594471141695976,
+ "learning_rate": 0.0006,
+ "loss": 3.534101963043213,
+ "step": 1256
+ },
+ {
+ "epoch": 17.46113537117904,
+ "grad_norm": 0.03834489732980728,
+ "learning_rate": 0.0006,
+ "loss": 3.4943580627441406,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475109170305675,
+ "grad_norm": 0.04318688064813614,
+ "learning_rate": 0.0006,
+ "loss": 3.5304384231567383,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489082969432314,
+ "grad_norm": 0.04468952864408493,
+ "learning_rate": 0.0006,
+ "loss": 3.5435900688171387,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503056768558952,
+ "grad_norm": 0.041371092200279236,
+ "learning_rate": 0.0006,
+ "loss": 3.529571056365967,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51703056768559,
+ "grad_norm": 0.03826779127120972,
+ "learning_rate": 0.0006,
+ "loss": 3.5024611949920654,
+ "step": 1261
+ },
+ {
+ "epoch": 17.531004366812226,
+ "grad_norm": 0.030302148312330246,
+ "learning_rate": 0.0006,
+ "loss": 3.5491857528686523,
+ "step": 1262
+ },
+ {
+ "epoch": 17.544978165938865,
+ "grad_norm": 0.02673652581870556,
+ "learning_rate": 0.0006,
+ "loss": 3.498325824737549,
+ "step": 1263
+ },
+ {
+ "epoch": 17.558951965065503,
+ "grad_norm": 0.026035286486148834,
+ "learning_rate": 0.0006,
+ "loss": 3.524242639541626,
+ "step": 1264
+ },
+ {
+ "epoch": 17.57292576419214,
+ "grad_norm": 0.02433512918651104,
+ "learning_rate": 0.0006,
+ "loss": 3.496821880340576,
+ "step": 1265
+ },
+ {
+ "epoch": 17.586899563318777,
+ "grad_norm": 0.023563958704471588,
+ "learning_rate": 0.0006,
+ "loss": 3.4883062839508057,
+ "step": 1266
+ },
+ {
+ "epoch": 17.600873362445416,
+ "grad_norm": 0.0206421110779047,
+ "learning_rate": 0.0006,
+ "loss": 3.519468069076538,
+ "step": 1267
+ },
+ {
+ "epoch": 17.61484716157205,
+ "grad_norm": 0.020854417234659195,
+ "learning_rate": 0.0006,
+ "loss": 3.5546176433563232,
+ "step": 1268
+ },
+ {
+ "epoch": 17.62882096069869,
+ "grad_norm": 0.01948000118136406,
+ "learning_rate": 0.0006,
+ "loss": 3.4945712089538574,
+ "step": 1269
+ },
+ {
+ "epoch": 17.64279475982533,
+ "grad_norm": 0.018670955672860146,
+ "learning_rate": 0.0006,
+ "loss": 3.4944663047790527,
+ "step": 1270
+ },
+ {
+ "epoch": 17.656768558951963,
+ "grad_norm": 0.018675116822123528,
+ "learning_rate": 0.0006,
+ "loss": 3.4906811714172363,
+ "step": 1271
+ },
+ {
+ "epoch": 17.670742358078602,
+ "grad_norm": 0.018198898062109947,
+ "learning_rate": 0.0006,
+ "loss": 3.4814324378967285,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68471615720524,
+ "grad_norm": 0.017625771462917328,
+ "learning_rate": 0.0006,
+ "loss": 3.481903553009033,
+ "step": 1273
+ },
+ {
+ "epoch": 17.69868995633188,
+ "grad_norm": 0.017468655481934547,
+ "learning_rate": 0.0006,
+ "loss": 3.504253625869751,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712663755458514,
+ "grad_norm": 0.017738448455929756,
+ "learning_rate": 0.0006,
+ "loss": 3.4731998443603516,
+ "step": 1275
+ },
+ {
+ "epoch": 17.726637554585153,
+ "grad_norm": 0.01674838177859783,
+ "learning_rate": 0.0006,
+ "loss": 3.501451253890991,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74061135371179,
+ "grad_norm": 0.016940834000706673,
+ "learning_rate": 0.0006,
+ "loss": 3.5022473335266113,
+ "step": 1277
+ },
+ {
+ "epoch": 17.754585152838427,
+ "grad_norm": 0.016655702143907547,
+ "learning_rate": 0.0006,
+ "loss": 3.489267349243164,
+ "step": 1278
+ },
+ {
+ "epoch": 17.768558951965066,
+ "grad_norm": 0.016576141119003296,
+ "learning_rate": 0.0006,
+ "loss": 3.489868402481079,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782532751091704,
+ "grad_norm": 0.015516328625380993,
+ "learning_rate": 0.0006,
+ "loss": 3.4777278900146484,
+ "step": 1280
+ },
+ {
+ "epoch": 17.79650655021834,
+ "grad_norm": 0.01572612300515175,
+ "learning_rate": 0.0006,
+ "loss": 3.4924020767211914,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810480349344978,
+ "grad_norm": 0.01619344763457775,
+ "learning_rate": 0.0006,
+ "loss": 3.4541757106781006,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824454148471617,
+ "grad_norm": 0.016174443066120148,
+ "learning_rate": 0.0006,
+ "loss": 3.496953010559082,
+ "step": 1283
+ },
+ {
+ "epoch": 17.83842794759825,
+ "grad_norm": 0.015538575127720833,
+ "learning_rate": 0.0006,
+ "loss": 3.501938819885254,
+ "step": 1284
+ },
+ {
+ "epoch": 17.85240174672489,
+ "grad_norm": 0.015476577915251255,
+ "learning_rate": 0.0006,
+ "loss": 3.4954936504364014,
+ "step": 1285
+ },
+ {
+ "epoch": 17.86637554585153,
+ "grad_norm": 0.01563846506178379,
+ "learning_rate": 0.0006,
+ "loss": 3.4736757278442383,
+ "step": 1286
+ },
+ {
+ "epoch": 17.880349344978168,
+ "grad_norm": 0.016416197642683983,
+ "learning_rate": 0.0006,
+ "loss": 3.4564414024353027,
+ "step": 1287
+ },
+ {
+ "epoch": 17.894323144104803,
+ "grad_norm": 0.016533056274056435,
+ "learning_rate": 0.0006,
+ "loss": 3.4835453033447266,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90829694323144,
+ "grad_norm": 0.01587281934916973,
+ "learning_rate": 0.0006,
+ "loss": 3.460432529449463,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92227074235808,
+ "grad_norm": 0.01610104739665985,
+ "learning_rate": 0.0006,
+ "loss": 3.4919300079345703,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936244541484715,
+ "grad_norm": 0.01581653021275997,
+ "learning_rate": 0.0006,
+ "loss": 3.4631175994873047,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950218340611354,
+ "grad_norm": 0.015979735180735588,
+ "learning_rate": 0.0006,
+ "loss": 3.4901933670043945,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964192139737992,
+ "grad_norm": 0.01630399376153946,
+ "learning_rate": 0.0006,
+ "loss": 3.4629836082458496,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978165938864628,
+ "grad_norm": 0.017480242997407913,
+ "learning_rate": 0.0006,
+ "loss": 3.4913692474365234,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992139737991266,
+ "grad_norm": 0.016874775290489197,
+ "learning_rate": 0.0006,
+ "loss": 3.4790616035461426,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.01860641874372959,
+ "learning_rate": 0.0006,
+ "loss": 3.451586961746216,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 3.9891297817230225,
+ "eval_runtime": 50.1961,
+ "eval_samples_per_second": 48.649,
+ "eval_steps_per_second": 1.534,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397379912664,
+ "grad_norm": 0.020353643223643303,
+ "learning_rate": 0.0006,
+ "loss": 3.3365015983581543,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027947598253274,
+ "grad_norm": 0.025348901748657227,
+ "learning_rate": 0.0006,
+ "loss": 3.362994909286499,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041921397379912,
+ "grad_norm": 0.025188535451889038,
+ "learning_rate": 0.0006,
+ "loss": 3.363680362701416,
+ "step": 1299
+ },
+ {
+ "epoch": 18.05589519650655,
+ "grad_norm": 0.022153817117214203,
+ "learning_rate": 0.0006,
+ "loss": 3.3311727046966553,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069868995633186,
+ "grad_norm": 0.023192603141069412,
+ "learning_rate": 0.0006,
+ "loss": 3.313582420349121,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083842794759825,
+ "grad_norm": 0.023841004818677902,
+ "learning_rate": 0.0006,
+ "loss": 3.3787522315979004,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097816593886463,
+ "grad_norm": 0.024539794772863388,
+ "learning_rate": 0.0006,
+ "loss": 3.382267475128174,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111790393013102,
+ "grad_norm": 0.026391029357910156,
+ "learning_rate": 0.0006,
+ "loss": 3.3674709796905518,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125764192139737,
+ "grad_norm": 0.027859404683113098,
+ "learning_rate": 0.0006,
+ "loss": 3.3584036827087402,
+ "step": 1305
+ },
+ {
+ "epoch": 18.139737991266376,
+ "grad_norm": 0.027688005939126015,
+ "learning_rate": 0.0006,
+ "loss": 3.314915657043457,
+ "step": 1306
+ },
+ {
+ "epoch": 18.153711790393015,
+ "grad_norm": 0.026942238211631775,
+ "learning_rate": 0.0006,
+ "loss": 3.387618064880371,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16768558951965,
+ "grad_norm": 0.02890498749911785,
+ "learning_rate": 0.0006,
+ "loss": 3.35286021232605,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18165938864629,
+ "grad_norm": 0.028318168595433235,
+ "learning_rate": 0.0006,
+ "loss": 3.347115993499756,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195633187772927,
+ "grad_norm": 0.02423982135951519,
+ "learning_rate": 0.0006,
+ "loss": 3.365628242492676,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209606986899562,
+ "grad_norm": 0.025620151311159134,
+ "learning_rate": 0.0006,
+ "loss": 3.3887939453125,
+ "step": 1311
+ },
+ {
+ "epoch": 18.2235807860262,
+ "grad_norm": 0.02538205496966839,
+ "learning_rate": 0.0006,
+ "loss": 3.3417105674743652,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23755458515284,
+ "grad_norm": 0.024902652949094772,
+ "learning_rate": 0.0006,
+ "loss": 3.348081111907959,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251528384279474,
+ "grad_norm": 0.024858251214027405,
+ "learning_rate": 0.0006,
+ "loss": 3.3346352577209473,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265502183406113,
+ "grad_norm": 0.02413691021502018,
+ "learning_rate": 0.0006,
+ "loss": 3.373331069946289,
+ "step": 1315
+ },
+ {
+ "epoch": 18.27947598253275,
+ "grad_norm": 0.024673711508512497,
+ "learning_rate": 0.0006,
+ "loss": 3.3532657623291016,
+ "step": 1316
+ },
+ {
+ "epoch": 18.29344978165939,
+ "grad_norm": 0.02378152869641781,
+ "learning_rate": 0.0006,
+ "loss": 3.380765438079834,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307423580786025,
+ "grad_norm": 0.025095898658037186,
+ "learning_rate": 0.0006,
+ "loss": 3.3837740421295166,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321397379912664,
+ "grad_norm": 0.028187017887830734,
+ "learning_rate": 0.0006,
+ "loss": 3.4130377769470215,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335371179039303,
+ "grad_norm": 0.030678752809762955,
+ "learning_rate": 0.0006,
+ "loss": 3.353358745574951,
+ "step": 1320
+ },
+ {
+ "epoch": 18.349344978165938,
+ "grad_norm": 0.03067706525325775,
+ "learning_rate": 0.0006,
+ "loss": 3.386003017425537,
+ "step": 1321
+ },
+ {
+ "epoch": 18.363318777292577,
+ "grad_norm": 0.029064467176795006,
+ "learning_rate": 0.0006,
+ "loss": 3.3915395736694336,
+ "step": 1322
+ },
+ {
+ "epoch": 18.377292576419215,
+ "grad_norm": 0.027225302532315254,
+ "learning_rate": 0.0006,
+ "loss": 3.3875136375427246,
+ "step": 1323
+ },
+ {
+ "epoch": 18.39126637554585,
+ "grad_norm": 0.02669711410999298,
+ "learning_rate": 0.0006,
+ "loss": 3.406268358230591,
+ "step": 1324
+ },
+ {
+ "epoch": 18.40524017467249,
+ "grad_norm": 0.028905952349305153,
+ "learning_rate": 0.0006,
+ "loss": 3.3588786125183105,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419213973799128,
+ "grad_norm": 0.02591577172279358,
+ "learning_rate": 0.0006,
+ "loss": 3.378920078277588,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433187772925763,
+ "grad_norm": 0.02405492030084133,
+ "learning_rate": 0.0006,
+ "loss": 3.4215216636657715,
+ "step": 1327
+ },
+ {
+ "epoch": 18.4471615720524,
+ "grad_norm": 0.02288426086306572,
+ "learning_rate": 0.0006,
+ "loss": 3.4051475524902344,
+ "step": 1328
+ },
+ {
+ "epoch": 18.46113537117904,
+ "grad_norm": 0.02265259623527527,
+ "learning_rate": 0.0006,
+ "loss": 3.376089096069336,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475109170305675,
+ "grad_norm": 0.021498411893844604,
+ "learning_rate": 0.0006,
+ "loss": 3.3922982215881348,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489082969432314,
+ "grad_norm": 0.02283475548028946,
+ "learning_rate": 0.0006,
+ "loss": 3.435965061187744,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503056768558952,
+ "grad_norm": 0.02214580774307251,
+ "learning_rate": 0.0006,
+ "loss": 3.4137468338012695,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51703056768559,
+ "grad_norm": 0.02150345966219902,
+ "learning_rate": 0.0006,
+ "loss": 3.3775486946105957,
+ "step": 1333
+ },
+ {
+ "epoch": 18.531004366812226,
+ "grad_norm": 0.02131151221692562,
+ "learning_rate": 0.0006,
+ "loss": 3.3902227878570557,
+ "step": 1334
+ },
+ {
+ "epoch": 18.544978165938865,
+ "grad_norm": 0.019052445888519287,
+ "learning_rate": 0.0006,
+ "loss": 3.4158318042755127,
+ "step": 1335
+ },
+ {
+ "epoch": 18.558951965065503,
+ "grad_norm": 0.018629150465130806,
+ "learning_rate": 0.0006,
+ "loss": 3.40549898147583,
+ "step": 1336
+ },
+ {
+ "epoch": 18.57292576419214,
+ "grad_norm": 0.019917191937565804,
+ "learning_rate": 0.0006,
+ "loss": 3.3770365715026855,
+ "step": 1337
+ },
+ {
+ "epoch": 18.586899563318777,
+ "grad_norm": 0.01985880360007286,
+ "learning_rate": 0.0006,
+ "loss": 3.393543243408203,
+ "step": 1338
+ },
+ {
+ "epoch": 18.600873362445416,
+ "grad_norm": 0.019536739215254784,
+ "learning_rate": 0.0006,
+ "loss": 3.426811695098877,
+ "step": 1339
+ },
+ {
+ "epoch": 18.61484716157205,
+ "grad_norm": 0.01855909265577793,
+ "learning_rate": 0.0006,
+ "loss": 3.401531219482422,
+ "step": 1340
+ },
+ {
+ "epoch": 18.62882096069869,
+ "grad_norm": 0.018492981791496277,
+ "learning_rate": 0.0006,
+ "loss": 3.4268338680267334,
+ "step": 1341
+ },
+ {
+ "epoch": 18.64279475982533,
+ "grad_norm": 0.0180380679666996,
+ "learning_rate": 0.0006,
+ "loss": 3.4302897453308105,
+ "step": 1342
+ },
+ {
+ "epoch": 18.656768558951963,
+ "grad_norm": 0.017962129786610603,
+ "learning_rate": 0.0006,
+ "loss": 3.396136522293091,
+ "step": 1343
+ },
+ {
+ "epoch": 18.670742358078602,
+ "grad_norm": 0.019102413207292557,
+ "learning_rate": 0.0006,
+ "loss": 3.390157699584961,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68471615720524,
+ "grad_norm": 0.01885206066071987,
+ "learning_rate": 0.0006,
+ "loss": 3.410893440246582,
+ "step": 1345
+ },
+ {
+ "epoch": 18.69868995633188,
+ "grad_norm": 0.018043991178274155,
+ "learning_rate": 0.0006,
+ "loss": 3.3919389247894287,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712663755458514,
+ "grad_norm": 0.01806800253689289,
+ "learning_rate": 0.0006,
+ "loss": 3.43209171295166,
+ "step": 1347
+ },
+ {
+ "epoch": 18.726637554585153,
+ "grad_norm": 0.01855402998626232,
+ "learning_rate": 0.0006,
+ "loss": 3.428830146789551,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74061135371179,
+ "grad_norm": 0.018445072695612907,
+ "learning_rate": 0.0006,
+ "loss": 3.4180264472961426,
+ "step": 1349
+ },
+ {
+ "epoch": 18.754585152838427,
+ "grad_norm": 0.018156694248318672,
+ "learning_rate": 0.0006,
+ "loss": 3.4011521339416504,
+ "step": 1350
+ },
+ {
+ "epoch": 18.768558951965066,
+ "grad_norm": 0.019634190946817398,
+ "learning_rate": 0.0006,
+ "loss": 3.388862371444702,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782532751091704,
+ "grad_norm": 0.01954115554690361,
+ "learning_rate": 0.0006,
+ "loss": 3.4300918579101562,
+ "step": 1352
+ },
+ {
+ "epoch": 18.79650655021834,
+ "grad_norm": 0.01783105544745922,
+ "learning_rate": 0.0006,
+ "loss": 3.3942103385925293,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810480349344978,
+ "grad_norm": 0.017380334436893463,
+ "learning_rate": 0.0006,
+ "loss": 3.4005725383758545,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824454148471617,
+ "grad_norm": 0.01806088164448738,
+ "learning_rate": 0.0006,
+ "loss": 3.4157588481903076,
+ "step": 1355
+ },
+ {
+ "epoch": 18.83842794759825,
+ "grad_norm": 0.018839186057448387,
+ "learning_rate": 0.0006,
+ "loss": 3.40814208984375,
+ "step": 1356
+ },
+ {
+ "epoch": 18.85240174672489,
+ "grad_norm": 0.018662428483366966,
+ "learning_rate": 0.0006,
+ "loss": 3.4516561031341553,
+ "step": 1357
+ },
+ {
+ "epoch": 18.86637554585153,
+ "grad_norm": 0.016893137246370316,
+ "learning_rate": 0.0006,
+ "loss": 3.437650680541992,
+ "step": 1358
+ },
+ {
+ "epoch": 18.880349344978168,
+ "grad_norm": 0.017629794776439667,
+ "learning_rate": 0.0006,
+ "loss": 3.4278972148895264,
+ "step": 1359
+ },
+ {
+ "epoch": 18.894323144104803,
+ "grad_norm": 0.018383143469691277,
+ "learning_rate": 0.0006,
+ "loss": 3.4278743267059326,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90829694323144,
+ "grad_norm": 0.01822691783308983,
+ "learning_rate": 0.0006,
+ "loss": 3.4315247535705566,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92227074235808,
+ "grad_norm": 0.019348058849573135,
+ "learning_rate": 0.0006,
+ "loss": 3.401350498199463,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936244541484715,
+ "grad_norm": 0.01952742226421833,
+ "learning_rate": 0.0006,
+ "loss": 3.378289222717285,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950218340611354,
+ "grad_norm": 0.019068529829382896,
+ "learning_rate": 0.0006,
+ "loss": 3.4088215827941895,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964192139737992,
+ "grad_norm": 0.02002856135368347,
+ "learning_rate": 0.0006,
+ "loss": 3.4396965503692627,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978165938864628,
+ "grad_norm": 0.01839490234851837,
+ "learning_rate": 0.0006,
+ "loss": 3.4167215824127197,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992139737991266,
+ "grad_norm": 0.018450899049639702,
+ "learning_rate": 0.0006,
+ "loss": 3.4458084106445312,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.021764317527413368,
+ "learning_rate": 0.0006,
+ "loss": 3.4413537979125977,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 3.9891514778137207,
+ "eval_runtime": 49.9998,
+ "eval_samples_per_second": 48.84,
+ "eval_steps_per_second": 1.54,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397379912664,
+ "grad_norm": 0.02277272194623947,
+ "learning_rate": 0.0006,
+ "loss": 3.2692642211914062,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027947598253274,
+ "grad_norm": 0.03352588415145874,
+ "learning_rate": 0.0006,
+ "loss": 3.2701330184936523,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041921397379912,
+ "grad_norm": 0.03873065486550331,
+ "learning_rate": 0.0006,
+ "loss": 3.3169291019439697,
+ "step": 1371
+ },
+ {
+ "epoch": 19.05589519650655,
+ "grad_norm": 0.03804260492324829,
+ "learning_rate": 0.0006,
+ "loss": 3.2720119953155518,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069868995633186,
+ "grad_norm": 0.04382786899805069,
+ "learning_rate": 0.0006,
+ "loss": 3.2789559364318848,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083842794759825,
+ "grad_norm": 0.042553164064884186,
+ "learning_rate": 0.0006,
+ "loss": 3.287041187286377,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097816593886463,
+ "grad_norm": 0.040354058146476746,
+ "learning_rate": 0.0006,
+ "loss": 3.2970733642578125,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111790393013102,
+ "grad_norm": 0.04003302380442619,
+ "learning_rate": 0.0006,
+ "loss": 3.298656940460205,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125764192139737,
+ "grad_norm": 0.04839435964822769,
+ "learning_rate": 0.0006,
+ "loss": 3.3119897842407227,
+ "step": 1377
+ },
+ {
+ "epoch": 19.139737991266376,
+ "grad_norm": 0.04619353264570236,
+ "learning_rate": 0.0006,
+ "loss": 3.323103904724121,
+ "step": 1378
+ },
+ {
+ "epoch": 19.153711790393015,
+ "grad_norm": 0.04889119043946266,
+ "learning_rate": 0.0006,
+ "loss": 3.29386043548584,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16768558951965,
+ "grad_norm": 0.052284516394138336,
+ "learning_rate": 0.0006,
+ "loss": 3.2952120304107666,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18165938864629,
+ "grad_norm": 0.053939417004585266,
+ "learning_rate": 0.0006,
+ "loss": 3.309581756591797,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195633187772927,
+ "grad_norm": 0.04883198067545891,
+ "learning_rate": 0.0006,
+ "loss": 3.3202223777770996,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209606986899562,
+ "grad_norm": 0.04550885036587715,
+ "learning_rate": 0.0006,
+ "loss": 3.3503410816192627,
+ "step": 1383
+ },
+ {
+ "epoch": 19.2235807860262,
+ "grad_norm": 0.04721444472670555,
+ "learning_rate": 0.0006,
+ "loss": 3.3530726432800293,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23755458515284,
+ "grad_norm": 0.051496051251888275,
+ "learning_rate": 0.0006,
+ "loss": 3.333950996398926,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251528384279474,
+ "grad_norm": 0.053854621946811676,
+ "learning_rate": 0.0006,
+ "loss": 3.3520333766937256,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265502183406113,
+ "grad_norm": 0.04623614624142647,
+ "learning_rate": 0.0006,
+ "loss": 3.350588083267212,
+ "step": 1387
+ },
+ {
+ "epoch": 19.27947598253275,
+ "grad_norm": 0.04073309525847435,
+ "learning_rate": 0.0006,
+ "loss": 3.3644251823425293,
+ "step": 1388
+ },
+ {
+ "epoch": 19.29344978165939,
+ "grad_norm": 0.03639872372150421,
+ "learning_rate": 0.0006,
+ "loss": 3.367534875869751,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307423580786025,
+ "grad_norm": 0.036499980837106705,
+ "learning_rate": 0.0006,
+ "loss": 3.3632423877716064,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321397379912664,
+ "grad_norm": 0.0373394750058651,
+ "learning_rate": 0.0006,
+ "loss": 3.3506932258605957,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335371179039303,
+ "grad_norm": 0.04176274687051773,
+ "learning_rate": 0.0006,
+ "loss": 3.3571481704711914,
+ "step": 1392
+ },
+ {
+ "epoch": 19.349344978165938,
+ "grad_norm": 0.04616089537739754,
+ "learning_rate": 0.0006,
+ "loss": 3.359266996383667,
+ "step": 1393
+ },
+ {
+ "epoch": 19.363318777292577,
+ "grad_norm": 0.04692723974585533,
+ "learning_rate": 0.0006,
+ "loss": 3.390904188156128,
+ "step": 1394
+ },
+ {
+ "epoch": 19.377292576419215,
+ "grad_norm": 0.04957121983170509,
+ "learning_rate": 0.0006,
+ "loss": 3.341733932495117,
+ "step": 1395
+ },
+ {
+ "epoch": 19.39126637554585,
+ "grad_norm": 0.0432475246489048,
+ "learning_rate": 0.0006,
+ "loss": 3.2961924076080322,
+ "step": 1396
+ },
+ {
+ "epoch": 19.40524017467249,
+ "grad_norm": 0.041836753487586975,
+ "learning_rate": 0.0006,
+ "loss": 3.3686509132385254,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419213973799128,
+ "grad_norm": 0.03855185955762863,
+ "learning_rate": 0.0006,
+ "loss": 3.3566665649414062,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433187772925763,
+ "grad_norm": 0.034848880022764206,
+ "learning_rate": 0.0006,
+ "loss": 3.374608039855957,
+ "step": 1399
+ },
+ {
+ "epoch": 19.4471615720524,
+ "grad_norm": 0.03131943941116333,
+ "learning_rate": 0.0006,
+ "loss": 3.3618953227996826,
+ "step": 1400
+ },
+ {
+ "epoch": 19.46113537117904,
+ "grad_norm": 0.029629478231072426,
+ "learning_rate": 0.0006,
+ "loss": 3.3952600955963135,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475109170305675,
+ "grad_norm": 0.02885911799967289,
+ "learning_rate": 0.0006,
+ "loss": 3.382490634918213,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489082969432314,
+ "grad_norm": 0.026441723108291626,
+ "learning_rate": 0.0006,
+ "loss": 3.3543779850006104,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503056768558952,
+ "grad_norm": 0.024119269102811813,
+ "learning_rate": 0.0006,
+ "loss": 3.3829503059387207,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51703056768559,
+ "grad_norm": 0.023766381666064262,
+ "learning_rate": 0.0006,
+ "loss": 3.37758731842041,
+ "step": 1405
+ },
+ {
+ "epoch": 19.531004366812226,
+ "grad_norm": 0.02395741641521454,
+ "learning_rate": 0.0006,
+ "loss": 3.4042277336120605,
+ "step": 1406
+ },
+ {
+ "epoch": 19.544978165938865,
+ "grad_norm": 0.023499730974435806,
+ "learning_rate": 0.0006,
+ "loss": 3.3811798095703125,
+ "step": 1407
+ },
+ {
+ "epoch": 19.558951965065503,
+ "grad_norm": 0.021423807367682457,
+ "learning_rate": 0.0006,
+ "loss": 3.3517274856567383,
+ "step": 1408
+ },
+ {
+ "epoch": 19.57292576419214,
+ "grad_norm": 0.02017848752439022,
+ "learning_rate": 0.0006,
+ "loss": 3.369368314743042,
+ "step": 1409
+ },
+ {
+ "epoch": 19.586899563318777,
+ "grad_norm": 0.02168160304427147,
+ "learning_rate": 0.0006,
+ "loss": 3.357361316680908,
+ "step": 1410
+ },
+ {
+ "epoch": 19.600873362445416,
+ "grad_norm": 0.020053956657648087,
+ "learning_rate": 0.0006,
+ "loss": 3.378511667251587,
+ "step": 1411
+ },
+ {
+ "epoch": 19.61484716157205,
+ "grad_norm": 0.018789371475577354,
+ "learning_rate": 0.0006,
+ "loss": 3.386579990386963,
+ "step": 1412
+ },
+ {
+ "epoch": 19.62882096069869,
+ "grad_norm": 0.01985175907611847,
+ "learning_rate": 0.0006,
+ "loss": 3.3903000354766846,
+ "step": 1413
+ },
+ {
+ "epoch": 19.64279475982533,
+ "grad_norm": 0.019878871738910675,
+ "learning_rate": 0.0006,
+ "loss": 3.362997055053711,
+ "step": 1414
+ },
+ {
+ "epoch": 19.656768558951963,
+ "grad_norm": 0.01920200325548649,
+ "learning_rate": 0.0006,
+ "loss": 3.397496461868286,
+ "step": 1415
+ },
+ {
+ "epoch": 19.670742358078602,
+ "grad_norm": 0.019940156489610672,
+ "learning_rate": 0.0006,
+ "loss": 3.375986099243164,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68471615720524,
+ "grad_norm": 0.019822560250759125,
+ "learning_rate": 0.0006,
+ "loss": 3.351943016052246,
+ "step": 1417
+ },
+ {
+ "epoch": 19.69868995633188,
+ "grad_norm": 0.01987987756729126,
+ "learning_rate": 0.0006,
+ "loss": 3.3699135780334473,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712663755458514,
+ "grad_norm": 0.020490208640694618,
+ "learning_rate": 0.0006,
+ "loss": 3.3826851844787598,
+ "step": 1419
+ },
+ {
+ "epoch": 19.726637554585153,
+ "grad_norm": 0.019540539011359215,
+ "learning_rate": 0.0006,
+ "loss": 3.330385208129883,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74061135371179,
+ "grad_norm": 0.018522001802921295,
+ "learning_rate": 0.0006,
+ "loss": 3.3798022270202637,
+ "step": 1421
+ },
+ {
+ "epoch": 19.754585152838427,
+ "grad_norm": 0.019179968163371086,
+ "learning_rate": 0.0006,
+ "loss": 3.352015733718872,
+ "step": 1422
+ },
+ {
+ "epoch": 19.768558951965066,
+ "grad_norm": 0.018380016088485718,
+ "learning_rate": 0.0006,
+ "loss": 3.3417506217956543,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782532751091704,
+ "grad_norm": 0.018539059907197952,
+ "learning_rate": 0.0006,
+ "loss": 3.3680901527404785,
+ "step": 1424
+ },
+ {
+ "epoch": 19.79650655021834,
+ "grad_norm": 0.01938101463019848,
+ "learning_rate": 0.0006,
+ "loss": 3.3972573280334473,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810480349344978,
+ "grad_norm": 0.019287938252091408,
+ "learning_rate": 0.0006,
+ "loss": 3.3635201454162598,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824454148471617,
+ "grad_norm": 0.01918751373887062,
+ "learning_rate": 0.0006,
+ "loss": 3.3594346046447754,
+ "step": 1427
+ },
+ {
+ "epoch": 19.83842794759825,
+ "grad_norm": 0.01843525469303131,
+ "learning_rate": 0.0006,
+ "loss": 3.3794357776641846,
+ "step": 1428
+ },
+ {
+ "epoch": 19.85240174672489,
+ "grad_norm": 0.017499281093478203,
+ "learning_rate": 0.0006,
+ "loss": 3.3725686073303223,
+ "step": 1429
+ },
+ {
+ "epoch": 19.86637554585153,
+ "grad_norm": 0.01804421842098236,
+ "learning_rate": 0.0006,
+ "loss": 3.3510665893554688,
+ "step": 1430
+ },
+ {
+ "epoch": 19.880349344978168,
+ "grad_norm": 0.01854187622666359,
+ "learning_rate": 0.0006,
+ "loss": 3.366323471069336,
+ "step": 1431
+ },
+ {
+ "epoch": 19.894323144104803,
+ "grad_norm": 0.019070899114012718,
+ "learning_rate": 0.0006,
+ "loss": 3.3426618576049805,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90829694323144,
+ "grad_norm": 0.018046852201223373,
+ "learning_rate": 0.0006,
+ "loss": 3.392629623413086,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92227074235808,
+ "grad_norm": 0.017897332087159157,
+ "learning_rate": 0.0006,
+ "loss": 3.384459972381592,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936244541484715,
+ "grad_norm": 0.018831918016076088,
+ "learning_rate": 0.0006,
+ "loss": 3.3787403106689453,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950218340611354,
+ "grad_norm": 0.017684299498796463,
+ "learning_rate": 0.0006,
+ "loss": 3.3839499950408936,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964192139737992,
+ "grad_norm": 0.018664930015802383,
+ "learning_rate": 0.0006,
+ "loss": 3.361309289932251,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978165938864628,
+ "grad_norm": 0.018459675833582878,
+ "learning_rate": 0.0006,
+ "loss": 3.3763248920440674,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992139737991266,
+ "grad_norm": 0.018684620037674904,
+ "learning_rate": 0.0006,
+ "loss": 3.364279270172119,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.02109597623348236,
+ "learning_rate": 0.0006,
+ "loss": 3.3849806785583496,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 3.997159004211426,
+ "eval_runtime": 54.7559,
+ "eval_samples_per_second": 44.598,
+ "eval_steps_per_second": 1.406,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397379912664,
+ "grad_norm": 0.023242158815264702,
+ "learning_rate": 0.0006,
+ "loss": 3.219148635864258,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027947598253274,
+ "grad_norm": 0.035289909690618515,
+ "learning_rate": 0.0006,
+ "loss": 3.1906566619873047,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041921397379912,
+ "grad_norm": 0.03934298828244209,
+ "learning_rate": 0.0006,
+ "loss": 3.24796199798584,
+ "step": 1443
+ },
+ {
+ "epoch": 20.05589519650655,
+ "grad_norm": 0.03764699772000313,
+ "learning_rate": 0.0006,
+ "loss": 3.258643627166748,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069868995633186,
+ "grad_norm": 0.038128290325403214,
+ "learning_rate": 0.0006,
+ "loss": 3.2360262870788574,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083842794759825,
+ "grad_norm": 0.04228486120700836,
+ "learning_rate": 0.0006,
+ "loss": 3.246365547180176,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097816593886463,
+ "grad_norm": 0.04360193759202957,
+ "learning_rate": 0.0006,
+ "loss": 3.2414700984954834,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111790393013102,
+ "grad_norm": 0.03822943568229675,
+ "learning_rate": 0.0006,
+ "loss": 3.2489700317382812,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125764192139737,
+ "grad_norm": 0.036029502749443054,
+ "learning_rate": 0.0006,
+ "loss": 3.2229957580566406,
+ "step": 1449
+ },
+ {
+ "epoch": 20.139737991266376,
+ "grad_norm": 0.03957182168960571,
+ "learning_rate": 0.0006,
+ "loss": 3.256904125213623,
+ "step": 1450
+ },
+ {
+ "epoch": 20.153711790393015,
+ "grad_norm": 0.039222728461027145,
+ "learning_rate": 0.0006,
+ "loss": 3.268920660018921,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16768558951965,
+ "grad_norm": 0.034906432032585144,
+ "learning_rate": 0.0006,
+ "loss": 3.2575674057006836,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18165938864629,
+ "grad_norm": 0.03401615098118782,
+ "learning_rate": 0.0006,
+ "loss": 3.231116771697998,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195633187772927,
+ "grad_norm": 0.034356508404016495,
+ "learning_rate": 0.0006,
+ "loss": 3.262190580368042,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209606986899562,
+ "grad_norm": 0.03251064196228981,
+ "learning_rate": 0.0006,
+ "loss": 3.2810235023498535,
+ "step": 1455
+ },
+ {
+ "epoch": 20.2235807860262,
+ "grad_norm": 0.03308776021003723,
+ "learning_rate": 0.0006,
+ "loss": 3.2639098167419434,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23755458515284,
+ "grad_norm": 0.03230876103043556,
+ "learning_rate": 0.0006,
+ "loss": 3.2558178901672363,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251528384279474,
+ "grad_norm": 0.03161812946200371,
+ "learning_rate": 0.0006,
+ "loss": 3.291419267654419,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265502183406113,
+ "grad_norm": 0.02916458062827587,
+ "learning_rate": 0.0006,
+ "loss": 3.280852794647217,
+ "step": 1459
+ },
+ {
+ "epoch": 20.27947598253275,
+ "grad_norm": 0.029812375083565712,
+ "learning_rate": 0.0006,
+ "loss": 3.2271876335144043,
+ "step": 1460
+ },
+ {
+ "epoch": 20.29344978165939,
+ "grad_norm": 0.029384229332208633,
+ "learning_rate": 0.0006,
+ "loss": 3.2629804611206055,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307423580786025,
+ "grad_norm": 0.033414218574762344,
+ "learning_rate": 0.0006,
+ "loss": 3.270416498184204,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321397379912664,
+ "grad_norm": 0.03318887576460838,
+ "learning_rate": 0.0006,
+ "loss": 3.272148609161377,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335371179039303,
+ "grad_norm": 0.030193055048584938,
+ "learning_rate": 0.0006,
+ "loss": 3.2646775245666504,
+ "step": 1464
+ },
+ {
+ "epoch": 20.349344978165938,
+ "grad_norm": 0.028252357617020607,
+ "learning_rate": 0.0006,
+ "loss": 3.2772417068481445,
+ "step": 1465
+ },
+ {
+ "epoch": 20.363318777292577,
+ "grad_norm": 0.028565213084220886,
+ "learning_rate": 0.0006,
+ "loss": 3.3179280757904053,
+ "step": 1466
+ },
+ {
+ "epoch": 20.377292576419215,
+ "grad_norm": 0.026722336187958717,
+ "learning_rate": 0.0006,
+ "loss": 3.2810170650482178,
+ "step": 1467
+ },
+ {
+ "epoch": 20.39126637554585,
+ "grad_norm": 0.025114644318819046,
+ "learning_rate": 0.0006,
+ "loss": 3.2686173915863037,
+ "step": 1468
+ },
+ {
+ "epoch": 20.40524017467249,
+ "grad_norm": 0.025851737707853317,
+ "learning_rate": 0.0006,
+ "loss": 3.2975308895111084,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419213973799128,
+ "grad_norm": 0.024468228220939636,
+ "learning_rate": 0.0006,
+ "loss": 3.2880358695983887,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433187772925763,
+ "grad_norm": 0.02360754832625389,
+ "learning_rate": 0.0006,
+ "loss": 3.2768073081970215,
+ "step": 1471
+ },
+ {
+ "epoch": 20.4471615720524,
+ "grad_norm": 0.024596888571977615,
+ "learning_rate": 0.0006,
+ "loss": 3.285207509994507,
+ "step": 1472
+ },
+ {
+ "epoch": 20.46113537117904,
+ "grad_norm": 0.02434864081442356,
+ "learning_rate": 0.0006,
+ "loss": 3.284351110458374,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475109170305675,
+ "grad_norm": 0.023001939058303833,
+ "learning_rate": 0.0006,
+ "loss": 3.2642571926116943,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489082969432314,
+ "grad_norm": 0.022632446140050888,
+ "learning_rate": 0.0006,
+ "loss": 3.32163143157959,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503056768558952,
+ "grad_norm": 0.023113328963518143,
+ "learning_rate": 0.0006,
+ "loss": 3.292109251022339,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51703056768559,
+ "grad_norm": 0.02199697494506836,
+ "learning_rate": 0.0006,
+ "loss": 3.3133938312530518,
+ "step": 1477
+ },
+ {
+ "epoch": 20.531004366812226,
+ "grad_norm": 0.023468362167477608,
+ "learning_rate": 0.0006,
+ "loss": 3.2595276832580566,
+ "step": 1478
+ },
+ {
+ "epoch": 20.544978165938865,
+ "grad_norm": 0.022027716040611267,
+ "learning_rate": 0.0006,
+ "loss": 3.2692484855651855,
+ "step": 1479
+ },
+ {
+ "epoch": 20.558951965065503,
+ "grad_norm": 0.021089443936944008,
+ "learning_rate": 0.0006,
+ "loss": 3.317549467086792,
+ "step": 1480
+ },
+ {
+ "epoch": 20.57292576419214,
+ "grad_norm": 0.020714912563562393,
+ "learning_rate": 0.0006,
+ "loss": 3.2982163429260254,
+ "step": 1481
+ },
+ {
+ "epoch": 20.586899563318777,
+ "grad_norm": 0.021601643413305283,
+ "learning_rate": 0.0006,
+ "loss": 3.303770065307617,
+ "step": 1482
+ },
+ {
+ "epoch": 20.600873362445416,
+ "grad_norm": 0.02164667472243309,
+ "learning_rate": 0.0006,
+ "loss": 3.297548294067383,
+ "step": 1483
+ },
+ {
+ "epoch": 20.61484716157205,
+ "grad_norm": 0.0205276720225811,
+ "learning_rate": 0.0006,
+ "loss": 3.265287399291992,
+ "step": 1484
+ },
+ {
+ "epoch": 20.62882096069869,
+ "grad_norm": 0.020926227793097496,
+ "learning_rate": 0.0006,
+ "loss": 3.3233776092529297,
+ "step": 1485
+ },
+ {
+ "epoch": 20.64279475982533,
+ "grad_norm": 0.020680908113718033,
+ "learning_rate": 0.0006,
+ "loss": 3.299736499786377,
+ "step": 1486
+ },
+ {
+ "epoch": 20.656768558951963,
+ "grad_norm": 0.02010631375014782,
+ "learning_rate": 0.0006,
+ "loss": 3.319195032119751,
+ "step": 1487
+ },
+ {
+ "epoch": 20.670742358078602,
+ "grad_norm": 0.01861870475113392,
+ "learning_rate": 0.0006,
+ "loss": 3.309542179107666,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68471615720524,
+ "grad_norm": 0.019709311425685883,
+ "learning_rate": 0.0006,
+ "loss": 3.2684426307678223,
+ "step": 1489
+ },
+ {
+ "epoch": 20.69868995633188,
+ "grad_norm": 0.019379155710339546,
+ "learning_rate": 0.0006,
+ "loss": 3.3123316764831543,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712663755458514,
+ "grad_norm": 0.018971465528011322,
+ "learning_rate": 0.0006,
+ "loss": 3.3249459266662598,
+ "step": 1491
+ },
+ {
+ "epoch": 20.726637554585153,
+ "grad_norm": 0.01862727664411068,
+ "learning_rate": 0.0006,
+ "loss": 3.2942824363708496,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74061135371179,
+ "grad_norm": 0.01932865008711815,
+ "learning_rate": 0.0006,
+ "loss": 3.3328568935394287,
+ "step": 1493
+ },
+ {
+ "epoch": 20.754585152838427,
+ "grad_norm": 0.019298749044537544,
+ "learning_rate": 0.0006,
+ "loss": 3.2632360458374023,
+ "step": 1494
+ },
+ {
+ "epoch": 20.768558951965066,
+ "grad_norm": 0.018749341368675232,
+ "learning_rate": 0.0006,
+ "loss": 3.320802688598633,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782532751091704,
+ "grad_norm": 0.01888313889503479,
+ "learning_rate": 0.0006,
+ "loss": 3.3290247917175293,
+ "step": 1496
+ },
+ {
+ "epoch": 20.79650655021834,
+ "grad_norm": 0.019536348059773445,
+ "learning_rate": 0.0006,
+ "loss": 3.311213493347168,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810480349344978,
+ "grad_norm": 0.018573017790913582,
+ "learning_rate": 0.0006,
+ "loss": 3.3132004737854004,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824454148471617,
+ "grad_norm": 0.019365103915333748,
+ "learning_rate": 0.0006,
+ "loss": 3.312656879425049,
+ "step": 1499
+ },
+ {
+ "epoch": 20.83842794759825,
+ "grad_norm": 0.021032165735960007,
+ "learning_rate": 0.0006,
+ "loss": 3.330728054046631,
+ "step": 1500
+ },
+ {
+ "epoch": 20.85240174672489,
+ "grad_norm": 0.02062826044857502,
+ "learning_rate": 0.0006,
+ "loss": 3.386507034301758,
+ "step": 1501
+ },
+ {
+ "epoch": 20.86637554585153,
+ "grad_norm": 0.019087517634034157,
+ "learning_rate": 0.0006,
+ "loss": 3.3134851455688477,
+ "step": 1502
+ },
+ {
+ "epoch": 20.880349344978168,
+ "grad_norm": 0.018393544480204582,
+ "learning_rate": 0.0006,
+ "loss": 3.3288557529449463,
+ "step": 1503
+ },
+ {
+ "epoch": 20.894323144104803,
+ "grad_norm": 0.018625570461153984,
+ "learning_rate": 0.0006,
+ "loss": 3.3385863304138184,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90829694323144,
+ "grad_norm": 0.018994612619280815,
+ "learning_rate": 0.0006,
+ "loss": 3.3441519737243652,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92227074235808,
+ "grad_norm": 0.019807450473308563,
+ "learning_rate": 0.0006,
+ "loss": 3.2853572368621826,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936244541484715,
+ "grad_norm": 0.01904045045375824,
+ "learning_rate": 0.0006,
+ "loss": 3.2973103523254395,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950218340611354,
+ "grad_norm": 0.019115809351205826,
+ "learning_rate": 0.0006,
+ "loss": 3.3340232372283936,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964192139737992,
+ "grad_norm": 0.020370563492178917,
+ "learning_rate": 0.0006,
+ "loss": 3.3770620822906494,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978165938864628,
+ "grad_norm": 0.02040398307144642,
+ "learning_rate": 0.0006,
+ "loss": 3.3141350746154785,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992139737991266,
+ "grad_norm": 0.019721226766705513,
+ "learning_rate": 0.0006,
+ "loss": 3.3140838146209717,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.021993499249219894,
+ "learning_rate": 0.0006,
+ "loss": 3.327284574508667,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 4.007121562957764,
+ "eval_runtime": 50.0284,
+ "eval_samples_per_second": 48.812,
+ "eval_steps_per_second": 1.539,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397379912664,
+ "grad_norm": 0.0266740545630455,
+ "learning_rate": 0.0006,
+ "loss": 3.1542232036590576,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027947598253274,
+ "grad_norm": 0.0431625060737133,
+ "learning_rate": 0.0006,
+ "loss": 3.1733574867248535,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041921397379912,
+ "grad_norm": 0.05062565952539444,
+ "learning_rate": 0.0006,
+ "loss": 3.2326841354370117,
+ "step": 1515
+ },
+ {
+ "epoch": 21.05589519650655,
+ "grad_norm": 0.04447261989116669,
+ "learning_rate": 0.0006,
+ "loss": 3.158965587615967,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069868995633186,
+ "grad_norm": 0.04547872766852379,
+ "learning_rate": 0.0006,
+ "loss": 3.1754844188690186,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083842794759825,
+ "grad_norm": 0.045201778411865234,
+ "learning_rate": 0.0006,
+ "loss": 3.164539337158203,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097816593886463,
+ "grad_norm": 0.04903271794319153,
+ "learning_rate": 0.0006,
+ "loss": 3.223135232925415,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111790393013102,
+ "grad_norm": 0.05277688428759575,
+ "learning_rate": 0.0006,
+ "loss": 3.21925687789917,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125764192139737,
+ "grad_norm": 0.055951476097106934,
+ "learning_rate": 0.0006,
+ "loss": 3.2054057121276855,
+ "step": 1521
+ },
+ {
+ "epoch": 21.139737991266376,
+ "grad_norm": 0.05742252990603447,
+ "learning_rate": 0.0006,
+ "loss": 3.2347140312194824,
+ "step": 1522
+ },
+ {
+ "epoch": 21.153711790393015,
+ "grad_norm": 0.05464409664273262,
+ "learning_rate": 0.0006,
+ "loss": 3.2519783973693848,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16768558951965,
+ "grad_norm": 0.06649098545312881,
+ "learning_rate": 0.0006,
+ "loss": 3.2739510536193848,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18165938864629,
+ "grad_norm": 0.07743308693170547,
+ "learning_rate": 0.0006,
+ "loss": 3.2961807250976562,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195633187772927,
+ "grad_norm": 0.0752289667725563,
+ "learning_rate": 0.0006,
+ "loss": 3.284780740737915,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209606986899562,
+ "grad_norm": 0.06247316300868988,
+ "learning_rate": 0.0006,
+ "loss": 3.253411293029785,
+ "step": 1527
+ },
+ {
+ "epoch": 21.2235807860262,
+ "grad_norm": 0.06856120377779007,
+ "learning_rate": 0.0006,
+ "loss": 3.288010597229004,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23755458515284,
+ "grad_norm": 0.06939002871513367,
+ "learning_rate": 0.0006,
+ "loss": 3.2672412395477295,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251528384279474,
+ "grad_norm": 0.06546786427497864,
+ "learning_rate": 0.0006,
+ "loss": 3.2822303771972656,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265502183406113,
+ "grad_norm": 0.06720232218503952,
+ "learning_rate": 0.0006,
+ "loss": 3.332411289215088,
+ "step": 1531
+ },
+ {
+ "epoch": 21.27947598253275,
+ "grad_norm": 0.061658330261707306,
+ "learning_rate": 0.0006,
+ "loss": 3.2908289432525635,
+ "step": 1532
+ },
+ {
+ "epoch": 21.29344978165939,
+ "grad_norm": 0.07328956574201584,
+ "learning_rate": 0.0006,
+ "loss": 3.3375182151794434,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307423580786025,
+ "grad_norm": 0.06822583079338074,
+ "learning_rate": 0.0006,
+ "loss": 3.3630833625793457,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321397379912664,
+ "grad_norm": 0.060682639479637146,
+ "learning_rate": 0.0006,
+ "loss": 3.3475425243377686,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335371179039303,
+ "grad_norm": 0.05718247592449188,
+ "learning_rate": 0.0006,
+ "loss": 3.351832866668701,
+ "step": 1536
+ },
+ {
+ "epoch": 21.349344978165938,
+ "grad_norm": 0.05781054124236107,
+ "learning_rate": 0.0006,
+ "loss": 3.38287091255188,
+ "step": 1537
+ },
+ {
+ "epoch": 21.363318777292577,
+ "grad_norm": 0.05846734717488289,
+ "learning_rate": 0.0006,
+ "loss": 3.3522510528564453,
+ "step": 1538
+ },
+ {
+ "epoch": 21.377292576419215,
+ "grad_norm": 0.0558689683675766,
+ "learning_rate": 0.0006,
+ "loss": 3.3376541137695312,
+ "step": 1539
+ },
+ {
+ "epoch": 21.39126637554585,
+ "grad_norm": 0.050501998513936996,
+ "learning_rate": 0.0006,
+ "loss": 3.359436511993408,
+ "step": 1540
+ },
+ {
+ "epoch": 21.40524017467249,
+ "grad_norm": 0.04265185445547104,
+ "learning_rate": 0.0006,
+ "loss": 3.3644630908966064,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419213973799128,
+ "grad_norm": 0.038762111216783524,
+ "learning_rate": 0.0006,
+ "loss": 3.347414493560791,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433187772925763,
+ "grad_norm": 0.033920831978321075,
+ "learning_rate": 0.0006,
+ "loss": 3.3242359161376953,
+ "step": 1543
+ },
+ {
+ "epoch": 21.4471615720524,
+ "grad_norm": 0.03363734856247902,
+ "learning_rate": 0.0006,
+ "loss": 3.3375630378723145,
+ "step": 1544
+ },
+ {
+ "epoch": 21.46113537117904,
+ "grad_norm": 0.03235653042793274,
+ "learning_rate": 0.0006,
+ "loss": 3.3372178077697754,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475109170305675,
+ "grad_norm": 0.028865264728665352,
+ "learning_rate": 0.0006,
+ "loss": 3.349198341369629,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489082969432314,
+ "grad_norm": 0.026676205918192863,
+ "learning_rate": 0.0006,
+ "loss": 3.355546474456787,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503056768558952,
+ "grad_norm": 0.023821823298931122,
+ "learning_rate": 0.0006,
+ "loss": 3.303542137145996,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51703056768559,
+ "grad_norm": 0.02385578863322735,
+ "learning_rate": 0.0006,
+ "loss": 3.3081653118133545,
+ "step": 1549
+ },
+ {
+ "epoch": 21.531004366812226,
+ "grad_norm": 0.022704163566231728,
+ "learning_rate": 0.0006,
+ "loss": 3.308283805847168,
+ "step": 1550
+ },
+ {
+ "epoch": 21.544978165938865,
+ "grad_norm": 0.02143189311027527,
+ "learning_rate": 0.0006,
+ "loss": 3.309621810913086,
+ "step": 1551
+ },
+ {
+ "epoch": 21.558951965065503,
+ "grad_norm": 0.020797641947865486,
+ "learning_rate": 0.0006,
+ "loss": 3.314361095428467,
+ "step": 1552
+ },
+ {
+ "epoch": 21.57292576419214,
+ "grad_norm": 0.020197909325361252,
+ "learning_rate": 0.0006,
+ "loss": 3.314574956893921,
+ "step": 1553
+ },
+ {
+ "epoch": 21.586899563318777,
+ "grad_norm": 0.020033083856105804,
+ "learning_rate": 0.0006,
+ "loss": 3.3187432289123535,
+ "step": 1554
+ },
+ {
+ "epoch": 21.600873362445416,
+ "grad_norm": 0.019949860870838165,
+ "learning_rate": 0.0006,
+ "loss": 3.292051315307617,
+ "step": 1555
+ },
+ {
+ "epoch": 21.61484716157205,
+ "grad_norm": 0.019957413896918297,
+ "learning_rate": 0.0006,
+ "loss": 3.305405855178833,
+ "step": 1556
+ },
+ {
+ "epoch": 21.62882096069869,
+ "grad_norm": 0.019971443340182304,
+ "learning_rate": 0.0006,
+ "loss": 3.296830177307129,
+ "step": 1557
+ },
+ {
+ "epoch": 21.64279475982533,
+ "grad_norm": 0.020505597814917564,
+ "learning_rate": 0.0006,
+ "loss": 3.2825589179992676,
+ "step": 1558
+ },
+ {
+ "epoch": 21.656768558951963,
+ "grad_norm": 0.019877616316080093,
+ "learning_rate": 0.0006,
+ "loss": 3.313103199005127,
+ "step": 1559
+ },
+ {
+ "epoch": 21.670742358078602,
+ "grad_norm": 0.020201386883854866,
+ "learning_rate": 0.0006,
+ "loss": 3.235610008239746,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68471615720524,
+ "grad_norm": 0.02024715021252632,
+ "learning_rate": 0.0006,
+ "loss": 3.2557928562164307,
+ "step": 1561
+ },
+ {
+ "epoch": 21.69868995633188,
+ "grad_norm": 0.019592178985476494,
+ "learning_rate": 0.0006,
+ "loss": 3.2867813110351562,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712663755458514,
+ "grad_norm": 0.018611110746860504,
+ "learning_rate": 0.0006,
+ "loss": 3.2807016372680664,
+ "step": 1563
+ },
+ {
+ "epoch": 21.726637554585153,
+ "grad_norm": 0.018972786143422127,
+ "learning_rate": 0.0006,
+ "loss": 3.2985191345214844,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74061135371179,
+ "grad_norm": 0.018826451152563095,
+ "learning_rate": 0.0006,
+ "loss": 3.29825758934021,
+ "step": 1565
+ },
+ {
+ "epoch": 21.754585152838427,
+ "grad_norm": 0.018894566223025322,
+ "learning_rate": 0.0006,
+ "loss": 3.276063919067383,
+ "step": 1566
+ },
+ {
+ "epoch": 21.768558951965066,
+ "grad_norm": 0.01885579153895378,
+ "learning_rate": 0.0006,
+ "loss": 3.2703640460968018,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782532751091704,
+ "grad_norm": 0.018351880833506584,
+ "learning_rate": 0.0006,
+ "loss": 3.2634973526000977,
+ "step": 1568
+ },
+ {
+ "epoch": 21.79650655021834,
+ "grad_norm": 0.018520258367061615,
+ "learning_rate": 0.0006,
+ "loss": 3.2701549530029297,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810480349344978,
+ "grad_norm": 0.018321022391319275,
+ "learning_rate": 0.0006,
+ "loss": 3.2998499870300293,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824454148471617,
+ "grad_norm": 0.018834305927157402,
+ "learning_rate": 0.0006,
+ "loss": 3.2863354682922363,
+ "step": 1571
+ },
+ {
+ "epoch": 21.83842794759825,
+ "grad_norm": 0.019185064360499382,
+ "learning_rate": 0.0006,
+ "loss": 3.286705493927002,
+ "step": 1572
+ },
+ {
+ "epoch": 21.85240174672489,
+ "grad_norm": 0.01889665424823761,
+ "learning_rate": 0.0006,
+ "loss": 3.32741641998291,
+ "step": 1573
+ },
+ {
+ "epoch": 21.86637554585153,
+ "grad_norm": 0.018116198480129242,
+ "learning_rate": 0.0006,
+ "loss": 3.3165807723999023,
+ "step": 1574
+ },
+ {
+ "epoch": 21.880349344978168,
+ "grad_norm": 0.019612092524766922,
+ "learning_rate": 0.0006,
+ "loss": 3.2506771087646484,
+ "step": 1575
+ },
+ {
+ "epoch": 21.894323144104803,
+ "grad_norm": 0.018245317041873932,
+ "learning_rate": 0.0006,
+ "loss": 3.287231922149658,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90829694323144,
+ "grad_norm": 0.01800438202917576,
+ "learning_rate": 0.0006,
+ "loss": 3.323281764984131,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92227074235808,
+ "grad_norm": 0.018265806138515472,
+ "learning_rate": 0.0006,
+ "loss": 3.327335834503174,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936244541484715,
+ "grad_norm": 0.01925564929842949,
+ "learning_rate": 0.0006,
+ "loss": 3.3010969161987305,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950218340611354,
+ "grad_norm": 0.019137129187583923,
+ "learning_rate": 0.0006,
+ "loss": 3.2997634410858154,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964192139737992,
+ "grad_norm": 0.01760365068912506,
+ "learning_rate": 0.0006,
+ "loss": 3.2637267112731934,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978165938864628,
+ "grad_norm": 0.018728850409388542,
+ "learning_rate": 0.0006,
+ "loss": 3.2676243782043457,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992139737991266,
+ "grad_norm": 0.018930058926343918,
+ "learning_rate": 0.0006,
+ "loss": 3.280712604522705,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.021552253514528275,
+ "learning_rate": 0.0006,
+ "loss": 3.297333240509033,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 4.021175384521484,
+ "eval_runtime": 50.1224,
+ "eval_samples_per_second": 48.721,
+ "eval_steps_per_second": 1.536,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397379912664,
+ "grad_norm": 0.02215493470430374,
+ "learning_rate": 0.0006,
+ "loss": 3.1229772567749023,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027947598253274,
+ "grad_norm": 0.02967856451869011,
+ "learning_rate": 0.0006,
+ "loss": 3.137763738632202,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041921397379912,
+ "grad_norm": 0.02984168380498886,
+ "learning_rate": 0.0006,
+ "loss": 3.1206588745117188,
+ "step": 1587
+ },
+ {
+ "epoch": 22.05589519650655,
+ "grad_norm": 0.029677357524633408,
+ "learning_rate": 0.0006,
+ "loss": 3.1399269104003906,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069868995633186,
+ "grad_norm": 0.03151305764913559,
+ "learning_rate": 0.0006,
+ "loss": 3.1238462924957275,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083842794759825,
+ "grad_norm": 0.033034879714250565,
+ "learning_rate": 0.0006,
+ "loss": 3.0901098251342773,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097816593886463,
+ "grad_norm": 0.03483431041240692,
+ "learning_rate": 0.0006,
+ "loss": 3.141174077987671,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111790393013102,
+ "grad_norm": 0.03549962490797043,
+ "learning_rate": 0.0006,
+ "loss": 3.1501364707946777,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125764192139737,
+ "grad_norm": 0.03203433007001877,
+ "learning_rate": 0.0006,
+ "loss": 3.159137725830078,
+ "step": 1593
+ },
+ {
+ "epoch": 22.139737991266376,
+ "grad_norm": 0.032320212572813034,
+ "learning_rate": 0.0006,
+ "loss": 3.132265329360962,
+ "step": 1594
+ },
+ {
+ "epoch": 22.153711790393015,
+ "grad_norm": 0.034070853143930435,
+ "learning_rate": 0.0006,
+ "loss": 3.1619839668273926,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16768558951965,
+ "grad_norm": 0.03379609435796738,
+ "learning_rate": 0.0006,
+ "loss": 3.1391677856445312,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18165938864629,
+ "grad_norm": 0.02766602858901024,
+ "learning_rate": 0.0006,
+ "loss": 3.134331226348877,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195633187772927,
+ "grad_norm": 0.02805453911423683,
+ "learning_rate": 0.0006,
+ "loss": 3.1561427116394043,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209606986899562,
+ "grad_norm": 0.028059443458914757,
+ "learning_rate": 0.0006,
+ "loss": 3.1427788734436035,
+ "step": 1599
+ },
+ {
+ "epoch": 22.2235807860262,
+ "grad_norm": 0.028307706117630005,
+ "learning_rate": 0.0006,
+ "loss": 3.1559817790985107,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23755458515284,
+ "grad_norm": 0.0279996320605278,
+ "learning_rate": 0.0006,
+ "loss": 3.132871389389038,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251528384279474,
+ "grad_norm": 0.02574557065963745,
+ "learning_rate": 0.0006,
+ "loss": 3.1786751747131348,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265502183406113,
+ "grad_norm": 0.024875380098819733,
+ "learning_rate": 0.0006,
+ "loss": 3.1568856239318848,
+ "step": 1603
+ },
+ {
+ "epoch": 22.27947598253275,
+ "grad_norm": 0.025276372209191322,
+ "learning_rate": 0.0006,
+ "loss": 3.162123203277588,
+ "step": 1604
+ },
+ {
+ "epoch": 22.29344978165939,
+ "grad_norm": 0.024784576147794724,
+ "learning_rate": 0.0006,
+ "loss": 3.1623098850250244,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307423580786025,
+ "grad_norm": 0.0219266377389431,
+ "learning_rate": 0.0006,
+ "loss": 3.193899393081665,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321397379912664,
+ "grad_norm": 0.02260139398276806,
+ "learning_rate": 0.0006,
+ "loss": 3.1366958618164062,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335371179039303,
+ "grad_norm": 0.023162642493844032,
+ "learning_rate": 0.0006,
+ "loss": 3.1931166648864746,
+ "step": 1608
+ },
+ {
+ "epoch": 22.349344978165938,
+ "grad_norm": 0.022873790934681892,
+ "learning_rate": 0.0006,
+ "loss": 3.1660501956939697,
+ "step": 1609
+ },
+ {
+ "epoch": 22.363318777292577,
+ "grad_norm": 0.02431238628923893,
+ "learning_rate": 0.0006,
+ "loss": 3.172982931137085,
+ "step": 1610
+ },
+ {
+ "epoch": 22.377292576419215,
+ "grad_norm": 0.023474128916859627,
+ "learning_rate": 0.0006,
+ "loss": 3.1941604614257812,
+ "step": 1611
+ },
+ {
+ "epoch": 22.39126637554585,
+ "grad_norm": 0.021899253129959106,
+ "learning_rate": 0.0006,
+ "loss": 3.164011240005493,
+ "step": 1612
+ },
+ {
+ "epoch": 22.40524017467249,
+ "grad_norm": 0.023463290184736252,
+ "learning_rate": 0.0006,
+ "loss": 3.181821823120117,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419213973799128,
+ "grad_norm": 0.022636929526925087,
+ "learning_rate": 0.0006,
+ "loss": 3.1651649475097656,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433187772925763,
+ "grad_norm": 0.022014712914824486,
+ "learning_rate": 0.0006,
+ "loss": 3.1782679557800293,
+ "step": 1615
+ },
+ {
+ "epoch": 22.4471615720524,
+ "grad_norm": 0.02165660634636879,
+ "learning_rate": 0.0006,
+ "loss": 3.188546657562256,
+ "step": 1616
+ },
+ {
+ "epoch": 22.46113537117904,
+ "grad_norm": 0.019901631399989128,
+ "learning_rate": 0.0006,
+ "loss": 3.1988091468811035,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475109170305675,
+ "grad_norm": 0.0209745354950428,
+ "learning_rate": 0.0006,
+ "loss": 3.19329833984375,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489082969432314,
+ "grad_norm": 0.021747298538684845,
+ "learning_rate": 0.0006,
+ "loss": 3.2036776542663574,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503056768558952,
+ "grad_norm": 0.019623076543211937,
+ "learning_rate": 0.0006,
+ "loss": 3.1681504249572754,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51703056768559,
+ "grad_norm": 0.020048566162586212,
+ "learning_rate": 0.0006,
+ "loss": 3.1954283714294434,
+ "step": 1621
+ },
+ {
+ "epoch": 22.531004366812226,
+ "grad_norm": 0.021175740286707878,
+ "learning_rate": 0.0006,
+ "loss": 3.189802646636963,
+ "step": 1622
+ },
+ {
+ "epoch": 22.544978165938865,
+ "grad_norm": 0.02099684439599514,
+ "learning_rate": 0.0006,
+ "loss": 3.2179861068725586,
+ "step": 1623
+ },
+ {
+ "epoch": 22.558951965065503,
+ "grad_norm": 0.020709119737148285,
+ "learning_rate": 0.0006,
+ "loss": 3.219874382019043,
+ "step": 1624
+ },
+ {
+ "epoch": 22.57292576419214,
+ "grad_norm": 0.02090434730052948,
+ "learning_rate": 0.0006,
+ "loss": 3.1864824295043945,
+ "step": 1625
+ },
+ {
+ "epoch": 22.586899563318777,
+ "grad_norm": 0.02059161476790905,
+ "learning_rate": 0.0006,
+ "loss": 3.2084670066833496,
+ "step": 1626
+ },
+ {
+ "epoch": 22.600873362445416,
+ "grad_norm": 0.02269027940928936,
+ "learning_rate": 0.0006,
+ "loss": 3.2111763954162598,
+ "step": 1627
+ },
+ {
+ "epoch": 22.61484716157205,
+ "grad_norm": 0.023081645369529724,
+ "learning_rate": 0.0006,
+ "loss": 3.1888933181762695,
+ "step": 1628
+ },
+ {
+ "epoch": 22.62882096069869,
+ "grad_norm": 0.021397452801465988,
+ "learning_rate": 0.0006,
+ "loss": 3.252058982849121,
+ "step": 1629
+ },
+ {
+ "epoch": 22.64279475982533,
+ "grad_norm": 0.021065089851617813,
+ "learning_rate": 0.0006,
+ "loss": 3.2006194591522217,
+ "step": 1630
+ },
+ {
+ "epoch": 22.656768558951963,
+ "grad_norm": 0.022490495815873146,
+ "learning_rate": 0.0006,
+ "loss": 3.229124069213867,
+ "step": 1631
+ },
+ {
+ "epoch": 22.670742358078602,
+ "grad_norm": 0.021817505359649658,
+ "learning_rate": 0.0006,
+ "loss": 3.194119691848755,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68471615720524,
+ "grad_norm": 0.021232811734080315,
+ "learning_rate": 0.0006,
+ "loss": 3.245544910430908,
+ "step": 1633
+ },
+ {
+ "epoch": 22.69868995633188,
+ "grad_norm": 0.023222077637910843,
+ "learning_rate": 0.0006,
+ "loss": 3.279717445373535,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712663755458514,
+ "grad_norm": 0.02224564366042614,
+ "learning_rate": 0.0006,
+ "loss": 3.2494592666625977,
+ "step": 1635
+ },
+ {
+ "epoch": 22.726637554585153,
+ "grad_norm": 0.021308856084942818,
+ "learning_rate": 0.0006,
+ "loss": 3.204773426055908,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74061135371179,
+ "grad_norm": 0.020439520478248596,
+ "learning_rate": 0.0006,
+ "loss": 3.205946683883667,
+ "step": 1637
+ },
+ {
+ "epoch": 22.754585152838427,
+ "grad_norm": 0.020782779902219772,
+ "learning_rate": 0.0006,
+ "loss": 3.239274501800537,
+ "step": 1638
+ },
+ {
+ "epoch": 22.768558951965066,
+ "grad_norm": 0.022062206640839577,
+ "learning_rate": 0.0006,
+ "loss": 3.2261786460876465,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782532751091704,
+ "grad_norm": 0.02113729901611805,
+ "learning_rate": 0.0006,
+ "loss": 3.2691404819488525,
+ "step": 1640
+ },
+ {
+ "epoch": 22.79650655021834,
+ "grad_norm": 0.021274438127875328,
+ "learning_rate": 0.0006,
+ "loss": 3.226609706878662,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810480349344978,
+ "grad_norm": 0.021622309461236,
+ "learning_rate": 0.0006,
+ "loss": 3.2209739685058594,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824454148471617,
+ "grad_norm": 0.0202135369181633,
+ "learning_rate": 0.0006,
+ "loss": 3.1961019039154053,
+ "step": 1643
+ },
+ {
+ "epoch": 22.83842794759825,
+ "grad_norm": 0.020688654854893684,
+ "learning_rate": 0.0006,
+ "loss": 3.2573604583740234,
+ "step": 1644
+ },
+ {
+ "epoch": 22.85240174672489,
+ "grad_norm": 0.021738961338996887,
+ "learning_rate": 0.0006,
+ "loss": 3.2542853355407715,
+ "step": 1645
+ },
+ {
+ "epoch": 22.86637554585153,
+ "grad_norm": 0.0219196118414402,
+ "learning_rate": 0.0006,
+ "loss": 3.252492904663086,
+ "step": 1646
+ },
+ {
+ "epoch": 22.880349344978168,
+ "grad_norm": 0.0218547023832798,
+ "learning_rate": 0.0006,
+ "loss": 3.2702088356018066,
+ "step": 1647
+ },
+ {
+ "epoch": 22.894323144104803,
+ "grad_norm": 0.021791797131299973,
+ "learning_rate": 0.0006,
+ "loss": 3.2743520736694336,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90829694323144,
+ "grad_norm": 0.02209450677037239,
+ "learning_rate": 0.0006,
+ "loss": 3.2271618843078613,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92227074235808,
+ "grad_norm": 0.021461671218276024,
+ "learning_rate": 0.0006,
+ "loss": 3.237719774246216,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936244541484715,
+ "grad_norm": 0.02116190828382969,
+ "learning_rate": 0.0006,
+ "loss": 3.220345973968506,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950218340611354,
+ "grad_norm": 0.021221552044153214,
+ "learning_rate": 0.0006,
+ "loss": 3.270355224609375,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964192139737992,
+ "grad_norm": 0.021926164627075195,
+ "learning_rate": 0.0006,
+ "loss": 3.251894474029541,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978165938864628,
+ "grad_norm": 0.02037062682211399,
+ "learning_rate": 0.0006,
+ "loss": 3.2335145473480225,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992139737991266,
+ "grad_norm": 0.021061841398477554,
+ "learning_rate": 0.0006,
+ "loss": 3.258089065551758,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.023548489436507225,
+ "learning_rate": 0.0006,
+ "loss": 3.211991548538208,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 4.036250591278076,
+ "eval_runtime": 50.0837,
+ "eval_samples_per_second": 48.758,
+ "eval_steps_per_second": 1.537,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397379912664,
+ "grad_norm": 0.028975404798984528,
+ "learning_rate": 0.0006,
+ "loss": 3.0739121437072754,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027947598253274,
+ "grad_norm": 0.045989733189344406,
+ "learning_rate": 0.0006,
+ "loss": 3.086352825164795,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041921397379912,
+ "grad_norm": 0.054499756544828415,
+ "learning_rate": 0.0006,
+ "loss": 3.0560779571533203,
+ "step": 1659
+ },
+ {
+ "epoch": 23.05589519650655,
+ "grad_norm": 0.05919722840189934,
+ "learning_rate": 0.0006,
+ "loss": 3.0908679962158203,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069868995633186,
+ "grad_norm": 0.05523031949996948,
+ "learning_rate": 0.0006,
+ "loss": 3.143130302429199,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083842794759825,
+ "grad_norm": 0.04946798086166382,
+ "learning_rate": 0.0006,
+ "loss": 3.0894484519958496,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097816593886463,
+ "grad_norm": 0.05096029117703438,
+ "learning_rate": 0.0006,
+ "loss": 3.1163463592529297,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111790393013102,
+ "grad_norm": 0.051004018634557724,
+ "learning_rate": 0.0006,
+ "loss": 3.094862937927246,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125764192139737,
+ "grad_norm": 0.04774824529886246,
+ "learning_rate": 0.0006,
+ "loss": 3.056874990463257,
+ "step": 1665
+ },
+ {
+ "epoch": 23.139737991266376,
+ "grad_norm": 0.04676121845841408,
+ "learning_rate": 0.0006,
+ "loss": 3.1135435104370117,
+ "step": 1666
+ },
+ {
+ "epoch": 23.153711790393015,
+ "grad_norm": 0.04623310640454292,
+ "learning_rate": 0.0006,
+ "loss": 3.0834898948669434,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16768558951965,
+ "grad_norm": 0.04654386639595032,
+ "learning_rate": 0.0006,
+ "loss": 3.1126627922058105,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18165938864629,
+ "grad_norm": 0.05056565999984741,
+ "learning_rate": 0.0006,
+ "loss": 3.1404361724853516,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195633187772927,
+ "grad_norm": 0.04947774112224579,
+ "learning_rate": 0.0006,
+ "loss": 3.0800836086273193,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209606986899562,
+ "grad_norm": 0.05254998058080673,
+ "learning_rate": 0.0006,
+ "loss": 3.1659531593322754,
+ "step": 1671
+ },
+ {
+ "epoch": 23.2235807860262,
+ "grad_norm": 0.05698013678193092,
+ "learning_rate": 0.0006,
+ "loss": 3.124387741088867,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23755458515284,
+ "grad_norm": 0.05885928124189377,
+ "learning_rate": 0.0006,
+ "loss": 3.1883671283721924,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251528384279474,
+ "grad_norm": 0.05118200555443764,
+ "learning_rate": 0.0006,
+ "loss": 3.1102395057678223,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265502183406113,
+ "grad_norm": 0.04967886209487915,
+ "learning_rate": 0.0006,
+ "loss": 3.124696731567383,
+ "step": 1675
+ },
+ {
+ "epoch": 23.27947598253275,
+ "grad_norm": 0.05399557575583458,
+ "learning_rate": 0.0006,
+ "loss": 3.152482032775879,
+ "step": 1676
+ },
+ {
+ "epoch": 23.29344978165939,
+ "grad_norm": 0.04705207049846649,
+ "learning_rate": 0.0006,
+ "loss": 3.1485037803649902,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307423580786025,
+ "grad_norm": 0.045942481607198715,
+ "learning_rate": 0.0006,
+ "loss": 3.149049997329712,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321397379912664,
+ "grad_norm": 0.04364842176437378,
+ "learning_rate": 0.0006,
+ "loss": 3.1753323078155518,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335371179039303,
+ "grad_norm": 0.04357321560382843,
+ "learning_rate": 0.0006,
+ "loss": 3.1530587673187256,
+ "step": 1680
+ },
+ {
+ "epoch": 23.349344978165938,
+ "grad_norm": 0.040299318730831146,
+ "learning_rate": 0.0006,
+ "loss": 3.1689562797546387,
+ "step": 1681
+ },
+ {
+ "epoch": 23.363318777292577,
+ "grad_norm": 0.033832576125860214,
+ "learning_rate": 0.0006,
+ "loss": 3.1539080142974854,
+ "step": 1682
+ },
+ {
+ "epoch": 23.377292576419215,
+ "grad_norm": 0.0333096869289875,
+ "learning_rate": 0.0006,
+ "loss": 3.136540412902832,
+ "step": 1683
+ },
+ {
+ "epoch": 23.39126637554585,
+ "grad_norm": 0.03185306116938591,
+ "learning_rate": 0.0006,
+ "loss": 3.161989450454712,
+ "step": 1684
+ },
+ {
+ "epoch": 23.40524017467249,
+ "grad_norm": 0.030003627762198448,
+ "learning_rate": 0.0006,
+ "loss": 3.1533138751983643,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419213973799128,
+ "grad_norm": 0.028618820011615753,
+ "learning_rate": 0.0006,
+ "loss": 3.185976028442383,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433187772925763,
+ "grad_norm": 0.02691742591559887,
+ "learning_rate": 0.0006,
+ "loss": 3.153627872467041,
+ "step": 1687
+ },
+ {
+ "epoch": 23.4471615720524,
+ "grad_norm": 0.026324588805437088,
+ "learning_rate": 0.0006,
+ "loss": 3.1644554138183594,
+ "step": 1688
+ },
+ {
+ "epoch": 23.46113537117904,
+ "grad_norm": 0.025900371372699738,
+ "learning_rate": 0.0006,
+ "loss": 3.1649692058563232,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475109170305675,
+ "grad_norm": 0.0243719182908535,
+ "learning_rate": 0.0006,
+ "loss": 3.182521343231201,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489082969432314,
+ "grad_norm": 0.022730499505996704,
+ "learning_rate": 0.0006,
+ "loss": 3.1854891777038574,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503056768558952,
+ "grad_norm": 0.02335519716143608,
+ "learning_rate": 0.0006,
+ "loss": 3.151111364364624,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51703056768559,
+ "grad_norm": 0.022645823657512665,
+ "learning_rate": 0.0006,
+ "loss": 3.181077241897583,
+ "step": 1693
+ },
+ {
+ "epoch": 23.531004366812226,
+ "grad_norm": 0.022274266928434372,
+ "learning_rate": 0.0006,
+ "loss": 3.155630111694336,
+ "step": 1694
+ },
+ {
+ "epoch": 23.544978165938865,
+ "grad_norm": 0.02225971594452858,
+ "learning_rate": 0.0006,
+ "loss": 3.20708966255188,
+ "step": 1695
+ },
+ {
+ "epoch": 23.558951965065503,
+ "grad_norm": 0.022145207971334457,
+ "learning_rate": 0.0006,
+ "loss": 3.1944689750671387,
+ "step": 1696
+ },
+ {
+ "epoch": 23.57292576419214,
+ "grad_norm": 0.02143380232155323,
+ "learning_rate": 0.0006,
+ "loss": 3.1928765773773193,
+ "step": 1697
+ },
+ {
+ "epoch": 23.586899563318777,
+ "grad_norm": 0.021410757675766945,
+ "learning_rate": 0.0006,
+ "loss": 3.141218900680542,
+ "step": 1698
+ },
+ {
+ "epoch": 23.600873362445416,
+ "grad_norm": 0.020946916192770004,
+ "learning_rate": 0.0006,
+ "loss": 3.1523003578186035,
+ "step": 1699
+ },
+ {
+ "epoch": 23.61484716157205,
+ "grad_norm": 0.02247041091322899,
+ "learning_rate": 0.0006,
+ "loss": 3.197848320007324,
+ "step": 1700
+ },
+ {
+ "epoch": 23.62882096069869,
+ "grad_norm": 0.02199610322713852,
+ "learning_rate": 0.0006,
+ "loss": 3.146364212036133,
+ "step": 1701
+ },
+ {
+ "epoch": 23.64279475982533,
+ "grad_norm": 0.021192600950598717,
+ "learning_rate": 0.0006,
+ "loss": 3.205726146697998,
+ "step": 1702
+ },
+ {
+ "epoch": 23.656768558951963,
+ "grad_norm": 0.021812601014971733,
+ "learning_rate": 0.0006,
+ "loss": 3.1663761138916016,
+ "step": 1703
+ },
+ {
+ "epoch": 23.670742358078602,
+ "grad_norm": 0.021653084084391594,
+ "learning_rate": 0.0006,
+ "loss": 3.186915397644043,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68471615720524,
+ "grad_norm": 0.02271277830004692,
+ "learning_rate": 0.0006,
+ "loss": 3.1901726722717285,
+ "step": 1705
+ },
+ {
+ "epoch": 23.69868995633188,
+ "grad_norm": 0.022516358643770218,
+ "learning_rate": 0.0006,
+ "loss": 3.1948347091674805,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712663755458514,
+ "grad_norm": 0.021564161404967308,
+ "learning_rate": 0.0006,
+ "loss": 3.18239688873291,
+ "step": 1707
+ },
+ {
+ "epoch": 23.726637554585153,
+ "grad_norm": 0.02193053439259529,
+ "learning_rate": 0.0006,
+ "loss": 3.167478561401367,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74061135371179,
+ "grad_norm": 0.020590802654623985,
+ "learning_rate": 0.0006,
+ "loss": 3.1782495975494385,
+ "step": 1709
+ },
+ {
+ "epoch": 23.754585152838427,
+ "grad_norm": 0.02001943439245224,
+ "learning_rate": 0.0006,
+ "loss": 3.140777111053467,
+ "step": 1710
+ },
+ {
+ "epoch": 23.768558951965066,
+ "grad_norm": 0.02146220952272415,
+ "learning_rate": 0.0006,
+ "loss": 3.196669578552246,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782532751091704,
+ "grad_norm": 0.02064087800681591,
+ "learning_rate": 0.0006,
+ "loss": 3.1968512535095215,
+ "step": 1712
+ },
+ {
+ "epoch": 23.79650655021834,
+ "grad_norm": 0.020168280228972435,
+ "learning_rate": 0.0006,
+ "loss": 3.185011625289917,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810480349344978,
+ "grad_norm": 0.021309854462742805,
+ "learning_rate": 0.0006,
+ "loss": 3.223778247833252,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824454148471617,
+ "grad_norm": 0.021627578884363174,
+ "learning_rate": 0.0006,
+ "loss": 3.2337048053741455,
+ "step": 1715
+ },
+ {
+ "epoch": 23.83842794759825,
+ "grad_norm": 0.022393809631466866,
+ "learning_rate": 0.0006,
+ "loss": 3.1815061569213867,
+ "step": 1716
+ },
+ {
+ "epoch": 23.85240174672489,
+ "grad_norm": 0.021653614938259125,
+ "learning_rate": 0.0006,
+ "loss": 3.2199814319610596,
+ "step": 1717
+ },
+ {
+ "epoch": 23.86637554585153,
+ "grad_norm": 0.021053675562143326,
+ "learning_rate": 0.0006,
+ "loss": 3.2100138664245605,
+ "step": 1718
+ },
+ {
+ "epoch": 23.880349344978168,
+ "grad_norm": 0.02070586569607258,
+ "learning_rate": 0.0006,
+ "loss": 3.169224262237549,
+ "step": 1719
+ },
+ {
+ "epoch": 23.894323144104803,
+ "grad_norm": 0.02080441080033779,
+ "learning_rate": 0.0006,
+ "loss": 3.2199649810791016,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90829694323144,
+ "grad_norm": 0.022092828527092934,
+ "learning_rate": 0.0006,
+ "loss": 3.2059383392333984,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92227074235808,
+ "grad_norm": 0.02031811885535717,
+ "learning_rate": 0.0006,
+ "loss": 3.181447982788086,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936244541484715,
+ "grad_norm": 0.020453795790672302,
+ "learning_rate": 0.0006,
+ "loss": 3.2039992809295654,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950218340611354,
+ "grad_norm": 0.02050524763762951,
+ "learning_rate": 0.0006,
+ "loss": 3.2518773078918457,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964192139737992,
+ "grad_norm": 0.020392276346683502,
+ "learning_rate": 0.0006,
+ "loss": 3.21860408782959,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978165938864628,
+ "grad_norm": 0.02083909884095192,
+ "learning_rate": 0.0006,
+ "loss": 3.2072129249572754,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992139737991266,
+ "grad_norm": 0.020636966452002525,
+ "learning_rate": 0.0006,
+ "loss": 3.1956424713134766,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.02314000204205513,
+ "learning_rate": 0.0006,
+ "loss": 3.1868958473205566,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 4.061861038208008,
+ "eval_runtime": 50.2887,
+ "eval_samples_per_second": 48.56,
+ "eval_steps_per_second": 1.531,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397379912664,
+ "grad_norm": 0.026494357734918594,
+ "learning_rate": 0.0006,
+ "loss": 3.0170693397521973,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027947598253274,
+ "grad_norm": 0.03457538038492203,
+ "learning_rate": 0.0006,
+ "loss": 3.038365364074707,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041921397379912,
+ "grad_norm": 0.0362137034535408,
+ "learning_rate": 0.0006,
+ "loss": 3.042156219482422,
+ "step": 1731
+ },
+ {
+ "epoch": 24.05589519650655,
+ "grad_norm": 0.0380006767809391,
+ "learning_rate": 0.0006,
+ "loss": 2.9978504180908203,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069868995633186,
+ "grad_norm": 0.039754100143909454,
+ "learning_rate": 0.0006,
+ "loss": 3.0558762550354004,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083842794759825,
+ "grad_norm": 0.04269031062722206,
+ "learning_rate": 0.0006,
+ "loss": 3.0549988746643066,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097816593886463,
+ "grad_norm": 0.04441278055310249,
+ "learning_rate": 0.0006,
+ "loss": 3.0869946479797363,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111790393013102,
+ "grad_norm": 0.040790386497974396,
+ "learning_rate": 0.0006,
+ "loss": 3.0361521244049072,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125764192139737,
+ "grad_norm": 0.03730896860361099,
+ "learning_rate": 0.0006,
+ "loss": 3.046663761138916,
+ "step": 1737
+ },
+ {
+ "epoch": 24.139737991266376,
+ "grad_norm": 0.03982469439506531,
+ "learning_rate": 0.0006,
+ "loss": 3.0173420906066895,
+ "step": 1738
+ },
+ {
+ "epoch": 24.153711790393015,
+ "grad_norm": 0.039260219782590866,
+ "learning_rate": 0.0006,
+ "loss": 3.0473644733428955,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16768558951965,
+ "grad_norm": 0.03755051642656326,
+ "learning_rate": 0.0006,
+ "loss": 3.0663342475891113,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18165938864629,
+ "grad_norm": 0.03793613240122795,
+ "learning_rate": 0.0006,
+ "loss": 3.0489985942840576,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195633187772927,
+ "grad_norm": 0.04197019711136818,
+ "learning_rate": 0.0006,
+ "loss": 3.097670555114746,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209606986899562,
+ "grad_norm": 0.0469660609960556,
+ "learning_rate": 0.0006,
+ "loss": 3.1100730895996094,
+ "step": 1743
+ },
+ {
+ "epoch": 24.2235807860262,
+ "grad_norm": 0.04978584498167038,
+ "learning_rate": 0.0006,
+ "loss": 3.079113006591797,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23755458515284,
+ "grad_norm": 0.04865782707929611,
+ "learning_rate": 0.0006,
+ "loss": 3.0800795555114746,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251528384279474,
+ "grad_norm": 0.04515399411320686,
+ "learning_rate": 0.0006,
+ "loss": 3.0951786041259766,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265502183406113,
+ "grad_norm": 0.05194929614663124,
+ "learning_rate": 0.0006,
+ "loss": 3.0923233032226562,
+ "step": 1747
+ },
+ {
+ "epoch": 24.27947598253275,
+ "grad_norm": 0.05268502235412598,
+ "learning_rate": 0.0006,
+ "loss": 3.0762367248535156,
+ "step": 1748
+ },
+ {
+ "epoch": 24.29344978165939,
+ "grad_norm": 0.04807785153388977,
+ "learning_rate": 0.0006,
+ "loss": 3.0600905418395996,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307423580786025,
+ "grad_norm": 0.049069009721279144,
+ "learning_rate": 0.0006,
+ "loss": 3.119414806365967,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321397379912664,
+ "grad_norm": 0.040332380682229996,
+ "learning_rate": 0.0006,
+ "loss": 3.101262092590332,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335371179039303,
+ "grad_norm": 0.037106387317180634,
+ "learning_rate": 0.0006,
+ "loss": 3.111459732055664,
+ "step": 1752
+ },
+ {
+ "epoch": 24.349344978165938,
+ "grad_norm": 0.04089464247226715,
+ "learning_rate": 0.0006,
+ "loss": 3.078132152557373,
+ "step": 1753
+ },
+ {
+ "epoch": 24.363318777292577,
+ "grad_norm": 0.042072005569934845,
+ "learning_rate": 0.0006,
+ "loss": 3.098802089691162,
+ "step": 1754
+ },
+ {
+ "epoch": 24.377292576419215,
+ "grad_norm": 0.03779057413339615,
+ "learning_rate": 0.0006,
+ "loss": 3.137354850769043,
+ "step": 1755
+ },
+ {
+ "epoch": 24.39126637554585,
+ "grad_norm": 0.037271898239851,
+ "learning_rate": 0.0006,
+ "loss": 3.1019601821899414,
+ "step": 1756
+ },
+ {
+ "epoch": 24.40524017467249,
+ "grad_norm": 0.036236681044101715,
+ "learning_rate": 0.0006,
+ "loss": 3.073394775390625,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419213973799128,
+ "grad_norm": 0.03288481757044792,
+ "learning_rate": 0.0006,
+ "loss": 3.085905075073242,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433187772925763,
+ "grad_norm": 0.030534565448760986,
+ "learning_rate": 0.0006,
+ "loss": 3.1430633068084717,
+ "step": 1759
+ },
+ {
+ "epoch": 24.4471615720524,
+ "grad_norm": 0.030080555006861687,
+ "learning_rate": 0.0006,
+ "loss": 3.084897994995117,
+ "step": 1760
+ },
+ {
+ "epoch": 24.46113537117904,
+ "grad_norm": 0.028177041560411453,
+ "learning_rate": 0.0006,
+ "loss": 3.0981075763702393,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475109170305675,
+ "grad_norm": 0.02868589572608471,
+ "learning_rate": 0.0006,
+ "loss": 3.113759994506836,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489082969432314,
+ "grad_norm": 0.02866324409842491,
+ "learning_rate": 0.0006,
+ "loss": 3.146918773651123,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503056768558952,
+ "grad_norm": 0.032893482595682144,
+ "learning_rate": 0.0006,
+ "loss": 3.16141414642334,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51703056768559,
+ "grad_norm": 0.03186864033341408,
+ "learning_rate": 0.0006,
+ "loss": 3.13303804397583,
+ "step": 1765
+ },
+ {
+ "epoch": 24.531004366812226,
+ "grad_norm": 0.0323340930044651,
+ "learning_rate": 0.0006,
+ "loss": 3.1308135986328125,
+ "step": 1766
+ },
+ {
+ "epoch": 24.544978165938865,
+ "grad_norm": 0.03451741859316826,
+ "learning_rate": 0.0006,
+ "loss": 3.13972806930542,
+ "step": 1767
+ },
+ {
+ "epoch": 24.558951965065503,
+ "grad_norm": 0.03144263103604317,
+ "learning_rate": 0.0006,
+ "loss": 3.1428070068359375,
+ "step": 1768
+ },
+ {
+ "epoch": 24.57292576419214,
+ "grad_norm": 0.02920706383883953,
+ "learning_rate": 0.0006,
+ "loss": 3.1201605796813965,
+ "step": 1769
+ },
+ {
+ "epoch": 24.586899563318777,
+ "grad_norm": 0.028445811942219734,
+ "learning_rate": 0.0006,
+ "loss": 3.144218683242798,
+ "step": 1770
+ },
+ {
+ "epoch": 24.600873362445416,
+ "grad_norm": 0.02665509283542633,
+ "learning_rate": 0.0006,
+ "loss": 3.130509853363037,
+ "step": 1771
+ },
+ {
+ "epoch": 24.61484716157205,
+ "grad_norm": 0.02607566863298416,
+ "learning_rate": 0.0006,
+ "loss": 3.1229686737060547,
+ "step": 1772
+ },
+ {
+ "epoch": 24.62882096069869,
+ "grad_norm": 0.02450554072856903,
+ "learning_rate": 0.0006,
+ "loss": 3.1412901878356934,
+ "step": 1773
+ },
+ {
+ "epoch": 24.64279475982533,
+ "grad_norm": 0.024406673386693,
+ "learning_rate": 0.0006,
+ "loss": 3.1482839584350586,
+ "step": 1774
+ },
+ {
+ "epoch": 24.656768558951963,
+ "grad_norm": 0.02445918507874012,
+ "learning_rate": 0.0006,
+ "loss": 3.1525535583496094,
+ "step": 1775
+ },
+ {
+ "epoch": 24.670742358078602,
+ "grad_norm": 0.024329137057065964,
+ "learning_rate": 0.0006,
+ "loss": 3.1237733364105225,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68471615720524,
+ "grad_norm": 0.026551753282546997,
+ "learning_rate": 0.0006,
+ "loss": 3.168206214904785,
+ "step": 1777
+ },
+ {
+ "epoch": 24.69868995633188,
+ "grad_norm": 0.02526521123945713,
+ "learning_rate": 0.0006,
+ "loss": 3.145684242248535,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712663755458514,
+ "grad_norm": 0.022739525884389877,
+ "learning_rate": 0.0006,
+ "loss": 3.109616756439209,
+ "step": 1779
+ },
+ {
+ "epoch": 24.726637554585153,
+ "grad_norm": 0.02353929914534092,
+ "learning_rate": 0.0006,
+ "loss": 3.1133408546447754,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74061135371179,
+ "grad_norm": 0.024195613339543343,
+ "learning_rate": 0.0006,
+ "loss": 3.1797852516174316,
+ "step": 1781
+ },
+ {
+ "epoch": 24.754585152838427,
+ "grad_norm": 0.023433320224285126,
+ "learning_rate": 0.0006,
+ "loss": 3.1500236988067627,
+ "step": 1782
+ },
+ {
+ "epoch": 24.768558951965066,
+ "grad_norm": 0.023815682157874107,
+ "learning_rate": 0.0006,
+ "loss": 3.1468753814697266,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782532751091704,
+ "grad_norm": 0.023465458303689957,
+ "learning_rate": 0.0006,
+ "loss": 3.1285457611083984,
+ "step": 1784
+ },
+ {
+ "epoch": 24.79650655021834,
+ "grad_norm": 0.023044317960739136,
+ "learning_rate": 0.0006,
+ "loss": 3.152935028076172,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810480349344978,
+ "grad_norm": 0.02268923819065094,
+ "learning_rate": 0.0006,
+ "loss": 3.149824619293213,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824454148471617,
+ "grad_norm": 0.02200215309858322,
+ "learning_rate": 0.0006,
+ "loss": 3.136305570602417,
+ "step": 1787
+ },
+ {
+ "epoch": 24.83842794759825,
+ "grad_norm": 0.021768024191260338,
+ "learning_rate": 0.0006,
+ "loss": 3.1580021381378174,
+ "step": 1788
+ },
+ {
+ "epoch": 24.85240174672489,
+ "grad_norm": 0.02197638899087906,
+ "learning_rate": 0.0006,
+ "loss": 3.167720079421997,
+ "step": 1789
+ },
+ {
+ "epoch": 24.86637554585153,
+ "grad_norm": 0.02179424650967121,
+ "learning_rate": 0.0006,
+ "loss": 3.1844677925109863,
+ "step": 1790
+ },
+ {
+ "epoch": 24.880349344978168,
+ "grad_norm": 0.02222774736583233,
+ "learning_rate": 0.0006,
+ "loss": 3.1534781455993652,
+ "step": 1791
+ },
+ {
+ "epoch": 24.894323144104803,
+ "grad_norm": 0.0211419016122818,
+ "learning_rate": 0.0006,
+ "loss": 3.1624507904052734,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90829694323144,
+ "grad_norm": 0.021679047495126724,
+ "learning_rate": 0.0006,
+ "loss": 3.1692471504211426,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92227074235808,
+ "grad_norm": 0.02098955772817135,
+ "learning_rate": 0.0006,
+ "loss": 3.1197893619537354,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936244541484715,
+ "grad_norm": 0.02041255682706833,
+ "learning_rate": 0.0006,
+ "loss": 3.1489920616149902,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950218340611354,
+ "grad_norm": 0.021229229867458344,
+ "learning_rate": 0.0006,
+ "loss": 3.181349277496338,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964192139737992,
+ "grad_norm": 0.021164825186133385,
+ "learning_rate": 0.0006,
+ "loss": 3.174917221069336,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978165938864628,
+ "grad_norm": 0.021351559087634087,
+ "learning_rate": 0.0006,
+ "loss": 3.1783559322357178,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992139737991266,
+ "grad_norm": 0.020969994366168976,
+ "learning_rate": 0.0006,
+ "loss": 3.193674087524414,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.02423921413719654,
+ "learning_rate": 0.0006,
+ "loss": 3.200575590133667,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 4.083610534667969,
+ "eval_runtime": 49.9782,
+ "eval_samples_per_second": 48.861,
+ "eval_steps_per_second": 1.541,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397379912664,
+ "grad_norm": 0.02671094425022602,
+ "learning_rate": 0.0006,
+ "loss": 2.9603734016418457,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027947598253274,
+ "grad_norm": 0.04277094826102257,
+ "learning_rate": 0.0006,
+ "loss": 2.97347354888916,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041921397379912,
+ "grad_norm": 0.05197378247976303,
+ "learning_rate": 0.0006,
+ "loss": 2.999575614929199,
+ "step": 1803
+ },
+ {
+ "epoch": 25.05589519650655,
+ "grad_norm": 0.05377629026770592,
+ "learning_rate": 0.0006,
+ "loss": 2.9785799980163574,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069868995633186,
+ "grad_norm": 0.056606143712997437,
+ "learning_rate": 0.0006,
+ "loss": 3.0218558311462402,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083842794759825,
+ "grad_norm": 0.054323576390743256,
+ "learning_rate": 0.0006,
+ "loss": 3.009265899658203,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097816593886463,
+ "grad_norm": 0.05065226927399635,
+ "learning_rate": 0.0006,
+ "loss": 3.033031702041626,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111790393013102,
+ "grad_norm": 0.05075160786509514,
+ "learning_rate": 0.0006,
+ "loss": 3.0429916381835938,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125764192139737,
+ "grad_norm": 0.05267050117254257,
+ "learning_rate": 0.0006,
+ "loss": 3.0145187377929688,
+ "step": 1809
+ },
+ {
+ "epoch": 25.139737991266376,
+ "grad_norm": 0.04282816872000694,
+ "learning_rate": 0.0006,
+ "loss": 3.019191026687622,
+ "step": 1810
+ },
+ {
+ "epoch": 25.153711790393015,
+ "grad_norm": 0.042729251086711884,
+ "learning_rate": 0.0006,
+ "loss": 3.024594783782959,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16768558951965,
+ "grad_norm": 0.04174517095088959,
+ "learning_rate": 0.0006,
+ "loss": 3.021573066711426,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18165938864629,
+ "grad_norm": 0.039621077477931976,
+ "learning_rate": 0.0006,
+ "loss": 3.033224105834961,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195633187772927,
+ "grad_norm": 0.037193190306425095,
+ "learning_rate": 0.0006,
+ "loss": 3.022829532623291,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209606986899562,
+ "grad_norm": 0.03468523919582367,
+ "learning_rate": 0.0006,
+ "loss": 3.016298294067383,
+ "step": 1815
+ },
+ {
+ "epoch": 25.2235807860262,
+ "grad_norm": 0.03721904382109642,
+ "learning_rate": 0.0006,
+ "loss": 2.991225242614746,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23755458515284,
+ "grad_norm": 0.03951790928840637,
+ "learning_rate": 0.0006,
+ "loss": 3.0309948921203613,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251528384279474,
+ "grad_norm": 0.04039984196424484,
+ "learning_rate": 0.0006,
+ "loss": 3.032059669494629,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265502183406113,
+ "grad_norm": 0.041549600660800934,
+ "learning_rate": 0.0006,
+ "loss": 3.041177749633789,
+ "step": 1819
+ },
+ {
+ "epoch": 25.27947598253275,
+ "grad_norm": 0.041605785489082336,
+ "learning_rate": 0.0006,
+ "loss": 3.052733898162842,
+ "step": 1820
+ },
+ {
+ "epoch": 25.29344978165939,
+ "grad_norm": 0.03979694843292236,
+ "learning_rate": 0.0006,
+ "loss": 3.030470371246338,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307423580786025,
+ "grad_norm": 0.038538020104169846,
+ "learning_rate": 0.0006,
+ "loss": 3.0051193237304688,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321397379912664,
+ "grad_norm": 0.035272035747766495,
+ "learning_rate": 0.0006,
+ "loss": 3.0283000469207764,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335371179039303,
+ "grad_norm": 0.03455478698015213,
+ "learning_rate": 0.0006,
+ "loss": 3.070821523666382,
+ "step": 1824
+ },
+ {
+ "epoch": 25.349344978165938,
+ "grad_norm": 0.035375602543354034,
+ "learning_rate": 0.0006,
+ "loss": 3.0163800716400146,
+ "step": 1825
+ },
+ {
+ "epoch": 25.363318777292577,
+ "grad_norm": 0.03162388876080513,
+ "learning_rate": 0.0006,
+ "loss": 3.037997245788574,
+ "step": 1826
+ },
+ {
+ "epoch": 25.377292576419215,
+ "grad_norm": 0.031044775620102882,
+ "learning_rate": 0.0006,
+ "loss": 3.0624966621398926,
+ "step": 1827
+ },
+ {
+ "epoch": 25.39126637554585,
+ "grad_norm": 0.03079981915652752,
+ "learning_rate": 0.0006,
+ "loss": 3.0983829498291016,
+ "step": 1828
+ },
+ {
+ "epoch": 25.40524017467249,
+ "grad_norm": 0.029769832268357277,
+ "learning_rate": 0.0006,
+ "loss": 3.0633068084716797,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419213973799128,
+ "grad_norm": 0.029182543978095055,
+ "learning_rate": 0.0006,
+ "loss": 3.038501501083374,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433187772925763,
+ "grad_norm": 0.02948548085987568,
+ "learning_rate": 0.0006,
+ "loss": 3.074523448944092,
+ "step": 1831
+ },
+ {
+ "epoch": 25.4471615720524,
+ "grad_norm": 0.02877483330667019,
+ "learning_rate": 0.0006,
+ "loss": 3.067094326019287,
+ "step": 1832
+ },
+ {
+ "epoch": 25.46113537117904,
+ "grad_norm": 0.029504863545298576,
+ "learning_rate": 0.0006,
+ "loss": 3.071795701980591,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475109170305675,
+ "grad_norm": 0.030246607959270477,
+ "learning_rate": 0.0006,
+ "loss": 3.0463738441467285,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489082969432314,
+ "grad_norm": 0.03195366635918617,
+ "learning_rate": 0.0006,
+ "loss": 3.1079678535461426,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503056768558952,
+ "grad_norm": 0.0315500870347023,
+ "learning_rate": 0.0006,
+ "loss": 3.074368953704834,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51703056768559,
+ "grad_norm": 0.03132857382297516,
+ "learning_rate": 0.0006,
+ "loss": 3.070516347885132,
+ "step": 1837
+ },
+ {
+ "epoch": 25.531004366812226,
+ "grad_norm": 0.031229723244905472,
+ "learning_rate": 0.0006,
+ "loss": 3.129385471343994,
+ "step": 1838
+ },
+ {
+ "epoch": 25.544978165938865,
+ "grad_norm": 0.027454618364572525,
+ "learning_rate": 0.0006,
+ "loss": 3.0627448558807373,
+ "step": 1839
+ },
+ {
+ "epoch": 25.558951965065503,
+ "grad_norm": 0.028137732297182083,
+ "learning_rate": 0.0006,
+ "loss": 3.109487533569336,
+ "step": 1840
+ },
+ {
+ "epoch": 25.57292576419214,
+ "grad_norm": 0.029513249173760414,
+ "learning_rate": 0.0006,
+ "loss": 3.0803885459899902,
+ "step": 1841
+ },
+ {
+ "epoch": 25.586899563318777,
+ "grad_norm": 0.02965722233057022,
+ "learning_rate": 0.0006,
+ "loss": 3.105023145675659,
+ "step": 1842
+ },
+ {
+ "epoch": 25.600873362445416,
+ "grad_norm": 0.027627428993582726,
+ "learning_rate": 0.0006,
+ "loss": 3.1149749755859375,
+ "step": 1843
+ },
+ {
+ "epoch": 25.61484716157205,
+ "grad_norm": 0.026547718793153763,
+ "learning_rate": 0.0006,
+ "loss": 3.061279058456421,
+ "step": 1844
+ },
+ {
+ "epoch": 25.62882096069869,
+ "grad_norm": 0.025937994942069054,
+ "learning_rate": 0.0006,
+ "loss": 3.106267213821411,
+ "step": 1845
+ },
+ {
+ "epoch": 25.64279475982533,
+ "grad_norm": 0.024786189198493958,
+ "learning_rate": 0.0006,
+ "loss": 3.1162233352661133,
+ "step": 1846
+ },
+ {
+ "epoch": 25.656768558951963,
+ "grad_norm": 0.024458372965455055,
+ "learning_rate": 0.0006,
+ "loss": 3.0887248516082764,
+ "step": 1847
+ },
+ {
+ "epoch": 25.670742358078602,
+ "grad_norm": 0.02396211586892605,
+ "learning_rate": 0.0006,
+ "loss": 3.0862269401550293,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68471615720524,
+ "grad_norm": 0.025120655074715614,
+ "learning_rate": 0.0006,
+ "loss": 3.1100106239318848,
+ "step": 1849
+ },
+ {
+ "epoch": 25.69868995633188,
+ "grad_norm": 0.023946302011609077,
+ "learning_rate": 0.0006,
+ "loss": 3.1287240982055664,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712663755458514,
+ "grad_norm": 0.024584904313087463,
+ "learning_rate": 0.0006,
+ "loss": 3.131906270980835,
+ "step": 1851
+ },
+ {
+ "epoch": 25.726637554585153,
+ "grad_norm": 0.024075916036963463,
+ "learning_rate": 0.0006,
+ "loss": 3.1310033798217773,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74061135371179,
+ "grad_norm": 0.024674106389284134,
+ "learning_rate": 0.0006,
+ "loss": 3.098094940185547,
+ "step": 1853
+ },
+ {
+ "epoch": 25.754585152838427,
+ "grad_norm": 0.02386128157377243,
+ "learning_rate": 0.0006,
+ "loss": 3.13789963722229,
+ "step": 1854
+ },
+ {
+ "epoch": 25.768558951965066,
+ "grad_norm": 0.023464003577828407,
+ "learning_rate": 0.0006,
+ "loss": 3.130636215209961,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782532751091704,
+ "grad_norm": 0.022808177396655083,
+ "learning_rate": 0.0006,
+ "loss": 3.0649960041046143,
+ "step": 1856
+ },
+ {
+ "epoch": 25.79650655021834,
+ "grad_norm": 0.02347465232014656,
+ "learning_rate": 0.0006,
+ "loss": 3.1142053604125977,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810480349344978,
+ "grad_norm": 0.022884836420416832,
+ "learning_rate": 0.0006,
+ "loss": 3.135101795196533,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824454148471617,
+ "grad_norm": 0.022401098161935806,
+ "learning_rate": 0.0006,
+ "loss": 3.1598546504974365,
+ "step": 1859
+ },
+ {
+ "epoch": 25.83842794759825,
+ "grad_norm": 0.024321401491761208,
+ "learning_rate": 0.0006,
+ "loss": 3.1175436973571777,
+ "step": 1860
+ },
+ {
+ "epoch": 25.85240174672489,
+ "grad_norm": 0.0246965941041708,
+ "learning_rate": 0.0006,
+ "loss": 3.103957176208496,
+ "step": 1861
+ },
+ {
+ "epoch": 25.86637554585153,
+ "grad_norm": 0.02330162189900875,
+ "learning_rate": 0.0006,
+ "loss": 3.1311264038085938,
+ "step": 1862
+ },
+ {
+ "epoch": 25.880349344978168,
+ "grad_norm": 0.02354249730706215,
+ "learning_rate": 0.0006,
+ "loss": 3.14554500579834,
+ "step": 1863
+ },
+ {
+ "epoch": 25.894323144104803,
+ "grad_norm": 0.023865245282649994,
+ "learning_rate": 0.0006,
+ "loss": 3.124208927154541,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90829694323144,
+ "grad_norm": 0.023171618580818176,
+ "learning_rate": 0.0006,
+ "loss": 3.1324727535247803,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92227074235808,
+ "grad_norm": 0.023055147379636765,
+ "learning_rate": 0.0006,
+ "loss": 3.141408920288086,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936244541484715,
+ "grad_norm": 0.02303205616772175,
+ "learning_rate": 0.0006,
+ "loss": 3.135986804962158,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950218340611354,
+ "grad_norm": 0.02289523370563984,
+ "learning_rate": 0.0006,
+ "loss": 3.1296586990356445,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964192139737992,
+ "grad_norm": 0.024415697902441025,
+ "learning_rate": 0.0006,
+ "loss": 3.119215726852417,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978165938864628,
+ "grad_norm": 0.024061039090156555,
+ "learning_rate": 0.0006,
+ "loss": 3.096515417098999,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992139737991266,
+ "grad_norm": 0.021828658878803253,
+ "learning_rate": 0.0006,
+ "loss": 3.1706314086914062,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.025072937831282616,
+ "learning_rate": 0.0006,
+ "loss": 3.0891950130462646,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 4.104246616363525,
+ "eval_runtime": 50.0171,
+ "eval_samples_per_second": 48.823,
+ "eval_steps_per_second": 1.539,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397379912664,
+ "grad_norm": 0.031121261417865753,
+ "learning_rate": 0.0006,
+ "loss": 2.9661660194396973,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027947598253274,
+ "grad_norm": 0.04691348224878311,
+ "learning_rate": 0.0006,
+ "loss": 2.932932138442993,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041921397379912,
+ "grad_norm": 0.054467298090457916,
+ "learning_rate": 0.0006,
+ "loss": 2.9723329544067383,
+ "step": 1875
+ },
+ {
+ "epoch": 26.05589519650655,
+ "grad_norm": 0.055070292204618454,
+ "learning_rate": 0.0006,
+ "loss": 2.941164016723633,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069868995633186,
+ "grad_norm": 0.06226547062397003,
+ "learning_rate": 0.0006,
+ "loss": 2.9275927543640137,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083842794759825,
+ "grad_norm": 0.08149895071983337,
+ "learning_rate": 0.0006,
+ "loss": 2.9974710941314697,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097816593886463,
+ "grad_norm": 0.07903563231229782,
+ "learning_rate": 0.0006,
+ "loss": 3.028019666671753,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111790393013102,
+ "grad_norm": 0.07048483937978745,
+ "learning_rate": 0.0006,
+ "loss": 3.0385470390319824,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125764192139737,
+ "grad_norm": 0.07622414827346802,
+ "learning_rate": 0.0006,
+ "loss": 3.006513833999634,
+ "step": 1881
+ },
+ {
+ "epoch": 26.139737991266376,
+ "grad_norm": 0.06729200482368469,
+ "learning_rate": 0.0006,
+ "loss": 3.042820453643799,
+ "step": 1882
+ },
+ {
+ "epoch": 26.153711790393015,
+ "grad_norm": 0.0560869500041008,
+ "learning_rate": 0.0006,
+ "loss": 3.0113673210144043,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16768558951965,
+ "grad_norm": 0.05453485623002052,
+ "learning_rate": 0.0006,
+ "loss": 3.005843162536621,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18165938864629,
+ "grad_norm": 0.05410083383321762,
+ "learning_rate": 0.0006,
+ "loss": 3.0122809410095215,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195633187772927,
+ "grad_norm": 0.05099239945411682,
+ "learning_rate": 0.0006,
+ "loss": 3.003960132598877,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209606986899562,
+ "grad_norm": 0.054503440856933594,
+ "learning_rate": 0.0006,
+ "loss": 3.0250349044799805,
+ "step": 1887
+ },
+ {
+ "epoch": 26.2235807860262,
+ "grad_norm": 0.06119848042726517,
+ "learning_rate": 0.0006,
+ "loss": 3.013659954071045,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23755458515284,
+ "grad_norm": 0.05560006573796272,
+ "learning_rate": 0.0006,
+ "loss": 3.045351028442383,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251528384279474,
+ "grad_norm": 0.04513552039861679,
+ "learning_rate": 0.0006,
+ "loss": 3.0176339149475098,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265502183406113,
+ "grad_norm": 0.04880162701010704,
+ "learning_rate": 0.0006,
+ "loss": 2.997415065765381,
+ "step": 1891
+ },
+ {
+ "epoch": 26.27947598253275,
+ "grad_norm": 0.04402848333120346,
+ "learning_rate": 0.0006,
+ "loss": 3.035266876220703,
+ "step": 1892
+ },
+ {
+ "epoch": 26.29344978165939,
+ "grad_norm": 0.040773630142211914,
+ "learning_rate": 0.0006,
+ "loss": 3.0323173999786377,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307423580786025,
+ "grad_norm": 0.03853452205657959,
+ "learning_rate": 0.0006,
+ "loss": 3.0291802883148193,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321397379912664,
+ "grad_norm": 0.037200599908828735,
+ "learning_rate": 0.0006,
+ "loss": 3.0359907150268555,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335371179039303,
+ "grad_norm": 0.035764336585998535,
+ "learning_rate": 0.0006,
+ "loss": 3.017059326171875,
+ "step": 1896
+ },
+ {
+ "epoch": 26.349344978165938,
+ "grad_norm": 0.0344136580824852,
+ "learning_rate": 0.0006,
+ "loss": 3.0438151359558105,
+ "step": 1897
+ },
+ {
+ "epoch": 26.363318777292577,
+ "grad_norm": 0.03413735702633858,
+ "learning_rate": 0.0006,
+ "loss": 3.0627403259277344,
+ "step": 1898
+ },
+ {
+ "epoch": 26.377292576419215,
+ "grad_norm": 0.03260914236307144,
+ "learning_rate": 0.0006,
+ "loss": 2.9989752769470215,
+ "step": 1899
+ },
+ {
+ "epoch": 26.39126637554585,
+ "grad_norm": 0.03044072724878788,
+ "learning_rate": 0.0006,
+ "loss": 3.0424299240112305,
+ "step": 1900
+ },
+ {
+ "epoch": 26.40524017467249,
+ "grad_norm": 0.030227871611714363,
+ "learning_rate": 0.0006,
+ "loss": 3.0220985412597656,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419213973799128,
+ "grad_norm": 0.031268492341041565,
+ "learning_rate": 0.0006,
+ "loss": 3.056239128112793,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433187772925763,
+ "grad_norm": 0.028938250616192818,
+ "learning_rate": 0.0006,
+ "loss": 3.017686367034912,
+ "step": 1903
+ },
+ {
+ "epoch": 26.4471615720524,
+ "grad_norm": 0.02674158848822117,
+ "learning_rate": 0.0006,
+ "loss": 3.066281318664551,
+ "step": 1904
+ },
+ {
+ "epoch": 26.46113537117904,
+ "grad_norm": 0.028296295553445816,
+ "learning_rate": 0.0006,
+ "loss": 3.02766752243042,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475109170305675,
+ "grad_norm": 0.03080872818827629,
+ "learning_rate": 0.0006,
+ "loss": 3.059089422225952,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489082969432314,
+ "grad_norm": 0.028370540589094162,
+ "learning_rate": 0.0006,
+ "loss": 3.0661725997924805,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503056768558952,
+ "grad_norm": 0.025940680876374245,
+ "learning_rate": 0.0006,
+ "loss": 3.050424098968506,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51703056768559,
+ "grad_norm": 0.025786688551306725,
+ "learning_rate": 0.0006,
+ "loss": 3.035883665084839,
+ "step": 1909
+ },
+ {
+ "epoch": 26.531004366812226,
+ "grad_norm": 0.025683339685201645,
+ "learning_rate": 0.0006,
+ "loss": 3.057992935180664,
+ "step": 1910
+ },
+ {
+ "epoch": 26.544978165938865,
+ "grad_norm": 0.028027107939124107,
+ "learning_rate": 0.0006,
+ "loss": 3.047372579574585,
+ "step": 1911
+ },
+ {
+ "epoch": 26.558951965065503,
+ "grad_norm": 0.02833317033946514,
+ "learning_rate": 0.0006,
+ "loss": 3.056609630584717,
+ "step": 1912
+ },
+ {
+ "epoch": 26.57292576419214,
+ "grad_norm": 0.028734203428030014,
+ "learning_rate": 0.0006,
+ "loss": 3.08479642868042,
+ "step": 1913
+ },
+ {
+ "epoch": 26.586899563318777,
+ "grad_norm": 0.027691153809428215,
+ "learning_rate": 0.0006,
+ "loss": 3.0392603874206543,
+ "step": 1914
+ },
+ {
+ "epoch": 26.600873362445416,
+ "grad_norm": 0.0263577438890934,
+ "learning_rate": 0.0006,
+ "loss": 3.0504343509674072,
+ "step": 1915
+ },
+ {
+ "epoch": 26.61484716157205,
+ "grad_norm": 0.026692545041441917,
+ "learning_rate": 0.0006,
+ "loss": 3.100642204284668,
+ "step": 1916
+ },
+ {
+ "epoch": 26.62882096069869,
+ "grad_norm": 0.025303112342953682,
+ "learning_rate": 0.0006,
+ "loss": 3.05635929107666,
+ "step": 1917
+ },
+ {
+ "epoch": 26.64279475982533,
+ "grad_norm": 0.024708664044737816,
+ "learning_rate": 0.0006,
+ "loss": 3.059967517852783,
+ "step": 1918
+ },
+ {
+ "epoch": 26.656768558951963,
+ "grad_norm": 0.02639661729335785,
+ "learning_rate": 0.0006,
+ "loss": 3.0737743377685547,
+ "step": 1919
+ },
+ {
+ "epoch": 26.670742358078602,
+ "grad_norm": 0.025596698746085167,
+ "learning_rate": 0.0006,
+ "loss": 3.067931890487671,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68471615720524,
+ "grad_norm": 0.02229447290301323,
+ "learning_rate": 0.0006,
+ "loss": 3.0820088386535645,
+ "step": 1921
+ },
+ {
+ "epoch": 26.69868995633188,
+ "grad_norm": 0.02375129424035549,
+ "learning_rate": 0.0006,
+ "loss": 3.07956862449646,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712663755458514,
+ "grad_norm": 0.02399134822189808,
+ "learning_rate": 0.0006,
+ "loss": 3.061767101287842,
+ "step": 1923
+ },
+ {
+ "epoch": 26.726637554585153,
+ "grad_norm": 0.024671411141753197,
+ "learning_rate": 0.0006,
+ "loss": 3.1015849113464355,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74061135371179,
+ "grad_norm": 0.024321842938661575,
+ "learning_rate": 0.0006,
+ "loss": 3.0476126670837402,
+ "step": 1925
+ },
+ {
+ "epoch": 26.754585152838427,
+ "grad_norm": 0.023859843611717224,
+ "learning_rate": 0.0006,
+ "loss": 3.0923385620117188,
+ "step": 1926
+ },
+ {
+ "epoch": 26.768558951965066,
+ "grad_norm": 0.024472227320075035,
+ "learning_rate": 0.0006,
+ "loss": 3.0999197959899902,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782532751091704,
+ "grad_norm": 0.02513224445283413,
+ "learning_rate": 0.0006,
+ "loss": 3.067659854888916,
+ "step": 1928
+ },
+ {
+ "epoch": 26.79650655021834,
+ "grad_norm": 0.023755615577101707,
+ "learning_rate": 0.0006,
+ "loss": 3.070265293121338,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810480349344978,
+ "grad_norm": 0.023443203419446945,
+ "learning_rate": 0.0006,
+ "loss": 3.0928702354431152,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824454148471617,
+ "grad_norm": 0.024389786645770073,
+ "learning_rate": 0.0006,
+ "loss": 3.039468288421631,
+ "step": 1931
+ },
+ {
+ "epoch": 26.83842794759825,
+ "grad_norm": 0.021939845755696297,
+ "learning_rate": 0.0006,
+ "loss": 3.0597710609436035,
+ "step": 1932
+ },
+ {
+ "epoch": 26.85240174672489,
+ "grad_norm": 0.022113796323537827,
+ "learning_rate": 0.0006,
+ "loss": 3.078843593597412,
+ "step": 1933
+ },
+ {
+ "epoch": 26.86637554585153,
+ "grad_norm": 0.023516526445746422,
+ "learning_rate": 0.0006,
+ "loss": 3.136680841445923,
+ "step": 1934
+ },
+ {
+ "epoch": 26.880349344978168,
+ "grad_norm": 0.023710910230875015,
+ "learning_rate": 0.0006,
+ "loss": 3.103081703186035,
+ "step": 1935
+ },
+ {
+ "epoch": 26.894323144104803,
+ "grad_norm": 0.023430297151207924,
+ "learning_rate": 0.0006,
+ "loss": 3.098705291748047,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90829694323144,
+ "grad_norm": 0.023761266842484474,
+ "learning_rate": 0.0006,
+ "loss": 3.1277971267700195,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92227074235808,
+ "grad_norm": 0.023715797811746597,
+ "learning_rate": 0.0006,
+ "loss": 3.0877621173858643,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936244541484715,
+ "grad_norm": 0.023883594200015068,
+ "learning_rate": 0.0006,
+ "loss": 3.087163209915161,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950218340611354,
+ "grad_norm": 0.022293508052825928,
+ "learning_rate": 0.0006,
+ "loss": 3.086988925933838,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964192139737992,
+ "grad_norm": 0.022041622549295425,
+ "learning_rate": 0.0006,
+ "loss": 3.1225247383117676,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978165938864628,
+ "grad_norm": 0.021637167781591415,
+ "learning_rate": 0.0006,
+ "loss": 3.0737392902374268,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992139737991266,
+ "grad_norm": 0.02192411944270134,
+ "learning_rate": 0.0006,
+ "loss": 3.104888916015625,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.025614608079195023,
+ "learning_rate": 0.0006,
+ "loss": 3.12424898147583,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 4.125223636627197,
+ "eval_runtime": 50.2001,
+ "eval_samples_per_second": 48.645,
+ "eval_steps_per_second": 1.534,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397379912664,
+ "grad_norm": 0.028453795239329338,
+ "learning_rate": 0.0006,
+ "loss": 2.879258632659912,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027947598253274,
+ "grad_norm": 0.04377718269824982,
+ "learning_rate": 0.0006,
+ "loss": 2.9013819694519043,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041921397379912,
+ "grad_norm": 0.049764763563871384,
+ "learning_rate": 0.0006,
+ "loss": 2.9127326011657715,
+ "step": 1947
+ },
+ {
+ "epoch": 27.05589519650655,
+ "grad_norm": 0.05033150315284729,
+ "learning_rate": 0.0006,
+ "loss": 2.8803203105926514,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069868995633186,
+ "grad_norm": 0.05057684704661369,
+ "learning_rate": 0.0006,
+ "loss": 2.9041876792907715,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083842794759825,
+ "grad_norm": 0.05503581836819649,
+ "learning_rate": 0.0006,
+ "loss": 2.9236111640930176,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097816593886463,
+ "grad_norm": 0.0504646934568882,
+ "learning_rate": 0.0006,
+ "loss": 2.898369789123535,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111790393013102,
+ "grad_norm": 0.05223672091960907,
+ "learning_rate": 0.0006,
+ "loss": 2.922698974609375,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125764192139737,
+ "grad_norm": 0.061617255210876465,
+ "learning_rate": 0.0006,
+ "loss": 2.933682680130005,
+ "step": 1953
+ },
+ {
+ "epoch": 27.139737991266376,
+ "grad_norm": 0.06874233484268188,
+ "learning_rate": 0.0006,
+ "loss": 2.9357151985168457,
+ "step": 1954
+ },
+ {
+ "epoch": 27.153711790393015,
+ "grad_norm": 0.06190113350749016,
+ "learning_rate": 0.0006,
+ "loss": 2.954944610595703,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16768558951965,
+ "grad_norm": 0.05684139207005501,
+ "learning_rate": 0.0006,
+ "loss": 2.9126837253570557,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18165938864629,
+ "grad_norm": 0.06056728586554527,
+ "learning_rate": 0.0006,
+ "loss": 2.9814395904541016,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195633187772927,
+ "grad_norm": 0.056225795298814774,
+ "learning_rate": 0.0006,
+ "loss": 2.991654872894287,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209606986899562,
+ "grad_norm": 0.045878518372774124,
+ "learning_rate": 0.0006,
+ "loss": 3.001042604446411,
+ "step": 1959
+ },
+ {
+ "epoch": 27.2235807860262,
+ "grad_norm": 0.0471920520067215,
+ "learning_rate": 0.0006,
+ "loss": 2.9564008712768555,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23755458515284,
+ "grad_norm": 0.053059689700603485,
+ "learning_rate": 0.0006,
+ "loss": 2.996217727661133,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251528384279474,
+ "grad_norm": 0.0541369765996933,
+ "learning_rate": 0.0006,
+ "loss": 2.9720678329467773,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265502183406113,
+ "grad_norm": 0.047301989048719406,
+ "learning_rate": 0.0006,
+ "loss": 2.9787089824676514,
+ "step": 1963
+ },
+ {
+ "epoch": 27.27947598253275,
+ "grad_norm": 0.046062350273132324,
+ "learning_rate": 0.0006,
+ "loss": 2.9771294593811035,
+ "step": 1964
+ },
+ {
+ "epoch": 27.29344978165939,
+ "grad_norm": 0.05031602457165718,
+ "learning_rate": 0.0006,
+ "loss": 2.9904980659484863,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307423580786025,
+ "grad_norm": 0.049279652535915375,
+ "learning_rate": 0.0006,
+ "loss": 2.994781494140625,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321397379912664,
+ "grad_norm": 0.05007164552807808,
+ "learning_rate": 0.0006,
+ "loss": 3.0293216705322266,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335371179039303,
+ "grad_norm": 0.053599122911691666,
+ "learning_rate": 0.0006,
+ "loss": 2.966653347015381,
+ "step": 1968
+ },
+ {
+ "epoch": 27.349344978165938,
+ "grad_norm": 0.053869765251874924,
+ "learning_rate": 0.0006,
+ "loss": 2.986807107925415,
+ "step": 1969
+ },
+ {
+ "epoch": 27.363318777292577,
+ "grad_norm": 0.049204543232917786,
+ "learning_rate": 0.0006,
+ "loss": 3.035799264907837,
+ "step": 1970
+ },
+ {
+ "epoch": 27.377292576419215,
+ "grad_norm": 0.041741687804460526,
+ "learning_rate": 0.0006,
+ "loss": 3.01177978515625,
+ "step": 1971
+ },
+ {
+ "epoch": 27.39126637554585,
+ "grad_norm": 0.04108894243836403,
+ "learning_rate": 0.0006,
+ "loss": 3.0135087966918945,
+ "step": 1972
+ },
+ {
+ "epoch": 27.40524017467249,
+ "grad_norm": 0.03928737714886665,
+ "learning_rate": 0.0006,
+ "loss": 2.9952547550201416,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419213973799128,
+ "grad_norm": 0.038500797003507614,
+ "learning_rate": 0.0006,
+ "loss": 3.047365188598633,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433187772925763,
+ "grad_norm": 0.03740246221423149,
+ "learning_rate": 0.0006,
+ "loss": 3.033809185028076,
+ "step": 1975
+ },
+ {
+ "epoch": 27.4471615720524,
+ "grad_norm": 0.03386867046356201,
+ "learning_rate": 0.0006,
+ "loss": 3.025137424468994,
+ "step": 1976
+ },
+ {
+ "epoch": 27.46113537117904,
+ "grad_norm": 0.03259620815515518,
+ "learning_rate": 0.0006,
+ "loss": 3.031647205352783,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475109170305675,
+ "grad_norm": 0.03135821223258972,
+ "learning_rate": 0.0006,
+ "loss": 3.038449287414551,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489082969432314,
+ "grad_norm": 0.02891516126692295,
+ "learning_rate": 0.0006,
+ "loss": 3.0067849159240723,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503056768558952,
+ "grad_norm": 0.029571816325187683,
+ "learning_rate": 0.0006,
+ "loss": 3.0450942516326904,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51703056768559,
+ "grad_norm": 0.02915847674012184,
+ "learning_rate": 0.0006,
+ "loss": 3.0238382816314697,
+ "step": 1981
+ },
+ {
+ "epoch": 27.531004366812226,
+ "grad_norm": 0.02730637416243553,
+ "learning_rate": 0.0006,
+ "loss": 2.9970340728759766,
+ "step": 1982
+ },
+ {
+ "epoch": 27.544978165938865,
+ "grad_norm": 0.026363128796219826,
+ "learning_rate": 0.0006,
+ "loss": 3.042269229888916,
+ "step": 1983
+ },
+ {
+ "epoch": 27.558951965065503,
+ "grad_norm": 0.02613256685435772,
+ "learning_rate": 0.0006,
+ "loss": 2.9850640296936035,
+ "step": 1984
+ },
+ {
+ "epoch": 27.57292576419214,
+ "grad_norm": 0.025504328310489655,
+ "learning_rate": 0.0006,
+ "loss": 3.02850341796875,
+ "step": 1985
+ },
+ {
+ "epoch": 27.586899563318777,
+ "grad_norm": 0.025076977908611298,
+ "learning_rate": 0.0006,
+ "loss": 3.022831678390503,
+ "step": 1986
+ },
+ {
+ "epoch": 27.600873362445416,
+ "grad_norm": 0.026498636230826378,
+ "learning_rate": 0.0006,
+ "loss": 3.036193370819092,
+ "step": 1987
+ },
+ {
+ "epoch": 27.61484716157205,
+ "grad_norm": 0.02634165622293949,
+ "learning_rate": 0.0006,
+ "loss": 2.988772392272949,
+ "step": 1988
+ },
+ {
+ "epoch": 27.62882096069869,
+ "grad_norm": 0.02386527881026268,
+ "learning_rate": 0.0006,
+ "loss": 3.0652225017547607,
+ "step": 1989
+ },
+ {
+ "epoch": 27.64279475982533,
+ "grad_norm": 0.025630373507738113,
+ "learning_rate": 0.0006,
+ "loss": 3.025211811065674,
+ "step": 1990
+ },
+ {
+ "epoch": 27.656768558951963,
+ "grad_norm": 0.02564374916255474,
+ "learning_rate": 0.0006,
+ "loss": 3.038477659225464,
+ "step": 1991
+ },
+ {
+ "epoch": 27.670742358078602,
+ "grad_norm": 0.024687733501195908,
+ "learning_rate": 0.0006,
+ "loss": 3.0274953842163086,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68471615720524,
+ "grad_norm": 0.0237992312759161,
+ "learning_rate": 0.0006,
+ "loss": 3.020660638809204,
+ "step": 1993
+ },
+ {
+ "epoch": 27.69868995633188,
+ "grad_norm": 0.024008993059396744,
+ "learning_rate": 0.0006,
+ "loss": 3.0048153400421143,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712663755458514,
+ "grad_norm": 0.024011511355638504,
+ "learning_rate": 0.0006,
+ "loss": 3.028651714324951,
+ "step": 1995
+ },
+ {
+ "epoch": 27.726637554585153,
+ "grad_norm": 0.023767957463860512,
+ "learning_rate": 0.0006,
+ "loss": 3.024357795715332,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74061135371179,
+ "grad_norm": 0.02491922304034233,
+ "learning_rate": 0.0006,
+ "loss": 3.0481948852539062,
+ "step": 1997
+ },
+ {
+ "epoch": 27.754585152838427,
+ "grad_norm": 0.023492073640227318,
+ "learning_rate": 0.0006,
+ "loss": 3.0265281200408936,
+ "step": 1998
+ },
+ {
+ "epoch": 27.768558951965066,
+ "grad_norm": 0.022904539480805397,
+ "learning_rate": 0.0006,
+ "loss": 3.035724401473999,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782532751091704,
+ "grad_norm": 0.02523794211447239,
+ "learning_rate": 0.0006,
+ "loss": 3.0473437309265137,
+ "step": 2000
+ },
+ {
+ "epoch": 27.79650655021834,
+ "grad_norm": 0.02560942806303501,
+ "learning_rate": 0.0006,
+ "loss": 3.031550168991089,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810480349344978,
+ "grad_norm": 0.025517819449305534,
+ "learning_rate": 0.0006,
+ "loss": 3.0686302185058594,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824454148471617,
+ "grad_norm": 0.02572985179722309,
+ "learning_rate": 0.0006,
+ "loss": 3.07204270362854,
+ "step": 2003
+ },
+ {
+ "epoch": 27.83842794759825,
+ "grad_norm": 0.025370420888066292,
+ "learning_rate": 0.0006,
+ "loss": 3.0560848712921143,
+ "step": 2004
+ },
+ {
+ "epoch": 27.85240174672489,
+ "grad_norm": 0.02532627247273922,
+ "learning_rate": 0.0006,
+ "loss": 3.0176045894622803,
+ "step": 2005
+ },
+ {
+ "epoch": 27.86637554585153,
+ "grad_norm": 0.02456071600317955,
+ "learning_rate": 0.0006,
+ "loss": 3.0588455200195312,
+ "step": 2006
+ },
+ {
+ "epoch": 27.880349344978168,
+ "grad_norm": 0.025378121063113213,
+ "learning_rate": 0.0006,
+ "loss": 3.086975574493408,
+ "step": 2007
+ },
+ {
+ "epoch": 27.894323144104803,
+ "grad_norm": 0.024764427915215492,
+ "learning_rate": 0.0006,
+ "loss": 3.0386085510253906,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90829694323144,
+ "grad_norm": 0.024318184703588486,
+ "learning_rate": 0.0006,
+ "loss": 3.0750131607055664,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92227074235808,
+ "grad_norm": 0.023893442004919052,
+ "learning_rate": 0.0006,
+ "loss": 3.0715298652648926,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936244541484715,
+ "grad_norm": 0.023891527205705643,
+ "learning_rate": 0.0006,
+ "loss": 3.063795804977417,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950218340611354,
+ "grad_norm": 0.023563770577311516,
+ "learning_rate": 0.0006,
+ "loss": 3.066619873046875,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964192139737992,
+ "grad_norm": 0.023340724408626556,
+ "learning_rate": 0.0006,
+ "loss": 3.0637826919555664,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978165938864628,
+ "grad_norm": 0.024990880861878395,
+ "learning_rate": 0.0006,
+ "loss": 3.0814566612243652,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992139737991266,
+ "grad_norm": 0.024654274806380272,
+ "learning_rate": 0.0006,
+ "loss": 3.0768063068389893,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.02644839696586132,
+ "learning_rate": 0.0006,
+ "loss": 3.0343258380889893,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 4.1515045166015625,
+ "eval_runtime": 50.2049,
+ "eval_samples_per_second": 48.641,
+ "eval_steps_per_second": 1.534,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397379912664,
+ "grad_norm": 0.03195852413773537,
+ "learning_rate": 0.0006,
+ "loss": 2.834456443786621,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027947598253274,
+ "grad_norm": 0.0489632710814476,
+ "learning_rate": 0.0006,
+ "loss": 2.864487648010254,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041921397379912,
+ "grad_norm": 0.052848201245069504,
+ "learning_rate": 0.0006,
+ "loss": 2.881183624267578,
+ "step": 2019
+ },
+ {
+ "epoch": 28.05589519650655,
+ "grad_norm": 0.05033821240067482,
+ "learning_rate": 0.0006,
+ "loss": 2.8849921226501465,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069868995633186,
+ "grad_norm": 0.04925774410367012,
+ "learning_rate": 0.0006,
+ "loss": 2.8940699100494385,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083842794759825,
+ "grad_norm": 0.048295699059963226,
+ "learning_rate": 0.0006,
+ "loss": 2.8744611740112305,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097816593886463,
+ "grad_norm": 0.05191510170698166,
+ "learning_rate": 0.0006,
+ "loss": 2.8981003761291504,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111790393013102,
+ "grad_norm": 0.054681845009326935,
+ "learning_rate": 0.0006,
+ "loss": 2.894259452819824,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125764192139737,
+ "grad_norm": 0.05124315246939659,
+ "learning_rate": 0.0006,
+ "loss": 2.8902621269226074,
+ "step": 2025
+ },
+ {
+ "epoch": 28.139737991266376,
+ "grad_norm": 0.05269423872232437,
+ "learning_rate": 0.0006,
+ "loss": 2.9419264793395996,
+ "step": 2026
+ },
+ {
+ "epoch": 28.153711790393015,
+ "grad_norm": 0.052072685211896896,
+ "learning_rate": 0.0006,
+ "loss": 2.8902721405029297,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16768558951965,
+ "grad_norm": 0.04868622496724129,
+ "learning_rate": 0.0006,
+ "loss": 2.9544949531555176,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18165938864629,
+ "grad_norm": 0.04919573664665222,
+ "learning_rate": 0.0006,
+ "loss": 2.9149084091186523,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195633187772927,
+ "grad_norm": 0.05350393056869507,
+ "learning_rate": 0.0006,
+ "loss": 2.9301857948303223,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209606986899562,
+ "grad_norm": 0.06072673574090004,
+ "learning_rate": 0.0006,
+ "loss": 2.937542200088501,
+ "step": 2031
+ },
+ {
+ "epoch": 28.2235807860262,
+ "grad_norm": 0.06678931415081024,
+ "learning_rate": 0.0006,
+ "loss": 2.9437155723571777,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23755458515284,
+ "grad_norm": 0.07136489450931549,
+ "learning_rate": 0.0006,
+ "loss": 2.9720969200134277,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251528384279474,
+ "grad_norm": 0.06340529769659042,
+ "learning_rate": 0.0006,
+ "loss": 2.957184076309204,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265502183406113,
+ "grad_norm": 0.05951949581503868,
+ "learning_rate": 0.0006,
+ "loss": 2.9483275413513184,
+ "step": 2035
+ },
+ {
+ "epoch": 28.27947598253275,
+ "grad_norm": 0.05508637800812721,
+ "learning_rate": 0.0006,
+ "loss": 2.944632053375244,
+ "step": 2036
+ },
+ {
+ "epoch": 28.29344978165939,
+ "grad_norm": 0.04451477900147438,
+ "learning_rate": 0.0006,
+ "loss": 2.9538841247558594,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307423580786025,
+ "grad_norm": 0.04283531755208969,
+ "learning_rate": 0.0006,
+ "loss": 2.942497730255127,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321397379912664,
+ "grad_norm": 0.04256067052483559,
+ "learning_rate": 0.0006,
+ "loss": 2.9589486122131348,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335371179039303,
+ "grad_norm": 0.040724314749240875,
+ "learning_rate": 0.0006,
+ "loss": 2.9297492504119873,
+ "step": 2040
+ },
+ {
+ "epoch": 28.349344978165938,
+ "grad_norm": 0.035998500883579254,
+ "learning_rate": 0.0006,
+ "loss": 2.921250820159912,
+ "step": 2041
+ },
+ {
+ "epoch": 28.363318777292577,
+ "grad_norm": 0.03447495028376579,
+ "learning_rate": 0.0006,
+ "loss": 2.9901719093322754,
+ "step": 2042
+ },
+ {
+ "epoch": 28.377292576419215,
+ "grad_norm": 0.03475875034928322,
+ "learning_rate": 0.0006,
+ "loss": 2.975034236907959,
+ "step": 2043
+ },
+ {
+ "epoch": 28.39126637554585,
+ "grad_norm": 0.035763081163167953,
+ "learning_rate": 0.0006,
+ "loss": 2.9198880195617676,
+ "step": 2044
+ },
+ {
+ "epoch": 28.40524017467249,
+ "grad_norm": 0.03533506393432617,
+ "learning_rate": 0.0006,
+ "loss": 2.954592704772949,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419213973799128,
+ "grad_norm": 0.03279201313853264,
+ "learning_rate": 0.0006,
+ "loss": 2.9453115463256836,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433187772925763,
+ "grad_norm": 0.031335968524217606,
+ "learning_rate": 0.0006,
+ "loss": 2.9707398414611816,
+ "step": 2047
+ },
+ {
+ "epoch": 28.4471615720524,
+ "grad_norm": 0.028612999245524406,
+ "learning_rate": 0.0006,
+ "loss": 2.9935314655303955,
+ "step": 2048
+ },
+ {
+ "epoch": 28.46113537117904,
+ "grad_norm": 0.027722638100385666,
+ "learning_rate": 0.0006,
+ "loss": 2.937558650970459,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475109170305675,
+ "grad_norm": 0.026583192870020866,
+ "learning_rate": 0.0006,
+ "loss": 2.9509410858154297,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489082969432314,
+ "grad_norm": 0.026762869209051132,
+ "learning_rate": 0.0006,
+ "loss": 3.011293888092041,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503056768558952,
+ "grad_norm": 0.027254173532128334,
+ "learning_rate": 0.0006,
+ "loss": 2.9635009765625,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51703056768559,
+ "grad_norm": 0.028218677267432213,
+ "learning_rate": 0.0006,
+ "loss": 2.9973299503326416,
+ "step": 2053
+ },
+ {
+ "epoch": 28.531004366812226,
+ "grad_norm": 0.028099076822400093,
+ "learning_rate": 0.0006,
+ "loss": 2.980783462524414,
+ "step": 2054
+ },
+ {
+ "epoch": 28.544978165938865,
+ "grad_norm": 0.02740541286766529,
+ "learning_rate": 0.0006,
+ "loss": 3.0181171894073486,
+ "step": 2055
+ },
+ {
+ "epoch": 28.558951965065503,
+ "grad_norm": 0.028045643121004105,
+ "learning_rate": 0.0006,
+ "loss": 2.998990774154663,
+ "step": 2056
+ },
+ {
+ "epoch": 28.57292576419214,
+ "grad_norm": 0.026816850528120995,
+ "learning_rate": 0.0006,
+ "loss": 3.0068860054016113,
+ "step": 2057
+ },
+ {
+ "epoch": 28.586899563318777,
+ "grad_norm": 0.025382595136761665,
+ "learning_rate": 0.0006,
+ "loss": 2.9418373107910156,
+ "step": 2058
+ },
+ {
+ "epoch": 28.600873362445416,
+ "grad_norm": 0.026060424745082855,
+ "learning_rate": 0.0006,
+ "loss": 2.936776638031006,
+ "step": 2059
+ },
+ {
+ "epoch": 28.61484716157205,
+ "grad_norm": 0.025853872299194336,
+ "learning_rate": 0.0006,
+ "loss": 3.0203466415405273,
+ "step": 2060
+ },
+ {
+ "epoch": 28.62882096069869,
+ "grad_norm": 0.02508033812046051,
+ "learning_rate": 0.0006,
+ "loss": 2.9945011138916016,
+ "step": 2061
+ },
+ {
+ "epoch": 28.64279475982533,
+ "grad_norm": 0.025970350950956345,
+ "learning_rate": 0.0006,
+ "loss": 2.9931695461273193,
+ "step": 2062
+ },
+ {
+ "epoch": 28.656768558951963,
+ "grad_norm": 0.025476455688476562,
+ "learning_rate": 0.0006,
+ "loss": 2.957230567932129,
+ "step": 2063
+ },
+ {
+ "epoch": 28.670742358078602,
+ "grad_norm": 0.026332074776291847,
+ "learning_rate": 0.0006,
+ "loss": 3.0264182090759277,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68471615720524,
+ "grad_norm": 0.025519322603940964,
+ "learning_rate": 0.0006,
+ "loss": 3.0092458724975586,
+ "step": 2065
+ },
+ {
+ "epoch": 28.69868995633188,
+ "grad_norm": 0.024840593338012695,
+ "learning_rate": 0.0006,
+ "loss": 2.986766815185547,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712663755458514,
+ "grad_norm": 0.02441803738474846,
+ "learning_rate": 0.0006,
+ "loss": 2.9874420166015625,
+ "step": 2067
+ },
+ {
+ "epoch": 28.726637554585153,
+ "grad_norm": 0.02630285918712616,
+ "learning_rate": 0.0006,
+ "loss": 3.0578904151916504,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74061135371179,
+ "grad_norm": 0.026446865871548653,
+ "learning_rate": 0.0006,
+ "loss": 3.0013539791107178,
+ "step": 2069
+ },
+ {
+ "epoch": 28.754585152838427,
+ "grad_norm": 0.02450861781835556,
+ "learning_rate": 0.0006,
+ "loss": 3.0490686893463135,
+ "step": 2070
+ },
+ {
+ "epoch": 28.768558951965066,
+ "grad_norm": 0.02672298066318035,
+ "learning_rate": 0.0006,
+ "loss": 3.020845413208008,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782532751091704,
+ "grad_norm": 0.025726495310664177,
+ "learning_rate": 0.0006,
+ "loss": 3.0180835723876953,
+ "step": 2072
+ },
+ {
+ "epoch": 28.79650655021834,
+ "grad_norm": 0.026580246165394783,
+ "learning_rate": 0.0006,
+ "loss": 2.991779327392578,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810480349344978,
+ "grad_norm": 0.02619314193725586,
+ "learning_rate": 0.0006,
+ "loss": 2.963550329208374,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824454148471617,
+ "grad_norm": 0.02470521256327629,
+ "learning_rate": 0.0006,
+ "loss": 2.9849443435668945,
+ "step": 2075
+ },
+ {
+ "epoch": 28.83842794759825,
+ "grad_norm": 0.02675030194222927,
+ "learning_rate": 0.0006,
+ "loss": 2.996417284011841,
+ "step": 2076
+ },
+ {
+ "epoch": 28.85240174672489,
+ "grad_norm": 0.02626962400972843,
+ "learning_rate": 0.0006,
+ "loss": 3.037600040435791,
+ "step": 2077
+ },
+ {
+ "epoch": 28.86637554585153,
+ "grad_norm": 0.025189539417624474,
+ "learning_rate": 0.0006,
+ "loss": 3.0162289142608643,
+ "step": 2078
+ },
+ {
+ "epoch": 28.880349344978168,
+ "grad_norm": 0.023836355656385422,
+ "learning_rate": 0.0006,
+ "loss": 3.0182363986968994,
+ "step": 2079
+ },
+ {
+ "epoch": 28.894323144104803,
+ "grad_norm": 0.025875985622406006,
+ "learning_rate": 0.0006,
+ "loss": 3.0712671279907227,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90829694323144,
+ "grad_norm": 0.025787588208913803,
+ "learning_rate": 0.0006,
+ "loss": 3.060253858566284,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92227074235808,
+ "grad_norm": 0.025029966607689857,
+ "learning_rate": 0.0006,
+ "loss": 3.0385570526123047,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936244541484715,
+ "grad_norm": 0.024807918816804886,
+ "learning_rate": 0.0006,
+ "loss": 3.030642509460449,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950218340611354,
+ "grad_norm": 0.02444799616932869,
+ "learning_rate": 0.0006,
+ "loss": 3.025789260864258,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964192139737992,
+ "grad_norm": 0.02498369850218296,
+ "learning_rate": 0.0006,
+ "loss": 3.0041980743408203,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978165938864628,
+ "grad_norm": 0.02519051544368267,
+ "learning_rate": 0.0006,
+ "loss": 3.0126523971557617,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992139737991266,
+ "grad_norm": 0.026262952014803886,
+ "learning_rate": 0.0006,
+ "loss": 3.036421775817871,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.028925646096467972,
+ "learning_rate": 0.0006,
+ "loss": 2.9996514320373535,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 4.17269229888916,
+ "eval_runtime": 54.6168,
+ "eval_samples_per_second": 44.711,
+ "eval_steps_per_second": 1.41,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397379912664,
+ "grad_norm": 0.033029936254024506,
+ "learning_rate": 0.0006,
+ "loss": 2.8362483978271484,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027947598253274,
+ "grad_norm": 0.04538845643401146,
+ "learning_rate": 0.0006,
+ "loss": 2.8311057090759277,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041921397379912,
+ "grad_norm": 0.046482112258672714,
+ "learning_rate": 0.0006,
+ "loss": 2.851710319519043,
+ "step": 2091
+ },
+ {
+ "epoch": 29.05589519650655,
+ "grad_norm": 0.04495995491743088,
+ "learning_rate": 0.0006,
+ "loss": 2.8197240829467773,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069868995633186,
+ "grad_norm": 0.043497391045093536,
+ "learning_rate": 0.0006,
+ "loss": 2.835160255432129,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083842794759825,
+ "grad_norm": 0.042180925607681274,
+ "learning_rate": 0.0006,
+ "loss": 2.814297914505005,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097816593886463,
+ "grad_norm": 0.046564772725105286,
+ "learning_rate": 0.0006,
+ "loss": 2.8432681560516357,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111790393013102,
+ "grad_norm": 0.05109454691410065,
+ "learning_rate": 0.0006,
+ "loss": 2.8209657669067383,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125764192139737,
+ "grad_norm": 0.054633282124996185,
+ "learning_rate": 0.0006,
+ "loss": 2.860410213470459,
+ "step": 2097
+ },
+ {
+ "epoch": 29.139737991266376,
+ "grad_norm": 0.05523914843797684,
+ "learning_rate": 0.0006,
+ "loss": 2.850083827972412,
+ "step": 2098
+ },
+ {
+ "epoch": 29.153711790393015,
+ "grad_norm": 0.055773504078388214,
+ "learning_rate": 0.0006,
+ "loss": 2.8240323066711426,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16768558951965,
+ "grad_norm": 0.054498568177223206,
+ "learning_rate": 0.0006,
+ "loss": 2.8628149032592773,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18165938864629,
+ "grad_norm": 0.053030889481306076,
+ "learning_rate": 0.0006,
+ "loss": 2.8365299701690674,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195633187772927,
+ "grad_norm": 0.05545743182301521,
+ "learning_rate": 0.0006,
+ "loss": 2.884146213531494,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209606986899562,
+ "grad_norm": 0.057719431817531586,
+ "learning_rate": 0.0006,
+ "loss": 2.8857107162475586,
+ "step": 2103
+ },
+ {
+ "epoch": 29.2235807860262,
+ "grad_norm": 0.060189153999090195,
+ "learning_rate": 0.0006,
+ "loss": 2.896878242492676,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23755458515284,
+ "grad_norm": 0.06222223490476608,
+ "learning_rate": 0.0006,
+ "loss": 2.883173704147339,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251528384279474,
+ "grad_norm": 0.06780146062374115,
+ "learning_rate": 0.0006,
+ "loss": 2.926743745803833,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265502183406113,
+ "grad_norm": 0.06533487886190414,
+ "learning_rate": 0.0006,
+ "loss": 2.9010519981384277,
+ "step": 2107
+ },
+ {
+ "epoch": 29.27947598253275,
+ "grad_norm": 0.05744635686278343,
+ "learning_rate": 0.0006,
+ "loss": 2.922598123550415,
+ "step": 2108
+ },
+ {
+ "epoch": 29.29344978165939,
+ "grad_norm": 0.05649896338582039,
+ "learning_rate": 0.0006,
+ "loss": 2.905834674835205,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307423580786025,
+ "grad_norm": 0.06080562621355057,
+ "learning_rate": 0.0006,
+ "loss": 2.92208194732666,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321397379912664,
+ "grad_norm": 0.059314578771591187,
+ "learning_rate": 0.0006,
+ "loss": 2.9546284675598145,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335371179039303,
+ "grad_norm": 0.047971680760383606,
+ "learning_rate": 0.0006,
+ "loss": 2.9306116104125977,
+ "step": 2112
+ },
+ {
+ "epoch": 29.349344978165938,
+ "grad_norm": 0.041513457894325256,
+ "learning_rate": 0.0006,
+ "loss": 2.885359287261963,
+ "step": 2113
+ },
+ {
+ "epoch": 29.363318777292577,
+ "grad_norm": 0.044294606894254684,
+ "learning_rate": 0.0006,
+ "loss": 2.923374652862549,
+ "step": 2114
+ },
+ {
+ "epoch": 29.377292576419215,
+ "grad_norm": 0.0417361743748188,
+ "learning_rate": 0.0006,
+ "loss": 2.88425350189209,
+ "step": 2115
+ },
+ {
+ "epoch": 29.39126637554585,
+ "grad_norm": 0.041468895971775055,
+ "learning_rate": 0.0006,
+ "loss": 2.9643259048461914,
+ "step": 2116
+ },
+ {
+ "epoch": 29.40524017467249,
+ "grad_norm": 0.04073813930153847,
+ "learning_rate": 0.0006,
+ "loss": 2.95505952835083,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419213973799128,
+ "grad_norm": 0.039006855338811874,
+ "learning_rate": 0.0006,
+ "loss": 2.9500551223754883,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433187772925763,
+ "grad_norm": 0.035800445824861526,
+ "learning_rate": 0.0006,
+ "loss": 2.954481601715088,
+ "step": 2119
+ },
+ {
+ "epoch": 29.4471615720524,
+ "grad_norm": 0.03534843400120735,
+ "learning_rate": 0.0006,
+ "loss": 2.949183940887451,
+ "step": 2120
+ },
+ {
+ "epoch": 29.46113537117904,
+ "grad_norm": 0.03376666083931923,
+ "learning_rate": 0.0006,
+ "loss": 2.9482197761535645,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475109170305675,
+ "grad_norm": 0.032544493675231934,
+ "learning_rate": 0.0006,
+ "loss": 2.9613194465637207,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489082969432314,
+ "grad_norm": 0.02941369079053402,
+ "learning_rate": 0.0006,
+ "loss": 2.9054269790649414,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503056768558952,
+ "grad_norm": 0.030306288972496986,
+ "learning_rate": 0.0006,
+ "loss": 2.955117702484131,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51703056768559,
+ "grad_norm": 0.029188739135861397,
+ "learning_rate": 0.0006,
+ "loss": 2.9344658851623535,
+ "step": 2125
+ },
+ {
+ "epoch": 29.531004366812226,
+ "grad_norm": 0.028544921427965164,
+ "learning_rate": 0.0006,
+ "loss": 2.9878439903259277,
+ "step": 2126
+ },
+ {
+ "epoch": 29.544978165938865,
+ "grad_norm": 0.029478471726179123,
+ "learning_rate": 0.0006,
+ "loss": 2.9671640396118164,
+ "step": 2127
+ },
+ {
+ "epoch": 29.558951965065503,
+ "grad_norm": 0.029838059097528458,
+ "learning_rate": 0.0006,
+ "loss": 2.9319276809692383,
+ "step": 2128
+ },
+ {
+ "epoch": 29.57292576419214,
+ "grad_norm": 0.031277935951948166,
+ "learning_rate": 0.0006,
+ "loss": 2.9517064094543457,
+ "step": 2129
+ },
+ {
+ "epoch": 29.586899563318777,
+ "grad_norm": 0.028920911252498627,
+ "learning_rate": 0.0006,
+ "loss": 3.0010836124420166,
+ "step": 2130
+ },
+ {
+ "epoch": 29.600873362445416,
+ "grad_norm": 0.028258386999368668,
+ "learning_rate": 0.0006,
+ "loss": 2.9552881717681885,
+ "step": 2131
+ },
+ {
+ "epoch": 29.61484716157205,
+ "grad_norm": 0.027709737420082092,
+ "learning_rate": 0.0006,
+ "loss": 2.9699630737304688,
+ "step": 2132
+ },
+ {
+ "epoch": 29.62882096069869,
+ "grad_norm": 0.027644682675600052,
+ "learning_rate": 0.0006,
+ "loss": 2.966932535171509,
+ "step": 2133
+ },
+ {
+ "epoch": 29.64279475982533,
+ "grad_norm": 0.026919284835457802,
+ "learning_rate": 0.0006,
+ "loss": 2.9580016136169434,
+ "step": 2134
+ },
+ {
+ "epoch": 29.656768558951963,
+ "grad_norm": 0.025746364146471024,
+ "learning_rate": 0.0006,
+ "loss": 2.9671740531921387,
+ "step": 2135
+ },
+ {
+ "epoch": 29.670742358078602,
+ "grad_norm": 0.026482900604605675,
+ "learning_rate": 0.0006,
+ "loss": 2.9920620918273926,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68471615720524,
+ "grad_norm": 0.028580941259860992,
+ "learning_rate": 0.0006,
+ "loss": 2.998594045639038,
+ "step": 2137
+ },
+ {
+ "epoch": 29.69868995633188,
+ "grad_norm": 0.027317512780427933,
+ "learning_rate": 0.0006,
+ "loss": 2.978580951690674,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712663755458514,
+ "grad_norm": 0.026336928829550743,
+ "learning_rate": 0.0006,
+ "loss": 2.9933362007141113,
+ "step": 2139
+ },
+ {
+ "epoch": 29.726637554585153,
+ "grad_norm": 0.025520015507936478,
+ "learning_rate": 0.0006,
+ "loss": 2.9906885623931885,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74061135371179,
+ "grad_norm": 0.024093175306916237,
+ "learning_rate": 0.0006,
+ "loss": 2.95902419090271,
+ "step": 2141
+ },
+ {
+ "epoch": 29.754585152838427,
+ "grad_norm": 0.024410322308540344,
+ "learning_rate": 0.0006,
+ "loss": 2.96647047996521,
+ "step": 2142
+ },
+ {
+ "epoch": 29.768558951965066,
+ "grad_norm": 0.024991247802972794,
+ "learning_rate": 0.0006,
+ "loss": 2.9643096923828125,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782532751091704,
+ "grad_norm": 0.025067847222089767,
+ "learning_rate": 0.0006,
+ "loss": 3.0112953186035156,
+ "step": 2144
+ },
+ {
+ "epoch": 29.79650655021834,
+ "grad_norm": 0.025362879037857056,
+ "learning_rate": 0.0006,
+ "loss": 2.971529483795166,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810480349344978,
+ "grad_norm": 0.024684470146894455,
+ "learning_rate": 0.0006,
+ "loss": 2.989647388458252,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824454148471617,
+ "grad_norm": 0.02385212853550911,
+ "learning_rate": 0.0006,
+ "loss": 2.977238178253174,
+ "step": 2147
+ },
+ {
+ "epoch": 29.83842794759825,
+ "grad_norm": 0.02527615986764431,
+ "learning_rate": 0.0006,
+ "loss": 2.9751431941986084,
+ "step": 2148
+ },
+ {
+ "epoch": 29.85240174672489,
+ "grad_norm": 0.024217894300818443,
+ "learning_rate": 0.0006,
+ "loss": 2.9607608318328857,
+ "step": 2149
+ },
+ {
+ "epoch": 29.86637554585153,
+ "grad_norm": 0.0244144294410944,
+ "learning_rate": 0.0006,
+ "loss": 3.0002236366271973,
+ "step": 2150
+ },
+ {
+ "epoch": 29.880349344978168,
+ "grad_norm": 0.026171889156103134,
+ "learning_rate": 0.0006,
+ "loss": 2.9608335494995117,
+ "step": 2151
+ },
+ {
+ "epoch": 29.894323144104803,
+ "grad_norm": 0.025675922632217407,
+ "learning_rate": 0.0006,
+ "loss": 3.0153677463531494,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90829694323144,
+ "grad_norm": 0.026269402354955673,
+ "learning_rate": 0.0006,
+ "loss": 2.990961790084839,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92227074235808,
+ "grad_norm": 0.025278599932789803,
+ "learning_rate": 0.0006,
+ "loss": 2.9858884811401367,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936244541484715,
+ "grad_norm": 0.02442092075943947,
+ "learning_rate": 0.0006,
+ "loss": 2.981938123703003,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950218340611354,
+ "grad_norm": 0.025676338002085686,
+ "learning_rate": 0.0006,
+ "loss": 3.007082462310791,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964192139737992,
+ "grad_norm": 0.02556379698216915,
+ "learning_rate": 0.0006,
+ "loss": 3.030315399169922,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978165938864628,
+ "grad_norm": 0.027025923132896423,
+ "learning_rate": 0.0006,
+ "loss": 2.9751744270324707,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992139737991266,
+ "grad_norm": 0.027581017464399338,
+ "learning_rate": 0.0006,
+ "loss": 3.0025429725646973,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.029440129175782204,
+ "learning_rate": 0.0006,
+ "loss": 2.9936294555664062,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 4.204888343811035,
+ "eval_runtime": 49.9747,
+ "eval_samples_per_second": 48.865,
+ "eval_steps_per_second": 1.541,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397379912664,
+ "grad_norm": 0.03082278184592724,
+ "learning_rate": 0.0006,
+ "loss": 2.790925979614258,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027947598253274,
+ "grad_norm": 0.04583689942955971,
+ "learning_rate": 0.0006,
+ "loss": 2.7823095321655273,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041921397379912,
+ "grad_norm": 0.05001630261540413,
+ "learning_rate": 0.0006,
+ "loss": 2.776362895965576,
+ "step": 2163
+ },
+ {
+ "epoch": 30.05589519650655,
+ "grad_norm": 0.04742066189646721,
+ "learning_rate": 0.0006,
+ "loss": 2.803783893585205,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069868995633186,
+ "grad_norm": 0.048882510513067245,
+ "learning_rate": 0.0006,
+ "loss": 2.8219070434570312,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083842794759825,
+ "grad_norm": 0.05513570457696915,
+ "learning_rate": 0.0006,
+ "loss": 2.833082437515259,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097816593886463,
+ "grad_norm": 0.05891067534685135,
+ "learning_rate": 0.0006,
+ "loss": 2.8083062171936035,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111790393013102,
+ "grad_norm": 0.06333944201469421,
+ "learning_rate": 0.0006,
+ "loss": 2.8162131309509277,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125764192139737,
+ "grad_norm": 0.06515136361122131,
+ "learning_rate": 0.0006,
+ "loss": 2.8343942165374756,
+ "step": 2169
+ },
+ {
+ "epoch": 30.139737991266376,
+ "grad_norm": 0.06689856946468353,
+ "learning_rate": 0.0006,
+ "loss": 2.837913990020752,
+ "step": 2170
+ },
+ {
+ "epoch": 30.153711790393015,
+ "grad_norm": 0.0659976378083229,
+ "learning_rate": 0.0006,
+ "loss": 2.816307306289673,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16768558951965,
+ "grad_norm": 0.05694719776511192,
+ "learning_rate": 0.0006,
+ "loss": 2.815828323364258,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18165938864629,
+ "grad_norm": 0.057003188878297806,
+ "learning_rate": 0.0006,
+ "loss": 2.8621420860290527,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195633187772927,
+ "grad_norm": 0.061041459441185,
+ "learning_rate": 0.0006,
+ "loss": 2.8613672256469727,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209606986899562,
+ "grad_norm": 0.06092670559883118,
+ "learning_rate": 0.0006,
+ "loss": 2.871680498123169,
+ "step": 2175
+ },
+ {
+ "epoch": 30.2235807860262,
+ "grad_norm": 0.06369971483945847,
+ "learning_rate": 0.0006,
+ "loss": 2.8823862075805664,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23755458515284,
+ "grad_norm": 0.06887379288673401,
+ "learning_rate": 0.0006,
+ "loss": 2.869670867919922,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251528384279474,
+ "grad_norm": 0.07047348469495773,
+ "learning_rate": 0.0006,
+ "loss": 2.8879926204681396,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265502183406113,
+ "grad_norm": 0.06639240682125092,
+ "learning_rate": 0.0006,
+ "loss": 2.8918027877807617,
+ "step": 2179
+ },
+ {
+ "epoch": 30.27947598253275,
+ "grad_norm": 0.06433828920125961,
+ "learning_rate": 0.0006,
+ "loss": 2.898557662963867,
+ "step": 2180
+ },
+ {
+ "epoch": 30.29344978165939,
+ "grad_norm": 0.05627095326781273,
+ "learning_rate": 0.0006,
+ "loss": 2.952359199523926,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307423580786025,
+ "grad_norm": 0.052996374666690826,
+ "learning_rate": 0.0006,
+ "loss": 2.8907530307769775,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321397379912664,
+ "grad_norm": 0.05459262803196907,
+ "learning_rate": 0.0006,
+ "loss": 2.920314073562622,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335371179039303,
+ "grad_norm": 0.05082414671778679,
+ "learning_rate": 0.0006,
+ "loss": 2.930004596710205,
+ "step": 2184
+ },
+ {
+ "epoch": 30.349344978165938,
+ "grad_norm": 0.04854968935251236,
+ "learning_rate": 0.0006,
+ "loss": 2.909700632095337,
+ "step": 2185
+ },
+ {
+ "epoch": 30.363318777292577,
+ "grad_norm": 0.046354763209819794,
+ "learning_rate": 0.0006,
+ "loss": 2.8992667198181152,
+ "step": 2186
+ },
+ {
+ "epoch": 30.377292576419215,
+ "grad_norm": 0.04162409156560898,
+ "learning_rate": 0.0006,
+ "loss": 2.8841357231140137,
+ "step": 2187
+ },
+ {
+ "epoch": 30.39126637554585,
+ "grad_norm": 0.0407755970954895,
+ "learning_rate": 0.0006,
+ "loss": 2.8838725090026855,
+ "step": 2188
+ },
+ {
+ "epoch": 30.40524017467249,
+ "grad_norm": 0.04091903567314148,
+ "learning_rate": 0.0006,
+ "loss": 2.9465415477752686,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419213973799128,
+ "grad_norm": 0.037343017756938934,
+ "learning_rate": 0.0006,
+ "loss": 2.9277544021606445,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433187772925763,
+ "grad_norm": 0.03364052250981331,
+ "learning_rate": 0.0006,
+ "loss": 2.9258010387420654,
+ "step": 2191
+ },
+ {
+ "epoch": 30.4471615720524,
+ "grad_norm": 0.033522892743349075,
+ "learning_rate": 0.0006,
+ "loss": 2.894564628601074,
+ "step": 2192
+ },
+ {
+ "epoch": 30.46113537117904,
+ "grad_norm": 0.03192823752760887,
+ "learning_rate": 0.0006,
+ "loss": 2.9259095191955566,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475109170305675,
+ "grad_norm": 0.030643166974186897,
+ "learning_rate": 0.0006,
+ "loss": 2.9532039165496826,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489082969432314,
+ "grad_norm": 0.030904730781912804,
+ "learning_rate": 0.0006,
+ "loss": 2.9105587005615234,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503056768558952,
+ "grad_norm": 0.029073279350996017,
+ "learning_rate": 0.0006,
+ "loss": 2.882645606994629,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51703056768559,
+ "grad_norm": 0.03068859502673149,
+ "learning_rate": 0.0006,
+ "loss": 2.972698211669922,
+ "step": 2197
+ },
+ {
+ "epoch": 30.531004366812226,
+ "grad_norm": 0.030377032235264778,
+ "learning_rate": 0.0006,
+ "loss": 2.903886318206787,
+ "step": 2198
+ },
+ {
+ "epoch": 30.544978165938865,
+ "grad_norm": 0.030634265393018723,
+ "learning_rate": 0.0006,
+ "loss": 2.867248058319092,
+ "step": 2199
+ },
+ {
+ "epoch": 30.558951965065503,
+ "grad_norm": 0.029660150408744812,
+ "learning_rate": 0.0006,
+ "loss": 2.925515651702881,
+ "step": 2200
+ },
+ {
+ "epoch": 30.57292576419214,
+ "grad_norm": 0.029679421335458755,
+ "learning_rate": 0.0006,
+ "loss": 2.9485011100769043,
+ "step": 2201
+ },
+ {
+ "epoch": 30.586899563318777,
+ "grad_norm": 0.029809271916747093,
+ "learning_rate": 0.0006,
+ "loss": 2.9528913497924805,
+ "step": 2202
+ },
+ {
+ "epoch": 30.600873362445416,
+ "grad_norm": 0.028424153104424477,
+ "learning_rate": 0.0006,
+ "loss": 2.92244291305542,
+ "step": 2203
+ },
+ {
+ "epoch": 30.61484716157205,
+ "grad_norm": 0.02718108892440796,
+ "learning_rate": 0.0006,
+ "loss": 2.9047327041625977,
+ "step": 2204
+ },
+ {
+ "epoch": 30.62882096069869,
+ "grad_norm": 0.028654800727963448,
+ "learning_rate": 0.0006,
+ "loss": 2.926530361175537,
+ "step": 2205
+ },
+ {
+ "epoch": 30.64279475982533,
+ "grad_norm": 0.027802037075161934,
+ "learning_rate": 0.0006,
+ "loss": 2.9279685020446777,
+ "step": 2206
+ },
+ {
+ "epoch": 30.656768558951963,
+ "grad_norm": 0.026860002428293228,
+ "learning_rate": 0.0006,
+ "loss": 2.918400287628174,
+ "step": 2207
+ },
+ {
+ "epoch": 30.670742358078602,
+ "grad_norm": 0.026720909401774406,
+ "learning_rate": 0.0006,
+ "loss": 2.907062530517578,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68471615720524,
+ "grad_norm": 0.026722557842731476,
+ "learning_rate": 0.0006,
+ "loss": 2.9302074909210205,
+ "step": 2209
+ },
+ {
+ "epoch": 30.69868995633188,
+ "grad_norm": 0.026495203375816345,
+ "learning_rate": 0.0006,
+ "loss": 2.914985418319702,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712663755458514,
+ "grad_norm": 0.025444738566875458,
+ "learning_rate": 0.0006,
+ "loss": 2.9205482006073,
+ "step": 2211
+ },
+ {
+ "epoch": 30.726637554585153,
+ "grad_norm": 0.02570643275976181,
+ "learning_rate": 0.0006,
+ "loss": 2.9142990112304688,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74061135371179,
+ "grad_norm": 0.025516517460346222,
+ "learning_rate": 0.0006,
+ "loss": 2.9324023723602295,
+ "step": 2213
+ },
+ {
+ "epoch": 30.754585152838427,
+ "grad_norm": 0.02481970377266407,
+ "learning_rate": 0.0006,
+ "loss": 2.9404819011688232,
+ "step": 2214
+ },
+ {
+ "epoch": 30.768558951965066,
+ "grad_norm": 0.024804186075925827,
+ "learning_rate": 0.0006,
+ "loss": 2.9476962089538574,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782532751091704,
+ "grad_norm": 0.02516373060643673,
+ "learning_rate": 0.0006,
+ "loss": 2.9525418281555176,
+ "step": 2216
+ },
+ {
+ "epoch": 30.79650655021834,
+ "grad_norm": 0.02501778118312359,
+ "learning_rate": 0.0006,
+ "loss": 2.953561782836914,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810480349344978,
+ "grad_norm": 0.025414010509848595,
+ "learning_rate": 0.0006,
+ "loss": 2.962048292160034,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824454148471617,
+ "grad_norm": 0.024972591549158096,
+ "learning_rate": 0.0006,
+ "loss": 2.9431703090667725,
+ "step": 2219
+ },
+ {
+ "epoch": 30.83842794759825,
+ "grad_norm": 0.024618400260806084,
+ "learning_rate": 0.0006,
+ "loss": 2.976715087890625,
+ "step": 2220
+ },
+ {
+ "epoch": 30.85240174672489,
+ "grad_norm": 0.025781305506825447,
+ "learning_rate": 0.0006,
+ "loss": 2.9464545249938965,
+ "step": 2221
+ },
+ {
+ "epoch": 30.86637554585153,
+ "grad_norm": 0.025492621585726738,
+ "learning_rate": 0.0006,
+ "loss": 2.9683992862701416,
+ "step": 2222
+ },
+ {
+ "epoch": 30.880349344978168,
+ "grad_norm": 0.024332989007234573,
+ "learning_rate": 0.0006,
+ "loss": 2.936504364013672,
+ "step": 2223
+ },
+ {
+ "epoch": 30.894323144104803,
+ "grad_norm": 0.025873707607388496,
+ "learning_rate": 0.0006,
+ "loss": 2.9819533824920654,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90829694323144,
+ "grad_norm": 0.025367610156536102,
+ "learning_rate": 0.0006,
+ "loss": 2.9434492588043213,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92227074235808,
+ "grad_norm": 0.025719329714775085,
+ "learning_rate": 0.0006,
+ "loss": 2.9492809772491455,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936244541484715,
+ "grad_norm": 0.025365520268678665,
+ "learning_rate": 0.0006,
+ "loss": 2.9604077339172363,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950218340611354,
+ "grad_norm": 0.025556908920407295,
+ "learning_rate": 0.0006,
+ "loss": 2.9890618324279785,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964192139737992,
+ "grad_norm": 0.025892134755849838,
+ "learning_rate": 0.0006,
+ "loss": 3.0024898052215576,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978165938864628,
+ "grad_norm": 0.02661663107573986,
+ "learning_rate": 0.0006,
+ "loss": 2.952683687210083,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992139737991266,
+ "grad_norm": 0.027014167979359627,
+ "learning_rate": 0.0006,
+ "loss": 2.9711644649505615,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.030383866280317307,
+ "learning_rate": 0.0006,
+ "loss": 2.9667253494262695,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 4.229912281036377,
+ "eval_runtime": 50.1223,
+ "eval_samples_per_second": 48.721,
+ "eval_steps_per_second": 1.536,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397379912664,
+ "grad_norm": 0.03256843239068985,
+ "learning_rate": 0.0006,
+ "loss": 2.7514405250549316,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027947598253274,
+ "grad_norm": 0.047255322337150574,
+ "learning_rate": 0.0006,
+ "loss": 2.74819278717041,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041921397379912,
+ "grad_norm": 0.057098377496004105,
+ "learning_rate": 0.0006,
+ "loss": 2.8072285652160645,
+ "step": 2235
+ },
+ {
+ "epoch": 31.05589519650655,
+ "grad_norm": 0.06089015305042267,
+ "learning_rate": 0.0006,
+ "loss": 2.7930731773376465,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069868995633186,
+ "grad_norm": 0.06132258102297783,
+ "learning_rate": 0.0006,
+ "loss": 2.758162498474121,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083842794759825,
+ "grad_norm": 0.06187787652015686,
+ "learning_rate": 0.0006,
+ "loss": 2.7864990234375,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097816593886463,
+ "grad_norm": 0.06031458452343941,
+ "learning_rate": 0.0006,
+ "loss": 2.7684197425842285,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111790393013102,
+ "grad_norm": 0.06238894909620285,
+ "learning_rate": 0.0006,
+ "loss": 2.7754814624786377,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125764192139737,
+ "grad_norm": 0.062081411480903625,
+ "learning_rate": 0.0006,
+ "loss": 2.790771484375,
+ "step": 2241
+ },
+ {
+ "epoch": 31.139737991266376,
+ "grad_norm": 0.06554440408945084,
+ "learning_rate": 0.0006,
+ "loss": 2.8218588829040527,
+ "step": 2242
+ },
+ {
+ "epoch": 31.153711790393015,
+ "grad_norm": 0.06824780255556107,
+ "learning_rate": 0.0006,
+ "loss": 2.7899062633514404,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16768558951965,
+ "grad_norm": 0.06519690155982971,
+ "learning_rate": 0.0006,
+ "loss": 2.8244035243988037,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18165938864629,
+ "grad_norm": 0.06539556384086609,
+ "learning_rate": 0.0006,
+ "loss": 2.8237123489379883,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195633187772927,
+ "grad_norm": 0.06608626246452332,
+ "learning_rate": 0.0006,
+ "loss": 2.82597017288208,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209606986899562,
+ "grad_norm": 0.0633682906627655,
+ "learning_rate": 0.0006,
+ "loss": 2.854529857635498,
+ "step": 2247
+ },
+ {
+ "epoch": 31.2235807860262,
+ "grad_norm": 0.06378687173128128,
+ "learning_rate": 0.0006,
+ "loss": 2.834493637084961,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23755458515284,
+ "grad_norm": 0.06429384648799896,
+ "learning_rate": 0.0006,
+ "loss": 2.835636854171753,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251528384279474,
+ "grad_norm": 0.06059514731168747,
+ "learning_rate": 0.0006,
+ "loss": 2.8262174129486084,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265502183406113,
+ "grad_norm": 0.05870524421334267,
+ "learning_rate": 0.0006,
+ "loss": 2.8372795581817627,
+ "step": 2251
+ },
+ {
+ "epoch": 31.27947598253275,
+ "grad_norm": 0.05517038330435753,
+ "learning_rate": 0.0006,
+ "loss": 2.8663249015808105,
+ "step": 2252
+ },
+ {
+ "epoch": 31.29344978165939,
+ "grad_norm": 0.05413469672203064,
+ "learning_rate": 0.0006,
+ "loss": 2.88608980178833,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307423580786025,
+ "grad_norm": 0.05486409366130829,
+ "learning_rate": 0.0006,
+ "loss": 2.861100673675537,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321397379912664,
+ "grad_norm": 0.049654968082904816,
+ "learning_rate": 0.0006,
+ "loss": 2.86140775680542,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335371179039303,
+ "grad_norm": 0.041566286236047745,
+ "learning_rate": 0.0006,
+ "loss": 2.8499088287353516,
+ "step": 2256
+ },
+ {
+ "epoch": 31.349344978165938,
+ "grad_norm": 0.03958230838179588,
+ "learning_rate": 0.0006,
+ "loss": 2.8657469749450684,
+ "step": 2257
+ },
+ {
+ "epoch": 31.363318777292577,
+ "grad_norm": 0.039652854204177856,
+ "learning_rate": 0.0006,
+ "loss": 2.877363681793213,
+ "step": 2258
+ },
+ {
+ "epoch": 31.377292576419215,
+ "grad_norm": 0.03760487213730812,
+ "learning_rate": 0.0006,
+ "loss": 2.8804736137390137,
+ "step": 2259
+ },
+ {
+ "epoch": 31.39126637554585,
+ "grad_norm": 0.0382104329764843,
+ "learning_rate": 0.0006,
+ "loss": 2.868318796157837,
+ "step": 2260
+ },
+ {
+ "epoch": 31.40524017467249,
+ "grad_norm": 0.03440074995160103,
+ "learning_rate": 0.0006,
+ "loss": 2.8732798099517822,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419213973799128,
+ "grad_norm": 0.033076152205467224,
+ "learning_rate": 0.0006,
+ "loss": 2.906764030456543,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433187772925763,
+ "grad_norm": 0.032357051968574524,
+ "learning_rate": 0.0006,
+ "loss": 2.9036777019500732,
+ "step": 2263
+ },
+ {
+ "epoch": 31.4471615720524,
+ "grad_norm": 0.03397732973098755,
+ "learning_rate": 0.0006,
+ "loss": 2.877735137939453,
+ "step": 2264
+ },
+ {
+ "epoch": 31.46113537117904,
+ "grad_norm": 0.03163991868495941,
+ "learning_rate": 0.0006,
+ "loss": 2.8931736946105957,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475109170305675,
+ "grad_norm": 0.0300164595246315,
+ "learning_rate": 0.0006,
+ "loss": 2.874295234680176,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489082969432314,
+ "grad_norm": 0.030882105231285095,
+ "learning_rate": 0.0006,
+ "loss": 2.8706257343292236,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503056768558952,
+ "grad_norm": 0.03332842141389847,
+ "learning_rate": 0.0006,
+ "loss": 2.884972095489502,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51703056768559,
+ "grad_norm": 0.03143863379955292,
+ "learning_rate": 0.0006,
+ "loss": 2.8599395751953125,
+ "step": 2269
+ },
+ {
+ "epoch": 31.531004366812226,
+ "grad_norm": 0.029551811516284943,
+ "learning_rate": 0.0006,
+ "loss": 2.8945577144622803,
+ "step": 2270
+ },
+ {
+ "epoch": 31.544978165938865,
+ "grad_norm": 0.030553745105862617,
+ "learning_rate": 0.0006,
+ "loss": 2.8668577671051025,
+ "step": 2271
+ },
+ {
+ "epoch": 31.558951965065503,
+ "grad_norm": 0.030133841559290886,
+ "learning_rate": 0.0006,
+ "loss": 2.8667306900024414,
+ "step": 2272
+ },
+ {
+ "epoch": 31.57292576419214,
+ "grad_norm": 0.0286093782633543,
+ "learning_rate": 0.0006,
+ "loss": 2.8893041610717773,
+ "step": 2273
+ },
+ {
+ "epoch": 31.586899563318777,
+ "grad_norm": 0.028428595513105392,
+ "learning_rate": 0.0006,
+ "loss": 2.9043941497802734,
+ "step": 2274
+ },
+ {
+ "epoch": 31.600873362445416,
+ "grad_norm": 0.028137098997831345,
+ "learning_rate": 0.0006,
+ "loss": 2.8917198181152344,
+ "step": 2275
+ },
+ {
+ "epoch": 31.61484716157205,
+ "grad_norm": 0.02749542146921158,
+ "learning_rate": 0.0006,
+ "loss": 2.8751792907714844,
+ "step": 2276
+ },
+ {
+ "epoch": 31.62882096069869,
+ "grad_norm": 0.027882523834705353,
+ "learning_rate": 0.0006,
+ "loss": 2.875168800354004,
+ "step": 2277
+ },
+ {
+ "epoch": 31.64279475982533,
+ "grad_norm": 0.02791895531117916,
+ "learning_rate": 0.0006,
+ "loss": 2.9148941040039062,
+ "step": 2278
+ },
+ {
+ "epoch": 31.656768558951963,
+ "grad_norm": 0.027536451816558838,
+ "learning_rate": 0.0006,
+ "loss": 2.9327642917633057,
+ "step": 2279
+ },
+ {
+ "epoch": 31.670742358078602,
+ "grad_norm": 0.027606090530753136,
+ "learning_rate": 0.0006,
+ "loss": 2.8927245140075684,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68471615720524,
+ "grad_norm": 0.027958661317825317,
+ "learning_rate": 0.0006,
+ "loss": 2.90574312210083,
+ "step": 2281
+ },
+ {
+ "epoch": 31.69868995633188,
+ "grad_norm": 0.027077173814177513,
+ "learning_rate": 0.0006,
+ "loss": 2.937171459197998,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712663755458514,
+ "grad_norm": 0.027880772948265076,
+ "learning_rate": 0.0006,
+ "loss": 2.9102025032043457,
+ "step": 2283
+ },
+ {
+ "epoch": 31.726637554585153,
+ "grad_norm": 0.028209930285811424,
+ "learning_rate": 0.0006,
+ "loss": 2.9417295455932617,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74061135371179,
+ "grad_norm": 0.02771490439772606,
+ "learning_rate": 0.0006,
+ "loss": 2.923916816711426,
+ "step": 2285
+ },
+ {
+ "epoch": 31.754585152838427,
+ "grad_norm": 0.02741638571023941,
+ "learning_rate": 0.0006,
+ "loss": 2.8878226280212402,
+ "step": 2286
+ },
+ {
+ "epoch": 31.768558951965066,
+ "grad_norm": 0.02630724012851715,
+ "learning_rate": 0.0006,
+ "loss": 2.9191370010375977,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782532751091704,
+ "grad_norm": 0.025788497179746628,
+ "learning_rate": 0.0006,
+ "loss": 2.9376463890075684,
+ "step": 2288
+ },
+ {
+ "epoch": 31.79650655021834,
+ "grad_norm": 0.027125656604766846,
+ "learning_rate": 0.0006,
+ "loss": 2.9007105827331543,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810480349344978,
+ "grad_norm": 0.02757101133465767,
+ "learning_rate": 0.0006,
+ "loss": 2.887821912765503,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824454148471617,
+ "grad_norm": 0.027768995612859726,
+ "learning_rate": 0.0006,
+ "loss": 2.906799793243408,
+ "step": 2291
+ },
+ {
+ "epoch": 31.83842794759825,
+ "grad_norm": 0.027256596833467484,
+ "learning_rate": 0.0006,
+ "loss": 2.931828498840332,
+ "step": 2292
+ },
+ {
+ "epoch": 31.85240174672489,
+ "grad_norm": 0.025560658425092697,
+ "learning_rate": 0.0006,
+ "loss": 2.9481167793273926,
+ "step": 2293
+ },
+ {
+ "epoch": 31.86637554585153,
+ "grad_norm": 0.026807734742760658,
+ "learning_rate": 0.0006,
+ "loss": 2.9222939014434814,
+ "step": 2294
+ },
+ {
+ "epoch": 31.880349344978168,
+ "grad_norm": 0.02557470090687275,
+ "learning_rate": 0.0006,
+ "loss": 2.9439048767089844,
+ "step": 2295
+ },
+ {
+ "epoch": 31.894323144104803,
+ "grad_norm": 0.026537157595157623,
+ "learning_rate": 0.0006,
+ "loss": 2.9390292167663574,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90829694323144,
+ "grad_norm": 0.027184665203094482,
+ "learning_rate": 0.0006,
+ "loss": 2.954176902770996,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92227074235808,
+ "grad_norm": 0.028301499783992767,
+ "learning_rate": 0.0006,
+ "loss": 2.918628692626953,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936244541484715,
+ "grad_norm": 0.028094016015529633,
+ "learning_rate": 0.0006,
+ "loss": 2.964953899383545,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950218340611354,
+ "grad_norm": 0.028538303449749947,
+ "learning_rate": 0.0006,
+ "loss": 2.968601703643799,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964192139737992,
+ "grad_norm": 0.026872891932725906,
+ "learning_rate": 0.0006,
+ "loss": 2.967205047607422,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978165938864628,
+ "grad_norm": 0.02604864165186882,
+ "learning_rate": 0.0006,
+ "loss": 2.964766263961792,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992139737991266,
+ "grad_norm": 0.02906455658376217,
+ "learning_rate": 0.0006,
+ "loss": 2.9137468338012695,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.03300034999847412,
+ "learning_rate": 0.0006,
+ "loss": 2.927333354949951,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 4.2580718994140625,
+ "eval_runtime": 50.1093,
+ "eval_samples_per_second": 48.733,
+ "eval_steps_per_second": 1.537,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397379912664,
+ "grad_norm": 0.032037410885095596,
+ "learning_rate": 0.0006,
+ "loss": 2.742370128631592,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02794759825328,
+ "grad_norm": 0.04566849023103714,
+ "learning_rate": 0.0006,
+ "loss": 2.7334156036376953,
+ "step": 2306
+ },
+ {
+ "epoch": 32.041921397379916,
+ "grad_norm": 0.051055751740932465,
+ "learning_rate": 0.0006,
+ "loss": 2.711585283279419,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05589519650655,
+ "grad_norm": 0.051270145922899246,
+ "learning_rate": 0.0006,
+ "loss": 2.7437586784362793,
+ "step": 2308
+ },
+ {
+ "epoch": 32.069868995633186,
+ "grad_norm": 0.05252866446971893,
+ "learning_rate": 0.0006,
+ "loss": 2.7164244651794434,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083842794759825,
+ "grad_norm": 0.06172860786318779,
+ "learning_rate": 0.0006,
+ "loss": 2.7258028984069824,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09781659388646,
+ "grad_norm": 0.07105273753404617,
+ "learning_rate": 0.0006,
+ "loss": 2.784562587738037,
+ "step": 2311
+ },
+ {
+ "epoch": 32.1117903930131,
+ "grad_norm": 0.0731290802359581,
+ "learning_rate": 0.0006,
+ "loss": 2.7349305152893066,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12576419213974,
+ "grad_norm": 0.06616552174091339,
+ "learning_rate": 0.0006,
+ "loss": 2.7377257347106934,
+ "step": 2313
+ },
+ {
+ "epoch": 32.13973799126637,
+ "grad_norm": 0.060200285166502,
+ "learning_rate": 0.0006,
+ "loss": 2.7815725803375244,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15371179039301,
+ "grad_norm": 0.06167658045887947,
+ "learning_rate": 0.0006,
+ "loss": 2.7790369987487793,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16768558951965,
+ "grad_norm": 0.056791823357343674,
+ "learning_rate": 0.0006,
+ "loss": 2.7982912063598633,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18165938864629,
+ "grad_norm": 0.051635418087244034,
+ "learning_rate": 0.0006,
+ "loss": 2.795342445373535,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19563318777293,
+ "grad_norm": 0.04736269265413284,
+ "learning_rate": 0.0006,
+ "loss": 2.7246901988983154,
+ "step": 2318
+ },
+ {
+ "epoch": 32.209606986899566,
+ "grad_norm": 0.05233636125922203,
+ "learning_rate": 0.0006,
+ "loss": 2.7580928802490234,
+ "step": 2319
+ },
+ {
+ "epoch": 32.223580786026204,
+ "grad_norm": 0.05724285542964935,
+ "learning_rate": 0.0006,
+ "loss": 2.7991695404052734,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237554585152836,
+ "grad_norm": 0.06089061126112938,
+ "learning_rate": 0.0006,
+ "loss": 2.818295478820801,
+ "step": 2321
+ },
+ {
+ "epoch": 32.251528384279474,
+ "grad_norm": 0.06421101838350296,
+ "learning_rate": 0.0006,
+ "loss": 2.8264989852905273,
+ "step": 2322
+ },
+ {
+ "epoch": 32.26550218340611,
+ "grad_norm": 0.06509649753570557,
+ "learning_rate": 0.0006,
+ "loss": 2.847254753112793,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27947598253275,
+ "grad_norm": 0.06762181967496872,
+ "learning_rate": 0.0006,
+ "loss": 2.7911386489868164,
+ "step": 2324
+ },
+ {
+ "epoch": 32.29344978165939,
+ "grad_norm": 0.06925082206726074,
+ "learning_rate": 0.0006,
+ "loss": 2.7912075519561768,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30742358078603,
+ "grad_norm": 0.060691531747579575,
+ "learning_rate": 0.0006,
+ "loss": 2.8301353454589844,
+ "step": 2326
+ },
+ {
+ "epoch": 32.32139737991266,
+ "grad_norm": 0.05697881057858467,
+ "learning_rate": 0.0006,
+ "loss": 2.7735865116119385,
+ "step": 2327
+ },
+ {
+ "epoch": 32.3353711790393,
+ "grad_norm": 0.04882541298866272,
+ "learning_rate": 0.0006,
+ "loss": 2.8305134773254395,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34934497816594,
+ "grad_norm": 0.05006708949804306,
+ "learning_rate": 0.0006,
+ "loss": 2.8248348236083984,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36331877729258,
+ "grad_norm": 0.05743676424026489,
+ "learning_rate": 0.0006,
+ "loss": 2.821669340133667,
+ "step": 2330
+ },
+ {
+ "epoch": 32.377292576419215,
+ "grad_norm": 0.05322850123047829,
+ "learning_rate": 0.0006,
+ "loss": 2.863438606262207,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391266375545854,
+ "grad_norm": 0.04769251123070717,
+ "learning_rate": 0.0006,
+ "loss": 2.8355751037597656,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40524017467249,
+ "grad_norm": 0.047659195959568024,
+ "learning_rate": 0.0006,
+ "loss": 2.8436594009399414,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419213973799124,
+ "grad_norm": 0.04434720054268837,
+ "learning_rate": 0.0006,
+ "loss": 2.8192641735076904,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43318777292576,
+ "grad_norm": 0.04431871324777603,
+ "learning_rate": 0.0006,
+ "loss": 2.8672127723693848,
+ "step": 2335
+ },
+ {
+ "epoch": 32.4471615720524,
+ "grad_norm": 0.04206263646483421,
+ "learning_rate": 0.0006,
+ "loss": 2.858680486679077,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46113537117904,
+ "grad_norm": 0.03994728997349739,
+ "learning_rate": 0.0006,
+ "loss": 2.88413405418396,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47510917030568,
+ "grad_norm": 0.040253281593322754,
+ "learning_rate": 0.0006,
+ "loss": 2.8301520347595215,
+ "step": 2338
+ },
+ {
+ "epoch": 32.48908296943232,
+ "grad_norm": 0.038392145186662674,
+ "learning_rate": 0.0006,
+ "loss": 2.821742534637451,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50305676855895,
+ "grad_norm": 0.03597316890954971,
+ "learning_rate": 0.0006,
+ "loss": 2.899796485900879,
+ "step": 2340
+ },
+ {
+ "epoch": 32.51703056768559,
+ "grad_norm": 0.035971421748399734,
+ "learning_rate": 0.0006,
+ "loss": 2.8710737228393555,
+ "step": 2341
+ },
+ {
+ "epoch": 32.531004366812226,
+ "grad_norm": 0.035625241696834564,
+ "learning_rate": 0.0006,
+ "loss": 2.8744492530822754,
+ "step": 2342
+ },
+ {
+ "epoch": 32.544978165938865,
+ "grad_norm": 0.03281800076365471,
+ "learning_rate": 0.0006,
+ "loss": 2.8716745376586914,
+ "step": 2343
+ },
+ {
+ "epoch": 32.5589519650655,
+ "grad_norm": 0.031027544289827347,
+ "learning_rate": 0.0006,
+ "loss": 2.8424720764160156,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57292576419214,
+ "grad_norm": 0.03187177702784538,
+ "learning_rate": 0.0006,
+ "loss": 2.8346052169799805,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58689956331878,
+ "grad_norm": 0.03155096247792244,
+ "learning_rate": 0.0006,
+ "loss": 2.8507466316223145,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60087336244541,
+ "grad_norm": 0.03118431754410267,
+ "learning_rate": 0.0006,
+ "loss": 2.902325391769409,
+ "step": 2347
+ },
+ {
+ "epoch": 32.61484716157205,
+ "grad_norm": 0.032406579703092575,
+ "learning_rate": 0.0006,
+ "loss": 2.8646554946899414,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62882096069869,
+ "grad_norm": 0.03170140087604523,
+ "learning_rate": 0.0006,
+ "loss": 2.8921170234680176,
+ "step": 2349
+ },
+ {
+ "epoch": 32.64279475982533,
+ "grad_norm": 0.03082709200680256,
+ "learning_rate": 0.0006,
+ "loss": 2.8608059883117676,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65676855895197,
+ "grad_norm": 0.028605740517377853,
+ "learning_rate": 0.0006,
+ "loss": 2.8731441497802734,
+ "step": 2351
+ },
+ {
+ "epoch": 32.670742358078606,
+ "grad_norm": 0.028392326086759567,
+ "learning_rate": 0.0006,
+ "loss": 2.8904993534088135,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68471615720524,
+ "grad_norm": 0.029447391629219055,
+ "learning_rate": 0.0006,
+ "loss": 2.877455472946167,
+ "step": 2353
+ },
+ {
+ "epoch": 32.698689956331876,
+ "grad_norm": 0.031085917726159096,
+ "learning_rate": 0.0006,
+ "loss": 2.8698372840881348,
+ "step": 2354
+ },
+ {
+ "epoch": 32.712663755458514,
+ "grad_norm": 0.029842285439372063,
+ "learning_rate": 0.0006,
+ "loss": 2.8689470291137695,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72663755458515,
+ "grad_norm": 0.03001115471124649,
+ "learning_rate": 0.0006,
+ "loss": 2.9131507873535156,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74061135371179,
+ "grad_norm": 0.028849447146058083,
+ "learning_rate": 0.0006,
+ "loss": 2.8918845653533936,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75458515283843,
+ "grad_norm": 0.02883053943514824,
+ "learning_rate": 0.0006,
+ "loss": 2.896641731262207,
+ "step": 2358
+ },
+ {
+ "epoch": 32.76855895196506,
+ "grad_norm": 0.029307082295417786,
+ "learning_rate": 0.0006,
+ "loss": 2.9132862091064453,
+ "step": 2359
+ },
+ {
+ "epoch": 32.7825327510917,
+ "grad_norm": 0.027899738401174545,
+ "learning_rate": 0.0006,
+ "loss": 2.9068503379821777,
+ "step": 2360
+ },
+ {
+ "epoch": 32.79650655021834,
+ "grad_norm": 0.026993675157427788,
+ "learning_rate": 0.0006,
+ "loss": 2.884234666824341,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81048034934498,
+ "grad_norm": 0.029380464926362038,
+ "learning_rate": 0.0006,
+ "loss": 2.935711622238159,
+ "step": 2362
+ },
+ {
+ "epoch": 32.82445414847162,
+ "grad_norm": 0.029252734035253525,
+ "learning_rate": 0.0006,
+ "loss": 2.9058709144592285,
+ "step": 2363
+ },
+ {
+ "epoch": 32.838427947598255,
+ "grad_norm": 0.028128111734986305,
+ "learning_rate": 0.0006,
+ "loss": 2.8898634910583496,
+ "step": 2364
+ },
+ {
+ "epoch": 32.852401746724894,
+ "grad_norm": 0.027143409475684166,
+ "learning_rate": 0.0006,
+ "loss": 2.910818576812744,
+ "step": 2365
+ },
+ {
+ "epoch": 32.866375545851525,
+ "grad_norm": 0.027796905487775803,
+ "learning_rate": 0.0006,
+ "loss": 2.902510166168213,
+ "step": 2366
+ },
+ {
+ "epoch": 32.880349344978164,
+ "grad_norm": 0.028360942378640175,
+ "learning_rate": 0.0006,
+ "loss": 2.9564762115478516,
+ "step": 2367
+ },
+ {
+ "epoch": 32.8943231441048,
+ "grad_norm": 0.028355851769447327,
+ "learning_rate": 0.0006,
+ "loss": 2.9333415031433105,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90829694323144,
+ "grad_norm": 0.028441734611988068,
+ "learning_rate": 0.0006,
+ "loss": 2.892359495162964,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92227074235808,
+ "grad_norm": 0.027564451098442078,
+ "learning_rate": 0.0006,
+ "loss": 2.946666717529297,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93624454148472,
+ "grad_norm": 0.02841477282345295,
+ "learning_rate": 0.0006,
+ "loss": 2.9348950386047363,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95021834061135,
+ "grad_norm": 0.029114512726664543,
+ "learning_rate": 0.0006,
+ "loss": 2.9399232864379883,
+ "step": 2372
+ },
+ {
+ "epoch": 32.96419213973799,
+ "grad_norm": 0.027796028181910515,
+ "learning_rate": 0.0006,
+ "loss": 2.9034712314605713,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97816593886463,
+ "grad_norm": 0.027424966916441917,
+ "learning_rate": 0.0006,
+ "loss": 2.9037415981292725,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992139737991266,
+ "grad_norm": 0.026966635137796402,
+ "learning_rate": 0.0006,
+ "loss": 2.9162826538085938,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.031656671315431595,
+ "learning_rate": 0.0006,
+ "loss": 2.923030376434326,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 4.279788970947266,
+ "eval_runtime": 49.948,
+ "eval_samples_per_second": 48.891,
+ "eval_steps_per_second": 1.542,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397379912664,
+ "grad_norm": 0.033716026693582535,
+ "learning_rate": 0.0006,
+ "loss": 2.6915321350097656,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02794759825328,
+ "grad_norm": 0.04677571356296539,
+ "learning_rate": 0.0006,
+ "loss": 2.6532812118530273,
+ "step": 2378
+ },
+ {
+ "epoch": 33.041921397379916,
+ "grad_norm": 0.05152101069688797,
+ "learning_rate": 0.0006,
+ "loss": 2.6847143173217773,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05589519650655,
+ "grad_norm": 0.05217320844531059,
+ "learning_rate": 0.0006,
+ "loss": 2.6862430572509766,
+ "step": 2380
+ },
+ {
+ "epoch": 33.069868995633186,
+ "grad_norm": 0.050403568893671036,
+ "learning_rate": 0.0006,
+ "loss": 2.719501495361328,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083842794759825,
+ "grad_norm": 0.05084824562072754,
+ "learning_rate": 0.0006,
+ "loss": 2.692394971847534,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09781659388646,
+ "grad_norm": 0.05117104575037956,
+ "learning_rate": 0.0006,
+ "loss": 2.744056224822998,
+ "step": 2383
+ },
+ {
+ "epoch": 33.1117903930131,
+ "grad_norm": 0.04953674226999283,
+ "learning_rate": 0.0006,
+ "loss": 2.7042603492736816,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12576419213974,
+ "grad_norm": 0.04990607127547264,
+ "learning_rate": 0.0006,
+ "loss": 2.710092544555664,
+ "step": 2385
+ },
+ {
+ "epoch": 33.13973799126637,
+ "grad_norm": 0.05052730068564415,
+ "learning_rate": 0.0006,
+ "loss": 2.730630397796631,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15371179039301,
+ "grad_norm": 0.05005491152405739,
+ "learning_rate": 0.0006,
+ "loss": 2.730384349822998,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16768558951965,
+ "grad_norm": 0.04792829975485802,
+ "learning_rate": 0.0006,
+ "loss": 2.7367067337036133,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18165938864629,
+ "grad_norm": 0.050187911838293076,
+ "learning_rate": 0.0006,
+ "loss": 2.7383334636688232,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19563318777293,
+ "grad_norm": 0.05145636200904846,
+ "learning_rate": 0.0006,
+ "loss": 2.7097063064575195,
+ "step": 2390
+ },
+ {
+ "epoch": 33.209606986899566,
+ "grad_norm": 0.050812143832445145,
+ "learning_rate": 0.0006,
+ "loss": 2.734105348587036,
+ "step": 2391
+ },
+ {
+ "epoch": 33.223580786026204,
+ "grad_norm": 0.05062062293291092,
+ "learning_rate": 0.0006,
+ "loss": 2.783468246459961,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237554585152836,
+ "grad_norm": 0.05209152400493622,
+ "learning_rate": 0.0006,
+ "loss": 2.7660093307495117,
+ "step": 2393
+ },
+ {
+ "epoch": 33.251528384279474,
+ "grad_norm": 0.049624551087617874,
+ "learning_rate": 0.0006,
+ "loss": 2.7733097076416016,
+ "step": 2394
+ },
+ {
+ "epoch": 33.26550218340611,
+ "grad_norm": 0.05187871679663658,
+ "learning_rate": 0.0006,
+ "loss": 2.7738423347473145,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27947598253275,
+ "grad_norm": 0.05329177528619766,
+ "learning_rate": 0.0006,
+ "loss": 2.756072998046875,
+ "step": 2396
+ },
+ {
+ "epoch": 33.29344978165939,
+ "grad_norm": 0.05190843343734741,
+ "learning_rate": 0.0006,
+ "loss": 2.7866833209991455,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30742358078603,
+ "grad_norm": 0.04941689595580101,
+ "learning_rate": 0.0006,
+ "loss": 2.7642035484313965,
+ "step": 2398
+ },
+ {
+ "epoch": 33.32139737991266,
+ "grad_norm": 0.04649437963962555,
+ "learning_rate": 0.0006,
+ "loss": 2.78639817237854,
+ "step": 2399
+ },
+ {
+ "epoch": 33.3353711790393,
+ "grad_norm": 0.044044461101293564,
+ "learning_rate": 0.0006,
+ "loss": 2.7860288619995117,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34934497816594,
+ "grad_norm": 0.04321051016449928,
+ "learning_rate": 0.0006,
+ "loss": 2.7772903442382812,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36331877729258,
+ "grad_norm": 0.045066945254802704,
+ "learning_rate": 0.0006,
+ "loss": 2.780142068862915,
+ "step": 2402
+ },
+ {
+ "epoch": 33.377292576419215,
+ "grad_norm": 0.05035722628235817,
+ "learning_rate": 0.0006,
+ "loss": 2.844978094100952,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391266375545854,
+ "grad_norm": 0.047962989658117294,
+ "learning_rate": 0.0006,
+ "loss": 2.790775775909424,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40524017467249,
+ "grad_norm": 0.04262860491871834,
+ "learning_rate": 0.0006,
+ "loss": 2.791409730911255,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419213973799124,
+ "grad_norm": 0.04162844642996788,
+ "learning_rate": 0.0006,
+ "loss": 2.787597179412842,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43318777292576,
+ "grad_norm": 0.04054319113492966,
+ "learning_rate": 0.0006,
+ "loss": 2.8160147666931152,
+ "step": 2407
+ },
+ {
+ "epoch": 33.4471615720524,
+ "grad_norm": 0.039851218461990356,
+ "learning_rate": 0.0006,
+ "loss": 2.8315625190734863,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46113537117904,
+ "grad_norm": 0.037504494190216064,
+ "learning_rate": 0.0006,
+ "loss": 2.8182449340820312,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47510917030568,
+ "grad_norm": 0.034121323376894,
+ "learning_rate": 0.0006,
+ "loss": 2.795137882232666,
+ "step": 2410
+ },
+ {
+ "epoch": 33.48908296943232,
+ "grad_norm": 0.03626429662108421,
+ "learning_rate": 0.0006,
+ "loss": 2.8132519721984863,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50305676855895,
+ "grad_norm": 0.03472466766834259,
+ "learning_rate": 0.0006,
+ "loss": 2.8613948822021484,
+ "step": 2412
+ },
+ {
+ "epoch": 33.51703056768559,
+ "grad_norm": 0.033197011798620224,
+ "learning_rate": 0.0006,
+ "loss": 2.8210697174072266,
+ "step": 2413
+ },
+ {
+ "epoch": 33.531004366812226,
+ "grad_norm": 0.03290683776140213,
+ "learning_rate": 0.0006,
+ "loss": 2.8431336879730225,
+ "step": 2414
+ },
+ {
+ "epoch": 33.544978165938865,
+ "grad_norm": 0.03219873458147049,
+ "learning_rate": 0.0006,
+ "loss": 2.784018039703369,
+ "step": 2415
+ },
+ {
+ "epoch": 33.5589519650655,
+ "grad_norm": 0.03163836523890495,
+ "learning_rate": 0.0006,
+ "loss": 2.8298420906066895,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57292576419214,
+ "grad_norm": 0.030518434941768646,
+ "learning_rate": 0.0006,
+ "loss": 2.821584701538086,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58689956331878,
+ "grad_norm": 0.029640426859259605,
+ "learning_rate": 0.0006,
+ "loss": 2.8617959022521973,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60087336244541,
+ "grad_norm": 0.03000856749713421,
+ "learning_rate": 0.0006,
+ "loss": 2.837906837463379,
+ "step": 2419
+ },
+ {
+ "epoch": 33.61484716157205,
+ "grad_norm": 0.029703237116336823,
+ "learning_rate": 0.0006,
+ "loss": 2.867283344268799,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62882096069869,
+ "grad_norm": 0.029219454154372215,
+ "learning_rate": 0.0006,
+ "loss": 2.8318774700164795,
+ "step": 2421
+ },
+ {
+ "epoch": 33.64279475982533,
+ "grad_norm": 0.029444001615047455,
+ "learning_rate": 0.0006,
+ "loss": 2.8493499755859375,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65676855895197,
+ "grad_norm": 0.030653655529022217,
+ "learning_rate": 0.0006,
+ "loss": 2.8528506755828857,
+ "step": 2423
+ },
+ {
+ "epoch": 33.670742358078606,
+ "grad_norm": 0.031539395451545715,
+ "learning_rate": 0.0006,
+ "loss": 2.8657748699188232,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68471615720524,
+ "grad_norm": 0.030429808422923088,
+ "learning_rate": 0.0006,
+ "loss": 2.8664650917053223,
+ "step": 2425
+ },
+ {
+ "epoch": 33.698689956331876,
+ "grad_norm": 0.029895296320319176,
+ "learning_rate": 0.0006,
+ "loss": 2.809852123260498,
+ "step": 2426
+ },
+ {
+ "epoch": 33.712663755458514,
+ "grad_norm": 0.03146650269627571,
+ "learning_rate": 0.0006,
+ "loss": 2.862276554107666,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72663755458515,
+ "grad_norm": 0.03134695440530777,
+ "learning_rate": 0.0006,
+ "loss": 2.8528666496276855,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74061135371179,
+ "grad_norm": 0.02905678190290928,
+ "learning_rate": 0.0006,
+ "loss": 2.882528781890869,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75458515283843,
+ "grad_norm": 0.027311185374855995,
+ "learning_rate": 0.0006,
+ "loss": 2.831305980682373,
+ "step": 2430
+ },
+ {
+ "epoch": 33.76855895196506,
+ "grad_norm": 0.029073255136609077,
+ "learning_rate": 0.0006,
+ "loss": 2.853543281555176,
+ "step": 2431
+ },
+ {
+ "epoch": 33.7825327510917,
+ "grad_norm": 0.029640158638358116,
+ "learning_rate": 0.0006,
+ "loss": 2.87980318069458,
+ "step": 2432
+ },
+ {
+ "epoch": 33.79650655021834,
+ "grad_norm": 0.02919093891978264,
+ "learning_rate": 0.0006,
+ "loss": 2.865605592727661,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81048034934498,
+ "grad_norm": 0.0279269777238369,
+ "learning_rate": 0.0006,
+ "loss": 2.8410637378692627,
+ "step": 2434
+ },
+ {
+ "epoch": 33.82445414847162,
+ "grad_norm": 0.028659343719482422,
+ "learning_rate": 0.0006,
+ "loss": 2.905547618865967,
+ "step": 2435
+ },
+ {
+ "epoch": 33.838427947598255,
+ "grad_norm": 0.029965637251734734,
+ "learning_rate": 0.0006,
+ "loss": 2.8864023685455322,
+ "step": 2436
+ },
+ {
+ "epoch": 33.852401746724894,
+ "grad_norm": 0.0290619358420372,
+ "learning_rate": 0.0006,
+ "loss": 2.8675897121429443,
+ "step": 2437
+ },
+ {
+ "epoch": 33.866375545851525,
+ "grad_norm": 0.02953960932791233,
+ "learning_rate": 0.0006,
+ "loss": 2.867520332336426,
+ "step": 2438
+ },
+ {
+ "epoch": 33.880349344978164,
+ "grad_norm": 0.027759216725826263,
+ "learning_rate": 0.0006,
+ "loss": 2.8683114051818848,
+ "step": 2439
+ },
+ {
+ "epoch": 33.8943231441048,
+ "grad_norm": 0.029629496857523918,
+ "learning_rate": 0.0006,
+ "loss": 2.8873648643493652,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90829694323144,
+ "grad_norm": 0.030611209571361542,
+ "learning_rate": 0.0006,
+ "loss": 2.8631839752197266,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92227074235808,
+ "grad_norm": 0.029470890760421753,
+ "learning_rate": 0.0006,
+ "loss": 2.911470651626587,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93624454148472,
+ "grad_norm": 0.02960297465324402,
+ "learning_rate": 0.0006,
+ "loss": 2.889380931854248,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95021834061135,
+ "grad_norm": 0.029129860922694206,
+ "learning_rate": 0.0006,
+ "loss": 2.9198157787323,
+ "step": 2444
+ },
+ {
+ "epoch": 33.96419213973799,
+ "grad_norm": 0.029969653114676476,
+ "learning_rate": 0.0006,
+ "loss": 2.8918609619140625,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97816593886463,
+ "grad_norm": 0.030586522072553635,
+ "learning_rate": 0.0006,
+ "loss": 2.873225212097168,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992139737991266,
+ "grad_norm": 0.02921980805695057,
+ "learning_rate": 0.0006,
+ "loss": 2.887167453765869,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.03401815518736839,
+ "learning_rate": 0.0006,
+ "loss": 2.89204740524292,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 4.312065124511719,
+ "eval_runtime": 49.9591,
+ "eval_samples_per_second": 48.88,
+ "eval_steps_per_second": 1.541,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397379912664,
+ "grad_norm": 0.03744617849588394,
+ "learning_rate": 0.0006,
+ "loss": 2.633880138397217,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02794759825328,
+ "grad_norm": 0.054182395339012146,
+ "learning_rate": 0.0006,
+ "loss": 2.6851818561553955,
+ "step": 2450
+ },
+ {
+ "epoch": 34.041921397379916,
+ "grad_norm": 0.06439153105020523,
+ "learning_rate": 0.0006,
+ "loss": 2.679424524307251,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05589519650655,
+ "grad_norm": 0.06744980812072754,
+ "learning_rate": 0.0006,
+ "loss": 2.687166452407837,
+ "step": 2452
+ },
+ {
+ "epoch": 34.069868995633186,
+ "grad_norm": 0.0673324465751648,
+ "learning_rate": 0.0006,
+ "loss": 2.691007137298584,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083842794759825,
+ "grad_norm": 0.0708099827170372,
+ "learning_rate": 0.0006,
+ "loss": 2.6955928802490234,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09781659388646,
+ "grad_norm": 0.07955297082662582,
+ "learning_rate": 0.0006,
+ "loss": 2.6972296237945557,
+ "step": 2455
+ },
+ {
+ "epoch": 34.1117903930131,
+ "grad_norm": 0.08364879339933395,
+ "learning_rate": 0.0006,
+ "loss": 2.701580762863159,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12576419213974,
+ "grad_norm": 0.07912622392177582,
+ "learning_rate": 0.0006,
+ "loss": 2.7441725730895996,
+ "step": 2457
+ },
+ {
+ "epoch": 34.13973799126637,
+ "grad_norm": 0.0700681209564209,
+ "learning_rate": 0.0006,
+ "loss": 2.713972806930542,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15371179039301,
+ "grad_norm": 0.07052778452634811,
+ "learning_rate": 0.0006,
+ "loss": 2.7288241386413574,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16768558951965,
+ "grad_norm": 0.07464324682950974,
+ "learning_rate": 0.0006,
+ "loss": 2.750864028930664,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18165938864629,
+ "grad_norm": 0.07311835139989853,
+ "learning_rate": 0.0006,
+ "loss": 2.7264657020568848,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19563318777293,
+ "grad_norm": 0.06497597694396973,
+ "learning_rate": 0.0006,
+ "loss": 2.682237148284912,
+ "step": 2462
+ },
+ {
+ "epoch": 34.209606986899566,
+ "grad_norm": 0.05856176093220711,
+ "learning_rate": 0.0006,
+ "loss": 2.7529397010803223,
+ "step": 2463
+ },
+ {
+ "epoch": 34.223580786026204,
+ "grad_norm": 0.061765216290950775,
+ "learning_rate": 0.0006,
+ "loss": 2.7662041187286377,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237554585152836,
+ "grad_norm": 0.0642806887626648,
+ "learning_rate": 0.0006,
+ "loss": 2.7548298835754395,
+ "step": 2465
+ },
+ {
+ "epoch": 34.251528384279474,
+ "grad_norm": 0.06512990593910217,
+ "learning_rate": 0.0006,
+ "loss": 2.7554194927215576,
+ "step": 2466
+ },
+ {
+ "epoch": 34.26550218340611,
+ "grad_norm": 0.0589950829744339,
+ "learning_rate": 0.0006,
+ "loss": 2.769420623779297,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27947598253275,
+ "grad_norm": 0.05657818540930748,
+ "learning_rate": 0.0006,
+ "loss": 2.7650272846221924,
+ "step": 2468
+ },
+ {
+ "epoch": 34.29344978165939,
+ "grad_norm": 0.05322669446468353,
+ "learning_rate": 0.0006,
+ "loss": 2.77347993850708,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30742358078603,
+ "grad_norm": 0.05230143666267395,
+ "learning_rate": 0.0006,
+ "loss": 2.735914468765259,
+ "step": 2470
+ },
+ {
+ "epoch": 34.32139737991266,
+ "grad_norm": 0.05265705659985542,
+ "learning_rate": 0.0006,
+ "loss": 2.7812156677246094,
+ "step": 2471
+ },
+ {
+ "epoch": 34.3353711790393,
+ "grad_norm": 0.05546131730079651,
+ "learning_rate": 0.0006,
+ "loss": 2.7896432876586914,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34934497816594,
+ "grad_norm": 0.05458299443125725,
+ "learning_rate": 0.0006,
+ "loss": 2.819030284881592,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36331877729258,
+ "grad_norm": 0.05159497633576393,
+ "learning_rate": 0.0006,
+ "loss": 2.754566192626953,
+ "step": 2474
+ },
+ {
+ "epoch": 34.377292576419215,
+ "grad_norm": 0.050053127110004425,
+ "learning_rate": 0.0006,
+ "loss": 2.8089818954467773,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391266375545854,
+ "grad_norm": 0.04858779534697533,
+ "learning_rate": 0.0006,
+ "loss": 2.7998061180114746,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40524017467249,
+ "grad_norm": 0.044354405254125595,
+ "learning_rate": 0.0006,
+ "loss": 2.784242630004883,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419213973799124,
+ "grad_norm": 0.04001179337501526,
+ "learning_rate": 0.0006,
+ "loss": 2.783764362335205,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43318777292576,
+ "grad_norm": 0.04385716840624809,
+ "learning_rate": 0.0006,
+ "loss": 2.784696102142334,
+ "step": 2479
+ },
+ {
+ "epoch": 34.4471615720524,
+ "grad_norm": 0.043631598353385925,
+ "learning_rate": 0.0006,
+ "loss": 2.8201065063476562,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46113537117904,
+ "grad_norm": 0.04059017077088356,
+ "learning_rate": 0.0006,
+ "loss": 2.8026556968688965,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47510917030568,
+ "grad_norm": 0.036322809755802155,
+ "learning_rate": 0.0006,
+ "loss": 2.7829108238220215,
+ "step": 2482
+ },
+ {
+ "epoch": 34.48908296943232,
+ "grad_norm": 0.035887353122234344,
+ "learning_rate": 0.0006,
+ "loss": 2.7465004920959473,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50305676855895,
+ "grad_norm": 0.03708780184388161,
+ "learning_rate": 0.0006,
+ "loss": 2.8431384563446045,
+ "step": 2484
+ },
+ {
+ "epoch": 34.51703056768559,
+ "grad_norm": 0.03533044084906578,
+ "learning_rate": 0.0006,
+ "loss": 2.8101470470428467,
+ "step": 2485
+ },
+ {
+ "epoch": 34.531004366812226,
+ "grad_norm": 0.03405928611755371,
+ "learning_rate": 0.0006,
+ "loss": 2.7987847328186035,
+ "step": 2486
+ },
+ {
+ "epoch": 34.544978165938865,
+ "grad_norm": 0.03389867767691612,
+ "learning_rate": 0.0006,
+ "loss": 2.7919681072235107,
+ "step": 2487
+ },
+ {
+ "epoch": 34.5589519650655,
+ "grad_norm": 0.033871643245220184,
+ "learning_rate": 0.0006,
+ "loss": 2.7761473655700684,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57292576419214,
+ "grad_norm": 0.03257331997156143,
+ "learning_rate": 0.0006,
+ "loss": 2.812105894088745,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58689956331878,
+ "grad_norm": 0.03190063685178757,
+ "learning_rate": 0.0006,
+ "loss": 2.8423357009887695,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60087336244541,
+ "grad_norm": 0.031575895845890045,
+ "learning_rate": 0.0006,
+ "loss": 2.7943596839904785,
+ "step": 2491
+ },
+ {
+ "epoch": 34.61484716157205,
+ "grad_norm": 0.03200801834464073,
+ "learning_rate": 0.0006,
+ "loss": 2.8491477966308594,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62882096069869,
+ "grad_norm": 0.030606744810938835,
+ "learning_rate": 0.0006,
+ "loss": 2.813282012939453,
+ "step": 2493
+ },
+ {
+ "epoch": 34.64279475982533,
+ "grad_norm": 0.030069513246417046,
+ "learning_rate": 0.0006,
+ "loss": 2.8009464740753174,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65676855895197,
+ "grad_norm": 0.0297919362783432,
+ "learning_rate": 0.0006,
+ "loss": 2.8645522594451904,
+ "step": 2495
+ },
+ {
+ "epoch": 34.670742358078606,
+ "grad_norm": 0.03045765683054924,
+ "learning_rate": 0.0006,
+ "loss": 2.8353028297424316,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68471615720524,
+ "grad_norm": 0.030040500685572624,
+ "learning_rate": 0.0006,
+ "loss": 2.8319077491760254,
+ "step": 2497
+ },
+ {
+ "epoch": 34.698689956331876,
+ "grad_norm": 0.031257182359695435,
+ "learning_rate": 0.0006,
+ "loss": 2.834317207336426,
+ "step": 2498
+ },
+ {
+ "epoch": 34.712663755458514,
+ "grad_norm": 0.030055133625864983,
+ "learning_rate": 0.0006,
+ "loss": 2.8072402477264404,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72663755458515,
+ "grad_norm": 0.029170751571655273,
+ "learning_rate": 0.0006,
+ "loss": 2.8323609828948975,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74061135371179,
+ "grad_norm": 0.029433568939566612,
+ "learning_rate": 0.0006,
+ "loss": 2.8593740463256836,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75458515283843,
+ "grad_norm": 0.02942809648811817,
+ "learning_rate": 0.0006,
+ "loss": 2.820500373840332,
+ "step": 2502
+ },
+ {
+ "epoch": 34.76855895196506,
+ "grad_norm": 0.029914356768131256,
+ "learning_rate": 0.0006,
+ "loss": 2.834043502807617,
+ "step": 2503
+ },
+ {
+ "epoch": 34.7825327510917,
+ "grad_norm": 0.028835486620664597,
+ "learning_rate": 0.0006,
+ "loss": 2.831223487854004,
+ "step": 2504
+ },
+ {
+ "epoch": 34.79650655021834,
+ "grad_norm": 0.029353221878409386,
+ "learning_rate": 0.0006,
+ "loss": 2.841521739959717,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81048034934498,
+ "grad_norm": 0.028947100043296814,
+ "learning_rate": 0.0006,
+ "loss": 2.831580638885498,
+ "step": 2506
+ },
+ {
+ "epoch": 34.82445414847162,
+ "grad_norm": 0.028323130682110786,
+ "learning_rate": 0.0006,
+ "loss": 2.8628885746002197,
+ "step": 2507
+ },
+ {
+ "epoch": 34.838427947598255,
+ "grad_norm": 0.029734885320067406,
+ "learning_rate": 0.0006,
+ "loss": 2.854740619659424,
+ "step": 2508
+ },
+ {
+ "epoch": 34.852401746724894,
+ "grad_norm": 0.0290104690939188,
+ "learning_rate": 0.0006,
+ "loss": 2.85213041305542,
+ "step": 2509
+ },
+ {
+ "epoch": 34.866375545851525,
+ "grad_norm": 0.029280826449394226,
+ "learning_rate": 0.0006,
+ "loss": 2.857929229736328,
+ "step": 2510
+ },
+ {
+ "epoch": 34.880349344978164,
+ "grad_norm": 0.028648024424910545,
+ "learning_rate": 0.0006,
+ "loss": 2.830528736114502,
+ "step": 2511
+ },
+ {
+ "epoch": 34.8943231441048,
+ "grad_norm": 0.029075585305690765,
+ "learning_rate": 0.0006,
+ "loss": 2.881229877471924,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90829694323144,
+ "grad_norm": 0.028980575501918793,
+ "learning_rate": 0.0006,
+ "loss": 2.868142604827881,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92227074235808,
+ "grad_norm": 0.029943501576781273,
+ "learning_rate": 0.0006,
+ "loss": 2.8303728103637695,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93624454148472,
+ "grad_norm": 0.02938331663608551,
+ "learning_rate": 0.0006,
+ "loss": 2.8427226543426514,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95021834061135,
+ "grad_norm": 0.02868194319307804,
+ "learning_rate": 0.0006,
+ "loss": 2.849410057067871,
+ "step": 2516
+ },
+ {
+ "epoch": 34.96419213973799,
+ "grad_norm": 0.030948800966143608,
+ "learning_rate": 0.0006,
+ "loss": 2.884430170059204,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97816593886463,
+ "grad_norm": 0.030883876606822014,
+ "learning_rate": 0.0006,
+ "loss": 2.8707523345947266,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992139737991266,
+ "grad_norm": 0.03043620102107525,
+ "learning_rate": 0.0006,
+ "loss": 2.851923704147339,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.033082764595746994,
+ "learning_rate": 0.0006,
+ "loss": 2.8447909355163574,
+ "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-constantlr/checkpoint-2520/training_args.bin b/runs/baseline-constantlr/checkpoint-2520/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..902eed46d9e02245694ec118af9efec9cd359ff6
--- /dev/null
+++ b/runs/baseline-constantlr/checkpoint-2520/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f8a755363e28cfde742d3e37ba600ce14b5716157c9823f5cadd1b47464c7fc2
+size 5201
diff --git a/runs/baseline-constantlr/checkpoint-2880/chat_template.jinja b/runs/baseline-constantlr/checkpoint-2880/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-2880/config.json b/runs/baseline-constantlr/checkpoint-2880/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-2880/generation_config.json b/runs/baseline-constantlr/checkpoint-2880/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-2880/model.safetensors b/runs/baseline-constantlr/checkpoint-2880/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..d7210faa3fd6e9a39a9b8c4e5972406f13a5c5e0
--- /dev/null
+++ b/runs/baseline-constantlr/checkpoint-2880/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5552330d0edb544e2e3532811227b9cd7e7ef2528f9bae36ff99f09cd4dd5a83
+size 583356232
diff --git a/runs/baseline-constantlr/checkpoint-2880/optimizer.pt b/runs/baseline-constantlr/checkpoint-2880/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..7bc9efa9a39d77a857dd10e2852553b18be46956
--- /dev/null
+++ b/runs/baseline-constantlr/checkpoint-2880/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f8b26e428f6bc7ba3e9923331ad0e9b1136b85837e6a46e6bc4684f4965dc9c7
+size 1166825803
diff --git a/runs/baseline-constantlr/checkpoint-2880/rng_state_0.pth b/runs/baseline-constantlr/checkpoint-2880/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..b73f9a380e4e9c61520ae0674c9453be2b007f8d
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-2880/rng_state_1.pth b/runs/baseline-constantlr/checkpoint-2880/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..1c80ff79c801a37a1192dfdb25ad4404ef9b73aa
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-2880/scheduler.pt b/runs/baseline-constantlr/checkpoint-2880/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..103d922bcc25aab4597823d0beee52dc48daa241
--- /dev/null
+++ b/runs/baseline-constantlr/checkpoint-2880/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7a0085abbca8923d371bdedb6be74d240eaef837496f6c3868f4c70136f9a29e
+size 1465
diff --git a/runs/baseline-constantlr/checkpoint-2880/tokenizer.json b/runs/baseline-constantlr/checkpoint-2880/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-2880/tokenizer_config.json b/runs/baseline-constantlr/checkpoint-2880/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-2880/trainer_state.json b/runs/baseline-constantlr/checkpoint-2880/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..847d1a637e5e470f24a2ec25a673e6371fcf321b
--- /dev/null
+++ b/runs/baseline-constantlr/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.13303375244140625,
+ "learning_rate": 0.0,
+ "loss": 12.018817901611328,
+ "step": 1
+ },
+ {
+ "epoch": 0.02794759825327511,
+ "grad_norm": 0.13390742242336273,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.021883964538574,
+ "step": 2
+ },
+ {
+ "epoch": 0.04192139737991266,
+ "grad_norm": 0.13340722024440765,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.986108779907227,
+ "step": 3
+ },
+ {
+ "epoch": 0.05589519650655022,
+ "grad_norm": 0.13777263462543488,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.926837921142578,
+ "step": 4
+ },
+ {
+ "epoch": 0.06986899563318777,
+ "grad_norm": 0.14294272661209106,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.845431327819824,
+ "step": 5
+ },
+ {
+ "epoch": 0.08384279475982533,
+ "grad_norm": 0.15314988791942596,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.736921310424805,
+ "step": 6
+ },
+ {
+ "epoch": 0.09781659388646288,
+ "grad_norm": 0.14554648101329803,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.615877151489258,
+ "step": 7
+ },
+ {
+ "epoch": 0.11179039301310044,
+ "grad_norm": 0.1252845823764801,
+ "learning_rate": 4.2e-05,
+ "loss": 11.501619338989258,
+ "step": 8
+ },
+ {
+ "epoch": 0.125764192139738,
+ "grad_norm": 0.11403433233499527,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.396705627441406,
+ "step": 9
+ },
+ {
+ "epoch": 0.13973799126637554,
+ "grad_norm": 0.10996542125940323,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.31666374206543,
+ "step": 10
+ },
+ {
+ "epoch": 0.1537117903930131,
+ "grad_norm": 0.10755623877048492,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.252704620361328,
+ "step": 11
+ },
+ {
+ "epoch": 0.16768558951965065,
+ "grad_norm": 0.10700664669275284,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.194284439086914,
+ "step": 12
+ },
+ {
+ "epoch": 0.18165938864628822,
+ "grad_norm": 0.10606497526168823,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.14437198638916,
+ "step": 13
+ },
+ {
+ "epoch": 0.19563318777292577,
+ "grad_norm": 0.10551681369543076,
+ "learning_rate": 7.8e-05,
+ "loss": 11.096858024597168,
+ "step": 14
+ },
+ {
+ "epoch": 0.2096069868995633,
+ "grad_norm": 0.10573510080575943,
+ "learning_rate": 8.4e-05,
+ "loss": 11.047990798950195,
+ "step": 15
+ },
+ {
+ "epoch": 0.22358078602620088,
+ "grad_norm": 0.10572560131549835,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 11.000219345092773,
+ "step": 16
+ },
+ {
+ "epoch": 0.23755458515283842,
+ "grad_norm": 0.10625051707029343,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.93830680847168,
+ "step": 17
+ },
+ {
+ "epoch": 0.251528384279476,
+ "grad_norm": 0.10565247386693954,
+ "learning_rate": 0.000102,
+ "loss": 10.88237190246582,
+ "step": 18
+ },
+ {
+ "epoch": 0.26550218340611353,
+ "grad_norm": 0.10570791363716125,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.81382942199707,
+ "step": 19
+ },
+ {
+ "epoch": 0.2794759825327511,
+ "grad_norm": 0.10585319995880127,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.742864608764648,
+ "step": 20
+ },
+ {
+ "epoch": 0.2934497816593886,
+ "grad_norm": 0.10421311110258102,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.675719261169434,
+ "step": 21
+ },
+ {
+ "epoch": 0.3074235807860262,
+ "grad_norm": 0.10436785966157913,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.589548110961914,
+ "step": 22
+ },
+ {
+ "epoch": 0.32139737991266376,
+ "grad_norm": 0.10463878512382507,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.504261016845703,
+ "step": 23
+ },
+ {
+ "epoch": 0.3353711790393013,
+ "grad_norm": 0.104142926633358,
+ "learning_rate": 0.000138,
+ "loss": 10.41696548461914,
+ "step": 24
+ },
+ {
+ "epoch": 0.34934497816593885,
+ "grad_norm": 0.1037549152970314,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.327609062194824,
+ "step": 25
+ },
+ {
+ "epoch": 0.36331877729257644,
+ "grad_norm": 0.10464346408843994,
+ "learning_rate": 0.00015,
+ "loss": 10.226776123046875,
+ "step": 26
+ },
+ {
+ "epoch": 0.377292576419214,
+ "grad_norm": 0.10289040952920914,
+ "learning_rate": 0.000156,
+ "loss": 10.142925262451172,
+ "step": 27
+ },
+ {
+ "epoch": 0.39126637554585153,
+ "grad_norm": 0.10476566106081009,
+ "learning_rate": 0.000162,
+ "loss": 10.032388687133789,
+ "step": 28
+ },
+ {
+ "epoch": 0.4052401746724891,
+ "grad_norm": 0.10285190492868423,
+ "learning_rate": 0.000168,
+ "loss": 9.944738388061523,
+ "step": 29
+ },
+ {
+ "epoch": 0.4192139737991266,
+ "grad_norm": 0.10330761969089508,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.832511901855469,
+ "step": 30
+ },
+ {
+ "epoch": 0.4331877729257642,
+ "grad_norm": 0.10190961509943008,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.742905616760254,
+ "step": 31
+ },
+ {
+ "epoch": 0.44716157205240176,
+ "grad_norm": 0.10172155499458313,
+ "learning_rate": 0.000186,
+ "loss": 9.634834289550781,
+ "step": 32
+ },
+ {
+ "epoch": 0.4611353711790393,
+ "grad_norm": 0.10067209601402283,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.522916793823242,
+ "step": 33
+ },
+ {
+ "epoch": 0.47510917030567684,
+ "grad_norm": 0.10058761388063431,
+ "learning_rate": 0.000198,
+ "loss": 9.416927337646484,
+ "step": 34
+ },
+ {
+ "epoch": 0.4890829694323144,
+ "grad_norm": 0.0981091558933258,
+ "learning_rate": 0.000204,
+ "loss": 9.32928466796875,
+ "step": 35
+ },
+ {
+ "epoch": 0.503056768558952,
+ "grad_norm": 0.09739134460687637,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.215356826782227,
+ "step": 36
+ },
+ {
+ "epoch": 0.5170305676855895,
+ "grad_norm": 0.0969916582107544,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.101107597351074,
+ "step": 37
+ },
+ {
+ "epoch": 0.5310043668122271,
+ "grad_norm": 0.0959910973906517,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.998035430908203,
+ "step": 38
+ },
+ {
+ "epoch": 0.5449781659388646,
+ "grad_norm": 0.09558682143688202,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.89165210723877,
+ "step": 39
+ },
+ {
+ "epoch": 0.5589519650655022,
+ "grad_norm": 0.09313725680112839,
+ "learning_rate": 0.000234,
+ "loss": 8.806523323059082,
+ "step": 40
+ },
+ {
+ "epoch": 0.5729257641921397,
+ "grad_norm": 0.09075582772493362,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.71815299987793,
+ "step": 41
+ },
+ {
+ "epoch": 0.5868995633187772,
+ "grad_norm": 0.08912578970193863,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.617330551147461,
+ "step": 42
+ },
+ {
+ "epoch": 0.6008733624454149,
+ "grad_norm": 0.08745060116052628,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.511157989501953,
+ "step": 43
+ },
+ {
+ "epoch": 0.6148471615720524,
+ "grad_norm": 0.08254463970661163,
+ "learning_rate": 0.000258,
+ "loss": 8.458954811096191,
+ "step": 44
+ },
+ {
+ "epoch": 0.62882096069869,
+ "grad_norm": 0.0795406699180603,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.37498664855957,
+ "step": 45
+ },
+ {
+ "epoch": 0.6427947598253275,
+ "grad_norm": 0.07730695605278015,
+ "learning_rate": 0.00027,
+ "loss": 8.293156623840332,
+ "step": 46
+ },
+ {
+ "epoch": 0.6567685589519651,
+ "grad_norm": 0.07404499500989914,
+ "learning_rate": 0.000276,
+ "loss": 8.200754165649414,
+ "step": 47
+ },
+ {
+ "epoch": 0.6707423580786026,
+ "grad_norm": 0.07091354578733444,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.114692687988281,
+ "step": 48
+ },
+ {
+ "epoch": 0.6847161572052402,
+ "grad_norm": 0.06816772371530533,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.060348510742188,
+ "step": 49
+ },
+ {
+ "epoch": 0.6986899563318777,
+ "grad_norm": 0.0605427622795105,
+ "learning_rate": 0.000294,
+ "loss": 7.991006851196289,
+ "step": 50
+ },
+ {
+ "epoch": 0.7126637554585152,
+ "grad_norm": 0.05635255202651024,
+ "learning_rate": 0.0003,
+ "loss": 7.945850372314453,
+ "step": 51
+ },
+ {
+ "epoch": 0.7266375545851529,
+ "grad_norm": 0.05419522523880005,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.895726203918457,
+ "step": 52
+ },
+ {
+ "epoch": 0.7406113537117904,
+ "grad_norm": 0.06724901497364044,
+ "learning_rate": 0.000312,
+ "loss": 7.839101791381836,
+ "step": 53
+ },
+ {
+ "epoch": 0.754585152838428,
+ "grad_norm": 0.12858672440052032,
+ "learning_rate": 0.000318,
+ "loss": 7.840076446533203,
+ "step": 54
+ },
+ {
+ "epoch": 0.7685589519650655,
+ "grad_norm": 0.05087178573012352,
+ "learning_rate": 0.000324,
+ "loss": 7.77433967590332,
+ "step": 55
+ },
+ {
+ "epoch": 0.7825327510917031,
+ "grad_norm": 0.0458969883620739,
+ "learning_rate": 0.00033,
+ "loss": 7.747459411621094,
+ "step": 56
+ },
+ {
+ "epoch": 0.7965065502183406,
+ "grad_norm": 0.03214738890528679,
+ "learning_rate": 0.000336,
+ "loss": 7.735766410827637,
+ "step": 57
+ },
+ {
+ "epoch": 0.8104803493449781,
+ "grad_norm": 0.022700699046254158,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.716371059417725,
+ "step": 58
+ },
+ {
+ "epoch": 0.8244541484716157,
+ "grad_norm": 0.02415020391345024,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.700209140777588,
+ "step": 59
+ },
+ {
+ "epoch": 0.8384279475982532,
+ "grad_norm": 0.021143650636076927,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.687976360321045,
+ "step": 60
+ },
+ {
+ "epoch": 0.8524017467248908,
+ "grad_norm": 0.019051192328333855,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.640708923339844,
+ "step": 61
+ },
+ {
+ "epoch": 0.8663755458515284,
+ "grad_norm": 0.02110682614147663,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.6529130935668945,
+ "step": 62
+ },
+ {
+ "epoch": 0.880349344978166,
+ "grad_norm": 0.024010686203837395,
+ "learning_rate": 0.000372,
+ "loss": 7.645641326904297,
+ "step": 63
+ },
+ {
+ "epoch": 0.8943231441048035,
+ "grad_norm": 0.02591090090572834,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.626849174499512,
+ "step": 64
+ },
+ {
+ "epoch": 0.9082969432314411,
+ "grad_norm": 0.02841993235051632,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.633922576904297,
+ "step": 65
+ },
+ {
+ "epoch": 0.9222707423580786,
+ "grad_norm": 0.02565363608300686,
+ "learning_rate": 0.00039,
+ "loss": 7.6236772537231445,
+ "step": 66
+ },
+ {
+ "epoch": 0.9362445414847161,
+ "grad_norm": 0.020100994035601616,
+ "learning_rate": 0.000396,
+ "loss": 7.602252006530762,
+ "step": 67
+ },
+ {
+ "epoch": 0.9502183406113537,
+ "grad_norm": 0.017415935173630714,
+ "learning_rate": 0.000402,
+ "loss": 7.574195861816406,
+ "step": 68
+ },
+ {
+ "epoch": 0.9641921397379912,
+ "grad_norm": 0.01630476303398609,
+ "learning_rate": 0.000408,
+ "loss": 7.578503131866455,
+ "step": 69
+ },
+ {
+ "epoch": 0.9781659388646288,
+ "grad_norm": 0.015402277931571007,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.54685115814209,
+ "step": 70
+ },
+ {
+ "epoch": 0.9921397379912664,
+ "grad_norm": 0.01438985951244831,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.546932220458984,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.016883183270692825,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.555042266845703,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.549549579620361,
+ "eval_runtime": 54.3422,
+ "eval_samples_per_second": 44.937,
+ "eval_steps_per_second": 1.417,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139737991266375,
+ "grad_norm": 0.01215015072375536,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.534733295440674,
+ "step": 73
+ },
+ {
+ "epoch": 1.027947598253275,
+ "grad_norm": 0.01328246109187603,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.543649196624756,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419213973799126,
+ "grad_norm": 0.012859524227678776,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.50216817855835,
+ "step": 75
+ },
+ {
+ "epoch": 1.0558951965065502,
+ "grad_norm": 0.011157970875501633,
+ "learning_rate": 0.00045,
+ "loss": 7.508391857147217,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698689956331877,
+ "grad_norm": 0.012834188528358936,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.4759087562561035,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838427947598253,
+ "grad_norm": 0.013627874664962292,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.45142936706543,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978165938864628,
+ "grad_norm": 0.01641070283949375,
+ "learning_rate": 0.000468,
+ "loss": 7.492819786071777,
+ "step": 79
+ },
+ {
+ "epoch": 1.1117903930131003,
+ "grad_norm": 0.025136210024356842,
+ "learning_rate": 0.000474,
+ "loss": 7.474215507507324,
+ "step": 80
+ },
+ {
+ "epoch": 1.125764192139738,
+ "grad_norm": 0.03659580647945404,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.475737571716309,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397379912663754,
+ "grad_norm": 0.04370221868157387,
+ "learning_rate": 0.000486,
+ "loss": 7.453543663024902,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537117903930132,
+ "grad_norm": 0.02917138673365116,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.424599647521973,
+ "step": 83
+ },
+ {
+ "epoch": 1.1676855895196507,
+ "grad_norm": 0.015414979308843613,
+ "learning_rate": 0.000498,
+ "loss": 7.388550758361816,
+ "step": 84
+ },
+ {
+ "epoch": 1.1816593886462883,
+ "grad_norm": 0.029156062752008438,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.379591941833496,
+ "step": 85
+ },
+ {
+ "epoch": 1.1956331877729258,
+ "grad_norm": 0.014958011917769909,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.372748374938965,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096069868995634,
+ "grad_norm": 0.021887343376874924,
+ "learning_rate": 0.000516,
+ "loss": 7.3589630126953125,
+ "step": 87
+ },
+ {
+ "epoch": 1.223580786026201,
+ "grad_norm": 0.02962890826165676,
+ "learning_rate": 0.000522,
+ "loss": 7.373016357421875,
+ "step": 88
+ },
+ {
+ "epoch": 1.2375545851528384,
+ "grad_norm": 0.031032968312501907,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.3282928466796875,
+ "step": 89
+ },
+ {
+ "epoch": 1.251528384279476,
+ "grad_norm": 0.027690274640917778,
+ "learning_rate": 0.000534,
+ "loss": 7.320304870605469,
+ "step": 90
+ },
+ {
+ "epoch": 1.2655021834061135,
+ "grad_norm": 0.022552549839019775,
+ "learning_rate": 0.00054,
+ "loss": 7.3051300048828125,
+ "step": 91
+ },
+ {
+ "epoch": 1.279475982532751,
+ "grad_norm": 0.04130178689956665,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.284594535827637,
+ "step": 92
+ },
+ {
+ "epoch": 1.2934497816593886,
+ "grad_norm": 0.05043136328458786,
+ "learning_rate": 0.000552,
+ "loss": 7.286007881164551,
+ "step": 93
+ },
+ {
+ "epoch": 1.3074235807860262,
+ "grad_norm": 0.04574465751647949,
+ "learning_rate": 0.000558,
+ "loss": 7.22679328918457,
+ "step": 94
+ },
+ {
+ "epoch": 1.3213973799126637,
+ "grad_norm": 0.03277682512998581,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.229741096496582,
+ "step": 95
+ },
+ {
+ "epoch": 1.3353711790393012,
+ "grad_norm": 0.022675029933452606,
+ "learning_rate": 0.00057,
+ "loss": 7.241637706756592,
+ "step": 96
+ },
+ {
+ "epoch": 1.3493449781659388,
+ "grad_norm": 0.03889699652791023,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.193673133850098,
+ "step": 97
+ },
+ {
+ "epoch": 1.3633187772925766,
+ "grad_norm": 0.029434625059366226,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.1953840255737305,
+ "step": 98
+ },
+ {
+ "epoch": 1.3772925764192139,
+ "grad_norm": 0.02118326723575592,
+ "learning_rate": 0.000588,
+ "loss": 7.178635597229004,
+ "step": 99
+ },
+ {
+ "epoch": 1.3912663755458516,
+ "grad_norm": 0.02966528758406639,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.151487350463867,
+ "step": 100
+ },
+ {
+ "epoch": 1.405240174672489,
+ "grad_norm": 0.0450727716088295,
+ "learning_rate": 0.0006,
+ "loss": 7.144834995269775,
+ "step": 101
+ },
+ {
+ "epoch": 1.4192139737991267,
+ "grad_norm": 0.08898167312145233,
+ "learning_rate": 0.0006,
+ "loss": 7.180665969848633,
+ "step": 102
+ },
+ {
+ "epoch": 1.4331877729257643,
+ "grad_norm": 0.10679084807634354,
+ "learning_rate": 0.0006,
+ "loss": 7.233458518981934,
+ "step": 103
+ },
+ {
+ "epoch": 1.4471615720524018,
+ "grad_norm": 0.04746336117386818,
+ "learning_rate": 0.0006,
+ "loss": 7.167373180389404,
+ "step": 104
+ },
+ {
+ "epoch": 1.4611353711790394,
+ "grad_norm": 0.06380590051412582,
+ "learning_rate": 0.0006,
+ "loss": 7.189356803894043,
+ "step": 105
+ },
+ {
+ "epoch": 1.475109170305677,
+ "grad_norm": 0.039717014878988266,
+ "learning_rate": 0.0006,
+ "loss": 7.096653938293457,
+ "step": 106
+ },
+ {
+ "epoch": 1.4890829694323144,
+ "grad_norm": 0.06762711703777313,
+ "learning_rate": 0.0006,
+ "loss": 7.127993583679199,
+ "step": 107
+ },
+ {
+ "epoch": 1.503056768558952,
+ "grad_norm": 0.05134489759802818,
+ "learning_rate": 0.0006,
+ "loss": 7.072257995605469,
+ "step": 108
+ },
+ {
+ "epoch": 1.5170305676855895,
+ "grad_norm": 0.062314722687006,
+ "learning_rate": 0.0006,
+ "loss": 7.073700904846191,
+ "step": 109
+ },
+ {
+ "epoch": 1.531004366812227,
+ "grad_norm": 0.03607739135622978,
+ "learning_rate": 0.0006,
+ "loss": 7.051465034484863,
+ "step": 110
+ },
+ {
+ "epoch": 1.5449781659388646,
+ "grad_norm": 0.04546204209327698,
+ "learning_rate": 0.0006,
+ "loss": 7.049814224243164,
+ "step": 111
+ },
+ {
+ "epoch": 1.5589519650655022,
+ "grad_norm": 0.0319792665541172,
+ "learning_rate": 0.0006,
+ "loss": 7.0164875984191895,
+ "step": 112
+ },
+ {
+ "epoch": 1.5729257641921397,
+ "grad_norm": 0.04590746760368347,
+ "learning_rate": 0.0006,
+ "loss": 7.001565456390381,
+ "step": 113
+ },
+ {
+ "epoch": 1.5868995633187772,
+ "grad_norm": 0.031896382570266724,
+ "learning_rate": 0.0006,
+ "loss": 6.994606018066406,
+ "step": 114
+ },
+ {
+ "epoch": 1.600873362445415,
+ "grad_norm": 0.021410338580608368,
+ "learning_rate": 0.0006,
+ "loss": 6.947071075439453,
+ "step": 115
+ },
+ {
+ "epoch": 1.6148471615720523,
+ "grad_norm": 0.030063210055232048,
+ "learning_rate": 0.0006,
+ "loss": 6.979219913482666,
+ "step": 116
+ },
+ {
+ "epoch": 1.62882096069869,
+ "grad_norm": 0.02234027162194252,
+ "learning_rate": 0.0006,
+ "loss": 6.929020881652832,
+ "step": 117
+ },
+ {
+ "epoch": 1.6427947598253274,
+ "grad_norm": 0.025586063042283058,
+ "learning_rate": 0.0006,
+ "loss": 6.9200663566589355,
+ "step": 118
+ },
+ {
+ "epoch": 1.6567685589519652,
+ "grad_norm": 0.022098371759057045,
+ "learning_rate": 0.0006,
+ "loss": 6.899832248687744,
+ "step": 119
+ },
+ {
+ "epoch": 1.6707423580786025,
+ "grad_norm": 0.019238410517573357,
+ "learning_rate": 0.0006,
+ "loss": 6.8586015701293945,
+ "step": 120
+ },
+ {
+ "epoch": 1.6847161572052403,
+ "grad_norm": 0.024153294041752815,
+ "learning_rate": 0.0006,
+ "loss": 6.867973327636719,
+ "step": 121
+ },
+ {
+ "epoch": 1.6986899563318776,
+ "grad_norm": 0.01690024696290493,
+ "learning_rate": 0.0006,
+ "loss": 6.878490447998047,
+ "step": 122
+ },
+ {
+ "epoch": 1.7126637554585153,
+ "grad_norm": 0.02171619050204754,
+ "learning_rate": 0.0006,
+ "loss": 6.853621959686279,
+ "step": 123
+ },
+ {
+ "epoch": 1.726637554585153,
+ "grad_norm": 0.020535755902528763,
+ "learning_rate": 0.0006,
+ "loss": 6.852185249328613,
+ "step": 124
+ },
+ {
+ "epoch": 1.7406113537117904,
+ "grad_norm": 0.015457311645150185,
+ "learning_rate": 0.0006,
+ "loss": 6.826596260070801,
+ "step": 125
+ },
+ {
+ "epoch": 1.754585152838428,
+ "grad_norm": 0.017492085695266724,
+ "learning_rate": 0.0006,
+ "loss": 6.842765808105469,
+ "step": 126
+ },
+ {
+ "epoch": 1.7685589519650655,
+ "grad_norm": 0.014785612002015114,
+ "learning_rate": 0.0006,
+ "loss": 6.849224090576172,
+ "step": 127
+ },
+ {
+ "epoch": 1.782532751091703,
+ "grad_norm": 0.017512250691652298,
+ "learning_rate": 0.0006,
+ "loss": 6.824787139892578,
+ "step": 128
+ },
+ {
+ "epoch": 1.7965065502183406,
+ "grad_norm": 0.01895114593207836,
+ "learning_rate": 0.0006,
+ "loss": 6.801428318023682,
+ "step": 129
+ },
+ {
+ "epoch": 1.8104803493449781,
+ "grad_norm": 0.015728816390037537,
+ "learning_rate": 0.0006,
+ "loss": 6.801990985870361,
+ "step": 130
+ },
+ {
+ "epoch": 1.8244541484716157,
+ "grad_norm": 0.014321585185825825,
+ "learning_rate": 0.0006,
+ "loss": 6.793122291564941,
+ "step": 131
+ },
+ {
+ "epoch": 1.8384279475982532,
+ "grad_norm": 0.016692014411091805,
+ "learning_rate": 0.0006,
+ "loss": 6.74687385559082,
+ "step": 132
+ },
+ {
+ "epoch": 1.8524017467248908,
+ "grad_norm": 0.016697920858860016,
+ "learning_rate": 0.0006,
+ "loss": 6.75140380859375,
+ "step": 133
+ },
+ {
+ "epoch": 1.8663755458515285,
+ "grad_norm": 0.014954701997339725,
+ "learning_rate": 0.0006,
+ "loss": 6.746084213256836,
+ "step": 134
+ },
+ {
+ "epoch": 1.8803493449781659,
+ "grad_norm": 0.013010316528379917,
+ "learning_rate": 0.0006,
+ "loss": 6.725405693054199,
+ "step": 135
+ },
+ {
+ "epoch": 1.8943231441048036,
+ "grad_norm": 0.011892660520970821,
+ "learning_rate": 0.0006,
+ "loss": 6.718758583068848,
+ "step": 136
+ },
+ {
+ "epoch": 1.908296943231441,
+ "grad_norm": 0.012127497233450413,
+ "learning_rate": 0.0006,
+ "loss": 6.708139419555664,
+ "step": 137
+ },
+ {
+ "epoch": 1.9222707423580787,
+ "grad_norm": 0.015417213551700115,
+ "learning_rate": 0.0006,
+ "loss": 6.705748558044434,
+ "step": 138
+ },
+ {
+ "epoch": 1.936244541484716,
+ "grad_norm": 0.03063729591667652,
+ "learning_rate": 0.0006,
+ "loss": 6.691249847412109,
+ "step": 139
+ },
+ {
+ "epoch": 1.9502183406113538,
+ "grad_norm": 0.07376791536808014,
+ "learning_rate": 0.0006,
+ "loss": 6.71767520904541,
+ "step": 140
+ },
+ {
+ "epoch": 1.9641921397379911,
+ "grad_norm": 0.14157423377037048,
+ "learning_rate": 0.0006,
+ "loss": 6.787544250488281,
+ "step": 141
+ },
+ {
+ "epoch": 1.9781659388646289,
+ "grad_norm": 0.09186933934688568,
+ "learning_rate": 0.0006,
+ "loss": 6.73362398147583,
+ "step": 142
+ },
+ {
+ "epoch": 1.9921397379912664,
+ "grad_norm": 0.06612848490476608,
+ "learning_rate": 0.0006,
+ "loss": 6.719516754150391,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.048072297126054764,
+ "learning_rate": 0.0006,
+ "loss": 6.666120529174805,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 6.7162394523620605,
+ "eval_runtime": 50.5907,
+ "eval_samples_per_second": 48.27,
+ "eval_steps_per_second": 1.522,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139737991266378,
+ "grad_norm": 0.03777749463915825,
+ "learning_rate": 0.0006,
+ "loss": 6.686484336853027,
+ "step": 145
+ },
+ {
+ "epoch": 2.027947598253275,
+ "grad_norm": 0.04378646984696388,
+ "learning_rate": 0.0006,
+ "loss": 6.679071426391602,
+ "step": 146
+ },
+ {
+ "epoch": 2.041921397379913,
+ "grad_norm": 0.027715124189853668,
+ "learning_rate": 0.0006,
+ "loss": 6.6776323318481445,
+ "step": 147
+ },
+ {
+ "epoch": 2.05589519650655,
+ "grad_norm": 0.03411925211548805,
+ "learning_rate": 0.0006,
+ "loss": 6.643917083740234,
+ "step": 148
+ },
+ {
+ "epoch": 2.069868995633188,
+ "grad_norm": 0.034444212913513184,
+ "learning_rate": 0.0006,
+ "loss": 6.67141056060791,
+ "step": 149
+ },
+ {
+ "epoch": 2.0838427947598253,
+ "grad_norm": 0.0387650802731514,
+ "learning_rate": 0.0006,
+ "loss": 6.65234375,
+ "step": 150
+ },
+ {
+ "epoch": 2.097816593886463,
+ "grad_norm": 0.03921861574053764,
+ "learning_rate": 0.0006,
+ "loss": 6.624712944030762,
+ "step": 151
+ },
+ {
+ "epoch": 2.1117903930131003,
+ "grad_norm": 0.02531580813229084,
+ "learning_rate": 0.0006,
+ "loss": 6.617608547210693,
+ "step": 152
+ },
+ {
+ "epoch": 2.125764192139738,
+ "grad_norm": 0.03220974653959274,
+ "learning_rate": 0.0006,
+ "loss": 6.587964057922363,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397379912663754,
+ "grad_norm": 0.03923291340470314,
+ "learning_rate": 0.0006,
+ "loss": 6.588845252990723,
+ "step": 154
+ },
+ {
+ "epoch": 2.153711790393013,
+ "grad_norm": 0.028337281197309494,
+ "learning_rate": 0.0006,
+ "loss": 6.5807952880859375,
+ "step": 155
+ },
+ {
+ "epoch": 2.1676855895196505,
+ "grad_norm": 0.01873156800866127,
+ "learning_rate": 0.0006,
+ "loss": 6.560453414916992,
+ "step": 156
+ },
+ {
+ "epoch": 2.1816593886462883,
+ "grad_norm": 0.027509493753314018,
+ "learning_rate": 0.0006,
+ "loss": 6.5615363121032715,
+ "step": 157
+ },
+ {
+ "epoch": 2.1956331877729256,
+ "grad_norm": 0.025428347289562225,
+ "learning_rate": 0.0006,
+ "loss": 6.5283966064453125,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096069868995634,
+ "grad_norm": 0.02118629403412342,
+ "learning_rate": 0.0006,
+ "loss": 6.526224136352539,
+ "step": 159
+ },
+ {
+ "epoch": 2.2235807860262007,
+ "grad_norm": 0.03233652561903,
+ "learning_rate": 0.0006,
+ "loss": 6.536041259765625,
+ "step": 160
+ },
+ {
+ "epoch": 2.2375545851528384,
+ "grad_norm": 0.04605546221137047,
+ "learning_rate": 0.0006,
+ "loss": 6.537662029266357,
+ "step": 161
+ },
+ {
+ "epoch": 2.251528384279476,
+ "grad_norm": 0.05192062631249428,
+ "learning_rate": 0.0006,
+ "loss": 6.551901817321777,
+ "step": 162
+ },
+ {
+ "epoch": 2.2655021834061135,
+ "grad_norm": 0.042231615632772446,
+ "learning_rate": 0.0006,
+ "loss": 6.511076927185059,
+ "step": 163
+ },
+ {
+ "epoch": 2.279475982532751,
+ "grad_norm": 0.04085887596011162,
+ "learning_rate": 0.0006,
+ "loss": 6.503472328186035,
+ "step": 164
+ },
+ {
+ "epoch": 2.2934497816593886,
+ "grad_norm": 0.031182587146759033,
+ "learning_rate": 0.0006,
+ "loss": 6.504403591156006,
+ "step": 165
+ },
+ {
+ "epoch": 2.3074235807860264,
+ "grad_norm": 0.032555561512708664,
+ "learning_rate": 0.0006,
+ "loss": 6.4552764892578125,
+ "step": 166
+ },
+ {
+ "epoch": 2.3213973799126637,
+ "grad_norm": 0.04939635097980499,
+ "learning_rate": 0.0006,
+ "loss": 6.495351791381836,
+ "step": 167
+ },
+ {
+ "epoch": 2.3353711790393015,
+ "grad_norm": 0.037503793835639954,
+ "learning_rate": 0.0006,
+ "loss": 6.4742560386657715,
+ "step": 168
+ },
+ {
+ "epoch": 2.349344978165939,
+ "grad_norm": 0.02366613782942295,
+ "learning_rate": 0.0006,
+ "loss": 6.478525161743164,
+ "step": 169
+ },
+ {
+ "epoch": 2.3633187772925766,
+ "grad_norm": 0.022314894944429398,
+ "learning_rate": 0.0006,
+ "loss": 6.414134979248047,
+ "step": 170
+ },
+ {
+ "epoch": 2.377292576419214,
+ "grad_norm": 0.030494702979922295,
+ "learning_rate": 0.0006,
+ "loss": 6.444867134094238,
+ "step": 171
+ },
+ {
+ "epoch": 2.3912663755458516,
+ "grad_norm": 0.04064486175775528,
+ "learning_rate": 0.0006,
+ "loss": 6.417036056518555,
+ "step": 172
+ },
+ {
+ "epoch": 2.405240174672489,
+ "grad_norm": 0.03061651438474655,
+ "learning_rate": 0.0006,
+ "loss": 6.423735618591309,
+ "step": 173
+ },
+ {
+ "epoch": 2.4192139737991267,
+ "grad_norm": 0.02046056278049946,
+ "learning_rate": 0.0006,
+ "loss": 6.419736862182617,
+ "step": 174
+ },
+ {
+ "epoch": 2.433187772925764,
+ "grad_norm": 0.02530163712799549,
+ "learning_rate": 0.0006,
+ "loss": 6.399930953979492,
+ "step": 175
+ },
+ {
+ "epoch": 2.447161572052402,
+ "grad_norm": 0.03588842228055,
+ "learning_rate": 0.0006,
+ "loss": 6.418618202209473,
+ "step": 176
+ },
+ {
+ "epoch": 2.461135371179039,
+ "grad_norm": 0.04048234224319458,
+ "learning_rate": 0.0006,
+ "loss": 6.390285491943359,
+ "step": 177
+ },
+ {
+ "epoch": 2.475109170305677,
+ "grad_norm": 0.039080191403627396,
+ "learning_rate": 0.0006,
+ "loss": 6.3688530921936035,
+ "step": 178
+ },
+ {
+ "epoch": 2.489082969432314,
+ "grad_norm": 0.029000122100114822,
+ "learning_rate": 0.0006,
+ "loss": 6.369181156158447,
+ "step": 179
+ },
+ {
+ "epoch": 2.503056768558952,
+ "grad_norm": 0.01609761081635952,
+ "learning_rate": 0.0006,
+ "loss": 6.359917640686035,
+ "step": 180
+ },
+ {
+ "epoch": 2.5170305676855893,
+ "grad_norm": 0.02305005118250847,
+ "learning_rate": 0.0006,
+ "loss": 6.347358226776123,
+ "step": 181
+ },
+ {
+ "epoch": 2.531004366812227,
+ "grad_norm": 0.03316781297326088,
+ "learning_rate": 0.0006,
+ "loss": 6.36626672744751,
+ "step": 182
+ },
+ {
+ "epoch": 2.544978165938865,
+ "grad_norm": 0.05111207440495491,
+ "learning_rate": 0.0006,
+ "loss": 6.380453109741211,
+ "step": 183
+ },
+ {
+ "epoch": 2.558951965065502,
+ "grad_norm": 0.062241602689027786,
+ "learning_rate": 0.0006,
+ "loss": 6.353237152099609,
+ "step": 184
+ },
+ {
+ "epoch": 2.5729257641921395,
+ "grad_norm": 0.060149725526571274,
+ "learning_rate": 0.0006,
+ "loss": 6.358938694000244,
+ "step": 185
+ },
+ {
+ "epoch": 2.5868995633187772,
+ "grad_norm": 0.04228121414780617,
+ "learning_rate": 0.0006,
+ "loss": 6.310116767883301,
+ "step": 186
+ },
+ {
+ "epoch": 2.600873362445415,
+ "grad_norm": 0.019458215683698654,
+ "learning_rate": 0.0006,
+ "loss": 6.284702777862549,
+ "step": 187
+ },
+ {
+ "epoch": 2.6148471615720523,
+ "grad_norm": 0.0342358835041523,
+ "learning_rate": 0.0006,
+ "loss": 6.316659927368164,
+ "step": 188
+ },
+ {
+ "epoch": 2.62882096069869,
+ "grad_norm": 0.04139583557844162,
+ "learning_rate": 0.0006,
+ "loss": 6.301124572753906,
+ "step": 189
+ },
+ {
+ "epoch": 2.6427947598253274,
+ "grad_norm": 0.028264787048101425,
+ "learning_rate": 0.0006,
+ "loss": 6.298510551452637,
+ "step": 190
+ },
+ {
+ "epoch": 2.656768558951965,
+ "grad_norm": 0.023622136563062668,
+ "learning_rate": 0.0006,
+ "loss": 6.2571210861206055,
+ "step": 191
+ },
+ {
+ "epoch": 2.6707423580786025,
+ "grad_norm": 0.039508845657110214,
+ "learning_rate": 0.0006,
+ "loss": 6.267218589782715,
+ "step": 192
+ },
+ {
+ "epoch": 2.6847161572052403,
+ "grad_norm": 0.043358899652957916,
+ "learning_rate": 0.0006,
+ "loss": 6.279658794403076,
+ "step": 193
+ },
+ {
+ "epoch": 2.6986899563318776,
+ "grad_norm": 0.04134640842676163,
+ "learning_rate": 0.0006,
+ "loss": 6.277159214019775,
+ "step": 194
+ },
+ {
+ "epoch": 2.7126637554585153,
+ "grad_norm": 0.05406952276825905,
+ "learning_rate": 0.0006,
+ "loss": 6.295559883117676,
+ "step": 195
+ },
+ {
+ "epoch": 2.726637554585153,
+ "grad_norm": 0.04557774215936661,
+ "learning_rate": 0.0006,
+ "loss": 6.260174751281738,
+ "step": 196
+ },
+ {
+ "epoch": 2.7406113537117904,
+ "grad_norm": 0.04542337730526924,
+ "learning_rate": 0.0006,
+ "loss": 6.244534492492676,
+ "step": 197
+ },
+ {
+ "epoch": 2.7545851528384278,
+ "grad_norm": 0.06924881041049957,
+ "learning_rate": 0.0006,
+ "loss": 6.2060723304748535,
+ "step": 198
+ },
+ {
+ "epoch": 2.7685589519650655,
+ "grad_norm": 0.06679725646972656,
+ "learning_rate": 0.0006,
+ "loss": 6.259133815765381,
+ "step": 199
+ },
+ {
+ "epoch": 2.7825327510917033,
+ "grad_norm": 0.05039471387863159,
+ "learning_rate": 0.0006,
+ "loss": 6.239280700683594,
+ "step": 200
+ },
+ {
+ "epoch": 2.7965065502183406,
+ "grad_norm": 0.05935394763946533,
+ "learning_rate": 0.0006,
+ "loss": 6.242481231689453,
+ "step": 201
+ },
+ {
+ "epoch": 2.810480349344978,
+ "grad_norm": 0.0486418716609478,
+ "learning_rate": 0.0006,
+ "loss": 6.239593505859375,
+ "step": 202
+ },
+ {
+ "epoch": 2.8244541484716157,
+ "grad_norm": 0.05010748282074928,
+ "learning_rate": 0.0006,
+ "loss": 6.2328948974609375,
+ "step": 203
+ },
+ {
+ "epoch": 2.8384279475982535,
+ "grad_norm": 0.03444438800215721,
+ "learning_rate": 0.0006,
+ "loss": 6.200089454650879,
+ "step": 204
+ },
+ {
+ "epoch": 2.8524017467248908,
+ "grad_norm": 0.043253373354673386,
+ "learning_rate": 0.0006,
+ "loss": 6.2089433670043945,
+ "step": 205
+ },
+ {
+ "epoch": 2.8663755458515285,
+ "grad_norm": 0.047505684196949005,
+ "learning_rate": 0.0006,
+ "loss": 6.220322608947754,
+ "step": 206
+ },
+ {
+ "epoch": 2.880349344978166,
+ "grad_norm": 0.04393792524933815,
+ "learning_rate": 0.0006,
+ "loss": 6.178770542144775,
+ "step": 207
+ },
+ {
+ "epoch": 2.8943231441048036,
+ "grad_norm": 0.04025835916399956,
+ "learning_rate": 0.0006,
+ "loss": 6.160248756408691,
+ "step": 208
+ },
+ {
+ "epoch": 2.908296943231441,
+ "grad_norm": 0.03877986595034599,
+ "learning_rate": 0.0006,
+ "loss": 6.164917945861816,
+ "step": 209
+ },
+ {
+ "epoch": 2.9222707423580787,
+ "grad_norm": 0.03666771203279495,
+ "learning_rate": 0.0006,
+ "loss": 6.172199249267578,
+ "step": 210
+ },
+ {
+ "epoch": 2.936244541484716,
+ "grad_norm": 0.028036516159772873,
+ "learning_rate": 0.0006,
+ "loss": 6.179510116577148,
+ "step": 211
+ },
+ {
+ "epoch": 2.950218340611354,
+ "grad_norm": 0.021492617204785347,
+ "learning_rate": 0.0006,
+ "loss": 6.1275153160095215,
+ "step": 212
+ },
+ {
+ "epoch": 2.964192139737991,
+ "grad_norm": 0.026816558092832565,
+ "learning_rate": 0.0006,
+ "loss": 6.131775856018066,
+ "step": 213
+ },
+ {
+ "epoch": 2.978165938864629,
+ "grad_norm": 0.03757898136973381,
+ "learning_rate": 0.0006,
+ "loss": 6.135777473449707,
+ "step": 214
+ },
+ {
+ "epoch": 2.992139737991266,
+ "grad_norm": 0.06036437302827835,
+ "learning_rate": 0.0006,
+ "loss": 6.146076202392578,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.09846952557563782,
+ "learning_rate": 0.0006,
+ "loss": 6.218435287475586,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.23890495300293,
+ "eval_runtime": 50.6822,
+ "eval_samples_per_second": 48.183,
+ "eval_steps_per_second": 1.519,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139737991266378,
+ "grad_norm": 0.10463741421699524,
+ "learning_rate": 0.0006,
+ "loss": 6.197120666503906,
+ "step": 217
+ },
+ {
+ "epoch": 3.027947598253275,
+ "grad_norm": 0.10212419927120209,
+ "learning_rate": 0.0006,
+ "loss": 6.178340911865234,
+ "step": 218
+ },
+ {
+ "epoch": 3.041921397379913,
+ "grad_norm": 0.08038751780986786,
+ "learning_rate": 0.0006,
+ "loss": 6.217406749725342,
+ "step": 219
+ },
+ {
+ "epoch": 3.05589519650655,
+ "grad_norm": 0.04787508398294449,
+ "learning_rate": 0.0006,
+ "loss": 6.155381679534912,
+ "step": 220
+ },
+ {
+ "epoch": 3.069868995633188,
+ "grad_norm": 0.06880322843790054,
+ "learning_rate": 0.0006,
+ "loss": 6.121614933013916,
+ "step": 221
+ },
+ {
+ "epoch": 3.0838427947598253,
+ "grad_norm": 0.03749438002705574,
+ "learning_rate": 0.0006,
+ "loss": 6.120484352111816,
+ "step": 222
+ },
+ {
+ "epoch": 3.097816593886463,
+ "grad_norm": 0.03875046223402023,
+ "learning_rate": 0.0006,
+ "loss": 6.12362003326416,
+ "step": 223
+ },
+ {
+ "epoch": 3.1117903930131003,
+ "grad_norm": 0.030663209035992622,
+ "learning_rate": 0.0006,
+ "loss": 6.1111063957214355,
+ "step": 224
+ },
+ {
+ "epoch": 3.125764192139738,
+ "grad_norm": 0.029520904645323753,
+ "learning_rate": 0.0006,
+ "loss": 6.130336761474609,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397379912663754,
+ "grad_norm": 0.02854953519999981,
+ "learning_rate": 0.0006,
+ "loss": 6.086193084716797,
+ "step": 226
+ },
+ {
+ "epoch": 3.153711790393013,
+ "grad_norm": 0.027147898450493813,
+ "learning_rate": 0.0006,
+ "loss": 6.066827774047852,
+ "step": 227
+ },
+ {
+ "epoch": 3.1676855895196505,
+ "grad_norm": 0.025577887892723083,
+ "learning_rate": 0.0006,
+ "loss": 6.070775032043457,
+ "step": 228
+ },
+ {
+ "epoch": 3.1816593886462883,
+ "grad_norm": 0.026318276301026344,
+ "learning_rate": 0.0006,
+ "loss": 6.064469814300537,
+ "step": 229
+ },
+ {
+ "epoch": 3.1956331877729256,
+ "grad_norm": 0.02595221996307373,
+ "learning_rate": 0.0006,
+ "loss": 6.066489219665527,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096069868995634,
+ "grad_norm": 0.0248890221118927,
+ "learning_rate": 0.0006,
+ "loss": 6.032470703125,
+ "step": 231
+ },
+ {
+ "epoch": 3.2235807860262007,
+ "grad_norm": 0.017041699960827827,
+ "learning_rate": 0.0006,
+ "loss": 6.056160926818848,
+ "step": 232
+ },
+ {
+ "epoch": 3.2375545851528384,
+ "grad_norm": 0.020971592515707016,
+ "learning_rate": 0.0006,
+ "loss": 6.024506568908691,
+ "step": 233
+ },
+ {
+ "epoch": 3.251528384279476,
+ "grad_norm": 0.01897028088569641,
+ "learning_rate": 0.0006,
+ "loss": 6.035656929016113,
+ "step": 234
+ },
+ {
+ "epoch": 3.2655021834061135,
+ "grad_norm": 0.027151981368660927,
+ "learning_rate": 0.0006,
+ "loss": 6.026547431945801,
+ "step": 235
+ },
+ {
+ "epoch": 3.279475982532751,
+ "grad_norm": 0.029453502967953682,
+ "learning_rate": 0.0006,
+ "loss": 5.981723785400391,
+ "step": 236
+ },
+ {
+ "epoch": 3.2934497816593886,
+ "grad_norm": 0.027771083638072014,
+ "learning_rate": 0.0006,
+ "loss": 6.019796371459961,
+ "step": 237
+ },
+ {
+ "epoch": 3.3074235807860264,
+ "grad_norm": 0.02605084516108036,
+ "learning_rate": 0.0006,
+ "loss": 5.984506607055664,
+ "step": 238
+ },
+ {
+ "epoch": 3.3213973799126637,
+ "grad_norm": 0.022903922945261,
+ "learning_rate": 0.0006,
+ "loss": 6.023873805999756,
+ "step": 239
+ },
+ {
+ "epoch": 3.3353711790393015,
+ "grad_norm": 0.01976492442190647,
+ "learning_rate": 0.0006,
+ "loss": 6.009030342102051,
+ "step": 240
+ },
+ {
+ "epoch": 3.349344978165939,
+ "grad_norm": 0.018872970715165138,
+ "learning_rate": 0.0006,
+ "loss": 5.970742702484131,
+ "step": 241
+ },
+ {
+ "epoch": 3.3633187772925766,
+ "grad_norm": 0.017447829246520996,
+ "learning_rate": 0.0006,
+ "loss": 5.968851089477539,
+ "step": 242
+ },
+ {
+ "epoch": 3.377292576419214,
+ "grad_norm": 0.025419825688004494,
+ "learning_rate": 0.0006,
+ "loss": 5.956470489501953,
+ "step": 243
+ },
+ {
+ "epoch": 3.3912663755458516,
+ "grad_norm": 0.03654123470187187,
+ "learning_rate": 0.0006,
+ "loss": 5.94770622253418,
+ "step": 244
+ },
+ {
+ "epoch": 3.405240174672489,
+ "grad_norm": 0.05607098713517189,
+ "learning_rate": 0.0006,
+ "loss": 6.008593559265137,
+ "step": 245
+ },
+ {
+ "epoch": 3.4192139737991267,
+ "grad_norm": 0.07973720878362656,
+ "learning_rate": 0.0006,
+ "loss": 5.9966888427734375,
+ "step": 246
+ },
+ {
+ "epoch": 3.433187772925764,
+ "grad_norm": 0.10906023532152176,
+ "learning_rate": 0.0006,
+ "loss": 6.054642200469971,
+ "step": 247
+ },
+ {
+ "epoch": 3.447161572052402,
+ "grad_norm": 0.09792660176753998,
+ "learning_rate": 0.0006,
+ "loss": 6.067026138305664,
+ "step": 248
+ },
+ {
+ "epoch": 3.461135371179039,
+ "grad_norm": 0.07395700365304947,
+ "learning_rate": 0.0006,
+ "loss": 6.01310920715332,
+ "step": 249
+ },
+ {
+ "epoch": 3.475109170305677,
+ "grad_norm": 0.10172071307897568,
+ "learning_rate": 0.0006,
+ "loss": 6.048509120941162,
+ "step": 250
+ },
+ {
+ "epoch": 3.489082969432314,
+ "grad_norm": 0.0717678815126419,
+ "learning_rate": 0.0006,
+ "loss": 6.055008888244629,
+ "step": 251
+ },
+ {
+ "epoch": 3.503056768558952,
+ "grad_norm": 0.06398089975118637,
+ "learning_rate": 0.0006,
+ "loss": 5.9677276611328125,
+ "step": 252
+ },
+ {
+ "epoch": 3.5170305676855893,
+ "grad_norm": 0.0643860474228859,
+ "learning_rate": 0.0006,
+ "loss": 5.957507133483887,
+ "step": 253
+ },
+ {
+ "epoch": 3.531004366812227,
+ "grad_norm": 0.03472325950860977,
+ "learning_rate": 0.0006,
+ "loss": 5.952362060546875,
+ "step": 254
+ },
+ {
+ "epoch": 3.544978165938865,
+ "grad_norm": 0.03918307647109032,
+ "learning_rate": 0.0006,
+ "loss": 5.957100868225098,
+ "step": 255
+ },
+ {
+ "epoch": 3.558951965065502,
+ "grad_norm": 0.03519073501229286,
+ "learning_rate": 0.0006,
+ "loss": 5.97830867767334,
+ "step": 256
+ },
+ {
+ "epoch": 3.5729257641921395,
+ "grad_norm": 0.03435497358441353,
+ "learning_rate": 0.0006,
+ "loss": 5.93912410736084,
+ "step": 257
+ },
+ {
+ "epoch": 3.5868995633187772,
+ "grad_norm": 0.026064487174153328,
+ "learning_rate": 0.0006,
+ "loss": 5.91353702545166,
+ "step": 258
+ },
+ {
+ "epoch": 3.600873362445415,
+ "grad_norm": 0.03159152343869209,
+ "learning_rate": 0.0006,
+ "loss": 5.913291931152344,
+ "step": 259
+ },
+ {
+ "epoch": 3.6148471615720523,
+ "grad_norm": 0.02195592038333416,
+ "learning_rate": 0.0006,
+ "loss": 5.906322479248047,
+ "step": 260
+ },
+ {
+ "epoch": 3.62882096069869,
+ "grad_norm": 0.020358966663479805,
+ "learning_rate": 0.0006,
+ "loss": 5.891860008239746,
+ "step": 261
+ },
+ {
+ "epoch": 3.6427947598253274,
+ "grad_norm": 0.01964488998055458,
+ "learning_rate": 0.0006,
+ "loss": 5.881132125854492,
+ "step": 262
+ },
+ {
+ "epoch": 3.656768558951965,
+ "grad_norm": 0.022447235882282257,
+ "learning_rate": 0.0006,
+ "loss": 5.8846940994262695,
+ "step": 263
+ },
+ {
+ "epoch": 3.6707423580786025,
+ "grad_norm": 0.018359875306487083,
+ "learning_rate": 0.0006,
+ "loss": 5.8861188888549805,
+ "step": 264
+ },
+ {
+ "epoch": 3.6847161572052403,
+ "grad_norm": 0.018481185659766197,
+ "learning_rate": 0.0006,
+ "loss": 5.874635696411133,
+ "step": 265
+ },
+ {
+ "epoch": 3.6986899563318776,
+ "grad_norm": 0.016943952068686485,
+ "learning_rate": 0.0006,
+ "loss": 5.8380126953125,
+ "step": 266
+ },
+ {
+ "epoch": 3.7126637554585153,
+ "grad_norm": 0.016593772917985916,
+ "learning_rate": 0.0006,
+ "loss": 5.855746269226074,
+ "step": 267
+ },
+ {
+ "epoch": 3.726637554585153,
+ "grad_norm": 0.018204636871814728,
+ "learning_rate": 0.0006,
+ "loss": 5.873927116394043,
+ "step": 268
+ },
+ {
+ "epoch": 3.7406113537117904,
+ "grad_norm": 0.017277248203754425,
+ "learning_rate": 0.0006,
+ "loss": 5.855231285095215,
+ "step": 269
+ },
+ {
+ "epoch": 3.7545851528384278,
+ "grad_norm": 0.01717568188905716,
+ "learning_rate": 0.0006,
+ "loss": 5.847787857055664,
+ "step": 270
+ },
+ {
+ "epoch": 3.7685589519650655,
+ "grad_norm": 0.01537331473082304,
+ "learning_rate": 0.0006,
+ "loss": 5.852605819702148,
+ "step": 271
+ },
+ {
+ "epoch": 3.7825327510917033,
+ "grad_norm": 0.01504798699170351,
+ "learning_rate": 0.0006,
+ "loss": 5.825901031494141,
+ "step": 272
+ },
+ {
+ "epoch": 3.7965065502183406,
+ "grad_norm": 0.023221664130687714,
+ "learning_rate": 0.0006,
+ "loss": 5.812404155731201,
+ "step": 273
+ },
+ {
+ "epoch": 3.810480349344978,
+ "grad_norm": 0.0397733673453331,
+ "learning_rate": 0.0006,
+ "loss": 5.804308891296387,
+ "step": 274
+ },
+ {
+ "epoch": 3.8244541484716157,
+ "grad_norm": 0.05233687534928322,
+ "learning_rate": 0.0006,
+ "loss": 5.788049697875977,
+ "step": 275
+ },
+ {
+ "epoch": 3.8384279475982535,
+ "grad_norm": 0.05563921108841896,
+ "learning_rate": 0.0006,
+ "loss": 5.811939239501953,
+ "step": 276
+ },
+ {
+ "epoch": 3.8524017467248908,
+ "grad_norm": 0.0501336008310318,
+ "learning_rate": 0.0006,
+ "loss": 5.810712814331055,
+ "step": 277
+ },
+ {
+ "epoch": 3.8663755458515285,
+ "grad_norm": 0.07601612061262131,
+ "learning_rate": 0.0006,
+ "loss": 5.846009254455566,
+ "step": 278
+ },
+ {
+ "epoch": 3.880349344978166,
+ "grad_norm": 0.07927536964416504,
+ "learning_rate": 0.0006,
+ "loss": 5.846945285797119,
+ "step": 279
+ },
+ {
+ "epoch": 3.8943231441048036,
+ "grad_norm": 0.05778975039720535,
+ "learning_rate": 0.0006,
+ "loss": 5.8009209632873535,
+ "step": 280
+ },
+ {
+ "epoch": 3.908296943231441,
+ "grad_norm": 0.06650745123624802,
+ "learning_rate": 0.0006,
+ "loss": 5.825387001037598,
+ "step": 281
+ },
+ {
+ "epoch": 3.9222707423580787,
+ "grad_norm": 0.05610830709338188,
+ "learning_rate": 0.0006,
+ "loss": 5.854207992553711,
+ "step": 282
+ },
+ {
+ "epoch": 3.936244541484716,
+ "grad_norm": 0.03054177202284336,
+ "learning_rate": 0.0006,
+ "loss": 5.8229875564575195,
+ "step": 283
+ },
+ {
+ "epoch": 3.950218340611354,
+ "grad_norm": 0.03929241746664047,
+ "learning_rate": 0.0006,
+ "loss": 5.8026041984558105,
+ "step": 284
+ },
+ {
+ "epoch": 3.964192139737991,
+ "grad_norm": 0.03007139079272747,
+ "learning_rate": 0.0006,
+ "loss": 5.7833709716796875,
+ "step": 285
+ },
+ {
+ "epoch": 3.978165938864629,
+ "grad_norm": 0.03231097757816315,
+ "learning_rate": 0.0006,
+ "loss": 5.7852091789245605,
+ "step": 286
+ },
+ {
+ "epoch": 3.992139737991266,
+ "grad_norm": 0.02939445711672306,
+ "learning_rate": 0.0006,
+ "loss": 5.753163814544678,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.02993260696530342,
+ "learning_rate": 0.0006,
+ "loss": 5.762526512145996,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 5.799882888793945,
+ "eval_runtime": 50.8936,
+ "eval_samples_per_second": 47.982,
+ "eval_steps_per_second": 1.513,
+ "step": 288
+ },
+ {
+ "epoch": 4.013973799126638,
+ "grad_norm": 0.025836583226919174,
+ "learning_rate": 0.0006,
+ "loss": 5.74060583114624,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279475982532755,
+ "grad_norm": 0.02240375429391861,
+ "learning_rate": 0.0006,
+ "loss": 5.744357109069824,
+ "step": 290
+ },
+ {
+ "epoch": 4.041921397379912,
+ "grad_norm": 0.019645314663648605,
+ "learning_rate": 0.0006,
+ "loss": 5.714840412139893,
+ "step": 291
+ },
+ {
+ "epoch": 4.05589519650655,
+ "grad_norm": 0.01903143897652626,
+ "learning_rate": 0.0006,
+ "loss": 5.749794006347656,
+ "step": 292
+ },
+ {
+ "epoch": 4.069868995633188,
+ "grad_norm": 0.020970258861780167,
+ "learning_rate": 0.0006,
+ "loss": 5.684886932373047,
+ "step": 293
+ },
+ {
+ "epoch": 4.083842794759826,
+ "grad_norm": 0.022254586219787598,
+ "learning_rate": 0.0006,
+ "loss": 5.690360069274902,
+ "step": 294
+ },
+ {
+ "epoch": 4.097816593886463,
+ "grad_norm": 0.024622811004519463,
+ "learning_rate": 0.0006,
+ "loss": 5.7078962326049805,
+ "step": 295
+ },
+ {
+ "epoch": 4.1117903930131,
+ "grad_norm": 0.023592552170157433,
+ "learning_rate": 0.0006,
+ "loss": 5.7039971351623535,
+ "step": 296
+ },
+ {
+ "epoch": 4.125764192139738,
+ "grad_norm": 0.02667587623000145,
+ "learning_rate": 0.0006,
+ "loss": 5.677852630615234,
+ "step": 297
+ },
+ {
+ "epoch": 4.139737991266376,
+ "grad_norm": 0.03330948203802109,
+ "learning_rate": 0.0006,
+ "loss": 5.688773155212402,
+ "step": 298
+ },
+ {
+ "epoch": 4.153711790393013,
+ "grad_norm": 0.045157793909311295,
+ "learning_rate": 0.0006,
+ "loss": 5.675937652587891,
+ "step": 299
+ },
+ {
+ "epoch": 4.1676855895196505,
+ "grad_norm": 0.07034408301115036,
+ "learning_rate": 0.0006,
+ "loss": 5.687074661254883,
+ "step": 300
+ },
+ {
+ "epoch": 4.181659388646288,
+ "grad_norm": 0.10193091630935669,
+ "learning_rate": 0.0006,
+ "loss": 5.748222351074219,
+ "step": 301
+ },
+ {
+ "epoch": 4.195633187772926,
+ "grad_norm": 0.09606931358575821,
+ "learning_rate": 0.0006,
+ "loss": 5.767232894897461,
+ "step": 302
+ },
+ {
+ "epoch": 4.209606986899563,
+ "grad_norm": 0.05994758382439613,
+ "learning_rate": 0.0006,
+ "loss": 5.723153114318848,
+ "step": 303
+ },
+ {
+ "epoch": 4.223580786026201,
+ "grad_norm": 0.045849986374378204,
+ "learning_rate": 0.0006,
+ "loss": 5.7005815505981445,
+ "step": 304
+ },
+ {
+ "epoch": 4.2375545851528384,
+ "grad_norm": 0.04177941009402275,
+ "learning_rate": 0.0006,
+ "loss": 5.679755210876465,
+ "step": 305
+ },
+ {
+ "epoch": 4.251528384279476,
+ "grad_norm": 0.03307238593697548,
+ "learning_rate": 0.0006,
+ "loss": 5.677393913269043,
+ "step": 306
+ },
+ {
+ "epoch": 4.265502183406113,
+ "grad_norm": 0.04340110346674919,
+ "learning_rate": 0.0006,
+ "loss": 5.702075004577637,
+ "step": 307
+ },
+ {
+ "epoch": 4.279475982532751,
+ "grad_norm": 0.04797970876097679,
+ "learning_rate": 0.0006,
+ "loss": 5.650345802307129,
+ "step": 308
+ },
+ {
+ "epoch": 4.293449781659389,
+ "grad_norm": 0.04946571961045265,
+ "learning_rate": 0.0006,
+ "loss": 5.675044059753418,
+ "step": 309
+ },
+ {
+ "epoch": 4.307423580786026,
+ "grad_norm": 0.03254636004567146,
+ "learning_rate": 0.0006,
+ "loss": 5.622986793518066,
+ "step": 310
+ },
+ {
+ "epoch": 4.321397379912664,
+ "grad_norm": 0.032069381326436996,
+ "learning_rate": 0.0006,
+ "loss": 5.629563331604004,
+ "step": 311
+ },
+ {
+ "epoch": 4.335371179039301,
+ "grad_norm": 0.033597469329833984,
+ "learning_rate": 0.0006,
+ "loss": 5.612854480743408,
+ "step": 312
+ },
+ {
+ "epoch": 4.349344978165939,
+ "grad_norm": 0.02717825584113598,
+ "learning_rate": 0.0006,
+ "loss": 5.652135372161865,
+ "step": 313
+ },
+ {
+ "epoch": 4.3633187772925766,
+ "grad_norm": 0.03312784433364868,
+ "learning_rate": 0.0006,
+ "loss": 5.649629592895508,
+ "step": 314
+ },
+ {
+ "epoch": 4.377292576419214,
+ "grad_norm": 0.03037389926612377,
+ "learning_rate": 0.0006,
+ "loss": 5.6194305419921875,
+ "step": 315
+ },
+ {
+ "epoch": 4.391266375545851,
+ "grad_norm": 0.03778672590851784,
+ "learning_rate": 0.0006,
+ "loss": 5.641755104064941,
+ "step": 316
+ },
+ {
+ "epoch": 4.405240174672489,
+ "grad_norm": 0.053473301231861115,
+ "learning_rate": 0.0006,
+ "loss": 5.621832847595215,
+ "step": 317
+ },
+ {
+ "epoch": 4.419213973799127,
+ "grad_norm": 0.06915664672851562,
+ "learning_rate": 0.0006,
+ "loss": 5.601483345031738,
+ "step": 318
+ },
+ {
+ "epoch": 4.4331877729257645,
+ "grad_norm": 0.06667220592498779,
+ "learning_rate": 0.0006,
+ "loss": 5.642349720001221,
+ "step": 319
+ },
+ {
+ "epoch": 4.447161572052401,
+ "grad_norm": 0.037290167063474655,
+ "learning_rate": 0.0006,
+ "loss": 5.604238510131836,
+ "step": 320
+ },
+ {
+ "epoch": 4.461135371179039,
+ "grad_norm": 0.04003678262233734,
+ "learning_rate": 0.0006,
+ "loss": 5.593315601348877,
+ "step": 321
+ },
+ {
+ "epoch": 4.475109170305677,
+ "grad_norm": 0.028076812624931335,
+ "learning_rate": 0.0006,
+ "loss": 5.566408157348633,
+ "step": 322
+ },
+ {
+ "epoch": 4.489082969432315,
+ "grad_norm": 0.031247343868017197,
+ "learning_rate": 0.0006,
+ "loss": 5.6215410232543945,
+ "step": 323
+ },
+ {
+ "epoch": 4.503056768558952,
+ "grad_norm": 0.02864190936088562,
+ "learning_rate": 0.0006,
+ "loss": 5.583666801452637,
+ "step": 324
+ },
+ {
+ "epoch": 4.517030567685589,
+ "grad_norm": 0.03396870568394661,
+ "learning_rate": 0.0006,
+ "loss": 5.568394184112549,
+ "step": 325
+ },
+ {
+ "epoch": 4.531004366812227,
+ "grad_norm": 0.03053557313978672,
+ "learning_rate": 0.0006,
+ "loss": 5.5704755783081055,
+ "step": 326
+ },
+ {
+ "epoch": 4.544978165938865,
+ "grad_norm": 0.039402369409799576,
+ "learning_rate": 0.0006,
+ "loss": 5.529522895812988,
+ "step": 327
+ },
+ {
+ "epoch": 4.558951965065502,
+ "grad_norm": 0.039162520319223404,
+ "learning_rate": 0.0006,
+ "loss": 5.565547466278076,
+ "step": 328
+ },
+ {
+ "epoch": 4.5729257641921395,
+ "grad_norm": 0.03071208856999874,
+ "learning_rate": 0.0006,
+ "loss": 5.551553726196289,
+ "step": 329
+ },
+ {
+ "epoch": 4.586899563318777,
+ "grad_norm": 0.0320625938475132,
+ "learning_rate": 0.0006,
+ "loss": 5.535126686096191,
+ "step": 330
+ },
+ {
+ "epoch": 4.600873362445415,
+ "grad_norm": 0.03700695186853409,
+ "learning_rate": 0.0006,
+ "loss": 5.560665130615234,
+ "step": 331
+ },
+ {
+ "epoch": 4.614847161572053,
+ "grad_norm": 0.0327119417488575,
+ "learning_rate": 0.0006,
+ "loss": 5.528924465179443,
+ "step": 332
+ },
+ {
+ "epoch": 4.62882096069869,
+ "grad_norm": 0.028552839532494545,
+ "learning_rate": 0.0006,
+ "loss": 5.520917892456055,
+ "step": 333
+ },
+ {
+ "epoch": 4.642794759825327,
+ "grad_norm": 0.029750585556030273,
+ "learning_rate": 0.0006,
+ "loss": 5.512092113494873,
+ "step": 334
+ },
+ {
+ "epoch": 4.656768558951965,
+ "grad_norm": 0.03556099906563759,
+ "learning_rate": 0.0006,
+ "loss": 5.500020503997803,
+ "step": 335
+ },
+ {
+ "epoch": 4.670742358078603,
+ "grad_norm": 0.03819836303591728,
+ "learning_rate": 0.0006,
+ "loss": 5.523126602172852,
+ "step": 336
+ },
+ {
+ "epoch": 4.68471615720524,
+ "grad_norm": 0.038457129150629044,
+ "learning_rate": 0.0006,
+ "loss": 5.497986316680908,
+ "step": 337
+ },
+ {
+ "epoch": 4.698689956331878,
+ "grad_norm": 0.049066998064517975,
+ "learning_rate": 0.0006,
+ "loss": 5.481566429138184,
+ "step": 338
+ },
+ {
+ "epoch": 4.712663755458515,
+ "grad_norm": 0.06208881363272667,
+ "learning_rate": 0.0006,
+ "loss": 5.5200581550598145,
+ "step": 339
+ },
+ {
+ "epoch": 4.726637554585153,
+ "grad_norm": 0.04952879622578621,
+ "learning_rate": 0.0006,
+ "loss": 5.528044700622559,
+ "step": 340
+ },
+ {
+ "epoch": 4.74061135371179,
+ "grad_norm": 0.046794820576906204,
+ "learning_rate": 0.0006,
+ "loss": 5.4694437980651855,
+ "step": 341
+ },
+ {
+ "epoch": 4.754585152838428,
+ "grad_norm": 0.05241665989160538,
+ "learning_rate": 0.0006,
+ "loss": 5.5203752517700195,
+ "step": 342
+ },
+ {
+ "epoch": 4.7685589519650655,
+ "grad_norm": 0.029848996549844742,
+ "learning_rate": 0.0006,
+ "loss": 5.484467506408691,
+ "step": 343
+ },
+ {
+ "epoch": 4.782532751091703,
+ "grad_norm": 0.035734955221414566,
+ "learning_rate": 0.0006,
+ "loss": 5.4982075691223145,
+ "step": 344
+ },
+ {
+ "epoch": 4.796506550218341,
+ "grad_norm": 0.03326781094074249,
+ "learning_rate": 0.0006,
+ "loss": 5.4673380851745605,
+ "step": 345
+ },
+ {
+ "epoch": 4.810480349344978,
+ "grad_norm": 0.02851971797645092,
+ "learning_rate": 0.0006,
+ "loss": 5.466347694396973,
+ "step": 346
+ },
+ {
+ "epoch": 4.824454148471616,
+ "grad_norm": 0.02881411463022232,
+ "learning_rate": 0.0006,
+ "loss": 5.4748992919921875,
+ "step": 347
+ },
+ {
+ "epoch": 4.8384279475982535,
+ "grad_norm": 0.037079520523548126,
+ "learning_rate": 0.0006,
+ "loss": 5.430629730224609,
+ "step": 348
+ },
+ {
+ "epoch": 4.85240174672489,
+ "grad_norm": 0.06697188317775726,
+ "learning_rate": 0.0006,
+ "loss": 5.48007869720459,
+ "step": 349
+ },
+ {
+ "epoch": 4.866375545851528,
+ "grad_norm": 0.08443532884120941,
+ "learning_rate": 0.0006,
+ "loss": 5.519370079040527,
+ "step": 350
+ },
+ {
+ "epoch": 4.880349344978166,
+ "grad_norm": 0.0594899021089077,
+ "learning_rate": 0.0006,
+ "loss": 5.502467155456543,
+ "step": 351
+ },
+ {
+ "epoch": 4.894323144104804,
+ "grad_norm": 0.045731619000434875,
+ "learning_rate": 0.0006,
+ "loss": 5.48048210144043,
+ "step": 352
+ },
+ {
+ "epoch": 4.908296943231441,
+ "grad_norm": 0.02911028079688549,
+ "learning_rate": 0.0006,
+ "loss": 5.45798921585083,
+ "step": 353
+ },
+ {
+ "epoch": 4.922270742358078,
+ "grad_norm": 0.03407920524477959,
+ "learning_rate": 0.0006,
+ "loss": 5.452054977416992,
+ "step": 354
+ },
+ {
+ "epoch": 4.936244541484716,
+ "grad_norm": 0.030616968870162964,
+ "learning_rate": 0.0006,
+ "loss": 5.416000843048096,
+ "step": 355
+ },
+ {
+ "epoch": 4.950218340611354,
+ "grad_norm": 0.036123789846897125,
+ "learning_rate": 0.0006,
+ "loss": 5.448460102081299,
+ "step": 356
+ },
+ {
+ "epoch": 4.964192139737992,
+ "grad_norm": 0.03511728718876839,
+ "learning_rate": 0.0006,
+ "loss": 5.4388580322265625,
+ "step": 357
+ },
+ {
+ "epoch": 4.978165938864628,
+ "grad_norm": 0.032399944961071014,
+ "learning_rate": 0.0006,
+ "loss": 5.439154624938965,
+ "step": 358
+ },
+ {
+ "epoch": 4.992139737991266,
+ "grad_norm": 0.030734507367014885,
+ "learning_rate": 0.0006,
+ "loss": 5.394845485687256,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.036368995904922485,
+ "learning_rate": 0.0006,
+ "loss": 5.4285783767700195,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.480083465576172,
+ "eval_runtime": 50.4055,
+ "eval_samples_per_second": 48.447,
+ "eval_steps_per_second": 1.528,
+ "step": 360
+ },
+ {
+ "epoch": 5.013973799126638,
+ "grad_norm": 0.04241528734564781,
+ "learning_rate": 0.0006,
+ "loss": 5.381251335144043,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279475982532755,
+ "grad_norm": 0.03248775005340576,
+ "learning_rate": 0.0006,
+ "loss": 5.37385892868042,
+ "step": 362
+ },
+ {
+ "epoch": 5.041921397379912,
+ "grad_norm": 0.034749697893857956,
+ "learning_rate": 0.0006,
+ "loss": 5.376180648803711,
+ "step": 363
+ },
+ {
+ "epoch": 5.05589519650655,
+ "grad_norm": 0.03606852516531944,
+ "learning_rate": 0.0006,
+ "loss": 5.374990940093994,
+ "step": 364
+ },
+ {
+ "epoch": 5.069868995633188,
+ "grad_norm": 0.037298817187547684,
+ "learning_rate": 0.0006,
+ "loss": 5.387371063232422,
+ "step": 365
+ },
+ {
+ "epoch": 5.083842794759826,
+ "grad_norm": 0.04082327336072922,
+ "learning_rate": 0.0006,
+ "loss": 5.389516830444336,
+ "step": 366
+ },
+ {
+ "epoch": 5.097816593886463,
+ "grad_norm": 0.04895859211683273,
+ "learning_rate": 0.0006,
+ "loss": 5.3711090087890625,
+ "step": 367
+ },
+ {
+ "epoch": 5.1117903930131,
+ "grad_norm": 0.050905536860227585,
+ "learning_rate": 0.0006,
+ "loss": 5.351629257202148,
+ "step": 368
+ },
+ {
+ "epoch": 5.125764192139738,
+ "grad_norm": 0.04349025338888168,
+ "learning_rate": 0.0006,
+ "loss": 5.348860263824463,
+ "step": 369
+ },
+ {
+ "epoch": 5.139737991266376,
+ "grad_norm": 0.04351300373673439,
+ "learning_rate": 0.0006,
+ "loss": 5.351939678192139,
+ "step": 370
+ },
+ {
+ "epoch": 5.153711790393013,
+ "grad_norm": 0.03227587044239044,
+ "learning_rate": 0.0006,
+ "loss": 5.345745086669922,
+ "step": 371
+ },
+ {
+ "epoch": 5.1676855895196505,
+ "grad_norm": 0.04331260547041893,
+ "learning_rate": 0.0006,
+ "loss": 5.316384315490723,
+ "step": 372
+ },
+ {
+ "epoch": 5.181659388646288,
+ "grad_norm": 0.0464855432510376,
+ "learning_rate": 0.0006,
+ "loss": 5.343276023864746,
+ "step": 373
+ },
+ {
+ "epoch": 5.195633187772926,
+ "grad_norm": 0.05008427053689957,
+ "learning_rate": 0.0006,
+ "loss": 5.369993209838867,
+ "step": 374
+ },
+ {
+ "epoch": 5.209606986899563,
+ "grad_norm": 0.04762439802289009,
+ "learning_rate": 0.0006,
+ "loss": 5.3458051681518555,
+ "step": 375
+ },
+ {
+ "epoch": 5.223580786026201,
+ "grad_norm": 0.04650581255555153,
+ "learning_rate": 0.0006,
+ "loss": 5.352739334106445,
+ "step": 376
+ },
+ {
+ "epoch": 5.2375545851528384,
+ "grad_norm": 0.04960601031780243,
+ "learning_rate": 0.0006,
+ "loss": 5.327419757843018,
+ "step": 377
+ },
+ {
+ "epoch": 5.251528384279476,
+ "grad_norm": 0.04186132177710533,
+ "learning_rate": 0.0006,
+ "loss": 5.319878578186035,
+ "step": 378
+ },
+ {
+ "epoch": 5.265502183406113,
+ "grad_norm": 0.0390714667737484,
+ "learning_rate": 0.0006,
+ "loss": 5.344437599182129,
+ "step": 379
+ },
+ {
+ "epoch": 5.279475982532751,
+ "grad_norm": 0.03270866721868515,
+ "learning_rate": 0.0006,
+ "loss": 5.313382148742676,
+ "step": 380
+ },
+ {
+ "epoch": 5.293449781659389,
+ "grad_norm": 0.031864266842603683,
+ "learning_rate": 0.0006,
+ "loss": 5.326592922210693,
+ "step": 381
+ },
+ {
+ "epoch": 5.307423580786026,
+ "grad_norm": 0.026960339397192,
+ "learning_rate": 0.0006,
+ "loss": 5.286443710327148,
+ "step": 382
+ },
+ {
+ "epoch": 5.321397379912664,
+ "grad_norm": 0.023257168009877205,
+ "learning_rate": 0.0006,
+ "loss": 5.291154384613037,
+ "step": 383
+ },
+ {
+ "epoch": 5.335371179039301,
+ "grad_norm": 0.024317380040884018,
+ "learning_rate": 0.0006,
+ "loss": 5.30286979675293,
+ "step": 384
+ },
+ {
+ "epoch": 5.349344978165939,
+ "grad_norm": 0.022621065378189087,
+ "learning_rate": 0.0006,
+ "loss": 5.315716743469238,
+ "step": 385
+ },
+ {
+ "epoch": 5.3633187772925766,
+ "grad_norm": 0.023142270743846893,
+ "learning_rate": 0.0006,
+ "loss": 5.30342960357666,
+ "step": 386
+ },
+ {
+ "epoch": 5.377292576419214,
+ "grad_norm": 0.023623041808605194,
+ "learning_rate": 0.0006,
+ "loss": 5.250846862792969,
+ "step": 387
+ },
+ {
+ "epoch": 5.391266375545851,
+ "grad_norm": 0.02163100801408291,
+ "learning_rate": 0.0006,
+ "loss": 5.239641189575195,
+ "step": 388
+ },
+ {
+ "epoch": 5.405240174672489,
+ "grad_norm": 0.02896741032600403,
+ "learning_rate": 0.0006,
+ "loss": 5.2592010498046875,
+ "step": 389
+ },
+ {
+ "epoch": 5.419213973799127,
+ "grad_norm": 0.03766395151615143,
+ "learning_rate": 0.0006,
+ "loss": 5.253421783447266,
+ "step": 390
+ },
+ {
+ "epoch": 5.4331877729257645,
+ "grad_norm": 0.04409803822636604,
+ "learning_rate": 0.0006,
+ "loss": 5.271892070770264,
+ "step": 391
+ },
+ {
+ "epoch": 5.447161572052401,
+ "grad_norm": 0.040245357900857925,
+ "learning_rate": 0.0006,
+ "loss": 5.259224891662598,
+ "step": 392
+ },
+ {
+ "epoch": 5.461135371179039,
+ "grad_norm": 0.04515395313501358,
+ "learning_rate": 0.0006,
+ "loss": 5.236300468444824,
+ "step": 393
+ },
+ {
+ "epoch": 5.475109170305677,
+ "grad_norm": 0.060296714305877686,
+ "learning_rate": 0.0006,
+ "loss": 5.265594959259033,
+ "step": 394
+ },
+ {
+ "epoch": 5.489082969432315,
+ "grad_norm": 0.05405225604772568,
+ "learning_rate": 0.0006,
+ "loss": 5.262340545654297,
+ "step": 395
+ },
+ {
+ "epoch": 5.503056768558952,
+ "grad_norm": 0.0568138062953949,
+ "learning_rate": 0.0006,
+ "loss": 5.239948749542236,
+ "step": 396
+ },
+ {
+ "epoch": 5.517030567685589,
+ "grad_norm": 0.059859342873096466,
+ "learning_rate": 0.0006,
+ "loss": 5.189077854156494,
+ "step": 397
+ },
+ {
+ "epoch": 5.531004366812227,
+ "grad_norm": 0.053871408104896545,
+ "learning_rate": 0.0006,
+ "loss": 5.270648956298828,
+ "step": 398
+ },
+ {
+ "epoch": 5.544978165938865,
+ "grad_norm": 0.06081297993659973,
+ "learning_rate": 0.0006,
+ "loss": 5.314695835113525,
+ "step": 399
+ },
+ {
+ "epoch": 5.558951965065502,
+ "grad_norm": 0.0646715834736824,
+ "learning_rate": 0.0006,
+ "loss": 5.286482810974121,
+ "step": 400
+ },
+ {
+ "epoch": 5.5729257641921395,
+ "grad_norm": 0.05934286117553711,
+ "learning_rate": 0.0006,
+ "loss": 5.247529983520508,
+ "step": 401
+ },
+ {
+ "epoch": 5.586899563318777,
+ "grad_norm": 0.05270497500896454,
+ "learning_rate": 0.0006,
+ "loss": 5.213264465332031,
+ "step": 402
+ },
+ {
+ "epoch": 5.600873362445415,
+ "grad_norm": 0.03454767167568207,
+ "learning_rate": 0.0006,
+ "loss": 5.234180450439453,
+ "step": 403
+ },
+ {
+ "epoch": 5.614847161572053,
+ "grad_norm": 0.04350962117314339,
+ "learning_rate": 0.0006,
+ "loss": 5.2320332527160645,
+ "step": 404
+ },
+ {
+ "epoch": 5.62882096069869,
+ "grad_norm": 0.04721181467175484,
+ "learning_rate": 0.0006,
+ "loss": 5.228950023651123,
+ "step": 405
+ },
+ {
+ "epoch": 5.642794759825327,
+ "grad_norm": 0.03711158409714699,
+ "learning_rate": 0.0006,
+ "loss": 5.234259605407715,
+ "step": 406
+ },
+ {
+ "epoch": 5.656768558951965,
+ "grad_norm": 0.029691185802221298,
+ "learning_rate": 0.0006,
+ "loss": 5.183767795562744,
+ "step": 407
+ },
+ {
+ "epoch": 5.670742358078603,
+ "grad_norm": 0.03253520280122757,
+ "learning_rate": 0.0006,
+ "loss": 5.224790573120117,
+ "step": 408
+ },
+ {
+ "epoch": 5.68471615720524,
+ "grad_norm": 0.026891207322478294,
+ "learning_rate": 0.0006,
+ "loss": 5.219671249389648,
+ "step": 409
+ },
+ {
+ "epoch": 5.698689956331878,
+ "grad_norm": 0.024443313479423523,
+ "learning_rate": 0.0006,
+ "loss": 5.177947044372559,
+ "step": 410
+ },
+ {
+ "epoch": 5.712663755458515,
+ "grad_norm": 0.024358445778489113,
+ "learning_rate": 0.0006,
+ "loss": 5.184648513793945,
+ "step": 411
+ },
+ {
+ "epoch": 5.726637554585153,
+ "grad_norm": 0.038056857883930206,
+ "learning_rate": 0.0006,
+ "loss": 5.213315010070801,
+ "step": 412
+ },
+ {
+ "epoch": 5.74061135371179,
+ "grad_norm": 0.05382931977510452,
+ "learning_rate": 0.0006,
+ "loss": 5.188442230224609,
+ "step": 413
+ },
+ {
+ "epoch": 5.754585152838428,
+ "grad_norm": 0.04695626348257065,
+ "learning_rate": 0.0006,
+ "loss": 5.214473724365234,
+ "step": 414
+ },
+ {
+ "epoch": 5.7685589519650655,
+ "grad_norm": 0.03373295068740845,
+ "learning_rate": 0.0006,
+ "loss": 5.187349319458008,
+ "step": 415
+ },
+ {
+ "epoch": 5.782532751091703,
+ "grad_norm": 0.04209282621741295,
+ "learning_rate": 0.0006,
+ "loss": 5.215581893920898,
+ "step": 416
+ },
+ {
+ "epoch": 5.796506550218341,
+ "grad_norm": 0.036461904644966125,
+ "learning_rate": 0.0006,
+ "loss": 5.148530006408691,
+ "step": 417
+ },
+ {
+ "epoch": 5.810480349344978,
+ "grad_norm": 0.02530442364513874,
+ "learning_rate": 0.0006,
+ "loss": 5.143393039703369,
+ "step": 418
+ },
+ {
+ "epoch": 5.824454148471616,
+ "grad_norm": 0.02545030415058136,
+ "learning_rate": 0.0006,
+ "loss": 5.167602062225342,
+ "step": 419
+ },
+ {
+ "epoch": 5.8384279475982535,
+ "grad_norm": 0.024862848222255707,
+ "learning_rate": 0.0006,
+ "loss": 5.133827209472656,
+ "step": 420
+ },
+ {
+ "epoch": 5.85240174672489,
+ "grad_norm": 0.0243727695196867,
+ "learning_rate": 0.0006,
+ "loss": 5.196236610412598,
+ "step": 421
+ },
+ {
+ "epoch": 5.866375545851528,
+ "grad_norm": 0.031052641570568085,
+ "learning_rate": 0.0006,
+ "loss": 5.163963317871094,
+ "step": 422
+ },
+ {
+ "epoch": 5.880349344978166,
+ "grad_norm": 0.03085985779762268,
+ "learning_rate": 0.0006,
+ "loss": 5.133022308349609,
+ "step": 423
+ },
+ {
+ "epoch": 5.894323144104804,
+ "grad_norm": 0.026254380121827126,
+ "learning_rate": 0.0006,
+ "loss": 5.126164436340332,
+ "step": 424
+ },
+ {
+ "epoch": 5.908296943231441,
+ "grad_norm": 0.02083180658519268,
+ "learning_rate": 0.0006,
+ "loss": 5.102797508239746,
+ "step": 425
+ },
+ {
+ "epoch": 5.922270742358078,
+ "grad_norm": 0.02210022322833538,
+ "learning_rate": 0.0006,
+ "loss": 5.079900741577148,
+ "step": 426
+ },
+ {
+ "epoch": 5.936244541484716,
+ "grad_norm": 0.024237696081399918,
+ "learning_rate": 0.0006,
+ "loss": 5.131382942199707,
+ "step": 427
+ },
+ {
+ "epoch": 5.950218340611354,
+ "grad_norm": 0.03174173831939697,
+ "learning_rate": 0.0006,
+ "loss": 5.12271785736084,
+ "step": 428
+ },
+ {
+ "epoch": 5.964192139737992,
+ "grad_norm": 0.035321734845638275,
+ "learning_rate": 0.0006,
+ "loss": 5.096363067626953,
+ "step": 429
+ },
+ {
+ "epoch": 5.978165938864628,
+ "grad_norm": 0.03945434093475342,
+ "learning_rate": 0.0006,
+ "loss": 5.104191780090332,
+ "step": 430
+ },
+ {
+ "epoch": 5.992139737991266,
+ "grad_norm": 0.03119991160929203,
+ "learning_rate": 0.0006,
+ "loss": 5.088006973266602,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.025646768510341644,
+ "learning_rate": 0.0006,
+ "loss": 5.060527801513672,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.1733880043029785,
+ "eval_runtime": 49.9632,
+ "eval_samples_per_second": 48.876,
+ "eval_steps_per_second": 1.541,
+ "step": 432
+ },
+ {
+ "epoch": 6.013973799126638,
+ "grad_norm": 0.04027649387717247,
+ "learning_rate": 0.0006,
+ "loss": 5.070117473602295,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279475982532755,
+ "grad_norm": 0.04872274026274681,
+ "learning_rate": 0.0006,
+ "loss": 5.076330184936523,
+ "step": 434
+ },
+ {
+ "epoch": 6.041921397379912,
+ "grad_norm": 0.044163160026073456,
+ "learning_rate": 0.0006,
+ "loss": 5.079638481140137,
+ "step": 435
+ },
+ {
+ "epoch": 6.05589519650655,
+ "grad_norm": 0.051925189793109894,
+ "learning_rate": 0.0006,
+ "loss": 5.077970027923584,
+ "step": 436
+ },
+ {
+ "epoch": 6.069868995633188,
+ "grad_norm": 0.06317602097988129,
+ "learning_rate": 0.0006,
+ "loss": 5.077326774597168,
+ "step": 437
+ },
+ {
+ "epoch": 6.083842794759826,
+ "grad_norm": 0.05190538242459297,
+ "learning_rate": 0.0006,
+ "loss": 5.078523635864258,
+ "step": 438
+ },
+ {
+ "epoch": 6.097816593886463,
+ "grad_norm": 0.054743602871894836,
+ "learning_rate": 0.0006,
+ "loss": 5.041546821594238,
+ "step": 439
+ },
+ {
+ "epoch": 6.1117903930131,
+ "grad_norm": 0.0473523885011673,
+ "learning_rate": 0.0006,
+ "loss": 5.055340766906738,
+ "step": 440
+ },
+ {
+ "epoch": 6.125764192139738,
+ "grad_norm": 0.04575403407216072,
+ "learning_rate": 0.0006,
+ "loss": 5.078280925750732,
+ "step": 441
+ },
+ {
+ "epoch": 6.139737991266376,
+ "grad_norm": 0.04004313051700592,
+ "learning_rate": 0.0006,
+ "loss": 5.0551252365112305,
+ "step": 442
+ },
+ {
+ "epoch": 6.153711790393013,
+ "grad_norm": 0.04324577748775482,
+ "learning_rate": 0.0006,
+ "loss": 5.052831649780273,
+ "step": 443
+ },
+ {
+ "epoch": 6.1676855895196505,
+ "grad_norm": 0.05479790270328522,
+ "learning_rate": 0.0006,
+ "loss": 5.075335502624512,
+ "step": 444
+ },
+ {
+ "epoch": 6.181659388646288,
+ "grad_norm": 0.05768252909183502,
+ "learning_rate": 0.0006,
+ "loss": 5.076082706451416,
+ "step": 445
+ },
+ {
+ "epoch": 6.195633187772926,
+ "grad_norm": 0.05240596458315849,
+ "learning_rate": 0.0006,
+ "loss": 5.058586120605469,
+ "step": 446
+ },
+ {
+ "epoch": 6.209606986899563,
+ "grad_norm": 0.0645335391163826,
+ "learning_rate": 0.0006,
+ "loss": 5.069242477416992,
+ "step": 447
+ },
+ {
+ "epoch": 6.223580786026201,
+ "grad_norm": 0.07776601612567902,
+ "learning_rate": 0.0006,
+ "loss": 5.100368499755859,
+ "step": 448
+ },
+ {
+ "epoch": 6.2375545851528384,
+ "grad_norm": 0.08278049528598785,
+ "learning_rate": 0.0006,
+ "loss": 5.109698295593262,
+ "step": 449
+ },
+ {
+ "epoch": 6.251528384279476,
+ "grad_norm": 0.07187525182962418,
+ "learning_rate": 0.0006,
+ "loss": 5.08582878112793,
+ "step": 450
+ },
+ {
+ "epoch": 6.265502183406113,
+ "grad_norm": 0.07394885271787643,
+ "learning_rate": 0.0006,
+ "loss": 5.06748628616333,
+ "step": 451
+ },
+ {
+ "epoch": 6.279475982532751,
+ "grad_norm": 0.06124480068683624,
+ "learning_rate": 0.0006,
+ "loss": 5.116754531860352,
+ "step": 452
+ },
+ {
+ "epoch": 6.293449781659389,
+ "grad_norm": 0.04062265530228615,
+ "learning_rate": 0.0006,
+ "loss": 5.04876184463501,
+ "step": 453
+ },
+ {
+ "epoch": 6.307423580786026,
+ "grad_norm": 0.04309544339776039,
+ "learning_rate": 0.0006,
+ "loss": 5.038376331329346,
+ "step": 454
+ },
+ {
+ "epoch": 6.321397379912664,
+ "grad_norm": 0.041932251304388046,
+ "learning_rate": 0.0006,
+ "loss": 5.071001052856445,
+ "step": 455
+ },
+ {
+ "epoch": 6.335371179039301,
+ "grad_norm": 0.033776845782995224,
+ "learning_rate": 0.0006,
+ "loss": 5.006098747253418,
+ "step": 456
+ },
+ {
+ "epoch": 6.349344978165939,
+ "grad_norm": 0.034641820937395096,
+ "learning_rate": 0.0006,
+ "loss": 4.992915153503418,
+ "step": 457
+ },
+ {
+ "epoch": 6.3633187772925766,
+ "grad_norm": 0.023475229740142822,
+ "learning_rate": 0.0006,
+ "loss": 5.044340133666992,
+ "step": 458
+ },
+ {
+ "epoch": 6.377292576419214,
+ "grad_norm": 0.02673504501581192,
+ "learning_rate": 0.0006,
+ "loss": 4.998212814331055,
+ "step": 459
+ },
+ {
+ "epoch": 6.391266375545851,
+ "grad_norm": 0.02482164464890957,
+ "learning_rate": 0.0006,
+ "loss": 5.010951042175293,
+ "step": 460
+ },
+ {
+ "epoch": 6.405240174672489,
+ "grad_norm": 0.022635847330093384,
+ "learning_rate": 0.0006,
+ "loss": 4.977993965148926,
+ "step": 461
+ },
+ {
+ "epoch": 6.419213973799127,
+ "grad_norm": 0.023006808012723923,
+ "learning_rate": 0.0006,
+ "loss": 4.947575569152832,
+ "step": 462
+ },
+ {
+ "epoch": 6.4331877729257645,
+ "grad_norm": 0.02624397724866867,
+ "learning_rate": 0.0006,
+ "loss": 4.977143287658691,
+ "step": 463
+ },
+ {
+ "epoch": 6.447161572052401,
+ "grad_norm": 0.03280187025666237,
+ "learning_rate": 0.0006,
+ "loss": 4.941946029663086,
+ "step": 464
+ },
+ {
+ "epoch": 6.461135371179039,
+ "grad_norm": 0.04020314663648605,
+ "learning_rate": 0.0006,
+ "loss": 4.947107315063477,
+ "step": 465
+ },
+ {
+ "epoch": 6.475109170305677,
+ "grad_norm": 0.037292513996362686,
+ "learning_rate": 0.0006,
+ "loss": 4.940674781799316,
+ "step": 466
+ },
+ {
+ "epoch": 6.489082969432315,
+ "grad_norm": 0.03219081461429596,
+ "learning_rate": 0.0006,
+ "loss": 4.945491790771484,
+ "step": 467
+ },
+ {
+ "epoch": 6.503056768558952,
+ "grad_norm": 0.034181494265794754,
+ "learning_rate": 0.0006,
+ "loss": 4.948554039001465,
+ "step": 468
+ },
+ {
+ "epoch": 6.517030567685589,
+ "grad_norm": 0.03098447248339653,
+ "learning_rate": 0.0006,
+ "loss": 4.923150062561035,
+ "step": 469
+ },
+ {
+ "epoch": 6.531004366812227,
+ "grad_norm": 0.026002254337072372,
+ "learning_rate": 0.0006,
+ "loss": 4.9629106521606445,
+ "step": 470
+ },
+ {
+ "epoch": 6.544978165938865,
+ "grad_norm": 0.02463129162788391,
+ "learning_rate": 0.0006,
+ "loss": 4.9400787353515625,
+ "step": 471
+ },
+ {
+ "epoch": 6.558951965065502,
+ "grad_norm": 0.025506779551506042,
+ "learning_rate": 0.0006,
+ "loss": 4.945688247680664,
+ "step": 472
+ },
+ {
+ "epoch": 6.5729257641921395,
+ "grad_norm": 0.021885665133595467,
+ "learning_rate": 0.0006,
+ "loss": 4.893912315368652,
+ "step": 473
+ },
+ {
+ "epoch": 6.586899563318777,
+ "grad_norm": 0.023528503254055977,
+ "learning_rate": 0.0006,
+ "loss": 4.948110580444336,
+ "step": 474
+ },
+ {
+ "epoch": 6.600873362445415,
+ "grad_norm": 0.02838003821671009,
+ "learning_rate": 0.0006,
+ "loss": 4.919154167175293,
+ "step": 475
+ },
+ {
+ "epoch": 6.614847161572053,
+ "grad_norm": 0.028782688081264496,
+ "learning_rate": 0.0006,
+ "loss": 4.89210319519043,
+ "step": 476
+ },
+ {
+ "epoch": 6.62882096069869,
+ "grad_norm": 0.02549571916460991,
+ "learning_rate": 0.0006,
+ "loss": 4.903683185577393,
+ "step": 477
+ },
+ {
+ "epoch": 6.642794759825327,
+ "grad_norm": 0.030100561678409576,
+ "learning_rate": 0.0006,
+ "loss": 4.907907485961914,
+ "step": 478
+ },
+ {
+ "epoch": 6.656768558951965,
+ "grad_norm": 0.03853096067905426,
+ "learning_rate": 0.0006,
+ "loss": 4.916140556335449,
+ "step": 479
+ },
+ {
+ "epoch": 6.670742358078603,
+ "grad_norm": 0.0367201492190361,
+ "learning_rate": 0.0006,
+ "loss": 4.882139205932617,
+ "step": 480
+ },
+ {
+ "epoch": 6.68471615720524,
+ "grad_norm": 0.034214165061712265,
+ "learning_rate": 0.0006,
+ "loss": 4.883127212524414,
+ "step": 481
+ },
+ {
+ "epoch": 6.698689956331878,
+ "grad_norm": 0.03360319137573242,
+ "learning_rate": 0.0006,
+ "loss": 4.903620719909668,
+ "step": 482
+ },
+ {
+ "epoch": 6.712663755458515,
+ "grad_norm": 0.027687804773449898,
+ "learning_rate": 0.0006,
+ "loss": 4.874878883361816,
+ "step": 483
+ },
+ {
+ "epoch": 6.726637554585153,
+ "grad_norm": 0.028244799003005028,
+ "learning_rate": 0.0006,
+ "loss": 4.877007961273193,
+ "step": 484
+ },
+ {
+ "epoch": 6.74061135371179,
+ "grad_norm": 0.027868567034602165,
+ "learning_rate": 0.0006,
+ "loss": 4.893726348876953,
+ "step": 485
+ },
+ {
+ "epoch": 6.754585152838428,
+ "grad_norm": 0.036026086658239365,
+ "learning_rate": 0.0006,
+ "loss": 4.899372577667236,
+ "step": 486
+ },
+ {
+ "epoch": 6.7685589519650655,
+ "grad_norm": 0.03497552126646042,
+ "learning_rate": 0.0006,
+ "loss": 4.8735671043396,
+ "step": 487
+ },
+ {
+ "epoch": 6.782532751091703,
+ "grad_norm": 0.027166219428181648,
+ "learning_rate": 0.0006,
+ "loss": 4.848074913024902,
+ "step": 488
+ },
+ {
+ "epoch": 6.796506550218341,
+ "grad_norm": 0.029360221698880196,
+ "learning_rate": 0.0006,
+ "loss": 4.821354389190674,
+ "step": 489
+ },
+ {
+ "epoch": 6.810480349344978,
+ "grad_norm": 0.030428793281316757,
+ "learning_rate": 0.0006,
+ "loss": 4.857872009277344,
+ "step": 490
+ },
+ {
+ "epoch": 6.824454148471616,
+ "grad_norm": 0.033143963664770126,
+ "learning_rate": 0.0006,
+ "loss": 4.8857526779174805,
+ "step": 491
+ },
+ {
+ "epoch": 6.8384279475982535,
+ "grad_norm": 0.03193509578704834,
+ "learning_rate": 0.0006,
+ "loss": 4.841046333312988,
+ "step": 492
+ },
+ {
+ "epoch": 6.85240174672489,
+ "grad_norm": 0.034551024436950684,
+ "learning_rate": 0.0006,
+ "loss": 4.857826232910156,
+ "step": 493
+ },
+ {
+ "epoch": 6.866375545851528,
+ "grad_norm": 0.04612463712692261,
+ "learning_rate": 0.0006,
+ "loss": 4.880589485168457,
+ "step": 494
+ },
+ {
+ "epoch": 6.880349344978166,
+ "grad_norm": 0.04604615643620491,
+ "learning_rate": 0.0006,
+ "loss": 4.836089134216309,
+ "step": 495
+ },
+ {
+ "epoch": 6.894323144104804,
+ "grad_norm": 0.04121214151382446,
+ "learning_rate": 0.0006,
+ "loss": 4.859458923339844,
+ "step": 496
+ },
+ {
+ "epoch": 6.908296943231441,
+ "grad_norm": 0.03569377213716507,
+ "learning_rate": 0.0006,
+ "loss": 4.846658706665039,
+ "step": 497
+ },
+ {
+ "epoch": 6.922270742358078,
+ "grad_norm": 0.03878311067819595,
+ "learning_rate": 0.0006,
+ "loss": 4.828747749328613,
+ "step": 498
+ },
+ {
+ "epoch": 6.936244541484716,
+ "grad_norm": 0.0379655621945858,
+ "learning_rate": 0.0006,
+ "loss": 4.7911152839660645,
+ "step": 499
+ },
+ {
+ "epoch": 6.950218340611354,
+ "grad_norm": 0.03329150751233101,
+ "learning_rate": 0.0006,
+ "loss": 4.8190741539001465,
+ "step": 500
+ },
+ {
+ "epoch": 6.964192139737992,
+ "grad_norm": 0.0386258140206337,
+ "learning_rate": 0.0006,
+ "loss": 4.826594352722168,
+ "step": 501
+ },
+ {
+ "epoch": 6.978165938864628,
+ "grad_norm": 0.043440066277980804,
+ "learning_rate": 0.0006,
+ "loss": 4.868552207946777,
+ "step": 502
+ },
+ {
+ "epoch": 6.992139737991266,
+ "grad_norm": 0.039522934705019,
+ "learning_rate": 0.0006,
+ "loss": 4.766866683959961,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.038620468229055405,
+ "learning_rate": 0.0006,
+ "loss": 4.828839302062988,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 4.907761573791504,
+ "eval_runtime": 49.951,
+ "eval_samples_per_second": 48.888,
+ "eval_steps_per_second": 1.542,
+ "step": 504
+ },
+ {
+ "epoch": 7.013973799126638,
+ "grad_norm": 0.040495287626981735,
+ "learning_rate": 0.0006,
+ "loss": 4.755504608154297,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279475982532755,
+ "grad_norm": 0.04684276506304741,
+ "learning_rate": 0.0006,
+ "loss": 4.79603385925293,
+ "step": 506
+ },
+ {
+ "epoch": 7.041921397379912,
+ "grad_norm": 0.057431042194366455,
+ "learning_rate": 0.0006,
+ "loss": 4.798529148101807,
+ "step": 507
+ },
+ {
+ "epoch": 7.05589519650655,
+ "grad_norm": 0.06289757043123245,
+ "learning_rate": 0.0006,
+ "loss": 4.819248199462891,
+ "step": 508
+ },
+ {
+ "epoch": 7.069868995633188,
+ "grad_norm": 0.07083664834499359,
+ "learning_rate": 0.0006,
+ "loss": 4.803141117095947,
+ "step": 509
+ },
+ {
+ "epoch": 7.083842794759826,
+ "grad_norm": 0.06081623584032059,
+ "learning_rate": 0.0006,
+ "loss": 4.743819236755371,
+ "step": 510
+ },
+ {
+ "epoch": 7.097816593886463,
+ "grad_norm": 0.05454877391457558,
+ "learning_rate": 0.0006,
+ "loss": 4.854677200317383,
+ "step": 511
+ },
+ {
+ "epoch": 7.1117903930131,
+ "grad_norm": 0.05157916992902756,
+ "learning_rate": 0.0006,
+ "loss": 4.797488212585449,
+ "step": 512
+ },
+ {
+ "epoch": 7.125764192139738,
+ "grad_norm": 0.04780645668506622,
+ "learning_rate": 0.0006,
+ "loss": 4.824231147766113,
+ "step": 513
+ },
+ {
+ "epoch": 7.139737991266376,
+ "grad_norm": 0.058745913207530975,
+ "learning_rate": 0.0006,
+ "loss": 4.79942512512207,
+ "step": 514
+ },
+ {
+ "epoch": 7.153711790393013,
+ "grad_norm": 0.07210857421159744,
+ "learning_rate": 0.0006,
+ "loss": 4.857621192932129,
+ "step": 515
+ },
+ {
+ "epoch": 7.1676855895196505,
+ "grad_norm": 0.0681944340467453,
+ "learning_rate": 0.0006,
+ "loss": 4.798557281494141,
+ "step": 516
+ },
+ {
+ "epoch": 7.181659388646288,
+ "grad_norm": 0.06716784089803696,
+ "learning_rate": 0.0006,
+ "loss": 4.81382942199707,
+ "step": 517
+ },
+ {
+ "epoch": 7.195633187772926,
+ "grad_norm": 0.0700073093175888,
+ "learning_rate": 0.0006,
+ "loss": 4.811261177062988,
+ "step": 518
+ },
+ {
+ "epoch": 7.209606986899563,
+ "grad_norm": 0.05830753222107887,
+ "learning_rate": 0.0006,
+ "loss": 4.818418025970459,
+ "step": 519
+ },
+ {
+ "epoch": 7.223580786026201,
+ "grad_norm": 0.06053008884191513,
+ "learning_rate": 0.0006,
+ "loss": 4.830060005187988,
+ "step": 520
+ },
+ {
+ "epoch": 7.2375545851528384,
+ "grad_norm": 0.04992729425430298,
+ "learning_rate": 0.0006,
+ "loss": 4.820477485656738,
+ "step": 521
+ },
+ {
+ "epoch": 7.251528384279476,
+ "grad_norm": 0.03906334191560745,
+ "learning_rate": 0.0006,
+ "loss": 4.776924133300781,
+ "step": 522
+ },
+ {
+ "epoch": 7.265502183406113,
+ "grad_norm": 0.041200339794158936,
+ "learning_rate": 0.0006,
+ "loss": 4.795502662658691,
+ "step": 523
+ },
+ {
+ "epoch": 7.279475982532751,
+ "grad_norm": 0.03866710141301155,
+ "learning_rate": 0.0006,
+ "loss": 4.748326778411865,
+ "step": 524
+ },
+ {
+ "epoch": 7.293449781659389,
+ "grad_norm": 0.03892578184604645,
+ "learning_rate": 0.0006,
+ "loss": 4.731060028076172,
+ "step": 525
+ },
+ {
+ "epoch": 7.307423580786026,
+ "grad_norm": 0.034929852932691574,
+ "learning_rate": 0.0006,
+ "loss": 4.769538879394531,
+ "step": 526
+ },
+ {
+ "epoch": 7.321397379912664,
+ "grad_norm": 0.03499983623623848,
+ "learning_rate": 0.0006,
+ "loss": 4.750111103057861,
+ "step": 527
+ },
+ {
+ "epoch": 7.335371179039301,
+ "grad_norm": 0.023694142699241638,
+ "learning_rate": 0.0006,
+ "loss": 4.741044998168945,
+ "step": 528
+ },
+ {
+ "epoch": 7.349344978165939,
+ "grad_norm": 0.02783721685409546,
+ "learning_rate": 0.0006,
+ "loss": 4.733529090881348,
+ "step": 529
+ },
+ {
+ "epoch": 7.3633187772925766,
+ "grad_norm": 0.022906454280018806,
+ "learning_rate": 0.0006,
+ "loss": 4.713002681732178,
+ "step": 530
+ },
+ {
+ "epoch": 7.377292576419214,
+ "grad_norm": 0.020011693239212036,
+ "learning_rate": 0.0006,
+ "loss": 4.6840620040893555,
+ "step": 531
+ },
+ {
+ "epoch": 7.391266375545851,
+ "grad_norm": 0.019985370337963104,
+ "learning_rate": 0.0006,
+ "loss": 4.695000171661377,
+ "step": 532
+ },
+ {
+ "epoch": 7.405240174672489,
+ "grad_norm": 0.019822653383016586,
+ "learning_rate": 0.0006,
+ "loss": 4.709036350250244,
+ "step": 533
+ },
+ {
+ "epoch": 7.419213973799127,
+ "grad_norm": 0.020615894347429276,
+ "learning_rate": 0.0006,
+ "loss": 4.679416656494141,
+ "step": 534
+ },
+ {
+ "epoch": 7.4331877729257645,
+ "grad_norm": 0.01958257146179676,
+ "learning_rate": 0.0006,
+ "loss": 4.704957008361816,
+ "step": 535
+ },
+ {
+ "epoch": 7.447161572052401,
+ "grad_norm": 0.02040509134531021,
+ "learning_rate": 0.0006,
+ "loss": 4.651505470275879,
+ "step": 536
+ },
+ {
+ "epoch": 7.461135371179039,
+ "grad_norm": 0.01626836135983467,
+ "learning_rate": 0.0006,
+ "loss": 4.694278240203857,
+ "step": 537
+ },
+ {
+ "epoch": 7.475109170305677,
+ "grad_norm": 0.01660163700580597,
+ "learning_rate": 0.0006,
+ "loss": 4.662658214569092,
+ "step": 538
+ },
+ {
+ "epoch": 7.489082969432315,
+ "grad_norm": 0.016483576968312263,
+ "learning_rate": 0.0006,
+ "loss": 4.695555686950684,
+ "step": 539
+ },
+ {
+ "epoch": 7.503056768558952,
+ "grad_norm": 0.018176909536123276,
+ "learning_rate": 0.0006,
+ "loss": 4.646458625793457,
+ "step": 540
+ },
+ {
+ "epoch": 7.517030567685589,
+ "grad_norm": 0.018314503133296967,
+ "learning_rate": 0.0006,
+ "loss": 4.643884181976318,
+ "step": 541
+ },
+ {
+ "epoch": 7.531004366812227,
+ "grad_norm": 0.016406886279582977,
+ "learning_rate": 0.0006,
+ "loss": 4.637638092041016,
+ "step": 542
+ },
+ {
+ "epoch": 7.544978165938865,
+ "grad_norm": 0.017510421574115753,
+ "learning_rate": 0.0006,
+ "loss": 4.6297926902771,
+ "step": 543
+ },
+ {
+ "epoch": 7.558951965065502,
+ "grad_norm": 0.021575570106506348,
+ "learning_rate": 0.0006,
+ "loss": 4.657093048095703,
+ "step": 544
+ },
+ {
+ "epoch": 7.5729257641921395,
+ "grad_norm": 0.024670056998729706,
+ "learning_rate": 0.0006,
+ "loss": 4.637840270996094,
+ "step": 545
+ },
+ {
+ "epoch": 7.586899563318777,
+ "grad_norm": 0.026005825027823448,
+ "learning_rate": 0.0006,
+ "loss": 4.622672080993652,
+ "step": 546
+ },
+ {
+ "epoch": 7.600873362445415,
+ "grad_norm": 0.024355988949537277,
+ "learning_rate": 0.0006,
+ "loss": 4.627206802368164,
+ "step": 547
+ },
+ {
+ "epoch": 7.614847161572053,
+ "grad_norm": 0.025826960802078247,
+ "learning_rate": 0.0006,
+ "loss": 4.616837501525879,
+ "step": 548
+ },
+ {
+ "epoch": 7.62882096069869,
+ "grad_norm": 0.02809619903564453,
+ "learning_rate": 0.0006,
+ "loss": 4.643812656402588,
+ "step": 549
+ },
+ {
+ "epoch": 7.642794759825327,
+ "grad_norm": 0.023823536932468414,
+ "learning_rate": 0.0006,
+ "loss": 4.623858451843262,
+ "step": 550
+ },
+ {
+ "epoch": 7.656768558951965,
+ "grad_norm": 0.024948647245764732,
+ "learning_rate": 0.0006,
+ "loss": 4.635528564453125,
+ "step": 551
+ },
+ {
+ "epoch": 7.670742358078603,
+ "grad_norm": 0.027852604165673256,
+ "learning_rate": 0.0006,
+ "loss": 4.606395721435547,
+ "step": 552
+ },
+ {
+ "epoch": 7.68471615720524,
+ "grad_norm": 0.031888775527477264,
+ "learning_rate": 0.0006,
+ "loss": 4.630072593688965,
+ "step": 553
+ },
+ {
+ "epoch": 7.698689956331878,
+ "grad_norm": 0.04423221945762634,
+ "learning_rate": 0.0006,
+ "loss": 4.592362880706787,
+ "step": 554
+ },
+ {
+ "epoch": 7.712663755458515,
+ "grad_norm": 0.05360350012779236,
+ "learning_rate": 0.0006,
+ "loss": 4.626799583435059,
+ "step": 555
+ },
+ {
+ "epoch": 7.726637554585153,
+ "grad_norm": 0.05218035727739334,
+ "learning_rate": 0.0006,
+ "loss": 4.591753005981445,
+ "step": 556
+ },
+ {
+ "epoch": 7.74061135371179,
+ "grad_norm": 0.04740380123257637,
+ "learning_rate": 0.0006,
+ "loss": 4.611865520477295,
+ "step": 557
+ },
+ {
+ "epoch": 7.754585152838428,
+ "grad_norm": 0.04325862228870392,
+ "learning_rate": 0.0006,
+ "loss": 4.585417747497559,
+ "step": 558
+ },
+ {
+ "epoch": 7.7685589519650655,
+ "grad_norm": 0.047380927950143814,
+ "learning_rate": 0.0006,
+ "loss": 4.595690727233887,
+ "step": 559
+ },
+ {
+ "epoch": 7.782532751091703,
+ "grad_norm": 0.05398833379149437,
+ "learning_rate": 0.0006,
+ "loss": 4.670032024383545,
+ "step": 560
+ },
+ {
+ "epoch": 7.796506550218341,
+ "grad_norm": 0.05550206080079079,
+ "learning_rate": 0.0006,
+ "loss": 4.603083610534668,
+ "step": 561
+ },
+ {
+ "epoch": 7.810480349344978,
+ "grad_norm": 0.048703186213970184,
+ "learning_rate": 0.0006,
+ "loss": 4.60882568359375,
+ "step": 562
+ },
+ {
+ "epoch": 7.824454148471616,
+ "grad_norm": 0.03849068656563759,
+ "learning_rate": 0.0006,
+ "loss": 4.600196838378906,
+ "step": 563
+ },
+ {
+ "epoch": 7.8384279475982535,
+ "grad_norm": 0.04322432354092598,
+ "learning_rate": 0.0006,
+ "loss": 4.635777473449707,
+ "step": 564
+ },
+ {
+ "epoch": 7.85240174672489,
+ "grad_norm": 0.03958692029118538,
+ "learning_rate": 0.0006,
+ "loss": 4.586699962615967,
+ "step": 565
+ },
+ {
+ "epoch": 7.866375545851528,
+ "grad_norm": 0.035496462136507034,
+ "learning_rate": 0.0006,
+ "loss": 4.602683067321777,
+ "step": 566
+ },
+ {
+ "epoch": 7.880349344978166,
+ "grad_norm": 0.038870155811309814,
+ "learning_rate": 0.0006,
+ "loss": 4.635684013366699,
+ "step": 567
+ },
+ {
+ "epoch": 7.894323144104804,
+ "grad_norm": 0.038049351423978806,
+ "learning_rate": 0.0006,
+ "loss": 4.5812602043151855,
+ "step": 568
+ },
+ {
+ "epoch": 7.908296943231441,
+ "grad_norm": 0.029217766597867012,
+ "learning_rate": 0.0006,
+ "loss": 4.560367584228516,
+ "step": 569
+ },
+ {
+ "epoch": 7.922270742358078,
+ "grad_norm": 0.028376970440149307,
+ "learning_rate": 0.0006,
+ "loss": 4.578996658325195,
+ "step": 570
+ },
+ {
+ "epoch": 7.936244541484716,
+ "grad_norm": 0.035108938813209534,
+ "learning_rate": 0.0006,
+ "loss": 4.554547309875488,
+ "step": 571
+ },
+ {
+ "epoch": 7.950218340611354,
+ "grad_norm": 0.02971036173403263,
+ "learning_rate": 0.0006,
+ "loss": 4.5761919021606445,
+ "step": 572
+ },
+ {
+ "epoch": 7.964192139737992,
+ "grad_norm": 0.02690828964114189,
+ "learning_rate": 0.0006,
+ "loss": 4.568772315979004,
+ "step": 573
+ },
+ {
+ "epoch": 7.978165938864628,
+ "grad_norm": 0.023910939693450928,
+ "learning_rate": 0.0006,
+ "loss": 4.56700325012207,
+ "step": 574
+ },
+ {
+ "epoch": 7.992139737991266,
+ "grad_norm": 0.02027987875044346,
+ "learning_rate": 0.0006,
+ "loss": 4.563353538513184,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.02621232345700264,
+ "learning_rate": 0.0006,
+ "loss": 4.52655029296875,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.659845352172852,
+ "eval_runtime": 54.5122,
+ "eval_samples_per_second": 44.797,
+ "eval_steps_per_second": 1.413,
+ "step": 576
+ },
+ {
+ "epoch": 8.013973799126637,
+ "grad_norm": 0.024295445531606674,
+ "learning_rate": 0.0006,
+ "loss": 4.514026641845703,
+ "step": 577
+ },
+ {
+ "epoch": 8.027947598253276,
+ "grad_norm": 0.029430922120809555,
+ "learning_rate": 0.0006,
+ "loss": 4.479931831359863,
+ "step": 578
+ },
+ {
+ "epoch": 8.041921397379912,
+ "grad_norm": 0.03156977519392967,
+ "learning_rate": 0.0006,
+ "loss": 4.529452323913574,
+ "step": 579
+ },
+ {
+ "epoch": 8.055895196506551,
+ "grad_norm": 0.03411492332816124,
+ "learning_rate": 0.0006,
+ "loss": 4.501816749572754,
+ "step": 580
+ },
+ {
+ "epoch": 8.069868995633188,
+ "grad_norm": 0.03944215178489685,
+ "learning_rate": 0.0006,
+ "loss": 4.503504753112793,
+ "step": 581
+ },
+ {
+ "epoch": 8.083842794759825,
+ "grad_norm": 0.04511773958802223,
+ "learning_rate": 0.0006,
+ "loss": 4.481729984283447,
+ "step": 582
+ },
+ {
+ "epoch": 8.097816593886463,
+ "grad_norm": 0.03235149383544922,
+ "learning_rate": 0.0006,
+ "loss": 4.510499954223633,
+ "step": 583
+ },
+ {
+ "epoch": 8.1117903930131,
+ "grad_norm": 0.027723919600248337,
+ "learning_rate": 0.0006,
+ "loss": 4.492958068847656,
+ "step": 584
+ },
+ {
+ "epoch": 8.125764192139737,
+ "grad_norm": 0.033535368740558624,
+ "learning_rate": 0.0006,
+ "loss": 4.480009078979492,
+ "step": 585
+ },
+ {
+ "epoch": 8.139737991266376,
+ "grad_norm": 0.03412545099854469,
+ "learning_rate": 0.0006,
+ "loss": 4.464960098266602,
+ "step": 586
+ },
+ {
+ "epoch": 8.153711790393013,
+ "grad_norm": 0.03285292908549309,
+ "learning_rate": 0.0006,
+ "loss": 4.478358745574951,
+ "step": 587
+ },
+ {
+ "epoch": 8.167685589519651,
+ "grad_norm": 0.03460532799363136,
+ "learning_rate": 0.0006,
+ "loss": 4.490439414978027,
+ "step": 588
+ },
+ {
+ "epoch": 8.181659388646288,
+ "grad_norm": 0.037275977432727814,
+ "learning_rate": 0.0006,
+ "loss": 4.473151683807373,
+ "step": 589
+ },
+ {
+ "epoch": 8.195633187772925,
+ "grad_norm": 0.03485316038131714,
+ "learning_rate": 0.0006,
+ "loss": 4.491796493530273,
+ "step": 590
+ },
+ {
+ "epoch": 8.209606986899564,
+ "grad_norm": 0.03405699506402016,
+ "learning_rate": 0.0006,
+ "loss": 4.473565101623535,
+ "step": 591
+ },
+ {
+ "epoch": 8.2235807860262,
+ "grad_norm": 0.03975093364715576,
+ "learning_rate": 0.0006,
+ "loss": 4.494463920593262,
+ "step": 592
+ },
+ {
+ "epoch": 8.237554585152838,
+ "grad_norm": 0.03563615307211876,
+ "learning_rate": 0.0006,
+ "loss": 4.458979606628418,
+ "step": 593
+ },
+ {
+ "epoch": 8.251528384279476,
+ "grad_norm": 0.037183649837970734,
+ "learning_rate": 0.0006,
+ "loss": 4.4701948165893555,
+ "step": 594
+ },
+ {
+ "epoch": 8.265502183406113,
+ "grad_norm": 0.039340466260910034,
+ "learning_rate": 0.0006,
+ "loss": 4.489675521850586,
+ "step": 595
+ },
+ {
+ "epoch": 8.279475982532752,
+ "grad_norm": 0.03162173181772232,
+ "learning_rate": 0.0006,
+ "loss": 4.422170162200928,
+ "step": 596
+ },
+ {
+ "epoch": 8.293449781659389,
+ "grad_norm": 0.03257273510098457,
+ "learning_rate": 0.0006,
+ "loss": 4.467840194702148,
+ "step": 597
+ },
+ {
+ "epoch": 8.307423580786025,
+ "grad_norm": 0.028066672384738922,
+ "learning_rate": 0.0006,
+ "loss": 4.471856117248535,
+ "step": 598
+ },
+ {
+ "epoch": 8.321397379912664,
+ "grad_norm": 0.032139431685209274,
+ "learning_rate": 0.0006,
+ "loss": 4.485661029815674,
+ "step": 599
+ },
+ {
+ "epoch": 8.335371179039301,
+ "grad_norm": 0.03333858773112297,
+ "learning_rate": 0.0006,
+ "loss": 4.411584854125977,
+ "step": 600
+ },
+ {
+ "epoch": 8.34934497816594,
+ "grad_norm": 0.03705155476927757,
+ "learning_rate": 0.0006,
+ "loss": 4.466585159301758,
+ "step": 601
+ },
+ {
+ "epoch": 8.363318777292577,
+ "grad_norm": 0.03022557683289051,
+ "learning_rate": 0.0006,
+ "loss": 4.4287428855896,
+ "step": 602
+ },
+ {
+ "epoch": 8.377292576419213,
+ "grad_norm": 0.02911069616675377,
+ "learning_rate": 0.0006,
+ "loss": 4.432306289672852,
+ "step": 603
+ },
+ {
+ "epoch": 8.391266375545852,
+ "grad_norm": 0.0332532562315464,
+ "learning_rate": 0.0006,
+ "loss": 4.446920871734619,
+ "step": 604
+ },
+ {
+ "epoch": 8.405240174672489,
+ "grad_norm": 0.028356043621897697,
+ "learning_rate": 0.0006,
+ "loss": 4.41445779800415,
+ "step": 605
+ },
+ {
+ "epoch": 8.419213973799126,
+ "grad_norm": 0.026536710560321808,
+ "learning_rate": 0.0006,
+ "loss": 4.45195198059082,
+ "step": 606
+ },
+ {
+ "epoch": 8.433187772925764,
+ "grad_norm": 0.027183571830391884,
+ "learning_rate": 0.0006,
+ "loss": 4.482472896575928,
+ "step": 607
+ },
+ {
+ "epoch": 8.447161572052401,
+ "grad_norm": 0.02418459579348564,
+ "learning_rate": 0.0006,
+ "loss": 4.407785415649414,
+ "step": 608
+ },
+ {
+ "epoch": 8.46113537117904,
+ "grad_norm": 0.03382935747504234,
+ "learning_rate": 0.0006,
+ "loss": 4.457126140594482,
+ "step": 609
+ },
+ {
+ "epoch": 8.475109170305677,
+ "grad_norm": 0.0399114228785038,
+ "learning_rate": 0.0006,
+ "loss": 4.404670238494873,
+ "step": 610
+ },
+ {
+ "epoch": 8.489082969432314,
+ "grad_norm": 0.02914121001958847,
+ "learning_rate": 0.0006,
+ "loss": 4.385491371154785,
+ "step": 611
+ },
+ {
+ "epoch": 8.503056768558952,
+ "grad_norm": 0.024029329419136047,
+ "learning_rate": 0.0006,
+ "loss": 4.3807878494262695,
+ "step": 612
+ },
+ {
+ "epoch": 8.51703056768559,
+ "grad_norm": 0.024073908105492592,
+ "learning_rate": 0.0006,
+ "loss": 4.393002033233643,
+ "step": 613
+ },
+ {
+ "epoch": 8.531004366812226,
+ "grad_norm": 0.024022364988923073,
+ "learning_rate": 0.0006,
+ "loss": 4.44310188293457,
+ "step": 614
+ },
+ {
+ "epoch": 8.544978165938865,
+ "grad_norm": 0.02552313171327114,
+ "learning_rate": 0.0006,
+ "loss": 4.370255947113037,
+ "step": 615
+ },
+ {
+ "epoch": 8.558951965065502,
+ "grad_norm": 0.022251879796385765,
+ "learning_rate": 0.0006,
+ "loss": 4.366595268249512,
+ "step": 616
+ },
+ {
+ "epoch": 8.57292576419214,
+ "grad_norm": 0.022750860080122948,
+ "learning_rate": 0.0006,
+ "loss": 4.377684116363525,
+ "step": 617
+ },
+ {
+ "epoch": 8.586899563318777,
+ "grad_norm": 0.022422555834054947,
+ "learning_rate": 0.0006,
+ "loss": 4.397234916687012,
+ "step": 618
+ },
+ {
+ "epoch": 8.600873362445414,
+ "grad_norm": 0.02737540379166603,
+ "learning_rate": 0.0006,
+ "loss": 4.406569957733154,
+ "step": 619
+ },
+ {
+ "epoch": 8.614847161572053,
+ "grad_norm": 0.0230751670897007,
+ "learning_rate": 0.0006,
+ "loss": 4.37363862991333,
+ "step": 620
+ },
+ {
+ "epoch": 8.62882096069869,
+ "grad_norm": 0.02010422758758068,
+ "learning_rate": 0.0006,
+ "loss": 4.396723747253418,
+ "step": 621
+ },
+ {
+ "epoch": 8.642794759825328,
+ "grad_norm": 0.024875663220882416,
+ "learning_rate": 0.0006,
+ "loss": 4.382737159729004,
+ "step": 622
+ },
+ {
+ "epoch": 8.656768558951965,
+ "grad_norm": 0.026101084426045418,
+ "learning_rate": 0.0006,
+ "loss": 4.376001358032227,
+ "step": 623
+ },
+ {
+ "epoch": 8.670742358078602,
+ "grad_norm": 0.026131760329008102,
+ "learning_rate": 0.0006,
+ "loss": 4.392600059509277,
+ "step": 624
+ },
+ {
+ "epoch": 8.68471615720524,
+ "grad_norm": 0.02580229938030243,
+ "learning_rate": 0.0006,
+ "loss": 4.383554458618164,
+ "step": 625
+ },
+ {
+ "epoch": 8.698689956331878,
+ "grad_norm": 0.02919621206820011,
+ "learning_rate": 0.0006,
+ "loss": 4.369998455047607,
+ "step": 626
+ },
+ {
+ "epoch": 8.712663755458514,
+ "grad_norm": 0.03268479183316231,
+ "learning_rate": 0.0006,
+ "loss": 4.364940166473389,
+ "step": 627
+ },
+ {
+ "epoch": 8.726637554585153,
+ "grad_norm": 0.031615134328603745,
+ "learning_rate": 0.0006,
+ "loss": 4.354142189025879,
+ "step": 628
+ },
+ {
+ "epoch": 8.74061135371179,
+ "grad_norm": 0.03091943822801113,
+ "learning_rate": 0.0006,
+ "loss": 4.405896186828613,
+ "step": 629
+ },
+ {
+ "epoch": 8.754585152838429,
+ "grad_norm": 0.03459984436631203,
+ "learning_rate": 0.0006,
+ "loss": 4.386331558227539,
+ "step": 630
+ },
+ {
+ "epoch": 8.768558951965066,
+ "grad_norm": 0.03276519104838371,
+ "learning_rate": 0.0006,
+ "loss": 4.351153373718262,
+ "step": 631
+ },
+ {
+ "epoch": 8.782532751091702,
+ "grad_norm": 0.03300934657454491,
+ "learning_rate": 0.0006,
+ "loss": 4.364960670471191,
+ "step": 632
+ },
+ {
+ "epoch": 8.796506550218341,
+ "grad_norm": 0.03618944436311722,
+ "learning_rate": 0.0006,
+ "loss": 4.3519134521484375,
+ "step": 633
+ },
+ {
+ "epoch": 8.810480349344978,
+ "grad_norm": 0.03368232026696205,
+ "learning_rate": 0.0006,
+ "loss": 4.374147891998291,
+ "step": 634
+ },
+ {
+ "epoch": 8.824454148471617,
+ "grad_norm": 0.03252463415265083,
+ "learning_rate": 0.0006,
+ "loss": 4.367391586303711,
+ "step": 635
+ },
+ {
+ "epoch": 8.838427947598253,
+ "grad_norm": 0.03680579736828804,
+ "learning_rate": 0.0006,
+ "loss": 4.364116191864014,
+ "step": 636
+ },
+ {
+ "epoch": 8.85240174672489,
+ "grad_norm": 0.0317164771258831,
+ "learning_rate": 0.0006,
+ "loss": 4.379790306091309,
+ "step": 637
+ },
+ {
+ "epoch": 8.866375545851529,
+ "grad_norm": 0.031701602041721344,
+ "learning_rate": 0.0006,
+ "loss": 4.353549003601074,
+ "step": 638
+ },
+ {
+ "epoch": 8.880349344978166,
+ "grad_norm": 0.029211340472102165,
+ "learning_rate": 0.0006,
+ "loss": 4.343072891235352,
+ "step": 639
+ },
+ {
+ "epoch": 8.894323144104803,
+ "grad_norm": 0.02774505503475666,
+ "learning_rate": 0.0006,
+ "loss": 4.354020118713379,
+ "step": 640
+ },
+ {
+ "epoch": 8.908296943231441,
+ "grad_norm": 0.027463624253869057,
+ "learning_rate": 0.0006,
+ "loss": 4.354701519012451,
+ "step": 641
+ },
+ {
+ "epoch": 8.922270742358078,
+ "grad_norm": 0.023732105270028114,
+ "learning_rate": 0.0006,
+ "loss": 4.347830772399902,
+ "step": 642
+ },
+ {
+ "epoch": 8.936244541484717,
+ "grad_norm": 0.02339051477611065,
+ "learning_rate": 0.0006,
+ "loss": 4.342405319213867,
+ "step": 643
+ },
+ {
+ "epoch": 8.950218340611354,
+ "grad_norm": 0.023744868114590645,
+ "learning_rate": 0.0006,
+ "loss": 4.352578163146973,
+ "step": 644
+ },
+ {
+ "epoch": 8.96419213973799,
+ "grad_norm": 0.02563423290848732,
+ "learning_rate": 0.0006,
+ "loss": 4.37408971786499,
+ "step": 645
+ },
+ {
+ "epoch": 8.97816593886463,
+ "grad_norm": 0.031334877014160156,
+ "learning_rate": 0.0006,
+ "loss": 4.309673309326172,
+ "step": 646
+ },
+ {
+ "epoch": 8.992139737991266,
+ "grad_norm": 0.03283081576228142,
+ "learning_rate": 0.0006,
+ "loss": 4.348544597625732,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.03263505920767784,
+ "learning_rate": 0.0006,
+ "loss": 4.307372093200684,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.477582931518555,
+ "eval_runtime": 50.1212,
+ "eval_samples_per_second": 48.722,
+ "eval_steps_per_second": 1.536,
+ "step": 648
+ },
+ {
+ "epoch": 9.013973799126637,
+ "grad_norm": 0.038239408284425735,
+ "learning_rate": 0.0006,
+ "loss": 4.2784552574157715,
+ "step": 649
+ },
+ {
+ "epoch": 9.027947598253276,
+ "grad_norm": 0.044226426631212234,
+ "learning_rate": 0.0006,
+ "loss": 4.332424163818359,
+ "step": 650
+ },
+ {
+ "epoch": 9.041921397379912,
+ "grad_norm": 0.04743504151701927,
+ "learning_rate": 0.0006,
+ "loss": 4.303574085235596,
+ "step": 651
+ },
+ {
+ "epoch": 9.055895196506551,
+ "grad_norm": 0.04348866268992424,
+ "learning_rate": 0.0006,
+ "loss": 4.295550346374512,
+ "step": 652
+ },
+ {
+ "epoch": 9.069868995633188,
+ "grad_norm": 0.04830600693821907,
+ "learning_rate": 0.0006,
+ "loss": 4.2577619552612305,
+ "step": 653
+ },
+ {
+ "epoch": 9.083842794759825,
+ "grad_norm": 0.05154724419116974,
+ "learning_rate": 0.0006,
+ "loss": 4.314383506774902,
+ "step": 654
+ },
+ {
+ "epoch": 9.097816593886463,
+ "grad_norm": 0.044492293149232864,
+ "learning_rate": 0.0006,
+ "loss": 4.32614803314209,
+ "step": 655
+ },
+ {
+ "epoch": 9.1117903930131,
+ "grad_norm": 0.03842560201883316,
+ "learning_rate": 0.0006,
+ "loss": 4.273819446563721,
+ "step": 656
+ },
+ {
+ "epoch": 9.125764192139737,
+ "grad_norm": 0.043655358254909515,
+ "learning_rate": 0.0006,
+ "loss": 4.334014892578125,
+ "step": 657
+ },
+ {
+ "epoch": 9.139737991266376,
+ "grad_norm": 0.051922112703323364,
+ "learning_rate": 0.0006,
+ "loss": 4.308163642883301,
+ "step": 658
+ },
+ {
+ "epoch": 9.153711790393013,
+ "grad_norm": 0.049958787858486176,
+ "learning_rate": 0.0006,
+ "loss": 4.30555534362793,
+ "step": 659
+ },
+ {
+ "epoch": 9.167685589519651,
+ "grad_norm": 0.03839104622602463,
+ "learning_rate": 0.0006,
+ "loss": 4.316109657287598,
+ "step": 660
+ },
+ {
+ "epoch": 9.181659388646288,
+ "grad_norm": 0.03898056969046593,
+ "learning_rate": 0.0006,
+ "loss": 4.308863639831543,
+ "step": 661
+ },
+ {
+ "epoch": 9.195633187772925,
+ "grad_norm": 0.028817247599363327,
+ "learning_rate": 0.0006,
+ "loss": 4.300504684448242,
+ "step": 662
+ },
+ {
+ "epoch": 9.209606986899564,
+ "grad_norm": 0.030067335814237595,
+ "learning_rate": 0.0006,
+ "loss": 4.259067535400391,
+ "step": 663
+ },
+ {
+ "epoch": 9.2235807860262,
+ "grad_norm": 0.03195219859480858,
+ "learning_rate": 0.0006,
+ "loss": 4.3144426345825195,
+ "step": 664
+ },
+ {
+ "epoch": 9.237554585152838,
+ "grad_norm": 0.03194814175367355,
+ "learning_rate": 0.0006,
+ "loss": 4.259864330291748,
+ "step": 665
+ },
+ {
+ "epoch": 9.251528384279476,
+ "grad_norm": 0.02754005789756775,
+ "learning_rate": 0.0006,
+ "loss": 4.291876316070557,
+ "step": 666
+ },
+ {
+ "epoch": 9.265502183406113,
+ "grad_norm": 0.026083929464221,
+ "learning_rate": 0.0006,
+ "loss": 4.205921649932861,
+ "step": 667
+ },
+ {
+ "epoch": 9.279475982532752,
+ "grad_norm": 0.025165516883134842,
+ "learning_rate": 0.0006,
+ "loss": 4.23714017868042,
+ "step": 668
+ },
+ {
+ "epoch": 9.293449781659389,
+ "grad_norm": 0.02380996011197567,
+ "learning_rate": 0.0006,
+ "loss": 4.263561725616455,
+ "step": 669
+ },
+ {
+ "epoch": 9.307423580786025,
+ "grad_norm": 0.025552157312631607,
+ "learning_rate": 0.0006,
+ "loss": 4.222456932067871,
+ "step": 670
+ },
+ {
+ "epoch": 9.321397379912664,
+ "grad_norm": 0.024957234039902687,
+ "learning_rate": 0.0006,
+ "loss": 4.250582695007324,
+ "step": 671
+ },
+ {
+ "epoch": 9.335371179039301,
+ "grad_norm": 0.02580283023416996,
+ "learning_rate": 0.0006,
+ "loss": 4.240250587463379,
+ "step": 672
+ },
+ {
+ "epoch": 9.34934497816594,
+ "grad_norm": 0.020701562985777855,
+ "learning_rate": 0.0006,
+ "loss": 4.222497463226318,
+ "step": 673
+ },
+ {
+ "epoch": 9.363318777292577,
+ "grad_norm": 0.021373746916651726,
+ "learning_rate": 0.0006,
+ "loss": 4.242282390594482,
+ "step": 674
+ },
+ {
+ "epoch": 9.377292576419213,
+ "grad_norm": 0.02025660127401352,
+ "learning_rate": 0.0006,
+ "loss": 4.270265579223633,
+ "step": 675
+ },
+ {
+ "epoch": 9.391266375545852,
+ "grad_norm": 0.02325408160686493,
+ "learning_rate": 0.0006,
+ "loss": 4.222276210784912,
+ "step": 676
+ },
+ {
+ "epoch": 9.405240174672489,
+ "grad_norm": 0.02470816671848297,
+ "learning_rate": 0.0006,
+ "loss": 4.238652229309082,
+ "step": 677
+ },
+ {
+ "epoch": 9.419213973799126,
+ "grad_norm": 0.02343972586095333,
+ "learning_rate": 0.0006,
+ "loss": 4.24069881439209,
+ "step": 678
+ },
+ {
+ "epoch": 9.433187772925764,
+ "grad_norm": 0.021034302189946175,
+ "learning_rate": 0.0006,
+ "loss": 4.244692802429199,
+ "step": 679
+ },
+ {
+ "epoch": 9.447161572052401,
+ "grad_norm": 0.021374190226197243,
+ "learning_rate": 0.0006,
+ "loss": 4.224084854125977,
+ "step": 680
+ },
+ {
+ "epoch": 9.46113537117904,
+ "grad_norm": 0.020527871325612068,
+ "learning_rate": 0.0006,
+ "loss": 4.262082099914551,
+ "step": 681
+ },
+ {
+ "epoch": 9.475109170305677,
+ "grad_norm": 0.01585977151989937,
+ "learning_rate": 0.0006,
+ "loss": 4.226033687591553,
+ "step": 682
+ },
+ {
+ "epoch": 9.489082969432314,
+ "grad_norm": 0.016423987224698067,
+ "learning_rate": 0.0006,
+ "loss": 4.171637535095215,
+ "step": 683
+ },
+ {
+ "epoch": 9.503056768558952,
+ "grad_norm": 0.015297142788767815,
+ "learning_rate": 0.0006,
+ "loss": 4.209469795227051,
+ "step": 684
+ },
+ {
+ "epoch": 9.51703056768559,
+ "grad_norm": 0.014817374758422375,
+ "learning_rate": 0.0006,
+ "loss": 4.216704845428467,
+ "step": 685
+ },
+ {
+ "epoch": 9.531004366812226,
+ "grad_norm": 0.015434044413268566,
+ "learning_rate": 0.0006,
+ "loss": 4.256552696228027,
+ "step": 686
+ },
+ {
+ "epoch": 9.544978165938865,
+ "grad_norm": 0.016138242557644844,
+ "learning_rate": 0.0006,
+ "loss": 4.218762397766113,
+ "step": 687
+ },
+ {
+ "epoch": 9.558951965065502,
+ "grad_norm": 0.017201369628310204,
+ "learning_rate": 0.0006,
+ "loss": 4.251995086669922,
+ "step": 688
+ },
+ {
+ "epoch": 9.57292576419214,
+ "grad_norm": 0.01714685745537281,
+ "learning_rate": 0.0006,
+ "loss": 4.219054222106934,
+ "step": 689
+ },
+ {
+ "epoch": 9.586899563318777,
+ "grad_norm": 0.020723173394799232,
+ "learning_rate": 0.0006,
+ "loss": 4.255344390869141,
+ "step": 690
+ },
+ {
+ "epoch": 9.600873362445414,
+ "grad_norm": 0.028826871886849403,
+ "learning_rate": 0.0006,
+ "loss": 4.221752166748047,
+ "step": 691
+ },
+ {
+ "epoch": 9.614847161572053,
+ "grad_norm": 0.03474748879671097,
+ "learning_rate": 0.0006,
+ "loss": 4.205111503601074,
+ "step": 692
+ },
+ {
+ "epoch": 9.62882096069869,
+ "grad_norm": 0.030536217615008354,
+ "learning_rate": 0.0006,
+ "loss": 4.232375144958496,
+ "step": 693
+ },
+ {
+ "epoch": 9.642794759825328,
+ "grad_norm": 0.03158785030245781,
+ "learning_rate": 0.0006,
+ "loss": 4.186178207397461,
+ "step": 694
+ },
+ {
+ "epoch": 9.656768558951965,
+ "grad_norm": 0.032505910843610764,
+ "learning_rate": 0.0006,
+ "loss": 4.208681106567383,
+ "step": 695
+ },
+ {
+ "epoch": 9.670742358078602,
+ "grad_norm": 0.025617435574531555,
+ "learning_rate": 0.0006,
+ "loss": 4.190085411071777,
+ "step": 696
+ },
+ {
+ "epoch": 9.68471615720524,
+ "grad_norm": 0.03047073632478714,
+ "learning_rate": 0.0006,
+ "loss": 4.210445404052734,
+ "step": 697
+ },
+ {
+ "epoch": 9.698689956331878,
+ "grad_norm": 0.033015694469213486,
+ "learning_rate": 0.0006,
+ "loss": 4.215723037719727,
+ "step": 698
+ },
+ {
+ "epoch": 9.712663755458514,
+ "grad_norm": 0.0364084430038929,
+ "learning_rate": 0.0006,
+ "loss": 4.192442417144775,
+ "step": 699
+ },
+ {
+ "epoch": 9.726637554585153,
+ "grad_norm": 0.03577317297458649,
+ "learning_rate": 0.0006,
+ "loss": 4.20793342590332,
+ "step": 700
+ },
+ {
+ "epoch": 9.74061135371179,
+ "grad_norm": 0.031464435160160065,
+ "learning_rate": 0.0006,
+ "loss": 4.205752372741699,
+ "step": 701
+ },
+ {
+ "epoch": 9.754585152838429,
+ "grad_norm": 0.030628090724349022,
+ "learning_rate": 0.0006,
+ "loss": 4.209503173828125,
+ "step": 702
+ },
+ {
+ "epoch": 9.768558951965066,
+ "grad_norm": 0.031171889975667,
+ "learning_rate": 0.0006,
+ "loss": 4.189100742340088,
+ "step": 703
+ },
+ {
+ "epoch": 9.782532751091702,
+ "grad_norm": 0.026728026568889618,
+ "learning_rate": 0.0006,
+ "loss": 4.175262928009033,
+ "step": 704
+ },
+ {
+ "epoch": 9.796506550218341,
+ "grad_norm": 0.02975568361580372,
+ "learning_rate": 0.0006,
+ "loss": 4.180237770080566,
+ "step": 705
+ },
+ {
+ "epoch": 9.810480349344978,
+ "grad_norm": 0.03690735250711441,
+ "learning_rate": 0.0006,
+ "loss": 4.160732269287109,
+ "step": 706
+ },
+ {
+ "epoch": 9.824454148471617,
+ "grad_norm": 0.03488203138113022,
+ "learning_rate": 0.0006,
+ "loss": 4.228294849395752,
+ "step": 707
+ },
+ {
+ "epoch": 9.838427947598253,
+ "grad_norm": 0.032557982951402664,
+ "learning_rate": 0.0006,
+ "loss": 4.144038200378418,
+ "step": 708
+ },
+ {
+ "epoch": 9.85240174672489,
+ "grad_norm": 0.03189995512366295,
+ "learning_rate": 0.0006,
+ "loss": 4.194624900817871,
+ "step": 709
+ },
+ {
+ "epoch": 9.866375545851529,
+ "grad_norm": 0.03439774736762047,
+ "learning_rate": 0.0006,
+ "loss": 4.216994762420654,
+ "step": 710
+ },
+ {
+ "epoch": 9.880349344978166,
+ "grad_norm": 0.03789396584033966,
+ "learning_rate": 0.0006,
+ "loss": 4.196347236633301,
+ "step": 711
+ },
+ {
+ "epoch": 9.894323144104803,
+ "grad_norm": 0.037980109453201294,
+ "learning_rate": 0.0006,
+ "loss": 4.213890075683594,
+ "step": 712
+ },
+ {
+ "epoch": 9.908296943231441,
+ "grad_norm": 0.043379005044698715,
+ "learning_rate": 0.0006,
+ "loss": 4.209582328796387,
+ "step": 713
+ },
+ {
+ "epoch": 9.922270742358078,
+ "grad_norm": 0.03881588950753212,
+ "learning_rate": 0.0006,
+ "loss": 4.210249900817871,
+ "step": 714
+ },
+ {
+ "epoch": 9.936244541484717,
+ "grad_norm": 0.038644567131996155,
+ "learning_rate": 0.0006,
+ "loss": 4.169578552246094,
+ "step": 715
+ },
+ {
+ "epoch": 9.950218340611354,
+ "grad_norm": 0.03676586598157883,
+ "learning_rate": 0.0006,
+ "loss": 4.234776020050049,
+ "step": 716
+ },
+ {
+ "epoch": 9.96419213973799,
+ "grad_norm": 0.032105959951877594,
+ "learning_rate": 0.0006,
+ "loss": 4.218995094299316,
+ "step": 717
+ },
+ {
+ "epoch": 9.97816593886463,
+ "grad_norm": 0.034359272569417953,
+ "learning_rate": 0.0006,
+ "loss": 4.209888458251953,
+ "step": 718
+ },
+ {
+ "epoch": 9.992139737991266,
+ "grad_norm": 0.02772289142012596,
+ "learning_rate": 0.0006,
+ "loss": 4.201578140258789,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.03038903884589672,
+ "learning_rate": 0.0006,
+ "loss": 4.170413494110107,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.344418048858643,
+ "eval_runtime": 50.1464,
+ "eval_samples_per_second": 48.697,
+ "eval_steps_per_second": 1.536,
+ "step": 720
+ },
+ {
+ "epoch": 10.013973799126637,
+ "grad_norm": 0.026941193267703056,
+ "learning_rate": 0.0006,
+ "loss": 4.122128486633301,
+ "step": 721
+ },
+ {
+ "epoch": 10.027947598253276,
+ "grad_norm": 0.028237640857696533,
+ "learning_rate": 0.0006,
+ "loss": 4.120541572570801,
+ "step": 722
+ },
+ {
+ "epoch": 10.041921397379912,
+ "grad_norm": 0.02316083386540413,
+ "learning_rate": 0.0006,
+ "loss": 4.127598285675049,
+ "step": 723
+ },
+ {
+ "epoch": 10.055895196506551,
+ "grad_norm": 0.02862458862364292,
+ "learning_rate": 0.0006,
+ "loss": 4.066249847412109,
+ "step": 724
+ },
+ {
+ "epoch": 10.069868995633188,
+ "grad_norm": 0.031772635877132416,
+ "learning_rate": 0.0006,
+ "loss": 4.1211652755737305,
+ "step": 725
+ },
+ {
+ "epoch": 10.083842794759825,
+ "grad_norm": 0.031032619997859,
+ "learning_rate": 0.0006,
+ "loss": 4.125894546508789,
+ "step": 726
+ },
+ {
+ "epoch": 10.097816593886463,
+ "grad_norm": 0.02898111566901207,
+ "learning_rate": 0.0006,
+ "loss": 4.119715213775635,
+ "step": 727
+ },
+ {
+ "epoch": 10.1117903930131,
+ "grad_norm": 0.030101103708148003,
+ "learning_rate": 0.0006,
+ "loss": 4.087604522705078,
+ "step": 728
+ },
+ {
+ "epoch": 10.125764192139737,
+ "grad_norm": 0.025814464315772057,
+ "learning_rate": 0.0006,
+ "loss": 4.124494552612305,
+ "step": 729
+ },
+ {
+ "epoch": 10.139737991266376,
+ "grad_norm": 0.029547641053795815,
+ "learning_rate": 0.0006,
+ "loss": 4.072463035583496,
+ "step": 730
+ },
+ {
+ "epoch": 10.153711790393013,
+ "grad_norm": 0.03424989432096481,
+ "learning_rate": 0.0006,
+ "loss": 4.111055374145508,
+ "step": 731
+ },
+ {
+ "epoch": 10.167685589519651,
+ "grad_norm": 0.0335191935300827,
+ "learning_rate": 0.0006,
+ "loss": 4.111437797546387,
+ "step": 732
+ },
+ {
+ "epoch": 10.181659388646288,
+ "grad_norm": 0.02894248627126217,
+ "learning_rate": 0.0006,
+ "loss": 4.133310317993164,
+ "step": 733
+ },
+ {
+ "epoch": 10.195633187772925,
+ "grad_norm": 0.0266376081854105,
+ "learning_rate": 0.0006,
+ "loss": 4.132228851318359,
+ "step": 734
+ },
+ {
+ "epoch": 10.209606986899564,
+ "grad_norm": 0.020824341103434563,
+ "learning_rate": 0.0006,
+ "loss": 4.110835075378418,
+ "step": 735
+ },
+ {
+ "epoch": 10.2235807860262,
+ "grad_norm": 0.021089477464556694,
+ "learning_rate": 0.0006,
+ "loss": 4.1186065673828125,
+ "step": 736
+ },
+ {
+ "epoch": 10.237554585152838,
+ "grad_norm": 0.023007674142718315,
+ "learning_rate": 0.0006,
+ "loss": 4.089912414550781,
+ "step": 737
+ },
+ {
+ "epoch": 10.251528384279476,
+ "grad_norm": 0.025911295786499977,
+ "learning_rate": 0.0006,
+ "loss": 4.10264778137207,
+ "step": 738
+ },
+ {
+ "epoch": 10.265502183406113,
+ "grad_norm": 0.02900099940598011,
+ "learning_rate": 0.0006,
+ "loss": 4.074974060058594,
+ "step": 739
+ },
+ {
+ "epoch": 10.279475982532752,
+ "grad_norm": 0.027182135730981827,
+ "learning_rate": 0.0006,
+ "loss": 4.107949256896973,
+ "step": 740
+ },
+ {
+ "epoch": 10.293449781659389,
+ "grad_norm": 0.027884794399142265,
+ "learning_rate": 0.0006,
+ "loss": 4.039497375488281,
+ "step": 741
+ },
+ {
+ "epoch": 10.307423580786025,
+ "grad_norm": 0.025900574401021004,
+ "learning_rate": 0.0006,
+ "loss": 4.063011646270752,
+ "step": 742
+ },
+ {
+ "epoch": 10.321397379912664,
+ "grad_norm": 0.023031197488307953,
+ "learning_rate": 0.0006,
+ "loss": 4.086951732635498,
+ "step": 743
+ },
+ {
+ "epoch": 10.335371179039301,
+ "grad_norm": 0.021363092586398125,
+ "learning_rate": 0.0006,
+ "loss": 4.140152454376221,
+ "step": 744
+ },
+ {
+ "epoch": 10.34934497816594,
+ "grad_norm": 0.019563496112823486,
+ "learning_rate": 0.0006,
+ "loss": 4.087207794189453,
+ "step": 745
+ },
+ {
+ "epoch": 10.363318777292577,
+ "grad_norm": 0.018893307074904442,
+ "learning_rate": 0.0006,
+ "loss": 4.087675094604492,
+ "step": 746
+ },
+ {
+ "epoch": 10.377292576419213,
+ "grad_norm": 0.020667923614382744,
+ "learning_rate": 0.0006,
+ "loss": 4.079525947570801,
+ "step": 747
+ },
+ {
+ "epoch": 10.391266375545852,
+ "grad_norm": 0.021774202585220337,
+ "learning_rate": 0.0006,
+ "loss": 4.107867240905762,
+ "step": 748
+ },
+ {
+ "epoch": 10.405240174672489,
+ "grad_norm": 0.020068392157554626,
+ "learning_rate": 0.0006,
+ "loss": 4.0873212814331055,
+ "step": 749
+ },
+ {
+ "epoch": 10.419213973799126,
+ "grad_norm": 0.01842055842280388,
+ "learning_rate": 0.0006,
+ "loss": 4.101090431213379,
+ "step": 750
+ },
+ {
+ "epoch": 10.433187772925764,
+ "grad_norm": 0.01795836165547371,
+ "learning_rate": 0.0006,
+ "loss": 4.050619602203369,
+ "step": 751
+ },
+ {
+ "epoch": 10.447161572052401,
+ "grad_norm": 0.019673889502882957,
+ "learning_rate": 0.0006,
+ "loss": 4.086307525634766,
+ "step": 752
+ },
+ {
+ "epoch": 10.46113537117904,
+ "grad_norm": 0.01977507211267948,
+ "learning_rate": 0.0006,
+ "loss": 4.0656023025512695,
+ "step": 753
+ },
+ {
+ "epoch": 10.475109170305677,
+ "grad_norm": 0.019471775740385056,
+ "learning_rate": 0.0006,
+ "loss": 4.046194076538086,
+ "step": 754
+ },
+ {
+ "epoch": 10.489082969432314,
+ "grad_norm": 0.018536966294050217,
+ "learning_rate": 0.0006,
+ "loss": 4.033197402954102,
+ "step": 755
+ },
+ {
+ "epoch": 10.503056768558952,
+ "grad_norm": 0.018902234733104706,
+ "learning_rate": 0.0006,
+ "loss": 4.060090065002441,
+ "step": 756
+ },
+ {
+ "epoch": 10.51703056768559,
+ "grad_norm": 0.01902388036251068,
+ "learning_rate": 0.0006,
+ "loss": 4.046975135803223,
+ "step": 757
+ },
+ {
+ "epoch": 10.531004366812226,
+ "grad_norm": 0.01699388213455677,
+ "learning_rate": 0.0006,
+ "loss": 4.081168174743652,
+ "step": 758
+ },
+ {
+ "epoch": 10.544978165938865,
+ "grad_norm": 0.022350501269102097,
+ "learning_rate": 0.0006,
+ "loss": 4.049786567687988,
+ "step": 759
+ },
+ {
+ "epoch": 10.558951965065502,
+ "grad_norm": 0.023642681539058685,
+ "learning_rate": 0.0006,
+ "loss": 4.055563926696777,
+ "step": 760
+ },
+ {
+ "epoch": 10.57292576419214,
+ "grad_norm": 0.02127036638557911,
+ "learning_rate": 0.0006,
+ "loss": 4.027631759643555,
+ "step": 761
+ },
+ {
+ "epoch": 10.586899563318777,
+ "grad_norm": 0.017590979114174843,
+ "learning_rate": 0.0006,
+ "loss": 4.0793137550354,
+ "step": 762
+ },
+ {
+ "epoch": 10.600873362445414,
+ "grad_norm": 0.016930999234318733,
+ "learning_rate": 0.0006,
+ "loss": 4.027737140655518,
+ "step": 763
+ },
+ {
+ "epoch": 10.614847161572053,
+ "grad_norm": 0.018824463710188866,
+ "learning_rate": 0.0006,
+ "loss": 4.046807289123535,
+ "step": 764
+ },
+ {
+ "epoch": 10.62882096069869,
+ "grad_norm": 0.020024564117193222,
+ "learning_rate": 0.0006,
+ "loss": 4.039668083190918,
+ "step": 765
+ },
+ {
+ "epoch": 10.642794759825328,
+ "grad_norm": 0.0220749881118536,
+ "learning_rate": 0.0006,
+ "loss": 4.031907558441162,
+ "step": 766
+ },
+ {
+ "epoch": 10.656768558951965,
+ "grad_norm": 0.023237163200974464,
+ "learning_rate": 0.0006,
+ "loss": 4.059335708618164,
+ "step": 767
+ },
+ {
+ "epoch": 10.670742358078602,
+ "grad_norm": 0.023948276415467262,
+ "learning_rate": 0.0006,
+ "loss": 4.054678440093994,
+ "step": 768
+ },
+ {
+ "epoch": 10.68471615720524,
+ "grad_norm": 0.02620924636721611,
+ "learning_rate": 0.0006,
+ "loss": 4.063493728637695,
+ "step": 769
+ },
+ {
+ "epoch": 10.698689956331878,
+ "grad_norm": 0.02867635153234005,
+ "learning_rate": 0.0006,
+ "loss": 4.036065578460693,
+ "step": 770
+ },
+ {
+ "epoch": 10.712663755458514,
+ "grad_norm": 0.028705662116408348,
+ "learning_rate": 0.0006,
+ "loss": 4.049670219421387,
+ "step": 771
+ },
+ {
+ "epoch": 10.726637554585153,
+ "grad_norm": 0.024740688502788544,
+ "learning_rate": 0.0006,
+ "loss": 4.06446647644043,
+ "step": 772
+ },
+ {
+ "epoch": 10.74061135371179,
+ "grad_norm": 0.03012487292289734,
+ "learning_rate": 0.0006,
+ "loss": 4.0461015701293945,
+ "step": 773
+ },
+ {
+ "epoch": 10.754585152838429,
+ "grad_norm": 0.03286127373576164,
+ "learning_rate": 0.0006,
+ "loss": 4.025463104248047,
+ "step": 774
+ },
+ {
+ "epoch": 10.768558951965066,
+ "grad_norm": 0.028815945610404015,
+ "learning_rate": 0.0006,
+ "loss": 4.064168930053711,
+ "step": 775
+ },
+ {
+ "epoch": 10.782532751091702,
+ "grad_norm": 0.028760947287082672,
+ "learning_rate": 0.0006,
+ "loss": 4.033624649047852,
+ "step": 776
+ },
+ {
+ "epoch": 10.796506550218341,
+ "grad_norm": 0.02942710369825363,
+ "learning_rate": 0.0006,
+ "loss": 4.0383501052856445,
+ "step": 777
+ },
+ {
+ "epoch": 10.810480349344978,
+ "grad_norm": 0.026153555139899254,
+ "learning_rate": 0.0006,
+ "loss": 4.040336608886719,
+ "step": 778
+ },
+ {
+ "epoch": 10.824454148471617,
+ "grad_norm": 0.025876570492982864,
+ "learning_rate": 0.0006,
+ "loss": 4.051267147064209,
+ "step": 779
+ },
+ {
+ "epoch": 10.838427947598253,
+ "grad_norm": 0.024056321009993553,
+ "learning_rate": 0.0006,
+ "loss": 4.035898208618164,
+ "step": 780
+ },
+ {
+ "epoch": 10.85240174672489,
+ "grad_norm": 0.023602450266480446,
+ "learning_rate": 0.0006,
+ "loss": 4.041120529174805,
+ "step": 781
+ },
+ {
+ "epoch": 10.866375545851529,
+ "grad_norm": 0.0207925196737051,
+ "learning_rate": 0.0006,
+ "loss": 4.030442237854004,
+ "step": 782
+ },
+ {
+ "epoch": 10.880349344978166,
+ "grad_norm": 0.021948475390672684,
+ "learning_rate": 0.0006,
+ "loss": 4.059929847717285,
+ "step": 783
+ },
+ {
+ "epoch": 10.894323144104803,
+ "grad_norm": 0.022555390372872353,
+ "learning_rate": 0.0006,
+ "loss": 4.077475547790527,
+ "step": 784
+ },
+ {
+ "epoch": 10.908296943231441,
+ "grad_norm": 0.020376233384013176,
+ "learning_rate": 0.0006,
+ "loss": 4.038033485412598,
+ "step": 785
+ },
+ {
+ "epoch": 10.922270742358078,
+ "grad_norm": 0.019903237000107765,
+ "learning_rate": 0.0006,
+ "loss": 4.036017417907715,
+ "step": 786
+ },
+ {
+ "epoch": 10.936244541484717,
+ "grad_norm": 0.019737590104341507,
+ "learning_rate": 0.0006,
+ "loss": 4.027589321136475,
+ "step": 787
+ },
+ {
+ "epoch": 10.950218340611354,
+ "grad_norm": 0.017857525497674942,
+ "learning_rate": 0.0006,
+ "loss": 4.039187431335449,
+ "step": 788
+ },
+ {
+ "epoch": 10.96419213973799,
+ "grad_norm": 0.019433340057730675,
+ "learning_rate": 0.0006,
+ "loss": 4.025817394256592,
+ "step": 789
+ },
+ {
+ "epoch": 10.97816593886463,
+ "grad_norm": 0.019131962209939957,
+ "learning_rate": 0.0006,
+ "loss": 4.050541877746582,
+ "step": 790
+ },
+ {
+ "epoch": 10.992139737991266,
+ "grad_norm": 0.01899166963994503,
+ "learning_rate": 0.0006,
+ "loss": 4.034682273864746,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.02292267233133316,
+ "learning_rate": 0.0006,
+ "loss": 4.02860689163208,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.223135471343994,
+ "eval_runtime": 50.1809,
+ "eval_samples_per_second": 48.664,
+ "eval_steps_per_second": 1.534,
+ "step": 792
+ },
+ {
+ "epoch": 11.013973799126637,
+ "grad_norm": 0.02331780269742012,
+ "learning_rate": 0.0006,
+ "loss": 3.9552907943725586,
+ "step": 793
+ },
+ {
+ "epoch": 11.027947598253276,
+ "grad_norm": 0.027006106451153755,
+ "learning_rate": 0.0006,
+ "loss": 3.9303345680236816,
+ "step": 794
+ },
+ {
+ "epoch": 11.041921397379912,
+ "grad_norm": 0.03403666242957115,
+ "learning_rate": 0.0006,
+ "loss": 3.93170166015625,
+ "step": 795
+ },
+ {
+ "epoch": 11.055895196506551,
+ "grad_norm": 0.03784231096506119,
+ "learning_rate": 0.0006,
+ "loss": 3.9460182189941406,
+ "step": 796
+ },
+ {
+ "epoch": 11.069868995633188,
+ "grad_norm": 0.036992497742176056,
+ "learning_rate": 0.0006,
+ "loss": 3.9788053035736084,
+ "step": 797
+ },
+ {
+ "epoch": 11.083842794759825,
+ "grad_norm": 0.040899068117141724,
+ "learning_rate": 0.0006,
+ "loss": 3.97415828704834,
+ "step": 798
+ },
+ {
+ "epoch": 11.097816593886463,
+ "grad_norm": 0.0333116240799427,
+ "learning_rate": 0.0006,
+ "loss": 3.9691474437713623,
+ "step": 799
+ },
+ {
+ "epoch": 11.1117903930131,
+ "grad_norm": 0.03146163746714592,
+ "learning_rate": 0.0006,
+ "loss": 3.95757794380188,
+ "step": 800
+ },
+ {
+ "epoch": 11.125764192139737,
+ "grad_norm": 0.031018080189824104,
+ "learning_rate": 0.0006,
+ "loss": 3.9483275413513184,
+ "step": 801
+ },
+ {
+ "epoch": 11.139737991266376,
+ "grad_norm": 0.03301657736301422,
+ "learning_rate": 0.0006,
+ "loss": 3.972309112548828,
+ "step": 802
+ },
+ {
+ "epoch": 11.153711790393013,
+ "grad_norm": 0.03665755316615105,
+ "learning_rate": 0.0006,
+ "loss": 3.963214874267578,
+ "step": 803
+ },
+ {
+ "epoch": 11.167685589519651,
+ "grad_norm": 0.038088612258434296,
+ "learning_rate": 0.0006,
+ "loss": 3.9526877403259277,
+ "step": 804
+ },
+ {
+ "epoch": 11.181659388646288,
+ "grad_norm": 0.035294584929943085,
+ "learning_rate": 0.0006,
+ "loss": 3.9849953651428223,
+ "step": 805
+ },
+ {
+ "epoch": 11.195633187772925,
+ "grad_norm": 0.03202495723962784,
+ "learning_rate": 0.0006,
+ "loss": 3.944120407104492,
+ "step": 806
+ },
+ {
+ "epoch": 11.209606986899564,
+ "grad_norm": 0.028670601546764374,
+ "learning_rate": 0.0006,
+ "loss": 3.9752721786499023,
+ "step": 807
+ },
+ {
+ "epoch": 11.2235807860262,
+ "grad_norm": 0.032401736825704575,
+ "learning_rate": 0.0006,
+ "loss": 3.986171245574951,
+ "step": 808
+ },
+ {
+ "epoch": 11.237554585152838,
+ "grad_norm": 0.033387646079063416,
+ "learning_rate": 0.0006,
+ "loss": 3.977919101715088,
+ "step": 809
+ },
+ {
+ "epoch": 11.251528384279476,
+ "grad_norm": 0.03134278208017349,
+ "learning_rate": 0.0006,
+ "loss": 3.9734086990356445,
+ "step": 810
+ },
+ {
+ "epoch": 11.265502183406113,
+ "grad_norm": 0.030449511483311653,
+ "learning_rate": 0.0006,
+ "loss": 3.995955228805542,
+ "step": 811
+ },
+ {
+ "epoch": 11.279475982532752,
+ "grad_norm": 0.03138570487499237,
+ "learning_rate": 0.0006,
+ "loss": 3.9690403938293457,
+ "step": 812
+ },
+ {
+ "epoch": 11.293449781659389,
+ "grad_norm": 0.03469259291887283,
+ "learning_rate": 0.0006,
+ "loss": 3.9562559127807617,
+ "step": 813
+ },
+ {
+ "epoch": 11.307423580786025,
+ "grad_norm": 0.03249761089682579,
+ "learning_rate": 0.0006,
+ "loss": 3.950381278991699,
+ "step": 814
+ },
+ {
+ "epoch": 11.321397379912664,
+ "grad_norm": 0.03012247197329998,
+ "learning_rate": 0.0006,
+ "loss": 3.9659230709075928,
+ "step": 815
+ },
+ {
+ "epoch": 11.335371179039301,
+ "grad_norm": 0.026212701573967934,
+ "learning_rate": 0.0006,
+ "loss": 3.956185817718506,
+ "step": 816
+ },
+ {
+ "epoch": 11.34934497816594,
+ "grad_norm": 0.02690894901752472,
+ "learning_rate": 0.0006,
+ "loss": 3.9513344764709473,
+ "step": 817
+ },
+ {
+ "epoch": 11.363318777292577,
+ "grad_norm": 0.02419866994023323,
+ "learning_rate": 0.0006,
+ "loss": 3.997973680496216,
+ "step": 818
+ },
+ {
+ "epoch": 11.377292576419213,
+ "grad_norm": 0.027116507291793823,
+ "learning_rate": 0.0006,
+ "loss": 3.9817705154418945,
+ "step": 819
+ },
+ {
+ "epoch": 11.391266375545852,
+ "grad_norm": 0.029049331322312355,
+ "learning_rate": 0.0006,
+ "loss": 3.951998472213745,
+ "step": 820
+ },
+ {
+ "epoch": 11.405240174672489,
+ "grad_norm": 0.026706157252192497,
+ "learning_rate": 0.0006,
+ "loss": 3.9744365215301514,
+ "step": 821
+ },
+ {
+ "epoch": 11.419213973799126,
+ "grad_norm": 0.025000600144267082,
+ "learning_rate": 0.0006,
+ "loss": 3.959059238433838,
+ "step": 822
+ },
+ {
+ "epoch": 11.433187772925764,
+ "grad_norm": 0.024861274287104607,
+ "learning_rate": 0.0006,
+ "loss": 3.9474871158599854,
+ "step": 823
+ },
+ {
+ "epoch": 11.447161572052401,
+ "grad_norm": 0.023006360977888107,
+ "learning_rate": 0.0006,
+ "loss": 3.924236297607422,
+ "step": 824
+ },
+ {
+ "epoch": 11.46113537117904,
+ "grad_norm": 0.023747073486447334,
+ "learning_rate": 0.0006,
+ "loss": 3.9383111000061035,
+ "step": 825
+ },
+ {
+ "epoch": 11.475109170305677,
+ "grad_norm": 0.027958976104855537,
+ "learning_rate": 0.0006,
+ "loss": 3.989518880844116,
+ "step": 826
+ },
+ {
+ "epoch": 11.489082969432314,
+ "grad_norm": 0.026648882776498795,
+ "learning_rate": 0.0006,
+ "loss": 3.9455833435058594,
+ "step": 827
+ },
+ {
+ "epoch": 11.503056768558952,
+ "grad_norm": 0.023990288376808167,
+ "learning_rate": 0.0006,
+ "loss": 3.9832968711853027,
+ "step": 828
+ },
+ {
+ "epoch": 11.51703056768559,
+ "grad_norm": 0.02722238190472126,
+ "learning_rate": 0.0006,
+ "loss": 3.924104690551758,
+ "step": 829
+ },
+ {
+ "epoch": 11.531004366812226,
+ "grad_norm": 0.026512466371059418,
+ "learning_rate": 0.0006,
+ "loss": 3.9410343170166016,
+ "step": 830
+ },
+ {
+ "epoch": 11.544978165938865,
+ "grad_norm": 0.022135436534881592,
+ "learning_rate": 0.0006,
+ "loss": 3.903899669647217,
+ "step": 831
+ },
+ {
+ "epoch": 11.558951965065502,
+ "grad_norm": 0.022456489503383636,
+ "learning_rate": 0.0006,
+ "loss": 3.962076187133789,
+ "step": 832
+ },
+ {
+ "epoch": 11.57292576419214,
+ "grad_norm": 0.024932855740189552,
+ "learning_rate": 0.0006,
+ "loss": 3.9023091793060303,
+ "step": 833
+ },
+ {
+ "epoch": 11.586899563318777,
+ "grad_norm": 0.02856597490608692,
+ "learning_rate": 0.0006,
+ "loss": 3.928679943084717,
+ "step": 834
+ },
+ {
+ "epoch": 11.600873362445414,
+ "grad_norm": 0.034227993339300156,
+ "learning_rate": 0.0006,
+ "loss": 3.9686708450317383,
+ "step": 835
+ },
+ {
+ "epoch": 11.614847161572053,
+ "grad_norm": 0.03348609432578087,
+ "learning_rate": 0.0006,
+ "loss": 4.001498699188232,
+ "step": 836
+ },
+ {
+ "epoch": 11.62882096069869,
+ "grad_norm": 0.028687726706266403,
+ "learning_rate": 0.0006,
+ "loss": 3.9448747634887695,
+ "step": 837
+ },
+ {
+ "epoch": 11.642794759825328,
+ "grad_norm": 0.030512670055031776,
+ "learning_rate": 0.0006,
+ "loss": 3.967744827270508,
+ "step": 838
+ },
+ {
+ "epoch": 11.656768558951965,
+ "grad_norm": 0.028223708271980286,
+ "learning_rate": 0.0006,
+ "loss": 3.937486171722412,
+ "step": 839
+ },
+ {
+ "epoch": 11.670742358078602,
+ "grad_norm": 0.026596587151288986,
+ "learning_rate": 0.0006,
+ "loss": 3.9503097534179688,
+ "step": 840
+ },
+ {
+ "epoch": 11.68471615720524,
+ "grad_norm": 0.025357289239764214,
+ "learning_rate": 0.0006,
+ "loss": 3.9005143642425537,
+ "step": 841
+ },
+ {
+ "epoch": 11.698689956331878,
+ "grad_norm": 0.027513934299349785,
+ "learning_rate": 0.0006,
+ "loss": 3.9426188468933105,
+ "step": 842
+ },
+ {
+ "epoch": 11.712663755458514,
+ "grad_norm": 0.024877114221453667,
+ "learning_rate": 0.0006,
+ "loss": 3.9422965049743652,
+ "step": 843
+ },
+ {
+ "epoch": 11.726637554585153,
+ "grad_norm": 0.024543913081288338,
+ "learning_rate": 0.0006,
+ "loss": 3.9211392402648926,
+ "step": 844
+ },
+ {
+ "epoch": 11.74061135371179,
+ "grad_norm": 0.02748306654393673,
+ "learning_rate": 0.0006,
+ "loss": 3.9308085441589355,
+ "step": 845
+ },
+ {
+ "epoch": 11.754585152838429,
+ "grad_norm": 0.02310740016400814,
+ "learning_rate": 0.0006,
+ "loss": 3.9191694259643555,
+ "step": 846
+ },
+ {
+ "epoch": 11.768558951965066,
+ "grad_norm": 0.01961519382894039,
+ "learning_rate": 0.0006,
+ "loss": 3.963473081588745,
+ "step": 847
+ },
+ {
+ "epoch": 11.782532751091702,
+ "grad_norm": 0.02019876055419445,
+ "learning_rate": 0.0006,
+ "loss": 3.9336318969726562,
+ "step": 848
+ },
+ {
+ "epoch": 11.796506550218341,
+ "grad_norm": 0.017846928909420967,
+ "learning_rate": 0.0006,
+ "loss": 3.9323928356170654,
+ "step": 849
+ },
+ {
+ "epoch": 11.810480349344978,
+ "grad_norm": 0.0204033050686121,
+ "learning_rate": 0.0006,
+ "loss": 3.9221231937408447,
+ "step": 850
+ },
+ {
+ "epoch": 11.824454148471617,
+ "grad_norm": 0.0186605304479599,
+ "learning_rate": 0.0006,
+ "loss": 3.964756965637207,
+ "step": 851
+ },
+ {
+ "epoch": 11.838427947598253,
+ "grad_norm": 0.01672505773603916,
+ "learning_rate": 0.0006,
+ "loss": 3.921032667160034,
+ "step": 852
+ },
+ {
+ "epoch": 11.85240174672489,
+ "grad_norm": 0.01734270341694355,
+ "learning_rate": 0.0006,
+ "loss": 3.9388551712036133,
+ "step": 853
+ },
+ {
+ "epoch": 11.866375545851529,
+ "grad_norm": 0.01686406321823597,
+ "learning_rate": 0.0006,
+ "loss": 3.9283366203308105,
+ "step": 854
+ },
+ {
+ "epoch": 11.880349344978166,
+ "grad_norm": 0.01593155413866043,
+ "learning_rate": 0.0006,
+ "loss": 3.9095754623413086,
+ "step": 855
+ },
+ {
+ "epoch": 11.894323144104803,
+ "grad_norm": 0.014560039155185223,
+ "learning_rate": 0.0006,
+ "loss": 3.942214012145996,
+ "step": 856
+ },
+ {
+ "epoch": 11.908296943231441,
+ "grad_norm": 0.016584530472755432,
+ "learning_rate": 0.0006,
+ "loss": 3.8745198249816895,
+ "step": 857
+ },
+ {
+ "epoch": 11.922270742358078,
+ "grad_norm": 0.016951464116573334,
+ "learning_rate": 0.0006,
+ "loss": 3.9224963188171387,
+ "step": 858
+ },
+ {
+ "epoch": 11.936244541484717,
+ "grad_norm": 0.017965901643037796,
+ "learning_rate": 0.0006,
+ "loss": 3.886237621307373,
+ "step": 859
+ },
+ {
+ "epoch": 11.950218340611354,
+ "grad_norm": 0.01874147541821003,
+ "learning_rate": 0.0006,
+ "loss": 3.9200339317321777,
+ "step": 860
+ },
+ {
+ "epoch": 11.96419213973799,
+ "grad_norm": 0.021464595571160316,
+ "learning_rate": 0.0006,
+ "loss": 3.9424729347229004,
+ "step": 861
+ },
+ {
+ "epoch": 11.97816593886463,
+ "grad_norm": 0.02506706677377224,
+ "learning_rate": 0.0006,
+ "loss": 3.9516968727111816,
+ "step": 862
+ },
+ {
+ "epoch": 11.992139737991266,
+ "grad_norm": 0.02550777979195118,
+ "learning_rate": 0.0006,
+ "loss": 3.9148871898651123,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.022032644599676132,
+ "learning_rate": 0.0006,
+ "loss": 3.934220314025879,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.146186828613281,
+ "eval_runtime": 70.9324,
+ "eval_samples_per_second": 34.427,
+ "eval_steps_per_second": 1.086,
+ "step": 864
+ },
+ {
+ "epoch": 12.013973799126637,
+ "grad_norm": 0.021564407274127007,
+ "learning_rate": 0.0006,
+ "loss": 3.8425402641296387,
+ "step": 865
+ },
+ {
+ "epoch": 12.027947598253276,
+ "grad_norm": 0.021265074610710144,
+ "learning_rate": 0.0006,
+ "loss": 3.8457272052764893,
+ "step": 866
+ },
+ {
+ "epoch": 12.041921397379912,
+ "grad_norm": 0.02154017984867096,
+ "learning_rate": 0.0006,
+ "loss": 3.810920238494873,
+ "step": 867
+ },
+ {
+ "epoch": 12.055895196506551,
+ "grad_norm": 0.020422060042619705,
+ "learning_rate": 0.0006,
+ "loss": 3.8347911834716797,
+ "step": 868
+ },
+ {
+ "epoch": 12.069868995633188,
+ "grad_norm": 0.01949428766965866,
+ "learning_rate": 0.0006,
+ "loss": 3.831073760986328,
+ "step": 869
+ },
+ {
+ "epoch": 12.083842794759825,
+ "grad_norm": 0.021055635064840317,
+ "learning_rate": 0.0006,
+ "loss": 3.8869409561157227,
+ "step": 870
+ },
+ {
+ "epoch": 12.097816593886463,
+ "grad_norm": 0.02397136203944683,
+ "learning_rate": 0.0006,
+ "loss": 3.837860107421875,
+ "step": 871
+ },
+ {
+ "epoch": 12.1117903930131,
+ "grad_norm": 0.02733064442873001,
+ "learning_rate": 0.0006,
+ "loss": 3.8453102111816406,
+ "step": 872
+ },
+ {
+ "epoch": 12.125764192139737,
+ "grad_norm": 0.03023727424442768,
+ "learning_rate": 0.0006,
+ "loss": 3.8106770515441895,
+ "step": 873
+ },
+ {
+ "epoch": 12.139737991266376,
+ "grad_norm": 0.0334315188229084,
+ "learning_rate": 0.0006,
+ "loss": 3.835714817047119,
+ "step": 874
+ },
+ {
+ "epoch": 12.153711790393013,
+ "grad_norm": 0.03233368694782257,
+ "learning_rate": 0.0006,
+ "loss": 3.8509063720703125,
+ "step": 875
+ },
+ {
+ "epoch": 12.167685589519651,
+ "grad_norm": 0.03522663936018944,
+ "learning_rate": 0.0006,
+ "loss": 3.854410171508789,
+ "step": 876
+ },
+ {
+ "epoch": 12.181659388646288,
+ "grad_norm": 0.04753761738538742,
+ "learning_rate": 0.0006,
+ "loss": 3.882387638092041,
+ "step": 877
+ },
+ {
+ "epoch": 12.195633187772925,
+ "grad_norm": 0.049719441682100296,
+ "learning_rate": 0.0006,
+ "loss": 3.8863918781280518,
+ "step": 878
+ },
+ {
+ "epoch": 12.209606986899564,
+ "grad_norm": 0.0482778400182724,
+ "learning_rate": 0.0006,
+ "loss": 3.8418054580688477,
+ "step": 879
+ },
+ {
+ "epoch": 12.2235807860262,
+ "grad_norm": 0.04967353492975235,
+ "learning_rate": 0.0006,
+ "loss": 3.88840389251709,
+ "step": 880
+ },
+ {
+ "epoch": 12.237554585152838,
+ "grad_norm": 0.04709675535559654,
+ "learning_rate": 0.0006,
+ "loss": 3.8831706047058105,
+ "step": 881
+ },
+ {
+ "epoch": 12.251528384279476,
+ "grad_norm": 0.05031110718846321,
+ "learning_rate": 0.0006,
+ "loss": 3.8964877128601074,
+ "step": 882
+ },
+ {
+ "epoch": 12.265502183406113,
+ "grad_norm": 0.04771656170487404,
+ "learning_rate": 0.0006,
+ "loss": 3.902888774871826,
+ "step": 883
+ },
+ {
+ "epoch": 12.279475982532752,
+ "grad_norm": 0.041541457176208496,
+ "learning_rate": 0.0006,
+ "loss": 3.849850654602051,
+ "step": 884
+ },
+ {
+ "epoch": 12.293449781659389,
+ "grad_norm": 0.04055247828364372,
+ "learning_rate": 0.0006,
+ "loss": 3.907242774963379,
+ "step": 885
+ },
+ {
+ "epoch": 12.307423580786025,
+ "grad_norm": 0.0392373651266098,
+ "learning_rate": 0.0006,
+ "loss": 3.882129669189453,
+ "step": 886
+ },
+ {
+ "epoch": 12.321397379912664,
+ "grad_norm": 0.040552686899900436,
+ "learning_rate": 0.0006,
+ "loss": 3.8719077110290527,
+ "step": 887
+ },
+ {
+ "epoch": 12.335371179039301,
+ "grad_norm": 0.03997429832816124,
+ "learning_rate": 0.0006,
+ "loss": 3.8770203590393066,
+ "step": 888
+ },
+ {
+ "epoch": 12.34934497816594,
+ "grad_norm": 0.04006315395236015,
+ "learning_rate": 0.0006,
+ "loss": 3.888833999633789,
+ "step": 889
+ },
+ {
+ "epoch": 12.363318777292577,
+ "grad_norm": 0.04192065820097923,
+ "learning_rate": 0.0006,
+ "loss": 3.9480466842651367,
+ "step": 890
+ },
+ {
+ "epoch": 12.377292576419213,
+ "grad_norm": 0.03901645913720131,
+ "learning_rate": 0.0006,
+ "loss": 3.8987879753112793,
+ "step": 891
+ },
+ {
+ "epoch": 12.391266375545852,
+ "grad_norm": 0.034923430532217026,
+ "learning_rate": 0.0006,
+ "loss": 3.887423515319824,
+ "step": 892
+ },
+ {
+ "epoch": 12.405240174672489,
+ "grad_norm": 0.03397240489721298,
+ "learning_rate": 0.0006,
+ "loss": 3.874734878540039,
+ "step": 893
+ },
+ {
+ "epoch": 12.419213973799126,
+ "grad_norm": 0.03498395159840584,
+ "learning_rate": 0.0006,
+ "loss": 3.8725318908691406,
+ "step": 894
+ },
+ {
+ "epoch": 12.433187772925764,
+ "grad_norm": 0.03299591317772865,
+ "learning_rate": 0.0006,
+ "loss": 3.8542797565460205,
+ "step": 895
+ },
+ {
+ "epoch": 12.447161572052401,
+ "grad_norm": 0.03591961786150932,
+ "learning_rate": 0.0006,
+ "loss": 3.8667421340942383,
+ "step": 896
+ },
+ {
+ "epoch": 12.46113537117904,
+ "grad_norm": 0.032906632870435715,
+ "learning_rate": 0.0006,
+ "loss": 3.802811622619629,
+ "step": 897
+ },
+ {
+ "epoch": 12.475109170305677,
+ "grad_norm": 0.02919355221092701,
+ "learning_rate": 0.0006,
+ "loss": 3.9085006713867188,
+ "step": 898
+ },
+ {
+ "epoch": 12.489082969432314,
+ "grad_norm": 0.02636081911623478,
+ "learning_rate": 0.0006,
+ "loss": 3.876291275024414,
+ "step": 899
+ },
+ {
+ "epoch": 12.503056768558952,
+ "grad_norm": 0.027786940336227417,
+ "learning_rate": 0.0006,
+ "loss": 3.813384532928467,
+ "step": 900
+ },
+ {
+ "epoch": 12.51703056768559,
+ "grad_norm": 0.021504681557416916,
+ "learning_rate": 0.0006,
+ "loss": 3.8531389236450195,
+ "step": 901
+ },
+ {
+ "epoch": 12.531004366812226,
+ "grad_norm": 0.020176850259304047,
+ "learning_rate": 0.0006,
+ "loss": 3.8540682792663574,
+ "step": 902
+ },
+ {
+ "epoch": 12.544978165938865,
+ "grad_norm": 0.018069395795464516,
+ "learning_rate": 0.0006,
+ "loss": 3.8401103019714355,
+ "step": 903
+ },
+ {
+ "epoch": 12.558951965065502,
+ "grad_norm": 0.017131980508565903,
+ "learning_rate": 0.0006,
+ "loss": 3.8590402603149414,
+ "step": 904
+ },
+ {
+ "epoch": 12.57292576419214,
+ "grad_norm": 0.016838181763887405,
+ "learning_rate": 0.0006,
+ "loss": 3.816793441772461,
+ "step": 905
+ },
+ {
+ "epoch": 12.586899563318777,
+ "grad_norm": 0.01688799448311329,
+ "learning_rate": 0.0006,
+ "loss": 3.8501386642456055,
+ "step": 906
+ },
+ {
+ "epoch": 12.600873362445414,
+ "grad_norm": 0.018547389656305313,
+ "learning_rate": 0.0006,
+ "loss": 3.844679355621338,
+ "step": 907
+ },
+ {
+ "epoch": 12.614847161572053,
+ "grad_norm": 0.01693912222981453,
+ "learning_rate": 0.0006,
+ "loss": 3.8392562866210938,
+ "step": 908
+ },
+ {
+ "epoch": 12.62882096069869,
+ "grad_norm": 0.017632123082876205,
+ "learning_rate": 0.0006,
+ "loss": 3.8433165550231934,
+ "step": 909
+ },
+ {
+ "epoch": 12.642794759825328,
+ "grad_norm": 0.017826121300458908,
+ "learning_rate": 0.0006,
+ "loss": 3.880542039871216,
+ "step": 910
+ },
+ {
+ "epoch": 12.656768558951965,
+ "grad_norm": 0.01775546185672283,
+ "learning_rate": 0.0006,
+ "loss": 3.828543186187744,
+ "step": 911
+ },
+ {
+ "epoch": 12.670742358078602,
+ "grad_norm": 0.016220970079302788,
+ "learning_rate": 0.0006,
+ "loss": 3.835036039352417,
+ "step": 912
+ },
+ {
+ "epoch": 12.68471615720524,
+ "grad_norm": 0.015805263072252274,
+ "learning_rate": 0.0006,
+ "loss": 3.860929489135742,
+ "step": 913
+ },
+ {
+ "epoch": 12.698689956331878,
+ "grad_norm": 0.014601027593016624,
+ "learning_rate": 0.0006,
+ "loss": 3.849916934967041,
+ "step": 914
+ },
+ {
+ "epoch": 12.712663755458514,
+ "grad_norm": 0.014955640770494938,
+ "learning_rate": 0.0006,
+ "loss": 3.82222843170166,
+ "step": 915
+ },
+ {
+ "epoch": 12.726637554585153,
+ "grad_norm": 0.01635930687189102,
+ "learning_rate": 0.0006,
+ "loss": 3.8616011142730713,
+ "step": 916
+ },
+ {
+ "epoch": 12.74061135371179,
+ "grad_norm": 0.015701569616794586,
+ "learning_rate": 0.0006,
+ "loss": 3.827305316925049,
+ "step": 917
+ },
+ {
+ "epoch": 12.754585152838429,
+ "grad_norm": 0.014878005720674992,
+ "learning_rate": 0.0006,
+ "loss": 3.8204379081726074,
+ "step": 918
+ },
+ {
+ "epoch": 12.768558951965066,
+ "grad_norm": 0.015863968059420586,
+ "learning_rate": 0.0006,
+ "loss": 3.8282384872436523,
+ "step": 919
+ },
+ {
+ "epoch": 12.782532751091702,
+ "grad_norm": 0.015376720577478409,
+ "learning_rate": 0.0006,
+ "loss": 3.8476157188415527,
+ "step": 920
+ },
+ {
+ "epoch": 12.796506550218341,
+ "grad_norm": 0.015112238936126232,
+ "learning_rate": 0.0006,
+ "loss": 3.814873695373535,
+ "step": 921
+ },
+ {
+ "epoch": 12.810480349344978,
+ "grad_norm": 0.014457261189818382,
+ "learning_rate": 0.0006,
+ "loss": 3.874340295791626,
+ "step": 922
+ },
+ {
+ "epoch": 12.824454148471617,
+ "grad_norm": 0.013799191452562809,
+ "learning_rate": 0.0006,
+ "loss": 3.8461344242095947,
+ "step": 923
+ },
+ {
+ "epoch": 12.838427947598253,
+ "grad_norm": 0.015976861119270325,
+ "learning_rate": 0.0006,
+ "loss": 3.8348283767700195,
+ "step": 924
+ },
+ {
+ "epoch": 12.85240174672489,
+ "grad_norm": 0.016569344326853752,
+ "learning_rate": 0.0006,
+ "loss": 3.8375229835510254,
+ "step": 925
+ },
+ {
+ "epoch": 12.866375545851529,
+ "grad_norm": 0.016443882137537003,
+ "learning_rate": 0.0006,
+ "loss": 3.814178943634033,
+ "step": 926
+ },
+ {
+ "epoch": 12.880349344978166,
+ "grad_norm": 0.01687130145728588,
+ "learning_rate": 0.0006,
+ "loss": 3.7934679985046387,
+ "step": 927
+ },
+ {
+ "epoch": 12.894323144104803,
+ "grad_norm": 0.01750864088535309,
+ "learning_rate": 0.0006,
+ "loss": 3.8297150135040283,
+ "step": 928
+ },
+ {
+ "epoch": 12.908296943231441,
+ "grad_norm": 0.017512314021587372,
+ "learning_rate": 0.0006,
+ "loss": 3.7785584926605225,
+ "step": 929
+ },
+ {
+ "epoch": 12.922270742358078,
+ "grad_norm": 0.01678168773651123,
+ "learning_rate": 0.0006,
+ "loss": 3.8569579124450684,
+ "step": 930
+ },
+ {
+ "epoch": 12.936244541484717,
+ "grad_norm": 0.017443843185901642,
+ "learning_rate": 0.0006,
+ "loss": 3.8003761768341064,
+ "step": 931
+ },
+ {
+ "epoch": 12.950218340611354,
+ "grad_norm": 0.017418883740901947,
+ "learning_rate": 0.0006,
+ "loss": 3.8066251277923584,
+ "step": 932
+ },
+ {
+ "epoch": 12.96419213973799,
+ "grad_norm": 0.01592562161386013,
+ "learning_rate": 0.0006,
+ "loss": 3.8218679428100586,
+ "step": 933
+ },
+ {
+ "epoch": 12.97816593886463,
+ "grad_norm": 0.01742086559534073,
+ "learning_rate": 0.0006,
+ "loss": 3.8229286670684814,
+ "step": 934
+ },
+ {
+ "epoch": 12.992139737991266,
+ "grad_norm": 0.017524391412734985,
+ "learning_rate": 0.0006,
+ "loss": 3.810349941253662,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.019961200654506683,
+ "learning_rate": 0.0006,
+ "loss": 3.8229546546936035,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.08996057510376,
+ "eval_runtime": 49.9041,
+ "eval_samples_per_second": 48.934,
+ "eval_steps_per_second": 1.543,
+ "step": 936
+ },
+ {
+ "epoch": 13.013973799126637,
+ "grad_norm": 0.023570898920297623,
+ "learning_rate": 0.0006,
+ "loss": 3.7133145332336426,
+ "step": 937
+ },
+ {
+ "epoch": 13.027947598253276,
+ "grad_norm": 0.03165869787335396,
+ "learning_rate": 0.0006,
+ "loss": 3.7199676036834717,
+ "step": 938
+ },
+ {
+ "epoch": 13.041921397379912,
+ "grad_norm": 0.03561289608478546,
+ "learning_rate": 0.0006,
+ "loss": 3.7414278984069824,
+ "step": 939
+ },
+ {
+ "epoch": 13.055895196506551,
+ "grad_norm": 0.03167610988020897,
+ "learning_rate": 0.0006,
+ "loss": 3.7263808250427246,
+ "step": 940
+ },
+ {
+ "epoch": 13.069868995633188,
+ "grad_norm": 0.035912878811359406,
+ "learning_rate": 0.0006,
+ "loss": 3.7170684337615967,
+ "step": 941
+ },
+ {
+ "epoch": 13.083842794759825,
+ "grad_norm": 0.03632035478949547,
+ "learning_rate": 0.0006,
+ "loss": 3.750077724456787,
+ "step": 942
+ },
+ {
+ "epoch": 13.097816593886463,
+ "grad_norm": 0.031844258308410645,
+ "learning_rate": 0.0006,
+ "loss": 3.7065911293029785,
+ "step": 943
+ },
+ {
+ "epoch": 13.1117903930131,
+ "grad_norm": 0.03410554304718971,
+ "learning_rate": 0.0006,
+ "loss": 3.739224910736084,
+ "step": 944
+ },
+ {
+ "epoch": 13.125764192139737,
+ "grad_norm": 0.03375937044620514,
+ "learning_rate": 0.0006,
+ "loss": 3.6903367042541504,
+ "step": 945
+ },
+ {
+ "epoch": 13.139737991266376,
+ "grad_norm": 0.03705555200576782,
+ "learning_rate": 0.0006,
+ "loss": 3.778822422027588,
+ "step": 946
+ },
+ {
+ "epoch": 13.153711790393013,
+ "grad_norm": 0.03603963926434517,
+ "learning_rate": 0.0006,
+ "loss": 3.73783802986145,
+ "step": 947
+ },
+ {
+ "epoch": 13.167685589519651,
+ "grad_norm": 0.034089673310518265,
+ "learning_rate": 0.0006,
+ "loss": 3.7886078357696533,
+ "step": 948
+ },
+ {
+ "epoch": 13.181659388646288,
+ "grad_norm": 0.03745635598897934,
+ "learning_rate": 0.0006,
+ "loss": 3.76809024810791,
+ "step": 949
+ },
+ {
+ "epoch": 13.195633187772925,
+ "grad_norm": 0.04209613427519798,
+ "learning_rate": 0.0006,
+ "loss": 3.7813467979431152,
+ "step": 950
+ },
+ {
+ "epoch": 13.209606986899564,
+ "grad_norm": 0.036846764385700226,
+ "learning_rate": 0.0006,
+ "loss": 3.7726383209228516,
+ "step": 951
+ },
+ {
+ "epoch": 13.2235807860262,
+ "grad_norm": 0.036949072033166885,
+ "learning_rate": 0.0006,
+ "loss": 3.7197751998901367,
+ "step": 952
+ },
+ {
+ "epoch": 13.237554585152838,
+ "grad_norm": 0.03458063304424286,
+ "learning_rate": 0.0006,
+ "loss": 3.7695436477661133,
+ "step": 953
+ },
+ {
+ "epoch": 13.251528384279476,
+ "grad_norm": 0.038074951618909836,
+ "learning_rate": 0.0006,
+ "loss": 3.7531425952911377,
+ "step": 954
+ },
+ {
+ "epoch": 13.265502183406113,
+ "grad_norm": 0.03661646693944931,
+ "learning_rate": 0.0006,
+ "loss": 3.767953872680664,
+ "step": 955
+ },
+ {
+ "epoch": 13.279475982532752,
+ "grad_norm": 0.039892520755529404,
+ "learning_rate": 0.0006,
+ "loss": 3.7687599658966064,
+ "step": 956
+ },
+ {
+ "epoch": 13.293449781659389,
+ "grad_norm": 0.036572884768247604,
+ "learning_rate": 0.0006,
+ "loss": 3.7693774700164795,
+ "step": 957
+ },
+ {
+ "epoch": 13.307423580786025,
+ "grad_norm": 0.03855743631720543,
+ "learning_rate": 0.0006,
+ "loss": 3.8233063220977783,
+ "step": 958
+ },
+ {
+ "epoch": 13.321397379912664,
+ "grad_norm": 0.03484344109892845,
+ "learning_rate": 0.0006,
+ "loss": 3.79215669631958,
+ "step": 959
+ },
+ {
+ "epoch": 13.335371179039301,
+ "grad_norm": 0.036101482808589935,
+ "learning_rate": 0.0006,
+ "loss": 3.768373966217041,
+ "step": 960
+ },
+ {
+ "epoch": 13.34934497816594,
+ "grad_norm": 0.03150841221213341,
+ "learning_rate": 0.0006,
+ "loss": 3.7502622604370117,
+ "step": 961
+ },
+ {
+ "epoch": 13.363318777292577,
+ "grad_norm": 0.03154430910944939,
+ "learning_rate": 0.0006,
+ "loss": 3.764416217803955,
+ "step": 962
+ },
+ {
+ "epoch": 13.377292576419213,
+ "grad_norm": 0.03163410350680351,
+ "learning_rate": 0.0006,
+ "loss": 3.757230758666992,
+ "step": 963
+ },
+ {
+ "epoch": 13.391266375545852,
+ "grad_norm": 0.02932742051780224,
+ "learning_rate": 0.0006,
+ "loss": 3.7860183715820312,
+ "step": 964
+ },
+ {
+ "epoch": 13.405240174672489,
+ "grad_norm": 0.025545787066221237,
+ "learning_rate": 0.0006,
+ "loss": 3.748073101043701,
+ "step": 965
+ },
+ {
+ "epoch": 13.419213973799126,
+ "grad_norm": 0.02389710769057274,
+ "learning_rate": 0.0006,
+ "loss": 3.778963565826416,
+ "step": 966
+ },
+ {
+ "epoch": 13.433187772925764,
+ "grad_norm": 0.023781558498740196,
+ "learning_rate": 0.0006,
+ "loss": 3.7151870727539062,
+ "step": 967
+ },
+ {
+ "epoch": 13.447161572052401,
+ "grad_norm": 0.023273715749382973,
+ "learning_rate": 0.0006,
+ "loss": 3.766374111175537,
+ "step": 968
+ },
+ {
+ "epoch": 13.46113537117904,
+ "grad_norm": 0.023059967905282974,
+ "learning_rate": 0.0006,
+ "loss": 3.783663749694824,
+ "step": 969
+ },
+ {
+ "epoch": 13.475109170305677,
+ "grad_norm": 0.020438550040125847,
+ "learning_rate": 0.0006,
+ "loss": 3.755140781402588,
+ "step": 970
+ },
+ {
+ "epoch": 13.489082969432314,
+ "grad_norm": 0.019272785633802414,
+ "learning_rate": 0.0006,
+ "loss": 3.741131544113159,
+ "step": 971
+ },
+ {
+ "epoch": 13.503056768558952,
+ "grad_norm": 0.017616258934140205,
+ "learning_rate": 0.0006,
+ "loss": 3.7395365238189697,
+ "step": 972
+ },
+ {
+ "epoch": 13.51703056768559,
+ "grad_norm": 0.017435181885957718,
+ "learning_rate": 0.0006,
+ "loss": 3.7755181789398193,
+ "step": 973
+ },
+ {
+ "epoch": 13.531004366812226,
+ "grad_norm": 0.01710323616862297,
+ "learning_rate": 0.0006,
+ "loss": 3.7158422470092773,
+ "step": 974
+ },
+ {
+ "epoch": 13.544978165938865,
+ "grad_norm": 0.016912570223212242,
+ "learning_rate": 0.0006,
+ "loss": 3.727623462677002,
+ "step": 975
+ },
+ {
+ "epoch": 13.558951965065502,
+ "grad_norm": 0.0181113388389349,
+ "learning_rate": 0.0006,
+ "loss": 3.771268367767334,
+ "step": 976
+ },
+ {
+ "epoch": 13.57292576419214,
+ "grad_norm": 0.018880970776081085,
+ "learning_rate": 0.0006,
+ "loss": 3.7602953910827637,
+ "step": 977
+ },
+ {
+ "epoch": 13.586899563318777,
+ "grad_norm": 0.019182899966835976,
+ "learning_rate": 0.0006,
+ "loss": 3.7339329719543457,
+ "step": 978
+ },
+ {
+ "epoch": 13.600873362445414,
+ "grad_norm": 0.02025751583278179,
+ "learning_rate": 0.0006,
+ "loss": 3.7562665939331055,
+ "step": 979
+ },
+ {
+ "epoch": 13.614847161572053,
+ "grad_norm": 0.01820831373333931,
+ "learning_rate": 0.0006,
+ "loss": 3.725492477416992,
+ "step": 980
+ },
+ {
+ "epoch": 13.62882096069869,
+ "grad_norm": 0.017619458958506584,
+ "learning_rate": 0.0006,
+ "loss": 3.714106798171997,
+ "step": 981
+ },
+ {
+ "epoch": 13.642794759825328,
+ "grad_norm": 0.016764821484684944,
+ "learning_rate": 0.0006,
+ "loss": 3.7665224075317383,
+ "step": 982
+ },
+ {
+ "epoch": 13.656768558951965,
+ "grad_norm": 0.016131598502397537,
+ "learning_rate": 0.0006,
+ "loss": 3.779419422149658,
+ "step": 983
+ },
+ {
+ "epoch": 13.670742358078602,
+ "grad_norm": 0.01535084005445242,
+ "learning_rate": 0.0006,
+ "loss": 3.7591190338134766,
+ "step": 984
+ },
+ {
+ "epoch": 13.68471615720524,
+ "grad_norm": 0.016390377655625343,
+ "learning_rate": 0.0006,
+ "loss": 3.7544782161712646,
+ "step": 985
+ },
+ {
+ "epoch": 13.698689956331878,
+ "grad_norm": 0.016028346493840218,
+ "learning_rate": 0.0006,
+ "loss": 3.772927761077881,
+ "step": 986
+ },
+ {
+ "epoch": 13.712663755458514,
+ "grad_norm": 0.015925439074635506,
+ "learning_rate": 0.0006,
+ "loss": 3.7092344760894775,
+ "step": 987
+ },
+ {
+ "epoch": 13.726637554585153,
+ "grad_norm": 0.016125058755278587,
+ "learning_rate": 0.0006,
+ "loss": 3.7528953552246094,
+ "step": 988
+ },
+ {
+ "epoch": 13.74061135371179,
+ "grad_norm": 0.015887845307588577,
+ "learning_rate": 0.0006,
+ "loss": 3.744354248046875,
+ "step": 989
+ },
+ {
+ "epoch": 13.754585152838429,
+ "grad_norm": 0.015301455743610859,
+ "learning_rate": 0.0006,
+ "loss": 3.743435859680176,
+ "step": 990
+ },
+ {
+ "epoch": 13.768558951965066,
+ "grad_norm": 0.014814727008342743,
+ "learning_rate": 0.0006,
+ "loss": 3.7351980209350586,
+ "step": 991
+ },
+ {
+ "epoch": 13.782532751091702,
+ "grad_norm": 0.01479976624250412,
+ "learning_rate": 0.0006,
+ "loss": 3.722226619720459,
+ "step": 992
+ },
+ {
+ "epoch": 13.796506550218341,
+ "grad_norm": 0.016558295115828514,
+ "learning_rate": 0.0006,
+ "loss": 3.717442512512207,
+ "step": 993
+ },
+ {
+ "epoch": 13.810480349344978,
+ "grad_norm": 0.01635979674756527,
+ "learning_rate": 0.0006,
+ "loss": 3.707097053527832,
+ "step": 994
+ },
+ {
+ "epoch": 13.824454148471617,
+ "grad_norm": 0.014870786108076572,
+ "learning_rate": 0.0006,
+ "loss": 3.768139362335205,
+ "step": 995
+ },
+ {
+ "epoch": 13.838427947598253,
+ "grad_norm": 0.014958183281123638,
+ "learning_rate": 0.0006,
+ "loss": 3.722902774810791,
+ "step": 996
+ },
+ {
+ "epoch": 13.85240174672489,
+ "grad_norm": 0.015501127578318119,
+ "learning_rate": 0.0006,
+ "loss": 3.7323732376098633,
+ "step": 997
+ },
+ {
+ "epoch": 13.866375545851529,
+ "grad_norm": 0.015276075340807438,
+ "learning_rate": 0.0006,
+ "loss": 3.734039783477783,
+ "step": 998
+ },
+ {
+ "epoch": 13.880349344978166,
+ "grad_norm": 0.01742061786353588,
+ "learning_rate": 0.0006,
+ "loss": 3.737147331237793,
+ "step": 999
+ },
+ {
+ "epoch": 13.894323144104803,
+ "grad_norm": 0.016311734914779663,
+ "learning_rate": 0.0006,
+ "loss": 3.7114202976226807,
+ "step": 1000
+ },
+ {
+ "epoch": 13.908296943231441,
+ "grad_norm": 0.017144575715065002,
+ "learning_rate": 0.0006,
+ "loss": 3.734762191772461,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922270742358078,
+ "grad_norm": 0.016401860862970352,
+ "learning_rate": 0.0006,
+ "loss": 3.753246784210205,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936244541484717,
+ "grad_norm": 0.015357336029410362,
+ "learning_rate": 0.0006,
+ "loss": 3.7216477394104004,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950218340611354,
+ "grad_norm": 0.016586005687713623,
+ "learning_rate": 0.0006,
+ "loss": 3.793790102005005,
+ "step": 1004
+ },
+ {
+ "epoch": 13.96419213973799,
+ "grad_norm": 0.015338776633143425,
+ "learning_rate": 0.0006,
+ "loss": 3.711658000946045,
+ "step": 1005
+ },
+ {
+ "epoch": 13.97816593886463,
+ "grad_norm": 0.017011435702443123,
+ "learning_rate": 0.0006,
+ "loss": 3.752537727355957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992139737991266,
+ "grad_norm": 0.017308345064520836,
+ "learning_rate": 0.0006,
+ "loss": 3.7391486167907715,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.01815737411379814,
+ "learning_rate": 0.0006,
+ "loss": 3.7011828422546387,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.046541690826416,
+ "eval_runtime": 54.3615,
+ "eval_samples_per_second": 44.922,
+ "eval_steps_per_second": 1.416,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013973799126637,
+ "grad_norm": 0.01765853725373745,
+ "learning_rate": 0.0006,
+ "loss": 3.6156458854675293,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027947598253276,
+ "grad_norm": 0.02285143919289112,
+ "learning_rate": 0.0006,
+ "loss": 3.6625490188598633,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041921397379912,
+ "grad_norm": 0.02511940896511078,
+ "learning_rate": 0.0006,
+ "loss": 3.619877815246582,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055895196506551,
+ "grad_norm": 0.02781127765774727,
+ "learning_rate": 0.0006,
+ "loss": 3.676270008087158,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069868995633188,
+ "grad_norm": 0.027363400906324387,
+ "learning_rate": 0.0006,
+ "loss": 3.64404034614563,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083842794759825,
+ "grad_norm": 0.02478782832622528,
+ "learning_rate": 0.0006,
+ "loss": 3.6325106620788574,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097816593886463,
+ "grad_norm": 0.02767058275640011,
+ "learning_rate": 0.0006,
+ "loss": 3.65087890625,
+ "step": 1015
+ },
+ {
+ "epoch": 14.1117903930131,
+ "grad_norm": 0.026782231405377388,
+ "learning_rate": 0.0006,
+ "loss": 3.6227691173553467,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125764192139737,
+ "grad_norm": 0.02921525575220585,
+ "learning_rate": 0.0006,
+ "loss": 3.5829410552978516,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139737991266376,
+ "grad_norm": 0.029077231884002686,
+ "learning_rate": 0.0006,
+ "loss": 3.645134687423706,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153711790393013,
+ "grad_norm": 0.0327303521335125,
+ "learning_rate": 0.0006,
+ "loss": 3.629804849624634,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167685589519651,
+ "grad_norm": 0.035763293504714966,
+ "learning_rate": 0.0006,
+ "loss": 3.6261279582977295,
+ "step": 1020
+ },
+ {
+ "epoch": 14.181659388646288,
+ "grad_norm": 0.03943935036659241,
+ "learning_rate": 0.0006,
+ "loss": 3.6591973304748535,
+ "step": 1021
+ },
+ {
+ "epoch": 14.195633187772925,
+ "grad_norm": 0.03753122314810753,
+ "learning_rate": 0.0006,
+ "loss": 3.6450369358062744,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209606986899564,
+ "grad_norm": 0.04103509336709976,
+ "learning_rate": 0.0006,
+ "loss": 3.6689958572387695,
+ "step": 1023
+ },
+ {
+ "epoch": 14.2235807860262,
+ "grad_norm": 0.04133584722876549,
+ "learning_rate": 0.0006,
+ "loss": 3.6584630012512207,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237554585152838,
+ "grad_norm": 0.04211857542395592,
+ "learning_rate": 0.0006,
+ "loss": 3.6606225967407227,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251528384279476,
+ "grad_norm": 0.038261570036411285,
+ "learning_rate": 0.0006,
+ "loss": 3.667980194091797,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265502183406113,
+ "grad_norm": 0.03518976271152496,
+ "learning_rate": 0.0006,
+ "loss": 3.6699838638305664,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279475982532752,
+ "grad_norm": 0.03253129869699478,
+ "learning_rate": 0.0006,
+ "loss": 3.636895179748535,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293449781659389,
+ "grad_norm": 0.031595997512340546,
+ "learning_rate": 0.0006,
+ "loss": 3.632096290588379,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307423580786025,
+ "grad_norm": 0.03253999352455139,
+ "learning_rate": 0.0006,
+ "loss": 3.6577043533325195,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321397379912664,
+ "grad_norm": 0.034704145044088364,
+ "learning_rate": 0.0006,
+ "loss": 3.703457832336426,
+ "step": 1031
+ },
+ {
+ "epoch": 14.335371179039301,
+ "grad_norm": 0.03362954035401344,
+ "learning_rate": 0.0006,
+ "loss": 3.6303958892822266,
+ "step": 1032
+ },
+ {
+ "epoch": 14.34934497816594,
+ "grad_norm": 0.02985706552863121,
+ "learning_rate": 0.0006,
+ "loss": 3.669577121734619,
+ "step": 1033
+ },
+ {
+ "epoch": 14.363318777292577,
+ "grad_norm": 0.028826212510466576,
+ "learning_rate": 0.0006,
+ "loss": 3.6573240756988525,
+ "step": 1034
+ },
+ {
+ "epoch": 14.377292576419213,
+ "grad_norm": 0.025705639272928238,
+ "learning_rate": 0.0006,
+ "loss": 3.695673942565918,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391266375545852,
+ "grad_norm": 0.02392077073454857,
+ "learning_rate": 0.0006,
+ "loss": 3.699263095855713,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405240174672489,
+ "grad_norm": 0.02234474942088127,
+ "learning_rate": 0.0006,
+ "loss": 3.666858196258545,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419213973799126,
+ "grad_norm": 0.021519573405385017,
+ "learning_rate": 0.0006,
+ "loss": 3.6542158126831055,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433187772925764,
+ "grad_norm": 0.019302112981677055,
+ "learning_rate": 0.0006,
+ "loss": 3.672900676727295,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447161572052401,
+ "grad_norm": 0.01938394270837307,
+ "learning_rate": 0.0006,
+ "loss": 3.6841869354248047,
+ "step": 1040
+ },
+ {
+ "epoch": 14.46113537117904,
+ "grad_norm": 0.01918088085949421,
+ "learning_rate": 0.0006,
+ "loss": 3.6915340423583984,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475109170305677,
+ "grad_norm": 0.019382303580641747,
+ "learning_rate": 0.0006,
+ "loss": 3.696239471435547,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489082969432314,
+ "grad_norm": 0.0190880224108696,
+ "learning_rate": 0.0006,
+ "loss": 3.686777114868164,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503056768558952,
+ "grad_norm": 0.019921699538826942,
+ "learning_rate": 0.0006,
+ "loss": 3.596571207046509,
+ "step": 1044
+ },
+ {
+ "epoch": 14.51703056768559,
+ "grad_norm": 0.019849983975291252,
+ "learning_rate": 0.0006,
+ "loss": 3.6621527671813965,
+ "step": 1045
+ },
+ {
+ "epoch": 14.531004366812226,
+ "grad_norm": 0.01987219788134098,
+ "learning_rate": 0.0006,
+ "loss": 3.6440532207489014,
+ "step": 1046
+ },
+ {
+ "epoch": 14.544978165938865,
+ "grad_norm": 0.019135860726237297,
+ "learning_rate": 0.0006,
+ "loss": 3.663760185241699,
+ "step": 1047
+ },
+ {
+ "epoch": 14.558951965065502,
+ "grad_norm": 0.019754081964492798,
+ "learning_rate": 0.0006,
+ "loss": 3.692115306854248,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57292576419214,
+ "grad_norm": 0.017559237778186798,
+ "learning_rate": 0.0006,
+ "loss": 3.6560468673706055,
+ "step": 1049
+ },
+ {
+ "epoch": 14.586899563318777,
+ "grad_norm": 0.018740499392151833,
+ "learning_rate": 0.0006,
+ "loss": 3.678459405899048,
+ "step": 1050
+ },
+ {
+ "epoch": 14.600873362445414,
+ "grad_norm": 0.020979298278689384,
+ "learning_rate": 0.0006,
+ "loss": 3.6760807037353516,
+ "step": 1051
+ },
+ {
+ "epoch": 14.614847161572053,
+ "grad_norm": 0.024136187508702278,
+ "learning_rate": 0.0006,
+ "loss": 3.6586780548095703,
+ "step": 1052
+ },
+ {
+ "epoch": 14.62882096069869,
+ "grad_norm": 0.022492283955216408,
+ "learning_rate": 0.0006,
+ "loss": 3.6521711349487305,
+ "step": 1053
+ },
+ {
+ "epoch": 14.642794759825328,
+ "grad_norm": 0.022067412734031677,
+ "learning_rate": 0.0006,
+ "loss": 3.6784937381744385,
+ "step": 1054
+ },
+ {
+ "epoch": 14.656768558951965,
+ "grad_norm": 0.019800225272774696,
+ "learning_rate": 0.0006,
+ "loss": 3.6375701427459717,
+ "step": 1055
+ },
+ {
+ "epoch": 14.670742358078602,
+ "grad_norm": 0.018210966140031815,
+ "learning_rate": 0.0006,
+ "loss": 3.6653239727020264,
+ "step": 1056
+ },
+ {
+ "epoch": 14.68471615720524,
+ "grad_norm": 0.018579861149191856,
+ "learning_rate": 0.0006,
+ "loss": 3.718411922454834,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698689956331878,
+ "grad_norm": 0.016911206766963005,
+ "learning_rate": 0.0006,
+ "loss": 3.6463894844055176,
+ "step": 1058
+ },
+ {
+ "epoch": 14.712663755458514,
+ "grad_norm": 0.016846856102347374,
+ "learning_rate": 0.0006,
+ "loss": 3.672767162322998,
+ "step": 1059
+ },
+ {
+ "epoch": 14.726637554585153,
+ "grad_norm": 0.0170889999717474,
+ "learning_rate": 0.0006,
+ "loss": 3.6862080097198486,
+ "step": 1060
+ },
+ {
+ "epoch": 14.74061135371179,
+ "grad_norm": 0.016432611271739006,
+ "learning_rate": 0.0006,
+ "loss": 3.656050682067871,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754585152838429,
+ "grad_norm": 0.016253121197223663,
+ "learning_rate": 0.0006,
+ "loss": 3.6118998527526855,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768558951965066,
+ "grad_norm": 0.016804836690425873,
+ "learning_rate": 0.0006,
+ "loss": 3.6646556854248047,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782532751091702,
+ "grad_norm": 0.016385341063141823,
+ "learning_rate": 0.0006,
+ "loss": 3.6862335205078125,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796506550218341,
+ "grad_norm": 0.016926517710089684,
+ "learning_rate": 0.0006,
+ "loss": 3.675138473510742,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810480349344978,
+ "grad_norm": 0.018508978188037872,
+ "learning_rate": 0.0006,
+ "loss": 3.7009687423706055,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824454148471617,
+ "grad_norm": 0.018666446208953857,
+ "learning_rate": 0.0006,
+ "loss": 3.636359214782715,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838427947598253,
+ "grad_norm": 0.019378433004021645,
+ "learning_rate": 0.0006,
+ "loss": 3.665518283843994,
+ "step": 1068
+ },
+ {
+ "epoch": 14.85240174672489,
+ "grad_norm": 0.02128547430038452,
+ "learning_rate": 0.0006,
+ "loss": 3.7005434036254883,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866375545851529,
+ "grad_norm": 0.02191224694252014,
+ "learning_rate": 0.0006,
+ "loss": 3.6584267616271973,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880349344978166,
+ "grad_norm": 0.019272804260253906,
+ "learning_rate": 0.0006,
+ "loss": 3.673880100250244,
+ "step": 1071
+ },
+ {
+ "epoch": 14.894323144104803,
+ "grad_norm": 0.018591508269309998,
+ "learning_rate": 0.0006,
+ "loss": 3.680145025253296,
+ "step": 1072
+ },
+ {
+ "epoch": 14.908296943231441,
+ "grad_norm": 0.019954141229391098,
+ "learning_rate": 0.0006,
+ "loss": 3.659092903137207,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922270742358078,
+ "grad_norm": 0.019956151023507118,
+ "learning_rate": 0.0006,
+ "loss": 3.680950164794922,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936244541484717,
+ "grad_norm": 0.0198400616645813,
+ "learning_rate": 0.0006,
+ "loss": 3.665740728378296,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950218340611354,
+ "grad_norm": 0.018525801599025726,
+ "learning_rate": 0.0006,
+ "loss": 3.695254325866699,
+ "step": 1076
+ },
+ {
+ "epoch": 14.96419213973799,
+ "grad_norm": 0.019410012289881706,
+ "learning_rate": 0.0006,
+ "loss": 3.637185573577881,
+ "step": 1077
+ },
+ {
+ "epoch": 14.97816593886463,
+ "grad_norm": 0.01842549443244934,
+ "learning_rate": 0.0006,
+ "loss": 3.6925792694091797,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992139737991266,
+ "grad_norm": 0.018512850627303123,
+ "learning_rate": 0.0006,
+ "loss": 3.6421403884887695,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.019783539697527885,
+ "learning_rate": 0.0006,
+ "loss": 3.669989824295044,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.0208282470703125,
+ "eval_runtime": 50.0946,
+ "eval_samples_per_second": 48.748,
+ "eval_steps_per_second": 1.537,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013973799126637,
+ "grad_norm": 0.02009645849466324,
+ "learning_rate": 0.0006,
+ "loss": 3.5637366771698,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027947598253276,
+ "grad_norm": 0.02333172969520092,
+ "learning_rate": 0.0006,
+ "loss": 3.5258095264434814,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041921397379912,
+ "grad_norm": 0.027971796691417694,
+ "learning_rate": 0.0006,
+ "loss": 3.552365779876709,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055895196506551,
+ "grad_norm": 0.03144870325922966,
+ "learning_rate": 0.0006,
+ "loss": 3.570685863494873,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069868995633188,
+ "grad_norm": 0.03174359351396561,
+ "learning_rate": 0.0006,
+ "loss": 3.557307720184326,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083842794759825,
+ "grad_norm": 0.0314076766371727,
+ "learning_rate": 0.0006,
+ "loss": 3.5835516452789307,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097816593886463,
+ "grad_norm": 0.02998494543135166,
+ "learning_rate": 0.0006,
+ "loss": 3.564689874649048,
+ "step": 1087
+ },
+ {
+ "epoch": 15.1117903930131,
+ "grad_norm": 0.027682173997163773,
+ "learning_rate": 0.0006,
+ "loss": 3.5372314453125,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125764192139737,
+ "grad_norm": 0.029720479622483253,
+ "learning_rate": 0.0006,
+ "loss": 3.5263895988464355,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139737991266376,
+ "grad_norm": 0.03526446595788002,
+ "learning_rate": 0.0006,
+ "loss": 3.5656511783599854,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153711790393013,
+ "grad_norm": 0.03473281115293503,
+ "learning_rate": 0.0006,
+ "loss": 3.5796432495117188,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167685589519651,
+ "grad_norm": 0.034728601574897766,
+ "learning_rate": 0.0006,
+ "loss": 3.5634264945983887,
+ "step": 1092
+ },
+ {
+ "epoch": 15.181659388646288,
+ "grad_norm": 0.03513004630804062,
+ "learning_rate": 0.0006,
+ "loss": 3.587097644805908,
+ "step": 1093
+ },
+ {
+ "epoch": 15.195633187772925,
+ "grad_norm": 0.03495538607239723,
+ "learning_rate": 0.0006,
+ "loss": 3.588749885559082,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209606986899564,
+ "grad_norm": 0.03559393063187599,
+ "learning_rate": 0.0006,
+ "loss": 3.588261604309082,
+ "step": 1095
+ },
+ {
+ "epoch": 15.2235807860262,
+ "grad_norm": 0.04117827117443085,
+ "learning_rate": 0.0006,
+ "loss": 3.5925493240356445,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237554585152838,
+ "grad_norm": 0.03481105715036392,
+ "learning_rate": 0.0006,
+ "loss": 3.609713077545166,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251528384279476,
+ "grad_norm": 0.03399660810828209,
+ "learning_rate": 0.0006,
+ "loss": 3.6001386642456055,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265502183406113,
+ "grad_norm": 0.037158723920583725,
+ "learning_rate": 0.0006,
+ "loss": 3.5907320976257324,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279475982532752,
+ "grad_norm": 0.03714929521083832,
+ "learning_rate": 0.0006,
+ "loss": 3.620131015777588,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293449781659389,
+ "grad_norm": 0.03506772965192795,
+ "learning_rate": 0.0006,
+ "loss": 3.5833165645599365,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307423580786025,
+ "grad_norm": 0.03335156291723251,
+ "learning_rate": 0.0006,
+ "loss": 3.588583469390869,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321397379912664,
+ "grad_norm": 0.03749598562717438,
+ "learning_rate": 0.0006,
+ "loss": 3.5726234912872314,
+ "step": 1103
+ },
+ {
+ "epoch": 15.335371179039301,
+ "grad_norm": 0.033490296453237534,
+ "learning_rate": 0.0006,
+ "loss": 3.609440326690674,
+ "step": 1104
+ },
+ {
+ "epoch": 15.34934497816594,
+ "grad_norm": 0.02744245156645775,
+ "learning_rate": 0.0006,
+ "loss": 3.5969347953796387,
+ "step": 1105
+ },
+ {
+ "epoch": 15.363318777292577,
+ "grad_norm": 0.025563672184944153,
+ "learning_rate": 0.0006,
+ "loss": 3.6081204414367676,
+ "step": 1106
+ },
+ {
+ "epoch": 15.377292576419213,
+ "grad_norm": 0.02479025535285473,
+ "learning_rate": 0.0006,
+ "loss": 3.569492816925049,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391266375545852,
+ "grad_norm": 0.022969363257288933,
+ "learning_rate": 0.0006,
+ "loss": 3.5940051078796387,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405240174672489,
+ "grad_norm": 0.0211333017796278,
+ "learning_rate": 0.0006,
+ "loss": 3.6032228469848633,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419213973799126,
+ "grad_norm": 0.023232776671648026,
+ "learning_rate": 0.0006,
+ "loss": 3.597538471221924,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433187772925764,
+ "grad_norm": 0.02560894563794136,
+ "learning_rate": 0.0006,
+ "loss": 3.6099822521209717,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447161572052401,
+ "grad_norm": 0.028530243784189224,
+ "learning_rate": 0.0006,
+ "loss": 3.6099116802215576,
+ "step": 1112
+ },
+ {
+ "epoch": 15.46113537117904,
+ "grad_norm": 0.024349553510546684,
+ "learning_rate": 0.0006,
+ "loss": 3.596257448196411,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475109170305677,
+ "grad_norm": 0.025264214724302292,
+ "learning_rate": 0.0006,
+ "loss": 3.58459210395813,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489082969432314,
+ "grad_norm": 0.024628883227705956,
+ "learning_rate": 0.0006,
+ "loss": 3.5940113067626953,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503056768558952,
+ "grad_norm": 0.02550858072936535,
+ "learning_rate": 0.0006,
+ "loss": 3.6039438247680664,
+ "step": 1116
+ },
+ {
+ "epoch": 15.51703056768559,
+ "grad_norm": 0.02455618977546692,
+ "learning_rate": 0.0006,
+ "loss": 3.582425594329834,
+ "step": 1117
+ },
+ {
+ "epoch": 15.531004366812226,
+ "grad_norm": 0.023190757259726524,
+ "learning_rate": 0.0006,
+ "loss": 3.5945615768432617,
+ "step": 1118
+ },
+ {
+ "epoch": 15.544978165938865,
+ "grad_norm": 0.025178825482726097,
+ "learning_rate": 0.0006,
+ "loss": 3.6276583671569824,
+ "step": 1119
+ },
+ {
+ "epoch": 15.558951965065502,
+ "grad_norm": 0.027304047718644142,
+ "learning_rate": 0.0006,
+ "loss": 3.591130018234253,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57292576419214,
+ "grad_norm": 0.02635739929974079,
+ "learning_rate": 0.0006,
+ "loss": 3.626152992248535,
+ "step": 1121
+ },
+ {
+ "epoch": 15.586899563318777,
+ "grad_norm": 0.023574283346533775,
+ "learning_rate": 0.0006,
+ "loss": 3.5790467262268066,
+ "step": 1122
+ },
+ {
+ "epoch": 15.600873362445414,
+ "grad_norm": 0.02167615108191967,
+ "learning_rate": 0.0006,
+ "loss": 3.5816423892974854,
+ "step": 1123
+ },
+ {
+ "epoch": 15.614847161572053,
+ "grad_norm": 0.020352814346551895,
+ "learning_rate": 0.0006,
+ "loss": 3.5963048934936523,
+ "step": 1124
+ },
+ {
+ "epoch": 15.62882096069869,
+ "grad_norm": 0.022047650068998337,
+ "learning_rate": 0.0006,
+ "loss": 3.5933878421783447,
+ "step": 1125
+ },
+ {
+ "epoch": 15.642794759825328,
+ "grad_norm": 0.022744329646229744,
+ "learning_rate": 0.0006,
+ "loss": 3.5755128860473633,
+ "step": 1126
+ },
+ {
+ "epoch": 15.656768558951965,
+ "grad_norm": 0.020325182005763054,
+ "learning_rate": 0.0006,
+ "loss": 3.5617265701293945,
+ "step": 1127
+ },
+ {
+ "epoch": 15.670742358078602,
+ "grad_norm": 0.021056298166513443,
+ "learning_rate": 0.0006,
+ "loss": 3.5767688751220703,
+ "step": 1128
+ },
+ {
+ "epoch": 15.68471615720524,
+ "grad_norm": 0.019120410084724426,
+ "learning_rate": 0.0006,
+ "loss": 3.5909035205841064,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698689956331878,
+ "grad_norm": 0.01864859275519848,
+ "learning_rate": 0.0006,
+ "loss": 3.586052417755127,
+ "step": 1130
+ },
+ {
+ "epoch": 15.712663755458514,
+ "grad_norm": 0.017953047528862953,
+ "learning_rate": 0.0006,
+ "loss": 3.5801734924316406,
+ "step": 1131
+ },
+ {
+ "epoch": 15.726637554585153,
+ "grad_norm": 0.019331611692905426,
+ "learning_rate": 0.0006,
+ "loss": 3.5663723945617676,
+ "step": 1132
+ },
+ {
+ "epoch": 15.74061135371179,
+ "grad_norm": 0.018863828852772713,
+ "learning_rate": 0.0006,
+ "loss": 3.5982472896575928,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754585152838429,
+ "grad_norm": 0.01941121369600296,
+ "learning_rate": 0.0006,
+ "loss": 3.586141586303711,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768558951965066,
+ "grad_norm": 0.0202215276658535,
+ "learning_rate": 0.0006,
+ "loss": 3.603093385696411,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782532751091702,
+ "grad_norm": 0.02065861038863659,
+ "learning_rate": 0.0006,
+ "loss": 3.6258344650268555,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796506550218341,
+ "grad_norm": 0.019885104149580002,
+ "learning_rate": 0.0006,
+ "loss": 3.5961670875549316,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810480349344978,
+ "grad_norm": 0.019395584240555763,
+ "learning_rate": 0.0006,
+ "loss": 3.6085386276245117,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824454148471617,
+ "grad_norm": 0.02079256810247898,
+ "learning_rate": 0.0006,
+ "loss": 3.5907459259033203,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838427947598253,
+ "grad_norm": 0.021177049726247787,
+ "learning_rate": 0.0006,
+ "loss": 3.6031875610351562,
+ "step": 1140
+ },
+ {
+ "epoch": 15.85240174672489,
+ "grad_norm": 0.01875251717865467,
+ "learning_rate": 0.0006,
+ "loss": 3.5799269676208496,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866375545851529,
+ "grad_norm": 0.018393032252788544,
+ "learning_rate": 0.0006,
+ "loss": 3.589036464691162,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880349344978166,
+ "grad_norm": 0.017482910305261612,
+ "learning_rate": 0.0006,
+ "loss": 3.57010555267334,
+ "step": 1143
+ },
+ {
+ "epoch": 15.894323144104803,
+ "grad_norm": 0.017565404996275902,
+ "learning_rate": 0.0006,
+ "loss": 3.586590051651001,
+ "step": 1144
+ },
+ {
+ "epoch": 15.908296943231441,
+ "grad_norm": 0.018097810447216034,
+ "learning_rate": 0.0006,
+ "loss": 3.60231876373291,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922270742358078,
+ "grad_norm": 0.01748323254287243,
+ "learning_rate": 0.0006,
+ "loss": 3.605266571044922,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936244541484717,
+ "grad_norm": 0.017633914947509766,
+ "learning_rate": 0.0006,
+ "loss": 3.57650089263916,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950218340611354,
+ "grad_norm": 0.017630109563469887,
+ "learning_rate": 0.0006,
+ "loss": 3.599179744720459,
+ "step": 1148
+ },
+ {
+ "epoch": 15.96419213973799,
+ "grad_norm": 0.017756082117557526,
+ "learning_rate": 0.0006,
+ "loss": 3.610539436340332,
+ "step": 1149
+ },
+ {
+ "epoch": 15.97816593886463,
+ "grad_norm": 0.017975619062781334,
+ "learning_rate": 0.0006,
+ "loss": 3.5654094219207764,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992139737991266,
+ "grad_norm": 0.01672595739364624,
+ "learning_rate": 0.0006,
+ "loss": 3.5157313346862793,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.018963614478707314,
+ "learning_rate": 0.0006,
+ "loss": 3.5679218769073486,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.002192497253418,
+ "eval_runtime": 54.7074,
+ "eval_samples_per_second": 44.638,
+ "eval_steps_per_second": 1.407,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397379912664,
+ "grad_norm": 0.019997047260403633,
+ "learning_rate": 0.0006,
+ "loss": 3.4640445709228516,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027947598253274,
+ "grad_norm": 0.02668819949030876,
+ "learning_rate": 0.0006,
+ "loss": 3.4792230129241943,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041921397379912,
+ "grad_norm": 0.03133378177881241,
+ "learning_rate": 0.0006,
+ "loss": 3.445514678955078,
+ "step": 1155
+ },
+ {
+ "epoch": 16.05589519650655,
+ "grad_norm": 0.0333341620862484,
+ "learning_rate": 0.0006,
+ "loss": 3.4823379516601562,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069868995633186,
+ "grad_norm": 0.033309273421764374,
+ "learning_rate": 0.0006,
+ "loss": 3.5140066146850586,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083842794759825,
+ "grad_norm": 0.03211270272731781,
+ "learning_rate": 0.0006,
+ "loss": 3.4474544525146484,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097816593886463,
+ "grad_norm": 0.030286215245723724,
+ "learning_rate": 0.0006,
+ "loss": 3.4566705226898193,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111790393013102,
+ "grad_norm": 0.034668438136577606,
+ "learning_rate": 0.0006,
+ "loss": 3.464046001434326,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125764192139737,
+ "grad_norm": 0.03580283746123314,
+ "learning_rate": 0.0006,
+ "loss": 3.483121871948242,
+ "step": 1161
+ },
+ {
+ "epoch": 16.139737991266376,
+ "grad_norm": 0.03359296917915344,
+ "learning_rate": 0.0006,
+ "loss": 3.477879524230957,
+ "step": 1162
+ },
+ {
+ "epoch": 16.153711790393015,
+ "grad_norm": 0.03444180637598038,
+ "learning_rate": 0.0006,
+ "loss": 3.513066053390503,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16768558951965,
+ "grad_norm": 0.034195005893707275,
+ "learning_rate": 0.0006,
+ "loss": 3.4954705238342285,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18165938864629,
+ "grad_norm": 0.03186183422803879,
+ "learning_rate": 0.0006,
+ "loss": 3.5126149654388428,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195633187772927,
+ "grad_norm": 0.03474068269133568,
+ "learning_rate": 0.0006,
+ "loss": 3.4613423347473145,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209606986899562,
+ "grad_norm": 0.03117581456899643,
+ "learning_rate": 0.0006,
+ "loss": 3.5202698707580566,
+ "step": 1167
+ },
+ {
+ "epoch": 16.2235807860262,
+ "grad_norm": 0.030044663697481155,
+ "learning_rate": 0.0006,
+ "loss": 3.4795448780059814,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23755458515284,
+ "grad_norm": 0.03448783978819847,
+ "learning_rate": 0.0006,
+ "loss": 3.4979453086853027,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251528384279474,
+ "grad_norm": 0.040600501000881195,
+ "learning_rate": 0.0006,
+ "loss": 3.5161967277526855,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265502183406113,
+ "grad_norm": 0.041196491569280624,
+ "learning_rate": 0.0006,
+ "loss": 3.5099880695343018,
+ "step": 1171
+ },
+ {
+ "epoch": 16.27947598253275,
+ "grad_norm": 0.0403696708381176,
+ "learning_rate": 0.0006,
+ "loss": 3.515664577484131,
+ "step": 1172
+ },
+ {
+ "epoch": 16.29344978165939,
+ "grad_norm": 0.0369957759976387,
+ "learning_rate": 0.0006,
+ "loss": 3.568899631500244,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307423580786025,
+ "grad_norm": 0.034086693078279495,
+ "learning_rate": 0.0006,
+ "loss": 3.5406198501586914,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321397379912664,
+ "grad_norm": 0.03118005394935608,
+ "learning_rate": 0.0006,
+ "loss": 3.4970381259918213,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335371179039303,
+ "grad_norm": 0.030468063428997993,
+ "learning_rate": 0.0006,
+ "loss": 3.5451807975769043,
+ "step": 1176
+ },
+ {
+ "epoch": 16.349344978165938,
+ "grad_norm": 0.0309329554438591,
+ "learning_rate": 0.0006,
+ "loss": 3.53481388092041,
+ "step": 1177
+ },
+ {
+ "epoch": 16.363318777292577,
+ "grad_norm": 0.030906643718481064,
+ "learning_rate": 0.0006,
+ "loss": 3.5201809406280518,
+ "step": 1178
+ },
+ {
+ "epoch": 16.377292576419215,
+ "grad_norm": 0.029425526037812233,
+ "learning_rate": 0.0006,
+ "loss": 3.5083932876586914,
+ "step": 1179
+ },
+ {
+ "epoch": 16.39126637554585,
+ "grad_norm": 0.03284955024719238,
+ "learning_rate": 0.0006,
+ "loss": 3.5315258502960205,
+ "step": 1180
+ },
+ {
+ "epoch": 16.40524017467249,
+ "grad_norm": 0.03235018253326416,
+ "learning_rate": 0.0006,
+ "loss": 3.5033299922943115,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419213973799128,
+ "grad_norm": 0.029569406062364578,
+ "learning_rate": 0.0006,
+ "loss": 3.52433180809021,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433187772925763,
+ "grad_norm": 0.028649726882576942,
+ "learning_rate": 0.0006,
+ "loss": 3.486379623413086,
+ "step": 1183
+ },
+ {
+ "epoch": 16.4471615720524,
+ "grad_norm": 0.027956973761320114,
+ "learning_rate": 0.0006,
+ "loss": 3.5237250328063965,
+ "step": 1184
+ },
+ {
+ "epoch": 16.46113537117904,
+ "grad_norm": 0.0276664849370718,
+ "learning_rate": 0.0006,
+ "loss": 3.512511730194092,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475109170305675,
+ "grad_norm": 0.027819795534014702,
+ "learning_rate": 0.0006,
+ "loss": 3.5440287590026855,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489082969432314,
+ "grad_norm": 0.028435861691832542,
+ "learning_rate": 0.0006,
+ "loss": 3.560199737548828,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503056768558952,
+ "grad_norm": 0.02672969177365303,
+ "learning_rate": 0.0006,
+ "loss": 3.5323410034179688,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51703056768559,
+ "grad_norm": 0.024931233376264572,
+ "learning_rate": 0.0006,
+ "loss": 3.5182852745056152,
+ "step": 1189
+ },
+ {
+ "epoch": 16.531004366812226,
+ "grad_norm": 0.02562815696001053,
+ "learning_rate": 0.0006,
+ "loss": 3.525887966156006,
+ "step": 1190
+ },
+ {
+ "epoch": 16.544978165938865,
+ "grad_norm": 0.022041132673621178,
+ "learning_rate": 0.0006,
+ "loss": 3.5331735610961914,
+ "step": 1191
+ },
+ {
+ "epoch": 16.558951965065503,
+ "grad_norm": 0.02091669663786888,
+ "learning_rate": 0.0006,
+ "loss": 3.5219545364379883,
+ "step": 1192
+ },
+ {
+ "epoch": 16.57292576419214,
+ "grad_norm": 0.0208087507635355,
+ "learning_rate": 0.0006,
+ "loss": 3.5721282958984375,
+ "step": 1193
+ },
+ {
+ "epoch": 16.586899563318777,
+ "grad_norm": 0.019807223230600357,
+ "learning_rate": 0.0006,
+ "loss": 3.493896484375,
+ "step": 1194
+ },
+ {
+ "epoch": 16.600873362445416,
+ "grad_norm": 0.019274886697530746,
+ "learning_rate": 0.0006,
+ "loss": 3.5042009353637695,
+ "step": 1195
+ },
+ {
+ "epoch": 16.61484716157205,
+ "grad_norm": 0.01950680837035179,
+ "learning_rate": 0.0006,
+ "loss": 3.5548095703125,
+ "step": 1196
+ },
+ {
+ "epoch": 16.62882096069869,
+ "grad_norm": 0.02027183771133423,
+ "learning_rate": 0.0006,
+ "loss": 3.495508909225464,
+ "step": 1197
+ },
+ {
+ "epoch": 16.64279475982533,
+ "grad_norm": 0.021261053159832954,
+ "learning_rate": 0.0006,
+ "loss": 3.531256675720215,
+ "step": 1198
+ },
+ {
+ "epoch": 16.656768558951963,
+ "grad_norm": 0.02054775319993496,
+ "learning_rate": 0.0006,
+ "loss": 3.499379873275757,
+ "step": 1199
+ },
+ {
+ "epoch": 16.670742358078602,
+ "grad_norm": 0.01810075156390667,
+ "learning_rate": 0.0006,
+ "loss": 3.561351776123047,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68471615720524,
+ "grad_norm": 0.017886348068714142,
+ "learning_rate": 0.0006,
+ "loss": 3.551504373550415,
+ "step": 1201
+ },
+ {
+ "epoch": 16.69868995633188,
+ "grad_norm": 0.01893145777285099,
+ "learning_rate": 0.0006,
+ "loss": 3.4890754222869873,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712663755458514,
+ "grad_norm": 0.018899526447057724,
+ "learning_rate": 0.0006,
+ "loss": 3.545161724090576,
+ "step": 1203
+ },
+ {
+ "epoch": 16.726637554585153,
+ "grad_norm": 0.018913133069872856,
+ "learning_rate": 0.0006,
+ "loss": 3.502636194229126,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74061135371179,
+ "grad_norm": 0.019347554072737694,
+ "learning_rate": 0.0006,
+ "loss": 3.521177291870117,
+ "step": 1205
+ },
+ {
+ "epoch": 16.754585152838427,
+ "grad_norm": 0.02018282189965248,
+ "learning_rate": 0.0006,
+ "loss": 3.5440759658813477,
+ "step": 1206
+ },
+ {
+ "epoch": 16.768558951965066,
+ "grad_norm": 0.018046081066131592,
+ "learning_rate": 0.0006,
+ "loss": 3.5429065227508545,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782532751091704,
+ "grad_norm": 0.01814688742160797,
+ "learning_rate": 0.0006,
+ "loss": 3.524298667907715,
+ "step": 1208
+ },
+ {
+ "epoch": 16.79650655021834,
+ "grad_norm": 0.017817430198192596,
+ "learning_rate": 0.0006,
+ "loss": 3.5429811477661133,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810480349344978,
+ "grad_norm": 0.01804095320403576,
+ "learning_rate": 0.0006,
+ "loss": 3.5601816177368164,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824454148471617,
+ "grad_norm": 0.01939644105732441,
+ "learning_rate": 0.0006,
+ "loss": 3.5711722373962402,
+ "step": 1211
+ },
+ {
+ "epoch": 16.83842794759825,
+ "grad_norm": 0.019648978486657143,
+ "learning_rate": 0.0006,
+ "loss": 3.5105032920837402,
+ "step": 1212
+ },
+ {
+ "epoch": 16.85240174672489,
+ "grad_norm": 0.01914234645664692,
+ "learning_rate": 0.0006,
+ "loss": 3.5199899673461914,
+ "step": 1213
+ },
+ {
+ "epoch": 16.86637554585153,
+ "grad_norm": 0.019934657961130142,
+ "learning_rate": 0.0006,
+ "loss": 3.531907320022583,
+ "step": 1214
+ },
+ {
+ "epoch": 16.880349344978168,
+ "grad_norm": 0.019740048795938492,
+ "learning_rate": 0.0006,
+ "loss": 3.4846372604370117,
+ "step": 1215
+ },
+ {
+ "epoch": 16.894323144104803,
+ "grad_norm": 0.020136266946792603,
+ "learning_rate": 0.0006,
+ "loss": 3.5342910289764404,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90829694323144,
+ "grad_norm": 0.021572282537817955,
+ "learning_rate": 0.0006,
+ "loss": 3.5846221446990967,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92227074235808,
+ "grad_norm": 0.01965942606329918,
+ "learning_rate": 0.0006,
+ "loss": 3.489861011505127,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936244541484715,
+ "grad_norm": 0.018763914704322815,
+ "learning_rate": 0.0006,
+ "loss": 3.5294601917266846,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950218340611354,
+ "grad_norm": 0.017964672297239304,
+ "learning_rate": 0.0006,
+ "loss": 3.5389389991760254,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964192139737992,
+ "grad_norm": 0.018288105726242065,
+ "learning_rate": 0.0006,
+ "loss": 3.531959056854248,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978165938864628,
+ "grad_norm": 0.019321706146001816,
+ "learning_rate": 0.0006,
+ "loss": 3.533597469329834,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992139737991266,
+ "grad_norm": 0.019614171236753464,
+ "learning_rate": 0.0006,
+ "loss": 3.5083813667297363,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.020609203726053238,
+ "learning_rate": 0.0006,
+ "loss": 3.580991268157959,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 3.992704153060913,
+ "eval_runtime": 50.2038,
+ "eval_samples_per_second": 48.642,
+ "eval_steps_per_second": 1.534,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397379912664,
+ "grad_norm": 0.023699766024947166,
+ "learning_rate": 0.0006,
+ "loss": 3.4216837882995605,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027947598253274,
+ "grad_norm": 0.03299031779170036,
+ "learning_rate": 0.0006,
+ "loss": 3.3943543434143066,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041921397379912,
+ "grad_norm": 0.0365300215780735,
+ "learning_rate": 0.0006,
+ "loss": 3.419881820678711,
+ "step": 1227
+ },
+ {
+ "epoch": 17.05589519650655,
+ "grad_norm": 0.037790149450302124,
+ "learning_rate": 0.0006,
+ "loss": 3.397857666015625,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069868995633186,
+ "grad_norm": 0.03478766605257988,
+ "learning_rate": 0.0006,
+ "loss": 3.4057488441467285,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083842794759825,
+ "grad_norm": 0.03660628944635391,
+ "learning_rate": 0.0006,
+ "loss": 3.449805498123169,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097816593886463,
+ "grad_norm": 0.03783934935927391,
+ "learning_rate": 0.0006,
+ "loss": 3.391709804534912,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111790393013102,
+ "grad_norm": 0.03578848019242287,
+ "learning_rate": 0.0006,
+ "loss": 3.3921704292297363,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125764192139737,
+ "grad_norm": 0.04182235524058342,
+ "learning_rate": 0.0006,
+ "loss": 3.406362295150757,
+ "step": 1233
+ },
+ {
+ "epoch": 17.139737991266376,
+ "grad_norm": 0.04345374181866646,
+ "learning_rate": 0.0006,
+ "loss": 3.39174222946167,
+ "step": 1234
+ },
+ {
+ "epoch": 17.153711790393015,
+ "grad_norm": 0.0420818068087101,
+ "learning_rate": 0.0006,
+ "loss": 3.431614398956299,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16768558951965,
+ "grad_norm": 0.045535873621702194,
+ "learning_rate": 0.0006,
+ "loss": 3.4326839447021484,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18165938864629,
+ "grad_norm": 0.05574474856257439,
+ "learning_rate": 0.0006,
+ "loss": 3.4711036682128906,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195633187772927,
+ "grad_norm": 0.057157132774591446,
+ "learning_rate": 0.0006,
+ "loss": 3.4650626182556152,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209606986899562,
+ "grad_norm": 0.053199656307697296,
+ "learning_rate": 0.0006,
+ "loss": 3.4461426734924316,
+ "step": 1239
+ },
+ {
+ "epoch": 17.2235807860262,
+ "grad_norm": 0.054264020174741745,
+ "learning_rate": 0.0006,
+ "loss": 3.4681930541992188,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23755458515284,
+ "grad_norm": 0.05625223368406296,
+ "learning_rate": 0.0006,
+ "loss": 3.4914324283599854,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251528384279474,
+ "grad_norm": 0.061760347336530685,
+ "learning_rate": 0.0006,
+ "loss": 3.525092840194702,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265502183406113,
+ "grad_norm": 0.0628439411520958,
+ "learning_rate": 0.0006,
+ "loss": 3.5061843395233154,
+ "step": 1243
+ },
+ {
+ "epoch": 17.27947598253275,
+ "grad_norm": 0.0659259706735611,
+ "learning_rate": 0.0006,
+ "loss": 3.53128719329834,
+ "step": 1244
+ },
+ {
+ "epoch": 17.29344978165939,
+ "grad_norm": 0.05818862468004227,
+ "learning_rate": 0.0006,
+ "loss": 3.5536415576934814,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307423580786025,
+ "grad_norm": 0.05471836030483246,
+ "learning_rate": 0.0006,
+ "loss": 3.5337672233581543,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321397379912664,
+ "grad_norm": 0.0487399697303772,
+ "learning_rate": 0.0006,
+ "loss": 3.522909641265869,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335371179039303,
+ "grad_norm": 0.05006934702396393,
+ "learning_rate": 0.0006,
+ "loss": 3.5228986740112305,
+ "step": 1248
+ },
+ {
+ "epoch": 17.349344978165938,
+ "grad_norm": 0.047036584466695786,
+ "learning_rate": 0.0006,
+ "loss": 3.582343578338623,
+ "step": 1249
+ },
+ {
+ "epoch": 17.363318777292577,
+ "grad_norm": 0.045836590230464935,
+ "learning_rate": 0.0006,
+ "loss": 3.5376439094543457,
+ "step": 1250
+ },
+ {
+ "epoch": 17.377292576419215,
+ "grad_norm": 0.044237297028303146,
+ "learning_rate": 0.0006,
+ "loss": 3.5435123443603516,
+ "step": 1251
+ },
+ {
+ "epoch": 17.39126637554585,
+ "grad_norm": 0.04441322013735771,
+ "learning_rate": 0.0006,
+ "loss": 3.5400638580322266,
+ "step": 1252
+ },
+ {
+ "epoch": 17.40524017467249,
+ "grad_norm": 0.04533323645591736,
+ "learning_rate": 0.0006,
+ "loss": 3.5287728309631348,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419213973799128,
+ "grad_norm": 0.03689985349774361,
+ "learning_rate": 0.0006,
+ "loss": 3.5161759853363037,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433187772925763,
+ "grad_norm": 0.03836561366915703,
+ "learning_rate": 0.0006,
+ "loss": 3.4899721145629883,
+ "step": 1255
+ },
+ {
+ "epoch": 17.4471615720524,
+ "grad_norm": 0.03594471141695976,
+ "learning_rate": 0.0006,
+ "loss": 3.534101963043213,
+ "step": 1256
+ },
+ {
+ "epoch": 17.46113537117904,
+ "grad_norm": 0.03834489732980728,
+ "learning_rate": 0.0006,
+ "loss": 3.4943580627441406,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475109170305675,
+ "grad_norm": 0.04318688064813614,
+ "learning_rate": 0.0006,
+ "loss": 3.5304384231567383,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489082969432314,
+ "grad_norm": 0.04468952864408493,
+ "learning_rate": 0.0006,
+ "loss": 3.5435900688171387,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503056768558952,
+ "grad_norm": 0.041371092200279236,
+ "learning_rate": 0.0006,
+ "loss": 3.529571056365967,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51703056768559,
+ "grad_norm": 0.03826779127120972,
+ "learning_rate": 0.0006,
+ "loss": 3.5024611949920654,
+ "step": 1261
+ },
+ {
+ "epoch": 17.531004366812226,
+ "grad_norm": 0.030302148312330246,
+ "learning_rate": 0.0006,
+ "loss": 3.5491857528686523,
+ "step": 1262
+ },
+ {
+ "epoch": 17.544978165938865,
+ "grad_norm": 0.02673652581870556,
+ "learning_rate": 0.0006,
+ "loss": 3.498325824737549,
+ "step": 1263
+ },
+ {
+ "epoch": 17.558951965065503,
+ "grad_norm": 0.026035286486148834,
+ "learning_rate": 0.0006,
+ "loss": 3.524242639541626,
+ "step": 1264
+ },
+ {
+ "epoch": 17.57292576419214,
+ "grad_norm": 0.02433512918651104,
+ "learning_rate": 0.0006,
+ "loss": 3.496821880340576,
+ "step": 1265
+ },
+ {
+ "epoch": 17.586899563318777,
+ "grad_norm": 0.023563958704471588,
+ "learning_rate": 0.0006,
+ "loss": 3.4883062839508057,
+ "step": 1266
+ },
+ {
+ "epoch": 17.600873362445416,
+ "grad_norm": 0.0206421110779047,
+ "learning_rate": 0.0006,
+ "loss": 3.519468069076538,
+ "step": 1267
+ },
+ {
+ "epoch": 17.61484716157205,
+ "grad_norm": 0.020854417234659195,
+ "learning_rate": 0.0006,
+ "loss": 3.5546176433563232,
+ "step": 1268
+ },
+ {
+ "epoch": 17.62882096069869,
+ "grad_norm": 0.01948000118136406,
+ "learning_rate": 0.0006,
+ "loss": 3.4945712089538574,
+ "step": 1269
+ },
+ {
+ "epoch": 17.64279475982533,
+ "grad_norm": 0.018670955672860146,
+ "learning_rate": 0.0006,
+ "loss": 3.4944663047790527,
+ "step": 1270
+ },
+ {
+ "epoch": 17.656768558951963,
+ "grad_norm": 0.018675116822123528,
+ "learning_rate": 0.0006,
+ "loss": 3.4906811714172363,
+ "step": 1271
+ },
+ {
+ "epoch": 17.670742358078602,
+ "grad_norm": 0.018198898062109947,
+ "learning_rate": 0.0006,
+ "loss": 3.4814324378967285,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68471615720524,
+ "grad_norm": 0.017625771462917328,
+ "learning_rate": 0.0006,
+ "loss": 3.481903553009033,
+ "step": 1273
+ },
+ {
+ "epoch": 17.69868995633188,
+ "grad_norm": 0.017468655481934547,
+ "learning_rate": 0.0006,
+ "loss": 3.504253625869751,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712663755458514,
+ "grad_norm": 0.017738448455929756,
+ "learning_rate": 0.0006,
+ "loss": 3.4731998443603516,
+ "step": 1275
+ },
+ {
+ "epoch": 17.726637554585153,
+ "grad_norm": 0.01674838177859783,
+ "learning_rate": 0.0006,
+ "loss": 3.501451253890991,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74061135371179,
+ "grad_norm": 0.016940834000706673,
+ "learning_rate": 0.0006,
+ "loss": 3.5022473335266113,
+ "step": 1277
+ },
+ {
+ "epoch": 17.754585152838427,
+ "grad_norm": 0.016655702143907547,
+ "learning_rate": 0.0006,
+ "loss": 3.489267349243164,
+ "step": 1278
+ },
+ {
+ "epoch": 17.768558951965066,
+ "grad_norm": 0.016576141119003296,
+ "learning_rate": 0.0006,
+ "loss": 3.489868402481079,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782532751091704,
+ "grad_norm": 0.015516328625380993,
+ "learning_rate": 0.0006,
+ "loss": 3.4777278900146484,
+ "step": 1280
+ },
+ {
+ "epoch": 17.79650655021834,
+ "grad_norm": 0.01572612300515175,
+ "learning_rate": 0.0006,
+ "loss": 3.4924020767211914,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810480349344978,
+ "grad_norm": 0.01619344763457775,
+ "learning_rate": 0.0006,
+ "loss": 3.4541757106781006,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824454148471617,
+ "grad_norm": 0.016174443066120148,
+ "learning_rate": 0.0006,
+ "loss": 3.496953010559082,
+ "step": 1283
+ },
+ {
+ "epoch": 17.83842794759825,
+ "grad_norm": 0.015538575127720833,
+ "learning_rate": 0.0006,
+ "loss": 3.501938819885254,
+ "step": 1284
+ },
+ {
+ "epoch": 17.85240174672489,
+ "grad_norm": 0.015476577915251255,
+ "learning_rate": 0.0006,
+ "loss": 3.4954936504364014,
+ "step": 1285
+ },
+ {
+ "epoch": 17.86637554585153,
+ "grad_norm": 0.01563846506178379,
+ "learning_rate": 0.0006,
+ "loss": 3.4736757278442383,
+ "step": 1286
+ },
+ {
+ "epoch": 17.880349344978168,
+ "grad_norm": 0.016416197642683983,
+ "learning_rate": 0.0006,
+ "loss": 3.4564414024353027,
+ "step": 1287
+ },
+ {
+ "epoch": 17.894323144104803,
+ "grad_norm": 0.016533056274056435,
+ "learning_rate": 0.0006,
+ "loss": 3.4835453033447266,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90829694323144,
+ "grad_norm": 0.01587281934916973,
+ "learning_rate": 0.0006,
+ "loss": 3.460432529449463,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92227074235808,
+ "grad_norm": 0.01610104739665985,
+ "learning_rate": 0.0006,
+ "loss": 3.4919300079345703,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936244541484715,
+ "grad_norm": 0.01581653021275997,
+ "learning_rate": 0.0006,
+ "loss": 3.4631175994873047,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950218340611354,
+ "grad_norm": 0.015979735180735588,
+ "learning_rate": 0.0006,
+ "loss": 3.4901933670043945,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964192139737992,
+ "grad_norm": 0.01630399376153946,
+ "learning_rate": 0.0006,
+ "loss": 3.4629836082458496,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978165938864628,
+ "grad_norm": 0.017480242997407913,
+ "learning_rate": 0.0006,
+ "loss": 3.4913692474365234,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992139737991266,
+ "grad_norm": 0.016874775290489197,
+ "learning_rate": 0.0006,
+ "loss": 3.4790616035461426,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.01860641874372959,
+ "learning_rate": 0.0006,
+ "loss": 3.451586961746216,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 3.9891297817230225,
+ "eval_runtime": 50.1961,
+ "eval_samples_per_second": 48.649,
+ "eval_steps_per_second": 1.534,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397379912664,
+ "grad_norm": 0.020353643223643303,
+ "learning_rate": 0.0006,
+ "loss": 3.3365015983581543,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027947598253274,
+ "grad_norm": 0.025348901748657227,
+ "learning_rate": 0.0006,
+ "loss": 3.362994909286499,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041921397379912,
+ "grad_norm": 0.025188535451889038,
+ "learning_rate": 0.0006,
+ "loss": 3.363680362701416,
+ "step": 1299
+ },
+ {
+ "epoch": 18.05589519650655,
+ "grad_norm": 0.022153817117214203,
+ "learning_rate": 0.0006,
+ "loss": 3.3311727046966553,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069868995633186,
+ "grad_norm": 0.023192603141069412,
+ "learning_rate": 0.0006,
+ "loss": 3.313582420349121,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083842794759825,
+ "grad_norm": 0.023841004818677902,
+ "learning_rate": 0.0006,
+ "loss": 3.3787522315979004,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097816593886463,
+ "grad_norm": 0.024539794772863388,
+ "learning_rate": 0.0006,
+ "loss": 3.382267475128174,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111790393013102,
+ "grad_norm": 0.026391029357910156,
+ "learning_rate": 0.0006,
+ "loss": 3.3674709796905518,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125764192139737,
+ "grad_norm": 0.027859404683113098,
+ "learning_rate": 0.0006,
+ "loss": 3.3584036827087402,
+ "step": 1305
+ },
+ {
+ "epoch": 18.139737991266376,
+ "grad_norm": 0.027688005939126015,
+ "learning_rate": 0.0006,
+ "loss": 3.314915657043457,
+ "step": 1306
+ },
+ {
+ "epoch": 18.153711790393015,
+ "grad_norm": 0.026942238211631775,
+ "learning_rate": 0.0006,
+ "loss": 3.387618064880371,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16768558951965,
+ "grad_norm": 0.02890498749911785,
+ "learning_rate": 0.0006,
+ "loss": 3.35286021232605,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18165938864629,
+ "grad_norm": 0.028318168595433235,
+ "learning_rate": 0.0006,
+ "loss": 3.347115993499756,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195633187772927,
+ "grad_norm": 0.02423982135951519,
+ "learning_rate": 0.0006,
+ "loss": 3.365628242492676,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209606986899562,
+ "grad_norm": 0.025620151311159134,
+ "learning_rate": 0.0006,
+ "loss": 3.3887939453125,
+ "step": 1311
+ },
+ {
+ "epoch": 18.2235807860262,
+ "grad_norm": 0.02538205496966839,
+ "learning_rate": 0.0006,
+ "loss": 3.3417105674743652,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23755458515284,
+ "grad_norm": 0.024902652949094772,
+ "learning_rate": 0.0006,
+ "loss": 3.348081111907959,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251528384279474,
+ "grad_norm": 0.024858251214027405,
+ "learning_rate": 0.0006,
+ "loss": 3.3346352577209473,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265502183406113,
+ "grad_norm": 0.02413691021502018,
+ "learning_rate": 0.0006,
+ "loss": 3.373331069946289,
+ "step": 1315
+ },
+ {
+ "epoch": 18.27947598253275,
+ "grad_norm": 0.024673711508512497,
+ "learning_rate": 0.0006,
+ "loss": 3.3532657623291016,
+ "step": 1316
+ },
+ {
+ "epoch": 18.29344978165939,
+ "grad_norm": 0.02378152869641781,
+ "learning_rate": 0.0006,
+ "loss": 3.380765438079834,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307423580786025,
+ "grad_norm": 0.025095898658037186,
+ "learning_rate": 0.0006,
+ "loss": 3.3837740421295166,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321397379912664,
+ "grad_norm": 0.028187017887830734,
+ "learning_rate": 0.0006,
+ "loss": 3.4130377769470215,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335371179039303,
+ "grad_norm": 0.030678752809762955,
+ "learning_rate": 0.0006,
+ "loss": 3.353358745574951,
+ "step": 1320
+ },
+ {
+ "epoch": 18.349344978165938,
+ "grad_norm": 0.03067706525325775,
+ "learning_rate": 0.0006,
+ "loss": 3.386003017425537,
+ "step": 1321
+ },
+ {
+ "epoch": 18.363318777292577,
+ "grad_norm": 0.029064467176795006,
+ "learning_rate": 0.0006,
+ "loss": 3.3915395736694336,
+ "step": 1322
+ },
+ {
+ "epoch": 18.377292576419215,
+ "grad_norm": 0.027225302532315254,
+ "learning_rate": 0.0006,
+ "loss": 3.3875136375427246,
+ "step": 1323
+ },
+ {
+ "epoch": 18.39126637554585,
+ "grad_norm": 0.02669711410999298,
+ "learning_rate": 0.0006,
+ "loss": 3.406268358230591,
+ "step": 1324
+ },
+ {
+ "epoch": 18.40524017467249,
+ "grad_norm": 0.028905952349305153,
+ "learning_rate": 0.0006,
+ "loss": 3.3588786125183105,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419213973799128,
+ "grad_norm": 0.02591577172279358,
+ "learning_rate": 0.0006,
+ "loss": 3.378920078277588,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433187772925763,
+ "grad_norm": 0.02405492030084133,
+ "learning_rate": 0.0006,
+ "loss": 3.4215216636657715,
+ "step": 1327
+ },
+ {
+ "epoch": 18.4471615720524,
+ "grad_norm": 0.02288426086306572,
+ "learning_rate": 0.0006,
+ "loss": 3.4051475524902344,
+ "step": 1328
+ },
+ {
+ "epoch": 18.46113537117904,
+ "grad_norm": 0.02265259623527527,
+ "learning_rate": 0.0006,
+ "loss": 3.376089096069336,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475109170305675,
+ "grad_norm": 0.021498411893844604,
+ "learning_rate": 0.0006,
+ "loss": 3.3922982215881348,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489082969432314,
+ "grad_norm": 0.02283475548028946,
+ "learning_rate": 0.0006,
+ "loss": 3.435965061187744,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503056768558952,
+ "grad_norm": 0.02214580774307251,
+ "learning_rate": 0.0006,
+ "loss": 3.4137468338012695,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51703056768559,
+ "grad_norm": 0.02150345966219902,
+ "learning_rate": 0.0006,
+ "loss": 3.3775486946105957,
+ "step": 1333
+ },
+ {
+ "epoch": 18.531004366812226,
+ "grad_norm": 0.02131151221692562,
+ "learning_rate": 0.0006,
+ "loss": 3.3902227878570557,
+ "step": 1334
+ },
+ {
+ "epoch": 18.544978165938865,
+ "grad_norm": 0.019052445888519287,
+ "learning_rate": 0.0006,
+ "loss": 3.4158318042755127,
+ "step": 1335
+ },
+ {
+ "epoch": 18.558951965065503,
+ "grad_norm": 0.018629150465130806,
+ "learning_rate": 0.0006,
+ "loss": 3.40549898147583,
+ "step": 1336
+ },
+ {
+ "epoch": 18.57292576419214,
+ "grad_norm": 0.019917191937565804,
+ "learning_rate": 0.0006,
+ "loss": 3.3770365715026855,
+ "step": 1337
+ },
+ {
+ "epoch": 18.586899563318777,
+ "grad_norm": 0.01985880360007286,
+ "learning_rate": 0.0006,
+ "loss": 3.393543243408203,
+ "step": 1338
+ },
+ {
+ "epoch": 18.600873362445416,
+ "grad_norm": 0.019536739215254784,
+ "learning_rate": 0.0006,
+ "loss": 3.426811695098877,
+ "step": 1339
+ },
+ {
+ "epoch": 18.61484716157205,
+ "grad_norm": 0.01855909265577793,
+ "learning_rate": 0.0006,
+ "loss": 3.401531219482422,
+ "step": 1340
+ },
+ {
+ "epoch": 18.62882096069869,
+ "grad_norm": 0.018492981791496277,
+ "learning_rate": 0.0006,
+ "loss": 3.4268338680267334,
+ "step": 1341
+ },
+ {
+ "epoch": 18.64279475982533,
+ "grad_norm": 0.0180380679666996,
+ "learning_rate": 0.0006,
+ "loss": 3.4302897453308105,
+ "step": 1342
+ },
+ {
+ "epoch": 18.656768558951963,
+ "grad_norm": 0.017962129786610603,
+ "learning_rate": 0.0006,
+ "loss": 3.396136522293091,
+ "step": 1343
+ },
+ {
+ "epoch": 18.670742358078602,
+ "grad_norm": 0.019102413207292557,
+ "learning_rate": 0.0006,
+ "loss": 3.390157699584961,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68471615720524,
+ "grad_norm": 0.01885206066071987,
+ "learning_rate": 0.0006,
+ "loss": 3.410893440246582,
+ "step": 1345
+ },
+ {
+ "epoch": 18.69868995633188,
+ "grad_norm": 0.018043991178274155,
+ "learning_rate": 0.0006,
+ "loss": 3.3919389247894287,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712663755458514,
+ "grad_norm": 0.01806800253689289,
+ "learning_rate": 0.0006,
+ "loss": 3.43209171295166,
+ "step": 1347
+ },
+ {
+ "epoch": 18.726637554585153,
+ "grad_norm": 0.01855402998626232,
+ "learning_rate": 0.0006,
+ "loss": 3.428830146789551,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74061135371179,
+ "grad_norm": 0.018445072695612907,
+ "learning_rate": 0.0006,
+ "loss": 3.4180264472961426,
+ "step": 1349
+ },
+ {
+ "epoch": 18.754585152838427,
+ "grad_norm": 0.018156694248318672,
+ "learning_rate": 0.0006,
+ "loss": 3.4011521339416504,
+ "step": 1350
+ },
+ {
+ "epoch": 18.768558951965066,
+ "grad_norm": 0.019634190946817398,
+ "learning_rate": 0.0006,
+ "loss": 3.388862371444702,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782532751091704,
+ "grad_norm": 0.01954115554690361,
+ "learning_rate": 0.0006,
+ "loss": 3.4300918579101562,
+ "step": 1352
+ },
+ {
+ "epoch": 18.79650655021834,
+ "grad_norm": 0.01783105544745922,
+ "learning_rate": 0.0006,
+ "loss": 3.3942103385925293,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810480349344978,
+ "grad_norm": 0.017380334436893463,
+ "learning_rate": 0.0006,
+ "loss": 3.4005725383758545,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824454148471617,
+ "grad_norm": 0.01806088164448738,
+ "learning_rate": 0.0006,
+ "loss": 3.4157588481903076,
+ "step": 1355
+ },
+ {
+ "epoch": 18.83842794759825,
+ "grad_norm": 0.018839186057448387,
+ "learning_rate": 0.0006,
+ "loss": 3.40814208984375,
+ "step": 1356
+ },
+ {
+ "epoch": 18.85240174672489,
+ "grad_norm": 0.018662428483366966,
+ "learning_rate": 0.0006,
+ "loss": 3.4516561031341553,
+ "step": 1357
+ },
+ {
+ "epoch": 18.86637554585153,
+ "grad_norm": 0.016893137246370316,
+ "learning_rate": 0.0006,
+ "loss": 3.437650680541992,
+ "step": 1358
+ },
+ {
+ "epoch": 18.880349344978168,
+ "grad_norm": 0.017629794776439667,
+ "learning_rate": 0.0006,
+ "loss": 3.4278972148895264,
+ "step": 1359
+ },
+ {
+ "epoch": 18.894323144104803,
+ "grad_norm": 0.018383143469691277,
+ "learning_rate": 0.0006,
+ "loss": 3.4278743267059326,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90829694323144,
+ "grad_norm": 0.01822691783308983,
+ "learning_rate": 0.0006,
+ "loss": 3.4315247535705566,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92227074235808,
+ "grad_norm": 0.019348058849573135,
+ "learning_rate": 0.0006,
+ "loss": 3.401350498199463,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936244541484715,
+ "grad_norm": 0.01952742226421833,
+ "learning_rate": 0.0006,
+ "loss": 3.378289222717285,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950218340611354,
+ "grad_norm": 0.019068529829382896,
+ "learning_rate": 0.0006,
+ "loss": 3.4088215827941895,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964192139737992,
+ "grad_norm": 0.02002856135368347,
+ "learning_rate": 0.0006,
+ "loss": 3.4396965503692627,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978165938864628,
+ "grad_norm": 0.01839490234851837,
+ "learning_rate": 0.0006,
+ "loss": 3.4167215824127197,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992139737991266,
+ "grad_norm": 0.018450899049639702,
+ "learning_rate": 0.0006,
+ "loss": 3.4458084106445312,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.021764317527413368,
+ "learning_rate": 0.0006,
+ "loss": 3.4413537979125977,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 3.9891514778137207,
+ "eval_runtime": 49.9998,
+ "eval_samples_per_second": 48.84,
+ "eval_steps_per_second": 1.54,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397379912664,
+ "grad_norm": 0.02277272194623947,
+ "learning_rate": 0.0006,
+ "loss": 3.2692642211914062,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027947598253274,
+ "grad_norm": 0.03352588415145874,
+ "learning_rate": 0.0006,
+ "loss": 3.2701330184936523,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041921397379912,
+ "grad_norm": 0.03873065486550331,
+ "learning_rate": 0.0006,
+ "loss": 3.3169291019439697,
+ "step": 1371
+ },
+ {
+ "epoch": 19.05589519650655,
+ "grad_norm": 0.03804260492324829,
+ "learning_rate": 0.0006,
+ "loss": 3.2720119953155518,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069868995633186,
+ "grad_norm": 0.04382786899805069,
+ "learning_rate": 0.0006,
+ "loss": 3.2789559364318848,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083842794759825,
+ "grad_norm": 0.042553164064884186,
+ "learning_rate": 0.0006,
+ "loss": 3.287041187286377,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097816593886463,
+ "grad_norm": 0.040354058146476746,
+ "learning_rate": 0.0006,
+ "loss": 3.2970733642578125,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111790393013102,
+ "grad_norm": 0.04003302380442619,
+ "learning_rate": 0.0006,
+ "loss": 3.298656940460205,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125764192139737,
+ "grad_norm": 0.04839435964822769,
+ "learning_rate": 0.0006,
+ "loss": 3.3119897842407227,
+ "step": 1377
+ },
+ {
+ "epoch": 19.139737991266376,
+ "grad_norm": 0.04619353264570236,
+ "learning_rate": 0.0006,
+ "loss": 3.323103904724121,
+ "step": 1378
+ },
+ {
+ "epoch": 19.153711790393015,
+ "grad_norm": 0.04889119043946266,
+ "learning_rate": 0.0006,
+ "loss": 3.29386043548584,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16768558951965,
+ "grad_norm": 0.052284516394138336,
+ "learning_rate": 0.0006,
+ "loss": 3.2952120304107666,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18165938864629,
+ "grad_norm": 0.053939417004585266,
+ "learning_rate": 0.0006,
+ "loss": 3.309581756591797,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195633187772927,
+ "grad_norm": 0.04883198067545891,
+ "learning_rate": 0.0006,
+ "loss": 3.3202223777770996,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209606986899562,
+ "grad_norm": 0.04550885036587715,
+ "learning_rate": 0.0006,
+ "loss": 3.3503410816192627,
+ "step": 1383
+ },
+ {
+ "epoch": 19.2235807860262,
+ "grad_norm": 0.04721444472670555,
+ "learning_rate": 0.0006,
+ "loss": 3.3530726432800293,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23755458515284,
+ "grad_norm": 0.051496051251888275,
+ "learning_rate": 0.0006,
+ "loss": 3.333950996398926,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251528384279474,
+ "grad_norm": 0.053854621946811676,
+ "learning_rate": 0.0006,
+ "loss": 3.3520333766937256,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265502183406113,
+ "grad_norm": 0.04623614624142647,
+ "learning_rate": 0.0006,
+ "loss": 3.350588083267212,
+ "step": 1387
+ },
+ {
+ "epoch": 19.27947598253275,
+ "grad_norm": 0.04073309525847435,
+ "learning_rate": 0.0006,
+ "loss": 3.3644251823425293,
+ "step": 1388
+ },
+ {
+ "epoch": 19.29344978165939,
+ "grad_norm": 0.03639872372150421,
+ "learning_rate": 0.0006,
+ "loss": 3.367534875869751,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307423580786025,
+ "grad_norm": 0.036499980837106705,
+ "learning_rate": 0.0006,
+ "loss": 3.3632423877716064,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321397379912664,
+ "grad_norm": 0.0373394750058651,
+ "learning_rate": 0.0006,
+ "loss": 3.3506932258605957,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335371179039303,
+ "grad_norm": 0.04176274687051773,
+ "learning_rate": 0.0006,
+ "loss": 3.3571481704711914,
+ "step": 1392
+ },
+ {
+ "epoch": 19.349344978165938,
+ "grad_norm": 0.04616089537739754,
+ "learning_rate": 0.0006,
+ "loss": 3.359266996383667,
+ "step": 1393
+ },
+ {
+ "epoch": 19.363318777292577,
+ "grad_norm": 0.04692723974585533,
+ "learning_rate": 0.0006,
+ "loss": 3.390904188156128,
+ "step": 1394
+ },
+ {
+ "epoch": 19.377292576419215,
+ "grad_norm": 0.04957121983170509,
+ "learning_rate": 0.0006,
+ "loss": 3.341733932495117,
+ "step": 1395
+ },
+ {
+ "epoch": 19.39126637554585,
+ "grad_norm": 0.0432475246489048,
+ "learning_rate": 0.0006,
+ "loss": 3.2961924076080322,
+ "step": 1396
+ },
+ {
+ "epoch": 19.40524017467249,
+ "grad_norm": 0.041836753487586975,
+ "learning_rate": 0.0006,
+ "loss": 3.3686509132385254,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419213973799128,
+ "grad_norm": 0.03855185955762863,
+ "learning_rate": 0.0006,
+ "loss": 3.3566665649414062,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433187772925763,
+ "grad_norm": 0.034848880022764206,
+ "learning_rate": 0.0006,
+ "loss": 3.374608039855957,
+ "step": 1399
+ },
+ {
+ "epoch": 19.4471615720524,
+ "grad_norm": 0.03131943941116333,
+ "learning_rate": 0.0006,
+ "loss": 3.3618953227996826,
+ "step": 1400
+ },
+ {
+ "epoch": 19.46113537117904,
+ "grad_norm": 0.029629478231072426,
+ "learning_rate": 0.0006,
+ "loss": 3.3952600955963135,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475109170305675,
+ "grad_norm": 0.02885911799967289,
+ "learning_rate": 0.0006,
+ "loss": 3.382490634918213,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489082969432314,
+ "grad_norm": 0.026441723108291626,
+ "learning_rate": 0.0006,
+ "loss": 3.3543779850006104,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503056768558952,
+ "grad_norm": 0.024119269102811813,
+ "learning_rate": 0.0006,
+ "loss": 3.3829503059387207,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51703056768559,
+ "grad_norm": 0.023766381666064262,
+ "learning_rate": 0.0006,
+ "loss": 3.37758731842041,
+ "step": 1405
+ },
+ {
+ "epoch": 19.531004366812226,
+ "grad_norm": 0.02395741641521454,
+ "learning_rate": 0.0006,
+ "loss": 3.4042277336120605,
+ "step": 1406
+ },
+ {
+ "epoch": 19.544978165938865,
+ "grad_norm": 0.023499730974435806,
+ "learning_rate": 0.0006,
+ "loss": 3.3811798095703125,
+ "step": 1407
+ },
+ {
+ "epoch": 19.558951965065503,
+ "grad_norm": 0.021423807367682457,
+ "learning_rate": 0.0006,
+ "loss": 3.3517274856567383,
+ "step": 1408
+ },
+ {
+ "epoch": 19.57292576419214,
+ "grad_norm": 0.02017848752439022,
+ "learning_rate": 0.0006,
+ "loss": 3.369368314743042,
+ "step": 1409
+ },
+ {
+ "epoch": 19.586899563318777,
+ "grad_norm": 0.02168160304427147,
+ "learning_rate": 0.0006,
+ "loss": 3.357361316680908,
+ "step": 1410
+ },
+ {
+ "epoch": 19.600873362445416,
+ "grad_norm": 0.020053956657648087,
+ "learning_rate": 0.0006,
+ "loss": 3.378511667251587,
+ "step": 1411
+ },
+ {
+ "epoch": 19.61484716157205,
+ "grad_norm": 0.018789371475577354,
+ "learning_rate": 0.0006,
+ "loss": 3.386579990386963,
+ "step": 1412
+ },
+ {
+ "epoch": 19.62882096069869,
+ "grad_norm": 0.01985175907611847,
+ "learning_rate": 0.0006,
+ "loss": 3.3903000354766846,
+ "step": 1413
+ },
+ {
+ "epoch": 19.64279475982533,
+ "grad_norm": 0.019878871738910675,
+ "learning_rate": 0.0006,
+ "loss": 3.362997055053711,
+ "step": 1414
+ },
+ {
+ "epoch": 19.656768558951963,
+ "grad_norm": 0.01920200325548649,
+ "learning_rate": 0.0006,
+ "loss": 3.397496461868286,
+ "step": 1415
+ },
+ {
+ "epoch": 19.670742358078602,
+ "grad_norm": 0.019940156489610672,
+ "learning_rate": 0.0006,
+ "loss": 3.375986099243164,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68471615720524,
+ "grad_norm": 0.019822560250759125,
+ "learning_rate": 0.0006,
+ "loss": 3.351943016052246,
+ "step": 1417
+ },
+ {
+ "epoch": 19.69868995633188,
+ "grad_norm": 0.01987987756729126,
+ "learning_rate": 0.0006,
+ "loss": 3.3699135780334473,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712663755458514,
+ "grad_norm": 0.020490208640694618,
+ "learning_rate": 0.0006,
+ "loss": 3.3826851844787598,
+ "step": 1419
+ },
+ {
+ "epoch": 19.726637554585153,
+ "grad_norm": 0.019540539011359215,
+ "learning_rate": 0.0006,
+ "loss": 3.330385208129883,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74061135371179,
+ "grad_norm": 0.018522001802921295,
+ "learning_rate": 0.0006,
+ "loss": 3.3798022270202637,
+ "step": 1421
+ },
+ {
+ "epoch": 19.754585152838427,
+ "grad_norm": 0.019179968163371086,
+ "learning_rate": 0.0006,
+ "loss": 3.352015733718872,
+ "step": 1422
+ },
+ {
+ "epoch": 19.768558951965066,
+ "grad_norm": 0.018380016088485718,
+ "learning_rate": 0.0006,
+ "loss": 3.3417506217956543,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782532751091704,
+ "grad_norm": 0.018539059907197952,
+ "learning_rate": 0.0006,
+ "loss": 3.3680901527404785,
+ "step": 1424
+ },
+ {
+ "epoch": 19.79650655021834,
+ "grad_norm": 0.01938101463019848,
+ "learning_rate": 0.0006,
+ "loss": 3.3972573280334473,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810480349344978,
+ "grad_norm": 0.019287938252091408,
+ "learning_rate": 0.0006,
+ "loss": 3.3635201454162598,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824454148471617,
+ "grad_norm": 0.01918751373887062,
+ "learning_rate": 0.0006,
+ "loss": 3.3594346046447754,
+ "step": 1427
+ },
+ {
+ "epoch": 19.83842794759825,
+ "grad_norm": 0.01843525469303131,
+ "learning_rate": 0.0006,
+ "loss": 3.3794357776641846,
+ "step": 1428
+ },
+ {
+ "epoch": 19.85240174672489,
+ "grad_norm": 0.017499281093478203,
+ "learning_rate": 0.0006,
+ "loss": 3.3725686073303223,
+ "step": 1429
+ },
+ {
+ "epoch": 19.86637554585153,
+ "grad_norm": 0.01804421842098236,
+ "learning_rate": 0.0006,
+ "loss": 3.3510665893554688,
+ "step": 1430
+ },
+ {
+ "epoch": 19.880349344978168,
+ "grad_norm": 0.01854187622666359,
+ "learning_rate": 0.0006,
+ "loss": 3.366323471069336,
+ "step": 1431
+ },
+ {
+ "epoch": 19.894323144104803,
+ "grad_norm": 0.019070899114012718,
+ "learning_rate": 0.0006,
+ "loss": 3.3426618576049805,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90829694323144,
+ "grad_norm": 0.018046852201223373,
+ "learning_rate": 0.0006,
+ "loss": 3.392629623413086,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92227074235808,
+ "grad_norm": 0.017897332087159157,
+ "learning_rate": 0.0006,
+ "loss": 3.384459972381592,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936244541484715,
+ "grad_norm": 0.018831918016076088,
+ "learning_rate": 0.0006,
+ "loss": 3.3787403106689453,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950218340611354,
+ "grad_norm": 0.017684299498796463,
+ "learning_rate": 0.0006,
+ "loss": 3.3839499950408936,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964192139737992,
+ "grad_norm": 0.018664930015802383,
+ "learning_rate": 0.0006,
+ "loss": 3.361309289932251,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978165938864628,
+ "grad_norm": 0.018459675833582878,
+ "learning_rate": 0.0006,
+ "loss": 3.3763248920440674,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992139737991266,
+ "grad_norm": 0.018684620037674904,
+ "learning_rate": 0.0006,
+ "loss": 3.364279270172119,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.02109597623348236,
+ "learning_rate": 0.0006,
+ "loss": 3.3849806785583496,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 3.997159004211426,
+ "eval_runtime": 54.7559,
+ "eval_samples_per_second": 44.598,
+ "eval_steps_per_second": 1.406,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397379912664,
+ "grad_norm": 0.023242158815264702,
+ "learning_rate": 0.0006,
+ "loss": 3.219148635864258,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027947598253274,
+ "grad_norm": 0.035289909690618515,
+ "learning_rate": 0.0006,
+ "loss": 3.1906566619873047,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041921397379912,
+ "grad_norm": 0.03934298828244209,
+ "learning_rate": 0.0006,
+ "loss": 3.24796199798584,
+ "step": 1443
+ },
+ {
+ "epoch": 20.05589519650655,
+ "grad_norm": 0.03764699772000313,
+ "learning_rate": 0.0006,
+ "loss": 3.258643627166748,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069868995633186,
+ "grad_norm": 0.038128290325403214,
+ "learning_rate": 0.0006,
+ "loss": 3.2360262870788574,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083842794759825,
+ "grad_norm": 0.04228486120700836,
+ "learning_rate": 0.0006,
+ "loss": 3.246365547180176,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097816593886463,
+ "grad_norm": 0.04360193759202957,
+ "learning_rate": 0.0006,
+ "loss": 3.2414700984954834,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111790393013102,
+ "grad_norm": 0.03822943568229675,
+ "learning_rate": 0.0006,
+ "loss": 3.2489700317382812,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125764192139737,
+ "grad_norm": 0.036029502749443054,
+ "learning_rate": 0.0006,
+ "loss": 3.2229957580566406,
+ "step": 1449
+ },
+ {
+ "epoch": 20.139737991266376,
+ "grad_norm": 0.03957182168960571,
+ "learning_rate": 0.0006,
+ "loss": 3.256904125213623,
+ "step": 1450
+ },
+ {
+ "epoch": 20.153711790393015,
+ "grad_norm": 0.039222728461027145,
+ "learning_rate": 0.0006,
+ "loss": 3.268920660018921,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16768558951965,
+ "grad_norm": 0.034906432032585144,
+ "learning_rate": 0.0006,
+ "loss": 3.2575674057006836,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18165938864629,
+ "grad_norm": 0.03401615098118782,
+ "learning_rate": 0.0006,
+ "loss": 3.231116771697998,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195633187772927,
+ "grad_norm": 0.034356508404016495,
+ "learning_rate": 0.0006,
+ "loss": 3.262190580368042,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209606986899562,
+ "grad_norm": 0.03251064196228981,
+ "learning_rate": 0.0006,
+ "loss": 3.2810235023498535,
+ "step": 1455
+ },
+ {
+ "epoch": 20.2235807860262,
+ "grad_norm": 0.03308776021003723,
+ "learning_rate": 0.0006,
+ "loss": 3.2639098167419434,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23755458515284,
+ "grad_norm": 0.03230876103043556,
+ "learning_rate": 0.0006,
+ "loss": 3.2558178901672363,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251528384279474,
+ "grad_norm": 0.03161812946200371,
+ "learning_rate": 0.0006,
+ "loss": 3.291419267654419,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265502183406113,
+ "grad_norm": 0.02916458062827587,
+ "learning_rate": 0.0006,
+ "loss": 3.280852794647217,
+ "step": 1459
+ },
+ {
+ "epoch": 20.27947598253275,
+ "grad_norm": 0.029812375083565712,
+ "learning_rate": 0.0006,
+ "loss": 3.2271876335144043,
+ "step": 1460
+ },
+ {
+ "epoch": 20.29344978165939,
+ "grad_norm": 0.029384229332208633,
+ "learning_rate": 0.0006,
+ "loss": 3.2629804611206055,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307423580786025,
+ "grad_norm": 0.033414218574762344,
+ "learning_rate": 0.0006,
+ "loss": 3.270416498184204,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321397379912664,
+ "grad_norm": 0.03318887576460838,
+ "learning_rate": 0.0006,
+ "loss": 3.272148609161377,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335371179039303,
+ "grad_norm": 0.030193055048584938,
+ "learning_rate": 0.0006,
+ "loss": 3.2646775245666504,
+ "step": 1464
+ },
+ {
+ "epoch": 20.349344978165938,
+ "grad_norm": 0.028252357617020607,
+ "learning_rate": 0.0006,
+ "loss": 3.2772417068481445,
+ "step": 1465
+ },
+ {
+ "epoch": 20.363318777292577,
+ "grad_norm": 0.028565213084220886,
+ "learning_rate": 0.0006,
+ "loss": 3.3179280757904053,
+ "step": 1466
+ },
+ {
+ "epoch": 20.377292576419215,
+ "grad_norm": 0.026722336187958717,
+ "learning_rate": 0.0006,
+ "loss": 3.2810170650482178,
+ "step": 1467
+ },
+ {
+ "epoch": 20.39126637554585,
+ "grad_norm": 0.025114644318819046,
+ "learning_rate": 0.0006,
+ "loss": 3.2686173915863037,
+ "step": 1468
+ },
+ {
+ "epoch": 20.40524017467249,
+ "grad_norm": 0.025851737707853317,
+ "learning_rate": 0.0006,
+ "loss": 3.2975308895111084,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419213973799128,
+ "grad_norm": 0.024468228220939636,
+ "learning_rate": 0.0006,
+ "loss": 3.2880358695983887,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433187772925763,
+ "grad_norm": 0.02360754832625389,
+ "learning_rate": 0.0006,
+ "loss": 3.2768073081970215,
+ "step": 1471
+ },
+ {
+ "epoch": 20.4471615720524,
+ "grad_norm": 0.024596888571977615,
+ "learning_rate": 0.0006,
+ "loss": 3.285207509994507,
+ "step": 1472
+ },
+ {
+ "epoch": 20.46113537117904,
+ "grad_norm": 0.02434864081442356,
+ "learning_rate": 0.0006,
+ "loss": 3.284351110458374,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475109170305675,
+ "grad_norm": 0.023001939058303833,
+ "learning_rate": 0.0006,
+ "loss": 3.2642571926116943,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489082969432314,
+ "grad_norm": 0.022632446140050888,
+ "learning_rate": 0.0006,
+ "loss": 3.32163143157959,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503056768558952,
+ "grad_norm": 0.023113328963518143,
+ "learning_rate": 0.0006,
+ "loss": 3.292109251022339,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51703056768559,
+ "grad_norm": 0.02199697494506836,
+ "learning_rate": 0.0006,
+ "loss": 3.3133938312530518,
+ "step": 1477
+ },
+ {
+ "epoch": 20.531004366812226,
+ "grad_norm": 0.023468362167477608,
+ "learning_rate": 0.0006,
+ "loss": 3.2595276832580566,
+ "step": 1478
+ },
+ {
+ "epoch": 20.544978165938865,
+ "grad_norm": 0.022027716040611267,
+ "learning_rate": 0.0006,
+ "loss": 3.2692484855651855,
+ "step": 1479
+ },
+ {
+ "epoch": 20.558951965065503,
+ "grad_norm": 0.021089443936944008,
+ "learning_rate": 0.0006,
+ "loss": 3.317549467086792,
+ "step": 1480
+ },
+ {
+ "epoch": 20.57292576419214,
+ "grad_norm": 0.020714912563562393,
+ "learning_rate": 0.0006,
+ "loss": 3.2982163429260254,
+ "step": 1481
+ },
+ {
+ "epoch": 20.586899563318777,
+ "grad_norm": 0.021601643413305283,
+ "learning_rate": 0.0006,
+ "loss": 3.303770065307617,
+ "step": 1482
+ },
+ {
+ "epoch": 20.600873362445416,
+ "grad_norm": 0.02164667472243309,
+ "learning_rate": 0.0006,
+ "loss": 3.297548294067383,
+ "step": 1483
+ },
+ {
+ "epoch": 20.61484716157205,
+ "grad_norm": 0.0205276720225811,
+ "learning_rate": 0.0006,
+ "loss": 3.265287399291992,
+ "step": 1484
+ },
+ {
+ "epoch": 20.62882096069869,
+ "grad_norm": 0.020926227793097496,
+ "learning_rate": 0.0006,
+ "loss": 3.3233776092529297,
+ "step": 1485
+ },
+ {
+ "epoch": 20.64279475982533,
+ "grad_norm": 0.020680908113718033,
+ "learning_rate": 0.0006,
+ "loss": 3.299736499786377,
+ "step": 1486
+ },
+ {
+ "epoch": 20.656768558951963,
+ "grad_norm": 0.02010631375014782,
+ "learning_rate": 0.0006,
+ "loss": 3.319195032119751,
+ "step": 1487
+ },
+ {
+ "epoch": 20.670742358078602,
+ "grad_norm": 0.01861870475113392,
+ "learning_rate": 0.0006,
+ "loss": 3.309542179107666,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68471615720524,
+ "grad_norm": 0.019709311425685883,
+ "learning_rate": 0.0006,
+ "loss": 3.2684426307678223,
+ "step": 1489
+ },
+ {
+ "epoch": 20.69868995633188,
+ "grad_norm": 0.019379155710339546,
+ "learning_rate": 0.0006,
+ "loss": 3.3123316764831543,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712663755458514,
+ "grad_norm": 0.018971465528011322,
+ "learning_rate": 0.0006,
+ "loss": 3.3249459266662598,
+ "step": 1491
+ },
+ {
+ "epoch": 20.726637554585153,
+ "grad_norm": 0.01862727664411068,
+ "learning_rate": 0.0006,
+ "loss": 3.2942824363708496,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74061135371179,
+ "grad_norm": 0.01932865008711815,
+ "learning_rate": 0.0006,
+ "loss": 3.3328568935394287,
+ "step": 1493
+ },
+ {
+ "epoch": 20.754585152838427,
+ "grad_norm": 0.019298749044537544,
+ "learning_rate": 0.0006,
+ "loss": 3.2632360458374023,
+ "step": 1494
+ },
+ {
+ "epoch": 20.768558951965066,
+ "grad_norm": 0.018749341368675232,
+ "learning_rate": 0.0006,
+ "loss": 3.320802688598633,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782532751091704,
+ "grad_norm": 0.01888313889503479,
+ "learning_rate": 0.0006,
+ "loss": 3.3290247917175293,
+ "step": 1496
+ },
+ {
+ "epoch": 20.79650655021834,
+ "grad_norm": 0.019536348059773445,
+ "learning_rate": 0.0006,
+ "loss": 3.311213493347168,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810480349344978,
+ "grad_norm": 0.018573017790913582,
+ "learning_rate": 0.0006,
+ "loss": 3.3132004737854004,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824454148471617,
+ "grad_norm": 0.019365103915333748,
+ "learning_rate": 0.0006,
+ "loss": 3.312656879425049,
+ "step": 1499
+ },
+ {
+ "epoch": 20.83842794759825,
+ "grad_norm": 0.021032165735960007,
+ "learning_rate": 0.0006,
+ "loss": 3.330728054046631,
+ "step": 1500
+ },
+ {
+ "epoch": 20.85240174672489,
+ "grad_norm": 0.02062826044857502,
+ "learning_rate": 0.0006,
+ "loss": 3.386507034301758,
+ "step": 1501
+ },
+ {
+ "epoch": 20.86637554585153,
+ "grad_norm": 0.019087517634034157,
+ "learning_rate": 0.0006,
+ "loss": 3.3134851455688477,
+ "step": 1502
+ },
+ {
+ "epoch": 20.880349344978168,
+ "grad_norm": 0.018393544480204582,
+ "learning_rate": 0.0006,
+ "loss": 3.3288557529449463,
+ "step": 1503
+ },
+ {
+ "epoch": 20.894323144104803,
+ "grad_norm": 0.018625570461153984,
+ "learning_rate": 0.0006,
+ "loss": 3.3385863304138184,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90829694323144,
+ "grad_norm": 0.018994612619280815,
+ "learning_rate": 0.0006,
+ "loss": 3.3441519737243652,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92227074235808,
+ "grad_norm": 0.019807450473308563,
+ "learning_rate": 0.0006,
+ "loss": 3.2853572368621826,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936244541484715,
+ "grad_norm": 0.01904045045375824,
+ "learning_rate": 0.0006,
+ "loss": 3.2973103523254395,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950218340611354,
+ "grad_norm": 0.019115809351205826,
+ "learning_rate": 0.0006,
+ "loss": 3.3340232372283936,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964192139737992,
+ "grad_norm": 0.020370563492178917,
+ "learning_rate": 0.0006,
+ "loss": 3.3770620822906494,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978165938864628,
+ "grad_norm": 0.02040398307144642,
+ "learning_rate": 0.0006,
+ "loss": 3.3141350746154785,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992139737991266,
+ "grad_norm": 0.019721226766705513,
+ "learning_rate": 0.0006,
+ "loss": 3.3140838146209717,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.021993499249219894,
+ "learning_rate": 0.0006,
+ "loss": 3.327284574508667,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 4.007121562957764,
+ "eval_runtime": 50.0284,
+ "eval_samples_per_second": 48.812,
+ "eval_steps_per_second": 1.539,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397379912664,
+ "grad_norm": 0.0266740545630455,
+ "learning_rate": 0.0006,
+ "loss": 3.1542232036590576,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027947598253274,
+ "grad_norm": 0.0431625060737133,
+ "learning_rate": 0.0006,
+ "loss": 3.1733574867248535,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041921397379912,
+ "grad_norm": 0.05062565952539444,
+ "learning_rate": 0.0006,
+ "loss": 3.2326841354370117,
+ "step": 1515
+ },
+ {
+ "epoch": 21.05589519650655,
+ "grad_norm": 0.04447261989116669,
+ "learning_rate": 0.0006,
+ "loss": 3.158965587615967,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069868995633186,
+ "grad_norm": 0.04547872766852379,
+ "learning_rate": 0.0006,
+ "loss": 3.1754844188690186,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083842794759825,
+ "grad_norm": 0.045201778411865234,
+ "learning_rate": 0.0006,
+ "loss": 3.164539337158203,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097816593886463,
+ "grad_norm": 0.04903271794319153,
+ "learning_rate": 0.0006,
+ "loss": 3.223135232925415,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111790393013102,
+ "grad_norm": 0.05277688428759575,
+ "learning_rate": 0.0006,
+ "loss": 3.21925687789917,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125764192139737,
+ "grad_norm": 0.055951476097106934,
+ "learning_rate": 0.0006,
+ "loss": 3.2054057121276855,
+ "step": 1521
+ },
+ {
+ "epoch": 21.139737991266376,
+ "grad_norm": 0.05742252990603447,
+ "learning_rate": 0.0006,
+ "loss": 3.2347140312194824,
+ "step": 1522
+ },
+ {
+ "epoch": 21.153711790393015,
+ "grad_norm": 0.05464409664273262,
+ "learning_rate": 0.0006,
+ "loss": 3.2519783973693848,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16768558951965,
+ "grad_norm": 0.06649098545312881,
+ "learning_rate": 0.0006,
+ "loss": 3.2739510536193848,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18165938864629,
+ "grad_norm": 0.07743308693170547,
+ "learning_rate": 0.0006,
+ "loss": 3.2961807250976562,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195633187772927,
+ "grad_norm": 0.0752289667725563,
+ "learning_rate": 0.0006,
+ "loss": 3.284780740737915,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209606986899562,
+ "grad_norm": 0.06247316300868988,
+ "learning_rate": 0.0006,
+ "loss": 3.253411293029785,
+ "step": 1527
+ },
+ {
+ "epoch": 21.2235807860262,
+ "grad_norm": 0.06856120377779007,
+ "learning_rate": 0.0006,
+ "loss": 3.288010597229004,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23755458515284,
+ "grad_norm": 0.06939002871513367,
+ "learning_rate": 0.0006,
+ "loss": 3.2672412395477295,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251528384279474,
+ "grad_norm": 0.06546786427497864,
+ "learning_rate": 0.0006,
+ "loss": 3.2822303771972656,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265502183406113,
+ "grad_norm": 0.06720232218503952,
+ "learning_rate": 0.0006,
+ "loss": 3.332411289215088,
+ "step": 1531
+ },
+ {
+ "epoch": 21.27947598253275,
+ "grad_norm": 0.061658330261707306,
+ "learning_rate": 0.0006,
+ "loss": 3.2908289432525635,
+ "step": 1532
+ },
+ {
+ "epoch": 21.29344978165939,
+ "grad_norm": 0.07328956574201584,
+ "learning_rate": 0.0006,
+ "loss": 3.3375182151794434,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307423580786025,
+ "grad_norm": 0.06822583079338074,
+ "learning_rate": 0.0006,
+ "loss": 3.3630833625793457,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321397379912664,
+ "grad_norm": 0.060682639479637146,
+ "learning_rate": 0.0006,
+ "loss": 3.3475425243377686,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335371179039303,
+ "grad_norm": 0.05718247592449188,
+ "learning_rate": 0.0006,
+ "loss": 3.351832866668701,
+ "step": 1536
+ },
+ {
+ "epoch": 21.349344978165938,
+ "grad_norm": 0.05781054124236107,
+ "learning_rate": 0.0006,
+ "loss": 3.38287091255188,
+ "step": 1537
+ },
+ {
+ "epoch": 21.363318777292577,
+ "grad_norm": 0.05846734717488289,
+ "learning_rate": 0.0006,
+ "loss": 3.3522510528564453,
+ "step": 1538
+ },
+ {
+ "epoch": 21.377292576419215,
+ "grad_norm": 0.0558689683675766,
+ "learning_rate": 0.0006,
+ "loss": 3.3376541137695312,
+ "step": 1539
+ },
+ {
+ "epoch": 21.39126637554585,
+ "grad_norm": 0.050501998513936996,
+ "learning_rate": 0.0006,
+ "loss": 3.359436511993408,
+ "step": 1540
+ },
+ {
+ "epoch": 21.40524017467249,
+ "grad_norm": 0.04265185445547104,
+ "learning_rate": 0.0006,
+ "loss": 3.3644630908966064,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419213973799128,
+ "grad_norm": 0.038762111216783524,
+ "learning_rate": 0.0006,
+ "loss": 3.347414493560791,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433187772925763,
+ "grad_norm": 0.033920831978321075,
+ "learning_rate": 0.0006,
+ "loss": 3.3242359161376953,
+ "step": 1543
+ },
+ {
+ "epoch": 21.4471615720524,
+ "grad_norm": 0.03363734856247902,
+ "learning_rate": 0.0006,
+ "loss": 3.3375630378723145,
+ "step": 1544
+ },
+ {
+ "epoch": 21.46113537117904,
+ "grad_norm": 0.03235653042793274,
+ "learning_rate": 0.0006,
+ "loss": 3.3372178077697754,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475109170305675,
+ "grad_norm": 0.028865264728665352,
+ "learning_rate": 0.0006,
+ "loss": 3.349198341369629,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489082969432314,
+ "grad_norm": 0.026676205918192863,
+ "learning_rate": 0.0006,
+ "loss": 3.355546474456787,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503056768558952,
+ "grad_norm": 0.023821823298931122,
+ "learning_rate": 0.0006,
+ "loss": 3.303542137145996,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51703056768559,
+ "grad_norm": 0.02385578863322735,
+ "learning_rate": 0.0006,
+ "loss": 3.3081653118133545,
+ "step": 1549
+ },
+ {
+ "epoch": 21.531004366812226,
+ "grad_norm": 0.022704163566231728,
+ "learning_rate": 0.0006,
+ "loss": 3.308283805847168,
+ "step": 1550
+ },
+ {
+ "epoch": 21.544978165938865,
+ "grad_norm": 0.02143189311027527,
+ "learning_rate": 0.0006,
+ "loss": 3.309621810913086,
+ "step": 1551
+ },
+ {
+ "epoch": 21.558951965065503,
+ "grad_norm": 0.020797641947865486,
+ "learning_rate": 0.0006,
+ "loss": 3.314361095428467,
+ "step": 1552
+ },
+ {
+ "epoch": 21.57292576419214,
+ "grad_norm": 0.020197909325361252,
+ "learning_rate": 0.0006,
+ "loss": 3.314574956893921,
+ "step": 1553
+ },
+ {
+ "epoch": 21.586899563318777,
+ "grad_norm": 0.020033083856105804,
+ "learning_rate": 0.0006,
+ "loss": 3.3187432289123535,
+ "step": 1554
+ },
+ {
+ "epoch": 21.600873362445416,
+ "grad_norm": 0.019949860870838165,
+ "learning_rate": 0.0006,
+ "loss": 3.292051315307617,
+ "step": 1555
+ },
+ {
+ "epoch": 21.61484716157205,
+ "grad_norm": 0.019957413896918297,
+ "learning_rate": 0.0006,
+ "loss": 3.305405855178833,
+ "step": 1556
+ },
+ {
+ "epoch": 21.62882096069869,
+ "grad_norm": 0.019971443340182304,
+ "learning_rate": 0.0006,
+ "loss": 3.296830177307129,
+ "step": 1557
+ },
+ {
+ "epoch": 21.64279475982533,
+ "grad_norm": 0.020505597814917564,
+ "learning_rate": 0.0006,
+ "loss": 3.2825589179992676,
+ "step": 1558
+ },
+ {
+ "epoch": 21.656768558951963,
+ "grad_norm": 0.019877616316080093,
+ "learning_rate": 0.0006,
+ "loss": 3.313103199005127,
+ "step": 1559
+ },
+ {
+ "epoch": 21.670742358078602,
+ "grad_norm": 0.020201386883854866,
+ "learning_rate": 0.0006,
+ "loss": 3.235610008239746,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68471615720524,
+ "grad_norm": 0.02024715021252632,
+ "learning_rate": 0.0006,
+ "loss": 3.2557928562164307,
+ "step": 1561
+ },
+ {
+ "epoch": 21.69868995633188,
+ "grad_norm": 0.019592178985476494,
+ "learning_rate": 0.0006,
+ "loss": 3.2867813110351562,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712663755458514,
+ "grad_norm": 0.018611110746860504,
+ "learning_rate": 0.0006,
+ "loss": 3.2807016372680664,
+ "step": 1563
+ },
+ {
+ "epoch": 21.726637554585153,
+ "grad_norm": 0.018972786143422127,
+ "learning_rate": 0.0006,
+ "loss": 3.2985191345214844,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74061135371179,
+ "grad_norm": 0.018826451152563095,
+ "learning_rate": 0.0006,
+ "loss": 3.29825758934021,
+ "step": 1565
+ },
+ {
+ "epoch": 21.754585152838427,
+ "grad_norm": 0.018894566223025322,
+ "learning_rate": 0.0006,
+ "loss": 3.276063919067383,
+ "step": 1566
+ },
+ {
+ "epoch": 21.768558951965066,
+ "grad_norm": 0.01885579153895378,
+ "learning_rate": 0.0006,
+ "loss": 3.2703640460968018,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782532751091704,
+ "grad_norm": 0.018351880833506584,
+ "learning_rate": 0.0006,
+ "loss": 3.2634973526000977,
+ "step": 1568
+ },
+ {
+ "epoch": 21.79650655021834,
+ "grad_norm": 0.018520258367061615,
+ "learning_rate": 0.0006,
+ "loss": 3.2701549530029297,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810480349344978,
+ "grad_norm": 0.018321022391319275,
+ "learning_rate": 0.0006,
+ "loss": 3.2998499870300293,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824454148471617,
+ "grad_norm": 0.018834305927157402,
+ "learning_rate": 0.0006,
+ "loss": 3.2863354682922363,
+ "step": 1571
+ },
+ {
+ "epoch": 21.83842794759825,
+ "grad_norm": 0.019185064360499382,
+ "learning_rate": 0.0006,
+ "loss": 3.286705493927002,
+ "step": 1572
+ },
+ {
+ "epoch": 21.85240174672489,
+ "grad_norm": 0.01889665424823761,
+ "learning_rate": 0.0006,
+ "loss": 3.32741641998291,
+ "step": 1573
+ },
+ {
+ "epoch": 21.86637554585153,
+ "grad_norm": 0.018116198480129242,
+ "learning_rate": 0.0006,
+ "loss": 3.3165807723999023,
+ "step": 1574
+ },
+ {
+ "epoch": 21.880349344978168,
+ "grad_norm": 0.019612092524766922,
+ "learning_rate": 0.0006,
+ "loss": 3.2506771087646484,
+ "step": 1575
+ },
+ {
+ "epoch": 21.894323144104803,
+ "grad_norm": 0.018245317041873932,
+ "learning_rate": 0.0006,
+ "loss": 3.287231922149658,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90829694323144,
+ "grad_norm": 0.01800438202917576,
+ "learning_rate": 0.0006,
+ "loss": 3.323281764984131,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92227074235808,
+ "grad_norm": 0.018265806138515472,
+ "learning_rate": 0.0006,
+ "loss": 3.327335834503174,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936244541484715,
+ "grad_norm": 0.01925564929842949,
+ "learning_rate": 0.0006,
+ "loss": 3.3010969161987305,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950218340611354,
+ "grad_norm": 0.019137129187583923,
+ "learning_rate": 0.0006,
+ "loss": 3.2997634410858154,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964192139737992,
+ "grad_norm": 0.01760365068912506,
+ "learning_rate": 0.0006,
+ "loss": 3.2637267112731934,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978165938864628,
+ "grad_norm": 0.018728850409388542,
+ "learning_rate": 0.0006,
+ "loss": 3.2676243782043457,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992139737991266,
+ "grad_norm": 0.018930058926343918,
+ "learning_rate": 0.0006,
+ "loss": 3.280712604522705,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.021552253514528275,
+ "learning_rate": 0.0006,
+ "loss": 3.297333240509033,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 4.021175384521484,
+ "eval_runtime": 50.1224,
+ "eval_samples_per_second": 48.721,
+ "eval_steps_per_second": 1.536,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397379912664,
+ "grad_norm": 0.02215493470430374,
+ "learning_rate": 0.0006,
+ "loss": 3.1229772567749023,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027947598253274,
+ "grad_norm": 0.02967856451869011,
+ "learning_rate": 0.0006,
+ "loss": 3.137763738632202,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041921397379912,
+ "grad_norm": 0.02984168380498886,
+ "learning_rate": 0.0006,
+ "loss": 3.1206588745117188,
+ "step": 1587
+ },
+ {
+ "epoch": 22.05589519650655,
+ "grad_norm": 0.029677357524633408,
+ "learning_rate": 0.0006,
+ "loss": 3.1399269104003906,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069868995633186,
+ "grad_norm": 0.03151305764913559,
+ "learning_rate": 0.0006,
+ "loss": 3.1238462924957275,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083842794759825,
+ "grad_norm": 0.033034879714250565,
+ "learning_rate": 0.0006,
+ "loss": 3.0901098251342773,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097816593886463,
+ "grad_norm": 0.03483431041240692,
+ "learning_rate": 0.0006,
+ "loss": 3.141174077987671,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111790393013102,
+ "grad_norm": 0.03549962490797043,
+ "learning_rate": 0.0006,
+ "loss": 3.1501364707946777,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125764192139737,
+ "grad_norm": 0.03203433007001877,
+ "learning_rate": 0.0006,
+ "loss": 3.159137725830078,
+ "step": 1593
+ },
+ {
+ "epoch": 22.139737991266376,
+ "grad_norm": 0.032320212572813034,
+ "learning_rate": 0.0006,
+ "loss": 3.132265329360962,
+ "step": 1594
+ },
+ {
+ "epoch": 22.153711790393015,
+ "grad_norm": 0.034070853143930435,
+ "learning_rate": 0.0006,
+ "loss": 3.1619839668273926,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16768558951965,
+ "grad_norm": 0.03379609435796738,
+ "learning_rate": 0.0006,
+ "loss": 3.1391677856445312,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18165938864629,
+ "grad_norm": 0.02766602858901024,
+ "learning_rate": 0.0006,
+ "loss": 3.134331226348877,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195633187772927,
+ "grad_norm": 0.02805453911423683,
+ "learning_rate": 0.0006,
+ "loss": 3.1561427116394043,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209606986899562,
+ "grad_norm": 0.028059443458914757,
+ "learning_rate": 0.0006,
+ "loss": 3.1427788734436035,
+ "step": 1599
+ },
+ {
+ "epoch": 22.2235807860262,
+ "grad_norm": 0.028307706117630005,
+ "learning_rate": 0.0006,
+ "loss": 3.1559817790985107,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23755458515284,
+ "grad_norm": 0.0279996320605278,
+ "learning_rate": 0.0006,
+ "loss": 3.132871389389038,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251528384279474,
+ "grad_norm": 0.02574557065963745,
+ "learning_rate": 0.0006,
+ "loss": 3.1786751747131348,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265502183406113,
+ "grad_norm": 0.024875380098819733,
+ "learning_rate": 0.0006,
+ "loss": 3.1568856239318848,
+ "step": 1603
+ },
+ {
+ "epoch": 22.27947598253275,
+ "grad_norm": 0.025276372209191322,
+ "learning_rate": 0.0006,
+ "loss": 3.162123203277588,
+ "step": 1604
+ },
+ {
+ "epoch": 22.29344978165939,
+ "grad_norm": 0.024784576147794724,
+ "learning_rate": 0.0006,
+ "loss": 3.1623098850250244,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307423580786025,
+ "grad_norm": 0.0219266377389431,
+ "learning_rate": 0.0006,
+ "loss": 3.193899393081665,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321397379912664,
+ "grad_norm": 0.02260139398276806,
+ "learning_rate": 0.0006,
+ "loss": 3.1366958618164062,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335371179039303,
+ "grad_norm": 0.023162642493844032,
+ "learning_rate": 0.0006,
+ "loss": 3.1931166648864746,
+ "step": 1608
+ },
+ {
+ "epoch": 22.349344978165938,
+ "grad_norm": 0.022873790934681892,
+ "learning_rate": 0.0006,
+ "loss": 3.1660501956939697,
+ "step": 1609
+ },
+ {
+ "epoch": 22.363318777292577,
+ "grad_norm": 0.02431238628923893,
+ "learning_rate": 0.0006,
+ "loss": 3.172982931137085,
+ "step": 1610
+ },
+ {
+ "epoch": 22.377292576419215,
+ "grad_norm": 0.023474128916859627,
+ "learning_rate": 0.0006,
+ "loss": 3.1941604614257812,
+ "step": 1611
+ },
+ {
+ "epoch": 22.39126637554585,
+ "grad_norm": 0.021899253129959106,
+ "learning_rate": 0.0006,
+ "loss": 3.164011240005493,
+ "step": 1612
+ },
+ {
+ "epoch": 22.40524017467249,
+ "grad_norm": 0.023463290184736252,
+ "learning_rate": 0.0006,
+ "loss": 3.181821823120117,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419213973799128,
+ "grad_norm": 0.022636929526925087,
+ "learning_rate": 0.0006,
+ "loss": 3.1651649475097656,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433187772925763,
+ "grad_norm": 0.022014712914824486,
+ "learning_rate": 0.0006,
+ "loss": 3.1782679557800293,
+ "step": 1615
+ },
+ {
+ "epoch": 22.4471615720524,
+ "grad_norm": 0.02165660634636879,
+ "learning_rate": 0.0006,
+ "loss": 3.188546657562256,
+ "step": 1616
+ },
+ {
+ "epoch": 22.46113537117904,
+ "grad_norm": 0.019901631399989128,
+ "learning_rate": 0.0006,
+ "loss": 3.1988091468811035,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475109170305675,
+ "grad_norm": 0.0209745354950428,
+ "learning_rate": 0.0006,
+ "loss": 3.19329833984375,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489082969432314,
+ "grad_norm": 0.021747298538684845,
+ "learning_rate": 0.0006,
+ "loss": 3.2036776542663574,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503056768558952,
+ "grad_norm": 0.019623076543211937,
+ "learning_rate": 0.0006,
+ "loss": 3.1681504249572754,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51703056768559,
+ "grad_norm": 0.020048566162586212,
+ "learning_rate": 0.0006,
+ "loss": 3.1954283714294434,
+ "step": 1621
+ },
+ {
+ "epoch": 22.531004366812226,
+ "grad_norm": 0.021175740286707878,
+ "learning_rate": 0.0006,
+ "loss": 3.189802646636963,
+ "step": 1622
+ },
+ {
+ "epoch": 22.544978165938865,
+ "grad_norm": 0.02099684439599514,
+ "learning_rate": 0.0006,
+ "loss": 3.2179861068725586,
+ "step": 1623
+ },
+ {
+ "epoch": 22.558951965065503,
+ "grad_norm": 0.020709119737148285,
+ "learning_rate": 0.0006,
+ "loss": 3.219874382019043,
+ "step": 1624
+ },
+ {
+ "epoch": 22.57292576419214,
+ "grad_norm": 0.02090434730052948,
+ "learning_rate": 0.0006,
+ "loss": 3.1864824295043945,
+ "step": 1625
+ },
+ {
+ "epoch": 22.586899563318777,
+ "grad_norm": 0.02059161476790905,
+ "learning_rate": 0.0006,
+ "loss": 3.2084670066833496,
+ "step": 1626
+ },
+ {
+ "epoch": 22.600873362445416,
+ "grad_norm": 0.02269027940928936,
+ "learning_rate": 0.0006,
+ "loss": 3.2111763954162598,
+ "step": 1627
+ },
+ {
+ "epoch": 22.61484716157205,
+ "grad_norm": 0.023081645369529724,
+ "learning_rate": 0.0006,
+ "loss": 3.1888933181762695,
+ "step": 1628
+ },
+ {
+ "epoch": 22.62882096069869,
+ "grad_norm": 0.021397452801465988,
+ "learning_rate": 0.0006,
+ "loss": 3.252058982849121,
+ "step": 1629
+ },
+ {
+ "epoch": 22.64279475982533,
+ "grad_norm": 0.021065089851617813,
+ "learning_rate": 0.0006,
+ "loss": 3.2006194591522217,
+ "step": 1630
+ },
+ {
+ "epoch": 22.656768558951963,
+ "grad_norm": 0.022490495815873146,
+ "learning_rate": 0.0006,
+ "loss": 3.229124069213867,
+ "step": 1631
+ },
+ {
+ "epoch": 22.670742358078602,
+ "grad_norm": 0.021817505359649658,
+ "learning_rate": 0.0006,
+ "loss": 3.194119691848755,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68471615720524,
+ "grad_norm": 0.021232811734080315,
+ "learning_rate": 0.0006,
+ "loss": 3.245544910430908,
+ "step": 1633
+ },
+ {
+ "epoch": 22.69868995633188,
+ "grad_norm": 0.023222077637910843,
+ "learning_rate": 0.0006,
+ "loss": 3.279717445373535,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712663755458514,
+ "grad_norm": 0.02224564366042614,
+ "learning_rate": 0.0006,
+ "loss": 3.2494592666625977,
+ "step": 1635
+ },
+ {
+ "epoch": 22.726637554585153,
+ "grad_norm": 0.021308856084942818,
+ "learning_rate": 0.0006,
+ "loss": 3.204773426055908,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74061135371179,
+ "grad_norm": 0.020439520478248596,
+ "learning_rate": 0.0006,
+ "loss": 3.205946683883667,
+ "step": 1637
+ },
+ {
+ "epoch": 22.754585152838427,
+ "grad_norm": 0.020782779902219772,
+ "learning_rate": 0.0006,
+ "loss": 3.239274501800537,
+ "step": 1638
+ },
+ {
+ "epoch": 22.768558951965066,
+ "grad_norm": 0.022062206640839577,
+ "learning_rate": 0.0006,
+ "loss": 3.2261786460876465,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782532751091704,
+ "grad_norm": 0.02113729901611805,
+ "learning_rate": 0.0006,
+ "loss": 3.2691404819488525,
+ "step": 1640
+ },
+ {
+ "epoch": 22.79650655021834,
+ "grad_norm": 0.021274438127875328,
+ "learning_rate": 0.0006,
+ "loss": 3.226609706878662,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810480349344978,
+ "grad_norm": 0.021622309461236,
+ "learning_rate": 0.0006,
+ "loss": 3.2209739685058594,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824454148471617,
+ "grad_norm": 0.0202135369181633,
+ "learning_rate": 0.0006,
+ "loss": 3.1961019039154053,
+ "step": 1643
+ },
+ {
+ "epoch": 22.83842794759825,
+ "grad_norm": 0.020688654854893684,
+ "learning_rate": 0.0006,
+ "loss": 3.2573604583740234,
+ "step": 1644
+ },
+ {
+ "epoch": 22.85240174672489,
+ "grad_norm": 0.021738961338996887,
+ "learning_rate": 0.0006,
+ "loss": 3.2542853355407715,
+ "step": 1645
+ },
+ {
+ "epoch": 22.86637554585153,
+ "grad_norm": 0.0219196118414402,
+ "learning_rate": 0.0006,
+ "loss": 3.252492904663086,
+ "step": 1646
+ },
+ {
+ "epoch": 22.880349344978168,
+ "grad_norm": 0.0218547023832798,
+ "learning_rate": 0.0006,
+ "loss": 3.2702088356018066,
+ "step": 1647
+ },
+ {
+ "epoch": 22.894323144104803,
+ "grad_norm": 0.021791797131299973,
+ "learning_rate": 0.0006,
+ "loss": 3.2743520736694336,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90829694323144,
+ "grad_norm": 0.02209450677037239,
+ "learning_rate": 0.0006,
+ "loss": 3.2271618843078613,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92227074235808,
+ "grad_norm": 0.021461671218276024,
+ "learning_rate": 0.0006,
+ "loss": 3.237719774246216,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936244541484715,
+ "grad_norm": 0.02116190828382969,
+ "learning_rate": 0.0006,
+ "loss": 3.220345973968506,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950218340611354,
+ "grad_norm": 0.021221552044153214,
+ "learning_rate": 0.0006,
+ "loss": 3.270355224609375,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964192139737992,
+ "grad_norm": 0.021926164627075195,
+ "learning_rate": 0.0006,
+ "loss": 3.251894474029541,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978165938864628,
+ "grad_norm": 0.02037062682211399,
+ "learning_rate": 0.0006,
+ "loss": 3.2335145473480225,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992139737991266,
+ "grad_norm": 0.021061841398477554,
+ "learning_rate": 0.0006,
+ "loss": 3.258089065551758,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.023548489436507225,
+ "learning_rate": 0.0006,
+ "loss": 3.211991548538208,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 4.036250591278076,
+ "eval_runtime": 50.0837,
+ "eval_samples_per_second": 48.758,
+ "eval_steps_per_second": 1.537,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397379912664,
+ "grad_norm": 0.028975404798984528,
+ "learning_rate": 0.0006,
+ "loss": 3.0739121437072754,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027947598253274,
+ "grad_norm": 0.045989733189344406,
+ "learning_rate": 0.0006,
+ "loss": 3.086352825164795,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041921397379912,
+ "grad_norm": 0.054499756544828415,
+ "learning_rate": 0.0006,
+ "loss": 3.0560779571533203,
+ "step": 1659
+ },
+ {
+ "epoch": 23.05589519650655,
+ "grad_norm": 0.05919722840189934,
+ "learning_rate": 0.0006,
+ "loss": 3.0908679962158203,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069868995633186,
+ "grad_norm": 0.05523031949996948,
+ "learning_rate": 0.0006,
+ "loss": 3.143130302429199,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083842794759825,
+ "grad_norm": 0.04946798086166382,
+ "learning_rate": 0.0006,
+ "loss": 3.0894484519958496,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097816593886463,
+ "grad_norm": 0.05096029117703438,
+ "learning_rate": 0.0006,
+ "loss": 3.1163463592529297,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111790393013102,
+ "grad_norm": 0.051004018634557724,
+ "learning_rate": 0.0006,
+ "loss": 3.094862937927246,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125764192139737,
+ "grad_norm": 0.04774824529886246,
+ "learning_rate": 0.0006,
+ "loss": 3.056874990463257,
+ "step": 1665
+ },
+ {
+ "epoch": 23.139737991266376,
+ "grad_norm": 0.04676121845841408,
+ "learning_rate": 0.0006,
+ "loss": 3.1135435104370117,
+ "step": 1666
+ },
+ {
+ "epoch": 23.153711790393015,
+ "grad_norm": 0.04623310640454292,
+ "learning_rate": 0.0006,
+ "loss": 3.0834898948669434,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16768558951965,
+ "grad_norm": 0.04654386639595032,
+ "learning_rate": 0.0006,
+ "loss": 3.1126627922058105,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18165938864629,
+ "grad_norm": 0.05056565999984741,
+ "learning_rate": 0.0006,
+ "loss": 3.1404361724853516,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195633187772927,
+ "grad_norm": 0.04947774112224579,
+ "learning_rate": 0.0006,
+ "loss": 3.0800836086273193,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209606986899562,
+ "grad_norm": 0.05254998058080673,
+ "learning_rate": 0.0006,
+ "loss": 3.1659531593322754,
+ "step": 1671
+ },
+ {
+ "epoch": 23.2235807860262,
+ "grad_norm": 0.05698013678193092,
+ "learning_rate": 0.0006,
+ "loss": 3.124387741088867,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23755458515284,
+ "grad_norm": 0.05885928124189377,
+ "learning_rate": 0.0006,
+ "loss": 3.1883671283721924,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251528384279474,
+ "grad_norm": 0.05118200555443764,
+ "learning_rate": 0.0006,
+ "loss": 3.1102395057678223,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265502183406113,
+ "grad_norm": 0.04967886209487915,
+ "learning_rate": 0.0006,
+ "loss": 3.124696731567383,
+ "step": 1675
+ },
+ {
+ "epoch": 23.27947598253275,
+ "grad_norm": 0.05399557575583458,
+ "learning_rate": 0.0006,
+ "loss": 3.152482032775879,
+ "step": 1676
+ },
+ {
+ "epoch": 23.29344978165939,
+ "grad_norm": 0.04705207049846649,
+ "learning_rate": 0.0006,
+ "loss": 3.1485037803649902,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307423580786025,
+ "grad_norm": 0.045942481607198715,
+ "learning_rate": 0.0006,
+ "loss": 3.149049997329712,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321397379912664,
+ "grad_norm": 0.04364842176437378,
+ "learning_rate": 0.0006,
+ "loss": 3.1753323078155518,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335371179039303,
+ "grad_norm": 0.04357321560382843,
+ "learning_rate": 0.0006,
+ "loss": 3.1530587673187256,
+ "step": 1680
+ },
+ {
+ "epoch": 23.349344978165938,
+ "grad_norm": 0.040299318730831146,
+ "learning_rate": 0.0006,
+ "loss": 3.1689562797546387,
+ "step": 1681
+ },
+ {
+ "epoch": 23.363318777292577,
+ "grad_norm": 0.033832576125860214,
+ "learning_rate": 0.0006,
+ "loss": 3.1539080142974854,
+ "step": 1682
+ },
+ {
+ "epoch": 23.377292576419215,
+ "grad_norm": 0.0333096869289875,
+ "learning_rate": 0.0006,
+ "loss": 3.136540412902832,
+ "step": 1683
+ },
+ {
+ "epoch": 23.39126637554585,
+ "grad_norm": 0.03185306116938591,
+ "learning_rate": 0.0006,
+ "loss": 3.161989450454712,
+ "step": 1684
+ },
+ {
+ "epoch": 23.40524017467249,
+ "grad_norm": 0.030003627762198448,
+ "learning_rate": 0.0006,
+ "loss": 3.1533138751983643,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419213973799128,
+ "grad_norm": 0.028618820011615753,
+ "learning_rate": 0.0006,
+ "loss": 3.185976028442383,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433187772925763,
+ "grad_norm": 0.02691742591559887,
+ "learning_rate": 0.0006,
+ "loss": 3.153627872467041,
+ "step": 1687
+ },
+ {
+ "epoch": 23.4471615720524,
+ "grad_norm": 0.026324588805437088,
+ "learning_rate": 0.0006,
+ "loss": 3.1644554138183594,
+ "step": 1688
+ },
+ {
+ "epoch": 23.46113537117904,
+ "grad_norm": 0.025900371372699738,
+ "learning_rate": 0.0006,
+ "loss": 3.1649692058563232,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475109170305675,
+ "grad_norm": 0.0243719182908535,
+ "learning_rate": 0.0006,
+ "loss": 3.182521343231201,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489082969432314,
+ "grad_norm": 0.022730499505996704,
+ "learning_rate": 0.0006,
+ "loss": 3.1854891777038574,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503056768558952,
+ "grad_norm": 0.02335519716143608,
+ "learning_rate": 0.0006,
+ "loss": 3.151111364364624,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51703056768559,
+ "grad_norm": 0.022645823657512665,
+ "learning_rate": 0.0006,
+ "loss": 3.181077241897583,
+ "step": 1693
+ },
+ {
+ "epoch": 23.531004366812226,
+ "grad_norm": 0.022274266928434372,
+ "learning_rate": 0.0006,
+ "loss": 3.155630111694336,
+ "step": 1694
+ },
+ {
+ "epoch": 23.544978165938865,
+ "grad_norm": 0.02225971594452858,
+ "learning_rate": 0.0006,
+ "loss": 3.20708966255188,
+ "step": 1695
+ },
+ {
+ "epoch": 23.558951965065503,
+ "grad_norm": 0.022145207971334457,
+ "learning_rate": 0.0006,
+ "loss": 3.1944689750671387,
+ "step": 1696
+ },
+ {
+ "epoch": 23.57292576419214,
+ "grad_norm": 0.02143380232155323,
+ "learning_rate": 0.0006,
+ "loss": 3.1928765773773193,
+ "step": 1697
+ },
+ {
+ "epoch": 23.586899563318777,
+ "grad_norm": 0.021410757675766945,
+ "learning_rate": 0.0006,
+ "loss": 3.141218900680542,
+ "step": 1698
+ },
+ {
+ "epoch": 23.600873362445416,
+ "grad_norm": 0.020946916192770004,
+ "learning_rate": 0.0006,
+ "loss": 3.1523003578186035,
+ "step": 1699
+ },
+ {
+ "epoch": 23.61484716157205,
+ "grad_norm": 0.02247041091322899,
+ "learning_rate": 0.0006,
+ "loss": 3.197848320007324,
+ "step": 1700
+ },
+ {
+ "epoch": 23.62882096069869,
+ "grad_norm": 0.02199610322713852,
+ "learning_rate": 0.0006,
+ "loss": 3.146364212036133,
+ "step": 1701
+ },
+ {
+ "epoch": 23.64279475982533,
+ "grad_norm": 0.021192600950598717,
+ "learning_rate": 0.0006,
+ "loss": 3.205726146697998,
+ "step": 1702
+ },
+ {
+ "epoch": 23.656768558951963,
+ "grad_norm": 0.021812601014971733,
+ "learning_rate": 0.0006,
+ "loss": 3.1663761138916016,
+ "step": 1703
+ },
+ {
+ "epoch": 23.670742358078602,
+ "grad_norm": 0.021653084084391594,
+ "learning_rate": 0.0006,
+ "loss": 3.186915397644043,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68471615720524,
+ "grad_norm": 0.02271277830004692,
+ "learning_rate": 0.0006,
+ "loss": 3.1901726722717285,
+ "step": 1705
+ },
+ {
+ "epoch": 23.69868995633188,
+ "grad_norm": 0.022516358643770218,
+ "learning_rate": 0.0006,
+ "loss": 3.1948347091674805,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712663755458514,
+ "grad_norm": 0.021564161404967308,
+ "learning_rate": 0.0006,
+ "loss": 3.18239688873291,
+ "step": 1707
+ },
+ {
+ "epoch": 23.726637554585153,
+ "grad_norm": 0.02193053439259529,
+ "learning_rate": 0.0006,
+ "loss": 3.167478561401367,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74061135371179,
+ "grad_norm": 0.020590802654623985,
+ "learning_rate": 0.0006,
+ "loss": 3.1782495975494385,
+ "step": 1709
+ },
+ {
+ "epoch": 23.754585152838427,
+ "grad_norm": 0.02001943439245224,
+ "learning_rate": 0.0006,
+ "loss": 3.140777111053467,
+ "step": 1710
+ },
+ {
+ "epoch": 23.768558951965066,
+ "grad_norm": 0.02146220952272415,
+ "learning_rate": 0.0006,
+ "loss": 3.196669578552246,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782532751091704,
+ "grad_norm": 0.02064087800681591,
+ "learning_rate": 0.0006,
+ "loss": 3.1968512535095215,
+ "step": 1712
+ },
+ {
+ "epoch": 23.79650655021834,
+ "grad_norm": 0.020168280228972435,
+ "learning_rate": 0.0006,
+ "loss": 3.185011625289917,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810480349344978,
+ "grad_norm": 0.021309854462742805,
+ "learning_rate": 0.0006,
+ "loss": 3.223778247833252,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824454148471617,
+ "grad_norm": 0.021627578884363174,
+ "learning_rate": 0.0006,
+ "loss": 3.2337048053741455,
+ "step": 1715
+ },
+ {
+ "epoch": 23.83842794759825,
+ "grad_norm": 0.022393809631466866,
+ "learning_rate": 0.0006,
+ "loss": 3.1815061569213867,
+ "step": 1716
+ },
+ {
+ "epoch": 23.85240174672489,
+ "grad_norm": 0.021653614938259125,
+ "learning_rate": 0.0006,
+ "loss": 3.2199814319610596,
+ "step": 1717
+ },
+ {
+ "epoch": 23.86637554585153,
+ "grad_norm": 0.021053675562143326,
+ "learning_rate": 0.0006,
+ "loss": 3.2100138664245605,
+ "step": 1718
+ },
+ {
+ "epoch": 23.880349344978168,
+ "grad_norm": 0.02070586569607258,
+ "learning_rate": 0.0006,
+ "loss": 3.169224262237549,
+ "step": 1719
+ },
+ {
+ "epoch": 23.894323144104803,
+ "grad_norm": 0.02080441080033779,
+ "learning_rate": 0.0006,
+ "loss": 3.2199649810791016,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90829694323144,
+ "grad_norm": 0.022092828527092934,
+ "learning_rate": 0.0006,
+ "loss": 3.2059383392333984,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92227074235808,
+ "grad_norm": 0.02031811885535717,
+ "learning_rate": 0.0006,
+ "loss": 3.181447982788086,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936244541484715,
+ "grad_norm": 0.020453795790672302,
+ "learning_rate": 0.0006,
+ "loss": 3.2039992809295654,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950218340611354,
+ "grad_norm": 0.02050524763762951,
+ "learning_rate": 0.0006,
+ "loss": 3.2518773078918457,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964192139737992,
+ "grad_norm": 0.020392276346683502,
+ "learning_rate": 0.0006,
+ "loss": 3.21860408782959,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978165938864628,
+ "grad_norm": 0.02083909884095192,
+ "learning_rate": 0.0006,
+ "loss": 3.2072129249572754,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992139737991266,
+ "grad_norm": 0.020636966452002525,
+ "learning_rate": 0.0006,
+ "loss": 3.1956424713134766,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.02314000204205513,
+ "learning_rate": 0.0006,
+ "loss": 3.1868958473205566,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 4.061861038208008,
+ "eval_runtime": 50.2887,
+ "eval_samples_per_second": 48.56,
+ "eval_steps_per_second": 1.531,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397379912664,
+ "grad_norm": 0.026494357734918594,
+ "learning_rate": 0.0006,
+ "loss": 3.0170693397521973,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027947598253274,
+ "grad_norm": 0.03457538038492203,
+ "learning_rate": 0.0006,
+ "loss": 3.038365364074707,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041921397379912,
+ "grad_norm": 0.0362137034535408,
+ "learning_rate": 0.0006,
+ "loss": 3.042156219482422,
+ "step": 1731
+ },
+ {
+ "epoch": 24.05589519650655,
+ "grad_norm": 0.0380006767809391,
+ "learning_rate": 0.0006,
+ "loss": 2.9978504180908203,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069868995633186,
+ "grad_norm": 0.039754100143909454,
+ "learning_rate": 0.0006,
+ "loss": 3.0558762550354004,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083842794759825,
+ "grad_norm": 0.04269031062722206,
+ "learning_rate": 0.0006,
+ "loss": 3.0549988746643066,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097816593886463,
+ "grad_norm": 0.04441278055310249,
+ "learning_rate": 0.0006,
+ "loss": 3.0869946479797363,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111790393013102,
+ "grad_norm": 0.040790386497974396,
+ "learning_rate": 0.0006,
+ "loss": 3.0361521244049072,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125764192139737,
+ "grad_norm": 0.03730896860361099,
+ "learning_rate": 0.0006,
+ "loss": 3.046663761138916,
+ "step": 1737
+ },
+ {
+ "epoch": 24.139737991266376,
+ "grad_norm": 0.03982469439506531,
+ "learning_rate": 0.0006,
+ "loss": 3.0173420906066895,
+ "step": 1738
+ },
+ {
+ "epoch": 24.153711790393015,
+ "grad_norm": 0.039260219782590866,
+ "learning_rate": 0.0006,
+ "loss": 3.0473644733428955,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16768558951965,
+ "grad_norm": 0.03755051642656326,
+ "learning_rate": 0.0006,
+ "loss": 3.0663342475891113,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18165938864629,
+ "grad_norm": 0.03793613240122795,
+ "learning_rate": 0.0006,
+ "loss": 3.0489985942840576,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195633187772927,
+ "grad_norm": 0.04197019711136818,
+ "learning_rate": 0.0006,
+ "loss": 3.097670555114746,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209606986899562,
+ "grad_norm": 0.0469660609960556,
+ "learning_rate": 0.0006,
+ "loss": 3.1100730895996094,
+ "step": 1743
+ },
+ {
+ "epoch": 24.2235807860262,
+ "grad_norm": 0.04978584498167038,
+ "learning_rate": 0.0006,
+ "loss": 3.079113006591797,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23755458515284,
+ "grad_norm": 0.04865782707929611,
+ "learning_rate": 0.0006,
+ "loss": 3.0800795555114746,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251528384279474,
+ "grad_norm": 0.04515399411320686,
+ "learning_rate": 0.0006,
+ "loss": 3.0951786041259766,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265502183406113,
+ "grad_norm": 0.05194929614663124,
+ "learning_rate": 0.0006,
+ "loss": 3.0923233032226562,
+ "step": 1747
+ },
+ {
+ "epoch": 24.27947598253275,
+ "grad_norm": 0.05268502235412598,
+ "learning_rate": 0.0006,
+ "loss": 3.0762367248535156,
+ "step": 1748
+ },
+ {
+ "epoch": 24.29344978165939,
+ "grad_norm": 0.04807785153388977,
+ "learning_rate": 0.0006,
+ "loss": 3.0600905418395996,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307423580786025,
+ "grad_norm": 0.049069009721279144,
+ "learning_rate": 0.0006,
+ "loss": 3.119414806365967,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321397379912664,
+ "grad_norm": 0.040332380682229996,
+ "learning_rate": 0.0006,
+ "loss": 3.101262092590332,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335371179039303,
+ "grad_norm": 0.037106387317180634,
+ "learning_rate": 0.0006,
+ "loss": 3.111459732055664,
+ "step": 1752
+ },
+ {
+ "epoch": 24.349344978165938,
+ "grad_norm": 0.04089464247226715,
+ "learning_rate": 0.0006,
+ "loss": 3.078132152557373,
+ "step": 1753
+ },
+ {
+ "epoch": 24.363318777292577,
+ "grad_norm": 0.042072005569934845,
+ "learning_rate": 0.0006,
+ "loss": 3.098802089691162,
+ "step": 1754
+ },
+ {
+ "epoch": 24.377292576419215,
+ "grad_norm": 0.03779057413339615,
+ "learning_rate": 0.0006,
+ "loss": 3.137354850769043,
+ "step": 1755
+ },
+ {
+ "epoch": 24.39126637554585,
+ "grad_norm": 0.037271898239851,
+ "learning_rate": 0.0006,
+ "loss": 3.1019601821899414,
+ "step": 1756
+ },
+ {
+ "epoch": 24.40524017467249,
+ "grad_norm": 0.036236681044101715,
+ "learning_rate": 0.0006,
+ "loss": 3.073394775390625,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419213973799128,
+ "grad_norm": 0.03288481757044792,
+ "learning_rate": 0.0006,
+ "loss": 3.085905075073242,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433187772925763,
+ "grad_norm": 0.030534565448760986,
+ "learning_rate": 0.0006,
+ "loss": 3.1430633068084717,
+ "step": 1759
+ },
+ {
+ "epoch": 24.4471615720524,
+ "grad_norm": 0.030080555006861687,
+ "learning_rate": 0.0006,
+ "loss": 3.084897994995117,
+ "step": 1760
+ },
+ {
+ "epoch": 24.46113537117904,
+ "grad_norm": 0.028177041560411453,
+ "learning_rate": 0.0006,
+ "loss": 3.0981075763702393,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475109170305675,
+ "grad_norm": 0.02868589572608471,
+ "learning_rate": 0.0006,
+ "loss": 3.113759994506836,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489082969432314,
+ "grad_norm": 0.02866324409842491,
+ "learning_rate": 0.0006,
+ "loss": 3.146918773651123,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503056768558952,
+ "grad_norm": 0.032893482595682144,
+ "learning_rate": 0.0006,
+ "loss": 3.16141414642334,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51703056768559,
+ "grad_norm": 0.03186864033341408,
+ "learning_rate": 0.0006,
+ "loss": 3.13303804397583,
+ "step": 1765
+ },
+ {
+ "epoch": 24.531004366812226,
+ "grad_norm": 0.0323340930044651,
+ "learning_rate": 0.0006,
+ "loss": 3.1308135986328125,
+ "step": 1766
+ },
+ {
+ "epoch": 24.544978165938865,
+ "grad_norm": 0.03451741859316826,
+ "learning_rate": 0.0006,
+ "loss": 3.13972806930542,
+ "step": 1767
+ },
+ {
+ "epoch": 24.558951965065503,
+ "grad_norm": 0.03144263103604317,
+ "learning_rate": 0.0006,
+ "loss": 3.1428070068359375,
+ "step": 1768
+ },
+ {
+ "epoch": 24.57292576419214,
+ "grad_norm": 0.02920706383883953,
+ "learning_rate": 0.0006,
+ "loss": 3.1201605796813965,
+ "step": 1769
+ },
+ {
+ "epoch": 24.586899563318777,
+ "grad_norm": 0.028445811942219734,
+ "learning_rate": 0.0006,
+ "loss": 3.144218683242798,
+ "step": 1770
+ },
+ {
+ "epoch": 24.600873362445416,
+ "grad_norm": 0.02665509283542633,
+ "learning_rate": 0.0006,
+ "loss": 3.130509853363037,
+ "step": 1771
+ },
+ {
+ "epoch": 24.61484716157205,
+ "grad_norm": 0.02607566863298416,
+ "learning_rate": 0.0006,
+ "loss": 3.1229686737060547,
+ "step": 1772
+ },
+ {
+ "epoch": 24.62882096069869,
+ "grad_norm": 0.02450554072856903,
+ "learning_rate": 0.0006,
+ "loss": 3.1412901878356934,
+ "step": 1773
+ },
+ {
+ "epoch": 24.64279475982533,
+ "grad_norm": 0.024406673386693,
+ "learning_rate": 0.0006,
+ "loss": 3.1482839584350586,
+ "step": 1774
+ },
+ {
+ "epoch": 24.656768558951963,
+ "grad_norm": 0.02445918507874012,
+ "learning_rate": 0.0006,
+ "loss": 3.1525535583496094,
+ "step": 1775
+ },
+ {
+ "epoch": 24.670742358078602,
+ "grad_norm": 0.024329137057065964,
+ "learning_rate": 0.0006,
+ "loss": 3.1237733364105225,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68471615720524,
+ "grad_norm": 0.026551753282546997,
+ "learning_rate": 0.0006,
+ "loss": 3.168206214904785,
+ "step": 1777
+ },
+ {
+ "epoch": 24.69868995633188,
+ "grad_norm": 0.02526521123945713,
+ "learning_rate": 0.0006,
+ "loss": 3.145684242248535,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712663755458514,
+ "grad_norm": 0.022739525884389877,
+ "learning_rate": 0.0006,
+ "loss": 3.109616756439209,
+ "step": 1779
+ },
+ {
+ "epoch": 24.726637554585153,
+ "grad_norm": 0.02353929914534092,
+ "learning_rate": 0.0006,
+ "loss": 3.1133408546447754,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74061135371179,
+ "grad_norm": 0.024195613339543343,
+ "learning_rate": 0.0006,
+ "loss": 3.1797852516174316,
+ "step": 1781
+ },
+ {
+ "epoch": 24.754585152838427,
+ "grad_norm": 0.023433320224285126,
+ "learning_rate": 0.0006,
+ "loss": 3.1500236988067627,
+ "step": 1782
+ },
+ {
+ "epoch": 24.768558951965066,
+ "grad_norm": 0.023815682157874107,
+ "learning_rate": 0.0006,
+ "loss": 3.1468753814697266,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782532751091704,
+ "grad_norm": 0.023465458303689957,
+ "learning_rate": 0.0006,
+ "loss": 3.1285457611083984,
+ "step": 1784
+ },
+ {
+ "epoch": 24.79650655021834,
+ "grad_norm": 0.023044317960739136,
+ "learning_rate": 0.0006,
+ "loss": 3.152935028076172,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810480349344978,
+ "grad_norm": 0.02268923819065094,
+ "learning_rate": 0.0006,
+ "loss": 3.149824619293213,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824454148471617,
+ "grad_norm": 0.02200215309858322,
+ "learning_rate": 0.0006,
+ "loss": 3.136305570602417,
+ "step": 1787
+ },
+ {
+ "epoch": 24.83842794759825,
+ "grad_norm": 0.021768024191260338,
+ "learning_rate": 0.0006,
+ "loss": 3.1580021381378174,
+ "step": 1788
+ },
+ {
+ "epoch": 24.85240174672489,
+ "grad_norm": 0.02197638899087906,
+ "learning_rate": 0.0006,
+ "loss": 3.167720079421997,
+ "step": 1789
+ },
+ {
+ "epoch": 24.86637554585153,
+ "grad_norm": 0.02179424650967121,
+ "learning_rate": 0.0006,
+ "loss": 3.1844677925109863,
+ "step": 1790
+ },
+ {
+ "epoch": 24.880349344978168,
+ "grad_norm": 0.02222774736583233,
+ "learning_rate": 0.0006,
+ "loss": 3.1534781455993652,
+ "step": 1791
+ },
+ {
+ "epoch": 24.894323144104803,
+ "grad_norm": 0.0211419016122818,
+ "learning_rate": 0.0006,
+ "loss": 3.1624507904052734,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90829694323144,
+ "grad_norm": 0.021679047495126724,
+ "learning_rate": 0.0006,
+ "loss": 3.1692471504211426,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92227074235808,
+ "grad_norm": 0.02098955772817135,
+ "learning_rate": 0.0006,
+ "loss": 3.1197893619537354,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936244541484715,
+ "grad_norm": 0.02041255682706833,
+ "learning_rate": 0.0006,
+ "loss": 3.1489920616149902,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950218340611354,
+ "grad_norm": 0.021229229867458344,
+ "learning_rate": 0.0006,
+ "loss": 3.181349277496338,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964192139737992,
+ "grad_norm": 0.021164825186133385,
+ "learning_rate": 0.0006,
+ "loss": 3.174917221069336,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978165938864628,
+ "grad_norm": 0.021351559087634087,
+ "learning_rate": 0.0006,
+ "loss": 3.1783559322357178,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992139737991266,
+ "grad_norm": 0.020969994366168976,
+ "learning_rate": 0.0006,
+ "loss": 3.193674087524414,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.02423921413719654,
+ "learning_rate": 0.0006,
+ "loss": 3.200575590133667,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 4.083610534667969,
+ "eval_runtime": 49.9782,
+ "eval_samples_per_second": 48.861,
+ "eval_steps_per_second": 1.541,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397379912664,
+ "grad_norm": 0.02671094425022602,
+ "learning_rate": 0.0006,
+ "loss": 2.9603734016418457,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027947598253274,
+ "grad_norm": 0.04277094826102257,
+ "learning_rate": 0.0006,
+ "loss": 2.97347354888916,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041921397379912,
+ "grad_norm": 0.05197378247976303,
+ "learning_rate": 0.0006,
+ "loss": 2.999575614929199,
+ "step": 1803
+ },
+ {
+ "epoch": 25.05589519650655,
+ "grad_norm": 0.05377629026770592,
+ "learning_rate": 0.0006,
+ "loss": 2.9785799980163574,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069868995633186,
+ "grad_norm": 0.056606143712997437,
+ "learning_rate": 0.0006,
+ "loss": 3.0218558311462402,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083842794759825,
+ "grad_norm": 0.054323576390743256,
+ "learning_rate": 0.0006,
+ "loss": 3.009265899658203,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097816593886463,
+ "grad_norm": 0.05065226927399635,
+ "learning_rate": 0.0006,
+ "loss": 3.033031702041626,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111790393013102,
+ "grad_norm": 0.05075160786509514,
+ "learning_rate": 0.0006,
+ "loss": 3.0429916381835938,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125764192139737,
+ "grad_norm": 0.05267050117254257,
+ "learning_rate": 0.0006,
+ "loss": 3.0145187377929688,
+ "step": 1809
+ },
+ {
+ "epoch": 25.139737991266376,
+ "grad_norm": 0.04282816872000694,
+ "learning_rate": 0.0006,
+ "loss": 3.019191026687622,
+ "step": 1810
+ },
+ {
+ "epoch": 25.153711790393015,
+ "grad_norm": 0.042729251086711884,
+ "learning_rate": 0.0006,
+ "loss": 3.024594783782959,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16768558951965,
+ "grad_norm": 0.04174517095088959,
+ "learning_rate": 0.0006,
+ "loss": 3.021573066711426,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18165938864629,
+ "grad_norm": 0.039621077477931976,
+ "learning_rate": 0.0006,
+ "loss": 3.033224105834961,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195633187772927,
+ "grad_norm": 0.037193190306425095,
+ "learning_rate": 0.0006,
+ "loss": 3.022829532623291,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209606986899562,
+ "grad_norm": 0.03468523919582367,
+ "learning_rate": 0.0006,
+ "loss": 3.016298294067383,
+ "step": 1815
+ },
+ {
+ "epoch": 25.2235807860262,
+ "grad_norm": 0.03721904382109642,
+ "learning_rate": 0.0006,
+ "loss": 2.991225242614746,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23755458515284,
+ "grad_norm": 0.03951790928840637,
+ "learning_rate": 0.0006,
+ "loss": 3.0309948921203613,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251528384279474,
+ "grad_norm": 0.04039984196424484,
+ "learning_rate": 0.0006,
+ "loss": 3.032059669494629,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265502183406113,
+ "grad_norm": 0.041549600660800934,
+ "learning_rate": 0.0006,
+ "loss": 3.041177749633789,
+ "step": 1819
+ },
+ {
+ "epoch": 25.27947598253275,
+ "grad_norm": 0.041605785489082336,
+ "learning_rate": 0.0006,
+ "loss": 3.052733898162842,
+ "step": 1820
+ },
+ {
+ "epoch": 25.29344978165939,
+ "grad_norm": 0.03979694843292236,
+ "learning_rate": 0.0006,
+ "loss": 3.030470371246338,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307423580786025,
+ "grad_norm": 0.038538020104169846,
+ "learning_rate": 0.0006,
+ "loss": 3.0051193237304688,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321397379912664,
+ "grad_norm": 0.035272035747766495,
+ "learning_rate": 0.0006,
+ "loss": 3.0283000469207764,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335371179039303,
+ "grad_norm": 0.03455478698015213,
+ "learning_rate": 0.0006,
+ "loss": 3.070821523666382,
+ "step": 1824
+ },
+ {
+ "epoch": 25.349344978165938,
+ "grad_norm": 0.035375602543354034,
+ "learning_rate": 0.0006,
+ "loss": 3.0163800716400146,
+ "step": 1825
+ },
+ {
+ "epoch": 25.363318777292577,
+ "grad_norm": 0.03162388876080513,
+ "learning_rate": 0.0006,
+ "loss": 3.037997245788574,
+ "step": 1826
+ },
+ {
+ "epoch": 25.377292576419215,
+ "grad_norm": 0.031044775620102882,
+ "learning_rate": 0.0006,
+ "loss": 3.0624966621398926,
+ "step": 1827
+ },
+ {
+ "epoch": 25.39126637554585,
+ "grad_norm": 0.03079981915652752,
+ "learning_rate": 0.0006,
+ "loss": 3.0983829498291016,
+ "step": 1828
+ },
+ {
+ "epoch": 25.40524017467249,
+ "grad_norm": 0.029769832268357277,
+ "learning_rate": 0.0006,
+ "loss": 3.0633068084716797,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419213973799128,
+ "grad_norm": 0.029182543978095055,
+ "learning_rate": 0.0006,
+ "loss": 3.038501501083374,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433187772925763,
+ "grad_norm": 0.02948548085987568,
+ "learning_rate": 0.0006,
+ "loss": 3.074523448944092,
+ "step": 1831
+ },
+ {
+ "epoch": 25.4471615720524,
+ "grad_norm": 0.02877483330667019,
+ "learning_rate": 0.0006,
+ "loss": 3.067094326019287,
+ "step": 1832
+ },
+ {
+ "epoch": 25.46113537117904,
+ "grad_norm": 0.029504863545298576,
+ "learning_rate": 0.0006,
+ "loss": 3.071795701980591,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475109170305675,
+ "grad_norm": 0.030246607959270477,
+ "learning_rate": 0.0006,
+ "loss": 3.0463738441467285,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489082969432314,
+ "grad_norm": 0.03195366635918617,
+ "learning_rate": 0.0006,
+ "loss": 3.1079678535461426,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503056768558952,
+ "grad_norm": 0.0315500870347023,
+ "learning_rate": 0.0006,
+ "loss": 3.074368953704834,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51703056768559,
+ "grad_norm": 0.03132857382297516,
+ "learning_rate": 0.0006,
+ "loss": 3.070516347885132,
+ "step": 1837
+ },
+ {
+ "epoch": 25.531004366812226,
+ "grad_norm": 0.031229723244905472,
+ "learning_rate": 0.0006,
+ "loss": 3.129385471343994,
+ "step": 1838
+ },
+ {
+ "epoch": 25.544978165938865,
+ "grad_norm": 0.027454618364572525,
+ "learning_rate": 0.0006,
+ "loss": 3.0627448558807373,
+ "step": 1839
+ },
+ {
+ "epoch": 25.558951965065503,
+ "grad_norm": 0.028137732297182083,
+ "learning_rate": 0.0006,
+ "loss": 3.109487533569336,
+ "step": 1840
+ },
+ {
+ "epoch": 25.57292576419214,
+ "grad_norm": 0.029513249173760414,
+ "learning_rate": 0.0006,
+ "loss": 3.0803885459899902,
+ "step": 1841
+ },
+ {
+ "epoch": 25.586899563318777,
+ "grad_norm": 0.02965722233057022,
+ "learning_rate": 0.0006,
+ "loss": 3.105023145675659,
+ "step": 1842
+ },
+ {
+ "epoch": 25.600873362445416,
+ "grad_norm": 0.027627428993582726,
+ "learning_rate": 0.0006,
+ "loss": 3.1149749755859375,
+ "step": 1843
+ },
+ {
+ "epoch": 25.61484716157205,
+ "grad_norm": 0.026547718793153763,
+ "learning_rate": 0.0006,
+ "loss": 3.061279058456421,
+ "step": 1844
+ },
+ {
+ "epoch": 25.62882096069869,
+ "grad_norm": 0.025937994942069054,
+ "learning_rate": 0.0006,
+ "loss": 3.106267213821411,
+ "step": 1845
+ },
+ {
+ "epoch": 25.64279475982533,
+ "grad_norm": 0.024786189198493958,
+ "learning_rate": 0.0006,
+ "loss": 3.1162233352661133,
+ "step": 1846
+ },
+ {
+ "epoch": 25.656768558951963,
+ "grad_norm": 0.024458372965455055,
+ "learning_rate": 0.0006,
+ "loss": 3.0887248516082764,
+ "step": 1847
+ },
+ {
+ "epoch": 25.670742358078602,
+ "grad_norm": 0.02396211586892605,
+ "learning_rate": 0.0006,
+ "loss": 3.0862269401550293,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68471615720524,
+ "grad_norm": 0.025120655074715614,
+ "learning_rate": 0.0006,
+ "loss": 3.1100106239318848,
+ "step": 1849
+ },
+ {
+ "epoch": 25.69868995633188,
+ "grad_norm": 0.023946302011609077,
+ "learning_rate": 0.0006,
+ "loss": 3.1287240982055664,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712663755458514,
+ "grad_norm": 0.024584904313087463,
+ "learning_rate": 0.0006,
+ "loss": 3.131906270980835,
+ "step": 1851
+ },
+ {
+ "epoch": 25.726637554585153,
+ "grad_norm": 0.024075916036963463,
+ "learning_rate": 0.0006,
+ "loss": 3.1310033798217773,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74061135371179,
+ "grad_norm": 0.024674106389284134,
+ "learning_rate": 0.0006,
+ "loss": 3.098094940185547,
+ "step": 1853
+ },
+ {
+ "epoch": 25.754585152838427,
+ "grad_norm": 0.02386128157377243,
+ "learning_rate": 0.0006,
+ "loss": 3.13789963722229,
+ "step": 1854
+ },
+ {
+ "epoch": 25.768558951965066,
+ "grad_norm": 0.023464003577828407,
+ "learning_rate": 0.0006,
+ "loss": 3.130636215209961,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782532751091704,
+ "grad_norm": 0.022808177396655083,
+ "learning_rate": 0.0006,
+ "loss": 3.0649960041046143,
+ "step": 1856
+ },
+ {
+ "epoch": 25.79650655021834,
+ "grad_norm": 0.02347465232014656,
+ "learning_rate": 0.0006,
+ "loss": 3.1142053604125977,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810480349344978,
+ "grad_norm": 0.022884836420416832,
+ "learning_rate": 0.0006,
+ "loss": 3.135101795196533,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824454148471617,
+ "grad_norm": 0.022401098161935806,
+ "learning_rate": 0.0006,
+ "loss": 3.1598546504974365,
+ "step": 1859
+ },
+ {
+ "epoch": 25.83842794759825,
+ "grad_norm": 0.024321401491761208,
+ "learning_rate": 0.0006,
+ "loss": 3.1175436973571777,
+ "step": 1860
+ },
+ {
+ "epoch": 25.85240174672489,
+ "grad_norm": 0.0246965941041708,
+ "learning_rate": 0.0006,
+ "loss": 3.103957176208496,
+ "step": 1861
+ },
+ {
+ "epoch": 25.86637554585153,
+ "grad_norm": 0.02330162189900875,
+ "learning_rate": 0.0006,
+ "loss": 3.1311264038085938,
+ "step": 1862
+ },
+ {
+ "epoch": 25.880349344978168,
+ "grad_norm": 0.02354249730706215,
+ "learning_rate": 0.0006,
+ "loss": 3.14554500579834,
+ "step": 1863
+ },
+ {
+ "epoch": 25.894323144104803,
+ "grad_norm": 0.023865245282649994,
+ "learning_rate": 0.0006,
+ "loss": 3.124208927154541,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90829694323144,
+ "grad_norm": 0.023171618580818176,
+ "learning_rate": 0.0006,
+ "loss": 3.1324727535247803,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92227074235808,
+ "grad_norm": 0.023055147379636765,
+ "learning_rate": 0.0006,
+ "loss": 3.141408920288086,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936244541484715,
+ "grad_norm": 0.02303205616772175,
+ "learning_rate": 0.0006,
+ "loss": 3.135986804962158,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950218340611354,
+ "grad_norm": 0.02289523370563984,
+ "learning_rate": 0.0006,
+ "loss": 3.1296586990356445,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964192139737992,
+ "grad_norm": 0.024415697902441025,
+ "learning_rate": 0.0006,
+ "loss": 3.119215726852417,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978165938864628,
+ "grad_norm": 0.024061039090156555,
+ "learning_rate": 0.0006,
+ "loss": 3.096515417098999,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992139737991266,
+ "grad_norm": 0.021828658878803253,
+ "learning_rate": 0.0006,
+ "loss": 3.1706314086914062,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.025072937831282616,
+ "learning_rate": 0.0006,
+ "loss": 3.0891950130462646,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 4.104246616363525,
+ "eval_runtime": 50.0171,
+ "eval_samples_per_second": 48.823,
+ "eval_steps_per_second": 1.539,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397379912664,
+ "grad_norm": 0.031121261417865753,
+ "learning_rate": 0.0006,
+ "loss": 2.9661660194396973,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027947598253274,
+ "grad_norm": 0.04691348224878311,
+ "learning_rate": 0.0006,
+ "loss": 2.932932138442993,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041921397379912,
+ "grad_norm": 0.054467298090457916,
+ "learning_rate": 0.0006,
+ "loss": 2.9723329544067383,
+ "step": 1875
+ },
+ {
+ "epoch": 26.05589519650655,
+ "grad_norm": 0.055070292204618454,
+ "learning_rate": 0.0006,
+ "loss": 2.941164016723633,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069868995633186,
+ "grad_norm": 0.06226547062397003,
+ "learning_rate": 0.0006,
+ "loss": 2.9275927543640137,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083842794759825,
+ "grad_norm": 0.08149895071983337,
+ "learning_rate": 0.0006,
+ "loss": 2.9974710941314697,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097816593886463,
+ "grad_norm": 0.07903563231229782,
+ "learning_rate": 0.0006,
+ "loss": 3.028019666671753,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111790393013102,
+ "grad_norm": 0.07048483937978745,
+ "learning_rate": 0.0006,
+ "loss": 3.0385470390319824,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125764192139737,
+ "grad_norm": 0.07622414827346802,
+ "learning_rate": 0.0006,
+ "loss": 3.006513833999634,
+ "step": 1881
+ },
+ {
+ "epoch": 26.139737991266376,
+ "grad_norm": 0.06729200482368469,
+ "learning_rate": 0.0006,
+ "loss": 3.042820453643799,
+ "step": 1882
+ },
+ {
+ "epoch": 26.153711790393015,
+ "grad_norm": 0.0560869500041008,
+ "learning_rate": 0.0006,
+ "loss": 3.0113673210144043,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16768558951965,
+ "grad_norm": 0.05453485623002052,
+ "learning_rate": 0.0006,
+ "loss": 3.005843162536621,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18165938864629,
+ "grad_norm": 0.05410083383321762,
+ "learning_rate": 0.0006,
+ "loss": 3.0122809410095215,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195633187772927,
+ "grad_norm": 0.05099239945411682,
+ "learning_rate": 0.0006,
+ "loss": 3.003960132598877,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209606986899562,
+ "grad_norm": 0.054503440856933594,
+ "learning_rate": 0.0006,
+ "loss": 3.0250349044799805,
+ "step": 1887
+ },
+ {
+ "epoch": 26.2235807860262,
+ "grad_norm": 0.06119848042726517,
+ "learning_rate": 0.0006,
+ "loss": 3.013659954071045,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23755458515284,
+ "grad_norm": 0.05560006573796272,
+ "learning_rate": 0.0006,
+ "loss": 3.045351028442383,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251528384279474,
+ "grad_norm": 0.04513552039861679,
+ "learning_rate": 0.0006,
+ "loss": 3.0176339149475098,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265502183406113,
+ "grad_norm": 0.04880162701010704,
+ "learning_rate": 0.0006,
+ "loss": 2.997415065765381,
+ "step": 1891
+ },
+ {
+ "epoch": 26.27947598253275,
+ "grad_norm": 0.04402848333120346,
+ "learning_rate": 0.0006,
+ "loss": 3.035266876220703,
+ "step": 1892
+ },
+ {
+ "epoch": 26.29344978165939,
+ "grad_norm": 0.040773630142211914,
+ "learning_rate": 0.0006,
+ "loss": 3.0323173999786377,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307423580786025,
+ "grad_norm": 0.03853452205657959,
+ "learning_rate": 0.0006,
+ "loss": 3.0291802883148193,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321397379912664,
+ "grad_norm": 0.037200599908828735,
+ "learning_rate": 0.0006,
+ "loss": 3.0359907150268555,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335371179039303,
+ "grad_norm": 0.035764336585998535,
+ "learning_rate": 0.0006,
+ "loss": 3.017059326171875,
+ "step": 1896
+ },
+ {
+ "epoch": 26.349344978165938,
+ "grad_norm": 0.0344136580824852,
+ "learning_rate": 0.0006,
+ "loss": 3.0438151359558105,
+ "step": 1897
+ },
+ {
+ "epoch": 26.363318777292577,
+ "grad_norm": 0.03413735702633858,
+ "learning_rate": 0.0006,
+ "loss": 3.0627403259277344,
+ "step": 1898
+ },
+ {
+ "epoch": 26.377292576419215,
+ "grad_norm": 0.03260914236307144,
+ "learning_rate": 0.0006,
+ "loss": 2.9989752769470215,
+ "step": 1899
+ },
+ {
+ "epoch": 26.39126637554585,
+ "grad_norm": 0.03044072724878788,
+ "learning_rate": 0.0006,
+ "loss": 3.0424299240112305,
+ "step": 1900
+ },
+ {
+ "epoch": 26.40524017467249,
+ "grad_norm": 0.030227871611714363,
+ "learning_rate": 0.0006,
+ "loss": 3.0220985412597656,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419213973799128,
+ "grad_norm": 0.031268492341041565,
+ "learning_rate": 0.0006,
+ "loss": 3.056239128112793,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433187772925763,
+ "grad_norm": 0.028938250616192818,
+ "learning_rate": 0.0006,
+ "loss": 3.017686367034912,
+ "step": 1903
+ },
+ {
+ "epoch": 26.4471615720524,
+ "grad_norm": 0.02674158848822117,
+ "learning_rate": 0.0006,
+ "loss": 3.066281318664551,
+ "step": 1904
+ },
+ {
+ "epoch": 26.46113537117904,
+ "grad_norm": 0.028296295553445816,
+ "learning_rate": 0.0006,
+ "loss": 3.02766752243042,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475109170305675,
+ "grad_norm": 0.03080872818827629,
+ "learning_rate": 0.0006,
+ "loss": 3.059089422225952,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489082969432314,
+ "grad_norm": 0.028370540589094162,
+ "learning_rate": 0.0006,
+ "loss": 3.0661725997924805,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503056768558952,
+ "grad_norm": 0.025940680876374245,
+ "learning_rate": 0.0006,
+ "loss": 3.050424098968506,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51703056768559,
+ "grad_norm": 0.025786688551306725,
+ "learning_rate": 0.0006,
+ "loss": 3.035883665084839,
+ "step": 1909
+ },
+ {
+ "epoch": 26.531004366812226,
+ "grad_norm": 0.025683339685201645,
+ "learning_rate": 0.0006,
+ "loss": 3.057992935180664,
+ "step": 1910
+ },
+ {
+ "epoch": 26.544978165938865,
+ "grad_norm": 0.028027107939124107,
+ "learning_rate": 0.0006,
+ "loss": 3.047372579574585,
+ "step": 1911
+ },
+ {
+ "epoch": 26.558951965065503,
+ "grad_norm": 0.02833317033946514,
+ "learning_rate": 0.0006,
+ "loss": 3.056609630584717,
+ "step": 1912
+ },
+ {
+ "epoch": 26.57292576419214,
+ "grad_norm": 0.028734203428030014,
+ "learning_rate": 0.0006,
+ "loss": 3.08479642868042,
+ "step": 1913
+ },
+ {
+ "epoch": 26.586899563318777,
+ "grad_norm": 0.027691153809428215,
+ "learning_rate": 0.0006,
+ "loss": 3.0392603874206543,
+ "step": 1914
+ },
+ {
+ "epoch": 26.600873362445416,
+ "grad_norm": 0.0263577438890934,
+ "learning_rate": 0.0006,
+ "loss": 3.0504343509674072,
+ "step": 1915
+ },
+ {
+ "epoch": 26.61484716157205,
+ "grad_norm": 0.026692545041441917,
+ "learning_rate": 0.0006,
+ "loss": 3.100642204284668,
+ "step": 1916
+ },
+ {
+ "epoch": 26.62882096069869,
+ "grad_norm": 0.025303112342953682,
+ "learning_rate": 0.0006,
+ "loss": 3.05635929107666,
+ "step": 1917
+ },
+ {
+ "epoch": 26.64279475982533,
+ "grad_norm": 0.024708664044737816,
+ "learning_rate": 0.0006,
+ "loss": 3.059967517852783,
+ "step": 1918
+ },
+ {
+ "epoch": 26.656768558951963,
+ "grad_norm": 0.02639661729335785,
+ "learning_rate": 0.0006,
+ "loss": 3.0737743377685547,
+ "step": 1919
+ },
+ {
+ "epoch": 26.670742358078602,
+ "grad_norm": 0.025596698746085167,
+ "learning_rate": 0.0006,
+ "loss": 3.067931890487671,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68471615720524,
+ "grad_norm": 0.02229447290301323,
+ "learning_rate": 0.0006,
+ "loss": 3.0820088386535645,
+ "step": 1921
+ },
+ {
+ "epoch": 26.69868995633188,
+ "grad_norm": 0.02375129424035549,
+ "learning_rate": 0.0006,
+ "loss": 3.07956862449646,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712663755458514,
+ "grad_norm": 0.02399134822189808,
+ "learning_rate": 0.0006,
+ "loss": 3.061767101287842,
+ "step": 1923
+ },
+ {
+ "epoch": 26.726637554585153,
+ "grad_norm": 0.024671411141753197,
+ "learning_rate": 0.0006,
+ "loss": 3.1015849113464355,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74061135371179,
+ "grad_norm": 0.024321842938661575,
+ "learning_rate": 0.0006,
+ "loss": 3.0476126670837402,
+ "step": 1925
+ },
+ {
+ "epoch": 26.754585152838427,
+ "grad_norm": 0.023859843611717224,
+ "learning_rate": 0.0006,
+ "loss": 3.0923385620117188,
+ "step": 1926
+ },
+ {
+ "epoch": 26.768558951965066,
+ "grad_norm": 0.024472227320075035,
+ "learning_rate": 0.0006,
+ "loss": 3.0999197959899902,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782532751091704,
+ "grad_norm": 0.02513224445283413,
+ "learning_rate": 0.0006,
+ "loss": 3.067659854888916,
+ "step": 1928
+ },
+ {
+ "epoch": 26.79650655021834,
+ "grad_norm": 0.023755615577101707,
+ "learning_rate": 0.0006,
+ "loss": 3.070265293121338,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810480349344978,
+ "grad_norm": 0.023443203419446945,
+ "learning_rate": 0.0006,
+ "loss": 3.0928702354431152,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824454148471617,
+ "grad_norm": 0.024389786645770073,
+ "learning_rate": 0.0006,
+ "loss": 3.039468288421631,
+ "step": 1931
+ },
+ {
+ "epoch": 26.83842794759825,
+ "grad_norm": 0.021939845755696297,
+ "learning_rate": 0.0006,
+ "loss": 3.0597710609436035,
+ "step": 1932
+ },
+ {
+ "epoch": 26.85240174672489,
+ "grad_norm": 0.022113796323537827,
+ "learning_rate": 0.0006,
+ "loss": 3.078843593597412,
+ "step": 1933
+ },
+ {
+ "epoch": 26.86637554585153,
+ "grad_norm": 0.023516526445746422,
+ "learning_rate": 0.0006,
+ "loss": 3.136680841445923,
+ "step": 1934
+ },
+ {
+ "epoch": 26.880349344978168,
+ "grad_norm": 0.023710910230875015,
+ "learning_rate": 0.0006,
+ "loss": 3.103081703186035,
+ "step": 1935
+ },
+ {
+ "epoch": 26.894323144104803,
+ "grad_norm": 0.023430297151207924,
+ "learning_rate": 0.0006,
+ "loss": 3.098705291748047,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90829694323144,
+ "grad_norm": 0.023761266842484474,
+ "learning_rate": 0.0006,
+ "loss": 3.1277971267700195,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92227074235808,
+ "grad_norm": 0.023715797811746597,
+ "learning_rate": 0.0006,
+ "loss": 3.0877621173858643,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936244541484715,
+ "grad_norm": 0.023883594200015068,
+ "learning_rate": 0.0006,
+ "loss": 3.087163209915161,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950218340611354,
+ "grad_norm": 0.022293508052825928,
+ "learning_rate": 0.0006,
+ "loss": 3.086988925933838,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964192139737992,
+ "grad_norm": 0.022041622549295425,
+ "learning_rate": 0.0006,
+ "loss": 3.1225247383117676,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978165938864628,
+ "grad_norm": 0.021637167781591415,
+ "learning_rate": 0.0006,
+ "loss": 3.0737392902374268,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992139737991266,
+ "grad_norm": 0.02192411944270134,
+ "learning_rate": 0.0006,
+ "loss": 3.104888916015625,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.025614608079195023,
+ "learning_rate": 0.0006,
+ "loss": 3.12424898147583,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 4.125223636627197,
+ "eval_runtime": 50.2001,
+ "eval_samples_per_second": 48.645,
+ "eval_steps_per_second": 1.534,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397379912664,
+ "grad_norm": 0.028453795239329338,
+ "learning_rate": 0.0006,
+ "loss": 2.879258632659912,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027947598253274,
+ "grad_norm": 0.04377718269824982,
+ "learning_rate": 0.0006,
+ "loss": 2.9013819694519043,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041921397379912,
+ "grad_norm": 0.049764763563871384,
+ "learning_rate": 0.0006,
+ "loss": 2.9127326011657715,
+ "step": 1947
+ },
+ {
+ "epoch": 27.05589519650655,
+ "grad_norm": 0.05033150315284729,
+ "learning_rate": 0.0006,
+ "loss": 2.8803203105926514,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069868995633186,
+ "grad_norm": 0.05057684704661369,
+ "learning_rate": 0.0006,
+ "loss": 2.9041876792907715,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083842794759825,
+ "grad_norm": 0.05503581836819649,
+ "learning_rate": 0.0006,
+ "loss": 2.9236111640930176,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097816593886463,
+ "grad_norm": 0.0504646934568882,
+ "learning_rate": 0.0006,
+ "loss": 2.898369789123535,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111790393013102,
+ "grad_norm": 0.05223672091960907,
+ "learning_rate": 0.0006,
+ "loss": 2.922698974609375,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125764192139737,
+ "grad_norm": 0.061617255210876465,
+ "learning_rate": 0.0006,
+ "loss": 2.933682680130005,
+ "step": 1953
+ },
+ {
+ "epoch": 27.139737991266376,
+ "grad_norm": 0.06874233484268188,
+ "learning_rate": 0.0006,
+ "loss": 2.9357151985168457,
+ "step": 1954
+ },
+ {
+ "epoch": 27.153711790393015,
+ "grad_norm": 0.06190113350749016,
+ "learning_rate": 0.0006,
+ "loss": 2.954944610595703,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16768558951965,
+ "grad_norm": 0.05684139207005501,
+ "learning_rate": 0.0006,
+ "loss": 2.9126837253570557,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18165938864629,
+ "grad_norm": 0.06056728586554527,
+ "learning_rate": 0.0006,
+ "loss": 2.9814395904541016,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195633187772927,
+ "grad_norm": 0.056225795298814774,
+ "learning_rate": 0.0006,
+ "loss": 2.991654872894287,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209606986899562,
+ "grad_norm": 0.045878518372774124,
+ "learning_rate": 0.0006,
+ "loss": 3.001042604446411,
+ "step": 1959
+ },
+ {
+ "epoch": 27.2235807860262,
+ "grad_norm": 0.0471920520067215,
+ "learning_rate": 0.0006,
+ "loss": 2.9564008712768555,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23755458515284,
+ "grad_norm": 0.053059689700603485,
+ "learning_rate": 0.0006,
+ "loss": 2.996217727661133,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251528384279474,
+ "grad_norm": 0.0541369765996933,
+ "learning_rate": 0.0006,
+ "loss": 2.9720678329467773,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265502183406113,
+ "grad_norm": 0.047301989048719406,
+ "learning_rate": 0.0006,
+ "loss": 2.9787089824676514,
+ "step": 1963
+ },
+ {
+ "epoch": 27.27947598253275,
+ "grad_norm": 0.046062350273132324,
+ "learning_rate": 0.0006,
+ "loss": 2.9771294593811035,
+ "step": 1964
+ },
+ {
+ "epoch": 27.29344978165939,
+ "grad_norm": 0.05031602457165718,
+ "learning_rate": 0.0006,
+ "loss": 2.9904980659484863,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307423580786025,
+ "grad_norm": 0.049279652535915375,
+ "learning_rate": 0.0006,
+ "loss": 2.994781494140625,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321397379912664,
+ "grad_norm": 0.05007164552807808,
+ "learning_rate": 0.0006,
+ "loss": 3.0293216705322266,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335371179039303,
+ "grad_norm": 0.053599122911691666,
+ "learning_rate": 0.0006,
+ "loss": 2.966653347015381,
+ "step": 1968
+ },
+ {
+ "epoch": 27.349344978165938,
+ "grad_norm": 0.053869765251874924,
+ "learning_rate": 0.0006,
+ "loss": 2.986807107925415,
+ "step": 1969
+ },
+ {
+ "epoch": 27.363318777292577,
+ "grad_norm": 0.049204543232917786,
+ "learning_rate": 0.0006,
+ "loss": 3.035799264907837,
+ "step": 1970
+ },
+ {
+ "epoch": 27.377292576419215,
+ "grad_norm": 0.041741687804460526,
+ "learning_rate": 0.0006,
+ "loss": 3.01177978515625,
+ "step": 1971
+ },
+ {
+ "epoch": 27.39126637554585,
+ "grad_norm": 0.04108894243836403,
+ "learning_rate": 0.0006,
+ "loss": 3.0135087966918945,
+ "step": 1972
+ },
+ {
+ "epoch": 27.40524017467249,
+ "grad_norm": 0.03928737714886665,
+ "learning_rate": 0.0006,
+ "loss": 2.9952547550201416,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419213973799128,
+ "grad_norm": 0.038500797003507614,
+ "learning_rate": 0.0006,
+ "loss": 3.047365188598633,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433187772925763,
+ "grad_norm": 0.03740246221423149,
+ "learning_rate": 0.0006,
+ "loss": 3.033809185028076,
+ "step": 1975
+ },
+ {
+ "epoch": 27.4471615720524,
+ "grad_norm": 0.03386867046356201,
+ "learning_rate": 0.0006,
+ "loss": 3.025137424468994,
+ "step": 1976
+ },
+ {
+ "epoch": 27.46113537117904,
+ "grad_norm": 0.03259620815515518,
+ "learning_rate": 0.0006,
+ "loss": 3.031647205352783,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475109170305675,
+ "grad_norm": 0.03135821223258972,
+ "learning_rate": 0.0006,
+ "loss": 3.038449287414551,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489082969432314,
+ "grad_norm": 0.02891516126692295,
+ "learning_rate": 0.0006,
+ "loss": 3.0067849159240723,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503056768558952,
+ "grad_norm": 0.029571816325187683,
+ "learning_rate": 0.0006,
+ "loss": 3.0450942516326904,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51703056768559,
+ "grad_norm": 0.02915847674012184,
+ "learning_rate": 0.0006,
+ "loss": 3.0238382816314697,
+ "step": 1981
+ },
+ {
+ "epoch": 27.531004366812226,
+ "grad_norm": 0.02730637416243553,
+ "learning_rate": 0.0006,
+ "loss": 2.9970340728759766,
+ "step": 1982
+ },
+ {
+ "epoch": 27.544978165938865,
+ "grad_norm": 0.026363128796219826,
+ "learning_rate": 0.0006,
+ "loss": 3.042269229888916,
+ "step": 1983
+ },
+ {
+ "epoch": 27.558951965065503,
+ "grad_norm": 0.02613256685435772,
+ "learning_rate": 0.0006,
+ "loss": 2.9850640296936035,
+ "step": 1984
+ },
+ {
+ "epoch": 27.57292576419214,
+ "grad_norm": 0.025504328310489655,
+ "learning_rate": 0.0006,
+ "loss": 3.02850341796875,
+ "step": 1985
+ },
+ {
+ "epoch": 27.586899563318777,
+ "grad_norm": 0.025076977908611298,
+ "learning_rate": 0.0006,
+ "loss": 3.022831678390503,
+ "step": 1986
+ },
+ {
+ "epoch": 27.600873362445416,
+ "grad_norm": 0.026498636230826378,
+ "learning_rate": 0.0006,
+ "loss": 3.036193370819092,
+ "step": 1987
+ },
+ {
+ "epoch": 27.61484716157205,
+ "grad_norm": 0.02634165622293949,
+ "learning_rate": 0.0006,
+ "loss": 2.988772392272949,
+ "step": 1988
+ },
+ {
+ "epoch": 27.62882096069869,
+ "grad_norm": 0.02386527881026268,
+ "learning_rate": 0.0006,
+ "loss": 3.0652225017547607,
+ "step": 1989
+ },
+ {
+ "epoch": 27.64279475982533,
+ "grad_norm": 0.025630373507738113,
+ "learning_rate": 0.0006,
+ "loss": 3.025211811065674,
+ "step": 1990
+ },
+ {
+ "epoch": 27.656768558951963,
+ "grad_norm": 0.02564374916255474,
+ "learning_rate": 0.0006,
+ "loss": 3.038477659225464,
+ "step": 1991
+ },
+ {
+ "epoch": 27.670742358078602,
+ "grad_norm": 0.024687733501195908,
+ "learning_rate": 0.0006,
+ "loss": 3.0274953842163086,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68471615720524,
+ "grad_norm": 0.0237992312759161,
+ "learning_rate": 0.0006,
+ "loss": 3.020660638809204,
+ "step": 1993
+ },
+ {
+ "epoch": 27.69868995633188,
+ "grad_norm": 0.024008993059396744,
+ "learning_rate": 0.0006,
+ "loss": 3.0048153400421143,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712663755458514,
+ "grad_norm": 0.024011511355638504,
+ "learning_rate": 0.0006,
+ "loss": 3.028651714324951,
+ "step": 1995
+ },
+ {
+ "epoch": 27.726637554585153,
+ "grad_norm": 0.023767957463860512,
+ "learning_rate": 0.0006,
+ "loss": 3.024357795715332,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74061135371179,
+ "grad_norm": 0.02491922304034233,
+ "learning_rate": 0.0006,
+ "loss": 3.0481948852539062,
+ "step": 1997
+ },
+ {
+ "epoch": 27.754585152838427,
+ "grad_norm": 0.023492073640227318,
+ "learning_rate": 0.0006,
+ "loss": 3.0265281200408936,
+ "step": 1998
+ },
+ {
+ "epoch": 27.768558951965066,
+ "grad_norm": 0.022904539480805397,
+ "learning_rate": 0.0006,
+ "loss": 3.035724401473999,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782532751091704,
+ "grad_norm": 0.02523794211447239,
+ "learning_rate": 0.0006,
+ "loss": 3.0473437309265137,
+ "step": 2000
+ },
+ {
+ "epoch": 27.79650655021834,
+ "grad_norm": 0.02560942806303501,
+ "learning_rate": 0.0006,
+ "loss": 3.031550168991089,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810480349344978,
+ "grad_norm": 0.025517819449305534,
+ "learning_rate": 0.0006,
+ "loss": 3.0686302185058594,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824454148471617,
+ "grad_norm": 0.02572985179722309,
+ "learning_rate": 0.0006,
+ "loss": 3.07204270362854,
+ "step": 2003
+ },
+ {
+ "epoch": 27.83842794759825,
+ "grad_norm": 0.025370420888066292,
+ "learning_rate": 0.0006,
+ "loss": 3.0560848712921143,
+ "step": 2004
+ },
+ {
+ "epoch": 27.85240174672489,
+ "grad_norm": 0.02532627247273922,
+ "learning_rate": 0.0006,
+ "loss": 3.0176045894622803,
+ "step": 2005
+ },
+ {
+ "epoch": 27.86637554585153,
+ "grad_norm": 0.02456071600317955,
+ "learning_rate": 0.0006,
+ "loss": 3.0588455200195312,
+ "step": 2006
+ },
+ {
+ "epoch": 27.880349344978168,
+ "grad_norm": 0.025378121063113213,
+ "learning_rate": 0.0006,
+ "loss": 3.086975574493408,
+ "step": 2007
+ },
+ {
+ "epoch": 27.894323144104803,
+ "grad_norm": 0.024764427915215492,
+ "learning_rate": 0.0006,
+ "loss": 3.0386085510253906,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90829694323144,
+ "grad_norm": 0.024318184703588486,
+ "learning_rate": 0.0006,
+ "loss": 3.0750131607055664,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92227074235808,
+ "grad_norm": 0.023893442004919052,
+ "learning_rate": 0.0006,
+ "loss": 3.0715298652648926,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936244541484715,
+ "grad_norm": 0.023891527205705643,
+ "learning_rate": 0.0006,
+ "loss": 3.063795804977417,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950218340611354,
+ "grad_norm": 0.023563770577311516,
+ "learning_rate": 0.0006,
+ "loss": 3.066619873046875,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964192139737992,
+ "grad_norm": 0.023340724408626556,
+ "learning_rate": 0.0006,
+ "loss": 3.0637826919555664,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978165938864628,
+ "grad_norm": 0.024990880861878395,
+ "learning_rate": 0.0006,
+ "loss": 3.0814566612243652,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992139737991266,
+ "grad_norm": 0.024654274806380272,
+ "learning_rate": 0.0006,
+ "loss": 3.0768063068389893,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.02644839696586132,
+ "learning_rate": 0.0006,
+ "loss": 3.0343258380889893,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 4.1515045166015625,
+ "eval_runtime": 50.2049,
+ "eval_samples_per_second": 48.641,
+ "eval_steps_per_second": 1.534,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397379912664,
+ "grad_norm": 0.03195852413773537,
+ "learning_rate": 0.0006,
+ "loss": 2.834456443786621,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027947598253274,
+ "grad_norm": 0.0489632710814476,
+ "learning_rate": 0.0006,
+ "loss": 2.864487648010254,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041921397379912,
+ "grad_norm": 0.052848201245069504,
+ "learning_rate": 0.0006,
+ "loss": 2.881183624267578,
+ "step": 2019
+ },
+ {
+ "epoch": 28.05589519650655,
+ "grad_norm": 0.05033821240067482,
+ "learning_rate": 0.0006,
+ "loss": 2.8849921226501465,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069868995633186,
+ "grad_norm": 0.04925774410367012,
+ "learning_rate": 0.0006,
+ "loss": 2.8940699100494385,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083842794759825,
+ "grad_norm": 0.048295699059963226,
+ "learning_rate": 0.0006,
+ "loss": 2.8744611740112305,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097816593886463,
+ "grad_norm": 0.05191510170698166,
+ "learning_rate": 0.0006,
+ "loss": 2.8981003761291504,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111790393013102,
+ "grad_norm": 0.054681845009326935,
+ "learning_rate": 0.0006,
+ "loss": 2.894259452819824,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125764192139737,
+ "grad_norm": 0.05124315246939659,
+ "learning_rate": 0.0006,
+ "loss": 2.8902621269226074,
+ "step": 2025
+ },
+ {
+ "epoch": 28.139737991266376,
+ "grad_norm": 0.05269423872232437,
+ "learning_rate": 0.0006,
+ "loss": 2.9419264793395996,
+ "step": 2026
+ },
+ {
+ "epoch": 28.153711790393015,
+ "grad_norm": 0.052072685211896896,
+ "learning_rate": 0.0006,
+ "loss": 2.8902721405029297,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16768558951965,
+ "grad_norm": 0.04868622496724129,
+ "learning_rate": 0.0006,
+ "loss": 2.9544949531555176,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18165938864629,
+ "grad_norm": 0.04919573664665222,
+ "learning_rate": 0.0006,
+ "loss": 2.9149084091186523,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195633187772927,
+ "grad_norm": 0.05350393056869507,
+ "learning_rate": 0.0006,
+ "loss": 2.9301857948303223,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209606986899562,
+ "grad_norm": 0.06072673574090004,
+ "learning_rate": 0.0006,
+ "loss": 2.937542200088501,
+ "step": 2031
+ },
+ {
+ "epoch": 28.2235807860262,
+ "grad_norm": 0.06678931415081024,
+ "learning_rate": 0.0006,
+ "loss": 2.9437155723571777,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23755458515284,
+ "grad_norm": 0.07136489450931549,
+ "learning_rate": 0.0006,
+ "loss": 2.9720969200134277,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251528384279474,
+ "grad_norm": 0.06340529769659042,
+ "learning_rate": 0.0006,
+ "loss": 2.957184076309204,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265502183406113,
+ "grad_norm": 0.05951949581503868,
+ "learning_rate": 0.0006,
+ "loss": 2.9483275413513184,
+ "step": 2035
+ },
+ {
+ "epoch": 28.27947598253275,
+ "grad_norm": 0.05508637800812721,
+ "learning_rate": 0.0006,
+ "loss": 2.944632053375244,
+ "step": 2036
+ },
+ {
+ "epoch": 28.29344978165939,
+ "grad_norm": 0.04451477900147438,
+ "learning_rate": 0.0006,
+ "loss": 2.9538841247558594,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307423580786025,
+ "grad_norm": 0.04283531755208969,
+ "learning_rate": 0.0006,
+ "loss": 2.942497730255127,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321397379912664,
+ "grad_norm": 0.04256067052483559,
+ "learning_rate": 0.0006,
+ "loss": 2.9589486122131348,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335371179039303,
+ "grad_norm": 0.040724314749240875,
+ "learning_rate": 0.0006,
+ "loss": 2.9297492504119873,
+ "step": 2040
+ },
+ {
+ "epoch": 28.349344978165938,
+ "grad_norm": 0.035998500883579254,
+ "learning_rate": 0.0006,
+ "loss": 2.921250820159912,
+ "step": 2041
+ },
+ {
+ "epoch": 28.363318777292577,
+ "grad_norm": 0.03447495028376579,
+ "learning_rate": 0.0006,
+ "loss": 2.9901719093322754,
+ "step": 2042
+ },
+ {
+ "epoch": 28.377292576419215,
+ "grad_norm": 0.03475875034928322,
+ "learning_rate": 0.0006,
+ "loss": 2.975034236907959,
+ "step": 2043
+ },
+ {
+ "epoch": 28.39126637554585,
+ "grad_norm": 0.035763081163167953,
+ "learning_rate": 0.0006,
+ "loss": 2.9198880195617676,
+ "step": 2044
+ },
+ {
+ "epoch": 28.40524017467249,
+ "grad_norm": 0.03533506393432617,
+ "learning_rate": 0.0006,
+ "loss": 2.954592704772949,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419213973799128,
+ "grad_norm": 0.03279201313853264,
+ "learning_rate": 0.0006,
+ "loss": 2.9453115463256836,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433187772925763,
+ "grad_norm": 0.031335968524217606,
+ "learning_rate": 0.0006,
+ "loss": 2.9707398414611816,
+ "step": 2047
+ },
+ {
+ "epoch": 28.4471615720524,
+ "grad_norm": 0.028612999245524406,
+ "learning_rate": 0.0006,
+ "loss": 2.9935314655303955,
+ "step": 2048
+ },
+ {
+ "epoch": 28.46113537117904,
+ "grad_norm": 0.027722638100385666,
+ "learning_rate": 0.0006,
+ "loss": 2.937558650970459,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475109170305675,
+ "grad_norm": 0.026583192870020866,
+ "learning_rate": 0.0006,
+ "loss": 2.9509410858154297,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489082969432314,
+ "grad_norm": 0.026762869209051132,
+ "learning_rate": 0.0006,
+ "loss": 3.011293888092041,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503056768558952,
+ "grad_norm": 0.027254173532128334,
+ "learning_rate": 0.0006,
+ "loss": 2.9635009765625,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51703056768559,
+ "grad_norm": 0.028218677267432213,
+ "learning_rate": 0.0006,
+ "loss": 2.9973299503326416,
+ "step": 2053
+ },
+ {
+ "epoch": 28.531004366812226,
+ "grad_norm": 0.028099076822400093,
+ "learning_rate": 0.0006,
+ "loss": 2.980783462524414,
+ "step": 2054
+ },
+ {
+ "epoch": 28.544978165938865,
+ "grad_norm": 0.02740541286766529,
+ "learning_rate": 0.0006,
+ "loss": 3.0181171894073486,
+ "step": 2055
+ },
+ {
+ "epoch": 28.558951965065503,
+ "grad_norm": 0.028045643121004105,
+ "learning_rate": 0.0006,
+ "loss": 2.998990774154663,
+ "step": 2056
+ },
+ {
+ "epoch": 28.57292576419214,
+ "grad_norm": 0.026816850528120995,
+ "learning_rate": 0.0006,
+ "loss": 3.0068860054016113,
+ "step": 2057
+ },
+ {
+ "epoch": 28.586899563318777,
+ "grad_norm": 0.025382595136761665,
+ "learning_rate": 0.0006,
+ "loss": 2.9418373107910156,
+ "step": 2058
+ },
+ {
+ "epoch": 28.600873362445416,
+ "grad_norm": 0.026060424745082855,
+ "learning_rate": 0.0006,
+ "loss": 2.936776638031006,
+ "step": 2059
+ },
+ {
+ "epoch": 28.61484716157205,
+ "grad_norm": 0.025853872299194336,
+ "learning_rate": 0.0006,
+ "loss": 3.0203466415405273,
+ "step": 2060
+ },
+ {
+ "epoch": 28.62882096069869,
+ "grad_norm": 0.02508033812046051,
+ "learning_rate": 0.0006,
+ "loss": 2.9945011138916016,
+ "step": 2061
+ },
+ {
+ "epoch": 28.64279475982533,
+ "grad_norm": 0.025970350950956345,
+ "learning_rate": 0.0006,
+ "loss": 2.9931695461273193,
+ "step": 2062
+ },
+ {
+ "epoch": 28.656768558951963,
+ "grad_norm": 0.025476455688476562,
+ "learning_rate": 0.0006,
+ "loss": 2.957230567932129,
+ "step": 2063
+ },
+ {
+ "epoch": 28.670742358078602,
+ "grad_norm": 0.026332074776291847,
+ "learning_rate": 0.0006,
+ "loss": 3.0264182090759277,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68471615720524,
+ "grad_norm": 0.025519322603940964,
+ "learning_rate": 0.0006,
+ "loss": 3.0092458724975586,
+ "step": 2065
+ },
+ {
+ "epoch": 28.69868995633188,
+ "grad_norm": 0.024840593338012695,
+ "learning_rate": 0.0006,
+ "loss": 2.986766815185547,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712663755458514,
+ "grad_norm": 0.02441803738474846,
+ "learning_rate": 0.0006,
+ "loss": 2.9874420166015625,
+ "step": 2067
+ },
+ {
+ "epoch": 28.726637554585153,
+ "grad_norm": 0.02630285918712616,
+ "learning_rate": 0.0006,
+ "loss": 3.0578904151916504,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74061135371179,
+ "grad_norm": 0.026446865871548653,
+ "learning_rate": 0.0006,
+ "loss": 3.0013539791107178,
+ "step": 2069
+ },
+ {
+ "epoch": 28.754585152838427,
+ "grad_norm": 0.02450861781835556,
+ "learning_rate": 0.0006,
+ "loss": 3.0490686893463135,
+ "step": 2070
+ },
+ {
+ "epoch": 28.768558951965066,
+ "grad_norm": 0.02672298066318035,
+ "learning_rate": 0.0006,
+ "loss": 3.020845413208008,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782532751091704,
+ "grad_norm": 0.025726495310664177,
+ "learning_rate": 0.0006,
+ "loss": 3.0180835723876953,
+ "step": 2072
+ },
+ {
+ "epoch": 28.79650655021834,
+ "grad_norm": 0.026580246165394783,
+ "learning_rate": 0.0006,
+ "loss": 2.991779327392578,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810480349344978,
+ "grad_norm": 0.02619314193725586,
+ "learning_rate": 0.0006,
+ "loss": 2.963550329208374,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824454148471617,
+ "grad_norm": 0.02470521256327629,
+ "learning_rate": 0.0006,
+ "loss": 2.9849443435668945,
+ "step": 2075
+ },
+ {
+ "epoch": 28.83842794759825,
+ "grad_norm": 0.02675030194222927,
+ "learning_rate": 0.0006,
+ "loss": 2.996417284011841,
+ "step": 2076
+ },
+ {
+ "epoch": 28.85240174672489,
+ "grad_norm": 0.02626962400972843,
+ "learning_rate": 0.0006,
+ "loss": 3.037600040435791,
+ "step": 2077
+ },
+ {
+ "epoch": 28.86637554585153,
+ "grad_norm": 0.025189539417624474,
+ "learning_rate": 0.0006,
+ "loss": 3.0162289142608643,
+ "step": 2078
+ },
+ {
+ "epoch": 28.880349344978168,
+ "grad_norm": 0.023836355656385422,
+ "learning_rate": 0.0006,
+ "loss": 3.0182363986968994,
+ "step": 2079
+ },
+ {
+ "epoch": 28.894323144104803,
+ "grad_norm": 0.025875985622406006,
+ "learning_rate": 0.0006,
+ "loss": 3.0712671279907227,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90829694323144,
+ "grad_norm": 0.025787588208913803,
+ "learning_rate": 0.0006,
+ "loss": 3.060253858566284,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92227074235808,
+ "grad_norm": 0.025029966607689857,
+ "learning_rate": 0.0006,
+ "loss": 3.0385570526123047,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936244541484715,
+ "grad_norm": 0.024807918816804886,
+ "learning_rate": 0.0006,
+ "loss": 3.030642509460449,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950218340611354,
+ "grad_norm": 0.02444799616932869,
+ "learning_rate": 0.0006,
+ "loss": 3.025789260864258,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964192139737992,
+ "grad_norm": 0.02498369850218296,
+ "learning_rate": 0.0006,
+ "loss": 3.0041980743408203,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978165938864628,
+ "grad_norm": 0.02519051544368267,
+ "learning_rate": 0.0006,
+ "loss": 3.0126523971557617,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992139737991266,
+ "grad_norm": 0.026262952014803886,
+ "learning_rate": 0.0006,
+ "loss": 3.036421775817871,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.028925646096467972,
+ "learning_rate": 0.0006,
+ "loss": 2.9996514320373535,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 4.17269229888916,
+ "eval_runtime": 54.6168,
+ "eval_samples_per_second": 44.711,
+ "eval_steps_per_second": 1.41,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397379912664,
+ "grad_norm": 0.033029936254024506,
+ "learning_rate": 0.0006,
+ "loss": 2.8362483978271484,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027947598253274,
+ "grad_norm": 0.04538845643401146,
+ "learning_rate": 0.0006,
+ "loss": 2.8311057090759277,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041921397379912,
+ "grad_norm": 0.046482112258672714,
+ "learning_rate": 0.0006,
+ "loss": 2.851710319519043,
+ "step": 2091
+ },
+ {
+ "epoch": 29.05589519650655,
+ "grad_norm": 0.04495995491743088,
+ "learning_rate": 0.0006,
+ "loss": 2.8197240829467773,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069868995633186,
+ "grad_norm": 0.043497391045093536,
+ "learning_rate": 0.0006,
+ "loss": 2.835160255432129,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083842794759825,
+ "grad_norm": 0.042180925607681274,
+ "learning_rate": 0.0006,
+ "loss": 2.814297914505005,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097816593886463,
+ "grad_norm": 0.046564772725105286,
+ "learning_rate": 0.0006,
+ "loss": 2.8432681560516357,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111790393013102,
+ "grad_norm": 0.05109454691410065,
+ "learning_rate": 0.0006,
+ "loss": 2.8209657669067383,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125764192139737,
+ "grad_norm": 0.054633282124996185,
+ "learning_rate": 0.0006,
+ "loss": 2.860410213470459,
+ "step": 2097
+ },
+ {
+ "epoch": 29.139737991266376,
+ "grad_norm": 0.05523914843797684,
+ "learning_rate": 0.0006,
+ "loss": 2.850083827972412,
+ "step": 2098
+ },
+ {
+ "epoch": 29.153711790393015,
+ "grad_norm": 0.055773504078388214,
+ "learning_rate": 0.0006,
+ "loss": 2.8240323066711426,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16768558951965,
+ "grad_norm": 0.054498568177223206,
+ "learning_rate": 0.0006,
+ "loss": 2.8628149032592773,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18165938864629,
+ "grad_norm": 0.053030889481306076,
+ "learning_rate": 0.0006,
+ "loss": 2.8365299701690674,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195633187772927,
+ "grad_norm": 0.05545743182301521,
+ "learning_rate": 0.0006,
+ "loss": 2.884146213531494,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209606986899562,
+ "grad_norm": 0.057719431817531586,
+ "learning_rate": 0.0006,
+ "loss": 2.8857107162475586,
+ "step": 2103
+ },
+ {
+ "epoch": 29.2235807860262,
+ "grad_norm": 0.060189153999090195,
+ "learning_rate": 0.0006,
+ "loss": 2.896878242492676,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23755458515284,
+ "grad_norm": 0.06222223490476608,
+ "learning_rate": 0.0006,
+ "loss": 2.883173704147339,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251528384279474,
+ "grad_norm": 0.06780146062374115,
+ "learning_rate": 0.0006,
+ "loss": 2.926743745803833,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265502183406113,
+ "grad_norm": 0.06533487886190414,
+ "learning_rate": 0.0006,
+ "loss": 2.9010519981384277,
+ "step": 2107
+ },
+ {
+ "epoch": 29.27947598253275,
+ "grad_norm": 0.05744635686278343,
+ "learning_rate": 0.0006,
+ "loss": 2.922598123550415,
+ "step": 2108
+ },
+ {
+ "epoch": 29.29344978165939,
+ "grad_norm": 0.05649896338582039,
+ "learning_rate": 0.0006,
+ "loss": 2.905834674835205,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307423580786025,
+ "grad_norm": 0.06080562621355057,
+ "learning_rate": 0.0006,
+ "loss": 2.92208194732666,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321397379912664,
+ "grad_norm": 0.059314578771591187,
+ "learning_rate": 0.0006,
+ "loss": 2.9546284675598145,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335371179039303,
+ "grad_norm": 0.047971680760383606,
+ "learning_rate": 0.0006,
+ "loss": 2.9306116104125977,
+ "step": 2112
+ },
+ {
+ "epoch": 29.349344978165938,
+ "grad_norm": 0.041513457894325256,
+ "learning_rate": 0.0006,
+ "loss": 2.885359287261963,
+ "step": 2113
+ },
+ {
+ "epoch": 29.363318777292577,
+ "grad_norm": 0.044294606894254684,
+ "learning_rate": 0.0006,
+ "loss": 2.923374652862549,
+ "step": 2114
+ },
+ {
+ "epoch": 29.377292576419215,
+ "grad_norm": 0.0417361743748188,
+ "learning_rate": 0.0006,
+ "loss": 2.88425350189209,
+ "step": 2115
+ },
+ {
+ "epoch": 29.39126637554585,
+ "grad_norm": 0.041468895971775055,
+ "learning_rate": 0.0006,
+ "loss": 2.9643259048461914,
+ "step": 2116
+ },
+ {
+ "epoch": 29.40524017467249,
+ "grad_norm": 0.04073813930153847,
+ "learning_rate": 0.0006,
+ "loss": 2.95505952835083,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419213973799128,
+ "grad_norm": 0.039006855338811874,
+ "learning_rate": 0.0006,
+ "loss": 2.9500551223754883,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433187772925763,
+ "grad_norm": 0.035800445824861526,
+ "learning_rate": 0.0006,
+ "loss": 2.954481601715088,
+ "step": 2119
+ },
+ {
+ "epoch": 29.4471615720524,
+ "grad_norm": 0.03534843400120735,
+ "learning_rate": 0.0006,
+ "loss": 2.949183940887451,
+ "step": 2120
+ },
+ {
+ "epoch": 29.46113537117904,
+ "grad_norm": 0.03376666083931923,
+ "learning_rate": 0.0006,
+ "loss": 2.9482197761535645,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475109170305675,
+ "grad_norm": 0.032544493675231934,
+ "learning_rate": 0.0006,
+ "loss": 2.9613194465637207,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489082969432314,
+ "grad_norm": 0.02941369079053402,
+ "learning_rate": 0.0006,
+ "loss": 2.9054269790649414,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503056768558952,
+ "grad_norm": 0.030306288972496986,
+ "learning_rate": 0.0006,
+ "loss": 2.955117702484131,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51703056768559,
+ "grad_norm": 0.029188739135861397,
+ "learning_rate": 0.0006,
+ "loss": 2.9344658851623535,
+ "step": 2125
+ },
+ {
+ "epoch": 29.531004366812226,
+ "grad_norm": 0.028544921427965164,
+ "learning_rate": 0.0006,
+ "loss": 2.9878439903259277,
+ "step": 2126
+ },
+ {
+ "epoch": 29.544978165938865,
+ "grad_norm": 0.029478471726179123,
+ "learning_rate": 0.0006,
+ "loss": 2.9671640396118164,
+ "step": 2127
+ },
+ {
+ "epoch": 29.558951965065503,
+ "grad_norm": 0.029838059097528458,
+ "learning_rate": 0.0006,
+ "loss": 2.9319276809692383,
+ "step": 2128
+ },
+ {
+ "epoch": 29.57292576419214,
+ "grad_norm": 0.031277935951948166,
+ "learning_rate": 0.0006,
+ "loss": 2.9517064094543457,
+ "step": 2129
+ },
+ {
+ "epoch": 29.586899563318777,
+ "grad_norm": 0.028920911252498627,
+ "learning_rate": 0.0006,
+ "loss": 3.0010836124420166,
+ "step": 2130
+ },
+ {
+ "epoch": 29.600873362445416,
+ "grad_norm": 0.028258386999368668,
+ "learning_rate": 0.0006,
+ "loss": 2.9552881717681885,
+ "step": 2131
+ },
+ {
+ "epoch": 29.61484716157205,
+ "grad_norm": 0.027709737420082092,
+ "learning_rate": 0.0006,
+ "loss": 2.9699630737304688,
+ "step": 2132
+ },
+ {
+ "epoch": 29.62882096069869,
+ "grad_norm": 0.027644682675600052,
+ "learning_rate": 0.0006,
+ "loss": 2.966932535171509,
+ "step": 2133
+ },
+ {
+ "epoch": 29.64279475982533,
+ "grad_norm": 0.026919284835457802,
+ "learning_rate": 0.0006,
+ "loss": 2.9580016136169434,
+ "step": 2134
+ },
+ {
+ "epoch": 29.656768558951963,
+ "grad_norm": 0.025746364146471024,
+ "learning_rate": 0.0006,
+ "loss": 2.9671740531921387,
+ "step": 2135
+ },
+ {
+ "epoch": 29.670742358078602,
+ "grad_norm": 0.026482900604605675,
+ "learning_rate": 0.0006,
+ "loss": 2.9920620918273926,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68471615720524,
+ "grad_norm": 0.028580941259860992,
+ "learning_rate": 0.0006,
+ "loss": 2.998594045639038,
+ "step": 2137
+ },
+ {
+ "epoch": 29.69868995633188,
+ "grad_norm": 0.027317512780427933,
+ "learning_rate": 0.0006,
+ "loss": 2.978580951690674,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712663755458514,
+ "grad_norm": 0.026336928829550743,
+ "learning_rate": 0.0006,
+ "loss": 2.9933362007141113,
+ "step": 2139
+ },
+ {
+ "epoch": 29.726637554585153,
+ "grad_norm": 0.025520015507936478,
+ "learning_rate": 0.0006,
+ "loss": 2.9906885623931885,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74061135371179,
+ "grad_norm": 0.024093175306916237,
+ "learning_rate": 0.0006,
+ "loss": 2.95902419090271,
+ "step": 2141
+ },
+ {
+ "epoch": 29.754585152838427,
+ "grad_norm": 0.024410322308540344,
+ "learning_rate": 0.0006,
+ "loss": 2.96647047996521,
+ "step": 2142
+ },
+ {
+ "epoch": 29.768558951965066,
+ "grad_norm": 0.024991247802972794,
+ "learning_rate": 0.0006,
+ "loss": 2.9643096923828125,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782532751091704,
+ "grad_norm": 0.025067847222089767,
+ "learning_rate": 0.0006,
+ "loss": 3.0112953186035156,
+ "step": 2144
+ },
+ {
+ "epoch": 29.79650655021834,
+ "grad_norm": 0.025362879037857056,
+ "learning_rate": 0.0006,
+ "loss": 2.971529483795166,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810480349344978,
+ "grad_norm": 0.024684470146894455,
+ "learning_rate": 0.0006,
+ "loss": 2.989647388458252,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824454148471617,
+ "grad_norm": 0.02385212853550911,
+ "learning_rate": 0.0006,
+ "loss": 2.977238178253174,
+ "step": 2147
+ },
+ {
+ "epoch": 29.83842794759825,
+ "grad_norm": 0.02527615986764431,
+ "learning_rate": 0.0006,
+ "loss": 2.9751431941986084,
+ "step": 2148
+ },
+ {
+ "epoch": 29.85240174672489,
+ "grad_norm": 0.024217894300818443,
+ "learning_rate": 0.0006,
+ "loss": 2.9607608318328857,
+ "step": 2149
+ },
+ {
+ "epoch": 29.86637554585153,
+ "grad_norm": 0.0244144294410944,
+ "learning_rate": 0.0006,
+ "loss": 3.0002236366271973,
+ "step": 2150
+ },
+ {
+ "epoch": 29.880349344978168,
+ "grad_norm": 0.026171889156103134,
+ "learning_rate": 0.0006,
+ "loss": 2.9608335494995117,
+ "step": 2151
+ },
+ {
+ "epoch": 29.894323144104803,
+ "grad_norm": 0.025675922632217407,
+ "learning_rate": 0.0006,
+ "loss": 3.0153677463531494,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90829694323144,
+ "grad_norm": 0.026269402354955673,
+ "learning_rate": 0.0006,
+ "loss": 2.990961790084839,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92227074235808,
+ "grad_norm": 0.025278599932789803,
+ "learning_rate": 0.0006,
+ "loss": 2.9858884811401367,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936244541484715,
+ "grad_norm": 0.02442092075943947,
+ "learning_rate": 0.0006,
+ "loss": 2.981938123703003,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950218340611354,
+ "grad_norm": 0.025676338002085686,
+ "learning_rate": 0.0006,
+ "loss": 3.007082462310791,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964192139737992,
+ "grad_norm": 0.02556379698216915,
+ "learning_rate": 0.0006,
+ "loss": 3.030315399169922,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978165938864628,
+ "grad_norm": 0.027025923132896423,
+ "learning_rate": 0.0006,
+ "loss": 2.9751744270324707,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992139737991266,
+ "grad_norm": 0.027581017464399338,
+ "learning_rate": 0.0006,
+ "loss": 3.0025429725646973,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.029440129175782204,
+ "learning_rate": 0.0006,
+ "loss": 2.9936294555664062,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 4.204888343811035,
+ "eval_runtime": 49.9747,
+ "eval_samples_per_second": 48.865,
+ "eval_steps_per_second": 1.541,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397379912664,
+ "grad_norm": 0.03082278184592724,
+ "learning_rate": 0.0006,
+ "loss": 2.790925979614258,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027947598253274,
+ "grad_norm": 0.04583689942955971,
+ "learning_rate": 0.0006,
+ "loss": 2.7823095321655273,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041921397379912,
+ "grad_norm": 0.05001630261540413,
+ "learning_rate": 0.0006,
+ "loss": 2.776362895965576,
+ "step": 2163
+ },
+ {
+ "epoch": 30.05589519650655,
+ "grad_norm": 0.04742066189646721,
+ "learning_rate": 0.0006,
+ "loss": 2.803783893585205,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069868995633186,
+ "grad_norm": 0.048882510513067245,
+ "learning_rate": 0.0006,
+ "loss": 2.8219070434570312,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083842794759825,
+ "grad_norm": 0.05513570457696915,
+ "learning_rate": 0.0006,
+ "loss": 2.833082437515259,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097816593886463,
+ "grad_norm": 0.05891067534685135,
+ "learning_rate": 0.0006,
+ "loss": 2.8083062171936035,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111790393013102,
+ "grad_norm": 0.06333944201469421,
+ "learning_rate": 0.0006,
+ "loss": 2.8162131309509277,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125764192139737,
+ "grad_norm": 0.06515136361122131,
+ "learning_rate": 0.0006,
+ "loss": 2.8343942165374756,
+ "step": 2169
+ },
+ {
+ "epoch": 30.139737991266376,
+ "grad_norm": 0.06689856946468353,
+ "learning_rate": 0.0006,
+ "loss": 2.837913990020752,
+ "step": 2170
+ },
+ {
+ "epoch": 30.153711790393015,
+ "grad_norm": 0.0659976378083229,
+ "learning_rate": 0.0006,
+ "loss": 2.816307306289673,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16768558951965,
+ "grad_norm": 0.05694719776511192,
+ "learning_rate": 0.0006,
+ "loss": 2.815828323364258,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18165938864629,
+ "grad_norm": 0.057003188878297806,
+ "learning_rate": 0.0006,
+ "loss": 2.8621420860290527,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195633187772927,
+ "grad_norm": 0.061041459441185,
+ "learning_rate": 0.0006,
+ "loss": 2.8613672256469727,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209606986899562,
+ "grad_norm": 0.06092670559883118,
+ "learning_rate": 0.0006,
+ "loss": 2.871680498123169,
+ "step": 2175
+ },
+ {
+ "epoch": 30.2235807860262,
+ "grad_norm": 0.06369971483945847,
+ "learning_rate": 0.0006,
+ "loss": 2.8823862075805664,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23755458515284,
+ "grad_norm": 0.06887379288673401,
+ "learning_rate": 0.0006,
+ "loss": 2.869670867919922,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251528384279474,
+ "grad_norm": 0.07047348469495773,
+ "learning_rate": 0.0006,
+ "loss": 2.8879926204681396,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265502183406113,
+ "grad_norm": 0.06639240682125092,
+ "learning_rate": 0.0006,
+ "loss": 2.8918027877807617,
+ "step": 2179
+ },
+ {
+ "epoch": 30.27947598253275,
+ "grad_norm": 0.06433828920125961,
+ "learning_rate": 0.0006,
+ "loss": 2.898557662963867,
+ "step": 2180
+ },
+ {
+ "epoch": 30.29344978165939,
+ "grad_norm": 0.05627095326781273,
+ "learning_rate": 0.0006,
+ "loss": 2.952359199523926,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307423580786025,
+ "grad_norm": 0.052996374666690826,
+ "learning_rate": 0.0006,
+ "loss": 2.8907530307769775,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321397379912664,
+ "grad_norm": 0.05459262803196907,
+ "learning_rate": 0.0006,
+ "loss": 2.920314073562622,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335371179039303,
+ "grad_norm": 0.05082414671778679,
+ "learning_rate": 0.0006,
+ "loss": 2.930004596710205,
+ "step": 2184
+ },
+ {
+ "epoch": 30.349344978165938,
+ "grad_norm": 0.04854968935251236,
+ "learning_rate": 0.0006,
+ "loss": 2.909700632095337,
+ "step": 2185
+ },
+ {
+ "epoch": 30.363318777292577,
+ "grad_norm": 0.046354763209819794,
+ "learning_rate": 0.0006,
+ "loss": 2.8992667198181152,
+ "step": 2186
+ },
+ {
+ "epoch": 30.377292576419215,
+ "grad_norm": 0.04162409156560898,
+ "learning_rate": 0.0006,
+ "loss": 2.8841357231140137,
+ "step": 2187
+ },
+ {
+ "epoch": 30.39126637554585,
+ "grad_norm": 0.0407755970954895,
+ "learning_rate": 0.0006,
+ "loss": 2.8838725090026855,
+ "step": 2188
+ },
+ {
+ "epoch": 30.40524017467249,
+ "grad_norm": 0.04091903567314148,
+ "learning_rate": 0.0006,
+ "loss": 2.9465415477752686,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419213973799128,
+ "grad_norm": 0.037343017756938934,
+ "learning_rate": 0.0006,
+ "loss": 2.9277544021606445,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433187772925763,
+ "grad_norm": 0.03364052250981331,
+ "learning_rate": 0.0006,
+ "loss": 2.9258010387420654,
+ "step": 2191
+ },
+ {
+ "epoch": 30.4471615720524,
+ "grad_norm": 0.033522892743349075,
+ "learning_rate": 0.0006,
+ "loss": 2.894564628601074,
+ "step": 2192
+ },
+ {
+ "epoch": 30.46113537117904,
+ "grad_norm": 0.03192823752760887,
+ "learning_rate": 0.0006,
+ "loss": 2.9259095191955566,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475109170305675,
+ "grad_norm": 0.030643166974186897,
+ "learning_rate": 0.0006,
+ "loss": 2.9532039165496826,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489082969432314,
+ "grad_norm": 0.030904730781912804,
+ "learning_rate": 0.0006,
+ "loss": 2.9105587005615234,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503056768558952,
+ "grad_norm": 0.029073279350996017,
+ "learning_rate": 0.0006,
+ "loss": 2.882645606994629,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51703056768559,
+ "grad_norm": 0.03068859502673149,
+ "learning_rate": 0.0006,
+ "loss": 2.972698211669922,
+ "step": 2197
+ },
+ {
+ "epoch": 30.531004366812226,
+ "grad_norm": 0.030377032235264778,
+ "learning_rate": 0.0006,
+ "loss": 2.903886318206787,
+ "step": 2198
+ },
+ {
+ "epoch": 30.544978165938865,
+ "grad_norm": 0.030634265393018723,
+ "learning_rate": 0.0006,
+ "loss": 2.867248058319092,
+ "step": 2199
+ },
+ {
+ "epoch": 30.558951965065503,
+ "grad_norm": 0.029660150408744812,
+ "learning_rate": 0.0006,
+ "loss": 2.925515651702881,
+ "step": 2200
+ },
+ {
+ "epoch": 30.57292576419214,
+ "grad_norm": 0.029679421335458755,
+ "learning_rate": 0.0006,
+ "loss": 2.9485011100769043,
+ "step": 2201
+ },
+ {
+ "epoch": 30.586899563318777,
+ "grad_norm": 0.029809271916747093,
+ "learning_rate": 0.0006,
+ "loss": 2.9528913497924805,
+ "step": 2202
+ },
+ {
+ "epoch": 30.600873362445416,
+ "grad_norm": 0.028424153104424477,
+ "learning_rate": 0.0006,
+ "loss": 2.92244291305542,
+ "step": 2203
+ },
+ {
+ "epoch": 30.61484716157205,
+ "grad_norm": 0.02718108892440796,
+ "learning_rate": 0.0006,
+ "loss": 2.9047327041625977,
+ "step": 2204
+ },
+ {
+ "epoch": 30.62882096069869,
+ "grad_norm": 0.028654800727963448,
+ "learning_rate": 0.0006,
+ "loss": 2.926530361175537,
+ "step": 2205
+ },
+ {
+ "epoch": 30.64279475982533,
+ "grad_norm": 0.027802037075161934,
+ "learning_rate": 0.0006,
+ "loss": 2.9279685020446777,
+ "step": 2206
+ },
+ {
+ "epoch": 30.656768558951963,
+ "grad_norm": 0.026860002428293228,
+ "learning_rate": 0.0006,
+ "loss": 2.918400287628174,
+ "step": 2207
+ },
+ {
+ "epoch": 30.670742358078602,
+ "grad_norm": 0.026720909401774406,
+ "learning_rate": 0.0006,
+ "loss": 2.907062530517578,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68471615720524,
+ "grad_norm": 0.026722557842731476,
+ "learning_rate": 0.0006,
+ "loss": 2.9302074909210205,
+ "step": 2209
+ },
+ {
+ "epoch": 30.69868995633188,
+ "grad_norm": 0.026495203375816345,
+ "learning_rate": 0.0006,
+ "loss": 2.914985418319702,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712663755458514,
+ "grad_norm": 0.025444738566875458,
+ "learning_rate": 0.0006,
+ "loss": 2.9205482006073,
+ "step": 2211
+ },
+ {
+ "epoch": 30.726637554585153,
+ "grad_norm": 0.02570643275976181,
+ "learning_rate": 0.0006,
+ "loss": 2.9142990112304688,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74061135371179,
+ "grad_norm": 0.025516517460346222,
+ "learning_rate": 0.0006,
+ "loss": 2.9324023723602295,
+ "step": 2213
+ },
+ {
+ "epoch": 30.754585152838427,
+ "grad_norm": 0.02481970377266407,
+ "learning_rate": 0.0006,
+ "loss": 2.9404819011688232,
+ "step": 2214
+ },
+ {
+ "epoch": 30.768558951965066,
+ "grad_norm": 0.024804186075925827,
+ "learning_rate": 0.0006,
+ "loss": 2.9476962089538574,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782532751091704,
+ "grad_norm": 0.02516373060643673,
+ "learning_rate": 0.0006,
+ "loss": 2.9525418281555176,
+ "step": 2216
+ },
+ {
+ "epoch": 30.79650655021834,
+ "grad_norm": 0.02501778118312359,
+ "learning_rate": 0.0006,
+ "loss": 2.953561782836914,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810480349344978,
+ "grad_norm": 0.025414010509848595,
+ "learning_rate": 0.0006,
+ "loss": 2.962048292160034,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824454148471617,
+ "grad_norm": 0.024972591549158096,
+ "learning_rate": 0.0006,
+ "loss": 2.9431703090667725,
+ "step": 2219
+ },
+ {
+ "epoch": 30.83842794759825,
+ "grad_norm": 0.024618400260806084,
+ "learning_rate": 0.0006,
+ "loss": 2.976715087890625,
+ "step": 2220
+ },
+ {
+ "epoch": 30.85240174672489,
+ "grad_norm": 0.025781305506825447,
+ "learning_rate": 0.0006,
+ "loss": 2.9464545249938965,
+ "step": 2221
+ },
+ {
+ "epoch": 30.86637554585153,
+ "grad_norm": 0.025492621585726738,
+ "learning_rate": 0.0006,
+ "loss": 2.9683992862701416,
+ "step": 2222
+ },
+ {
+ "epoch": 30.880349344978168,
+ "grad_norm": 0.024332989007234573,
+ "learning_rate": 0.0006,
+ "loss": 2.936504364013672,
+ "step": 2223
+ },
+ {
+ "epoch": 30.894323144104803,
+ "grad_norm": 0.025873707607388496,
+ "learning_rate": 0.0006,
+ "loss": 2.9819533824920654,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90829694323144,
+ "grad_norm": 0.025367610156536102,
+ "learning_rate": 0.0006,
+ "loss": 2.9434492588043213,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92227074235808,
+ "grad_norm": 0.025719329714775085,
+ "learning_rate": 0.0006,
+ "loss": 2.9492809772491455,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936244541484715,
+ "grad_norm": 0.025365520268678665,
+ "learning_rate": 0.0006,
+ "loss": 2.9604077339172363,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950218340611354,
+ "grad_norm": 0.025556908920407295,
+ "learning_rate": 0.0006,
+ "loss": 2.9890618324279785,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964192139737992,
+ "grad_norm": 0.025892134755849838,
+ "learning_rate": 0.0006,
+ "loss": 3.0024898052215576,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978165938864628,
+ "grad_norm": 0.02661663107573986,
+ "learning_rate": 0.0006,
+ "loss": 2.952683687210083,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992139737991266,
+ "grad_norm": 0.027014167979359627,
+ "learning_rate": 0.0006,
+ "loss": 2.9711644649505615,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.030383866280317307,
+ "learning_rate": 0.0006,
+ "loss": 2.9667253494262695,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 4.229912281036377,
+ "eval_runtime": 50.1223,
+ "eval_samples_per_second": 48.721,
+ "eval_steps_per_second": 1.536,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397379912664,
+ "grad_norm": 0.03256843239068985,
+ "learning_rate": 0.0006,
+ "loss": 2.7514405250549316,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027947598253274,
+ "grad_norm": 0.047255322337150574,
+ "learning_rate": 0.0006,
+ "loss": 2.74819278717041,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041921397379912,
+ "grad_norm": 0.057098377496004105,
+ "learning_rate": 0.0006,
+ "loss": 2.8072285652160645,
+ "step": 2235
+ },
+ {
+ "epoch": 31.05589519650655,
+ "grad_norm": 0.06089015305042267,
+ "learning_rate": 0.0006,
+ "loss": 2.7930731773376465,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069868995633186,
+ "grad_norm": 0.06132258102297783,
+ "learning_rate": 0.0006,
+ "loss": 2.758162498474121,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083842794759825,
+ "grad_norm": 0.06187787652015686,
+ "learning_rate": 0.0006,
+ "loss": 2.7864990234375,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097816593886463,
+ "grad_norm": 0.06031458452343941,
+ "learning_rate": 0.0006,
+ "loss": 2.7684197425842285,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111790393013102,
+ "grad_norm": 0.06238894909620285,
+ "learning_rate": 0.0006,
+ "loss": 2.7754814624786377,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125764192139737,
+ "grad_norm": 0.062081411480903625,
+ "learning_rate": 0.0006,
+ "loss": 2.790771484375,
+ "step": 2241
+ },
+ {
+ "epoch": 31.139737991266376,
+ "grad_norm": 0.06554440408945084,
+ "learning_rate": 0.0006,
+ "loss": 2.8218588829040527,
+ "step": 2242
+ },
+ {
+ "epoch": 31.153711790393015,
+ "grad_norm": 0.06824780255556107,
+ "learning_rate": 0.0006,
+ "loss": 2.7899062633514404,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16768558951965,
+ "grad_norm": 0.06519690155982971,
+ "learning_rate": 0.0006,
+ "loss": 2.8244035243988037,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18165938864629,
+ "grad_norm": 0.06539556384086609,
+ "learning_rate": 0.0006,
+ "loss": 2.8237123489379883,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195633187772927,
+ "grad_norm": 0.06608626246452332,
+ "learning_rate": 0.0006,
+ "loss": 2.82597017288208,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209606986899562,
+ "grad_norm": 0.0633682906627655,
+ "learning_rate": 0.0006,
+ "loss": 2.854529857635498,
+ "step": 2247
+ },
+ {
+ "epoch": 31.2235807860262,
+ "grad_norm": 0.06378687173128128,
+ "learning_rate": 0.0006,
+ "loss": 2.834493637084961,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23755458515284,
+ "grad_norm": 0.06429384648799896,
+ "learning_rate": 0.0006,
+ "loss": 2.835636854171753,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251528384279474,
+ "grad_norm": 0.06059514731168747,
+ "learning_rate": 0.0006,
+ "loss": 2.8262174129486084,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265502183406113,
+ "grad_norm": 0.05870524421334267,
+ "learning_rate": 0.0006,
+ "loss": 2.8372795581817627,
+ "step": 2251
+ },
+ {
+ "epoch": 31.27947598253275,
+ "grad_norm": 0.05517038330435753,
+ "learning_rate": 0.0006,
+ "loss": 2.8663249015808105,
+ "step": 2252
+ },
+ {
+ "epoch": 31.29344978165939,
+ "grad_norm": 0.05413469672203064,
+ "learning_rate": 0.0006,
+ "loss": 2.88608980178833,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307423580786025,
+ "grad_norm": 0.05486409366130829,
+ "learning_rate": 0.0006,
+ "loss": 2.861100673675537,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321397379912664,
+ "grad_norm": 0.049654968082904816,
+ "learning_rate": 0.0006,
+ "loss": 2.86140775680542,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335371179039303,
+ "grad_norm": 0.041566286236047745,
+ "learning_rate": 0.0006,
+ "loss": 2.8499088287353516,
+ "step": 2256
+ },
+ {
+ "epoch": 31.349344978165938,
+ "grad_norm": 0.03958230838179588,
+ "learning_rate": 0.0006,
+ "loss": 2.8657469749450684,
+ "step": 2257
+ },
+ {
+ "epoch": 31.363318777292577,
+ "grad_norm": 0.039652854204177856,
+ "learning_rate": 0.0006,
+ "loss": 2.877363681793213,
+ "step": 2258
+ },
+ {
+ "epoch": 31.377292576419215,
+ "grad_norm": 0.03760487213730812,
+ "learning_rate": 0.0006,
+ "loss": 2.8804736137390137,
+ "step": 2259
+ },
+ {
+ "epoch": 31.39126637554585,
+ "grad_norm": 0.0382104329764843,
+ "learning_rate": 0.0006,
+ "loss": 2.868318796157837,
+ "step": 2260
+ },
+ {
+ "epoch": 31.40524017467249,
+ "grad_norm": 0.03440074995160103,
+ "learning_rate": 0.0006,
+ "loss": 2.8732798099517822,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419213973799128,
+ "grad_norm": 0.033076152205467224,
+ "learning_rate": 0.0006,
+ "loss": 2.906764030456543,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433187772925763,
+ "grad_norm": 0.032357051968574524,
+ "learning_rate": 0.0006,
+ "loss": 2.9036777019500732,
+ "step": 2263
+ },
+ {
+ "epoch": 31.4471615720524,
+ "grad_norm": 0.03397732973098755,
+ "learning_rate": 0.0006,
+ "loss": 2.877735137939453,
+ "step": 2264
+ },
+ {
+ "epoch": 31.46113537117904,
+ "grad_norm": 0.03163991868495941,
+ "learning_rate": 0.0006,
+ "loss": 2.8931736946105957,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475109170305675,
+ "grad_norm": 0.0300164595246315,
+ "learning_rate": 0.0006,
+ "loss": 2.874295234680176,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489082969432314,
+ "grad_norm": 0.030882105231285095,
+ "learning_rate": 0.0006,
+ "loss": 2.8706257343292236,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503056768558952,
+ "grad_norm": 0.03332842141389847,
+ "learning_rate": 0.0006,
+ "loss": 2.884972095489502,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51703056768559,
+ "grad_norm": 0.03143863379955292,
+ "learning_rate": 0.0006,
+ "loss": 2.8599395751953125,
+ "step": 2269
+ },
+ {
+ "epoch": 31.531004366812226,
+ "grad_norm": 0.029551811516284943,
+ "learning_rate": 0.0006,
+ "loss": 2.8945577144622803,
+ "step": 2270
+ },
+ {
+ "epoch": 31.544978165938865,
+ "grad_norm": 0.030553745105862617,
+ "learning_rate": 0.0006,
+ "loss": 2.8668577671051025,
+ "step": 2271
+ },
+ {
+ "epoch": 31.558951965065503,
+ "grad_norm": 0.030133841559290886,
+ "learning_rate": 0.0006,
+ "loss": 2.8667306900024414,
+ "step": 2272
+ },
+ {
+ "epoch": 31.57292576419214,
+ "grad_norm": 0.0286093782633543,
+ "learning_rate": 0.0006,
+ "loss": 2.8893041610717773,
+ "step": 2273
+ },
+ {
+ "epoch": 31.586899563318777,
+ "grad_norm": 0.028428595513105392,
+ "learning_rate": 0.0006,
+ "loss": 2.9043941497802734,
+ "step": 2274
+ },
+ {
+ "epoch": 31.600873362445416,
+ "grad_norm": 0.028137098997831345,
+ "learning_rate": 0.0006,
+ "loss": 2.8917198181152344,
+ "step": 2275
+ },
+ {
+ "epoch": 31.61484716157205,
+ "grad_norm": 0.02749542146921158,
+ "learning_rate": 0.0006,
+ "loss": 2.8751792907714844,
+ "step": 2276
+ },
+ {
+ "epoch": 31.62882096069869,
+ "grad_norm": 0.027882523834705353,
+ "learning_rate": 0.0006,
+ "loss": 2.875168800354004,
+ "step": 2277
+ },
+ {
+ "epoch": 31.64279475982533,
+ "grad_norm": 0.02791895531117916,
+ "learning_rate": 0.0006,
+ "loss": 2.9148941040039062,
+ "step": 2278
+ },
+ {
+ "epoch": 31.656768558951963,
+ "grad_norm": 0.027536451816558838,
+ "learning_rate": 0.0006,
+ "loss": 2.9327642917633057,
+ "step": 2279
+ },
+ {
+ "epoch": 31.670742358078602,
+ "grad_norm": 0.027606090530753136,
+ "learning_rate": 0.0006,
+ "loss": 2.8927245140075684,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68471615720524,
+ "grad_norm": 0.027958661317825317,
+ "learning_rate": 0.0006,
+ "loss": 2.90574312210083,
+ "step": 2281
+ },
+ {
+ "epoch": 31.69868995633188,
+ "grad_norm": 0.027077173814177513,
+ "learning_rate": 0.0006,
+ "loss": 2.937171459197998,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712663755458514,
+ "grad_norm": 0.027880772948265076,
+ "learning_rate": 0.0006,
+ "loss": 2.9102025032043457,
+ "step": 2283
+ },
+ {
+ "epoch": 31.726637554585153,
+ "grad_norm": 0.028209930285811424,
+ "learning_rate": 0.0006,
+ "loss": 2.9417295455932617,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74061135371179,
+ "grad_norm": 0.02771490439772606,
+ "learning_rate": 0.0006,
+ "loss": 2.923916816711426,
+ "step": 2285
+ },
+ {
+ "epoch": 31.754585152838427,
+ "grad_norm": 0.02741638571023941,
+ "learning_rate": 0.0006,
+ "loss": 2.8878226280212402,
+ "step": 2286
+ },
+ {
+ "epoch": 31.768558951965066,
+ "grad_norm": 0.02630724012851715,
+ "learning_rate": 0.0006,
+ "loss": 2.9191370010375977,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782532751091704,
+ "grad_norm": 0.025788497179746628,
+ "learning_rate": 0.0006,
+ "loss": 2.9376463890075684,
+ "step": 2288
+ },
+ {
+ "epoch": 31.79650655021834,
+ "grad_norm": 0.027125656604766846,
+ "learning_rate": 0.0006,
+ "loss": 2.9007105827331543,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810480349344978,
+ "grad_norm": 0.02757101133465767,
+ "learning_rate": 0.0006,
+ "loss": 2.887821912765503,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824454148471617,
+ "grad_norm": 0.027768995612859726,
+ "learning_rate": 0.0006,
+ "loss": 2.906799793243408,
+ "step": 2291
+ },
+ {
+ "epoch": 31.83842794759825,
+ "grad_norm": 0.027256596833467484,
+ "learning_rate": 0.0006,
+ "loss": 2.931828498840332,
+ "step": 2292
+ },
+ {
+ "epoch": 31.85240174672489,
+ "grad_norm": 0.025560658425092697,
+ "learning_rate": 0.0006,
+ "loss": 2.9481167793273926,
+ "step": 2293
+ },
+ {
+ "epoch": 31.86637554585153,
+ "grad_norm": 0.026807734742760658,
+ "learning_rate": 0.0006,
+ "loss": 2.9222939014434814,
+ "step": 2294
+ },
+ {
+ "epoch": 31.880349344978168,
+ "grad_norm": 0.02557470090687275,
+ "learning_rate": 0.0006,
+ "loss": 2.9439048767089844,
+ "step": 2295
+ },
+ {
+ "epoch": 31.894323144104803,
+ "grad_norm": 0.026537157595157623,
+ "learning_rate": 0.0006,
+ "loss": 2.9390292167663574,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90829694323144,
+ "grad_norm": 0.027184665203094482,
+ "learning_rate": 0.0006,
+ "loss": 2.954176902770996,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92227074235808,
+ "grad_norm": 0.028301499783992767,
+ "learning_rate": 0.0006,
+ "loss": 2.918628692626953,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936244541484715,
+ "grad_norm": 0.028094016015529633,
+ "learning_rate": 0.0006,
+ "loss": 2.964953899383545,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950218340611354,
+ "grad_norm": 0.028538303449749947,
+ "learning_rate": 0.0006,
+ "loss": 2.968601703643799,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964192139737992,
+ "grad_norm": 0.026872891932725906,
+ "learning_rate": 0.0006,
+ "loss": 2.967205047607422,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978165938864628,
+ "grad_norm": 0.02604864165186882,
+ "learning_rate": 0.0006,
+ "loss": 2.964766263961792,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992139737991266,
+ "grad_norm": 0.02906455658376217,
+ "learning_rate": 0.0006,
+ "loss": 2.9137468338012695,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.03300034999847412,
+ "learning_rate": 0.0006,
+ "loss": 2.927333354949951,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 4.2580718994140625,
+ "eval_runtime": 50.1093,
+ "eval_samples_per_second": 48.733,
+ "eval_steps_per_second": 1.537,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397379912664,
+ "grad_norm": 0.032037410885095596,
+ "learning_rate": 0.0006,
+ "loss": 2.742370128631592,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02794759825328,
+ "grad_norm": 0.04566849023103714,
+ "learning_rate": 0.0006,
+ "loss": 2.7334156036376953,
+ "step": 2306
+ },
+ {
+ "epoch": 32.041921397379916,
+ "grad_norm": 0.051055751740932465,
+ "learning_rate": 0.0006,
+ "loss": 2.711585283279419,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05589519650655,
+ "grad_norm": 0.051270145922899246,
+ "learning_rate": 0.0006,
+ "loss": 2.7437586784362793,
+ "step": 2308
+ },
+ {
+ "epoch": 32.069868995633186,
+ "grad_norm": 0.05252866446971893,
+ "learning_rate": 0.0006,
+ "loss": 2.7164244651794434,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083842794759825,
+ "grad_norm": 0.06172860786318779,
+ "learning_rate": 0.0006,
+ "loss": 2.7258028984069824,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09781659388646,
+ "grad_norm": 0.07105273753404617,
+ "learning_rate": 0.0006,
+ "loss": 2.784562587738037,
+ "step": 2311
+ },
+ {
+ "epoch": 32.1117903930131,
+ "grad_norm": 0.0731290802359581,
+ "learning_rate": 0.0006,
+ "loss": 2.7349305152893066,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12576419213974,
+ "grad_norm": 0.06616552174091339,
+ "learning_rate": 0.0006,
+ "loss": 2.7377257347106934,
+ "step": 2313
+ },
+ {
+ "epoch": 32.13973799126637,
+ "grad_norm": 0.060200285166502,
+ "learning_rate": 0.0006,
+ "loss": 2.7815725803375244,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15371179039301,
+ "grad_norm": 0.06167658045887947,
+ "learning_rate": 0.0006,
+ "loss": 2.7790369987487793,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16768558951965,
+ "grad_norm": 0.056791823357343674,
+ "learning_rate": 0.0006,
+ "loss": 2.7982912063598633,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18165938864629,
+ "grad_norm": 0.051635418087244034,
+ "learning_rate": 0.0006,
+ "loss": 2.795342445373535,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19563318777293,
+ "grad_norm": 0.04736269265413284,
+ "learning_rate": 0.0006,
+ "loss": 2.7246901988983154,
+ "step": 2318
+ },
+ {
+ "epoch": 32.209606986899566,
+ "grad_norm": 0.05233636125922203,
+ "learning_rate": 0.0006,
+ "loss": 2.7580928802490234,
+ "step": 2319
+ },
+ {
+ "epoch": 32.223580786026204,
+ "grad_norm": 0.05724285542964935,
+ "learning_rate": 0.0006,
+ "loss": 2.7991695404052734,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237554585152836,
+ "grad_norm": 0.06089061126112938,
+ "learning_rate": 0.0006,
+ "loss": 2.818295478820801,
+ "step": 2321
+ },
+ {
+ "epoch": 32.251528384279474,
+ "grad_norm": 0.06421101838350296,
+ "learning_rate": 0.0006,
+ "loss": 2.8264989852905273,
+ "step": 2322
+ },
+ {
+ "epoch": 32.26550218340611,
+ "grad_norm": 0.06509649753570557,
+ "learning_rate": 0.0006,
+ "loss": 2.847254753112793,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27947598253275,
+ "grad_norm": 0.06762181967496872,
+ "learning_rate": 0.0006,
+ "loss": 2.7911386489868164,
+ "step": 2324
+ },
+ {
+ "epoch": 32.29344978165939,
+ "grad_norm": 0.06925082206726074,
+ "learning_rate": 0.0006,
+ "loss": 2.7912075519561768,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30742358078603,
+ "grad_norm": 0.060691531747579575,
+ "learning_rate": 0.0006,
+ "loss": 2.8301353454589844,
+ "step": 2326
+ },
+ {
+ "epoch": 32.32139737991266,
+ "grad_norm": 0.05697881057858467,
+ "learning_rate": 0.0006,
+ "loss": 2.7735865116119385,
+ "step": 2327
+ },
+ {
+ "epoch": 32.3353711790393,
+ "grad_norm": 0.04882541298866272,
+ "learning_rate": 0.0006,
+ "loss": 2.8305134773254395,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34934497816594,
+ "grad_norm": 0.05006708949804306,
+ "learning_rate": 0.0006,
+ "loss": 2.8248348236083984,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36331877729258,
+ "grad_norm": 0.05743676424026489,
+ "learning_rate": 0.0006,
+ "loss": 2.821669340133667,
+ "step": 2330
+ },
+ {
+ "epoch": 32.377292576419215,
+ "grad_norm": 0.05322850123047829,
+ "learning_rate": 0.0006,
+ "loss": 2.863438606262207,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391266375545854,
+ "grad_norm": 0.04769251123070717,
+ "learning_rate": 0.0006,
+ "loss": 2.8355751037597656,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40524017467249,
+ "grad_norm": 0.047659195959568024,
+ "learning_rate": 0.0006,
+ "loss": 2.8436594009399414,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419213973799124,
+ "grad_norm": 0.04434720054268837,
+ "learning_rate": 0.0006,
+ "loss": 2.8192641735076904,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43318777292576,
+ "grad_norm": 0.04431871324777603,
+ "learning_rate": 0.0006,
+ "loss": 2.8672127723693848,
+ "step": 2335
+ },
+ {
+ "epoch": 32.4471615720524,
+ "grad_norm": 0.04206263646483421,
+ "learning_rate": 0.0006,
+ "loss": 2.858680486679077,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46113537117904,
+ "grad_norm": 0.03994728997349739,
+ "learning_rate": 0.0006,
+ "loss": 2.88413405418396,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47510917030568,
+ "grad_norm": 0.040253281593322754,
+ "learning_rate": 0.0006,
+ "loss": 2.8301520347595215,
+ "step": 2338
+ },
+ {
+ "epoch": 32.48908296943232,
+ "grad_norm": 0.038392145186662674,
+ "learning_rate": 0.0006,
+ "loss": 2.821742534637451,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50305676855895,
+ "grad_norm": 0.03597316890954971,
+ "learning_rate": 0.0006,
+ "loss": 2.899796485900879,
+ "step": 2340
+ },
+ {
+ "epoch": 32.51703056768559,
+ "grad_norm": 0.035971421748399734,
+ "learning_rate": 0.0006,
+ "loss": 2.8710737228393555,
+ "step": 2341
+ },
+ {
+ "epoch": 32.531004366812226,
+ "grad_norm": 0.035625241696834564,
+ "learning_rate": 0.0006,
+ "loss": 2.8744492530822754,
+ "step": 2342
+ },
+ {
+ "epoch": 32.544978165938865,
+ "grad_norm": 0.03281800076365471,
+ "learning_rate": 0.0006,
+ "loss": 2.8716745376586914,
+ "step": 2343
+ },
+ {
+ "epoch": 32.5589519650655,
+ "grad_norm": 0.031027544289827347,
+ "learning_rate": 0.0006,
+ "loss": 2.8424720764160156,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57292576419214,
+ "grad_norm": 0.03187177702784538,
+ "learning_rate": 0.0006,
+ "loss": 2.8346052169799805,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58689956331878,
+ "grad_norm": 0.03155096247792244,
+ "learning_rate": 0.0006,
+ "loss": 2.8507466316223145,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60087336244541,
+ "grad_norm": 0.03118431754410267,
+ "learning_rate": 0.0006,
+ "loss": 2.902325391769409,
+ "step": 2347
+ },
+ {
+ "epoch": 32.61484716157205,
+ "grad_norm": 0.032406579703092575,
+ "learning_rate": 0.0006,
+ "loss": 2.8646554946899414,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62882096069869,
+ "grad_norm": 0.03170140087604523,
+ "learning_rate": 0.0006,
+ "loss": 2.8921170234680176,
+ "step": 2349
+ },
+ {
+ "epoch": 32.64279475982533,
+ "grad_norm": 0.03082709200680256,
+ "learning_rate": 0.0006,
+ "loss": 2.8608059883117676,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65676855895197,
+ "grad_norm": 0.028605740517377853,
+ "learning_rate": 0.0006,
+ "loss": 2.8731441497802734,
+ "step": 2351
+ },
+ {
+ "epoch": 32.670742358078606,
+ "grad_norm": 0.028392326086759567,
+ "learning_rate": 0.0006,
+ "loss": 2.8904993534088135,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68471615720524,
+ "grad_norm": 0.029447391629219055,
+ "learning_rate": 0.0006,
+ "loss": 2.877455472946167,
+ "step": 2353
+ },
+ {
+ "epoch": 32.698689956331876,
+ "grad_norm": 0.031085917726159096,
+ "learning_rate": 0.0006,
+ "loss": 2.8698372840881348,
+ "step": 2354
+ },
+ {
+ "epoch": 32.712663755458514,
+ "grad_norm": 0.029842285439372063,
+ "learning_rate": 0.0006,
+ "loss": 2.8689470291137695,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72663755458515,
+ "grad_norm": 0.03001115471124649,
+ "learning_rate": 0.0006,
+ "loss": 2.9131507873535156,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74061135371179,
+ "grad_norm": 0.028849447146058083,
+ "learning_rate": 0.0006,
+ "loss": 2.8918845653533936,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75458515283843,
+ "grad_norm": 0.02883053943514824,
+ "learning_rate": 0.0006,
+ "loss": 2.896641731262207,
+ "step": 2358
+ },
+ {
+ "epoch": 32.76855895196506,
+ "grad_norm": 0.029307082295417786,
+ "learning_rate": 0.0006,
+ "loss": 2.9132862091064453,
+ "step": 2359
+ },
+ {
+ "epoch": 32.7825327510917,
+ "grad_norm": 0.027899738401174545,
+ "learning_rate": 0.0006,
+ "loss": 2.9068503379821777,
+ "step": 2360
+ },
+ {
+ "epoch": 32.79650655021834,
+ "grad_norm": 0.026993675157427788,
+ "learning_rate": 0.0006,
+ "loss": 2.884234666824341,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81048034934498,
+ "grad_norm": 0.029380464926362038,
+ "learning_rate": 0.0006,
+ "loss": 2.935711622238159,
+ "step": 2362
+ },
+ {
+ "epoch": 32.82445414847162,
+ "grad_norm": 0.029252734035253525,
+ "learning_rate": 0.0006,
+ "loss": 2.9058709144592285,
+ "step": 2363
+ },
+ {
+ "epoch": 32.838427947598255,
+ "grad_norm": 0.028128111734986305,
+ "learning_rate": 0.0006,
+ "loss": 2.8898634910583496,
+ "step": 2364
+ },
+ {
+ "epoch": 32.852401746724894,
+ "grad_norm": 0.027143409475684166,
+ "learning_rate": 0.0006,
+ "loss": 2.910818576812744,
+ "step": 2365
+ },
+ {
+ "epoch": 32.866375545851525,
+ "grad_norm": 0.027796905487775803,
+ "learning_rate": 0.0006,
+ "loss": 2.902510166168213,
+ "step": 2366
+ },
+ {
+ "epoch": 32.880349344978164,
+ "grad_norm": 0.028360942378640175,
+ "learning_rate": 0.0006,
+ "loss": 2.9564762115478516,
+ "step": 2367
+ },
+ {
+ "epoch": 32.8943231441048,
+ "grad_norm": 0.028355851769447327,
+ "learning_rate": 0.0006,
+ "loss": 2.9333415031433105,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90829694323144,
+ "grad_norm": 0.028441734611988068,
+ "learning_rate": 0.0006,
+ "loss": 2.892359495162964,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92227074235808,
+ "grad_norm": 0.027564451098442078,
+ "learning_rate": 0.0006,
+ "loss": 2.946666717529297,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93624454148472,
+ "grad_norm": 0.02841477282345295,
+ "learning_rate": 0.0006,
+ "loss": 2.9348950386047363,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95021834061135,
+ "grad_norm": 0.029114512726664543,
+ "learning_rate": 0.0006,
+ "loss": 2.9399232864379883,
+ "step": 2372
+ },
+ {
+ "epoch": 32.96419213973799,
+ "grad_norm": 0.027796028181910515,
+ "learning_rate": 0.0006,
+ "loss": 2.9034712314605713,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97816593886463,
+ "grad_norm": 0.027424966916441917,
+ "learning_rate": 0.0006,
+ "loss": 2.9037415981292725,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992139737991266,
+ "grad_norm": 0.026966635137796402,
+ "learning_rate": 0.0006,
+ "loss": 2.9162826538085938,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.031656671315431595,
+ "learning_rate": 0.0006,
+ "loss": 2.923030376434326,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 4.279788970947266,
+ "eval_runtime": 49.948,
+ "eval_samples_per_second": 48.891,
+ "eval_steps_per_second": 1.542,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397379912664,
+ "grad_norm": 0.033716026693582535,
+ "learning_rate": 0.0006,
+ "loss": 2.6915321350097656,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02794759825328,
+ "grad_norm": 0.04677571356296539,
+ "learning_rate": 0.0006,
+ "loss": 2.6532812118530273,
+ "step": 2378
+ },
+ {
+ "epoch": 33.041921397379916,
+ "grad_norm": 0.05152101069688797,
+ "learning_rate": 0.0006,
+ "loss": 2.6847143173217773,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05589519650655,
+ "grad_norm": 0.05217320844531059,
+ "learning_rate": 0.0006,
+ "loss": 2.6862430572509766,
+ "step": 2380
+ },
+ {
+ "epoch": 33.069868995633186,
+ "grad_norm": 0.050403568893671036,
+ "learning_rate": 0.0006,
+ "loss": 2.719501495361328,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083842794759825,
+ "grad_norm": 0.05084824562072754,
+ "learning_rate": 0.0006,
+ "loss": 2.692394971847534,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09781659388646,
+ "grad_norm": 0.05117104575037956,
+ "learning_rate": 0.0006,
+ "loss": 2.744056224822998,
+ "step": 2383
+ },
+ {
+ "epoch": 33.1117903930131,
+ "grad_norm": 0.04953674226999283,
+ "learning_rate": 0.0006,
+ "loss": 2.7042603492736816,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12576419213974,
+ "grad_norm": 0.04990607127547264,
+ "learning_rate": 0.0006,
+ "loss": 2.710092544555664,
+ "step": 2385
+ },
+ {
+ "epoch": 33.13973799126637,
+ "grad_norm": 0.05052730068564415,
+ "learning_rate": 0.0006,
+ "loss": 2.730630397796631,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15371179039301,
+ "grad_norm": 0.05005491152405739,
+ "learning_rate": 0.0006,
+ "loss": 2.730384349822998,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16768558951965,
+ "grad_norm": 0.04792829975485802,
+ "learning_rate": 0.0006,
+ "loss": 2.7367067337036133,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18165938864629,
+ "grad_norm": 0.050187911838293076,
+ "learning_rate": 0.0006,
+ "loss": 2.7383334636688232,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19563318777293,
+ "grad_norm": 0.05145636200904846,
+ "learning_rate": 0.0006,
+ "loss": 2.7097063064575195,
+ "step": 2390
+ },
+ {
+ "epoch": 33.209606986899566,
+ "grad_norm": 0.050812143832445145,
+ "learning_rate": 0.0006,
+ "loss": 2.734105348587036,
+ "step": 2391
+ },
+ {
+ "epoch": 33.223580786026204,
+ "grad_norm": 0.05062062293291092,
+ "learning_rate": 0.0006,
+ "loss": 2.783468246459961,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237554585152836,
+ "grad_norm": 0.05209152400493622,
+ "learning_rate": 0.0006,
+ "loss": 2.7660093307495117,
+ "step": 2393
+ },
+ {
+ "epoch": 33.251528384279474,
+ "grad_norm": 0.049624551087617874,
+ "learning_rate": 0.0006,
+ "loss": 2.7733097076416016,
+ "step": 2394
+ },
+ {
+ "epoch": 33.26550218340611,
+ "grad_norm": 0.05187871679663658,
+ "learning_rate": 0.0006,
+ "loss": 2.7738423347473145,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27947598253275,
+ "grad_norm": 0.05329177528619766,
+ "learning_rate": 0.0006,
+ "loss": 2.756072998046875,
+ "step": 2396
+ },
+ {
+ "epoch": 33.29344978165939,
+ "grad_norm": 0.05190843343734741,
+ "learning_rate": 0.0006,
+ "loss": 2.7866833209991455,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30742358078603,
+ "grad_norm": 0.04941689595580101,
+ "learning_rate": 0.0006,
+ "loss": 2.7642035484313965,
+ "step": 2398
+ },
+ {
+ "epoch": 33.32139737991266,
+ "grad_norm": 0.04649437963962555,
+ "learning_rate": 0.0006,
+ "loss": 2.78639817237854,
+ "step": 2399
+ },
+ {
+ "epoch": 33.3353711790393,
+ "grad_norm": 0.044044461101293564,
+ "learning_rate": 0.0006,
+ "loss": 2.7860288619995117,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34934497816594,
+ "grad_norm": 0.04321051016449928,
+ "learning_rate": 0.0006,
+ "loss": 2.7772903442382812,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36331877729258,
+ "grad_norm": 0.045066945254802704,
+ "learning_rate": 0.0006,
+ "loss": 2.780142068862915,
+ "step": 2402
+ },
+ {
+ "epoch": 33.377292576419215,
+ "grad_norm": 0.05035722628235817,
+ "learning_rate": 0.0006,
+ "loss": 2.844978094100952,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391266375545854,
+ "grad_norm": 0.047962989658117294,
+ "learning_rate": 0.0006,
+ "loss": 2.790775775909424,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40524017467249,
+ "grad_norm": 0.04262860491871834,
+ "learning_rate": 0.0006,
+ "loss": 2.791409730911255,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419213973799124,
+ "grad_norm": 0.04162844642996788,
+ "learning_rate": 0.0006,
+ "loss": 2.787597179412842,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43318777292576,
+ "grad_norm": 0.04054319113492966,
+ "learning_rate": 0.0006,
+ "loss": 2.8160147666931152,
+ "step": 2407
+ },
+ {
+ "epoch": 33.4471615720524,
+ "grad_norm": 0.039851218461990356,
+ "learning_rate": 0.0006,
+ "loss": 2.8315625190734863,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46113537117904,
+ "grad_norm": 0.037504494190216064,
+ "learning_rate": 0.0006,
+ "loss": 2.8182449340820312,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47510917030568,
+ "grad_norm": 0.034121323376894,
+ "learning_rate": 0.0006,
+ "loss": 2.795137882232666,
+ "step": 2410
+ },
+ {
+ "epoch": 33.48908296943232,
+ "grad_norm": 0.03626429662108421,
+ "learning_rate": 0.0006,
+ "loss": 2.8132519721984863,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50305676855895,
+ "grad_norm": 0.03472466766834259,
+ "learning_rate": 0.0006,
+ "loss": 2.8613948822021484,
+ "step": 2412
+ },
+ {
+ "epoch": 33.51703056768559,
+ "grad_norm": 0.033197011798620224,
+ "learning_rate": 0.0006,
+ "loss": 2.8210697174072266,
+ "step": 2413
+ },
+ {
+ "epoch": 33.531004366812226,
+ "grad_norm": 0.03290683776140213,
+ "learning_rate": 0.0006,
+ "loss": 2.8431336879730225,
+ "step": 2414
+ },
+ {
+ "epoch": 33.544978165938865,
+ "grad_norm": 0.03219873458147049,
+ "learning_rate": 0.0006,
+ "loss": 2.784018039703369,
+ "step": 2415
+ },
+ {
+ "epoch": 33.5589519650655,
+ "grad_norm": 0.03163836523890495,
+ "learning_rate": 0.0006,
+ "loss": 2.8298420906066895,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57292576419214,
+ "grad_norm": 0.030518434941768646,
+ "learning_rate": 0.0006,
+ "loss": 2.821584701538086,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58689956331878,
+ "grad_norm": 0.029640426859259605,
+ "learning_rate": 0.0006,
+ "loss": 2.8617959022521973,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60087336244541,
+ "grad_norm": 0.03000856749713421,
+ "learning_rate": 0.0006,
+ "loss": 2.837906837463379,
+ "step": 2419
+ },
+ {
+ "epoch": 33.61484716157205,
+ "grad_norm": 0.029703237116336823,
+ "learning_rate": 0.0006,
+ "loss": 2.867283344268799,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62882096069869,
+ "grad_norm": 0.029219454154372215,
+ "learning_rate": 0.0006,
+ "loss": 2.8318774700164795,
+ "step": 2421
+ },
+ {
+ "epoch": 33.64279475982533,
+ "grad_norm": 0.029444001615047455,
+ "learning_rate": 0.0006,
+ "loss": 2.8493499755859375,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65676855895197,
+ "grad_norm": 0.030653655529022217,
+ "learning_rate": 0.0006,
+ "loss": 2.8528506755828857,
+ "step": 2423
+ },
+ {
+ "epoch": 33.670742358078606,
+ "grad_norm": 0.031539395451545715,
+ "learning_rate": 0.0006,
+ "loss": 2.8657748699188232,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68471615720524,
+ "grad_norm": 0.030429808422923088,
+ "learning_rate": 0.0006,
+ "loss": 2.8664650917053223,
+ "step": 2425
+ },
+ {
+ "epoch": 33.698689956331876,
+ "grad_norm": 0.029895296320319176,
+ "learning_rate": 0.0006,
+ "loss": 2.809852123260498,
+ "step": 2426
+ },
+ {
+ "epoch": 33.712663755458514,
+ "grad_norm": 0.03146650269627571,
+ "learning_rate": 0.0006,
+ "loss": 2.862276554107666,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72663755458515,
+ "grad_norm": 0.03134695440530777,
+ "learning_rate": 0.0006,
+ "loss": 2.8528666496276855,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74061135371179,
+ "grad_norm": 0.02905678190290928,
+ "learning_rate": 0.0006,
+ "loss": 2.882528781890869,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75458515283843,
+ "grad_norm": 0.027311185374855995,
+ "learning_rate": 0.0006,
+ "loss": 2.831305980682373,
+ "step": 2430
+ },
+ {
+ "epoch": 33.76855895196506,
+ "grad_norm": 0.029073255136609077,
+ "learning_rate": 0.0006,
+ "loss": 2.853543281555176,
+ "step": 2431
+ },
+ {
+ "epoch": 33.7825327510917,
+ "grad_norm": 0.029640158638358116,
+ "learning_rate": 0.0006,
+ "loss": 2.87980318069458,
+ "step": 2432
+ },
+ {
+ "epoch": 33.79650655021834,
+ "grad_norm": 0.02919093891978264,
+ "learning_rate": 0.0006,
+ "loss": 2.865605592727661,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81048034934498,
+ "grad_norm": 0.0279269777238369,
+ "learning_rate": 0.0006,
+ "loss": 2.8410637378692627,
+ "step": 2434
+ },
+ {
+ "epoch": 33.82445414847162,
+ "grad_norm": 0.028659343719482422,
+ "learning_rate": 0.0006,
+ "loss": 2.905547618865967,
+ "step": 2435
+ },
+ {
+ "epoch": 33.838427947598255,
+ "grad_norm": 0.029965637251734734,
+ "learning_rate": 0.0006,
+ "loss": 2.8864023685455322,
+ "step": 2436
+ },
+ {
+ "epoch": 33.852401746724894,
+ "grad_norm": 0.0290619358420372,
+ "learning_rate": 0.0006,
+ "loss": 2.8675897121429443,
+ "step": 2437
+ },
+ {
+ "epoch": 33.866375545851525,
+ "grad_norm": 0.02953960932791233,
+ "learning_rate": 0.0006,
+ "loss": 2.867520332336426,
+ "step": 2438
+ },
+ {
+ "epoch": 33.880349344978164,
+ "grad_norm": 0.027759216725826263,
+ "learning_rate": 0.0006,
+ "loss": 2.8683114051818848,
+ "step": 2439
+ },
+ {
+ "epoch": 33.8943231441048,
+ "grad_norm": 0.029629496857523918,
+ "learning_rate": 0.0006,
+ "loss": 2.8873648643493652,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90829694323144,
+ "grad_norm": 0.030611209571361542,
+ "learning_rate": 0.0006,
+ "loss": 2.8631839752197266,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92227074235808,
+ "grad_norm": 0.029470890760421753,
+ "learning_rate": 0.0006,
+ "loss": 2.911470651626587,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93624454148472,
+ "grad_norm": 0.02960297465324402,
+ "learning_rate": 0.0006,
+ "loss": 2.889380931854248,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95021834061135,
+ "grad_norm": 0.029129860922694206,
+ "learning_rate": 0.0006,
+ "loss": 2.9198157787323,
+ "step": 2444
+ },
+ {
+ "epoch": 33.96419213973799,
+ "grad_norm": 0.029969653114676476,
+ "learning_rate": 0.0006,
+ "loss": 2.8918609619140625,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97816593886463,
+ "grad_norm": 0.030586522072553635,
+ "learning_rate": 0.0006,
+ "loss": 2.873225212097168,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992139737991266,
+ "grad_norm": 0.02921980805695057,
+ "learning_rate": 0.0006,
+ "loss": 2.887167453765869,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.03401815518736839,
+ "learning_rate": 0.0006,
+ "loss": 2.89204740524292,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 4.312065124511719,
+ "eval_runtime": 49.9591,
+ "eval_samples_per_second": 48.88,
+ "eval_steps_per_second": 1.541,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397379912664,
+ "grad_norm": 0.03744617849588394,
+ "learning_rate": 0.0006,
+ "loss": 2.633880138397217,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02794759825328,
+ "grad_norm": 0.054182395339012146,
+ "learning_rate": 0.0006,
+ "loss": 2.6851818561553955,
+ "step": 2450
+ },
+ {
+ "epoch": 34.041921397379916,
+ "grad_norm": 0.06439153105020523,
+ "learning_rate": 0.0006,
+ "loss": 2.679424524307251,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05589519650655,
+ "grad_norm": 0.06744980812072754,
+ "learning_rate": 0.0006,
+ "loss": 2.687166452407837,
+ "step": 2452
+ },
+ {
+ "epoch": 34.069868995633186,
+ "grad_norm": 0.0673324465751648,
+ "learning_rate": 0.0006,
+ "loss": 2.691007137298584,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083842794759825,
+ "grad_norm": 0.0708099827170372,
+ "learning_rate": 0.0006,
+ "loss": 2.6955928802490234,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09781659388646,
+ "grad_norm": 0.07955297082662582,
+ "learning_rate": 0.0006,
+ "loss": 2.6972296237945557,
+ "step": 2455
+ },
+ {
+ "epoch": 34.1117903930131,
+ "grad_norm": 0.08364879339933395,
+ "learning_rate": 0.0006,
+ "loss": 2.701580762863159,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12576419213974,
+ "grad_norm": 0.07912622392177582,
+ "learning_rate": 0.0006,
+ "loss": 2.7441725730895996,
+ "step": 2457
+ },
+ {
+ "epoch": 34.13973799126637,
+ "grad_norm": 0.0700681209564209,
+ "learning_rate": 0.0006,
+ "loss": 2.713972806930542,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15371179039301,
+ "grad_norm": 0.07052778452634811,
+ "learning_rate": 0.0006,
+ "loss": 2.7288241386413574,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16768558951965,
+ "grad_norm": 0.07464324682950974,
+ "learning_rate": 0.0006,
+ "loss": 2.750864028930664,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18165938864629,
+ "grad_norm": 0.07311835139989853,
+ "learning_rate": 0.0006,
+ "loss": 2.7264657020568848,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19563318777293,
+ "grad_norm": 0.06497597694396973,
+ "learning_rate": 0.0006,
+ "loss": 2.682237148284912,
+ "step": 2462
+ },
+ {
+ "epoch": 34.209606986899566,
+ "grad_norm": 0.05856176093220711,
+ "learning_rate": 0.0006,
+ "loss": 2.7529397010803223,
+ "step": 2463
+ },
+ {
+ "epoch": 34.223580786026204,
+ "grad_norm": 0.061765216290950775,
+ "learning_rate": 0.0006,
+ "loss": 2.7662041187286377,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237554585152836,
+ "grad_norm": 0.0642806887626648,
+ "learning_rate": 0.0006,
+ "loss": 2.7548298835754395,
+ "step": 2465
+ },
+ {
+ "epoch": 34.251528384279474,
+ "grad_norm": 0.06512990593910217,
+ "learning_rate": 0.0006,
+ "loss": 2.7554194927215576,
+ "step": 2466
+ },
+ {
+ "epoch": 34.26550218340611,
+ "grad_norm": 0.0589950829744339,
+ "learning_rate": 0.0006,
+ "loss": 2.769420623779297,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27947598253275,
+ "grad_norm": 0.05657818540930748,
+ "learning_rate": 0.0006,
+ "loss": 2.7650272846221924,
+ "step": 2468
+ },
+ {
+ "epoch": 34.29344978165939,
+ "grad_norm": 0.05322669446468353,
+ "learning_rate": 0.0006,
+ "loss": 2.77347993850708,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30742358078603,
+ "grad_norm": 0.05230143666267395,
+ "learning_rate": 0.0006,
+ "loss": 2.735914468765259,
+ "step": 2470
+ },
+ {
+ "epoch": 34.32139737991266,
+ "grad_norm": 0.05265705659985542,
+ "learning_rate": 0.0006,
+ "loss": 2.7812156677246094,
+ "step": 2471
+ },
+ {
+ "epoch": 34.3353711790393,
+ "grad_norm": 0.05546131730079651,
+ "learning_rate": 0.0006,
+ "loss": 2.7896432876586914,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34934497816594,
+ "grad_norm": 0.05458299443125725,
+ "learning_rate": 0.0006,
+ "loss": 2.819030284881592,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36331877729258,
+ "grad_norm": 0.05159497633576393,
+ "learning_rate": 0.0006,
+ "loss": 2.754566192626953,
+ "step": 2474
+ },
+ {
+ "epoch": 34.377292576419215,
+ "grad_norm": 0.050053127110004425,
+ "learning_rate": 0.0006,
+ "loss": 2.8089818954467773,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391266375545854,
+ "grad_norm": 0.04858779534697533,
+ "learning_rate": 0.0006,
+ "loss": 2.7998061180114746,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40524017467249,
+ "grad_norm": 0.044354405254125595,
+ "learning_rate": 0.0006,
+ "loss": 2.784242630004883,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419213973799124,
+ "grad_norm": 0.04001179337501526,
+ "learning_rate": 0.0006,
+ "loss": 2.783764362335205,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43318777292576,
+ "grad_norm": 0.04385716840624809,
+ "learning_rate": 0.0006,
+ "loss": 2.784696102142334,
+ "step": 2479
+ },
+ {
+ "epoch": 34.4471615720524,
+ "grad_norm": 0.043631598353385925,
+ "learning_rate": 0.0006,
+ "loss": 2.8201065063476562,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46113537117904,
+ "grad_norm": 0.04059017077088356,
+ "learning_rate": 0.0006,
+ "loss": 2.8026556968688965,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47510917030568,
+ "grad_norm": 0.036322809755802155,
+ "learning_rate": 0.0006,
+ "loss": 2.7829108238220215,
+ "step": 2482
+ },
+ {
+ "epoch": 34.48908296943232,
+ "grad_norm": 0.035887353122234344,
+ "learning_rate": 0.0006,
+ "loss": 2.7465004920959473,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50305676855895,
+ "grad_norm": 0.03708780184388161,
+ "learning_rate": 0.0006,
+ "loss": 2.8431384563446045,
+ "step": 2484
+ },
+ {
+ "epoch": 34.51703056768559,
+ "grad_norm": 0.03533044084906578,
+ "learning_rate": 0.0006,
+ "loss": 2.8101470470428467,
+ "step": 2485
+ },
+ {
+ "epoch": 34.531004366812226,
+ "grad_norm": 0.03405928611755371,
+ "learning_rate": 0.0006,
+ "loss": 2.7987847328186035,
+ "step": 2486
+ },
+ {
+ "epoch": 34.544978165938865,
+ "grad_norm": 0.03389867767691612,
+ "learning_rate": 0.0006,
+ "loss": 2.7919681072235107,
+ "step": 2487
+ },
+ {
+ "epoch": 34.5589519650655,
+ "grad_norm": 0.033871643245220184,
+ "learning_rate": 0.0006,
+ "loss": 2.7761473655700684,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57292576419214,
+ "grad_norm": 0.03257331997156143,
+ "learning_rate": 0.0006,
+ "loss": 2.812105894088745,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58689956331878,
+ "grad_norm": 0.03190063685178757,
+ "learning_rate": 0.0006,
+ "loss": 2.8423357009887695,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60087336244541,
+ "grad_norm": 0.031575895845890045,
+ "learning_rate": 0.0006,
+ "loss": 2.7943596839904785,
+ "step": 2491
+ },
+ {
+ "epoch": 34.61484716157205,
+ "grad_norm": 0.03200801834464073,
+ "learning_rate": 0.0006,
+ "loss": 2.8491477966308594,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62882096069869,
+ "grad_norm": 0.030606744810938835,
+ "learning_rate": 0.0006,
+ "loss": 2.813282012939453,
+ "step": 2493
+ },
+ {
+ "epoch": 34.64279475982533,
+ "grad_norm": 0.030069513246417046,
+ "learning_rate": 0.0006,
+ "loss": 2.8009464740753174,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65676855895197,
+ "grad_norm": 0.0297919362783432,
+ "learning_rate": 0.0006,
+ "loss": 2.8645522594451904,
+ "step": 2495
+ },
+ {
+ "epoch": 34.670742358078606,
+ "grad_norm": 0.03045765683054924,
+ "learning_rate": 0.0006,
+ "loss": 2.8353028297424316,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68471615720524,
+ "grad_norm": 0.030040500685572624,
+ "learning_rate": 0.0006,
+ "loss": 2.8319077491760254,
+ "step": 2497
+ },
+ {
+ "epoch": 34.698689956331876,
+ "grad_norm": 0.031257182359695435,
+ "learning_rate": 0.0006,
+ "loss": 2.834317207336426,
+ "step": 2498
+ },
+ {
+ "epoch": 34.712663755458514,
+ "grad_norm": 0.030055133625864983,
+ "learning_rate": 0.0006,
+ "loss": 2.8072402477264404,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72663755458515,
+ "grad_norm": 0.029170751571655273,
+ "learning_rate": 0.0006,
+ "loss": 2.8323609828948975,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74061135371179,
+ "grad_norm": 0.029433568939566612,
+ "learning_rate": 0.0006,
+ "loss": 2.8593740463256836,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75458515283843,
+ "grad_norm": 0.02942809648811817,
+ "learning_rate": 0.0006,
+ "loss": 2.820500373840332,
+ "step": 2502
+ },
+ {
+ "epoch": 34.76855895196506,
+ "grad_norm": 0.029914356768131256,
+ "learning_rate": 0.0006,
+ "loss": 2.834043502807617,
+ "step": 2503
+ },
+ {
+ "epoch": 34.7825327510917,
+ "grad_norm": 0.028835486620664597,
+ "learning_rate": 0.0006,
+ "loss": 2.831223487854004,
+ "step": 2504
+ },
+ {
+ "epoch": 34.79650655021834,
+ "grad_norm": 0.029353221878409386,
+ "learning_rate": 0.0006,
+ "loss": 2.841521739959717,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81048034934498,
+ "grad_norm": 0.028947100043296814,
+ "learning_rate": 0.0006,
+ "loss": 2.831580638885498,
+ "step": 2506
+ },
+ {
+ "epoch": 34.82445414847162,
+ "grad_norm": 0.028323130682110786,
+ "learning_rate": 0.0006,
+ "loss": 2.8628885746002197,
+ "step": 2507
+ },
+ {
+ "epoch": 34.838427947598255,
+ "grad_norm": 0.029734885320067406,
+ "learning_rate": 0.0006,
+ "loss": 2.854740619659424,
+ "step": 2508
+ },
+ {
+ "epoch": 34.852401746724894,
+ "grad_norm": 0.0290104690939188,
+ "learning_rate": 0.0006,
+ "loss": 2.85213041305542,
+ "step": 2509
+ },
+ {
+ "epoch": 34.866375545851525,
+ "grad_norm": 0.029280826449394226,
+ "learning_rate": 0.0006,
+ "loss": 2.857929229736328,
+ "step": 2510
+ },
+ {
+ "epoch": 34.880349344978164,
+ "grad_norm": 0.028648024424910545,
+ "learning_rate": 0.0006,
+ "loss": 2.830528736114502,
+ "step": 2511
+ },
+ {
+ "epoch": 34.8943231441048,
+ "grad_norm": 0.029075585305690765,
+ "learning_rate": 0.0006,
+ "loss": 2.881229877471924,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90829694323144,
+ "grad_norm": 0.028980575501918793,
+ "learning_rate": 0.0006,
+ "loss": 2.868142604827881,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92227074235808,
+ "grad_norm": 0.029943501576781273,
+ "learning_rate": 0.0006,
+ "loss": 2.8303728103637695,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93624454148472,
+ "grad_norm": 0.02938331663608551,
+ "learning_rate": 0.0006,
+ "loss": 2.8427226543426514,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95021834061135,
+ "grad_norm": 0.02868194319307804,
+ "learning_rate": 0.0006,
+ "loss": 2.849410057067871,
+ "step": 2516
+ },
+ {
+ "epoch": 34.96419213973799,
+ "grad_norm": 0.030948800966143608,
+ "learning_rate": 0.0006,
+ "loss": 2.884430170059204,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97816593886463,
+ "grad_norm": 0.030883876606822014,
+ "learning_rate": 0.0006,
+ "loss": 2.8707523345947266,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992139737991266,
+ "grad_norm": 0.03043620102107525,
+ "learning_rate": 0.0006,
+ "loss": 2.851923704147339,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.033082764595746994,
+ "learning_rate": 0.0006,
+ "loss": 2.8447909355163574,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 4.33588171005249,
+ "eval_runtime": 49.934,
+ "eval_samples_per_second": 48.905,
+ "eval_steps_per_second": 1.542,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397379912664,
+ "grad_norm": 0.036395180970430374,
+ "learning_rate": 0.0006,
+ "loss": 2.6331610679626465,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02794759825328,
+ "grad_norm": 0.053629934787750244,
+ "learning_rate": 0.0006,
+ "loss": 2.6128628253936768,
+ "step": 2522
+ },
+ {
+ "epoch": 35.041921397379916,
+ "grad_norm": 0.054892078042030334,
+ "learning_rate": 0.0006,
+ "loss": 2.6575927734375,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05589519650655,
+ "grad_norm": 0.05470828711986542,
+ "learning_rate": 0.0006,
+ "loss": 2.6456429958343506,
+ "step": 2524
+ },
+ {
+ "epoch": 35.069868995633186,
+ "grad_norm": 0.06473619490861893,
+ "learning_rate": 0.0006,
+ "loss": 2.632046937942505,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083842794759825,
+ "grad_norm": 0.0745120495557785,
+ "learning_rate": 0.0006,
+ "loss": 2.6917338371276855,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09781659388646,
+ "grad_norm": 0.0714118480682373,
+ "learning_rate": 0.0006,
+ "loss": 2.6786327362060547,
+ "step": 2527
+ },
+ {
+ "epoch": 35.1117903930131,
+ "grad_norm": 0.06144334003329277,
+ "learning_rate": 0.0006,
+ "loss": 2.6451380252838135,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12576419213974,
+ "grad_norm": 0.060587771236896515,
+ "learning_rate": 0.0006,
+ "loss": 2.6674041748046875,
+ "step": 2529
+ },
+ {
+ "epoch": 35.13973799126637,
+ "grad_norm": 0.06250529736280441,
+ "learning_rate": 0.0006,
+ "loss": 2.6516387462615967,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15371179039301,
+ "grad_norm": 0.06093739718198776,
+ "learning_rate": 0.0006,
+ "loss": 2.6811413764953613,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16768558951965,
+ "grad_norm": 0.05771986022591591,
+ "learning_rate": 0.0006,
+ "loss": 2.691535711288452,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18165938864629,
+ "grad_norm": 0.05855504050850868,
+ "learning_rate": 0.0006,
+ "loss": 2.665607213973999,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19563318777293,
+ "grad_norm": 0.05824999883770943,
+ "learning_rate": 0.0006,
+ "loss": 2.721041202545166,
+ "step": 2534
+ },
+ {
+ "epoch": 35.209606986899566,
+ "grad_norm": 0.053909532725811005,
+ "learning_rate": 0.0006,
+ "loss": 2.660585403442383,
+ "step": 2535
+ },
+ {
+ "epoch": 35.223580786026204,
+ "grad_norm": 0.055602360516786575,
+ "learning_rate": 0.0006,
+ "loss": 2.6967453956604004,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237554585152836,
+ "grad_norm": 0.0574912391602993,
+ "learning_rate": 0.0006,
+ "loss": 2.7239747047424316,
+ "step": 2537
+ },
+ {
+ "epoch": 35.251528384279474,
+ "grad_norm": 0.054333578795194626,
+ "learning_rate": 0.0006,
+ "loss": 2.6704535484313965,
+ "step": 2538
+ },
+ {
+ "epoch": 35.26550218340611,
+ "grad_norm": 0.05948286131024361,
+ "learning_rate": 0.0006,
+ "loss": 2.720869541168213,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27947598253275,
+ "grad_norm": 0.06190783903002739,
+ "learning_rate": 0.0006,
+ "loss": 2.721590757369995,
+ "step": 2540
+ },
+ {
+ "epoch": 35.29344978165939,
+ "grad_norm": 0.05553191900253296,
+ "learning_rate": 0.0006,
+ "loss": 2.7517542839050293,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30742358078603,
+ "grad_norm": 0.04760485514998436,
+ "learning_rate": 0.0006,
+ "loss": 2.7198104858398438,
+ "step": 2542
+ },
+ {
+ "epoch": 35.32139737991266,
+ "grad_norm": 0.04803032800555229,
+ "learning_rate": 0.0006,
+ "loss": 2.7268385887145996,
+ "step": 2543
+ },
+ {
+ "epoch": 35.3353711790393,
+ "grad_norm": 0.047935858368873596,
+ "learning_rate": 0.0006,
+ "loss": 2.766300678253174,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34934497816594,
+ "grad_norm": 0.043682098388671875,
+ "learning_rate": 0.0006,
+ "loss": 2.735440254211426,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36331877729258,
+ "grad_norm": 0.0460897758603096,
+ "learning_rate": 0.0006,
+ "loss": 2.717315912246704,
+ "step": 2546
+ },
+ {
+ "epoch": 35.377292576419215,
+ "grad_norm": 0.044396013021469116,
+ "learning_rate": 0.0006,
+ "loss": 2.7212257385253906,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391266375545854,
+ "grad_norm": 0.040433261543512344,
+ "learning_rate": 0.0006,
+ "loss": 2.723316192626953,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40524017467249,
+ "grad_norm": 0.041403185576200485,
+ "learning_rate": 0.0006,
+ "loss": 2.759697675704956,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419213973799124,
+ "grad_norm": 0.03993840515613556,
+ "learning_rate": 0.0006,
+ "loss": 2.775761604309082,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43318777292576,
+ "grad_norm": 0.03806636855006218,
+ "learning_rate": 0.0006,
+ "loss": 2.750617027282715,
+ "step": 2551
+ },
+ {
+ "epoch": 35.4471615720524,
+ "grad_norm": 0.03736311197280884,
+ "learning_rate": 0.0006,
+ "loss": 2.7172799110412598,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46113537117904,
+ "grad_norm": 0.036035846918821335,
+ "learning_rate": 0.0006,
+ "loss": 2.759298801422119,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47510917030568,
+ "grad_norm": 0.03488297760486603,
+ "learning_rate": 0.0006,
+ "loss": 2.747471809387207,
+ "step": 2554
+ },
+ {
+ "epoch": 35.48908296943232,
+ "grad_norm": 0.03363402560353279,
+ "learning_rate": 0.0006,
+ "loss": 2.759998083114624,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50305676855895,
+ "grad_norm": 0.03320737183094025,
+ "learning_rate": 0.0006,
+ "loss": 2.7580599784851074,
+ "step": 2556
+ },
+ {
+ "epoch": 35.51703056768559,
+ "grad_norm": 0.03354880213737488,
+ "learning_rate": 0.0006,
+ "loss": 2.7684097290039062,
+ "step": 2557
+ },
+ {
+ "epoch": 35.531004366812226,
+ "grad_norm": 0.03128495812416077,
+ "learning_rate": 0.0006,
+ "loss": 2.7520344257354736,
+ "step": 2558
+ },
+ {
+ "epoch": 35.544978165938865,
+ "grad_norm": 0.031224513426423073,
+ "learning_rate": 0.0006,
+ "loss": 2.770404815673828,
+ "step": 2559
+ },
+ {
+ "epoch": 35.5589519650655,
+ "grad_norm": 0.03233371675014496,
+ "learning_rate": 0.0006,
+ "loss": 2.7809855937957764,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57292576419214,
+ "grad_norm": 0.032018471509218216,
+ "learning_rate": 0.0006,
+ "loss": 2.7970263957977295,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58689956331878,
+ "grad_norm": 0.032062090933322906,
+ "learning_rate": 0.0006,
+ "loss": 2.7884416580200195,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60087336244541,
+ "grad_norm": 0.03408309072256088,
+ "learning_rate": 0.0006,
+ "loss": 2.764061450958252,
+ "step": 2563
+ },
+ {
+ "epoch": 35.61484716157205,
+ "grad_norm": 0.0338619202375412,
+ "learning_rate": 0.0006,
+ "loss": 2.789513111114502,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62882096069869,
+ "grad_norm": 0.03228410705924034,
+ "learning_rate": 0.0006,
+ "loss": 2.8063037395477295,
+ "step": 2565
+ },
+ {
+ "epoch": 35.64279475982533,
+ "grad_norm": 0.03316644951701164,
+ "learning_rate": 0.0006,
+ "loss": 2.7694640159606934,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65676855895197,
+ "grad_norm": 0.033389851450920105,
+ "learning_rate": 0.0006,
+ "loss": 2.7624075412750244,
+ "step": 2567
+ },
+ {
+ "epoch": 35.670742358078606,
+ "grad_norm": 0.03307284414768219,
+ "learning_rate": 0.0006,
+ "loss": 2.785665988922119,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68471615720524,
+ "grad_norm": 0.030986541882157326,
+ "learning_rate": 0.0006,
+ "loss": 2.7866663932800293,
+ "step": 2569
+ },
+ {
+ "epoch": 35.698689956331876,
+ "grad_norm": 0.03094528801739216,
+ "learning_rate": 0.0006,
+ "loss": 2.8076682090759277,
+ "step": 2570
+ },
+ {
+ "epoch": 35.712663755458514,
+ "grad_norm": 0.03171663358807564,
+ "learning_rate": 0.0006,
+ "loss": 2.782132148742676,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72663755458515,
+ "grad_norm": 0.0331517718732357,
+ "learning_rate": 0.0006,
+ "loss": 2.8277947902679443,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74061135371179,
+ "grad_norm": 0.03378507122397423,
+ "learning_rate": 0.0006,
+ "loss": 2.8356106281280518,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75458515283843,
+ "grad_norm": 0.032871708273887634,
+ "learning_rate": 0.0006,
+ "loss": 2.791121244430542,
+ "step": 2574
+ },
+ {
+ "epoch": 35.76855895196506,
+ "grad_norm": 0.0323161855340004,
+ "learning_rate": 0.0006,
+ "loss": 2.8413639068603516,
+ "step": 2575
+ },
+ {
+ "epoch": 35.7825327510917,
+ "grad_norm": 0.030985118821263313,
+ "learning_rate": 0.0006,
+ "loss": 2.8311750888824463,
+ "step": 2576
+ },
+ {
+ "epoch": 35.79650655021834,
+ "grad_norm": 0.03137309476733208,
+ "learning_rate": 0.0006,
+ "loss": 2.8018269538879395,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81048034934498,
+ "grad_norm": 0.0310555137693882,
+ "learning_rate": 0.0006,
+ "loss": 2.828988552093506,
+ "step": 2578
+ },
+ {
+ "epoch": 35.82445414847162,
+ "grad_norm": 0.0319097563624382,
+ "learning_rate": 0.0006,
+ "loss": 2.8161017894744873,
+ "step": 2579
+ },
+ {
+ "epoch": 35.838427947598255,
+ "grad_norm": 0.03197171911597252,
+ "learning_rate": 0.0006,
+ "loss": 2.8399734497070312,
+ "step": 2580
+ },
+ {
+ "epoch": 35.852401746724894,
+ "grad_norm": 0.030828699469566345,
+ "learning_rate": 0.0006,
+ "loss": 2.836793899536133,
+ "step": 2581
+ },
+ {
+ "epoch": 35.866375545851525,
+ "grad_norm": 0.03147060424089432,
+ "learning_rate": 0.0006,
+ "loss": 2.844219923019409,
+ "step": 2582
+ },
+ {
+ "epoch": 35.880349344978164,
+ "grad_norm": 0.02972196415066719,
+ "learning_rate": 0.0006,
+ "loss": 2.817901611328125,
+ "step": 2583
+ },
+ {
+ "epoch": 35.8943231441048,
+ "grad_norm": 0.02843536250293255,
+ "learning_rate": 0.0006,
+ "loss": 2.838104486465454,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90829694323144,
+ "grad_norm": 0.029629549011588097,
+ "learning_rate": 0.0006,
+ "loss": 2.821699857711792,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92227074235808,
+ "grad_norm": 0.02935348078608513,
+ "learning_rate": 0.0006,
+ "loss": 2.8552277088165283,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93624454148472,
+ "grad_norm": 0.029901504516601562,
+ "learning_rate": 0.0006,
+ "loss": 2.8445591926574707,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95021834061135,
+ "grad_norm": 0.029276540502905846,
+ "learning_rate": 0.0006,
+ "loss": 2.8441314697265625,
+ "step": 2588
+ },
+ {
+ "epoch": 35.96419213973799,
+ "grad_norm": 0.029745396226644516,
+ "learning_rate": 0.0006,
+ "loss": 2.896646022796631,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97816593886463,
+ "grad_norm": 0.02929696813225746,
+ "learning_rate": 0.0006,
+ "loss": 2.8974666595458984,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992139737991266,
+ "grad_norm": 0.02984563633799553,
+ "learning_rate": 0.0006,
+ "loss": 2.8272669315338135,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.03494219109416008,
+ "learning_rate": 0.0006,
+ "loss": 2.8428730964660645,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 4.369523525238037,
+ "eval_runtime": 50.0529,
+ "eval_samples_per_second": 48.788,
+ "eval_steps_per_second": 1.538,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01397379912664,
+ "grad_norm": 0.03490602225065231,
+ "learning_rate": 0.0006,
+ "loss": 2.5940639972686768,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02794759825328,
+ "grad_norm": 0.050851449370384216,
+ "learning_rate": 0.0006,
+ "loss": 2.593388557434082,
+ "step": 2594
+ },
+ {
+ "epoch": 36.041921397379916,
+ "grad_norm": 0.060013141483068466,
+ "learning_rate": 0.0006,
+ "loss": 2.6344308853149414,
+ "step": 2595
+ },
+ {
+ "epoch": 36.05589519650655,
+ "grad_norm": 0.06508053094148636,
+ "learning_rate": 0.0006,
+ "loss": 2.6312448978424072,
+ "step": 2596
+ },
+ {
+ "epoch": 36.069868995633186,
+ "grad_norm": 0.06916631013154984,
+ "learning_rate": 0.0006,
+ "loss": 2.600289821624756,
+ "step": 2597
+ },
+ {
+ "epoch": 36.083842794759825,
+ "grad_norm": 0.07091353833675385,
+ "learning_rate": 0.0006,
+ "loss": 2.609846830368042,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09781659388646,
+ "grad_norm": 0.07601680606603622,
+ "learning_rate": 0.0006,
+ "loss": 2.654294490814209,
+ "step": 2599
+ },
+ {
+ "epoch": 36.1117903930131,
+ "grad_norm": 0.07646584510803223,
+ "learning_rate": 0.0006,
+ "loss": 2.6450939178466797,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12576419213974,
+ "grad_norm": 0.07362814247608185,
+ "learning_rate": 0.0006,
+ "loss": 2.659259796142578,
+ "step": 2601
+ },
+ {
+ "epoch": 36.13973799126637,
+ "grad_norm": 0.08164925128221512,
+ "learning_rate": 0.0006,
+ "loss": 2.662081718444824,
+ "step": 2602
+ },
+ {
+ "epoch": 36.15371179039301,
+ "grad_norm": 0.08094824850559235,
+ "learning_rate": 0.0006,
+ "loss": 2.667121410369873,
+ "step": 2603
+ },
+ {
+ "epoch": 36.16768558951965,
+ "grad_norm": 0.07605643570423126,
+ "learning_rate": 0.0006,
+ "loss": 2.6883997917175293,
+ "step": 2604
+ },
+ {
+ "epoch": 36.18165938864629,
+ "grad_norm": 0.06676740944385529,
+ "learning_rate": 0.0006,
+ "loss": 2.663100242614746,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19563318777293,
+ "grad_norm": 0.0635375827550888,
+ "learning_rate": 0.0006,
+ "loss": 2.6472132205963135,
+ "step": 2606
+ },
+ {
+ "epoch": 36.209606986899566,
+ "grad_norm": 0.06065768003463745,
+ "learning_rate": 0.0006,
+ "loss": 2.6462607383728027,
+ "step": 2607
+ },
+ {
+ "epoch": 36.223580786026204,
+ "grad_norm": 0.06379321962594986,
+ "learning_rate": 0.0006,
+ "loss": 2.6894640922546387,
+ "step": 2608
+ },
+ {
+ "epoch": 36.237554585152836,
+ "grad_norm": 0.06459622085094452,
+ "learning_rate": 0.0006,
+ "loss": 2.7406561374664307,
+ "step": 2609
+ },
+ {
+ "epoch": 36.251528384279474,
+ "grad_norm": 0.06207888945937157,
+ "learning_rate": 0.0006,
+ "loss": 2.7089905738830566,
+ "step": 2610
+ },
+ {
+ "epoch": 36.26550218340611,
+ "grad_norm": 0.06348677724599838,
+ "learning_rate": 0.0006,
+ "loss": 2.725884437561035,
+ "step": 2611
+ },
+ {
+ "epoch": 36.27947598253275,
+ "grad_norm": 0.06256353110074997,
+ "learning_rate": 0.0006,
+ "loss": 2.7075743675231934,
+ "step": 2612
+ },
+ {
+ "epoch": 36.29344978165939,
+ "grad_norm": 0.05954873189330101,
+ "learning_rate": 0.0006,
+ "loss": 2.7114720344543457,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30742358078603,
+ "grad_norm": 0.0583999864757061,
+ "learning_rate": 0.0006,
+ "loss": 2.7207398414611816,
+ "step": 2614
+ },
+ {
+ "epoch": 36.32139737991266,
+ "grad_norm": 0.061629343777894974,
+ "learning_rate": 0.0006,
+ "loss": 2.7031898498535156,
+ "step": 2615
+ },
+ {
+ "epoch": 36.3353711790393,
+ "grad_norm": 0.061459898948669434,
+ "learning_rate": 0.0006,
+ "loss": 2.735596179962158,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34934497816594,
+ "grad_norm": 0.053438540548086166,
+ "learning_rate": 0.0006,
+ "loss": 2.7351770401000977,
+ "step": 2617
+ },
+ {
+ "epoch": 36.36331877729258,
+ "grad_norm": 0.04568196460604668,
+ "learning_rate": 0.0006,
+ "loss": 2.7138471603393555,
+ "step": 2618
+ },
+ {
+ "epoch": 36.377292576419215,
+ "grad_norm": 0.04499683529138565,
+ "learning_rate": 0.0006,
+ "loss": 2.730149030685425,
+ "step": 2619
+ },
+ {
+ "epoch": 36.391266375545854,
+ "grad_norm": 0.04277553781867027,
+ "learning_rate": 0.0006,
+ "loss": 2.7424325942993164,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40524017467249,
+ "grad_norm": 0.04207402467727661,
+ "learning_rate": 0.0006,
+ "loss": 2.754441261291504,
+ "step": 2621
+ },
+ {
+ "epoch": 36.419213973799124,
+ "grad_norm": 0.03976842388510704,
+ "learning_rate": 0.0006,
+ "loss": 2.732058048248291,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43318777292576,
+ "grad_norm": 0.03874991834163666,
+ "learning_rate": 0.0006,
+ "loss": 2.7042877674102783,
+ "step": 2623
+ },
+ {
+ "epoch": 36.4471615720524,
+ "grad_norm": 0.03784204646945,
+ "learning_rate": 0.0006,
+ "loss": 2.7523202896118164,
+ "step": 2624
+ },
+ {
+ "epoch": 36.46113537117904,
+ "grad_norm": 0.03787514567375183,
+ "learning_rate": 0.0006,
+ "loss": 2.738129138946533,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47510917030568,
+ "grad_norm": 0.037570249289274216,
+ "learning_rate": 0.0006,
+ "loss": 2.743746757507324,
+ "step": 2626
+ },
+ {
+ "epoch": 36.48908296943232,
+ "grad_norm": 0.035842426121234894,
+ "learning_rate": 0.0006,
+ "loss": 2.7416439056396484,
+ "step": 2627
+ },
+ {
+ "epoch": 36.50305676855895,
+ "grad_norm": 0.034818656742572784,
+ "learning_rate": 0.0006,
+ "loss": 2.7759745121002197,
+ "step": 2628
+ },
+ {
+ "epoch": 36.51703056768559,
+ "grad_norm": 0.034450169652700424,
+ "learning_rate": 0.0006,
+ "loss": 2.736292839050293,
+ "step": 2629
+ },
+ {
+ "epoch": 36.531004366812226,
+ "grad_norm": 0.03515971824526787,
+ "learning_rate": 0.0006,
+ "loss": 2.764486312866211,
+ "step": 2630
+ },
+ {
+ "epoch": 36.544978165938865,
+ "grad_norm": 0.03290434926748276,
+ "learning_rate": 0.0006,
+ "loss": 2.740506410598755,
+ "step": 2631
+ },
+ {
+ "epoch": 36.5589519650655,
+ "grad_norm": 0.03414572775363922,
+ "learning_rate": 0.0006,
+ "loss": 2.751025676727295,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57292576419214,
+ "grad_norm": 0.03288982808589935,
+ "learning_rate": 0.0006,
+ "loss": 2.745819568634033,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58689956331878,
+ "grad_norm": 0.03212651610374451,
+ "learning_rate": 0.0006,
+ "loss": 2.7716150283813477,
+ "step": 2634
+ },
+ {
+ "epoch": 36.60087336244541,
+ "grad_norm": 0.03207395225763321,
+ "learning_rate": 0.0006,
+ "loss": 2.793949604034424,
+ "step": 2635
+ },
+ {
+ "epoch": 36.61484716157205,
+ "grad_norm": 0.033769235014915466,
+ "learning_rate": 0.0006,
+ "loss": 2.769838333129883,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62882096069869,
+ "grad_norm": 0.031914398074150085,
+ "learning_rate": 0.0006,
+ "loss": 2.770416021347046,
+ "step": 2637
+ },
+ {
+ "epoch": 36.64279475982533,
+ "grad_norm": 0.031676363199949265,
+ "learning_rate": 0.0006,
+ "loss": 2.7603726387023926,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65676855895197,
+ "grad_norm": 0.03254379332065582,
+ "learning_rate": 0.0006,
+ "loss": 2.778376340866089,
+ "step": 2639
+ },
+ {
+ "epoch": 36.670742358078606,
+ "grad_norm": 0.03292303532361984,
+ "learning_rate": 0.0006,
+ "loss": 2.7858481407165527,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68471615720524,
+ "grad_norm": 0.03174275904893875,
+ "learning_rate": 0.0006,
+ "loss": 2.742514133453369,
+ "step": 2641
+ },
+ {
+ "epoch": 36.698689956331876,
+ "grad_norm": 0.03137286379933357,
+ "learning_rate": 0.0006,
+ "loss": 2.801379919052124,
+ "step": 2642
+ },
+ {
+ "epoch": 36.712663755458514,
+ "grad_norm": 0.03203504532575607,
+ "learning_rate": 0.0006,
+ "loss": 2.779083251953125,
+ "step": 2643
+ },
+ {
+ "epoch": 36.72663755458515,
+ "grad_norm": 0.03179030492901802,
+ "learning_rate": 0.0006,
+ "loss": 2.771510124206543,
+ "step": 2644
+ },
+ {
+ "epoch": 36.74061135371179,
+ "grad_norm": 0.032224394381046295,
+ "learning_rate": 0.0006,
+ "loss": 2.8102035522460938,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75458515283843,
+ "grad_norm": 0.031711332499980927,
+ "learning_rate": 0.0006,
+ "loss": 2.767608404159546,
+ "step": 2646
+ },
+ {
+ "epoch": 36.76855895196506,
+ "grad_norm": 0.03080599568784237,
+ "learning_rate": 0.0006,
+ "loss": 2.782320499420166,
+ "step": 2647
+ },
+ {
+ "epoch": 36.7825327510917,
+ "grad_norm": 0.030831260606646538,
+ "learning_rate": 0.0006,
+ "loss": 2.7803382873535156,
+ "step": 2648
+ },
+ {
+ "epoch": 36.79650655021834,
+ "grad_norm": 0.031478576362133026,
+ "learning_rate": 0.0006,
+ "loss": 2.8040833473205566,
+ "step": 2649
+ },
+ {
+ "epoch": 36.81048034934498,
+ "grad_norm": 0.03126827999949455,
+ "learning_rate": 0.0006,
+ "loss": 2.8021888732910156,
+ "step": 2650
+ },
+ {
+ "epoch": 36.82445414847162,
+ "grad_norm": 0.031755175441503525,
+ "learning_rate": 0.0006,
+ "loss": 2.8038527965545654,
+ "step": 2651
+ },
+ {
+ "epoch": 36.838427947598255,
+ "grad_norm": 0.030794523656368256,
+ "learning_rate": 0.0006,
+ "loss": 2.8320565223693848,
+ "step": 2652
+ },
+ {
+ "epoch": 36.852401746724894,
+ "grad_norm": 0.031342003494501114,
+ "learning_rate": 0.0006,
+ "loss": 2.8298325538635254,
+ "step": 2653
+ },
+ {
+ "epoch": 36.866375545851525,
+ "grad_norm": 0.03070714697241783,
+ "learning_rate": 0.0006,
+ "loss": 2.8219547271728516,
+ "step": 2654
+ },
+ {
+ "epoch": 36.880349344978164,
+ "grad_norm": 0.03040326200425625,
+ "learning_rate": 0.0006,
+ "loss": 2.8132448196411133,
+ "step": 2655
+ },
+ {
+ "epoch": 36.8943231441048,
+ "grad_norm": 0.02934376150369644,
+ "learning_rate": 0.0006,
+ "loss": 2.811267852783203,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90829694323144,
+ "grad_norm": 0.029699301347136497,
+ "learning_rate": 0.0006,
+ "loss": 2.8061418533325195,
+ "step": 2657
+ },
+ {
+ "epoch": 36.92227074235808,
+ "grad_norm": 0.029918788000941277,
+ "learning_rate": 0.0006,
+ "loss": 2.794674873352051,
+ "step": 2658
+ },
+ {
+ "epoch": 36.93624454148472,
+ "grad_norm": 0.02991834282875061,
+ "learning_rate": 0.0006,
+ "loss": 2.816540241241455,
+ "step": 2659
+ },
+ {
+ "epoch": 36.95021834061135,
+ "grad_norm": 0.03143605217337608,
+ "learning_rate": 0.0006,
+ "loss": 2.8300628662109375,
+ "step": 2660
+ },
+ {
+ "epoch": 36.96419213973799,
+ "grad_norm": 0.031110897660255432,
+ "learning_rate": 0.0006,
+ "loss": 2.8169212341308594,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97816593886463,
+ "grad_norm": 0.029465164989233017,
+ "learning_rate": 0.0006,
+ "loss": 2.8461415767669678,
+ "step": 2662
+ },
+ {
+ "epoch": 36.992139737991266,
+ "grad_norm": 0.030419915914535522,
+ "learning_rate": 0.0006,
+ "loss": 2.7931275367736816,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.035463880747556686,
+ "learning_rate": 0.0006,
+ "loss": 2.8003745079040527,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 4.394656181335449,
+ "eval_runtime": 50.0682,
+ "eval_samples_per_second": 48.773,
+ "eval_steps_per_second": 1.538,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01397379912664,
+ "grad_norm": 0.039373818784952164,
+ "learning_rate": 0.0006,
+ "loss": 2.592010259628296,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02794759825328,
+ "grad_norm": 0.05262094363570213,
+ "learning_rate": 0.0006,
+ "loss": 2.589017391204834,
+ "step": 2666
+ },
+ {
+ "epoch": 37.041921397379916,
+ "grad_norm": 0.05636955797672272,
+ "learning_rate": 0.0006,
+ "loss": 2.561220407485962,
+ "step": 2667
+ },
+ {
+ "epoch": 37.05589519650655,
+ "grad_norm": 0.051275093108415604,
+ "learning_rate": 0.0006,
+ "loss": 2.5869505405426025,
+ "step": 2668
+ },
+ {
+ "epoch": 37.069868995633186,
+ "grad_norm": 0.0468141995370388,
+ "learning_rate": 0.0006,
+ "loss": 2.553292751312256,
+ "step": 2669
+ },
+ {
+ "epoch": 37.083842794759825,
+ "grad_norm": 0.052394118160009384,
+ "learning_rate": 0.0006,
+ "loss": 2.5985684394836426,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09781659388646,
+ "grad_norm": 0.05675945058465004,
+ "learning_rate": 0.0006,
+ "loss": 2.582035779953003,
+ "step": 2671
+ },
+ {
+ "epoch": 37.1117903930131,
+ "grad_norm": 0.06314633041620255,
+ "learning_rate": 0.0006,
+ "loss": 2.580726146697998,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12576419213974,
+ "grad_norm": 0.06775114685297012,
+ "learning_rate": 0.0006,
+ "loss": 2.624112606048584,
+ "step": 2673
+ },
+ {
+ "epoch": 37.13973799126637,
+ "grad_norm": 0.06685114651918411,
+ "learning_rate": 0.0006,
+ "loss": 2.62692928314209,
+ "step": 2674
+ },
+ {
+ "epoch": 37.15371179039301,
+ "grad_norm": 0.06467496603727341,
+ "learning_rate": 0.0006,
+ "loss": 2.6223182678222656,
+ "step": 2675
+ },
+ {
+ "epoch": 37.16768558951965,
+ "grad_norm": 0.06089473515748978,
+ "learning_rate": 0.0006,
+ "loss": 2.5847854614257812,
+ "step": 2676
+ },
+ {
+ "epoch": 37.18165938864629,
+ "grad_norm": 0.07048582285642624,
+ "learning_rate": 0.0006,
+ "loss": 2.638550043106079,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19563318777293,
+ "grad_norm": 0.078424371778965,
+ "learning_rate": 0.0006,
+ "loss": 2.6740827560424805,
+ "step": 2678
+ },
+ {
+ "epoch": 37.209606986899566,
+ "grad_norm": 0.0736483484506607,
+ "learning_rate": 0.0006,
+ "loss": 2.628920078277588,
+ "step": 2679
+ },
+ {
+ "epoch": 37.223580786026204,
+ "grad_norm": 0.07170230895280838,
+ "learning_rate": 0.0006,
+ "loss": 2.6470746994018555,
+ "step": 2680
+ },
+ {
+ "epoch": 37.237554585152836,
+ "grad_norm": 0.07302328944206238,
+ "learning_rate": 0.0006,
+ "loss": 2.668698310852051,
+ "step": 2681
+ },
+ {
+ "epoch": 37.251528384279474,
+ "grad_norm": 0.06811188161373138,
+ "learning_rate": 0.0006,
+ "loss": 2.661168336868286,
+ "step": 2682
+ },
+ {
+ "epoch": 37.26550218340611,
+ "grad_norm": 0.06356747448444366,
+ "learning_rate": 0.0006,
+ "loss": 2.6648004055023193,
+ "step": 2683
+ },
+ {
+ "epoch": 37.27947598253275,
+ "grad_norm": 0.06473492085933685,
+ "learning_rate": 0.0006,
+ "loss": 2.651553153991699,
+ "step": 2684
+ },
+ {
+ "epoch": 37.29344978165939,
+ "grad_norm": 0.06337012350559235,
+ "learning_rate": 0.0006,
+ "loss": 2.709005832672119,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30742358078603,
+ "grad_norm": 0.058579571545124054,
+ "learning_rate": 0.0006,
+ "loss": 2.6779019832611084,
+ "step": 2686
+ },
+ {
+ "epoch": 37.32139737991266,
+ "grad_norm": 0.059343740344047546,
+ "learning_rate": 0.0006,
+ "loss": 2.6886844635009766,
+ "step": 2687
+ },
+ {
+ "epoch": 37.3353711790393,
+ "grad_norm": 0.0641576424241066,
+ "learning_rate": 0.0006,
+ "loss": 2.713414192199707,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34934497816594,
+ "grad_norm": 0.05990339443087578,
+ "learning_rate": 0.0006,
+ "loss": 2.7016336917877197,
+ "step": 2689
+ },
+ {
+ "epoch": 37.36331877729258,
+ "grad_norm": 0.055855415761470795,
+ "learning_rate": 0.0006,
+ "loss": 2.6898298263549805,
+ "step": 2690
+ },
+ {
+ "epoch": 37.377292576419215,
+ "grad_norm": 0.052080344408750534,
+ "learning_rate": 0.0006,
+ "loss": 2.6867756843566895,
+ "step": 2691
+ },
+ {
+ "epoch": 37.391266375545854,
+ "grad_norm": 0.04859146848320961,
+ "learning_rate": 0.0006,
+ "loss": 2.68493390083313,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40524017467249,
+ "grad_norm": 0.04352935776114464,
+ "learning_rate": 0.0006,
+ "loss": 2.6639962196350098,
+ "step": 2693
+ },
+ {
+ "epoch": 37.419213973799124,
+ "grad_norm": 0.04342535510659218,
+ "learning_rate": 0.0006,
+ "loss": 2.735095977783203,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43318777292576,
+ "grad_norm": 0.0410088449716568,
+ "learning_rate": 0.0006,
+ "loss": 2.7232322692871094,
+ "step": 2695
+ },
+ {
+ "epoch": 37.4471615720524,
+ "grad_norm": 0.039221733808517456,
+ "learning_rate": 0.0006,
+ "loss": 2.7050681114196777,
+ "step": 2696
+ },
+ {
+ "epoch": 37.46113537117904,
+ "grad_norm": 0.04178847372531891,
+ "learning_rate": 0.0006,
+ "loss": 2.724748134613037,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47510917030568,
+ "grad_norm": 0.039962198585271835,
+ "learning_rate": 0.0006,
+ "loss": 2.719238758087158,
+ "step": 2698
+ },
+ {
+ "epoch": 37.48908296943232,
+ "grad_norm": 0.03615671768784523,
+ "learning_rate": 0.0006,
+ "loss": 2.713306427001953,
+ "step": 2699
+ },
+ {
+ "epoch": 37.50305676855895,
+ "grad_norm": 0.036234475672245026,
+ "learning_rate": 0.0006,
+ "loss": 2.7221012115478516,
+ "step": 2700
+ },
+ {
+ "epoch": 37.51703056768559,
+ "grad_norm": 0.03482469543814659,
+ "learning_rate": 0.0006,
+ "loss": 2.7185797691345215,
+ "step": 2701
+ },
+ {
+ "epoch": 37.531004366812226,
+ "grad_norm": 0.0354674831032753,
+ "learning_rate": 0.0006,
+ "loss": 2.7420835494995117,
+ "step": 2702
+ },
+ {
+ "epoch": 37.544978165938865,
+ "grad_norm": 0.03426757827401161,
+ "learning_rate": 0.0006,
+ "loss": 2.7190346717834473,
+ "step": 2703
+ },
+ {
+ "epoch": 37.5589519650655,
+ "grad_norm": 0.033486198633909225,
+ "learning_rate": 0.0006,
+ "loss": 2.7215936183929443,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57292576419214,
+ "grad_norm": 0.03335055336356163,
+ "learning_rate": 0.0006,
+ "loss": 2.756931781768799,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58689956331878,
+ "grad_norm": 0.032623328268527985,
+ "learning_rate": 0.0006,
+ "loss": 2.753610849380493,
+ "step": 2706
+ },
+ {
+ "epoch": 37.60087336244541,
+ "grad_norm": 0.032821573317050934,
+ "learning_rate": 0.0006,
+ "loss": 2.7263944149017334,
+ "step": 2707
+ },
+ {
+ "epoch": 37.61484716157205,
+ "grad_norm": 0.0339694619178772,
+ "learning_rate": 0.0006,
+ "loss": 2.7686405181884766,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62882096069869,
+ "grad_norm": 0.03282426670193672,
+ "learning_rate": 0.0006,
+ "loss": 2.747377634048462,
+ "step": 2709
+ },
+ {
+ "epoch": 37.64279475982533,
+ "grad_norm": 0.03218618035316467,
+ "learning_rate": 0.0006,
+ "loss": 2.735844850540161,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65676855895197,
+ "grad_norm": 0.03223560005426407,
+ "learning_rate": 0.0006,
+ "loss": 2.7668800354003906,
+ "step": 2711
+ },
+ {
+ "epoch": 37.670742358078606,
+ "grad_norm": 0.033299706876277924,
+ "learning_rate": 0.0006,
+ "loss": 2.7376902103424072,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68471615720524,
+ "grad_norm": 0.03223729878664017,
+ "learning_rate": 0.0006,
+ "loss": 2.764571189880371,
+ "step": 2713
+ },
+ {
+ "epoch": 37.698689956331876,
+ "grad_norm": 0.03010910004377365,
+ "learning_rate": 0.0006,
+ "loss": 2.807518482208252,
+ "step": 2714
+ },
+ {
+ "epoch": 37.712663755458514,
+ "grad_norm": 0.032127492129802704,
+ "learning_rate": 0.0006,
+ "loss": 2.748624801635742,
+ "step": 2715
+ },
+ {
+ "epoch": 37.72663755458515,
+ "grad_norm": 0.03201155364513397,
+ "learning_rate": 0.0006,
+ "loss": 2.7762606143951416,
+ "step": 2716
+ },
+ {
+ "epoch": 37.74061135371179,
+ "grad_norm": 0.03101099096238613,
+ "learning_rate": 0.0006,
+ "loss": 2.7716212272644043,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75458515283843,
+ "grad_norm": 0.03134670853614807,
+ "learning_rate": 0.0006,
+ "loss": 2.758235216140747,
+ "step": 2718
+ },
+ {
+ "epoch": 37.76855895196506,
+ "grad_norm": 0.03176133707165718,
+ "learning_rate": 0.0006,
+ "loss": 2.766803741455078,
+ "step": 2719
+ },
+ {
+ "epoch": 37.7825327510917,
+ "grad_norm": 0.03252684697508812,
+ "learning_rate": 0.0006,
+ "loss": 2.761983871459961,
+ "step": 2720
+ },
+ {
+ "epoch": 37.79650655021834,
+ "grad_norm": 0.03122265450656414,
+ "learning_rate": 0.0006,
+ "loss": 2.7825980186462402,
+ "step": 2721
+ },
+ {
+ "epoch": 37.81048034934498,
+ "grad_norm": 0.031970955431461334,
+ "learning_rate": 0.0006,
+ "loss": 2.7722127437591553,
+ "step": 2722
+ },
+ {
+ "epoch": 37.82445414847162,
+ "grad_norm": 0.032369960099458694,
+ "learning_rate": 0.0006,
+ "loss": 2.774726390838623,
+ "step": 2723
+ },
+ {
+ "epoch": 37.838427947598255,
+ "grad_norm": 0.030761610716581345,
+ "learning_rate": 0.0006,
+ "loss": 2.792672872543335,
+ "step": 2724
+ },
+ {
+ "epoch": 37.852401746724894,
+ "grad_norm": 0.030011910945177078,
+ "learning_rate": 0.0006,
+ "loss": 2.803577423095703,
+ "step": 2725
+ },
+ {
+ "epoch": 37.866375545851525,
+ "grad_norm": 0.02982843853533268,
+ "learning_rate": 0.0006,
+ "loss": 2.7959346771240234,
+ "step": 2726
+ },
+ {
+ "epoch": 37.880349344978164,
+ "grad_norm": 0.030303213745355606,
+ "learning_rate": 0.0006,
+ "loss": 2.7652835845947266,
+ "step": 2727
+ },
+ {
+ "epoch": 37.8943231441048,
+ "grad_norm": 0.0287516750395298,
+ "learning_rate": 0.0006,
+ "loss": 2.764218807220459,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90829694323144,
+ "grad_norm": 0.029441531747579575,
+ "learning_rate": 0.0006,
+ "loss": 2.779582977294922,
+ "step": 2729
+ },
+ {
+ "epoch": 37.92227074235808,
+ "grad_norm": 0.03061698004603386,
+ "learning_rate": 0.0006,
+ "loss": 2.7803516387939453,
+ "step": 2730
+ },
+ {
+ "epoch": 37.93624454148472,
+ "grad_norm": 0.030252723023295403,
+ "learning_rate": 0.0006,
+ "loss": 2.7625863552093506,
+ "step": 2731
+ },
+ {
+ "epoch": 37.95021834061135,
+ "grad_norm": 0.02976156584918499,
+ "learning_rate": 0.0006,
+ "loss": 2.7869396209716797,
+ "step": 2732
+ },
+ {
+ "epoch": 37.96419213973799,
+ "grad_norm": 0.029136599972844124,
+ "learning_rate": 0.0006,
+ "loss": 2.7765321731567383,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97816593886463,
+ "grad_norm": 0.030161233618855476,
+ "learning_rate": 0.0006,
+ "loss": 2.791417360305786,
+ "step": 2734
+ },
+ {
+ "epoch": 37.992139737991266,
+ "grad_norm": 0.030011065304279327,
+ "learning_rate": 0.0006,
+ "loss": 2.7904176712036133,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.03508797287940979,
+ "learning_rate": 0.0006,
+ "loss": 2.7349987030029297,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 4.422760486602783,
+ "eval_runtime": 53.9373,
+ "eval_samples_per_second": 45.275,
+ "eval_steps_per_second": 1.428,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01397379912664,
+ "grad_norm": 0.03668081387877464,
+ "learning_rate": 0.0006,
+ "loss": 2.53720760345459,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02794759825328,
+ "grad_norm": 0.04997535049915314,
+ "learning_rate": 0.0006,
+ "loss": 2.5344130992889404,
+ "step": 2738
+ },
+ {
+ "epoch": 38.041921397379916,
+ "grad_norm": 0.05997481942176819,
+ "learning_rate": 0.0006,
+ "loss": 2.5450313091278076,
+ "step": 2739
+ },
+ {
+ "epoch": 38.05589519650655,
+ "grad_norm": 0.062439143657684326,
+ "learning_rate": 0.0006,
+ "loss": 2.5441112518310547,
+ "step": 2740
+ },
+ {
+ "epoch": 38.069868995633186,
+ "grad_norm": 0.06186581030488014,
+ "learning_rate": 0.0006,
+ "loss": 2.572591781616211,
+ "step": 2741
+ },
+ {
+ "epoch": 38.083842794759825,
+ "grad_norm": 0.0676693245768547,
+ "learning_rate": 0.0006,
+ "loss": 2.569788932800293,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09781659388646,
+ "grad_norm": 0.06468940526247025,
+ "learning_rate": 0.0006,
+ "loss": 2.5714502334594727,
+ "step": 2743
+ },
+ {
+ "epoch": 38.1117903930131,
+ "grad_norm": 0.055295590311288834,
+ "learning_rate": 0.0006,
+ "loss": 2.58925199508667,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12576419213974,
+ "grad_norm": 0.06001334637403488,
+ "learning_rate": 0.0006,
+ "loss": 2.583470582962036,
+ "step": 2745
+ },
+ {
+ "epoch": 38.13973799126637,
+ "grad_norm": 0.06829231232404709,
+ "learning_rate": 0.0006,
+ "loss": 2.6078848838806152,
+ "step": 2746
+ },
+ {
+ "epoch": 38.15371179039301,
+ "grad_norm": 0.07044653594493866,
+ "learning_rate": 0.0006,
+ "loss": 2.5761101245880127,
+ "step": 2747
+ },
+ {
+ "epoch": 38.16768558951965,
+ "grad_norm": 0.07410730421543121,
+ "learning_rate": 0.0006,
+ "loss": 2.596060276031494,
+ "step": 2748
+ },
+ {
+ "epoch": 38.18165938864629,
+ "grad_norm": 0.07986581325531006,
+ "learning_rate": 0.0006,
+ "loss": 2.617733955383301,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19563318777293,
+ "grad_norm": 0.08090859651565552,
+ "learning_rate": 0.0006,
+ "loss": 2.651851177215576,
+ "step": 2750
+ },
+ {
+ "epoch": 38.209606986899566,
+ "grad_norm": 0.0723685622215271,
+ "learning_rate": 0.0006,
+ "loss": 2.6376562118530273,
+ "step": 2751
+ },
+ {
+ "epoch": 38.223580786026204,
+ "grad_norm": 0.06757329404354095,
+ "learning_rate": 0.0006,
+ "loss": 2.6036531925201416,
+ "step": 2752
+ },
+ {
+ "epoch": 38.237554585152836,
+ "grad_norm": 0.05956781655550003,
+ "learning_rate": 0.0006,
+ "loss": 2.617344379425049,
+ "step": 2753
+ },
+ {
+ "epoch": 38.251528384279474,
+ "grad_norm": 0.05907238647341728,
+ "learning_rate": 0.0006,
+ "loss": 2.6348252296447754,
+ "step": 2754
+ },
+ {
+ "epoch": 38.26550218340611,
+ "grad_norm": 0.0665246993303299,
+ "learning_rate": 0.0006,
+ "loss": 2.6281394958496094,
+ "step": 2755
+ },
+ {
+ "epoch": 38.27947598253275,
+ "grad_norm": 0.06223048269748688,
+ "learning_rate": 0.0006,
+ "loss": 2.6564953327178955,
+ "step": 2756
+ },
+ {
+ "epoch": 38.29344978165939,
+ "grad_norm": 0.06228935718536377,
+ "learning_rate": 0.0006,
+ "loss": 2.646735429763794,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30742358078603,
+ "grad_norm": 0.06451544910669327,
+ "learning_rate": 0.0006,
+ "loss": 2.6907505989074707,
+ "step": 2758
+ },
+ {
+ "epoch": 38.32139737991266,
+ "grad_norm": 0.060543883591890335,
+ "learning_rate": 0.0006,
+ "loss": 2.6545357704162598,
+ "step": 2759
+ },
+ {
+ "epoch": 38.3353711790393,
+ "grad_norm": 0.06213623657822609,
+ "learning_rate": 0.0006,
+ "loss": 2.6602659225463867,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34934497816594,
+ "grad_norm": 0.06142106652259827,
+ "learning_rate": 0.0006,
+ "loss": 2.6603493690490723,
+ "step": 2761
+ },
+ {
+ "epoch": 38.36331877729258,
+ "grad_norm": 0.05699477344751358,
+ "learning_rate": 0.0006,
+ "loss": 2.705566883087158,
+ "step": 2762
+ },
+ {
+ "epoch": 38.377292576419215,
+ "grad_norm": 0.05346331000328064,
+ "learning_rate": 0.0006,
+ "loss": 2.6819496154785156,
+ "step": 2763
+ },
+ {
+ "epoch": 38.391266375545854,
+ "grad_norm": 0.0479198656976223,
+ "learning_rate": 0.0006,
+ "loss": 2.66951847076416,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40524017467249,
+ "grad_norm": 0.045958783477544785,
+ "learning_rate": 0.0006,
+ "loss": 2.6856331825256348,
+ "step": 2765
+ },
+ {
+ "epoch": 38.419213973799124,
+ "grad_norm": 0.04896858334541321,
+ "learning_rate": 0.0006,
+ "loss": 2.7199149131774902,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43318777292576,
+ "grad_norm": 0.047721102833747864,
+ "learning_rate": 0.0006,
+ "loss": 2.6921496391296387,
+ "step": 2767
+ },
+ {
+ "epoch": 38.4471615720524,
+ "grad_norm": 0.04214667156338692,
+ "learning_rate": 0.0006,
+ "loss": 2.6727256774902344,
+ "step": 2768
+ },
+ {
+ "epoch": 38.46113537117904,
+ "grad_norm": 0.039888642728328705,
+ "learning_rate": 0.0006,
+ "loss": 2.713071584701538,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47510917030568,
+ "grad_norm": 0.038344573229551315,
+ "learning_rate": 0.0006,
+ "loss": 2.670497417449951,
+ "step": 2770
+ },
+ {
+ "epoch": 38.48908296943232,
+ "grad_norm": 0.039165955036878586,
+ "learning_rate": 0.0006,
+ "loss": 2.6962404251098633,
+ "step": 2771
+ },
+ {
+ "epoch": 38.50305676855895,
+ "grad_norm": 0.04007214680314064,
+ "learning_rate": 0.0006,
+ "loss": 2.708710193634033,
+ "step": 2772
+ },
+ {
+ "epoch": 38.51703056768559,
+ "grad_norm": 0.03807772323489189,
+ "learning_rate": 0.0006,
+ "loss": 2.6834216117858887,
+ "step": 2773
+ },
+ {
+ "epoch": 38.531004366812226,
+ "grad_norm": 0.03653077036142349,
+ "learning_rate": 0.0006,
+ "loss": 2.7046523094177246,
+ "step": 2774
+ },
+ {
+ "epoch": 38.544978165938865,
+ "grad_norm": 0.03634301573038101,
+ "learning_rate": 0.0006,
+ "loss": 2.740858554840088,
+ "step": 2775
+ },
+ {
+ "epoch": 38.5589519650655,
+ "grad_norm": 0.03424578905105591,
+ "learning_rate": 0.0006,
+ "loss": 2.682713747024536,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57292576419214,
+ "grad_norm": 0.0343807190656662,
+ "learning_rate": 0.0006,
+ "loss": 2.7189817428588867,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58689956331878,
+ "grad_norm": 0.0348835363984108,
+ "learning_rate": 0.0006,
+ "loss": 2.724893569946289,
+ "step": 2778
+ },
+ {
+ "epoch": 38.60087336244541,
+ "grad_norm": 0.03508136048913002,
+ "learning_rate": 0.0006,
+ "loss": 2.73518705368042,
+ "step": 2779
+ },
+ {
+ "epoch": 38.61484716157205,
+ "grad_norm": 0.03429904207587242,
+ "learning_rate": 0.0006,
+ "loss": 2.736717939376831,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62882096069869,
+ "grad_norm": 0.03205183520913124,
+ "learning_rate": 0.0006,
+ "loss": 2.721712589263916,
+ "step": 2781
+ },
+ {
+ "epoch": 38.64279475982533,
+ "grad_norm": 0.03305064141750336,
+ "learning_rate": 0.0006,
+ "loss": 2.6993613243103027,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65676855895197,
+ "grad_norm": 0.035046663135290146,
+ "learning_rate": 0.0006,
+ "loss": 2.7248196601867676,
+ "step": 2783
+ },
+ {
+ "epoch": 38.670742358078606,
+ "grad_norm": 0.03516519442200661,
+ "learning_rate": 0.0006,
+ "loss": 2.7311136722564697,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68471615720524,
+ "grad_norm": 0.03347651660442352,
+ "learning_rate": 0.0006,
+ "loss": 2.72220778465271,
+ "step": 2785
+ },
+ {
+ "epoch": 38.698689956331876,
+ "grad_norm": 0.032616935670375824,
+ "learning_rate": 0.0006,
+ "loss": 2.755411148071289,
+ "step": 2786
+ },
+ {
+ "epoch": 38.712663755458514,
+ "grad_norm": 0.033312223851680756,
+ "learning_rate": 0.0006,
+ "loss": 2.732534885406494,
+ "step": 2787
+ },
+ {
+ "epoch": 38.72663755458515,
+ "grad_norm": 0.033402036875486374,
+ "learning_rate": 0.0006,
+ "loss": 2.7253611087799072,
+ "step": 2788
+ },
+ {
+ "epoch": 38.74061135371179,
+ "grad_norm": 0.03428902477025986,
+ "learning_rate": 0.0006,
+ "loss": 2.7514877319335938,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75458515283843,
+ "grad_norm": 0.032412827014923096,
+ "learning_rate": 0.0006,
+ "loss": 2.7110795974731445,
+ "step": 2790
+ },
+ {
+ "epoch": 38.76855895196506,
+ "grad_norm": 0.03287288919091225,
+ "learning_rate": 0.0006,
+ "loss": 2.7271571159362793,
+ "step": 2791
+ },
+ {
+ "epoch": 38.7825327510917,
+ "grad_norm": 0.032132744789123535,
+ "learning_rate": 0.0006,
+ "loss": 2.7556326389312744,
+ "step": 2792
+ },
+ {
+ "epoch": 38.79650655021834,
+ "grad_norm": 0.03317050263285637,
+ "learning_rate": 0.0006,
+ "loss": 2.7323567867279053,
+ "step": 2793
+ },
+ {
+ "epoch": 38.81048034934498,
+ "grad_norm": 0.032200053334236145,
+ "learning_rate": 0.0006,
+ "loss": 2.7799339294433594,
+ "step": 2794
+ },
+ {
+ "epoch": 38.82445414847162,
+ "grad_norm": 0.03184610605239868,
+ "learning_rate": 0.0006,
+ "loss": 2.749330520629883,
+ "step": 2795
+ },
+ {
+ "epoch": 38.838427947598255,
+ "grad_norm": 0.03251924365758896,
+ "learning_rate": 0.0006,
+ "loss": 2.7194664478302,
+ "step": 2796
+ },
+ {
+ "epoch": 38.852401746724894,
+ "grad_norm": 0.03341902419924736,
+ "learning_rate": 0.0006,
+ "loss": 2.7730190753936768,
+ "step": 2797
+ },
+ {
+ "epoch": 38.866375545851525,
+ "grad_norm": 0.03277548775076866,
+ "learning_rate": 0.0006,
+ "loss": 2.748821258544922,
+ "step": 2798
+ },
+ {
+ "epoch": 38.880349344978164,
+ "grad_norm": 0.033009354025125504,
+ "learning_rate": 0.0006,
+ "loss": 2.7735595703125,
+ "step": 2799
+ },
+ {
+ "epoch": 38.8943231441048,
+ "grad_norm": 0.033856526017189026,
+ "learning_rate": 0.0006,
+ "loss": 2.828324794769287,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90829694323144,
+ "grad_norm": 0.03593005985021591,
+ "learning_rate": 0.0006,
+ "loss": 2.7579283714294434,
+ "step": 2801
+ },
+ {
+ "epoch": 38.92227074235808,
+ "grad_norm": 0.03454919904470444,
+ "learning_rate": 0.0006,
+ "loss": 2.7957282066345215,
+ "step": 2802
+ },
+ {
+ "epoch": 38.93624454148472,
+ "grad_norm": 0.03228568285703659,
+ "learning_rate": 0.0006,
+ "loss": 2.7695181369781494,
+ "step": 2803
+ },
+ {
+ "epoch": 38.95021834061135,
+ "grad_norm": 0.030785217881202698,
+ "learning_rate": 0.0006,
+ "loss": 2.7762393951416016,
+ "step": 2804
+ },
+ {
+ "epoch": 38.96419213973799,
+ "grad_norm": 0.03203628957271576,
+ "learning_rate": 0.0006,
+ "loss": 2.7768611907958984,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97816593886463,
+ "grad_norm": 0.031972482800483704,
+ "learning_rate": 0.0006,
+ "loss": 2.7826151847839355,
+ "step": 2806
+ },
+ {
+ "epoch": 38.992139737991266,
+ "grad_norm": 0.03173843398690224,
+ "learning_rate": 0.0006,
+ "loss": 2.8008720874786377,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.03597976267337799,
+ "learning_rate": 0.0006,
+ "loss": 2.761889934539795,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 4.451672077178955,
+ "eval_runtime": 50.0424,
+ "eval_samples_per_second": 48.799,
+ "eval_steps_per_second": 1.539,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01397379912664,
+ "grad_norm": 0.035917509347200394,
+ "learning_rate": 0.0006,
+ "loss": 2.5109643936157227,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02794759825328,
+ "grad_norm": 0.048883527517318726,
+ "learning_rate": 0.0006,
+ "loss": 2.4966325759887695,
+ "step": 2810
+ },
+ {
+ "epoch": 39.041921397379916,
+ "grad_norm": 0.0520956926047802,
+ "learning_rate": 0.0006,
+ "loss": 2.5114963054656982,
+ "step": 2811
+ },
+ {
+ "epoch": 39.05589519650655,
+ "grad_norm": 0.05243239551782608,
+ "learning_rate": 0.0006,
+ "loss": 2.509138584136963,
+ "step": 2812
+ },
+ {
+ "epoch": 39.069868995633186,
+ "grad_norm": 0.05494685098528862,
+ "learning_rate": 0.0006,
+ "loss": 2.5110630989074707,
+ "step": 2813
+ },
+ {
+ "epoch": 39.083842794759825,
+ "grad_norm": 0.05914803221821785,
+ "learning_rate": 0.0006,
+ "loss": 2.582940101623535,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09781659388646,
+ "grad_norm": 0.06418700516223907,
+ "learning_rate": 0.0006,
+ "loss": 2.549758195877075,
+ "step": 2815
+ },
+ {
+ "epoch": 39.1117903930131,
+ "grad_norm": 0.06571007519960403,
+ "learning_rate": 0.0006,
+ "loss": 2.5406949520111084,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12576419213974,
+ "grad_norm": 0.06867309659719467,
+ "learning_rate": 0.0006,
+ "loss": 2.5541300773620605,
+ "step": 2817
+ },
+ {
+ "epoch": 39.13973799126637,
+ "grad_norm": 0.07403446733951569,
+ "learning_rate": 0.0006,
+ "loss": 2.543792963027954,
+ "step": 2818
+ },
+ {
+ "epoch": 39.15371179039301,
+ "grad_norm": 0.07405679672956467,
+ "learning_rate": 0.0006,
+ "loss": 2.6033244132995605,
+ "step": 2819
+ },
+ {
+ "epoch": 39.16768558951965,
+ "grad_norm": 0.07382416725158691,
+ "learning_rate": 0.0006,
+ "loss": 2.554922580718994,
+ "step": 2820
+ },
+ {
+ "epoch": 39.18165938864629,
+ "grad_norm": 0.07891468703746796,
+ "learning_rate": 0.0006,
+ "loss": 2.540740489959717,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19563318777293,
+ "grad_norm": 0.08196107298135757,
+ "learning_rate": 0.0006,
+ "loss": 2.587352752685547,
+ "step": 2822
+ },
+ {
+ "epoch": 39.209606986899566,
+ "grad_norm": 0.08047913014888763,
+ "learning_rate": 0.0006,
+ "loss": 2.625654935836792,
+ "step": 2823
+ },
+ {
+ "epoch": 39.223580786026204,
+ "grad_norm": 0.0823366791009903,
+ "learning_rate": 0.0006,
+ "loss": 2.6116280555725098,
+ "step": 2824
+ },
+ {
+ "epoch": 39.237554585152836,
+ "grad_norm": 0.0757770836353302,
+ "learning_rate": 0.0006,
+ "loss": 2.6480040550231934,
+ "step": 2825
+ },
+ {
+ "epoch": 39.251528384279474,
+ "grad_norm": 0.06412673741579056,
+ "learning_rate": 0.0006,
+ "loss": 2.630819082260132,
+ "step": 2826
+ },
+ {
+ "epoch": 39.26550218340611,
+ "grad_norm": 0.06720094382762909,
+ "learning_rate": 0.0006,
+ "loss": 2.6194870471954346,
+ "step": 2827
+ },
+ {
+ "epoch": 39.27947598253275,
+ "grad_norm": 0.07029621303081512,
+ "learning_rate": 0.0006,
+ "loss": 2.6223702430725098,
+ "step": 2828
+ },
+ {
+ "epoch": 39.29344978165939,
+ "grad_norm": 0.06339625269174576,
+ "learning_rate": 0.0006,
+ "loss": 2.673099994659424,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30742358078603,
+ "grad_norm": 0.05949276313185692,
+ "learning_rate": 0.0006,
+ "loss": 2.6469547748565674,
+ "step": 2830
+ },
+ {
+ "epoch": 39.32139737991266,
+ "grad_norm": 0.053506240248680115,
+ "learning_rate": 0.0006,
+ "loss": 2.653002977371216,
+ "step": 2831
+ },
+ {
+ "epoch": 39.3353711790393,
+ "grad_norm": 0.05102718994021416,
+ "learning_rate": 0.0006,
+ "loss": 2.6284027099609375,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34934497816594,
+ "grad_norm": 0.05140380188822746,
+ "learning_rate": 0.0006,
+ "loss": 2.6136865615844727,
+ "step": 2833
+ },
+ {
+ "epoch": 39.36331877729258,
+ "grad_norm": 0.05189013481140137,
+ "learning_rate": 0.0006,
+ "loss": 2.624032974243164,
+ "step": 2834
+ },
+ {
+ "epoch": 39.377292576419215,
+ "grad_norm": 0.0518079474568367,
+ "learning_rate": 0.0006,
+ "loss": 2.6563472747802734,
+ "step": 2835
+ },
+ {
+ "epoch": 39.391266375545854,
+ "grad_norm": 0.048856109380722046,
+ "learning_rate": 0.0006,
+ "loss": 2.6669912338256836,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40524017467249,
+ "grad_norm": 0.04633012041449547,
+ "learning_rate": 0.0006,
+ "loss": 2.6586191654205322,
+ "step": 2837
+ },
+ {
+ "epoch": 39.419213973799124,
+ "grad_norm": 0.04814019426703453,
+ "learning_rate": 0.0006,
+ "loss": 2.667342185974121,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43318777292576,
+ "grad_norm": 0.0436280220746994,
+ "learning_rate": 0.0006,
+ "loss": 2.665431499481201,
+ "step": 2839
+ },
+ {
+ "epoch": 39.4471615720524,
+ "grad_norm": 0.041196923702955246,
+ "learning_rate": 0.0006,
+ "loss": 2.6492676734924316,
+ "step": 2840
+ },
+ {
+ "epoch": 39.46113537117904,
+ "grad_norm": 0.0395592525601387,
+ "learning_rate": 0.0006,
+ "loss": 2.6705574989318848,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47510917030568,
+ "grad_norm": 0.0385267548263073,
+ "learning_rate": 0.0006,
+ "loss": 2.6977322101593018,
+ "step": 2842
+ },
+ {
+ "epoch": 39.48908296943232,
+ "grad_norm": 0.039683643728494644,
+ "learning_rate": 0.0006,
+ "loss": 2.7133736610412598,
+ "step": 2843
+ },
+ {
+ "epoch": 39.50305676855895,
+ "grad_norm": 0.038295429199934006,
+ "learning_rate": 0.0006,
+ "loss": 2.6389265060424805,
+ "step": 2844
+ },
+ {
+ "epoch": 39.51703056768559,
+ "grad_norm": 0.040176548063755035,
+ "learning_rate": 0.0006,
+ "loss": 2.698523998260498,
+ "step": 2845
+ },
+ {
+ "epoch": 39.531004366812226,
+ "grad_norm": 0.04064524546265602,
+ "learning_rate": 0.0006,
+ "loss": 2.656214952468872,
+ "step": 2846
+ },
+ {
+ "epoch": 39.544978165938865,
+ "grad_norm": 0.03750603273510933,
+ "learning_rate": 0.0006,
+ "loss": 2.678588628768921,
+ "step": 2847
+ },
+ {
+ "epoch": 39.5589519650655,
+ "grad_norm": 0.035905614495277405,
+ "learning_rate": 0.0006,
+ "loss": 2.704439640045166,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57292576419214,
+ "grad_norm": 0.039338648319244385,
+ "learning_rate": 0.0006,
+ "loss": 2.6884841918945312,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58689956331878,
+ "grad_norm": 0.04038030281662941,
+ "learning_rate": 0.0006,
+ "loss": 2.6797773838043213,
+ "step": 2850
+ },
+ {
+ "epoch": 39.60087336244541,
+ "grad_norm": 0.037040162831544876,
+ "learning_rate": 0.0006,
+ "loss": 2.6956043243408203,
+ "step": 2851
+ },
+ {
+ "epoch": 39.61484716157205,
+ "grad_norm": 0.034921690821647644,
+ "learning_rate": 0.0006,
+ "loss": 2.694153308868408,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62882096069869,
+ "grad_norm": 0.03549359738826752,
+ "learning_rate": 0.0006,
+ "loss": 2.7244749069213867,
+ "step": 2853
+ },
+ {
+ "epoch": 39.64279475982533,
+ "grad_norm": 0.035824477672576904,
+ "learning_rate": 0.0006,
+ "loss": 2.7074999809265137,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65676855895197,
+ "grad_norm": 0.034420810639858246,
+ "learning_rate": 0.0006,
+ "loss": 2.7221333980560303,
+ "step": 2855
+ },
+ {
+ "epoch": 39.670742358078606,
+ "grad_norm": 0.03463764861226082,
+ "learning_rate": 0.0006,
+ "loss": 2.727510929107666,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68471615720524,
+ "grad_norm": 0.03375630080699921,
+ "learning_rate": 0.0006,
+ "loss": 2.669036388397217,
+ "step": 2857
+ },
+ {
+ "epoch": 39.698689956331876,
+ "grad_norm": 0.034777212888002396,
+ "learning_rate": 0.0006,
+ "loss": 2.722949504852295,
+ "step": 2858
+ },
+ {
+ "epoch": 39.712663755458514,
+ "grad_norm": 0.033754393458366394,
+ "learning_rate": 0.0006,
+ "loss": 2.691465139389038,
+ "step": 2859
+ },
+ {
+ "epoch": 39.72663755458515,
+ "grad_norm": 0.03520940989255905,
+ "learning_rate": 0.0006,
+ "loss": 2.699446201324463,
+ "step": 2860
+ },
+ {
+ "epoch": 39.74061135371179,
+ "grad_norm": 0.03567482531070709,
+ "learning_rate": 0.0006,
+ "loss": 2.7141056060791016,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75458515283843,
+ "grad_norm": 0.0348379909992218,
+ "learning_rate": 0.0006,
+ "loss": 2.768491268157959,
+ "step": 2862
+ },
+ {
+ "epoch": 39.76855895196506,
+ "grad_norm": 0.03526907041668892,
+ "learning_rate": 0.0006,
+ "loss": 2.7331318855285645,
+ "step": 2863
+ },
+ {
+ "epoch": 39.7825327510917,
+ "grad_norm": 0.03621441870927811,
+ "learning_rate": 0.0006,
+ "loss": 2.7229490280151367,
+ "step": 2864
+ },
+ {
+ "epoch": 39.79650655021834,
+ "grad_norm": 0.03302044793963432,
+ "learning_rate": 0.0006,
+ "loss": 2.7376222610473633,
+ "step": 2865
+ },
+ {
+ "epoch": 39.81048034934498,
+ "grad_norm": 0.03541046380996704,
+ "learning_rate": 0.0006,
+ "loss": 2.7527167797088623,
+ "step": 2866
+ },
+ {
+ "epoch": 39.82445414847162,
+ "grad_norm": 0.035719070583581924,
+ "learning_rate": 0.0006,
+ "loss": 2.742863178253174,
+ "step": 2867
+ },
+ {
+ "epoch": 39.838427947598255,
+ "grad_norm": 0.03448639065027237,
+ "learning_rate": 0.0006,
+ "loss": 2.699861764907837,
+ "step": 2868
+ },
+ {
+ "epoch": 39.852401746724894,
+ "grad_norm": 0.033144641667604446,
+ "learning_rate": 0.0006,
+ "loss": 2.7319140434265137,
+ "step": 2869
+ },
+ {
+ "epoch": 39.866375545851525,
+ "grad_norm": 0.032493121922016144,
+ "learning_rate": 0.0006,
+ "loss": 2.7466368675231934,
+ "step": 2870
+ },
+ {
+ "epoch": 39.880349344978164,
+ "grad_norm": 0.032590243965387344,
+ "learning_rate": 0.0006,
+ "loss": 2.721978187561035,
+ "step": 2871
+ },
+ {
+ "epoch": 39.8943231441048,
+ "grad_norm": 0.03250930458307266,
+ "learning_rate": 0.0006,
+ "loss": 2.7361791133880615,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90829694323144,
+ "grad_norm": 0.03177327662706375,
+ "learning_rate": 0.0006,
+ "loss": 2.736617088317871,
+ "step": 2873
+ },
+ {
+ "epoch": 39.92227074235808,
+ "grad_norm": 0.03167487680912018,
+ "learning_rate": 0.0006,
+ "loss": 2.74830961227417,
+ "step": 2874
+ },
+ {
+ "epoch": 39.93624454148472,
+ "grad_norm": 0.03139375150203705,
+ "learning_rate": 0.0006,
+ "loss": 2.7477545738220215,
+ "step": 2875
+ },
+ {
+ "epoch": 39.95021834061135,
+ "grad_norm": 0.03216864913702011,
+ "learning_rate": 0.0006,
+ "loss": 2.7286179065704346,
+ "step": 2876
+ },
+ {
+ "epoch": 39.96419213973799,
+ "grad_norm": 0.033048611134290695,
+ "learning_rate": 0.0006,
+ "loss": 2.7587175369262695,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97816593886463,
+ "grad_norm": 0.031695522367954254,
+ "learning_rate": 0.0006,
+ "loss": 2.752018928527832,
+ "step": 2878
+ },
+ {
+ "epoch": 39.992139737991266,
+ "grad_norm": 0.030985886231064796,
+ "learning_rate": 0.0006,
+ "loss": 2.773669719696045,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.036308158189058304,
+ "learning_rate": 0.0006,
+ "loss": 2.7251877784729004,
+ "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-constantlr/checkpoint-2880/training_args.bin b/runs/baseline-constantlr/checkpoint-2880/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..902eed46d9e02245694ec118af9efec9cd359ff6
--- /dev/null
+++ b/runs/baseline-constantlr/checkpoint-2880/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f8a755363e28cfde742d3e37ba600ce14b5716157c9823f5cadd1b47464c7fc2
+size 5201
diff --git a/runs/baseline-constantlr/checkpoint-3240/chat_template.jinja b/runs/baseline-constantlr/checkpoint-3240/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-3240/config.json b/runs/baseline-constantlr/checkpoint-3240/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-3240/generation_config.json b/runs/baseline-constantlr/checkpoint-3240/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-3240/model.safetensors b/runs/baseline-constantlr/checkpoint-3240/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..00cbec4c28c555414e3a040c4542ac4dd074be44
--- /dev/null
+++ b/runs/baseline-constantlr/checkpoint-3240/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:c3ea0aba781e0fdd9df2e6633fee65462845508bddd8b846b6b19b9f35b9e04b
+size 583356232
diff --git a/runs/baseline-constantlr/checkpoint-3240/optimizer.pt b/runs/baseline-constantlr/checkpoint-3240/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..990f1d317b0c746d7453f6b69b3419319f038956
--- /dev/null
+++ b/runs/baseline-constantlr/checkpoint-3240/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ec6ef40226ab6a63b1ecd5795fad4e88da22fc106febcc1daf17351b3de069b8
+size 1166825803
diff --git a/runs/baseline-constantlr/checkpoint-3240/rng_state_0.pth b/runs/baseline-constantlr/checkpoint-3240/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..854d237a4ff7656e8561049ef131e53b73d26e13
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-3240/rng_state_1.pth b/runs/baseline-constantlr/checkpoint-3240/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..bf9f97063d7490c565f537598baa2da46c4b6b26
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-3240/scheduler.pt b/runs/baseline-constantlr/checkpoint-3240/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..2b5a1502e01217b1588713e0c3bf3f3eebd0f901
--- /dev/null
+++ b/runs/baseline-constantlr/checkpoint-3240/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:32c5b9fc8f9a7a3bff9da88a379a261c2b9dcf72d9b441fa8707279e0679a5f5
+size 1465
diff --git a/runs/baseline-constantlr/checkpoint-3240/tokenizer.json b/runs/baseline-constantlr/checkpoint-3240/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-3240/tokenizer_config.json b/runs/baseline-constantlr/checkpoint-3240/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-3240/trainer_state.json b/runs/baseline-constantlr/checkpoint-3240/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..4632f8e6fc60275dd6eda91f9e0bb8d5a5d7c299
--- /dev/null
+++ b/runs/baseline-constantlr/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.13303375244140625,
+ "learning_rate": 0.0,
+ "loss": 12.018817901611328,
+ "step": 1
+ },
+ {
+ "epoch": 0.02794759825327511,
+ "grad_norm": 0.13390742242336273,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.021883964538574,
+ "step": 2
+ },
+ {
+ "epoch": 0.04192139737991266,
+ "grad_norm": 0.13340722024440765,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.986108779907227,
+ "step": 3
+ },
+ {
+ "epoch": 0.05589519650655022,
+ "grad_norm": 0.13777263462543488,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.926837921142578,
+ "step": 4
+ },
+ {
+ "epoch": 0.06986899563318777,
+ "grad_norm": 0.14294272661209106,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.845431327819824,
+ "step": 5
+ },
+ {
+ "epoch": 0.08384279475982533,
+ "grad_norm": 0.15314988791942596,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.736921310424805,
+ "step": 6
+ },
+ {
+ "epoch": 0.09781659388646288,
+ "grad_norm": 0.14554648101329803,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.615877151489258,
+ "step": 7
+ },
+ {
+ "epoch": 0.11179039301310044,
+ "grad_norm": 0.1252845823764801,
+ "learning_rate": 4.2e-05,
+ "loss": 11.501619338989258,
+ "step": 8
+ },
+ {
+ "epoch": 0.125764192139738,
+ "grad_norm": 0.11403433233499527,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.396705627441406,
+ "step": 9
+ },
+ {
+ "epoch": 0.13973799126637554,
+ "grad_norm": 0.10996542125940323,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.31666374206543,
+ "step": 10
+ },
+ {
+ "epoch": 0.1537117903930131,
+ "grad_norm": 0.10755623877048492,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.252704620361328,
+ "step": 11
+ },
+ {
+ "epoch": 0.16768558951965065,
+ "grad_norm": 0.10700664669275284,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.194284439086914,
+ "step": 12
+ },
+ {
+ "epoch": 0.18165938864628822,
+ "grad_norm": 0.10606497526168823,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.14437198638916,
+ "step": 13
+ },
+ {
+ "epoch": 0.19563318777292577,
+ "grad_norm": 0.10551681369543076,
+ "learning_rate": 7.8e-05,
+ "loss": 11.096858024597168,
+ "step": 14
+ },
+ {
+ "epoch": 0.2096069868995633,
+ "grad_norm": 0.10573510080575943,
+ "learning_rate": 8.4e-05,
+ "loss": 11.047990798950195,
+ "step": 15
+ },
+ {
+ "epoch": 0.22358078602620088,
+ "grad_norm": 0.10572560131549835,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 11.000219345092773,
+ "step": 16
+ },
+ {
+ "epoch": 0.23755458515283842,
+ "grad_norm": 0.10625051707029343,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.93830680847168,
+ "step": 17
+ },
+ {
+ "epoch": 0.251528384279476,
+ "grad_norm": 0.10565247386693954,
+ "learning_rate": 0.000102,
+ "loss": 10.88237190246582,
+ "step": 18
+ },
+ {
+ "epoch": 0.26550218340611353,
+ "grad_norm": 0.10570791363716125,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.81382942199707,
+ "step": 19
+ },
+ {
+ "epoch": 0.2794759825327511,
+ "grad_norm": 0.10585319995880127,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.742864608764648,
+ "step": 20
+ },
+ {
+ "epoch": 0.2934497816593886,
+ "grad_norm": 0.10421311110258102,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.675719261169434,
+ "step": 21
+ },
+ {
+ "epoch": 0.3074235807860262,
+ "grad_norm": 0.10436785966157913,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.589548110961914,
+ "step": 22
+ },
+ {
+ "epoch": 0.32139737991266376,
+ "grad_norm": 0.10463878512382507,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.504261016845703,
+ "step": 23
+ },
+ {
+ "epoch": 0.3353711790393013,
+ "grad_norm": 0.104142926633358,
+ "learning_rate": 0.000138,
+ "loss": 10.41696548461914,
+ "step": 24
+ },
+ {
+ "epoch": 0.34934497816593885,
+ "grad_norm": 0.1037549152970314,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.327609062194824,
+ "step": 25
+ },
+ {
+ "epoch": 0.36331877729257644,
+ "grad_norm": 0.10464346408843994,
+ "learning_rate": 0.00015,
+ "loss": 10.226776123046875,
+ "step": 26
+ },
+ {
+ "epoch": 0.377292576419214,
+ "grad_norm": 0.10289040952920914,
+ "learning_rate": 0.000156,
+ "loss": 10.142925262451172,
+ "step": 27
+ },
+ {
+ "epoch": 0.39126637554585153,
+ "grad_norm": 0.10476566106081009,
+ "learning_rate": 0.000162,
+ "loss": 10.032388687133789,
+ "step": 28
+ },
+ {
+ "epoch": 0.4052401746724891,
+ "grad_norm": 0.10285190492868423,
+ "learning_rate": 0.000168,
+ "loss": 9.944738388061523,
+ "step": 29
+ },
+ {
+ "epoch": 0.4192139737991266,
+ "grad_norm": 0.10330761969089508,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.832511901855469,
+ "step": 30
+ },
+ {
+ "epoch": 0.4331877729257642,
+ "grad_norm": 0.10190961509943008,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.742905616760254,
+ "step": 31
+ },
+ {
+ "epoch": 0.44716157205240176,
+ "grad_norm": 0.10172155499458313,
+ "learning_rate": 0.000186,
+ "loss": 9.634834289550781,
+ "step": 32
+ },
+ {
+ "epoch": 0.4611353711790393,
+ "grad_norm": 0.10067209601402283,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.522916793823242,
+ "step": 33
+ },
+ {
+ "epoch": 0.47510917030567684,
+ "grad_norm": 0.10058761388063431,
+ "learning_rate": 0.000198,
+ "loss": 9.416927337646484,
+ "step": 34
+ },
+ {
+ "epoch": 0.4890829694323144,
+ "grad_norm": 0.0981091558933258,
+ "learning_rate": 0.000204,
+ "loss": 9.32928466796875,
+ "step": 35
+ },
+ {
+ "epoch": 0.503056768558952,
+ "grad_norm": 0.09739134460687637,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.215356826782227,
+ "step": 36
+ },
+ {
+ "epoch": 0.5170305676855895,
+ "grad_norm": 0.0969916582107544,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.101107597351074,
+ "step": 37
+ },
+ {
+ "epoch": 0.5310043668122271,
+ "grad_norm": 0.0959910973906517,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.998035430908203,
+ "step": 38
+ },
+ {
+ "epoch": 0.5449781659388646,
+ "grad_norm": 0.09558682143688202,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.89165210723877,
+ "step": 39
+ },
+ {
+ "epoch": 0.5589519650655022,
+ "grad_norm": 0.09313725680112839,
+ "learning_rate": 0.000234,
+ "loss": 8.806523323059082,
+ "step": 40
+ },
+ {
+ "epoch": 0.5729257641921397,
+ "grad_norm": 0.09075582772493362,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.71815299987793,
+ "step": 41
+ },
+ {
+ "epoch": 0.5868995633187772,
+ "grad_norm": 0.08912578970193863,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.617330551147461,
+ "step": 42
+ },
+ {
+ "epoch": 0.6008733624454149,
+ "grad_norm": 0.08745060116052628,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.511157989501953,
+ "step": 43
+ },
+ {
+ "epoch": 0.6148471615720524,
+ "grad_norm": 0.08254463970661163,
+ "learning_rate": 0.000258,
+ "loss": 8.458954811096191,
+ "step": 44
+ },
+ {
+ "epoch": 0.62882096069869,
+ "grad_norm": 0.0795406699180603,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.37498664855957,
+ "step": 45
+ },
+ {
+ "epoch": 0.6427947598253275,
+ "grad_norm": 0.07730695605278015,
+ "learning_rate": 0.00027,
+ "loss": 8.293156623840332,
+ "step": 46
+ },
+ {
+ "epoch": 0.6567685589519651,
+ "grad_norm": 0.07404499500989914,
+ "learning_rate": 0.000276,
+ "loss": 8.200754165649414,
+ "step": 47
+ },
+ {
+ "epoch": 0.6707423580786026,
+ "grad_norm": 0.07091354578733444,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.114692687988281,
+ "step": 48
+ },
+ {
+ "epoch": 0.6847161572052402,
+ "grad_norm": 0.06816772371530533,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.060348510742188,
+ "step": 49
+ },
+ {
+ "epoch": 0.6986899563318777,
+ "grad_norm": 0.0605427622795105,
+ "learning_rate": 0.000294,
+ "loss": 7.991006851196289,
+ "step": 50
+ },
+ {
+ "epoch": 0.7126637554585152,
+ "grad_norm": 0.05635255202651024,
+ "learning_rate": 0.0003,
+ "loss": 7.945850372314453,
+ "step": 51
+ },
+ {
+ "epoch": 0.7266375545851529,
+ "grad_norm": 0.05419522523880005,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.895726203918457,
+ "step": 52
+ },
+ {
+ "epoch": 0.7406113537117904,
+ "grad_norm": 0.06724901497364044,
+ "learning_rate": 0.000312,
+ "loss": 7.839101791381836,
+ "step": 53
+ },
+ {
+ "epoch": 0.754585152838428,
+ "grad_norm": 0.12858672440052032,
+ "learning_rate": 0.000318,
+ "loss": 7.840076446533203,
+ "step": 54
+ },
+ {
+ "epoch": 0.7685589519650655,
+ "grad_norm": 0.05087178573012352,
+ "learning_rate": 0.000324,
+ "loss": 7.77433967590332,
+ "step": 55
+ },
+ {
+ "epoch": 0.7825327510917031,
+ "grad_norm": 0.0458969883620739,
+ "learning_rate": 0.00033,
+ "loss": 7.747459411621094,
+ "step": 56
+ },
+ {
+ "epoch": 0.7965065502183406,
+ "grad_norm": 0.03214738890528679,
+ "learning_rate": 0.000336,
+ "loss": 7.735766410827637,
+ "step": 57
+ },
+ {
+ "epoch": 0.8104803493449781,
+ "grad_norm": 0.022700699046254158,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.716371059417725,
+ "step": 58
+ },
+ {
+ "epoch": 0.8244541484716157,
+ "grad_norm": 0.02415020391345024,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.700209140777588,
+ "step": 59
+ },
+ {
+ "epoch": 0.8384279475982532,
+ "grad_norm": 0.021143650636076927,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.687976360321045,
+ "step": 60
+ },
+ {
+ "epoch": 0.8524017467248908,
+ "grad_norm": 0.019051192328333855,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.640708923339844,
+ "step": 61
+ },
+ {
+ "epoch": 0.8663755458515284,
+ "grad_norm": 0.02110682614147663,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.6529130935668945,
+ "step": 62
+ },
+ {
+ "epoch": 0.880349344978166,
+ "grad_norm": 0.024010686203837395,
+ "learning_rate": 0.000372,
+ "loss": 7.645641326904297,
+ "step": 63
+ },
+ {
+ "epoch": 0.8943231441048035,
+ "grad_norm": 0.02591090090572834,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.626849174499512,
+ "step": 64
+ },
+ {
+ "epoch": 0.9082969432314411,
+ "grad_norm": 0.02841993235051632,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.633922576904297,
+ "step": 65
+ },
+ {
+ "epoch": 0.9222707423580786,
+ "grad_norm": 0.02565363608300686,
+ "learning_rate": 0.00039,
+ "loss": 7.6236772537231445,
+ "step": 66
+ },
+ {
+ "epoch": 0.9362445414847161,
+ "grad_norm": 0.020100994035601616,
+ "learning_rate": 0.000396,
+ "loss": 7.602252006530762,
+ "step": 67
+ },
+ {
+ "epoch": 0.9502183406113537,
+ "grad_norm": 0.017415935173630714,
+ "learning_rate": 0.000402,
+ "loss": 7.574195861816406,
+ "step": 68
+ },
+ {
+ "epoch": 0.9641921397379912,
+ "grad_norm": 0.01630476303398609,
+ "learning_rate": 0.000408,
+ "loss": 7.578503131866455,
+ "step": 69
+ },
+ {
+ "epoch": 0.9781659388646288,
+ "grad_norm": 0.015402277931571007,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.54685115814209,
+ "step": 70
+ },
+ {
+ "epoch": 0.9921397379912664,
+ "grad_norm": 0.01438985951244831,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.546932220458984,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.016883183270692825,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.555042266845703,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.549549579620361,
+ "eval_runtime": 54.3422,
+ "eval_samples_per_second": 44.937,
+ "eval_steps_per_second": 1.417,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139737991266375,
+ "grad_norm": 0.01215015072375536,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.534733295440674,
+ "step": 73
+ },
+ {
+ "epoch": 1.027947598253275,
+ "grad_norm": 0.01328246109187603,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.543649196624756,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419213973799126,
+ "grad_norm": 0.012859524227678776,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.50216817855835,
+ "step": 75
+ },
+ {
+ "epoch": 1.0558951965065502,
+ "grad_norm": 0.011157970875501633,
+ "learning_rate": 0.00045,
+ "loss": 7.508391857147217,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698689956331877,
+ "grad_norm": 0.012834188528358936,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.4759087562561035,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838427947598253,
+ "grad_norm": 0.013627874664962292,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.45142936706543,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978165938864628,
+ "grad_norm": 0.01641070283949375,
+ "learning_rate": 0.000468,
+ "loss": 7.492819786071777,
+ "step": 79
+ },
+ {
+ "epoch": 1.1117903930131003,
+ "grad_norm": 0.025136210024356842,
+ "learning_rate": 0.000474,
+ "loss": 7.474215507507324,
+ "step": 80
+ },
+ {
+ "epoch": 1.125764192139738,
+ "grad_norm": 0.03659580647945404,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.475737571716309,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397379912663754,
+ "grad_norm": 0.04370221868157387,
+ "learning_rate": 0.000486,
+ "loss": 7.453543663024902,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537117903930132,
+ "grad_norm": 0.02917138673365116,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.424599647521973,
+ "step": 83
+ },
+ {
+ "epoch": 1.1676855895196507,
+ "grad_norm": 0.015414979308843613,
+ "learning_rate": 0.000498,
+ "loss": 7.388550758361816,
+ "step": 84
+ },
+ {
+ "epoch": 1.1816593886462883,
+ "grad_norm": 0.029156062752008438,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.379591941833496,
+ "step": 85
+ },
+ {
+ "epoch": 1.1956331877729258,
+ "grad_norm": 0.014958011917769909,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.372748374938965,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096069868995634,
+ "grad_norm": 0.021887343376874924,
+ "learning_rate": 0.000516,
+ "loss": 7.3589630126953125,
+ "step": 87
+ },
+ {
+ "epoch": 1.223580786026201,
+ "grad_norm": 0.02962890826165676,
+ "learning_rate": 0.000522,
+ "loss": 7.373016357421875,
+ "step": 88
+ },
+ {
+ "epoch": 1.2375545851528384,
+ "grad_norm": 0.031032968312501907,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.3282928466796875,
+ "step": 89
+ },
+ {
+ "epoch": 1.251528384279476,
+ "grad_norm": 0.027690274640917778,
+ "learning_rate": 0.000534,
+ "loss": 7.320304870605469,
+ "step": 90
+ },
+ {
+ "epoch": 1.2655021834061135,
+ "grad_norm": 0.022552549839019775,
+ "learning_rate": 0.00054,
+ "loss": 7.3051300048828125,
+ "step": 91
+ },
+ {
+ "epoch": 1.279475982532751,
+ "grad_norm": 0.04130178689956665,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.284594535827637,
+ "step": 92
+ },
+ {
+ "epoch": 1.2934497816593886,
+ "grad_norm": 0.05043136328458786,
+ "learning_rate": 0.000552,
+ "loss": 7.286007881164551,
+ "step": 93
+ },
+ {
+ "epoch": 1.3074235807860262,
+ "grad_norm": 0.04574465751647949,
+ "learning_rate": 0.000558,
+ "loss": 7.22679328918457,
+ "step": 94
+ },
+ {
+ "epoch": 1.3213973799126637,
+ "grad_norm": 0.03277682512998581,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.229741096496582,
+ "step": 95
+ },
+ {
+ "epoch": 1.3353711790393012,
+ "grad_norm": 0.022675029933452606,
+ "learning_rate": 0.00057,
+ "loss": 7.241637706756592,
+ "step": 96
+ },
+ {
+ "epoch": 1.3493449781659388,
+ "grad_norm": 0.03889699652791023,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.193673133850098,
+ "step": 97
+ },
+ {
+ "epoch": 1.3633187772925766,
+ "grad_norm": 0.029434625059366226,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.1953840255737305,
+ "step": 98
+ },
+ {
+ "epoch": 1.3772925764192139,
+ "grad_norm": 0.02118326723575592,
+ "learning_rate": 0.000588,
+ "loss": 7.178635597229004,
+ "step": 99
+ },
+ {
+ "epoch": 1.3912663755458516,
+ "grad_norm": 0.02966528758406639,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.151487350463867,
+ "step": 100
+ },
+ {
+ "epoch": 1.405240174672489,
+ "grad_norm": 0.0450727716088295,
+ "learning_rate": 0.0006,
+ "loss": 7.144834995269775,
+ "step": 101
+ },
+ {
+ "epoch": 1.4192139737991267,
+ "grad_norm": 0.08898167312145233,
+ "learning_rate": 0.0006,
+ "loss": 7.180665969848633,
+ "step": 102
+ },
+ {
+ "epoch": 1.4331877729257643,
+ "grad_norm": 0.10679084807634354,
+ "learning_rate": 0.0006,
+ "loss": 7.233458518981934,
+ "step": 103
+ },
+ {
+ "epoch": 1.4471615720524018,
+ "grad_norm": 0.04746336117386818,
+ "learning_rate": 0.0006,
+ "loss": 7.167373180389404,
+ "step": 104
+ },
+ {
+ "epoch": 1.4611353711790394,
+ "grad_norm": 0.06380590051412582,
+ "learning_rate": 0.0006,
+ "loss": 7.189356803894043,
+ "step": 105
+ },
+ {
+ "epoch": 1.475109170305677,
+ "grad_norm": 0.039717014878988266,
+ "learning_rate": 0.0006,
+ "loss": 7.096653938293457,
+ "step": 106
+ },
+ {
+ "epoch": 1.4890829694323144,
+ "grad_norm": 0.06762711703777313,
+ "learning_rate": 0.0006,
+ "loss": 7.127993583679199,
+ "step": 107
+ },
+ {
+ "epoch": 1.503056768558952,
+ "grad_norm": 0.05134489759802818,
+ "learning_rate": 0.0006,
+ "loss": 7.072257995605469,
+ "step": 108
+ },
+ {
+ "epoch": 1.5170305676855895,
+ "grad_norm": 0.062314722687006,
+ "learning_rate": 0.0006,
+ "loss": 7.073700904846191,
+ "step": 109
+ },
+ {
+ "epoch": 1.531004366812227,
+ "grad_norm": 0.03607739135622978,
+ "learning_rate": 0.0006,
+ "loss": 7.051465034484863,
+ "step": 110
+ },
+ {
+ "epoch": 1.5449781659388646,
+ "grad_norm": 0.04546204209327698,
+ "learning_rate": 0.0006,
+ "loss": 7.049814224243164,
+ "step": 111
+ },
+ {
+ "epoch": 1.5589519650655022,
+ "grad_norm": 0.0319792665541172,
+ "learning_rate": 0.0006,
+ "loss": 7.0164875984191895,
+ "step": 112
+ },
+ {
+ "epoch": 1.5729257641921397,
+ "grad_norm": 0.04590746760368347,
+ "learning_rate": 0.0006,
+ "loss": 7.001565456390381,
+ "step": 113
+ },
+ {
+ "epoch": 1.5868995633187772,
+ "grad_norm": 0.031896382570266724,
+ "learning_rate": 0.0006,
+ "loss": 6.994606018066406,
+ "step": 114
+ },
+ {
+ "epoch": 1.600873362445415,
+ "grad_norm": 0.021410338580608368,
+ "learning_rate": 0.0006,
+ "loss": 6.947071075439453,
+ "step": 115
+ },
+ {
+ "epoch": 1.6148471615720523,
+ "grad_norm": 0.030063210055232048,
+ "learning_rate": 0.0006,
+ "loss": 6.979219913482666,
+ "step": 116
+ },
+ {
+ "epoch": 1.62882096069869,
+ "grad_norm": 0.02234027162194252,
+ "learning_rate": 0.0006,
+ "loss": 6.929020881652832,
+ "step": 117
+ },
+ {
+ "epoch": 1.6427947598253274,
+ "grad_norm": 0.025586063042283058,
+ "learning_rate": 0.0006,
+ "loss": 6.9200663566589355,
+ "step": 118
+ },
+ {
+ "epoch": 1.6567685589519652,
+ "grad_norm": 0.022098371759057045,
+ "learning_rate": 0.0006,
+ "loss": 6.899832248687744,
+ "step": 119
+ },
+ {
+ "epoch": 1.6707423580786025,
+ "grad_norm": 0.019238410517573357,
+ "learning_rate": 0.0006,
+ "loss": 6.8586015701293945,
+ "step": 120
+ },
+ {
+ "epoch": 1.6847161572052403,
+ "grad_norm": 0.024153294041752815,
+ "learning_rate": 0.0006,
+ "loss": 6.867973327636719,
+ "step": 121
+ },
+ {
+ "epoch": 1.6986899563318776,
+ "grad_norm": 0.01690024696290493,
+ "learning_rate": 0.0006,
+ "loss": 6.878490447998047,
+ "step": 122
+ },
+ {
+ "epoch": 1.7126637554585153,
+ "grad_norm": 0.02171619050204754,
+ "learning_rate": 0.0006,
+ "loss": 6.853621959686279,
+ "step": 123
+ },
+ {
+ "epoch": 1.726637554585153,
+ "grad_norm": 0.020535755902528763,
+ "learning_rate": 0.0006,
+ "loss": 6.852185249328613,
+ "step": 124
+ },
+ {
+ "epoch": 1.7406113537117904,
+ "grad_norm": 0.015457311645150185,
+ "learning_rate": 0.0006,
+ "loss": 6.826596260070801,
+ "step": 125
+ },
+ {
+ "epoch": 1.754585152838428,
+ "grad_norm": 0.017492085695266724,
+ "learning_rate": 0.0006,
+ "loss": 6.842765808105469,
+ "step": 126
+ },
+ {
+ "epoch": 1.7685589519650655,
+ "grad_norm": 0.014785612002015114,
+ "learning_rate": 0.0006,
+ "loss": 6.849224090576172,
+ "step": 127
+ },
+ {
+ "epoch": 1.782532751091703,
+ "grad_norm": 0.017512250691652298,
+ "learning_rate": 0.0006,
+ "loss": 6.824787139892578,
+ "step": 128
+ },
+ {
+ "epoch": 1.7965065502183406,
+ "grad_norm": 0.01895114593207836,
+ "learning_rate": 0.0006,
+ "loss": 6.801428318023682,
+ "step": 129
+ },
+ {
+ "epoch": 1.8104803493449781,
+ "grad_norm": 0.015728816390037537,
+ "learning_rate": 0.0006,
+ "loss": 6.801990985870361,
+ "step": 130
+ },
+ {
+ "epoch": 1.8244541484716157,
+ "grad_norm": 0.014321585185825825,
+ "learning_rate": 0.0006,
+ "loss": 6.793122291564941,
+ "step": 131
+ },
+ {
+ "epoch": 1.8384279475982532,
+ "grad_norm": 0.016692014411091805,
+ "learning_rate": 0.0006,
+ "loss": 6.74687385559082,
+ "step": 132
+ },
+ {
+ "epoch": 1.8524017467248908,
+ "grad_norm": 0.016697920858860016,
+ "learning_rate": 0.0006,
+ "loss": 6.75140380859375,
+ "step": 133
+ },
+ {
+ "epoch": 1.8663755458515285,
+ "grad_norm": 0.014954701997339725,
+ "learning_rate": 0.0006,
+ "loss": 6.746084213256836,
+ "step": 134
+ },
+ {
+ "epoch": 1.8803493449781659,
+ "grad_norm": 0.013010316528379917,
+ "learning_rate": 0.0006,
+ "loss": 6.725405693054199,
+ "step": 135
+ },
+ {
+ "epoch": 1.8943231441048036,
+ "grad_norm": 0.011892660520970821,
+ "learning_rate": 0.0006,
+ "loss": 6.718758583068848,
+ "step": 136
+ },
+ {
+ "epoch": 1.908296943231441,
+ "grad_norm": 0.012127497233450413,
+ "learning_rate": 0.0006,
+ "loss": 6.708139419555664,
+ "step": 137
+ },
+ {
+ "epoch": 1.9222707423580787,
+ "grad_norm": 0.015417213551700115,
+ "learning_rate": 0.0006,
+ "loss": 6.705748558044434,
+ "step": 138
+ },
+ {
+ "epoch": 1.936244541484716,
+ "grad_norm": 0.03063729591667652,
+ "learning_rate": 0.0006,
+ "loss": 6.691249847412109,
+ "step": 139
+ },
+ {
+ "epoch": 1.9502183406113538,
+ "grad_norm": 0.07376791536808014,
+ "learning_rate": 0.0006,
+ "loss": 6.71767520904541,
+ "step": 140
+ },
+ {
+ "epoch": 1.9641921397379911,
+ "grad_norm": 0.14157423377037048,
+ "learning_rate": 0.0006,
+ "loss": 6.787544250488281,
+ "step": 141
+ },
+ {
+ "epoch": 1.9781659388646289,
+ "grad_norm": 0.09186933934688568,
+ "learning_rate": 0.0006,
+ "loss": 6.73362398147583,
+ "step": 142
+ },
+ {
+ "epoch": 1.9921397379912664,
+ "grad_norm": 0.06612848490476608,
+ "learning_rate": 0.0006,
+ "loss": 6.719516754150391,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.048072297126054764,
+ "learning_rate": 0.0006,
+ "loss": 6.666120529174805,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 6.7162394523620605,
+ "eval_runtime": 50.5907,
+ "eval_samples_per_second": 48.27,
+ "eval_steps_per_second": 1.522,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139737991266378,
+ "grad_norm": 0.03777749463915825,
+ "learning_rate": 0.0006,
+ "loss": 6.686484336853027,
+ "step": 145
+ },
+ {
+ "epoch": 2.027947598253275,
+ "grad_norm": 0.04378646984696388,
+ "learning_rate": 0.0006,
+ "loss": 6.679071426391602,
+ "step": 146
+ },
+ {
+ "epoch": 2.041921397379913,
+ "grad_norm": 0.027715124189853668,
+ "learning_rate": 0.0006,
+ "loss": 6.6776323318481445,
+ "step": 147
+ },
+ {
+ "epoch": 2.05589519650655,
+ "grad_norm": 0.03411925211548805,
+ "learning_rate": 0.0006,
+ "loss": 6.643917083740234,
+ "step": 148
+ },
+ {
+ "epoch": 2.069868995633188,
+ "grad_norm": 0.034444212913513184,
+ "learning_rate": 0.0006,
+ "loss": 6.67141056060791,
+ "step": 149
+ },
+ {
+ "epoch": 2.0838427947598253,
+ "grad_norm": 0.0387650802731514,
+ "learning_rate": 0.0006,
+ "loss": 6.65234375,
+ "step": 150
+ },
+ {
+ "epoch": 2.097816593886463,
+ "grad_norm": 0.03921861574053764,
+ "learning_rate": 0.0006,
+ "loss": 6.624712944030762,
+ "step": 151
+ },
+ {
+ "epoch": 2.1117903930131003,
+ "grad_norm": 0.02531580813229084,
+ "learning_rate": 0.0006,
+ "loss": 6.617608547210693,
+ "step": 152
+ },
+ {
+ "epoch": 2.125764192139738,
+ "grad_norm": 0.03220974653959274,
+ "learning_rate": 0.0006,
+ "loss": 6.587964057922363,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397379912663754,
+ "grad_norm": 0.03923291340470314,
+ "learning_rate": 0.0006,
+ "loss": 6.588845252990723,
+ "step": 154
+ },
+ {
+ "epoch": 2.153711790393013,
+ "grad_norm": 0.028337281197309494,
+ "learning_rate": 0.0006,
+ "loss": 6.5807952880859375,
+ "step": 155
+ },
+ {
+ "epoch": 2.1676855895196505,
+ "grad_norm": 0.01873156800866127,
+ "learning_rate": 0.0006,
+ "loss": 6.560453414916992,
+ "step": 156
+ },
+ {
+ "epoch": 2.1816593886462883,
+ "grad_norm": 0.027509493753314018,
+ "learning_rate": 0.0006,
+ "loss": 6.5615363121032715,
+ "step": 157
+ },
+ {
+ "epoch": 2.1956331877729256,
+ "grad_norm": 0.025428347289562225,
+ "learning_rate": 0.0006,
+ "loss": 6.5283966064453125,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096069868995634,
+ "grad_norm": 0.02118629403412342,
+ "learning_rate": 0.0006,
+ "loss": 6.526224136352539,
+ "step": 159
+ },
+ {
+ "epoch": 2.2235807860262007,
+ "grad_norm": 0.03233652561903,
+ "learning_rate": 0.0006,
+ "loss": 6.536041259765625,
+ "step": 160
+ },
+ {
+ "epoch": 2.2375545851528384,
+ "grad_norm": 0.04605546221137047,
+ "learning_rate": 0.0006,
+ "loss": 6.537662029266357,
+ "step": 161
+ },
+ {
+ "epoch": 2.251528384279476,
+ "grad_norm": 0.05192062631249428,
+ "learning_rate": 0.0006,
+ "loss": 6.551901817321777,
+ "step": 162
+ },
+ {
+ "epoch": 2.2655021834061135,
+ "grad_norm": 0.042231615632772446,
+ "learning_rate": 0.0006,
+ "loss": 6.511076927185059,
+ "step": 163
+ },
+ {
+ "epoch": 2.279475982532751,
+ "grad_norm": 0.04085887596011162,
+ "learning_rate": 0.0006,
+ "loss": 6.503472328186035,
+ "step": 164
+ },
+ {
+ "epoch": 2.2934497816593886,
+ "grad_norm": 0.031182587146759033,
+ "learning_rate": 0.0006,
+ "loss": 6.504403591156006,
+ "step": 165
+ },
+ {
+ "epoch": 2.3074235807860264,
+ "grad_norm": 0.032555561512708664,
+ "learning_rate": 0.0006,
+ "loss": 6.4552764892578125,
+ "step": 166
+ },
+ {
+ "epoch": 2.3213973799126637,
+ "grad_norm": 0.04939635097980499,
+ "learning_rate": 0.0006,
+ "loss": 6.495351791381836,
+ "step": 167
+ },
+ {
+ "epoch": 2.3353711790393015,
+ "grad_norm": 0.037503793835639954,
+ "learning_rate": 0.0006,
+ "loss": 6.4742560386657715,
+ "step": 168
+ },
+ {
+ "epoch": 2.349344978165939,
+ "grad_norm": 0.02366613782942295,
+ "learning_rate": 0.0006,
+ "loss": 6.478525161743164,
+ "step": 169
+ },
+ {
+ "epoch": 2.3633187772925766,
+ "grad_norm": 0.022314894944429398,
+ "learning_rate": 0.0006,
+ "loss": 6.414134979248047,
+ "step": 170
+ },
+ {
+ "epoch": 2.377292576419214,
+ "grad_norm": 0.030494702979922295,
+ "learning_rate": 0.0006,
+ "loss": 6.444867134094238,
+ "step": 171
+ },
+ {
+ "epoch": 2.3912663755458516,
+ "grad_norm": 0.04064486175775528,
+ "learning_rate": 0.0006,
+ "loss": 6.417036056518555,
+ "step": 172
+ },
+ {
+ "epoch": 2.405240174672489,
+ "grad_norm": 0.03061651438474655,
+ "learning_rate": 0.0006,
+ "loss": 6.423735618591309,
+ "step": 173
+ },
+ {
+ "epoch": 2.4192139737991267,
+ "grad_norm": 0.02046056278049946,
+ "learning_rate": 0.0006,
+ "loss": 6.419736862182617,
+ "step": 174
+ },
+ {
+ "epoch": 2.433187772925764,
+ "grad_norm": 0.02530163712799549,
+ "learning_rate": 0.0006,
+ "loss": 6.399930953979492,
+ "step": 175
+ },
+ {
+ "epoch": 2.447161572052402,
+ "grad_norm": 0.03588842228055,
+ "learning_rate": 0.0006,
+ "loss": 6.418618202209473,
+ "step": 176
+ },
+ {
+ "epoch": 2.461135371179039,
+ "grad_norm": 0.04048234224319458,
+ "learning_rate": 0.0006,
+ "loss": 6.390285491943359,
+ "step": 177
+ },
+ {
+ "epoch": 2.475109170305677,
+ "grad_norm": 0.039080191403627396,
+ "learning_rate": 0.0006,
+ "loss": 6.3688530921936035,
+ "step": 178
+ },
+ {
+ "epoch": 2.489082969432314,
+ "grad_norm": 0.029000122100114822,
+ "learning_rate": 0.0006,
+ "loss": 6.369181156158447,
+ "step": 179
+ },
+ {
+ "epoch": 2.503056768558952,
+ "grad_norm": 0.01609761081635952,
+ "learning_rate": 0.0006,
+ "loss": 6.359917640686035,
+ "step": 180
+ },
+ {
+ "epoch": 2.5170305676855893,
+ "grad_norm": 0.02305005118250847,
+ "learning_rate": 0.0006,
+ "loss": 6.347358226776123,
+ "step": 181
+ },
+ {
+ "epoch": 2.531004366812227,
+ "grad_norm": 0.03316781297326088,
+ "learning_rate": 0.0006,
+ "loss": 6.36626672744751,
+ "step": 182
+ },
+ {
+ "epoch": 2.544978165938865,
+ "grad_norm": 0.05111207440495491,
+ "learning_rate": 0.0006,
+ "loss": 6.380453109741211,
+ "step": 183
+ },
+ {
+ "epoch": 2.558951965065502,
+ "grad_norm": 0.062241602689027786,
+ "learning_rate": 0.0006,
+ "loss": 6.353237152099609,
+ "step": 184
+ },
+ {
+ "epoch": 2.5729257641921395,
+ "grad_norm": 0.060149725526571274,
+ "learning_rate": 0.0006,
+ "loss": 6.358938694000244,
+ "step": 185
+ },
+ {
+ "epoch": 2.5868995633187772,
+ "grad_norm": 0.04228121414780617,
+ "learning_rate": 0.0006,
+ "loss": 6.310116767883301,
+ "step": 186
+ },
+ {
+ "epoch": 2.600873362445415,
+ "grad_norm": 0.019458215683698654,
+ "learning_rate": 0.0006,
+ "loss": 6.284702777862549,
+ "step": 187
+ },
+ {
+ "epoch": 2.6148471615720523,
+ "grad_norm": 0.0342358835041523,
+ "learning_rate": 0.0006,
+ "loss": 6.316659927368164,
+ "step": 188
+ },
+ {
+ "epoch": 2.62882096069869,
+ "grad_norm": 0.04139583557844162,
+ "learning_rate": 0.0006,
+ "loss": 6.301124572753906,
+ "step": 189
+ },
+ {
+ "epoch": 2.6427947598253274,
+ "grad_norm": 0.028264787048101425,
+ "learning_rate": 0.0006,
+ "loss": 6.298510551452637,
+ "step": 190
+ },
+ {
+ "epoch": 2.656768558951965,
+ "grad_norm": 0.023622136563062668,
+ "learning_rate": 0.0006,
+ "loss": 6.2571210861206055,
+ "step": 191
+ },
+ {
+ "epoch": 2.6707423580786025,
+ "grad_norm": 0.039508845657110214,
+ "learning_rate": 0.0006,
+ "loss": 6.267218589782715,
+ "step": 192
+ },
+ {
+ "epoch": 2.6847161572052403,
+ "grad_norm": 0.043358899652957916,
+ "learning_rate": 0.0006,
+ "loss": 6.279658794403076,
+ "step": 193
+ },
+ {
+ "epoch": 2.6986899563318776,
+ "grad_norm": 0.04134640842676163,
+ "learning_rate": 0.0006,
+ "loss": 6.277159214019775,
+ "step": 194
+ },
+ {
+ "epoch": 2.7126637554585153,
+ "grad_norm": 0.05406952276825905,
+ "learning_rate": 0.0006,
+ "loss": 6.295559883117676,
+ "step": 195
+ },
+ {
+ "epoch": 2.726637554585153,
+ "grad_norm": 0.04557774215936661,
+ "learning_rate": 0.0006,
+ "loss": 6.260174751281738,
+ "step": 196
+ },
+ {
+ "epoch": 2.7406113537117904,
+ "grad_norm": 0.04542337730526924,
+ "learning_rate": 0.0006,
+ "loss": 6.244534492492676,
+ "step": 197
+ },
+ {
+ "epoch": 2.7545851528384278,
+ "grad_norm": 0.06924881041049957,
+ "learning_rate": 0.0006,
+ "loss": 6.2060723304748535,
+ "step": 198
+ },
+ {
+ "epoch": 2.7685589519650655,
+ "grad_norm": 0.06679725646972656,
+ "learning_rate": 0.0006,
+ "loss": 6.259133815765381,
+ "step": 199
+ },
+ {
+ "epoch": 2.7825327510917033,
+ "grad_norm": 0.05039471387863159,
+ "learning_rate": 0.0006,
+ "loss": 6.239280700683594,
+ "step": 200
+ },
+ {
+ "epoch": 2.7965065502183406,
+ "grad_norm": 0.05935394763946533,
+ "learning_rate": 0.0006,
+ "loss": 6.242481231689453,
+ "step": 201
+ },
+ {
+ "epoch": 2.810480349344978,
+ "grad_norm": 0.0486418716609478,
+ "learning_rate": 0.0006,
+ "loss": 6.239593505859375,
+ "step": 202
+ },
+ {
+ "epoch": 2.8244541484716157,
+ "grad_norm": 0.05010748282074928,
+ "learning_rate": 0.0006,
+ "loss": 6.2328948974609375,
+ "step": 203
+ },
+ {
+ "epoch": 2.8384279475982535,
+ "grad_norm": 0.03444438800215721,
+ "learning_rate": 0.0006,
+ "loss": 6.200089454650879,
+ "step": 204
+ },
+ {
+ "epoch": 2.8524017467248908,
+ "grad_norm": 0.043253373354673386,
+ "learning_rate": 0.0006,
+ "loss": 6.2089433670043945,
+ "step": 205
+ },
+ {
+ "epoch": 2.8663755458515285,
+ "grad_norm": 0.047505684196949005,
+ "learning_rate": 0.0006,
+ "loss": 6.220322608947754,
+ "step": 206
+ },
+ {
+ "epoch": 2.880349344978166,
+ "grad_norm": 0.04393792524933815,
+ "learning_rate": 0.0006,
+ "loss": 6.178770542144775,
+ "step": 207
+ },
+ {
+ "epoch": 2.8943231441048036,
+ "grad_norm": 0.04025835916399956,
+ "learning_rate": 0.0006,
+ "loss": 6.160248756408691,
+ "step": 208
+ },
+ {
+ "epoch": 2.908296943231441,
+ "grad_norm": 0.03877986595034599,
+ "learning_rate": 0.0006,
+ "loss": 6.164917945861816,
+ "step": 209
+ },
+ {
+ "epoch": 2.9222707423580787,
+ "grad_norm": 0.03666771203279495,
+ "learning_rate": 0.0006,
+ "loss": 6.172199249267578,
+ "step": 210
+ },
+ {
+ "epoch": 2.936244541484716,
+ "grad_norm": 0.028036516159772873,
+ "learning_rate": 0.0006,
+ "loss": 6.179510116577148,
+ "step": 211
+ },
+ {
+ "epoch": 2.950218340611354,
+ "grad_norm": 0.021492617204785347,
+ "learning_rate": 0.0006,
+ "loss": 6.1275153160095215,
+ "step": 212
+ },
+ {
+ "epoch": 2.964192139737991,
+ "grad_norm": 0.026816558092832565,
+ "learning_rate": 0.0006,
+ "loss": 6.131775856018066,
+ "step": 213
+ },
+ {
+ "epoch": 2.978165938864629,
+ "grad_norm": 0.03757898136973381,
+ "learning_rate": 0.0006,
+ "loss": 6.135777473449707,
+ "step": 214
+ },
+ {
+ "epoch": 2.992139737991266,
+ "grad_norm": 0.06036437302827835,
+ "learning_rate": 0.0006,
+ "loss": 6.146076202392578,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.09846952557563782,
+ "learning_rate": 0.0006,
+ "loss": 6.218435287475586,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.23890495300293,
+ "eval_runtime": 50.6822,
+ "eval_samples_per_second": 48.183,
+ "eval_steps_per_second": 1.519,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139737991266378,
+ "grad_norm": 0.10463741421699524,
+ "learning_rate": 0.0006,
+ "loss": 6.197120666503906,
+ "step": 217
+ },
+ {
+ "epoch": 3.027947598253275,
+ "grad_norm": 0.10212419927120209,
+ "learning_rate": 0.0006,
+ "loss": 6.178340911865234,
+ "step": 218
+ },
+ {
+ "epoch": 3.041921397379913,
+ "grad_norm": 0.08038751780986786,
+ "learning_rate": 0.0006,
+ "loss": 6.217406749725342,
+ "step": 219
+ },
+ {
+ "epoch": 3.05589519650655,
+ "grad_norm": 0.04787508398294449,
+ "learning_rate": 0.0006,
+ "loss": 6.155381679534912,
+ "step": 220
+ },
+ {
+ "epoch": 3.069868995633188,
+ "grad_norm": 0.06880322843790054,
+ "learning_rate": 0.0006,
+ "loss": 6.121614933013916,
+ "step": 221
+ },
+ {
+ "epoch": 3.0838427947598253,
+ "grad_norm": 0.03749438002705574,
+ "learning_rate": 0.0006,
+ "loss": 6.120484352111816,
+ "step": 222
+ },
+ {
+ "epoch": 3.097816593886463,
+ "grad_norm": 0.03875046223402023,
+ "learning_rate": 0.0006,
+ "loss": 6.12362003326416,
+ "step": 223
+ },
+ {
+ "epoch": 3.1117903930131003,
+ "grad_norm": 0.030663209035992622,
+ "learning_rate": 0.0006,
+ "loss": 6.1111063957214355,
+ "step": 224
+ },
+ {
+ "epoch": 3.125764192139738,
+ "grad_norm": 0.029520904645323753,
+ "learning_rate": 0.0006,
+ "loss": 6.130336761474609,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397379912663754,
+ "grad_norm": 0.02854953519999981,
+ "learning_rate": 0.0006,
+ "loss": 6.086193084716797,
+ "step": 226
+ },
+ {
+ "epoch": 3.153711790393013,
+ "grad_norm": 0.027147898450493813,
+ "learning_rate": 0.0006,
+ "loss": 6.066827774047852,
+ "step": 227
+ },
+ {
+ "epoch": 3.1676855895196505,
+ "grad_norm": 0.025577887892723083,
+ "learning_rate": 0.0006,
+ "loss": 6.070775032043457,
+ "step": 228
+ },
+ {
+ "epoch": 3.1816593886462883,
+ "grad_norm": 0.026318276301026344,
+ "learning_rate": 0.0006,
+ "loss": 6.064469814300537,
+ "step": 229
+ },
+ {
+ "epoch": 3.1956331877729256,
+ "grad_norm": 0.02595221996307373,
+ "learning_rate": 0.0006,
+ "loss": 6.066489219665527,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096069868995634,
+ "grad_norm": 0.0248890221118927,
+ "learning_rate": 0.0006,
+ "loss": 6.032470703125,
+ "step": 231
+ },
+ {
+ "epoch": 3.2235807860262007,
+ "grad_norm": 0.017041699960827827,
+ "learning_rate": 0.0006,
+ "loss": 6.056160926818848,
+ "step": 232
+ },
+ {
+ "epoch": 3.2375545851528384,
+ "grad_norm": 0.020971592515707016,
+ "learning_rate": 0.0006,
+ "loss": 6.024506568908691,
+ "step": 233
+ },
+ {
+ "epoch": 3.251528384279476,
+ "grad_norm": 0.01897028088569641,
+ "learning_rate": 0.0006,
+ "loss": 6.035656929016113,
+ "step": 234
+ },
+ {
+ "epoch": 3.2655021834061135,
+ "grad_norm": 0.027151981368660927,
+ "learning_rate": 0.0006,
+ "loss": 6.026547431945801,
+ "step": 235
+ },
+ {
+ "epoch": 3.279475982532751,
+ "grad_norm": 0.029453502967953682,
+ "learning_rate": 0.0006,
+ "loss": 5.981723785400391,
+ "step": 236
+ },
+ {
+ "epoch": 3.2934497816593886,
+ "grad_norm": 0.027771083638072014,
+ "learning_rate": 0.0006,
+ "loss": 6.019796371459961,
+ "step": 237
+ },
+ {
+ "epoch": 3.3074235807860264,
+ "grad_norm": 0.02605084516108036,
+ "learning_rate": 0.0006,
+ "loss": 5.984506607055664,
+ "step": 238
+ },
+ {
+ "epoch": 3.3213973799126637,
+ "grad_norm": 0.022903922945261,
+ "learning_rate": 0.0006,
+ "loss": 6.023873805999756,
+ "step": 239
+ },
+ {
+ "epoch": 3.3353711790393015,
+ "grad_norm": 0.01976492442190647,
+ "learning_rate": 0.0006,
+ "loss": 6.009030342102051,
+ "step": 240
+ },
+ {
+ "epoch": 3.349344978165939,
+ "grad_norm": 0.018872970715165138,
+ "learning_rate": 0.0006,
+ "loss": 5.970742702484131,
+ "step": 241
+ },
+ {
+ "epoch": 3.3633187772925766,
+ "grad_norm": 0.017447829246520996,
+ "learning_rate": 0.0006,
+ "loss": 5.968851089477539,
+ "step": 242
+ },
+ {
+ "epoch": 3.377292576419214,
+ "grad_norm": 0.025419825688004494,
+ "learning_rate": 0.0006,
+ "loss": 5.956470489501953,
+ "step": 243
+ },
+ {
+ "epoch": 3.3912663755458516,
+ "grad_norm": 0.03654123470187187,
+ "learning_rate": 0.0006,
+ "loss": 5.94770622253418,
+ "step": 244
+ },
+ {
+ "epoch": 3.405240174672489,
+ "grad_norm": 0.05607098713517189,
+ "learning_rate": 0.0006,
+ "loss": 6.008593559265137,
+ "step": 245
+ },
+ {
+ "epoch": 3.4192139737991267,
+ "grad_norm": 0.07973720878362656,
+ "learning_rate": 0.0006,
+ "loss": 5.9966888427734375,
+ "step": 246
+ },
+ {
+ "epoch": 3.433187772925764,
+ "grad_norm": 0.10906023532152176,
+ "learning_rate": 0.0006,
+ "loss": 6.054642200469971,
+ "step": 247
+ },
+ {
+ "epoch": 3.447161572052402,
+ "grad_norm": 0.09792660176753998,
+ "learning_rate": 0.0006,
+ "loss": 6.067026138305664,
+ "step": 248
+ },
+ {
+ "epoch": 3.461135371179039,
+ "grad_norm": 0.07395700365304947,
+ "learning_rate": 0.0006,
+ "loss": 6.01310920715332,
+ "step": 249
+ },
+ {
+ "epoch": 3.475109170305677,
+ "grad_norm": 0.10172071307897568,
+ "learning_rate": 0.0006,
+ "loss": 6.048509120941162,
+ "step": 250
+ },
+ {
+ "epoch": 3.489082969432314,
+ "grad_norm": 0.0717678815126419,
+ "learning_rate": 0.0006,
+ "loss": 6.055008888244629,
+ "step": 251
+ },
+ {
+ "epoch": 3.503056768558952,
+ "grad_norm": 0.06398089975118637,
+ "learning_rate": 0.0006,
+ "loss": 5.9677276611328125,
+ "step": 252
+ },
+ {
+ "epoch": 3.5170305676855893,
+ "grad_norm": 0.0643860474228859,
+ "learning_rate": 0.0006,
+ "loss": 5.957507133483887,
+ "step": 253
+ },
+ {
+ "epoch": 3.531004366812227,
+ "grad_norm": 0.03472325950860977,
+ "learning_rate": 0.0006,
+ "loss": 5.952362060546875,
+ "step": 254
+ },
+ {
+ "epoch": 3.544978165938865,
+ "grad_norm": 0.03918307647109032,
+ "learning_rate": 0.0006,
+ "loss": 5.957100868225098,
+ "step": 255
+ },
+ {
+ "epoch": 3.558951965065502,
+ "grad_norm": 0.03519073501229286,
+ "learning_rate": 0.0006,
+ "loss": 5.97830867767334,
+ "step": 256
+ },
+ {
+ "epoch": 3.5729257641921395,
+ "grad_norm": 0.03435497358441353,
+ "learning_rate": 0.0006,
+ "loss": 5.93912410736084,
+ "step": 257
+ },
+ {
+ "epoch": 3.5868995633187772,
+ "grad_norm": 0.026064487174153328,
+ "learning_rate": 0.0006,
+ "loss": 5.91353702545166,
+ "step": 258
+ },
+ {
+ "epoch": 3.600873362445415,
+ "grad_norm": 0.03159152343869209,
+ "learning_rate": 0.0006,
+ "loss": 5.913291931152344,
+ "step": 259
+ },
+ {
+ "epoch": 3.6148471615720523,
+ "grad_norm": 0.02195592038333416,
+ "learning_rate": 0.0006,
+ "loss": 5.906322479248047,
+ "step": 260
+ },
+ {
+ "epoch": 3.62882096069869,
+ "grad_norm": 0.020358966663479805,
+ "learning_rate": 0.0006,
+ "loss": 5.891860008239746,
+ "step": 261
+ },
+ {
+ "epoch": 3.6427947598253274,
+ "grad_norm": 0.01964488998055458,
+ "learning_rate": 0.0006,
+ "loss": 5.881132125854492,
+ "step": 262
+ },
+ {
+ "epoch": 3.656768558951965,
+ "grad_norm": 0.022447235882282257,
+ "learning_rate": 0.0006,
+ "loss": 5.8846940994262695,
+ "step": 263
+ },
+ {
+ "epoch": 3.6707423580786025,
+ "grad_norm": 0.018359875306487083,
+ "learning_rate": 0.0006,
+ "loss": 5.8861188888549805,
+ "step": 264
+ },
+ {
+ "epoch": 3.6847161572052403,
+ "grad_norm": 0.018481185659766197,
+ "learning_rate": 0.0006,
+ "loss": 5.874635696411133,
+ "step": 265
+ },
+ {
+ "epoch": 3.6986899563318776,
+ "grad_norm": 0.016943952068686485,
+ "learning_rate": 0.0006,
+ "loss": 5.8380126953125,
+ "step": 266
+ },
+ {
+ "epoch": 3.7126637554585153,
+ "grad_norm": 0.016593772917985916,
+ "learning_rate": 0.0006,
+ "loss": 5.855746269226074,
+ "step": 267
+ },
+ {
+ "epoch": 3.726637554585153,
+ "grad_norm": 0.018204636871814728,
+ "learning_rate": 0.0006,
+ "loss": 5.873927116394043,
+ "step": 268
+ },
+ {
+ "epoch": 3.7406113537117904,
+ "grad_norm": 0.017277248203754425,
+ "learning_rate": 0.0006,
+ "loss": 5.855231285095215,
+ "step": 269
+ },
+ {
+ "epoch": 3.7545851528384278,
+ "grad_norm": 0.01717568188905716,
+ "learning_rate": 0.0006,
+ "loss": 5.847787857055664,
+ "step": 270
+ },
+ {
+ "epoch": 3.7685589519650655,
+ "grad_norm": 0.01537331473082304,
+ "learning_rate": 0.0006,
+ "loss": 5.852605819702148,
+ "step": 271
+ },
+ {
+ "epoch": 3.7825327510917033,
+ "grad_norm": 0.01504798699170351,
+ "learning_rate": 0.0006,
+ "loss": 5.825901031494141,
+ "step": 272
+ },
+ {
+ "epoch": 3.7965065502183406,
+ "grad_norm": 0.023221664130687714,
+ "learning_rate": 0.0006,
+ "loss": 5.812404155731201,
+ "step": 273
+ },
+ {
+ "epoch": 3.810480349344978,
+ "grad_norm": 0.0397733673453331,
+ "learning_rate": 0.0006,
+ "loss": 5.804308891296387,
+ "step": 274
+ },
+ {
+ "epoch": 3.8244541484716157,
+ "grad_norm": 0.05233687534928322,
+ "learning_rate": 0.0006,
+ "loss": 5.788049697875977,
+ "step": 275
+ },
+ {
+ "epoch": 3.8384279475982535,
+ "grad_norm": 0.05563921108841896,
+ "learning_rate": 0.0006,
+ "loss": 5.811939239501953,
+ "step": 276
+ },
+ {
+ "epoch": 3.8524017467248908,
+ "grad_norm": 0.0501336008310318,
+ "learning_rate": 0.0006,
+ "loss": 5.810712814331055,
+ "step": 277
+ },
+ {
+ "epoch": 3.8663755458515285,
+ "grad_norm": 0.07601612061262131,
+ "learning_rate": 0.0006,
+ "loss": 5.846009254455566,
+ "step": 278
+ },
+ {
+ "epoch": 3.880349344978166,
+ "grad_norm": 0.07927536964416504,
+ "learning_rate": 0.0006,
+ "loss": 5.846945285797119,
+ "step": 279
+ },
+ {
+ "epoch": 3.8943231441048036,
+ "grad_norm": 0.05778975039720535,
+ "learning_rate": 0.0006,
+ "loss": 5.8009209632873535,
+ "step": 280
+ },
+ {
+ "epoch": 3.908296943231441,
+ "grad_norm": 0.06650745123624802,
+ "learning_rate": 0.0006,
+ "loss": 5.825387001037598,
+ "step": 281
+ },
+ {
+ "epoch": 3.9222707423580787,
+ "grad_norm": 0.05610830709338188,
+ "learning_rate": 0.0006,
+ "loss": 5.854207992553711,
+ "step": 282
+ },
+ {
+ "epoch": 3.936244541484716,
+ "grad_norm": 0.03054177202284336,
+ "learning_rate": 0.0006,
+ "loss": 5.8229875564575195,
+ "step": 283
+ },
+ {
+ "epoch": 3.950218340611354,
+ "grad_norm": 0.03929241746664047,
+ "learning_rate": 0.0006,
+ "loss": 5.8026041984558105,
+ "step": 284
+ },
+ {
+ "epoch": 3.964192139737991,
+ "grad_norm": 0.03007139079272747,
+ "learning_rate": 0.0006,
+ "loss": 5.7833709716796875,
+ "step": 285
+ },
+ {
+ "epoch": 3.978165938864629,
+ "grad_norm": 0.03231097757816315,
+ "learning_rate": 0.0006,
+ "loss": 5.7852091789245605,
+ "step": 286
+ },
+ {
+ "epoch": 3.992139737991266,
+ "grad_norm": 0.02939445711672306,
+ "learning_rate": 0.0006,
+ "loss": 5.753163814544678,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.02993260696530342,
+ "learning_rate": 0.0006,
+ "loss": 5.762526512145996,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 5.799882888793945,
+ "eval_runtime": 50.8936,
+ "eval_samples_per_second": 47.982,
+ "eval_steps_per_second": 1.513,
+ "step": 288
+ },
+ {
+ "epoch": 4.013973799126638,
+ "grad_norm": 0.025836583226919174,
+ "learning_rate": 0.0006,
+ "loss": 5.74060583114624,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279475982532755,
+ "grad_norm": 0.02240375429391861,
+ "learning_rate": 0.0006,
+ "loss": 5.744357109069824,
+ "step": 290
+ },
+ {
+ "epoch": 4.041921397379912,
+ "grad_norm": 0.019645314663648605,
+ "learning_rate": 0.0006,
+ "loss": 5.714840412139893,
+ "step": 291
+ },
+ {
+ "epoch": 4.05589519650655,
+ "grad_norm": 0.01903143897652626,
+ "learning_rate": 0.0006,
+ "loss": 5.749794006347656,
+ "step": 292
+ },
+ {
+ "epoch": 4.069868995633188,
+ "grad_norm": 0.020970258861780167,
+ "learning_rate": 0.0006,
+ "loss": 5.684886932373047,
+ "step": 293
+ },
+ {
+ "epoch": 4.083842794759826,
+ "grad_norm": 0.022254586219787598,
+ "learning_rate": 0.0006,
+ "loss": 5.690360069274902,
+ "step": 294
+ },
+ {
+ "epoch": 4.097816593886463,
+ "grad_norm": 0.024622811004519463,
+ "learning_rate": 0.0006,
+ "loss": 5.7078962326049805,
+ "step": 295
+ },
+ {
+ "epoch": 4.1117903930131,
+ "grad_norm": 0.023592552170157433,
+ "learning_rate": 0.0006,
+ "loss": 5.7039971351623535,
+ "step": 296
+ },
+ {
+ "epoch": 4.125764192139738,
+ "grad_norm": 0.02667587623000145,
+ "learning_rate": 0.0006,
+ "loss": 5.677852630615234,
+ "step": 297
+ },
+ {
+ "epoch": 4.139737991266376,
+ "grad_norm": 0.03330948203802109,
+ "learning_rate": 0.0006,
+ "loss": 5.688773155212402,
+ "step": 298
+ },
+ {
+ "epoch": 4.153711790393013,
+ "grad_norm": 0.045157793909311295,
+ "learning_rate": 0.0006,
+ "loss": 5.675937652587891,
+ "step": 299
+ },
+ {
+ "epoch": 4.1676855895196505,
+ "grad_norm": 0.07034408301115036,
+ "learning_rate": 0.0006,
+ "loss": 5.687074661254883,
+ "step": 300
+ },
+ {
+ "epoch": 4.181659388646288,
+ "grad_norm": 0.10193091630935669,
+ "learning_rate": 0.0006,
+ "loss": 5.748222351074219,
+ "step": 301
+ },
+ {
+ "epoch": 4.195633187772926,
+ "grad_norm": 0.09606931358575821,
+ "learning_rate": 0.0006,
+ "loss": 5.767232894897461,
+ "step": 302
+ },
+ {
+ "epoch": 4.209606986899563,
+ "grad_norm": 0.05994758382439613,
+ "learning_rate": 0.0006,
+ "loss": 5.723153114318848,
+ "step": 303
+ },
+ {
+ "epoch": 4.223580786026201,
+ "grad_norm": 0.045849986374378204,
+ "learning_rate": 0.0006,
+ "loss": 5.7005815505981445,
+ "step": 304
+ },
+ {
+ "epoch": 4.2375545851528384,
+ "grad_norm": 0.04177941009402275,
+ "learning_rate": 0.0006,
+ "loss": 5.679755210876465,
+ "step": 305
+ },
+ {
+ "epoch": 4.251528384279476,
+ "grad_norm": 0.03307238593697548,
+ "learning_rate": 0.0006,
+ "loss": 5.677393913269043,
+ "step": 306
+ },
+ {
+ "epoch": 4.265502183406113,
+ "grad_norm": 0.04340110346674919,
+ "learning_rate": 0.0006,
+ "loss": 5.702075004577637,
+ "step": 307
+ },
+ {
+ "epoch": 4.279475982532751,
+ "grad_norm": 0.04797970876097679,
+ "learning_rate": 0.0006,
+ "loss": 5.650345802307129,
+ "step": 308
+ },
+ {
+ "epoch": 4.293449781659389,
+ "grad_norm": 0.04946571961045265,
+ "learning_rate": 0.0006,
+ "loss": 5.675044059753418,
+ "step": 309
+ },
+ {
+ "epoch": 4.307423580786026,
+ "grad_norm": 0.03254636004567146,
+ "learning_rate": 0.0006,
+ "loss": 5.622986793518066,
+ "step": 310
+ },
+ {
+ "epoch": 4.321397379912664,
+ "grad_norm": 0.032069381326436996,
+ "learning_rate": 0.0006,
+ "loss": 5.629563331604004,
+ "step": 311
+ },
+ {
+ "epoch": 4.335371179039301,
+ "grad_norm": 0.033597469329833984,
+ "learning_rate": 0.0006,
+ "loss": 5.612854480743408,
+ "step": 312
+ },
+ {
+ "epoch": 4.349344978165939,
+ "grad_norm": 0.02717825584113598,
+ "learning_rate": 0.0006,
+ "loss": 5.652135372161865,
+ "step": 313
+ },
+ {
+ "epoch": 4.3633187772925766,
+ "grad_norm": 0.03312784433364868,
+ "learning_rate": 0.0006,
+ "loss": 5.649629592895508,
+ "step": 314
+ },
+ {
+ "epoch": 4.377292576419214,
+ "grad_norm": 0.03037389926612377,
+ "learning_rate": 0.0006,
+ "loss": 5.6194305419921875,
+ "step": 315
+ },
+ {
+ "epoch": 4.391266375545851,
+ "grad_norm": 0.03778672590851784,
+ "learning_rate": 0.0006,
+ "loss": 5.641755104064941,
+ "step": 316
+ },
+ {
+ "epoch": 4.405240174672489,
+ "grad_norm": 0.053473301231861115,
+ "learning_rate": 0.0006,
+ "loss": 5.621832847595215,
+ "step": 317
+ },
+ {
+ "epoch": 4.419213973799127,
+ "grad_norm": 0.06915664672851562,
+ "learning_rate": 0.0006,
+ "loss": 5.601483345031738,
+ "step": 318
+ },
+ {
+ "epoch": 4.4331877729257645,
+ "grad_norm": 0.06667220592498779,
+ "learning_rate": 0.0006,
+ "loss": 5.642349720001221,
+ "step": 319
+ },
+ {
+ "epoch": 4.447161572052401,
+ "grad_norm": 0.037290167063474655,
+ "learning_rate": 0.0006,
+ "loss": 5.604238510131836,
+ "step": 320
+ },
+ {
+ "epoch": 4.461135371179039,
+ "grad_norm": 0.04003678262233734,
+ "learning_rate": 0.0006,
+ "loss": 5.593315601348877,
+ "step": 321
+ },
+ {
+ "epoch": 4.475109170305677,
+ "grad_norm": 0.028076812624931335,
+ "learning_rate": 0.0006,
+ "loss": 5.566408157348633,
+ "step": 322
+ },
+ {
+ "epoch": 4.489082969432315,
+ "grad_norm": 0.031247343868017197,
+ "learning_rate": 0.0006,
+ "loss": 5.6215410232543945,
+ "step": 323
+ },
+ {
+ "epoch": 4.503056768558952,
+ "grad_norm": 0.02864190936088562,
+ "learning_rate": 0.0006,
+ "loss": 5.583666801452637,
+ "step": 324
+ },
+ {
+ "epoch": 4.517030567685589,
+ "grad_norm": 0.03396870568394661,
+ "learning_rate": 0.0006,
+ "loss": 5.568394184112549,
+ "step": 325
+ },
+ {
+ "epoch": 4.531004366812227,
+ "grad_norm": 0.03053557313978672,
+ "learning_rate": 0.0006,
+ "loss": 5.5704755783081055,
+ "step": 326
+ },
+ {
+ "epoch": 4.544978165938865,
+ "grad_norm": 0.039402369409799576,
+ "learning_rate": 0.0006,
+ "loss": 5.529522895812988,
+ "step": 327
+ },
+ {
+ "epoch": 4.558951965065502,
+ "grad_norm": 0.039162520319223404,
+ "learning_rate": 0.0006,
+ "loss": 5.565547466278076,
+ "step": 328
+ },
+ {
+ "epoch": 4.5729257641921395,
+ "grad_norm": 0.03071208856999874,
+ "learning_rate": 0.0006,
+ "loss": 5.551553726196289,
+ "step": 329
+ },
+ {
+ "epoch": 4.586899563318777,
+ "grad_norm": 0.0320625938475132,
+ "learning_rate": 0.0006,
+ "loss": 5.535126686096191,
+ "step": 330
+ },
+ {
+ "epoch": 4.600873362445415,
+ "grad_norm": 0.03700695186853409,
+ "learning_rate": 0.0006,
+ "loss": 5.560665130615234,
+ "step": 331
+ },
+ {
+ "epoch": 4.614847161572053,
+ "grad_norm": 0.0327119417488575,
+ "learning_rate": 0.0006,
+ "loss": 5.528924465179443,
+ "step": 332
+ },
+ {
+ "epoch": 4.62882096069869,
+ "grad_norm": 0.028552839532494545,
+ "learning_rate": 0.0006,
+ "loss": 5.520917892456055,
+ "step": 333
+ },
+ {
+ "epoch": 4.642794759825327,
+ "grad_norm": 0.029750585556030273,
+ "learning_rate": 0.0006,
+ "loss": 5.512092113494873,
+ "step": 334
+ },
+ {
+ "epoch": 4.656768558951965,
+ "grad_norm": 0.03556099906563759,
+ "learning_rate": 0.0006,
+ "loss": 5.500020503997803,
+ "step": 335
+ },
+ {
+ "epoch": 4.670742358078603,
+ "grad_norm": 0.03819836303591728,
+ "learning_rate": 0.0006,
+ "loss": 5.523126602172852,
+ "step": 336
+ },
+ {
+ "epoch": 4.68471615720524,
+ "grad_norm": 0.038457129150629044,
+ "learning_rate": 0.0006,
+ "loss": 5.497986316680908,
+ "step": 337
+ },
+ {
+ "epoch": 4.698689956331878,
+ "grad_norm": 0.049066998064517975,
+ "learning_rate": 0.0006,
+ "loss": 5.481566429138184,
+ "step": 338
+ },
+ {
+ "epoch": 4.712663755458515,
+ "grad_norm": 0.06208881363272667,
+ "learning_rate": 0.0006,
+ "loss": 5.5200581550598145,
+ "step": 339
+ },
+ {
+ "epoch": 4.726637554585153,
+ "grad_norm": 0.04952879622578621,
+ "learning_rate": 0.0006,
+ "loss": 5.528044700622559,
+ "step": 340
+ },
+ {
+ "epoch": 4.74061135371179,
+ "grad_norm": 0.046794820576906204,
+ "learning_rate": 0.0006,
+ "loss": 5.4694437980651855,
+ "step": 341
+ },
+ {
+ "epoch": 4.754585152838428,
+ "grad_norm": 0.05241665989160538,
+ "learning_rate": 0.0006,
+ "loss": 5.5203752517700195,
+ "step": 342
+ },
+ {
+ "epoch": 4.7685589519650655,
+ "grad_norm": 0.029848996549844742,
+ "learning_rate": 0.0006,
+ "loss": 5.484467506408691,
+ "step": 343
+ },
+ {
+ "epoch": 4.782532751091703,
+ "grad_norm": 0.035734955221414566,
+ "learning_rate": 0.0006,
+ "loss": 5.4982075691223145,
+ "step": 344
+ },
+ {
+ "epoch": 4.796506550218341,
+ "grad_norm": 0.03326781094074249,
+ "learning_rate": 0.0006,
+ "loss": 5.4673380851745605,
+ "step": 345
+ },
+ {
+ "epoch": 4.810480349344978,
+ "grad_norm": 0.02851971797645092,
+ "learning_rate": 0.0006,
+ "loss": 5.466347694396973,
+ "step": 346
+ },
+ {
+ "epoch": 4.824454148471616,
+ "grad_norm": 0.02881411463022232,
+ "learning_rate": 0.0006,
+ "loss": 5.4748992919921875,
+ "step": 347
+ },
+ {
+ "epoch": 4.8384279475982535,
+ "grad_norm": 0.037079520523548126,
+ "learning_rate": 0.0006,
+ "loss": 5.430629730224609,
+ "step": 348
+ },
+ {
+ "epoch": 4.85240174672489,
+ "grad_norm": 0.06697188317775726,
+ "learning_rate": 0.0006,
+ "loss": 5.48007869720459,
+ "step": 349
+ },
+ {
+ "epoch": 4.866375545851528,
+ "grad_norm": 0.08443532884120941,
+ "learning_rate": 0.0006,
+ "loss": 5.519370079040527,
+ "step": 350
+ },
+ {
+ "epoch": 4.880349344978166,
+ "grad_norm": 0.0594899021089077,
+ "learning_rate": 0.0006,
+ "loss": 5.502467155456543,
+ "step": 351
+ },
+ {
+ "epoch": 4.894323144104804,
+ "grad_norm": 0.045731619000434875,
+ "learning_rate": 0.0006,
+ "loss": 5.48048210144043,
+ "step": 352
+ },
+ {
+ "epoch": 4.908296943231441,
+ "grad_norm": 0.02911028079688549,
+ "learning_rate": 0.0006,
+ "loss": 5.45798921585083,
+ "step": 353
+ },
+ {
+ "epoch": 4.922270742358078,
+ "grad_norm": 0.03407920524477959,
+ "learning_rate": 0.0006,
+ "loss": 5.452054977416992,
+ "step": 354
+ },
+ {
+ "epoch": 4.936244541484716,
+ "grad_norm": 0.030616968870162964,
+ "learning_rate": 0.0006,
+ "loss": 5.416000843048096,
+ "step": 355
+ },
+ {
+ "epoch": 4.950218340611354,
+ "grad_norm": 0.036123789846897125,
+ "learning_rate": 0.0006,
+ "loss": 5.448460102081299,
+ "step": 356
+ },
+ {
+ "epoch": 4.964192139737992,
+ "grad_norm": 0.03511728718876839,
+ "learning_rate": 0.0006,
+ "loss": 5.4388580322265625,
+ "step": 357
+ },
+ {
+ "epoch": 4.978165938864628,
+ "grad_norm": 0.032399944961071014,
+ "learning_rate": 0.0006,
+ "loss": 5.439154624938965,
+ "step": 358
+ },
+ {
+ "epoch": 4.992139737991266,
+ "grad_norm": 0.030734507367014885,
+ "learning_rate": 0.0006,
+ "loss": 5.394845485687256,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.036368995904922485,
+ "learning_rate": 0.0006,
+ "loss": 5.4285783767700195,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.480083465576172,
+ "eval_runtime": 50.4055,
+ "eval_samples_per_second": 48.447,
+ "eval_steps_per_second": 1.528,
+ "step": 360
+ },
+ {
+ "epoch": 5.013973799126638,
+ "grad_norm": 0.04241528734564781,
+ "learning_rate": 0.0006,
+ "loss": 5.381251335144043,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279475982532755,
+ "grad_norm": 0.03248775005340576,
+ "learning_rate": 0.0006,
+ "loss": 5.37385892868042,
+ "step": 362
+ },
+ {
+ "epoch": 5.041921397379912,
+ "grad_norm": 0.034749697893857956,
+ "learning_rate": 0.0006,
+ "loss": 5.376180648803711,
+ "step": 363
+ },
+ {
+ "epoch": 5.05589519650655,
+ "grad_norm": 0.03606852516531944,
+ "learning_rate": 0.0006,
+ "loss": 5.374990940093994,
+ "step": 364
+ },
+ {
+ "epoch": 5.069868995633188,
+ "grad_norm": 0.037298817187547684,
+ "learning_rate": 0.0006,
+ "loss": 5.387371063232422,
+ "step": 365
+ },
+ {
+ "epoch": 5.083842794759826,
+ "grad_norm": 0.04082327336072922,
+ "learning_rate": 0.0006,
+ "loss": 5.389516830444336,
+ "step": 366
+ },
+ {
+ "epoch": 5.097816593886463,
+ "grad_norm": 0.04895859211683273,
+ "learning_rate": 0.0006,
+ "loss": 5.3711090087890625,
+ "step": 367
+ },
+ {
+ "epoch": 5.1117903930131,
+ "grad_norm": 0.050905536860227585,
+ "learning_rate": 0.0006,
+ "loss": 5.351629257202148,
+ "step": 368
+ },
+ {
+ "epoch": 5.125764192139738,
+ "grad_norm": 0.04349025338888168,
+ "learning_rate": 0.0006,
+ "loss": 5.348860263824463,
+ "step": 369
+ },
+ {
+ "epoch": 5.139737991266376,
+ "grad_norm": 0.04351300373673439,
+ "learning_rate": 0.0006,
+ "loss": 5.351939678192139,
+ "step": 370
+ },
+ {
+ "epoch": 5.153711790393013,
+ "grad_norm": 0.03227587044239044,
+ "learning_rate": 0.0006,
+ "loss": 5.345745086669922,
+ "step": 371
+ },
+ {
+ "epoch": 5.1676855895196505,
+ "grad_norm": 0.04331260547041893,
+ "learning_rate": 0.0006,
+ "loss": 5.316384315490723,
+ "step": 372
+ },
+ {
+ "epoch": 5.181659388646288,
+ "grad_norm": 0.0464855432510376,
+ "learning_rate": 0.0006,
+ "loss": 5.343276023864746,
+ "step": 373
+ },
+ {
+ "epoch": 5.195633187772926,
+ "grad_norm": 0.05008427053689957,
+ "learning_rate": 0.0006,
+ "loss": 5.369993209838867,
+ "step": 374
+ },
+ {
+ "epoch": 5.209606986899563,
+ "grad_norm": 0.04762439802289009,
+ "learning_rate": 0.0006,
+ "loss": 5.3458051681518555,
+ "step": 375
+ },
+ {
+ "epoch": 5.223580786026201,
+ "grad_norm": 0.04650581255555153,
+ "learning_rate": 0.0006,
+ "loss": 5.352739334106445,
+ "step": 376
+ },
+ {
+ "epoch": 5.2375545851528384,
+ "grad_norm": 0.04960601031780243,
+ "learning_rate": 0.0006,
+ "loss": 5.327419757843018,
+ "step": 377
+ },
+ {
+ "epoch": 5.251528384279476,
+ "grad_norm": 0.04186132177710533,
+ "learning_rate": 0.0006,
+ "loss": 5.319878578186035,
+ "step": 378
+ },
+ {
+ "epoch": 5.265502183406113,
+ "grad_norm": 0.0390714667737484,
+ "learning_rate": 0.0006,
+ "loss": 5.344437599182129,
+ "step": 379
+ },
+ {
+ "epoch": 5.279475982532751,
+ "grad_norm": 0.03270866721868515,
+ "learning_rate": 0.0006,
+ "loss": 5.313382148742676,
+ "step": 380
+ },
+ {
+ "epoch": 5.293449781659389,
+ "grad_norm": 0.031864266842603683,
+ "learning_rate": 0.0006,
+ "loss": 5.326592922210693,
+ "step": 381
+ },
+ {
+ "epoch": 5.307423580786026,
+ "grad_norm": 0.026960339397192,
+ "learning_rate": 0.0006,
+ "loss": 5.286443710327148,
+ "step": 382
+ },
+ {
+ "epoch": 5.321397379912664,
+ "grad_norm": 0.023257168009877205,
+ "learning_rate": 0.0006,
+ "loss": 5.291154384613037,
+ "step": 383
+ },
+ {
+ "epoch": 5.335371179039301,
+ "grad_norm": 0.024317380040884018,
+ "learning_rate": 0.0006,
+ "loss": 5.30286979675293,
+ "step": 384
+ },
+ {
+ "epoch": 5.349344978165939,
+ "grad_norm": 0.022621065378189087,
+ "learning_rate": 0.0006,
+ "loss": 5.315716743469238,
+ "step": 385
+ },
+ {
+ "epoch": 5.3633187772925766,
+ "grad_norm": 0.023142270743846893,
+ "learning_rate": 0.0006,
+ "loss": 5.30342960357666,
+ "step": 386
+ },
+ {
+ "epoch": 5.377292576419214,
+ "grad_norm": 0.023623041808605194,
+ "learning_rate": 0.0006,
+ "loss": 5.250846862792969,
+ "step": 387
+ },
+ {
+ "epoch": 5.391266375545851,
+ "grad_norm": 0.02163100801408291,
+ "learning_rate": 0.0006,
+ "loss": 5.239641189575195,
+ "step": 388
+ },
+ {
+ "epoch": 5.405240174672489,
+ "grad_norm": 0.02896741032600403,
+ "learning_rate": 0.0006,
+ "loss": 5.2592010498046875,
+ "step": 389
+ },
+ {
+ "epoch": 5.419213973799127,
+ "grad_norm": 0.03766395151615143,
+ "learning_rate": 0.0006,
+ "loss": 5.253421783447266,
+ "step": 390
+ },
+ {
+ "epoch": 5.4331877729257645,
+ "grad_norm": 0.04409803822636604,
+ "learning_rate": 0.0006,
+ "loss": 5.271892070770264,
+ "step": 391
+ },
+ {
+ "epoch": 5.447161572052401,
+ "grad_norm": 0.040245357900857925,
+ "learning_rate": 0.0006,
+ "loss": 5.259224891662598,
+ "step": 392
+ },
+ {
+ "epoch": 5.461135371179039,
+ "grad_norm": 0.04515395313501358,
+ "learning_rate": 0.0006,
+ "loss": 5.236300468444824,
+ "step": 393
+ },
+ {
+ "epoch": 5.475109170305677,
+ "grad_norm": 0.060296714305877686,
+ "learning_rate": 0.0006,
+ "loss": 5.265594959259033,
+ "step": 394
+ },
+ {
+ "epoch": 5.489082969432315,
+ "grad_norm": 0.05405225604772568,
+ "learning_rate": 0.0006,
+ "loss": 5.262340545654297,
+ "step": 395
+ },
+ {
+ "epoch": 5.503056768558952,
+ "grad_norm": 0.0568138062953949,
+ "learning_rate": 0.0006,
+ "loss": 5.239948749542236,
+ "step": 396
+ },
+ {
+ "epoch": 5.517030567685589,
+ "grad_norm": 0.059859342873096466,
+ "learning_rate": 0.0006,
+ "loss": 5.189077854156494,
+ "step": 397
+ },
+ {
+ "epoch": 5.531004366812227,
+ "grad_norm": 0.053871408104896545,
+ "learning_rate": 0.0006,
+ "loss": 5.270648956298828,
+ "step": 398
+ },
+ {
+ "epoch": 5.544978165938865,
+ "grad_norm": 0.06081297993659973,
+ "learning_rate": 0.0006,
+ "loss": 5.314695835113525,
+ "step": 399
+ },
+ {
+ "epoch": 5.558951965065502,
+ "grad_norm": 0.0646715834736824,
+ "learning_rate": 0.0006,
+ "loss": 5.286482810974121,
+ "step": 400
+ },
+ {
+ "epoch": 5.5729257641921395,
+ "grad_norm": 0.05934286117553711,
+ "learning_rate": 0.0006,
+ "loss": 5.247529983520508,
+ "step": 401
+ },
+ {
+ "epoch": 5.586899563318777,
+ "grad_norm": 0.05270497500896454,
+ "learning_rate": 0.0006,
+ "loss": 5.213264465332031,
+ "step": 402
+ },
+ {
+ "epoch": 5.600873362445415,
+ "grad_norm": 0.03454767167568207,
+ "learning_rate": 0.0006,
+ "loss": 5.234180450439453,
+ "step": 403
+ },
+ {
+ "epoch": 5.614847161572053,
+ "grad_norm": 0.04350962117314339,
+ "learning_rate": 0.0006,
+ "loss": 5.2320332527160645,
+ "step": 404
+ },
+ {
+ "epoch": 5.62882096069869,
+ "grad_norm": 0.04721181467175484,
+ "learning_rate": 0.0006,
+ "loss": 5.228950023651123,
+ "step": 405
+ },
+ {
+ "epoch": 5.642794759825327,
+ "grad_norm": 0.03711158409714699,
+ "learning_rate": 0.0006,
+ "loss": 5.234259605407715,
+ "step": 406
+ },
+ {
+ "epoch": 5.656768558951965,
+ "grad_norm": 0.029691185802221298,
+ "learning_rate": 0.0006,
+ "loss": 5.183767795562744,
+ "step": 407
+ },
+ {
+ "epoch": 5.670742358078603,
+ "grad_norm": 0.03253520280122757,
+ "learning_rate": 0.0006,
+ "loss": 5.224790573120117,
+ "step": 408
+ },
+ {
+ "epoch": 5.68471615720524,
+ "grad_norm": 0.026891207322478294,
+ "learning_rate": 0.0006,
+ "loss": 5.219671249389648,
+ "step": 409
+ },
+ {
+ "epoch": 5.698689956331878,
+ "grad_norm": 0.024443313479423523,
+ "learning_rate": 0.0006,
+ "loss": 5.177947044372559,
+ "step": 410
+ },
+ {
+ "epoch": 5.712663755458515,
+ "grad_norm": 0.024358445778489113,
+ "learning_rate": 0.0006,
+ "loss": 5.184648513793945,
+ "step": 411
+ },
+ {
+ "epoch": 5.726637554585153,
+ "grad_norm": 0.038056857883930206,
+ "learning_rate": 0.0006,
+ "loss": 5.213315010070801,
+ "step": 412
+ },
+ {
+ "epoch": 5.74061135371179,
+ "grad_norm": 0.05382931977510452,
+ "learning_rate": 0.0006,
+ "loss": 5.188442230224609,
+ "step": 413
+ },
+ {
+ "epoch": 5.754585152838428,
+ "grad_norm": 0.04695626348257065,
+ "learning_rate": 0.0006,
+ "loss": 5.214473724365234,
+ "step": 414
+ },
+ {
+ "epoch": 5.7685589519650655,
+ "grad_norm": 0.03373295068740845,
+ "learning_rate": 0.0006,
+ "loss": 5.187349319458008,
+ "step": 415
+ },
+ {
+ "epoch": 5.782532751091703,
+ "grad_norm": 0.04209282621741295,
+ "learning_rate": 0.0006,
+ "loss": 5.215581893920898,
+ "step": 416
+ },
+ {
+ "epoch": 5.796506550218341,
+ "grad_norm": 0.036461904644966125,
+ "learning_rate": 0.0006,
+ "loss": 5.148530006408691,
+ "step": 417
+ },
+ {
+ "epoch": 5.810480349344978,
+ "grad_norm": 0.02530442364513874,
+ "learning_rate": 0.0006,
+ "loss": 5.143393039703369,
+ "step": 418
+ },
+ {
+ "epoch": 5.824454148471616,
+ "grad_norm": 0.02545030415058136,
+ "learning_rate": 0.0006,
+ "loss": 5.167602062225342,
+ "step": 419
+ },
+ {
+ "epoch": 5.8384279475982535,
+ "grad_norm": 0.024862848222255707,
+ "learning_rate": 0.0006,
+ "loss": 5.133827209472656,
+ "step": 420
+ },
+ {
+ "epoch": 5.85240174672489,
+ "grad_norm": 0.0243727695196867,
+ "learning_rate": 0.0006,
+ "loss": 5.196236610412598,
+ "step": 421
+ },
+ {
+ "epoch": 5.866375545851528,
+ "grad_norm": 0.031052641570568085,
+ "learning_rate": 0.0006,
+ "loss": 5.163963317871094,
+ "step": 422
+ },
+ {
+ "epoch": 5.880349344978166,
+ "grad_norm": 0.03085985779762268,
+ "learning_rate": 0.0006,
+ "loss": 5.133022308349609,
+ "step": 423
+ },
+ {
+ "epoch": 5.894323144104804,
+ "grad_norm": 0.026254380121827126,
+ "learning_rate": 0.0006,
+ "loss": 5.126164436340332,
+ "step": 424
+ },
+ {
+ "epoch": 5.908296943231441,
+ "grad_norm": 0.02083180658519268,
+ "learning_rate": 0.0006,
+ "loss": 5.102797508239746,
+ "step": 425
+ },
+ {
+ "epoch": 5.922270742358078,
+ "grad_norm": 0.02210022322833538,
+ "learning_rate": 0.0006,
+ "loss": 5.079900741577148,
+ "step": 426
+ },
+ {
+ "epoch": 5.936244541484716,
+ "grad_norm": 0.024237696081399918,
+ "learning_rate": 0.0006,
+ "loss": 5.131382942199707,
+ "step": 427
+ },
+ {
+ "epoch": 5.950218340611354,
+ "grad_norm": 0.03174173831939697,
+ "learning_rate": 0.0006,
+ "loss": 5.12271785736084,
+ "step": 428
+ },
+ {
+ "epoch": 5.964192139737992,
+ "grad_norm": 0.035321734845638275,
+ "learning_rate": 0.0006,
+ "loss": 5.096363067626953,
+ "step": 429
+ },
+ {
+ "epoch": 5.978165938864628,
+ "grad_norm": 0.03945434093475342,
+ "learning_rate": 0.0006,
+ "loss": 5.104191780090332,
+ "step": 430
+ },
+ {
+ "epoch": 5.992139737991266,
+ "grad_norm": 0.03119991160929203,
+ "learning_rate": 0.0006,
+ "loss": 5.088006973266602,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.025646768510341644,
+ "learning_rate": 0.0006,
+ "loss": 5.060527801513672,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.1733880043029785,
+ "eval_runtime": 49.9632,
+ "eval_samples_per_second": 48.876,
+ "eval_steps_per_second": 1.541,
+ "step": 432
+ },
+ {
+ "epoch": 6.013973799126638,
+ "grad_norm": 0.04027649387717247,
+ "learning_rate": 0.0006,
+ "loss": 5.070117473602295,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279475982532755,
+ "grad_norm": 0.04872274026274681,
+ "learning_rate": 0.0006,
+ "loss": 5.076330184936523,
+ "step": 434
+ },
+ {
+ "epoch": 6.041921397379912,
+ "grad_norm": 0.044163160026073456,
+ "learning_rate": 0.0006,
+ "loss": 5.079638481140137,
+ "step": 435
+ },
+ {
+ "epoch": 6.05589519650655,
+ "grad_norm": 0.051925189793109894,
+ "learning_rate": 0.0006,
+ "loss": 5.077970027923584,
+ "step": 436
+ },
+ {
+ "epoch": 6.069868995633188,
+ "grad_norm": 0.06317602097988129,
+ "learning_rate": 0.0006,
+ "loss": 5.077326774597168,
+ "step": 437
+ },
+ {
+ "epoch": 6.083842794759826,
+ "grad_norm": 0.05190538242459297,
+ "learning_rate": 0.0006,
+ "loss": 5.078523635864258,
+ "step": 438
+ },
+ {
+ "epoch": 6.097816593886463,
+ "grad_norm": 0.054743602871894836,
+ "learning_rate": 0.0006,
+ "loss": 5.041546821594238,
+ "step": 439
+ },
+ {
+ "epoch": 6.1117903930131,
+ "grad_norm": 0.0473523885011673,
+ "learning_rate": 0.0006,
+ "loss": 5.055340766906738,
+ "step": 440
+ },
+ {
+ "epoch": 6.125764192139738,
+ "grad_norm": 0.04575403407216072,
+ "learning_rate": 0.0006,
+ "loss": 5.078280925750732,
+ "step": 441
+ },
+ {
+ "epoch": 6.139737991266376,
+ "grad_norm": 0.04004313051700592,
+ "learning_rate": 0.0006,
+ "loss": 5.0551252365112305,
+ "step": 442
+ },
+ {
+ "epoch": 6.153711790393013,
+ "grad_norm": 0.04324577748775482,
+ "learning_rate": 0.0006,
+ "loss": 5.052831649780273,
+ "step": 443
+ },
+ {
+ "epoch": 6.1676855895196505,
+ "grad_norm": 0.05479790270328522,
+ "learning_rate": 0.0006,
+ "loss": 5.075335502624512,
+ "step": 444
+ },
+ {
+ "epoch": 6.181659388646288,
+ "grad_norm": 0.05768252909183502,
+ "learning_rate": 0.0006,
+ "loss": 5.076082706451416,
+ "step": 445
+ },
+ {
+ "epoch": 6.195633187772926,
+ "grad_norm": 0.05240596458315849,
+ "learning_rate": 0.0006,
+ "loss": 5.058586120605469,
+ "step": 446
+ },
+ {
+ "epoch": 6.209606986899563,
+ "grad_norm": 0.0645335391163826,
+ "learning_rate": 0.0006,
+ "loss": 5.069242477416992,
+ "step": 447
+ },
+ {
+ "epoch": 6.223580786026201,
+ "grad_norm": 0.07776601612567902,
+ "learning_rate": 0.0006,
+ "loss": 5.100368499755859,
+ "step": 448
+ },
+ {
+ "epoch": 6.2375545851528384,
+ "grad_norm": 0.08278049528598785,
+ "learning_rate": 0.0006,
+ "loss": 5.109698295593262,
+ "step": 449
+ },
+ {
+ "epoch": 6.251528384279476,
+ "grad_norm": 0.07187525182962418,
+ "learning_rate": 0.0006,
+ "loss": 5.08582878112793,
+ "step": 450
+ },
+ {
+ "epoch": 6.265502183406113,
+ "grad_norm": 0.07394885271787643,
+ "learning_rate": 0.0006,
+ "loss": 5.06748628616333,
+ "step": 451
+ },
+ {
+ "epoch": 6.279475982532751,
+ "grad_norm": 0.06124480068683624,
+ "learning_rate": 0.0006,
+ "loss": 5.116754531860352,
+ "step": 452
+ },
+ {
+ "epoch": 6.293449781659389,
+ "grad_norm": 0.04062265530228615,
+ "learning_rate": 0.0006,
+ "loss": 5.04876184463501,
+ "step": 453
+ },
+ {
+ "epoch": 6.307423580786026,
+ "grad_norm": 0.04309544339776039,
+ "learning_rate": 0.0006,
+ "loss": 5.038376331329346,
+ "step": 454
+ },
+ {
+ "epoch": 6.321397379912664,
+ "grad_norm": 0.041932251304388046,
+ "learning_rate": 0.0006,
+ "loss": 5.071001052856445,
+ "step": 455
+ },
+ {
+ "epoch": 6.335371179039301,
+ "grad_norm": 0.033776845782995224,
+ "learning_rate": 0.0006,
+ "loss": 5.006098747253418,
+ "step": 456
+ },
+ {
+ "epoch": 6.349344978165939,
+ "grad_norm": 0.034641820937395096,
+ "learning_rate": 0.0006,
+ "loss": 4.992915153503418,
+ "step": 457
+ },
+ {
+ "epoch": 6.3633187772925766,
+ "grad_norm": 0.023475229740142822,
+ "learning_rate": 0.0006,
+ "loss": 5.044340133666992,
+ "step": 458
+ },
+ {
+ "epoch": 6.377292576419214,
+ "grad_norm": 0.02673504501581192,
+ "learning_rate": 0.0006,
+ "loss": 4.998212814331055,
+ "step": 459
+ },
+ {
+ "epoch": 6.391266375545851,
+ "grad_norm": 0.02482164464890957,
+ "learning_rate": 0.0006,
+ "loss": 5.010951042175293,
+ "step": 460
+ },
+ {
+ "epoch": 6.405240174672489,
+ "grad_norm": 0.022635847330093384,
+ "learning_rate": 0.0006,
+ "loss": 4.977993965148926,
+ "step": 461
+ },
+ {
+ "epoch": 6.419213973799127,
+ "grad_norm": 0.023006808012723923,
+ "learning_rate": 0.0006,
+ "loss": 4.947575569152832,
+ "step": 462
+ },
+ {
+ "epoch": 6.4331877729257645,
+ "grad_norm": 0.02624397724866867,
+ "learning_rate": 0.0006,
+ "loss": 4.977143287658691,
+ "step": 463
+ },
+ {
+ "epoch": 6.447161572052401,
+ "grad_norm": 0.03280187025666237,
+ "learning_rate": 0.0006,
+ "loss": 4.941946029663086,
+ "step": 464
+ },
+ {
+ "epoch": 6.461135371179039,
+ "grad_norm": 0.04020314663648605,
+ "learning_rate": 0.0006,
+ "loss": 4.947107315063477,
+ "step": 465
+ },
+ {
+ "epoch": 6.475109170305677,
+ "grad_norm": 0.037292513996362686,
+ "learning_rate": 0.0006,
+ "loss": 4.940674781799316,
+ "step": 466
+ },
+ {
+ "epoch": 6.489082969432315,
+ "grad_norm": 0.03219081461429596,
+ "learning_rate": 0.0006,
+ "loss": 4.945491790771484,
+ "step": 467
+ },
+ {
+ "epoch": 6.503056768558952,
+ "grad_norm": 0.034181494265794754,
+ "learning_rate": 0.0006,
+ "loss": 4.948554039001465,
+ "step": 468
+ },
+ {
+ "epoch": 6.517030567685589,
+ "grad_norm": 0.03098447248339653,
+ "learning_rate": 0.0006,
+ "loss": 4.923150062561035,
+ "step": 469
+ },
+ {
+ "epoch": 6.531004366812227,
+ "grad_norm": 0.026002254337072372,
+ "learning_rate": 0.0006,
+ "loss": 4.9629106521606445,
+ "step": 470
+ },
+ {
+ "epoch": 6.544978165938865,
+ "grad_norm": 0.02463129162788391,
+ "learning_rate": 0.0006,
+ "loss": 4.9400787353515625,
+ "step": 471
+ },
+ {
+ "epoch": 6.558951965065502,
+ "grad_norm": 0.025506779551506042,
+ "learning_rate": 0.0006,
+ "loss": 4.945688247680664,
+ "step": 472
+ },
+ {
+ "epoch": 6.5729257641921395,
+ "grad_norm": 0.021885665133595467,
+ "learning_rate": 0.0006,
+ "loss": 4.893912315368652,
+ "step": 473
+ },
+ {
+ "epoch": 6.586899563318777,
+ "grad_norm": 0.023528503254055977,
+ "learning_rate": 0.0006,
+ "loss": 4.948110580444336,
+ "step": 474
+ },
+ {
+ "epoch": 6.600873362445415,
+ "grad_norm": 0.02838003821671009,
+ "learning_rate": 0.0006,
+ "loss": 4.919154167175293,
+ "step": 475
+ },
+ {
+ "epoch": 6.614847161572053,
+ "grad_norm": 0.028782688081264496,
+ "learning_rate": 0.0006,
+ "loss": 4.89210319519043,
+ "step": 476
+ },
+ {
+ "epoch": 6.62882096069869,
+ "grad_norm": 0.02549571916460991,
+ "learning_rate": 0.0006,
+ "loss": 4.903683185577393,
+ "step": 477
+ },
+ {
+ "epoch": 6.642794759825327,
+ "grad_norm": 0.030100561678409576,
+ "learning_rate": 0.0006,
+ "loss": 4.907907485961914,
+ "step": 478
+ },
+ {
+ "epoch": 6.656768558951965,
+ "grad_norm": 0.03853096067905426,
+ "learning_rate": 0.0006,
+ "loss": 4.916140556335449,
+ "step": 479
+ },
+ {
+ "epoch": 6.670742358078603,
+ "grad_norm": 0.0367201492190361,
+ "learning_rate": 0.0006,
+ "loss": 4.882139205932617,
+ "step": 480
+ },
+ {
+ "epoch": 6.68471615720524,
+ "grad_norm": 0.034214165061712265,
+ "learning_rate": 0.0006,
+ "loss": 4.883127212524414,
+ "step": 481
+ },
+ {
+ "epoch": 6.698689956331878,
+ "grad_norm": 0.03360319137573242,
+ "learning_rate": 0.0006,
+ "loss": 4.903620719909668,
+ "step": 482
+ },
+ {
+ "epoch": 6.712663755458515,
+ "grad_norm": 0.027687804773449898,
+ "learning_rate": 0.0006,
+ "loss": 4.874878883361816,
+ "step": 483
+ },
+ {
+ "epoch": 6.726637554585153,
+ "grad_norm": 0.028244799003005028,
+ "learning_rate": 0.0006,
+ "loss": 4.877007961273193,
+ "step": 484
+ },
+ {
+ "epoch": 6.74061135371179,
+ "grad_norm": 0.027868567034602165,
+ "learning_rate": 0.0006,
+ "loss": 4.893726348876953,
+ "step": 485
+ },
+ {
+ "epoch": 6.754585152838428,
+ "grad_norm": 0.036026086658239365,
+ "learning_rate": 0.0006,
+ "loss": 4.899372577667236,
+ "step": 486
+ },
+ {
+ "epoch": 6.7685589519650655,
+ "grad_norm": 0.03497552126646042,
+ "learning_rate": 0.0006,
+ "loss": 4.8735671043396,
+ "step": 487
+ },
+ {
+ "epoch": 6.782532751091703,
+ "grad_norm": 0.027166219428181648,
+ "learning_rate": 0.0006,
+ "loss": 4.848074913024902,
+ "step": 488
+ },
+ {
+ "epoch": 6.796506550218341,
+ "grad_norm": 0.029360221698880196,
+ "learning_rate": 0.0006,
+ "loss": 4.821354389190674,
+ "step": 489
+ },
+ {
+ "epoch": 6.810480349344978,
+ "grad_norm": 0.030428793281316757,
+ "learning_rate": 0.0006,
+ "loss": 4.857872009277344,
+ "step": 490
+ },
+ {
+ "epoch": 6.824454148471616,
+ "grad_norm": 0.033143963664770126,
+ "learning_rate": 0.0006,
+ "loss": 4.8857526779174805,
+ "step": 491
+ },
+ {
+ "epoch": 6.8384279475982535,
+ "grad_norm": 0.03193509578704834,
+ "learning_rate": 0.0006,
+ "loss": 4.841046333312988,
+ "step": 492
+ },
+ {
+ "epoch": 6.85240174672489,
+ "grad_norm": 0.034551024436950684,
+ "learning_rate": 0.0006,
+ "loss": 4.857826232910156,
+ "step": 493
+ },
+ {
+ "epoch": 6.866375545851528,
+ "grad_norm": 0.04612463712692261,
+ "learning_rate": 0.0006,
+ "loss": 4.880589485168457,
+ "step": 494
+ },
+ {
+ "epoch": 6.880349344978166,
+ "grad_norm": 0.04604615643620491,
+ "learning_rate": 0.0006,
+ "loss": 4.836089134216309,
+ "step": 495
+ },
+ {
+ "epoch": 6.894323144104804,
+ "grad_norm": 0.04121214151382446,
+ "learning_rate": 0.0006,
+ "loss": 4.859458923339844,
+ "step": 496
+ },
+ {
+ "epoch": 6.908296943231441,
+ "grad_norm": 0.03569377213716507,
+ "learning_rate": 0.0006,
+ "loss": 4.846658706665039,
+ "step": 497
+ },
+ {
+ "epoch": 6.922270742358078,
+ "grad_norm": 0.03878311067819595,
+ "learning_rate": 0.0006,
+ "loss": 4.828747749328613,
+ "step": 498
+ },
+ {
+ "epoch": 6.936244541484716,
+ "grad_norm": 0.0379655621945858,
+ "learning_rate": 0.0006,
+ "loss": 4.7911152839660645,
+ "step": 499
+ },
+ {
+ "epoch": 6.950218340611354,
+ "grad_norm": 0.03329150751233101,
+ "learning_rate": 0.0006,
+ "loss": 4.8190741539001465,
+ "step": 500
+ },
+ {
+ "epoch": 6.964192139737992,
+ "grad_norm": 0.0386258140206337,
+ "learning_rate": 0.0006,
+ "loss": 4.826594352722168,
+ "step": 501
+ },
+ {
+ "epoch": 6.978165938864628,
+ "grad_norm": 0.043440066277980804,
+ "learning_rate": 0.0006,
+ "loss": 4.868552207946777,
+ "step": 502
+ },
+ {
+ "epoch": 6.992139737991266,
+ "grad_norm": 0.039522934705019,
+ "learning_rate": 0.0006,
+ "loss": 4.766866683959961,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.038620468229055405,
+ "learning_rate": 0.0006,
+ "loss": 4.828839302062988,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 4.907761573791504,
+ "eval_runtime": 49.951,
+ "eval_samples_per_second": 48.888,
+ "eval_steps_per_second": 1.542,
+ "step": 504
+ },
+ {
+ "epoch": 7.013973799126638,
+ "grad_norm": 0.040495287626981735,
+ "learning_rate": 0.0006,
+ "loss": 4.755504608154297,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279475982532755,
+ "grad_norm": 0.04684276506304741,
+ "learning_rate": 0.0006,
+ "loss": 4.79603385925293,
+ "step": 506
+ },
+ {
+ "epoch": 7.041921397379912,
+ "grad_norm": 0.057431042194366455,
+ "learning_rate": 0.0006,
+ "loss": 4.798529148101807,
+ "step": 507
+ },
+ {
+ "epoch": 7.05589519650655,
+ "grad_norm": 0.06289757043123245,
+ "learning_rate": 0.0006,
+ "loss": 4.819248199462891,
+ "step": 508
+ },
+ {
+ "epoch": 7.069868995633188,
+ "grad_norm": 0.07083664834499359,
+ "learning_rate": 0.0006,
+ "loss": 4.803141117095947,
+ "step": 509
+ },
+ {
+ "epoch": 7.083842794759826,
+ "grad_norm": 0.06081623584032059,
+ "learning_rate": 0.0006,
+ "loss": 4.743819236755371,
+ "step": 510
+ },
+ {
+ "epoch": 7.097816593886463,
+ "grad_norm": 0.05454877391457558,
+ "learning_rate": 0.0006,
+ "loss": 4.854677200317383,
+ "step": 511
+ },
+ {
+ "epoch": 7.1117903930131,
+ "grad_norm": 0.05157916992902756,
+ "learning_rate": 0.0006,
+ "loss": 4.797488212585449,
+ "step": 512
+ },
+ {
+ "epoch": 7.125764192139738,
+ "grad_norm": 0.04780645668506622,
+ "learning_rate": 0.0006,
+ "loss": 4.824231147766113,
+ "step": 513
+ },
+ {
+ "epoch": 7.139737991266376,
+ "grad_norm": 0.058745913207530975,
+ "learning_rate": 0.0006,
+ "loss": 4.79942512512207,
+ "step": 514
+ },
+ {
+ "epoch": 7.153711790393013,
+ "grad_norm": 0.07210857421159744,
+ "learning_rate": 0.0006,
+ "loss": 4.857621192932129,
+ "step": 515
+ },
+ {
+ "epoch": 7.1676855895196505,
+ "grad_norm": 0.0681944340467453,
+ "learning_rate": 0.0006,
+ "loss": 4.798557281494141,
+ "step": 516
+ },
+ {
+ "epoch": 7.181659388646288,
+ "grad_norm": 0.06716784089803696,
+ "learning_rate": 0.0006,
+ "loss": 4.81382942199707,
+ "step": 517
+ },
+ {
+ "epoch": 7.195633187772926,
+ "grad_norm": 0.0700073093175888,
+ "learning_rate": 0.0006,
+ "loss": 4.811261177062988,
+ "step": 518
+ },
+ {
+ "epoch": 7.209606986899563,
+ "grad_norm": 0.05830753222107887,
+ "learning_rate": 0.0006,
+ "loss": 4.818418025970459,
+ "step": 519
+ },
+ {
+ "epoch": 7.223580786026201,
+ "grad_norm": 0.06053008884191513,
+ "learning_rate": 0.0006,
+ "loss": 4.830060005187988,
+ "step": 520
+ },
+ {
+ "epoch": 7.2375545851528384,
+ "grad_norm": 0.04992729425430298,
+ "learning_rate": 0.0006,
+ "loss": 4.820477485656738,
+ "step": 521
+ },
+ {
+ "epoch": 7.251528384279476,
+ "grad_norm": 0.03906334191560745,
+ "learning_rate": 0.0006,
+ "loss": 4.776924133300781,
+ "step": 522
+ },
+ {
+ "epoch": 7.265502183406113,
+ "grad_norm": 0.041200339794158936,
+ "learning_rate": 0.0006,
+ "loss": 4.795502662658691,
+ "step": 523
+ },
+ {
+ "epoch": 7.279475982532751,
+ "grad_norm": 0.03866710141301155,
+ "learning_rate": 0.0006,
+ "loss": 4.748326778411865,
+ "step": 524
+ },
+ {
+ "epoch": 7.293449781659389,
+ "grad_norm": 0.03892578184604645,
+ "learning_rate": 0.0006,
+ "loss": 4.731060028076172,
+ "step": 525
+ },
+ {
+ "epoch": 7.307423580786026,
+ "grad_norm": 0.034929852932691574,
+ "learning_rate": 0.0006,
+ "loss": 4.769538879394531,
+ "step": 526
+ },
+ {
+ "epoch": 7.321397379912664,
+ "grad_norm": 0.03499983623623848,
+ "learning_rate": 0.0006,
+ "loss": 4.750111103057861,
+ "step": 527
+ },
+ {
+ "epoch": 7.335371179039301,
+ "grad_norm": 0.023694142699241638,
+ "learning_rate": 0.0006,
+ "loss": 4.741044998168945,
+ "step": 528
+ },
+ {
+ "epoch": 7.349344978165939,
+ "grad_norm": 0.02783721685409546,
+ "learning_rate": 0.0006,
+ "loss": 4.733529090881348,
+ "step": 529
+ },
+ {
+ "epoch": 7.3633187772925766,
+ "grad_norm": 0.022906454280018806,
+ "learning_rate": 0.0006,
+ "loss": 4.713002681732178,
+ "step": 530
+ },
+ {
+ "epoch": 7.377292576419214,
+ "grad_norm": 0.020011693239212036,
+ "learning_rate": 0.0006,
+ "loss": 4.6840620040893555,
+ "step": 531
+ },
+ {
+ "epoch": 7.391266375545851,
+ "grad_norm": 0.019985370337963104,
+ "learning_rate": 0.0006,
+ "loss": 4.695000171661377,
+ "step": 532
+ },
+ {
+ "epoch": 7.405240174672489,
+ "grad_norm": 0.019822653383016586,
+ "learning_rate": 0.0006,
+ "loss": 4.709036350250244,
+ "step": 533
+ },
+ {
+ "epoch": 7.419213973799127,
+ "grad_norm": 0.020615894347429276,
+ "learning_rate": 0.0006,
+ "loss": 4.679416656494141,
+ "step": 534
+ },
+ {
+ "epoch": 7.4331877729257645,
+ "grad_norm": 0.01958257146179676,
+ "learning_rate": 0.0006,
+ "loss": 4.704957008361816,
+ "step": 535
+ },
+ {
+ "epoch": 7.447161572052401,
+ "grad_norm": 0.02040509134531021,
+ "learning_rate": 0.0006,
+ "loss": 4.651505470275879,
+ "step": 536
+ },
+ {
+ "epoch": 7.461135371179039,
+ "grad_norm": 0.01626836135983467,
+ "learning_rate": 0.0006,
+ "loss": 4.694278240203857,
+ "step": 537
+ },
+ {
+ "epoch": 7.475109170305677,
+ "grad_norm": 0.01660163700580597,
+ "learning_rate": 0.0006,
+ "loss": 4.662658214569092,
+ "step": 538
+ },
+ {
+ "epoch": 7.489082969432315,
+ "grad_norm": 0.016483576968312263,
+ "learning_rate": 0.0006,
+ "loss": 4.695555686950684,
+ "step": 539
+ },
+ {
+ "epoch": 7.503056768558952,
+ "grad_norm": 0.018176909536123276,
+ "learning_rate": 0.0006,
+ "loss": 4.646458625793457,
+ "step": 540
+ },
+ {
+ "epoch": 7.517030567685589,
+ "grad_norm": 0.018314503133296967,
+ "learning_rate": 0.0006,
+ "loss": 4.643884181976318,
+ "step": 541
+ },
+ {
+ "epoch": 7.531004366812227,
+ "grad_norm": 0.016406886279582977,
+ "learning_rate": 0.0006,
+ "loss": 4.637638092041016,
+ "step": 542
+ },
+ {
+ "epoch": 7.544978165938865,
+ "grad_norm": 0.017510421574115753,
+ "learning_rate": 0.0006,
+ "loss": 4.6297926902771,
+ "step": 543
+ },
+ {
+ "epoch": 7.558951965065502,
+ "grad_norm": 0.021575570106506348,
+ "learning_rate": 0.0006,
+ "loss": 4.657093048095703,
+ "step": 544
+ },
+ {
+ "epoch": 7.5729257641921395,
+ "grad_norm": 0.024670056998729706,
+ "learning_rate": 0.0006,
+ "loss": 4.637840270996094,
+ "step": 545
+ },
+ {
+ "epoch": 7.586899563318777,
+ "grad_norm": 0.026005825027823448,
+ "learning_rate": 0.0006,
+ "loss": 4.622672080993652,
+ "step": 546
+ },
+ {
+ "epoch": 7.600873362445415,
+ "grad_norm": 0.024355988949537277,
+ "learning_rate": 0.0006,
+ "loss": 4.627206802368164,
+ "step": 547
+ },
+ {
+ "epoch": 7.614847161572053,
+ "grad_norm": 0.025826960802078247,
+ "learning_rate": 0.0006,
+ "loss": 4.616837501525879,
+ "step": 548
+ },
+ {
+ "epoch": 7.62882096069869,
+ "grad_norm": 0.02809619903564453,
+ "learning_rate": 0.0006,
+ "loss": 4.643812656402588,
+ "step": 549
+ },
+ {
+ "epoch": 7.642794759825327,
+ "grad_norm": 0.023823536932468414,
+ "learning_rate": 0.0006,
+ "loss": 4.623858451843262,
+ "step": 550
+ },
+ {
+ "epoch": 7.656768558951965,
+ "grad_norm": 0.024948647245764732,
+ "learning_rate": 0.0006,
+ "loss": 4.635528564453125,
+ "step": 551
+ },
+ {
+ "epoch": 7.670742358078603,
+ "grad_norm": 0.027852604165673256,
+ "learning_rate": 0.0006,
+ "loss": 4.606395721435547,
+ "step": 552
+ },
+ {
+ "epoch": 7.68471615720524,
+ "grad_norm": 0.031888775527477264,
+ "learning_rate": 0.0006,
+ "loss": 4.630072593688965,
+ "step": 553
+ },
+ {
+ "epoch": 7.698689956331878,
+ "grad_norm": 0.04423221945762634,
+ "learning_rate": 0.0006,
+ "loss": 4.592362880706787,
+ "step": 554
+ },
+ {
+ "epoch": 7.712663755458515,
+ "grad_norm": 0.05360350012779236,
+ "learning_rate": 0.0006,
+ "loss": 4.626799583435059,
+ "step": 555
+ },
+ {
+ "epoch": 7.726637554585153,
+ "grad_norm": 0.05218035727739334,
+ "learning_rate": 0.0006,
+ "loss": 4.591753005981445,
+ "step": 556
+ },
+ {
+ "epoch": 7.74061135371179,
+ "grad_norm": 0.04740380123257637,
+ "learning_rate": 0.0006,
+ "loss": 4.611865520477295,
+ "step": 557
+ },
+ {
+ "epoch": 7.754585152838428,
+ "grad_norm": 0.04325862228870392,
+ "learning_rate": 0.0006,
+ "loss": 4.585417747497559,
+ "step": 558
+ },
+ {
+ "epoch": 7.7685589519650655,
+ "grad_norm": 0.047380927950143814,
+ "learning_rate": 0.0006,
+ "loss": 4.595690727233887,
+ "step": 559
+ },
+ {
+ "epoch": 7.782532751091703,
+ "grad_norm": 0.05398833379149437,
+ "learning_rate": 0.0006,
+ "loss": 4.670032024383545,
+ "step": 560
+ },
+ {
+ "epoch": 7.796506550218341,
+ "grad_norm": 0.05550206080079079,
+ "learning_rate": 0.0006,
+ "loss": 4.603083610534668,
+ "step": 561
+ },
+ {
+ "epoch": 7.810480349344978,
+ "grad_norm": 0.048703186213970184,
+ "learning_rate": 0.0006,
+ "loss": 4.60882568359375,
+ "step": 562
+ },
+ {
+ "epoch": 7.824454148471616,
+ "grad_norm": 0.03849068656563759,
+ "learning_rate": 0.0006,
+ "loss": 4.600196838378906,
+ "step": 563
+ },
+ {
+ "epoch": 7.8384279475982535,
+ "grad_norm": 0.04322432354092598,
+ "learning_rate": 0.0006,
+ "loss": 4.635777473449707,
+ "step": 564
+ },
+ {
+ "epoch": 7.85240174672489,
+ "grad_norm": 0.03958692029118538,
+ "learning_rate": 0.0006,
+ "loss": 4.586699962615967,
+ "step": 565
+ },
+ {
+ "epoch": 7.866375545851528,
+ "grad_norm": 0.035496462136507034,
+ "learning_rate": 0.0006,
+ "loss": 4.602683067321777,
+ "step": 566
+ },
+ {
+ "epoch": 7.880349344978166,
+ "grad_norm": 0.038870155811309814,
+ "learning_rate": 0.0006,
+ "loss": 4.635684013366699,
+ "step": 567
+ },
+ {
+ "epoch": 7.894323144104804,
+ "grad_norm": 0.038049351423978806,
+ "learning_rate": 0.0006,
+ "loss": 4.5812602043151855,
+ "step": 568
+ },
+ {
+ "epoch": 7.908296943231441,
+ "grad_norm": 0.029217766597867012,
+ "learning_rate": 0.0006,
+ "loss": 4.560367584228516,
+ "step": 569
+ },
+ {
+ "epoch": 7.922270742358078,
+ "grad_norm": 0.028376970440149307,
+ "learning_rate": 0.0006,
+ "loss": 4.578996658325195,
+ "step": 570
+ },
+ {
+ "epoch": 7.936244541484716,
+ "grad_norm": 0.035108938813209534,
+ "learning_rate": 0.0006,
+ "loss": 4.554547309875488,
+ "step": 571
+ },
+ {
+ "epoch": 7.950218340611354,
+ "grad_norm": 0.02971036173403263,
+ "learning_rate": 0.0006,
+ "loss": 4.5761919021606445,
+ "step": 572
+ },
+ {
+ "epoch": 7.964192139737992,
+ "grad_norm": 0.02690828964114189,
+ "learning_rate": 0.0006,
+ "loss": 4.568772315979004,
+ "step": 573
+ },
+ {
+ "epoch": 7.978165938864628,
+ "grad_norm": 0.023910939693450928,
+ "learning_rate": 0.0006,
+ "loss": 4.56700325012207,
+ "step": 574
+ },
+ {
+ "epoch": 7.992139737991266,
+ "grad_norm": 0.02027987875044346,
+ "learning_rate": 0.0006,
+ "loss": 4.563353538513184,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.02621232345700264,
+ "learning_rate": 0.0006,
+ "loss": 4.52655029296875,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.659845352172852,
+ "eval_runtime": 54.5122,
+ "eval_samples_per_second": 44.797,
+ "eval_steps_per_second": 1.413,
+ "step": 576
+ },
+ {
+ "epoch": 8.013973799126637,
+ "grad_norm": 0.024295445531606674,
+ "learning_rate": 0.0006,
+ "loss": 4.514026641845703,
+ "step": 577
+ },
+ {
+ "epoch": 8.027947598253276,
+ "grad_norm": 0.029430922120809555,
+ "learning_rate": 0.0006,
+ "loss": 4.479931831359863,
+ "step": 578
+ },
+ {
+ "epoch": 8.041921397379912,
+ "grad_norm": 0.03156977519392967,
+ "learning_rate": 0.0006,
+ "loss": 4.529452323913574,
+ "step": 579
+ },
+ {
+ "epoch": 8.055895196506551,
+ "grad_norm": 0.03411492332816124,
+ "learning_rate": 0.0006,
+ "loss": 4.501816749572754,
+ "step": 580
+ },
+ {
+ "epoch": 8.069868995633188,
+ "grad_norm": 0.03944215178489685,
+ "learning_rate": 0.0006,
+ "loss": 4.503504753112793,
+ "step": 581
+ },
+ {
+ "epoch": 8.083842794759825,
+ "grad_norm": 0.04511773958802223,
+ "learning_rate": 0.0006,
+ "loss": 4.481729984283447,
+ "step": 582
+ },
+ {
+ "epoch": 8.097816593886463,
+ "grad_norm": 0.03235149383544922,
+ "learning_rate": 0.0006,
+ "loss": 4.510499954223633,
+ "step": 583
+ },
+ {
+ "epoch": 8.1117903930131,
+ "grad_norm": 0.027723919600248337,
+ "learning_rate": 0.0006,
+ "loss": 4.492958068847656,
+ "step": 584
+ },
+ {
+ "epoch": 8.125764192139737,
+ "grad_norm": 0.033535368740558624,
+ "learning_rate": 0.0006,
+ "loss": 4.480009078979492,
+ "step": 585
+ },
+ {
+ "epoch": 8.139737991266376,
+ "grad_norm": 0.03412545099854469,
+ "learning_rate": 0.0006,
+ "loss": 4.464960098266602,
+ "step": 586
+ },
+ {
+ "epoch": 8.153711790393013,
+ "grad_norm": 0.03285292908549309,
+ "learning_rate": 0.0006,
+ "loss": 4.478358745574951,
+ "step": 587
+ },
+ {
+ "epoch": 8.167685589519651,
+ "grad_norm": 0.03460532799363136,
+ "learning_rate": 0.0006,
+ "loss": 4.490439414978027,
+ "step": 588
+ },
+ {
+ "epoch": 8.181659388646288,
+ "grad_norm": 0.037275977432727814,
+ "learning_rate": 0.0006,
+ "loss": 4.473151683807373,
+ "step": 589
+ },
+ {
+ "epoch": 8.195633187772925,
+ "grad_norm": 0.03485316038131714,
+ "learning_rate": 0.0006,
+ "loss": 4.491796493530273,
+ "step": 590
+ },
+ {
+ "epoch": 8.209606986899564,
+ "grad_norm": 0.03405699506402016,
+ "learning_rate": 0.0006,
+ "loss": 4.473565101623535,
+ "step": 591
+ },
+ {
+ "epoch": 8.2235807860262,
+ "grad_norm": 0.03975093364715576,
+ "learning_rate": 0.0006,
+ "loss": 4.494463920593262,
+ "step": 592
+ },
+ {
+ "epoch": 8.237554585152838,
+ "grad_norm": 0.03563615307211876,
+ "learning_rate": 0.0006,
+ "loss": 4.458979606628418,
+ "step": 593
+ },
+ {
+ "epoch": 8.251528384279476,
+ "grad_norm": 0.037183649837970734,
+ "learning_rate": 0.0006,
+ "loss": 4.4701948165893555,
+ "step": 594
+ },
+ {
+ "epoch": 8.265502183406113,
+ "grad_norm": 0.039340466260910034,
+ "learning_rate": 0.0006,
+ "loss": 4.489675521850586,
+ "step": 595
+ },
+ {
+ "epoch": 8.279475982532752,
+ "grad_norm": 0.03162173181772232,
+ "learning_rate": 0.0006,
+ "loss": 4.422170162200928,
+ "step": 596
+ },
+ {
+ "epoch": 8.293449781659389,
+ "grad_norm": 0.03257273510098457,
+ "learning_rate": 0.0006,
+ "loss": 4.467840194702148,
+ "step": 597
+ },
+ {
+ "epoch": 8.307423580786025,
+ "grad_norm": 0.028066672384738922,
+ "learning_rate": 0.0006,
+ "loss": 4.471856117248535,
+ "step": 598
+ },
+ {
+ "epoch": 8.321397379912664,
+ "grad_norm": 0.032139431685209274,
+ "learning_rate": 0.0006,
+ "loss": 4.485661029815674,
+ "step": 599
+ },
+ {
+ "epoch": 8.335371179039301,
+ "grad_norm": 0.03333858773112297,
+ "learning_rate": 0.0006,
+ "loss": 4.411584854125977,
+ "step": 600
+ },
+ {
+ "epoch": 8.34934497816594,
+ "grad_norm": 0.03705155476927757,
+ "learning_rate": 0.0006,
+ "loss": 4.466585159301758,
+ "step": 601
+ },
+ {
+ "epoch": 8.363318777292577,
+ "grad_norm": 0.03022557683289051,
+ "learning_rate": 0.0006,
+ "loss": 4.4287428855896,
+ "step": 602
+ },
+ {
+ "epoch": 8.377292576419213,
+ "grad_norm": 0.02911069616675377,
+ "learning_rate": 0.0006,
+ "loss": 4.432306289672852,
+ "step": 603
+ },
+ {
+ "epoch": 8.391266375545852,
+ "grad_norm": 0.0332532562315464,
+ "learning_rate": 0.0006,
+ "loss": 4.446920871734619,
+ "step": 604
+ },
+ {
+ "epoch": 8.405240174672489,
+ "grad_norm": 0.028356043621897697,
+ "learning_rate": 0.0006,
+ "loss": 4.41445779800415,
+ "step": 605
+ },
+ {
+ "epoch": 8.419213973799126,
+ "grad_norm": 0.026536710560321808,
+ "learning_rate": 0.0006,
+ "loss": 4.45195198059082,
+ "step": 606
+ },
+ {
+ "epoch": 8.433187772925764,
+ "grad_norm": 0.027183571830391884,
+ "learning_rate": 0.0006,
+ "loss": 4.482472896575928,
+ "step": 607
+ },
+ {
+ "epoch": 8.447161572052401,
+ "grad_norm": 0.02418459579348564,
+ "learning_rate": 0.0006,
+ "loss": 4.407785415649414,
+ "step": 608
+ },
+ {
+ "epoch": 8.46113537117904,
+ "grad_norm": 0.03382935747504234,
+ "learning_rate": 0.0006,
+ "loss": 4.457126140594482,
+ "step": 609
+ },
+ {
+ "epoch": 8.475109170305677,
+ "grad_norm": 0.0399114228785038,
+ "learning_rate": 0.0006,
+ "loss": 4.404670238494873,
+ "step": 610
+ },
+ {
+ "epoch": 8.489082969432314,
+ "grad_norm": 0.02914121001958847,
+ "learning_rate": 0.0006,
+ "loss": 4.385491371154785,
+ "step": 611
+ },
+ {
+ "epoch": 8.503056768558952,
+ "grad_norm": 0.024029329419136047,
+ "learning_rate": 0.0006,
+ "loss": 4.3807878494262695,
+ "step": 612
+ },
+ {
+ "epoch": 8.51703056768559,
+ "grad_norm": 0.024073908105492592,
+ "learning_rate": 0.0006,
+ "loss": 4.393002033233643,
+ "step": 613
+ },
+ {
+ "epoch": 8.531004366812226,
+ "grad_norm": 0.024022364988923073,
+ "learning_rate": 0.0006,
+ "loss": 4.44310188293457,
+ "step": 614
+ },
+ {
+ "epoch": 8.544978165938865,
+ "grad_norm": 0.02552313171327114,
+ "learning_rate": 0.0006,
+ "loss": 4.370255947113037,
+ "step": 615
+ },
+ {
+ "epoch": 8.558951965065502,
+ "grad_norm": 0.022251879796385765,
+ "learning_rate": 0.0006,
+ "loss": 4.366595268249512,
+ "step": 616
+ },
+ {
+ "epoch": 8.57292576419214,
+ "grad_norm": 0.022750860080122948,
+ "learning_rate": 0.0006,
+ "loss": 4.377684116363525,
+ "step": 617
+ },
+ {
+ "epoch": 8.586899563318777,
+ "grad_norm": 0.022422555834054947,
+ "learning_rate": 0.0006,
+ "loss": 4.397234916687012,
+ "step": 618
+ },
+ {
+ "epoch": 8.600873362445414,
+ "grad_norm": 0.02737540379166603,
+ "learning_rate": 0.0006,
+ "loss": 4.406569957733154,
+ "step": 619
+ },
+ {
+ "epoch": 8.614847161572053,
+ "grad_norm": 0.0230751670897007,
+ "learning_rate": 0.0006,
+ "loss": 4.37363862991333,
+ "step": 620
+ },
+ {
+ "epoch": 8.62882096069869,
+ "grad_norm": 0.02010422758758068,
+ "learning_rate": 0.0006,
+ "loss": 4.396723747253418,
+ "step": 621
+ },
+ {
+ "epoch": 8.642794759825328,
+ "grad_norm": 0.024875663220882416,
+ "learning_rate": 0.0006,
+ "loss": 4.382737159729004,
+ "step": 622
+ },
+ {
+ "epoch": 8.656768558951965,
+ "grad_norm": 0.026101084426045418,
+ "learning_rate": 0.0006,
+ "loss": 4.376001358032227,
+ "step": 623
+ },
+ {
+ "epoch": 8.670742358078602,
+ "grad_norm": 0.026131760329008102,
+ "learning_rate": 0.0006,
+ "loss": 4.392600059509277,
+ "step": 624
+ },
+ {
+ "epoch": 8.68471615720524,
+ "grad_norm": 0.02580229938030243,
+ "learning_rate": 0.0006,
+ "loss": 4.383554458618164,
+ "step": 625
+ },
+ {
+ "epoch": 8.698689956331878,
+ "grad_norm": 0.02919621206820011,
+ "learning_rate": 0.0006,
+ "loss": 4.369998455047607,
+ "step": 626
+ },
+ {
+ "epoch": 8.712663755458514,
+ "grad_norm": 0.03268479183316231,
+ "learning_rate": 0.0006,
+ "loss": 4.364940166473389,
+ "step": 627
+ },
+ {
+ "epoch": 8.726637554585153,
+ "grad_norm": 0.031615134328603745,
+ "learning_rate": 0.0006,
+ "loss": 4.354142189025879,
+ "step": 628
+ },
+ {
+ "epoch": 8.74061135371179,
+ "grad_norm": 0.03091943822801113,
+ "learning_rate": 0.0006,
+ "loss": 4.405896186828613,
+ "step": 629
+ },
+ {
+ "epoch": 8.754585152838429,
+ "grad_norm": 0.03459984436631203,
+ "learning_rate": 0.0006,
+ "loss": 4.386331558227539,
+ "step": 630
+ },
+ {
+ "epoch": 8.768558951965066,
+ "grad_norm": 0.03276519104838371,
+ "learning_rate": 0.0006,
+ "loss": 4.351153373718262,
+ "step": 631
+ },
+ {
+ "epoch": 8.782532751091702,
+ "grad_norm": 0.03300934657454491,
+ "learning_rate": 0.0006,
+ "loss": 4.364960670471191,
+ "step": 632
+ },
+ {
+ "epoch": 8.796506550218341,
+ "grad_norm": 0.03618944436311722,
+ "learning_rate": 0.0006,
+ "loss": 4.3519134521484375,
+ "step": 633
+ },
+ {
+ "epoch": 8.810480349344978,
+ "grad_norm": 0.03368232026696205,
+ "learning_rate": 0.0006,
+ "loss": 4.374147891998291,
+ "step": 634
+ },
+ {
+ "epoch": 8.824454148471617,
+ "grad_norm": 0.03252463415265083,
+ "learning_rate": 0.0006,
+ "loss": 4.367391586303711,
+ "step": 635
+ },
+ {
+ "epoch": 8.838427947598253,
+ "grad_norm": 0.03680579736828804,
+ "learning_rate": 0.0006,
+ "loss": 4.364116191864014,
+ "step": 636
+ },
+ {
+ "epoch": 8.85240174672489,
+ "grad_norm": 0.0317164771258831,
+ "learning_rate": 0.0006,
+ "loss": 4.379790306091309,
+ "step": 637
+ },
+ {
+ "epoch": 8.866375545851529,
+ "grad_norm": 0.031701602041721344,
+ "learning_rate": 0.0006,
+ "loss": 4.353549003601074,
+ "step": 638
+ },
+ {
+ "epoch": 8.880349344978166,
+ "grad_norm": 0.029211340472102165,
+ "learning_rate": 0.0006,
+ "loss": 4.343072891235352,
+ "step": 639
+ },
+ {
+ "epoch": 8.894323144104803,
+ "grad_norm": 0.02774505503475666,
+ "learning_rate": 0.0006,
+ "loss": 4.354020118713379,
+ "step": 640
+ },
+ {
+ "epoch": 8.908296943231441,
+ "grad_norm": 0.027463624253869057,
+ "learning_rate": 0.0006,
+ "loss": 4.354701519012451,
+ "step": 641
+ },
+ {
+ "epoch": 8.922270742358078,
+ "grad_norm": 0.023732105270028114,
+ "learning_rate": 0.0006,
+ "loss": 4.347830772399902,
+ "step": 642
+ },
+ {
+ "epoch": 8.936244541484717,
+ "grad_norm": 0.02339051477611065,
+ "learning_rate": 0.0006,
+ "loss": 4.342405319213867,
+ "step": 643
+ },
+ {
+ "epoch": 8.950218340611354,
+ "grad_norm": 0.023744868114590645,
+ "learning_rate": 0.0006,
+ "loss": 4.352578163146973,
+ "step": 644
+ },
+ {
+ "epoch": 8.96419213973799,
+ "grad_norm": 0.02563423290848732,
+ "learning_rate": 0.0006,
+ "loss": 4.37408971786499,
+ "step": 645
+ },
+ {
+ "epoch": 8.97816593886463,
+ "grad_norm": 0.031334877014160156,
+ "learning_rate": 0.0006,
+ "loss": 4.309673309326172,
+ "step": 646
+ },
+ {
+ "epoch": 8.992139737991266,
+ "grad_norm": 0.03283081576228142,
+ "learning_rate": 0.0006,
+ "loss": 4.348544597625732,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.03263505920767784,
+ "learning_rate": 0.0006,
+ "loss": 4.307372093200684,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.477582931518555,
+ "eval_runtime": 50.1212,
+ "eval_samples_per_second": 48.722,
+ "eval_steps_per_second": 1.536,
+ "step": 648
+ },
+ {
+ "epoch": 9.013973799126637,
+ "grad_norm": 0.038239408284425735,
+ "learning_rate": 0.0006,
+ "loss": 4.2784552574157715,
+ "step": 649
+ },
+ {
+ "epoch": 9.027947598253276,
+ "grad_norm": 0.044226426631212234,
+ "learning_rate": 0.0006,
+ "loss": 4.332424163818359,
+ "step": 650
+ },
+ {
+ "epoch": 9.041921397379912,
+ "grad_norm": 0.04743504151701927,
+ "learning_rate": 0.0006,
+ "loss": 4.303574085235596,
+ "step": 651
+ },
+ {
+ "epoch": 9.055895196506551,
+ "grad_norm": 0.04348866268992424,
+ "learning_rate": 0.0006,
+ "loss": 4.295550346374512,
+ "step": 652
+ },
+ {
+ "epoch": 9.069868995633188,
+ "grad_norm": 0.04830600693821907,
+ "learning_rate": 0.0006,
+ "loss": 4.2577619552612305,
+ "step": 653
+ },
+ {
+ "epoch": 9.083842794759825,
+ "grad_norm": 0.05154724419116974,
+ "learning_rate": 0.0006,
+ "loss": 4.314383506774902,
+ "step": 654
+ },
+ {
+ "epoch": 9.097816593886463,
+ "grad_norm": 0.044492293149232864,
+ "learning_rate": 0.0006,
+ "loss": 4.32614803314209,
+ "step": 655
+ },
+ {
+ "epoch": 9.1117903930131,
+ "grad_norm": 0.03842560201883316,
+ "learning_rate": 0.0006,
+ "loss": 4.273819446563721,
+ "step": 656
+ },
+ {
+ "epoch": 9.125764192139737,
+ "grad_norm": 0.043655358254909515,
+ "learning_rate": 0.0006,
+ "loss": 4.334014892578125,
+ "step": 657
+ },
+ {
+ "epoch": 9.139737991266376,
+ "grad_norm": 0.051922112703323364,
+ "learning_rate": 0.0006,
+ "loss": 4.308163642883301,
+ "step": 658
+ },
+ {
+ "epoch": 9.153711790393013,
+ "grad_norm": 0.049958787858486176,
+ "learning_rate": 0.0006,
+ "loss": 4.30555534362793,
+ "step": 659
+ },
+ {
+ "epoch": 9.167685589519651,
+ "grad_norm": 0.03839104622602463,
+ "learning_rate": 0.0006,
+ "loss": 4.316109657287598,
+ "step": 660
+ },
+ {
+ "epoch": 9.181659388646288,
+ "grad_norm": 0.03898056969046593,
+ "learning_rate": 0.0006,
+ "loss": 4.308863639831543,
+ "step": 661
+ },
+ {
+ "epoch": 9.195633187772925,
+ "grad_norm": 0.028817247599363327,
+ "learning_rate": 0.0006,
+ "loss": 4.300504684448242,
+ "step": 662
+ },
+ {
+ "epoch": 9.209606986899564,
+ "grad_norm": 0.030067335814237595,
+ "learning_rate": 0.0006,
+ "loss": 4.259067535400391,
+ "step": 663
+ },
+ {
+ "epoch": 9.2235807860262,
+ "grad_norm": 0.03195219859480858,
+ "learning_rate": 0.0006,
+ "loss": 4.3144426345825195,
+ "step": 664
+ },
+ {
+ "epoch": 9.237554585152838,
+ "grad_norm": 0.03194814175367355,
+ "learning_rate": 0.0006,
+ "loss": 4.259864330291748,
+ "step": 665
+ },
+ {
+ "epoch": 9.251528384279476,
+ "grad_norm": 0.02754005789756775,
+ "learning_rate": 0.0006,
+ "loss": 4.291876316070557,
+ "step": 666
+ },
+ {
+ "epoch": 9.265502183406113,
+ "grad_norm": 0.026083929464221,
+ "learning_rate": 0.0006,
+ "loss": 4.205921649932861,
+ "step": 667
+ },
+ {
+ "epoch": 9.279475982532752,
+ "grad_norm": 0.025165516883134842,
+ "learning_rate": 0.0006,
+ "loss": 4.23714017868042,
+ "step": 668
+ },
+ {
+ "epoch": 9.293449781659389,
+ "grad_norm": 0.02380996011197567,
+ "learning_rate": 0.0006,
+ "loss": 4.263561725616455,
+ "step": 669
+ },
+ {
+ "epoch": 9.307423580786025,
+ "grad_norm": 0.025552157312631607,
+ "learning_rate": 0.0006,
+ "loss": 4.222456932067871,
+ "step": 670
+ },
+ {
+ "epoch": 9.321397379912664,
+ "grad_norm": 0.024957234039902687,
+ "learning_rate": 0.0006,
+ "loss": 4.250582695007324,
+ "step": 671
+ },
+ {
+ "epoch": 9.335371179039301,
+ "grad_norm": 0.02580283023416996,
+ "learning_rate": 0.0006,
+ "loss": 4.240250587463379,
+ "step": 672
+ },
+ {
+ "epoch": 9.34934497816594,
+ "grad_norm": 0.020701562985777855,
+ "learning_rate": 0.0006,
+ "loss": 4.222497463226318,
+ "step": 673
+ },
+ {
+ "epoch": 9.363318777292577,
+ "grad_norm": 0.021373746916651726,
+ "learning_rate": 0.0006,
+ "loss": 4.242282390594482,
+ "step": 674
+ },
+ {
+ "epoch": 9.377292576419213,
+ "grad_norm": 0.02025660127401352,
+ "learning_rate": 0.0006,
+ "loss": 4.270265579223633,
+ "step": 675
+ },
+ {
+ "epoch": 9.391266375545852,
+ "grad_norm": 0.02325408160686493,
+ "learning_rate": 0.0006,
+ "loss": 4.222276210784912,
+ "step": 676
+ },
+ {
+ "epoch": 9.405240174672489,
+ "grad_norm": 0.02470816671848297,
+ "learning_rate": 0.0006,
+ "loss": 4.238652229309082,
+ "step": 677
+ },
+ {
+ "epoch": 9.419213973799126,
+ "grad_norm": 0.02343972586095333,
+ "learning_rate": 0.0006,
+ "loss": 4.24069881439209,
+ "step": 678
+ },
+ {
+ "epoch": 9.433187772925764,
+ "grad_norm": 0.021034302189946175,
+ "learning_rate": 0.0006,
+ "loss": 4.244692802429199,
+ "step": 679
+ },
+ {
+ "epoch": 9.447161572052401,
+ "grad_norm": 0.021374190226197243,
+ "learning_rate": 0.0006,
+ "loss": 4.224084854125977,
+ "step": 680
+ },
+ {
+ "epoch": 9.46113537117904,
+ "grad_norm": 0.020527871325612068,
+ "learning_rate": 0.0006,
+ "loss": 4.262082099914551,
+ "step": 681
+ },
+ {
+ "epoch": 9.475109170305677,
+ "grad_norm": 0.01585977151989937,
+ "learning_rate": 0.0006,
+ "loss": 4.226033687591553,
+ "step": 682
+ },
+ {
+ "epoch": 9.489082969432314,
+ "grad_norm": 0.016423987224698067,
+ "learning_rate": 0.0006,
+ "loss": 4.171637535095215,
+ "step": 683
+ },
+ {
+ "epoch": 9.503056768558952,
+ "grad_norm": 0.015297142788767815,
+ "learning_rate": 0.0006,
+ "loss": 4.209469795227051,
+ "step": 684
+ },
+ {
+ "epoch": 9.51703056768559,
+ "grad_norm": 0.014817374758422375,
+ "learning_rate": 0.0006,
+ "loss": 4.216704845428467,
+ "step": 685
+ },
+ {
+ "epoch": 9.531004366812226,
+ "grad_norm": 0.015434044413268566,
+ "learning_rate": 0.0006,
+ "loss": 4.256552696228027,
+ "step": 686
+ },
+ {
+ "epoch": 9.544978165938865,
+ "grad_norm": 0.016138242557644844,
+ "learning_rate": 0.0006,
+ "loss": 4.218762397766113,
+ "step": 687
+ },
+ {
+ "epoch": 9.558951965065502,
+ "grad_norm": 0.017201369628310204,
+ "learning_rate": 0.0006,
+ "loss": 4.251995086669922,
+ "step": 688
+ },
+ {
+ "epoch": 9.57292576419214,
+ "grad_norm": 0.01714685745537281,
+ "learning_rate": 0.0006,
+ "loss": 4.219054222106934,
+ "step": 689
+ },
+ {
+ "epoch": 9.586899563318777,
+ "grad_norm": 0.020723173394799232,
+ "learning_rate": 0.0006,
+ "loss": 4.255344390869141,
+ "step": 690
+ },
+ {
+ "epoch": 9.600873362445414,
+ "grad_norm": 0.028826871886849403,
+ "learning_rate": 0.0006,
+ "loss": 4.221752166748047,
+ "step": 691
+ },
+ {
+ "epoch": 9.614847161572053,
+ "grad_norm": 0.03474748879671097,
+ "learning_rate": 0.0006,
+ "loss": 4.205111503601074,
+ "step": 692
+ },
+ {
+ "epoch": 9.62882096069869,
+ "grad_norm": 0.030536217615008354,
+ "learning_rate": 0.0006,
+ "loss": 4.232375144958496,
+ "step": 693
+ },
+ {
+ "epoch": 9.642794759825328,
+ "grad_norm": 0.03158785030245781,
+ "learning_rate": 0.0006,
+ "loss": 4.186178207397461,
+ "step": 694
+ },
+ {
+ "epoch": 9.656768558951965,
+ "grad_norm": 0.032505910843610764,
+ "learning_rate": 0.0006,
+ "loss": 4.208681106567383,
+ "step": 695
+ },
+ {
+ "epoch": 9.670742358078602,
+ "grad_norm": 0.025617435574531555,
+ "learning_rate": 0.0006,
+ "loss": 4.190085411071777,
+ "step": 696
+ },
+ {
+ "epoch": 9.68471615720524,
+ "grad_norm": 0.03047073632478714,
+ "learning_rate": 0.0006,
+ "loss": 4.210445404052734,
+ "step": 697
+ },
+ {
+ "epoch": 9.698689956331878,
+ "grad_norm": 0.033015694469213486,
+ "learning_rate": 0.0006,
+ "loss": 4.215723037719727,
+ "step": 698
+ },
+ {
+ "epoch": 9.712663755458514,
+ "grad_norm": 0.0364084430038929,
+ "learning_rate": 0.0006,
+ "loss": 4.192442417144775,
+ "step": 699
+ },
+ {
+ "epoch": 9.726637554585153,
+ "grad_norm": 0.03577317297458649,
+ "learning_rate": 0.0006,
+ "loss": 4.20793342590332,
+ "step": 700
+ },
+ {
+ "epoch": 9.74061135371179,
+ "grad_norm": 0.031464435160160065,
+ "learning_rate": 0.0006,
+ "loss": 4.205752372741699,
+ "step": 701
+ },
+ {
+ "epoch": 9.754585152838429,
+ "grad_norm": 0.030628090724349022,
+ "learning_rate": 0.0006,
+ "loss": 4.209503173828125,
+ "step": 702
+ },
+ {
+ "epoch": 9.768558951965066,
+ "grad_norm": 0.031171889975667,
+ "learning_rate": 0.0006,
+ "loss": 4.189100742340088,
+ "step": 703
+ },
+ {
+ "epoch": 9.782532751091702,
+ "grad_norm": 0.026728026568889618,
+ "learning_rate": 0.0006,
+ "loss": 4.175262928009033,
+ "step": 704
+ },
+ {
+ "epoch": 9.796506550218341,
+ "grad_norm": 0.02975568361580372,
+ "learning_rate": 0.0006,
+ "loss": 4.180237770080566,
+ "step": 705
+ },
+ {
+ "epoch": 9.810480349344978,
+ "grad_norm": 0.03690735250711441,
+ "learning_rate": 0.0006,
+ "loss": 4.160732269287109,
+ "step": 706
+ },
+ {
+ "epoch": 9.824454148471617,
+ "grad_norm": 0.03488203138113022,
+ "learning_rate": 0.0006,
+ "loss": 4.228294849395752,
+ "step": 707
+ },
+ {
+ "epoch": 9.838427947598253,
+ "grad_norm": 0.032557982951402664,
+ "learning_rate": 0.0006,
+ "loss": 4.144038200378418,
+ "step": 708
+ },
+ {
+ "epoch": 9.85240174672489,
+ "grad_norm": 0.03189995512366295,
+ "learning_rate": 0.0006,
+ "loss": 4.194624900817871,
+ "step": 709
+ },
+ {
+ "epoch": 9.866375545851529,
+ "grad_norm": 0.03439774736762047,
+ "learning_rate": 0.0006,
+ "loss": 4.216994762420654,
+ "step": 710
+ },
+ {
+ "epoch": 9.880349344978166,
+ "grad_norm": 0.03789396584033966,
+ "learning_rate": 0.0006,
+ "loss": 4.196347236633301,
+ "step": 711
+ },
+ {
+ "epoch": 9.894323144104803,
+ "grad_norm": 0.037980109453201294,
+ "learning_rate": 0.0006,
+ "loss": 4.213890075683594,
+ "step": 712
+ },
+ {
+ "epoch": 9.908296943231441,
+ "grad_norm": 0.043379005044698715,
+ "learning_rate": 0.0006,
+ "loss": 4.209582328796387,
+ "step": 713
+ },
+ {
+ "epoch": 9.922270742358078,
+ "grad_norm": 0.03881588950753212,
+ "learning_rate": 0.0006,
+ "loss": 4.210249900817871,
+ "step": 714
+ },
+ {
+ "epoch": 9.936244541484717,
+ "grad_norm": 0.038644567131996155,
+ "learning_rate": 0.0006,
+ "loss": 4.169578552246094,
+ "step": 715
+ },
+ {
+ "epoch": 9.950218340611354,
+ "grad_norm": 0.03676586598157883,
+ "learning_rate": 0.0006,
+ "loss": 4.234776020050049,
+ "step": 716
+ },
+ {
+ "epoch": 9.96419213973799,
+ "grad_norm": 0.032105959951877594,
+ "learning_rate": 0.0006,
+ "loss": 4.218995094299316,
+ "step": 717
+ },
+ {
+ "epoch": 9.97816593886463,
+ "grad_norm": 0.034359272569417953,
+ "learning_rate": 0.0006,
+ "loss": 4.209888458251953,
+ "step": 718
+ },
+ {
+ "epoch": 9.992139737991266,
+ "grad_norm": 0.02772289142012596,
+ "learning_rate": 0.0006,
+ "loss": 4.201578140258789,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.03038903884589672,
+ "learning_rate": 0.0006,
+ "loss": 4.170413494110107,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.344418048858643,
+ "eval_runtime": 50.1464,
+ "eval_samples_per_second": 48.697,
+ "eval_steps_per_second": 1.536,
+ "step": 720
+ },
+ {
+ "epoch": 10.013973799126637,
+ "grad_norm": 0.026941193267703056,
+ "learning_rate": 0.0006,
+ "loss": 4.122128486633301,
+ "step": 721
+ },
+ {
+ "epoch": 10.027947598253276,
+ "grad_norm": 0.028237640857696533,
+ "learning_rate": 0.0006,
+ "loss": 4.120541572570801,
+ "step": 722
+ },
+ {
+ "epoch": 10.041921397379912,
+ "grad_norm": 0.02316083386540413,
+ "learning_rate": 0.0006,
+ "loss": 4.127598285675049,
+ "step": 723
+ },
+ {
+ "epoch": 10.055895196506551,
+ "grad_norm": 0.02862458862364292,
+ "learning_rate": 0.0006,
+ "loss": 4.066249847412109,
+ "step": 724
+ },
+ {
+ "epoch": 10.069868995633188,
+ "grad_norm": 0.031772635877132416,
+ "learning_rate": 0.0006,
+ "loss": 4.1211652755737305,
+ "step": 725
+ },
+ {
+ "epoch": 10.083842794759825,
+ "grad_norm": 0.031032619997859,
+ "learning_rate": 0.0006,
+ "loss": 4.125894546508789,
+ "step": 726
+ },
+ {
+ "epoch": 10.097816593886463,
+ "grad_norm": 0.02898111566901207,
+ "learning_rate": 0.0006,
+ "loss": 4.119715213775635,
+ "step": 727
+ },
+ {
+ "epoch": 10.1117903930131,
+ "grad_norm": 0.030101103708148003,
+ "learning_rate": 0.0006,
+ "loss": 4.087604522705078,
+ "step": 728
+ },
+ {
+ "epoch": 10.125764192139737,
+ "grad_norm": 0.025814464315772057,
+ "learning_rate": 0.0006,
+ "loss": 4.124494552612305,
+ "step": 729
+ },
+ {
+ "epoch": 10.139737991266376,
+ "grad_norm": 0.029547641053795815,
+ "learning_rate": 0.0006,
+ "loss": 4.072463035583496,
+ "step": 730
+ },
+ {
+ "epoch": 10.153711790393013,
+ "grad_norm": 0.03424989432096481,
+ "learning_rate": 0.0006,
+ "loss": 4.111055374145508,
+ "step": 731
+ },
+ {
+ "epoch": 10.167685589519651,
+ "grad_norm": 0.0335191935300827,
+ "learning_rate": 0.0006,
+ "loss": 4.111437797546387,
+ "step": 732
+ },
+ {
+ "epoch": 10.181659388646288,
+ "grad_norm": 0.02894248627126217,
+ "learning_rate": 0.0006,
+ "loss": 4.133310317993164,
+ "step": 733
+ },
+ {
+ "epoch": 10.195633187772925,
+ "grad_norm": 0.0266376081854105,
+ "learning_rate": 0.0006,
+ "loss": 4.132228851318359,
+ "step": 734
+ },
+ {
+ "epoch": 10.209606986899564,
+ "grad_norm": 0.020824341103434563,
+ "learning_rate": 0.0006,
+ "loss": 4.110835075378418,
+ "step": 735
+ },
+ {
+ "epoch": 10.2235807860262,
+ "grad_norm": 0.021089477464556694,
+ "learning_rate": 0.0006,
+ "loss": 4.1186065673828125,
+ "step": 736
+ },
+ {
+ "epoch": 10.237554585152838,
+ "grad_norm": 0.023007674142718315,
+ "learning_rate": 0.0006,
+ "loss": 4.089912414550781,
+ "step": 737
+ },
+ {
+ "epoch": 10.251528384279476,
+ "grad_norm": 0.025911295786499977,
+ "learning_rate": 0.0006,
+ "loss": 4.10264778137207,
+ "step": 738
+ },
+ {
+ "epoch": 10.265502183406113,
+ "grad_norm": 0.02900099940598011,
+ "learning_rate": 0.0006,
+ "loss": 4.074974060058594,
+ "step": 739
+ },
+ {
+ "epoch": 10.279475982532752,
+ "grad_norm": 0.027182135730981827,
+ "learning_rate": 0.0006,
+ "loss": 4.107949256896973,
+ "step": 740
+ },
+ {
+ "epoch": 10.293449781659389,
+ "grad_norm": 0.027884794399142265,
+ "learning_rate": 0.0006,
+ "loss": 4.039497375488281,
+ "step": 741
+ },
+ {
+ "epoch": 10.307423580786025,
+ "grad_norm": 0.025900574401021004,
+ "learning_rate": 0.0006,
+ "loss": 4.063011646270752,
+ "step": 742
+ },
+ {
+ "epoch": 10.321397379912664,
+ "grad_norm": 0.023031197488307953,
+ "learning_rate": 0.0006,
+ "loss": 4.086951732635498,
+ "step": 743
+ },
+ {
+ "epoch": 10.335371179039301,
+ "grad_norm": 0.021363092586398125,
+ "learning_rate": 0.0006,
+ "loss": 4.140152454376221,
+ "step": 744
+ },
+ {
+ "epoch": 10.34934497816594,
+ "grad_norm": 0.019563496112823486,
+ "learning_rate": 0.0006,
+ "loss": 4.087207794189453,
+ "step": 745
+ },
+ {
+ "epoch": 10.363318777292577,
+ "grad_norm": 0.018893307074904442,
+ "learning_rate": 0.0006,
+ "loss": 4.087675094604492,
+ "step": 746
+ },
+ {
+ "epoch": 10.377292576419213,
+ "grad_norm": 0.020667923614382744,
+ "learning_rate": 0.0006,
+ "loss": 4.079525947570801,
+ "step": 747
+ },
+ {
+ "epoch": 10.391266375545852,
+ "grad_norm": 0.021774202585220337,
+ "learning_rate": 0.0006,
+ "loss": 4.107867240905762,
+ "step": 748
+ },
+ {
+ "epoch": 10.405240174672489,
+ "grad_norm": 0.020068392157554626,
+ "learning_rate": 0.0006,
+ "loss": 4.0873212814331055,
+ "step": 749
+ },
+ {
+ "epoch": 10.419213973799126,
+ "grad_norm": 0.01842055842280388,
+ "learning_rate": 0.0006,
+ "loss": 4.101090431213379,
+ "step": 750
+ },
+ {
+ "epoch": 10.433187772925764,
+ "grad_norm": 0.01795836165547371,
+ "learning_rate": 0.0006,
+ "loss": 4.050619602203369,
+ "step": 751
+ },
+ {
+ "epoch": 10.447161572052401,
+ "grad_norm": 0.019673889502882957,
+ "learning_rate": 0.0006,
+ "loss": 4.086307525634766,
+ "step": 752
+ },
+ {
+ "epoch": 10.46113537117904,
+ "grad_norm": 0.01977507211267948,
+ "learning_rate": 0.0006,
+ "loss": 4.0656023025512695,
+ "step": 753
+ },
+ {
+ "epoch": 10.475109170305677,
+ "grad_norm": 0.019471775740385056,
+ "learning_rate": 0.0006,
+ "loss": 4.046194076538086,
+ "step": 754
+ },
+ {
+ "epoch": 10.489082969432314,
+ "grad_norm": 0.018536966294050217,
+ "learning_rate": 0.0006,
+ "loss": 4.033197402954102,
+ "step": 755
+ },
+ {
+ "epoch": 10.503056768558952,
+ "grad_norm": 0.018902234733104706,
+ "learning_rate": 0.0006,
+ "loss": 4.060090065002441,
+ "step": 756
+ },
+ {
+ "epoch": 10.51703056768559,
+ "grad_norm": 0.01902388036251068,
+ "learning_rate": 0.0006,
+ "loss": 4.046975135803223,
+ "step": 757
+ },
+ {
+ "epoch": 10.531004366812226,
+ "grad_norm": 0.01699388213455677,
+ "learning_rate": 0.0006,
+ "loss": 4.081168174743652,
+ "step": 758
+ },
+ {
+ "epoch": 10.544978165938865,
+ "grad_norm": 0.022350501269102097,
+ "learning_rate": 0.0006,
+ "loss": 4.049786567687988,
+ "step": 759
+ },
+ {
+ "epoch": 10.558951965065502,
+ "grad_norm": 0.023642681539058685,
+ "learning_rate": 0.0006,
+ "loss": 4.055563926696777,
+ "step": 760
+ },
+ {
+ "epoch": 10.57292576419214,
+ "grad_norm": 0.02127036638557911,
+ "learning_rate": 0.0006,
+ "loss": 4.027631759643555,
+ "step": 761
+ },
+ {
+ "epoch": 10.586899563318777,
+ "grad_norm": 0.017590979114174843,
+ "learning_rate": 0.0006,
+ "loss": 4.0793137550354,
+ "step": 762
+ },
+ {
+ "epoch": 10.600873362445414,
+ "grad_norm": 0.016930999234318733,
+ "learning_rate": 0.0006,
+ "loss": 4.027737140655518,
+ "step": 763
+ },
+ {
+ "epoch": 10.614847161572053,
+ "grad_norm": 0.018824463710188866,
+ "learning_rate": 0.0006,
+ "loss": 4.046807289123535,
+ "step": 764
+ },
+ {
+ "epoch": 10.62882096069869,
+ "grad_norm": 0.020024564117193222,
+ "learning_rate": 0.0006,
+ "loss": 4.039668083190918,
+ "step": 765
+ },
+ {
+ "epoch": 10.642794759825328,
+ "grad_norm": 0.0220749881118536,
+ "learning_rate": 0.0006,
+ "loss": 4.031907558441162,
+ "step": 766
+ },
+ {
+ "epoch": 10.656768558951965,
+ "grad_norm": 0.023237163200974464,
+ "learning_rate": 0.0006,
+ "loss": 4.059335708618164,
+ "step": 767
+ },
+ {
+ "epoch": 10.670742358078602,
+ "grad_norm": 0.023948276415467262,
+ "learning_rate": 0.0006,
+ "loss": 4.054678440093994,
+ "step": 768
+ },
+ {
+ "epoch": 10.68471615720524,
+ "grad_norm": 0.02620924636721611,
+ "learning_rate": 0.0006,
+ "loss": 4.063493728637695,
+ "step": 769
+ },
+ {
+ "epoch": 10.698689956331878,
+ "grad_norm": 0.02867635153234005,
+ "learning_rate": 0.0006,
+ "loss": 4.036065578460693,
+ "step": 770
+ },
+ {
+ "epoch": 10.712663755458514,
+ "grad_norm": 0.028705662116408348,
+ "learning_rate": 0.0006,
+ "loss": 4.049670219421387,
+ "step": 771
+ },
+ {
+ "epoch": 10.726637554585153,
+ "grad_norm": 0.024740688502788544,
+ "learning_rate": 0.0006,
+ "loss": 4.06446647644043,
+ "step": 772
+ },
+ {
+ "epoch": 10.74061135371179,
+ "grad_norm": 0.03012487292289734,
+ "learning_rate": 0.0006,
+ "loss": 4.0461015701293945,
+ "step": 773
+ },
+ {
+ "epoch": 10.754585152838429,
+ "grad_norm": 0.03286127373576164,
+ "learning_rate": 0.0006,
+ "loss": 4.025463104248047,
+ "step": 774
+ },
+ {
+ "epoch": 10.768558951965066,
+ "grad_norm": 0.028815945610404015,
+ "learning_rate": 0.0006,
+ "loss": 4.064168930053711,
+ "step": 775
+ },
+ {
+ "epoch": 10.782532751091702,
+ "grad_norm": 0.028760947287082672,
+ "learning_rate": 0.0006,
+ "loss": 4.033624649047852,
+ "step": 776
+ },
+ {
+ "epoch": 10.796506550218341,
+ "grad_norm": 0.02942710369825363,
+ "learning_rate": 0.0006,
+ "loss": 4.0383501052856445,
+ "step": 777
+ },
+ {
+ "epoch": 10.810480349344978,
+ "grad_norm": 0.026153555139899254,
+ "learning_rate": 0.0006,
+ "loss": 4.040336608886719,
+ "step": 778
+ },
+ {
+ "epoch": 10.824454148471617,
+ "grad_norm": 0.025876570492982864,
+ "learning_rate": 0.0006,
+ "loss": 4.051267147064209,
+ "step": 779
+ },
+ {
+ "epoch": 10.838427947598253,
+ "grad_norm": 0.024056321009993553,
+ "learning_rate": 0.0006,
+ "loss": 4.035898208618164,
+ "step": 780
+ },
+ {
+ "epoch": 10.85240174672489,
+ "grad_norm": 0.023602450266480446,
+ "learning_rate": 0.0006,
+ "loss": 4.041120529174805,
+ "step": 781
+ },
+ {
+ "epoch": 10.866375545851529,
+ "grad_norm": 0.0207925196737051,
+ "learning_rate": 0.0006,
+ "loss": 4.030442237854004,
+ "step": 782
+ },
+ {
+ "epoch": 10.880349344978166,
+ "grad_norm": 0.021948475390672684,
+ "learning_rate": 0.0006,
+ "loss": 4.059929847717285,
+ "step": 783
+ },
+ {
+ "epoch": 10.894323144104803,
+ "grad_norm": 0.022555390372872353,
+ "learning_rate": 0.0006,
+ "loss": 4.077475547790527,
+ "step": 784
+ },
+ {
+ "epoch": 10.908296943231441,
+ "grad_norm": 0.020376233384013176,
+ "learning_rate": 0.0006,
+ "loss": 4.038033485412598,
+ "step": 785
+ },
+ {
+ "epoch": 10.922270742358078,
+ "grad_norm": 0.019903237000107765,
+ "learning_rate": 0.0006,
+ "loss": 4.036017417907715,
+ "step": 786
+ },
+ {
+ "epoch": 10.936244541484717,
+ "grad_norm": 0.019737590104341507,
+ "learning_rate": 0.0006,
+ "loss": 4.027589321136475,
+ "step": 787
+ },
+ {
+ "epoch": 10.950218340611354,
+ "grad_norm": 0.017857525497674942,
+ "learning_rate": 0.0006,
+ "loss": 4.039187431335449,
+ "step": 788
+ },
+ {
+ "epoch": 10.96419213973799,
+ "grad_norm": 0.019433340057730675,
+ "learning_rate": 0.0006,
+ "loss": 4.025817394256592,
+ "step": 789
+ },
+ {
+ "epoch": 10.97816593886463,
+ "grad_norm": 0.019131962209939957,
+ "learning_rate": 0.0006,
+ "loss": 4.050541877746582,
+ "step": 790
+ },
+ {
+ "epoch": 10.992139737991266,
+ "grad_norm": 0.01899166963994503,
+ "learning_rate": 0.0006,
+ "loss": 4.034682273864746,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.02292267233133316,
+ "learning_rate": 0.0006,
+ "loss": 4.02860689163208,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.223135471343994,
+ "eval_runtime": 50.1809,
+ "eval_samples_per_second": 48.664,
+ "eval_steps_per_second": 1.534,
+ "step": 792
+ },
+ {
+ "epoch": 11.013973799126637,
+ "grad_norm": 0.02331780269742012,
+ "learning_rate": 0.0006,
+ "loss": 3.9552907943725586,
+ "step": 793
+ },
+ {
+ "epoch": 11.027947598253276,
+ "grad_norm": 0.027006106451153755,
+ "learning_rate": 0.0006,
+ "loss": 3.9303345680236816,
+ "step": 794
+ },
+ {
+ "epoch": 11.041921397379912,
+ "grad_norm": 0.03403666242957115,
+ "learning_rate": 0.0006,
+ "loss": 3.93170166015625,
+ "step": 795
+ },
+ {
+ "epoch": 11.055895196506551,
+ "grad_norm": 0.03784231096506119,
+ "learning_rate": 0.0006,
+ "loss": 3.9460182189941406,
+ "step": 796
+ },
+ {
+ "epoch": 11.069868995633188,
+ "grad_norm": 0.036992497742176056,
+ "learning_rate": 0.0006,
+ "loss": 3.9788053035736084,
+ "step": 797
+ },
+ {
+ "epoch": 11.083842794759825,
+ "grad_norm": 0.040899068117141724,
+ "learning_rate": 0.0006,
+ "loss": 3.97415828704834,
+ "step": 798
+ },
+ {
+ "epoch": 11.097816593886463,
+ "grad_norm": 0.0333116240799427,
+ "learning_rate": 0.0006,
+ "loss": 3.9691474437713623,
+ "step": 799
+ },
+ {
+ "epoch": 11.1117903930131,
+ "grad_norm": 0.03146163746714592,
+ "learning_rate": 0.0006,
+ "loss": 3.95757794380188,
+ "step": 800
+ },
+ {
+ "epoch": 11.125764192139737,
+ "grad_norm": 0.031018080189824104,
+ "learning_rate": 0.0006,
+ "loss": 3.9483275413513184,
+ "step": 801
+ },
+ {
+ "epoch": 11.139737991266376,
+ "grad_norm": 0.03301657736301422,
+ "learning_rate": 0.0006,
+ "loss": 3.972309112548828,
+ "step": 802
+ },
+ {
+ "epoch": 11.153711790393013,
+ "grad_norm": 0.03665755316615105,
+ "learning_rate": 0.0006,
+ "loss": 3.963214874267578,
+ "step": 803
+ },
+ {
+ "epoch": 11.167685589519651,
+ "grad_norm": 0.038088612258434296,
+ "learning_rate": 0.0006,
+ "loss": 3.9526877403259277,
+ "step": 804
+ },
+ {
+ "epoch": 11.181659388646288,
+ "grad_norm": 0.035294584929943085,
+ "learning_rate": 0.0006,
+ "loss": 3.9849953651428223,
+ "step": 805
+ },
+ {
+ "epoch": 11.195633187772925,
+ "grad_norm": 0.03202495723962784,
+ "learning_rate": 0.0006,
+ "loss": 3.944120407104492,
+ "step": 806
+ },
+ {
+ "epoch": 11.209606986899564,
+ "grad_norm": 0.028670601546764374,
+ "learning_rate": 0.0006,
+ "loss": 3.9752721786499023,
+ "step": 807
+ },
+ {
+ "epoch": 11.2235807860262,
+ "grad_norm": 0.032401736825704575,
+ "learning_rate": 0.0006,
+ "loss": 3.986171245574951,
+ "step": 808
+ },
+ {
+ "epoch": 11.237554585152838,
+ "grad_norm": 0.033387646079063416,
+ "learning_rate": 0.0006,
+ "loss": 3.977919101715088,
+ "step": 809
+ },
+ {
+ "epoch": 11.251528384279476,
+ "grad_norm": 0.03134278208017349,
+ "learning_rate": 0.0006,
+ "loss": 3.9734086990356445,
+ "step": 810
+ },
+ {
+ "epoch": 11.265502183406113,
+ "grad_norm": 0.030449511483311653,
+ "learning_rate": 0.0006,
+ "loss": 3.995955228805542,
+ "step": 811
+ },
+ {
+ "epoch": 11.279475982532752,
+ "grad_norm": 0.03138570487499237,
+ "learning_rate": 0.0006,
+ "loss": 3.9690403938293457,
+ "step": 812
+ },
+ {
+ "epoch": 11.293449781659389,
+ "grad_norm": 0.03469259291887283,
+ "learning_rate": 0.0006,
+ "loss": 3.9562559127807617,
+ "step": 813
+ },
+ {
+ "epoch": 11.307423580786025,
+ "grad_norm": 0.03249761089682579,
+ "learning_rate": 0.0006,
+ "loss": 3.950381278991699,
+ "step": 814
+ },
+ {
+ "epoch": 11.321397379912664,
+ "grad_norm": 0.03012247197329998,
+ "learning_rate": 0.0006,
+ "loss": 3.9659230709075928,
+ "step": 815
+ },
+ {
+ "epoch": 11.335371179039301,
+ "grad_norm": 0.026212701573967934,
+ "learning_rate": 0.0006,
+ "loss": 3.956185817718506,
+ "step": 816
+ },
+ {
+ "epoch": 11.34934497816594,
+ "grad_norm": 0.02690894901752472,
+ "learning_rate": 0.0006,
+ "loss": 3.9513344764709473,
+ "step": 817
+ },
+ {
+ "epoch": 11.363318777292577,
+ "grad_norm": 0.02419866994023323,
+ "learning_rate": 0.0006,
+ "loss": 3.997973680496216,
+ "step": 818
+ },
+ {
+ "epoch": 11.377292576419213,
+ "grad_norm": 0.027116507291793823,
+ "learning_rate": 0.0006,
+ "loss": 3.9817705154418945,
+ "step": 819
+ },
+ {
+ "epoch": 11.391266375545852,
+ "grad_norm": 0.029049331322312355,
+ "learning_rate": 0.0006,
+ "loss": 3.951998472213745,
+ "step": 820
+ },
+ {
+ "epoch": 11.405240174672489,
+ "grad_norm": 0.026706157252192497,
+ "learning_rate": 0.0006,
+ "loss": 3.9744365215301514,
+ "step": 821
+ },
+ {
+ "epoch": 11.419213973799126,
+ "grad_norm": 0.025000600144267082,
+ "learning_rate": 0.0006,
+ "loss": 3.959059238433838,
+ "step": 822
+ },
+ {
+ "epoch": 11.433187772925764,
+ "grad_norm": 0.024861274287104607,
+ "learning_rate": 0.0006,
+ "loss": 3.9474871158599854,
+ "step": 823
+ },
+ {
+ "epoch": 11.447161572052401,
+ "grad_norm": 0.023006360977888107,
+ "learning_rate": 0.0006,
+ "loss": 3.924236297607422,
+ "step": 824
+ },
+ {
+ "epoch": 11.46113537117904,
+ "grad_norm": 0.023747073486447334,
+ "learning_rate": 0.0006,
+ "loss": 3.9383111000061035,
+ "step": 825
+ },
+ {
+ "epoch": 11.475109170305677,
+ "grad_norm": 0.027958976104855537,
+ "learning_rate": 0.0006,
+ "loss": 3.989518880844116,
+ "step": 826
+ },
+ {
+ "epoch": 11.489082969432314,
+ "grad_norm": 0.026648882776498795,
+ "learning_rate": 0.0006,
+ "loss": 3.9455833435058594,
+ "step": 827
+ },
+ {
+ "epoch": 11.503056768558952,
+ "grad_norm": 0.023990288376808167,
+ "learning_rate": 0.0006,
+ "loss": 3.9832968711853027,
+ "step": 828
+ },
+ {
+ "epoch": 11.51703056768559,
+ "grad_norm": 0.02722238190472126,
+ "learning_rate": 0.0006,
+ "loss": 3.924104690551758,
+ "step": 829
+ },
+ {
+ "epoch": 11.531004366812226,
+ "grad_norm": 0.026512466371059418,
+ "learning_rate": 0.0006,
+ "loss": 3.9410343170166016,
+ "step": 830
+ },
+ {
+ "epoch": 11.544978165938865,
+ "grad_norm": 0.022135436534881592,
+ "learning_rate": 0.0006,
+ "loss": 3.903899669647217,
+ "step": 831
+ },
+ {
+ "epoch": 11.558951965065502,
+ "grad_norm": 0.022456489503383636,
+ "learning_rate": 0.0006,
+ "loss": 3.962076187133789,
+ "step": 832
+ },
+ {
+ "epoch": 11.57292576419214,
+ "grad_norm": 0.024932855740189552,
+ "learning_rate": 0.0006,
+ "loss": 3.9023091793060303,
+ "step": 833
+ },
+ {
+ "epoch": 11.586899563318777,
+ "grad_norm": 0.02856597490608692,
+ "learning_rate": 0.0006,
+ "loss": 3.928679943084717,
+ "step": 834
+ },
+ {
+ "epoch": 11.600873362445414,
+ "grad_norm": 0.034227993339300156,
+ "learning_rate": 0.0006,
+ "loss": 3.9686708450317383,
+ "step": 835
+ },
+ {
+ "epoch": 11.614847161572053,
+ "grad_norm": 0.03348609432578087,
+ "learning_rate": 0.0006,
+ "loss": 4.001498699188232,
+ "step": 836
+ },
+ {
+ "epoch": 11.62882096069869,
+ "grad_norm": 0.028687726706266403,
+ "learning_rate": 0.0006,
+ "loss": 3.9448747634887695,
+ "step": 837
+ },
+ {
+ "epoch": 11.642794759825328,
+ "grad_norm": 0.030512670055031776,
+ "learning_rate": 0.0006,
+ "loss": 3.967744827270508,
+ "step": 838
+ },
+ {
+ "epoch": 11.656768558951965,
+ "grad_norm": 0.028223708271980286,
+ "learning_rate": 0.0006,
+ "loss": 3.937486171722412,
+ "step": 839
+ },
+ {
+ "epoch": 11.670742358078602,
+ "grad_norm": 0.026596587151288986,
+ "learning_rate": 0.0006,
+ "loss": 3.9503097534179688,
+ "step": 840
+ },
+ {
+ "epoch": 11.68471615720524,
+ "grad_norm": 0.025357289239764214,
+ "learning_rate": 0.0006,
+ "loss": 3.9005143642425537,
+ "step": 841
+ },
+ {
+ "epoch": 11.698689956331878,
+ "grad_norm": 0.027513934299349785,
+ "learning_rate": 0.0006,
+ "loss": 3.9426188468933105,
+ "step": 842
+ },
+ {
+ "epoch": 11.712663755458514,
+ "grad_norm": 0.024877114221453667,
+ "learning_rate": 0.0006,
+ "loss": 3.9422965049743652,
+ "step": 843
+ },
+ {
+ "epoch": 11.726637554585153,
+ "grad_norm": 0.024543913081288338,
+ "learning_rate": 0.0006,
+ "loss": 3.9211392402648926,
+ "step": 844
+ },
+ {
+ "epoch": 11.74061135371179,
+ "grad_norm": 0.02748306654393673,
+ "learning_rate": 0.0006,
+ "loss": 3.9308085441589355,
+ "step": 845
+ },
+ {
+ "epoch": 11.754585152838429,
+ "grad_norm": 0.02310740016400814,
+ "learning_rate": 0.0006,
+ "loss": 3.9191694259643555,
+ "step": 846
+ },
+ {
+ "epoch": 11.768558951965066,
+ "grad_norm": 0.01961519382894039,
+ "learning_rate": 0.0006,
+ "loss": 3.963473081588745,
+ "step": 847
+ },
+ {
+ "epoch": 11.782532751091702,
+ "grad_norm": 0.02019876055419445,
+ "learning_rate": 0.0006,
+ "loss": 3.9336318969726562,
+ "step": 848
+ },
+ {
+ "epoch": 11.796506550218341,
+ "grad_norm": 0.017846928909420967,
+ "learning_rate": 0.0006,
+ "loss": 3.9323928356170654,
+ "step": 849
+ },
+ {
+ "epoch": 11.810480349344978,
+ "grad_norm": 0.0204033050686121,
+ "learning_rate": 0.0006,
+ "loss": 3.9221231937408447,
+ "step": 850
+ },
+ {
+ "epoch": 11.824454148471617,
+ "grad_norm": 0.0186605304479599,
+ "learning_rate": 0.0006,
+ "loss": 3.964756965637207,
+ "step": 851
+ },
+ {
+ "epoch": 11.838427947598253,
+ "grad_norm": 0.01672505773603916,
+ "learning_rate": 0.0006,
+ "loss": 3.921032667160034,
+ "step": 852
+ },
+ {
+ "epoch": 11.85240174672489,
+ "grad_norm": 0.01734270341694355,
+ "learning_rate": 0.0006,
+ "loss": 3.9388551712036133,
+ "step": 853
+ },
+ {
+ "epoch": 11.866375545851529,
+ "grad_norm": 0.01686406321823597,
+ "learning_rate": 0.0006,
+ "loss": 3.9283366203308105,
+ "step": 854
+ },
+ {
+ "epoch": 11.880349344978166,
+ "grad_norm": 0.01593155413866043,
+ "learning_rate": 0.0006,
+ "loss": 3.9095754623413086,
+ "step": 855
+ },
+ {
+ "epoch": 11.894323144104803,
+ "grad_norm": 0.014560039155185223,
+ "learning_rate": 0.0006,
+ "loss": 3.942214012145996,
+ "step": 856
+ },
+ {
+ "epoch": 11.908296943231441,
+ "grad_norm": 0.016584530472755432,
+ "learning_rate": 0.0006,
+ "loss": 3.8745198249816895,
+ "step": 857
+ },
+ {
+ "epoch": 11.922270742358078,
+ "grad_norm": 0.016951464116573334,
+ "learning_rate": 0.0006,
+ "loss": 3.9224963188171387,
+ "step": 858
+ },
+ {
+ "epoch": 11.936244541484717,
+ "grad_norm": 0.017965901643037796,
+ "learning_rate": 0.0006,
+ "loss": 3.886237621307373,
+ "step": 859
+ },
+ {
+ "epoch": 11.950218340611354,
+ "grad_norm": 0.01874147541821003,
+ "learning_rate": 0.0006,
+ "loss": 3.9200339317321777,
+ "step": 860
+ },
+ {
+ "epoch": 11.96419213973799,
+ "grad_norm": 0.021464595571160316,
+ "learning_rate": 0.0006,
+ "loss": 3.9424729347229004,
+ "step": 861
+ },
+ {
+ "epoch": 11.97816593886463,
+ "grad_norm": 0.02506706677377224,
+ "learning_rate": 0.0006,
+ "loss": 3.9516968727111816,
+ "step": 862
+ },
+ {
+ "epoch": 11.992139737991266,
+ "grad_norm": 0.02550777979195118,
+ "learning_rate": 0.0006,
+ "loss": 3.9148871898651123,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.022032644599676132,
+ "learning_rate": 0.0006,
+ "loss": 3.934220314025879,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.146186828613281,
+ "eval_runtime": 70.9324,
+ "eval_samples_per_second": 34.427,
+ "eval_steps_per_second": 1.086,
+ "step": 864
+ },
+ {
+ "epoch": 12.013973799126637,
+ "grad_norm": 0.021564407274127007,
+ "learning_rate": 0.0006,
+ "loss": 3.8425402641296387,
+ "step": 865
+ },
+ {
+ "epoch": 12.027947598253276,
+ "grad_norm": 0.021265074610710144,
+ "learning_rate": 0.0006,
+ "loss": 3.8457272052764893,
+ "step": 866
+ },
+ {
+ "epoch": 12.041921397379912,
+ "grad_norm": 0.02154017984867096,
+ "learning_rate": 0.0006,
+ "loss": 3.810920238494873,
+ "step": 867
+ },
+ {
+ "epoch": 12.055895196506551,
+ "grad_norm": 0.020422060042619705,
+ "learning_rate": 0.0006,
+ "loss": 3.8347911834716797,
+ "step": 868
+ },
+ {
+ "epoch": 12.069868995633188,
+ "grad_norm": 0.01949428766965866,
+ "learning_rate": 0.0006,
+ "loss": 3.831073760986328,
+ "step": 869
+ },
+ {
+ "epoch": 12.083842794759825,
+ "grad_norm": 0.021055635064840317,
+ "learning_rate": 0.0006,
+ "loss": 3.8869409561157227,
+ "step": 870
+ },
+ {
+ "epoch": 12.097816593886463,
+ "grad_norm": 0.02397136203944683,
+ "learning_rate": 0.0006,
+ "loss": 3.837860107421875,
+ "step": 871
+ },
+ {
+ "epoch": 12.1117903930131,
+ "grad_norm": 0.02733064442873001,
+ "learning_rate": 0.0006,
+ "loss": 3.8453102111816406,
+ "step": 872
+ },
+ {
+ "epoch": 12.125764192139737,
+ "grad_norm": 0.03023727424442768,
+ "learning_rate": 0.0006,
+ "loss": 3.8106770515441895,
+ "step": 873
+ },
+ {
+ "epoch": 12.139737991266376,
+ "grad_norm": 0.0334315188229084,
+ "learning_rate": 0.0006,
+ "loss": 3.835714817047119,
+ "step": 874
+ },
+ {
+ "epoch": 12.153711790393013,
+ "grad_norm": 0.03233368694782257,
+ "learning_rate": 0.0006,
+ "loss": 3.8509063720703125,
+ "step": 875
+ },
+ {
+ "epoch": 12.167685589519651,
+ "grad_norm": 0.03522663936018944,
+ "learning_rate": 0.0006,
+ "loss": 3.854410171508789,
+ "step": 876
+ },
+ {
+ "epoch": 12.181659388646288,
+ "grad_norm": 0.04753761738538742,
+ "learning_rate": 0.0006,
+ "loss": 3.882387638092041,
+ "step": 877
+ },
+ {
+ "epoch": 12.195633187772925,
+ "grad_norm": 0.049719441682100296,
+ "learning_rate": 0.0006,
+ "loss": 3.8863918781280518,
+ "step": 878
+ },
+ {
+ "epoch": 12.209606986899564,
+ "grad_norm": 0.0482778400182724,
+ "learning_rate": 0.0006,
+ "loss": 3.8418054580688477,
+ "step": 879
+ },
+ {
+ "epoch": 12.2235807860262,
+ "grad_norm": 0.04967353492975235,
+ "learning_rate": 0.0006,
+ "loss": 3.88840389251709,
+ "step": 880
+ },
+ {
+ "epoch": 12.237554585152838,
+ "grad_norm": 0.04709675535559654,
+ "learning_rate": 0.0006,
+ "loss": 3.8831706047058105,
+ "step": 881
+ },
+ {
+ "epoch": 12.251528384279476,
+ "grad_norm": 0.05031110718846321,
+ "learning_rate": 0.0006,
+ "loss": 3.8964877128601074,
+ "step": 882
+ },
+ {
+ "epoch": 12.265502183406113,
+ "grad_norm": 0.04771656170487404,
+ "learning_rate": 0.0006,
+ "loss": 3.902888774871826,
+ "step": 883
+ },
+ {
+ "epoch": 12.279475982532752,
+ "grad_norm": 0.041541457176208496,
+ "learning_rate": 0.0006,
+ "loss": 3.849850654602051,
+ "step": 884
+ },
+ {
+ "epoch": 12.293449781659389,
+ "grad_norm": 0.04055247828364372,
+ "learning_rate": 0.0006,
+ "loss": 3.907242774963379,
+ "step": 885
+ },
+ {
+ "epoch": 12.307423580786025,
+ "grad_norm": 0.0392373651266098,
+ "learning_rate": 0.0006,
+ "loss": 3.882129669189453,
+ "step": 886
+ },
+ {
+ "epoch": 12.321397379912664,
+ "grad_norm": 0.040552686899900436,
+ "learning_rate": 0.0006,
+ "loss": 3.8719077110290527,
+ "step": 887
+ },
+ {
+ "epoch": 12.335371179039301,
+ "grad_norm": 0.03997429832816124,
+ "learning_rate": 0.0006,
+ "loss": 3.8770203590393066,
+ "step": 888
+ },
+ {
+ "epoch": 12.34934497816594,
+ "grad_norm": 0.04006315395236015,
+ "learning_rate": 0.0006,
+ "loss": 3.888833999633789,
+ "step": 889
+ },
+ {
+ "epoch": 12.363318777292577,
+ "grad_norm": 0.04192065820097923,
+ "learning_rate": 0.0006,
+ "loss": 3.9480466842651367,
+ "step": 890
+ },
+ {
+ "epoch": 12.377292576419213,
+ "grad_norm": 0.03901645913720131,
+ "learning_rate": 0.0006,
+ "loss": 3.8987879753112793,
+ "step": 891
+ },
+ {
+ "epoch": 12.391266375545852,
+ "grad_norm": 0.034923430532217026,
+ "learning_rate": 0.0006,
+ "loss": 3.887423515319824,
+ "step": 892
+ },
+ {
+ "epoch": 12.405240174672489,
+ "grad_norm": 0.03397240489721298,
+ "learning_rate": 0.0006,
+ "loss": 3.874734878540039,
+ "step": 893
+ },
+ {
+ "epoch": 12.419213973799126,
+ "grad_norm": 0.03498395159840584,
+ "learning_rate": 0.0006,
+ "loss": 3.8725318908691406,
+ "step": 894
+ },
+ {
+ "epoch": 12.433187772925764,
+ "grad_norm": 0.03299591317772865,
+ "learning_rate": 0.0006,
+ "loss": 3.8542797565460205,
+ "step": 895
+ },
+ {
+ "epoch": 12.447161572052401,
+ "grad_norm": 0.03591961786150932,
+ "learning_rate": 0.0006,
+ "loss": 3.8667421340942383,
+ "step": 896
+ },
+ {
+ "epoch": 12.46113537117904,
+ "grad_norm": 0.032906632870435715,
+ "learning_rate": 0.0006,
+ "loss": 3.802811622619629,
+ "step": 897
+ },
+ {
+ "epoch": 12.475109170305677,
+ "grad_norm": 0.02919355221092701,
+ "learning_rate": 0.0006,
+ "loss": 3.9085006713867188,
+ "step": 898
+ },
+ {
+ "epoch": 12.489082969432314,
+ "grad_norm": 0.02636081911623478,
+ "learning_rate": 0.0006,
+ "loss": 3.876291275024414,
+ "step": 899
+ },
+ {
+ "epoch": 12.503056768558952,
+ "grad_norm": 0.027786940336227417,
+ "learning_rate": 0.0006,
+ "loss": 3.813384532928467,
+ "step": 900
+ },
+ {
+ "epoch": 12.51703056768559,
+ "grad_norm": 0.021504681557416916,
+ "learning_rate": 0.0006,
+ "loss": 3.8531389236450195,
+ "step": 901
+ },
+ {
+ "epoch": 12.531004366812226,
+ "grad_norm": 0.020176850259304047,
+ "learning_rate": 0.0006,
+ "loss": 3.8540682792663574,
+ "step": 902
+ },
+ {
+ "epoch": 12.544978165938865,
+ "grad_norm": 0.018069395795464516,
+ "learning_rate": 0.0006,
+ "loss": 3.8401103019714355,
+ "step": 903
+ },
+ {
+ "epoch": 12.558951965065502,
+ "grad_norm": 0.017131980508565903,
+ "learning_rate": 0.0006,
+ "loss": 3.8590402603149414,
+ "step": 904
+ },
+ {
+ "epoch": 12.57292576419214,
+ "grad_norm": 0.016838181763887405,
+ "learning_rate": 0.0006,
+ "loss": 3.816793441772461,
+ "step": 905
+ },
+ {
+ "epoch": 12.586899563318777,
+ "grad_norm": 0.01688799448311329,
+ "learning_rate": 0.0006,
+ "loss": 3.8501386642456055,
+ "step": 906
+ },
+ {
+ "epoch": 12.600873362445414,
+ "grad_norm": 0.018547389656305313,
+ "learning_rate": 0.0006,
+ "loss": 3.844679355621338,
+ "step": 907
+ },
+ {
+ "epoch": 12.614847161572053,
+ "grad_norm": 0.01693912222981453,
+ "learning_rate": 0.0006,
+ "loss": 3.8392562866210938,
+ "step": 908
+ },
+ {
+ "epoch": 12.62882096069869,
+ "grad_norm": 0.017632123082876205,
+ "learning_rate": 0.0006,
+ "loss": 3.8433165550231934,
+ "step": 909
+ },
+ {
+ "epoch": 12.642794759825328,
+ "grad_norm": 0.017826121300458908,
+ "learning_rate": 0.0006,
+ "loss": 3.880542039871216,
+ "step": 910
+ },
+ {
+ "epoch": 12.656768558951965,
+ "grad_norm": 0.01775546185672283,
+ "learning_rate": 0.0006,
+ "loss": 3.828543186187744,
+ "step": 911
+ },
+ {
+ "epoch": 12.670742358078602,
+ "grad_norm": 0.016220970079302788,
+ "learning_rate": 0.0006,
+ "loss": 3.835036039352417,
+ "step": 912
+ },
+ {
+ "epoch": 12.68471615720524,
+ "grad_norm": 0.015805263072252274,
+ "learning_rate": 0.0006,
+ "loss": 3.860929489135742,
+ "step": 913
+ },
+ {
+ "epoch": 12.698689956331878,
+ "grad_norm": 0.014601027593016624,
+ "learning_rate": 0.0006,
+ "loss": 3.849916934967041,
+ "step": 914
+ },
+ {
+ "epoch": 12.712663755458514,
+ "grad_norm": 0.014955640770494938,
+ "learning_rate": 0.0006,
+ "loss": 3.82222843170166,
+ "step": 915
+ },
+ {
+ "epoch": 12.726637554585153,
+ "grad_norm": 0.01635930687189102,
+ "learning_rate": 0.0006,
+ "loss": 3.8616011142730713,
+ "step": 916
+ },
+ {
+ "epoch": 12.74061135371179,
+ "grad_norm": 0.015701569616794586,
+ "learning_rate": 0.0006,
+ "loss": 3.827305316925049,
+ "step": 917
+ },
+ {
+ "epoch": 12.754585152838429,
+ "grad_norm": 0.014878005720674992,
+ "learning_rate": 0.0006,
+ "loss": 3.8204379081726074,
+ "step": 918
+ },
+ {
+ "epoch": 12.768558951965066,
+ "grad_norm": 0.015863968059420586,
+ "learning_rate": 0.0006,
+ "loss": 3.8282384872436523,
+ "step": 919
+ },
+ {
+ "epoch": 12.782532751091702,
+ "grad_norm": 0.015376720577478409,
+ "learning_rate": 0.0006,
+ "loss": 3.8476157188415527,
+ "step": 920
+ },
+ {
+ "epoch": 12.796506550218341,
+ "grad_norm": 0.015112238936126232,
+ "learning_rate": 0.0006,
+ "loss": 3.814873695373535,
+ "step": 921
+ },
+ {
+ "epoch": 12.810480349344978,
+ "grad_norm": 0.014457261189818382,
+ "learning_rate": 0.0006,
+ "loss": 3.874340295791626,
+ "step": 922
+ },
+ {
+ "epoch": 12.824454148471617,
+ "grad_norm": 0.013799191452562809,
+ "learning_rate": 0.0006,
+ "loss": 3.8461344242095947,
+ "step": 923
+ },
+ {
+ "epoch": 12.838427947598253,
+ "grad_norm": 0.015976861119270325,
+ "learning_rate": 0.0006,
+ "loss": 3.8348283767700195,
+ "step": 924
+ },
+ {
+ "epoch": 12.85240174672489,
+ "grad_norm": 0.016569344326853752,
+ "learning_rate": 0.0006,
+ "loss": 3.8375229835510254,
+ "step": 925
+ },
+ {
+ "epoch": 12.866375545851529,
+ "grad_norm": 0.016443882137537003,
+ "learning_rate": 0.0006,
+ "loss": 3.814178943634033,
+ "step": 926
+ },
+ {
+ "epoch": 12.880349344978166,
+ "grad_norm": 0.01687130145728588,
+ "learning_rate": 0.0006,
+ "loss": 3.7934679985046387,
+ "step": 927
+ },
+ {
+ "epoch": 12.894323144104803,
+ "grad_norm": 0.01750864088535309,
+ "learning_rate": 0.0006,
+ "loss": 3.8297150135040283,
+ "step": 928
+ },
+ {
+ "epoch": 12.908296943231441,
+ "grad_norm": 0.017512314021587372,
+ "learning_rate": 0.0006,
+ "loss": 3.7785584926605225,
+ "step": 929
+ },
+ {
+ "epoch": 12.922270742358078,
+ "grad_norm": 0.01678168773651123,
+ "learning_rate": 0.0006,
+ "loss": 3.8569579124450684,
+ "step": 930
+ },
+ {
+ "epoch": 12.936244541484717,
+ "grad_norm": 0.017443843185901642,
+ "learning_rate": 0.0006,
+ "loss": 3.8003761768341064,
+ "step": 931
+ },
+ {
+ "epoch": 12.950218340611354,
+ "grad_norm": 0.017418883740901947,
+ "learning_rate": 0.0006,
+ "loss": 3.8066251277923584,
+ "step": 932
+ },
+ {
+ "epoch": 12.96419213973799,
+ "grad_norm": 0.01592562161386013,
+ "learning_rate": 0.0006,
+ "loss": 3.8218679428100586,
+ "step": 933
+ },
+ {
+ "epoch": 12.97816593886463,
+ "grad_norm": 0.01742086559534073,
+ "learning_rate": 0.0006,
+ "loss": 3.8229286670684814,
+ "step": 934
+ },
+ {
+ "epoch": 12.992139737991266,
+ "grad_norm": 0.017524391412734985,
+ "learning_rate": 0.0006,
+ "loss": 3.810349941253662,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.019961200654506683,
+ "learning_rate": 0.0006,
+ "loss": 3.8229546546936035,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.08996057510376,
+ "eval_runtime": 49.9041,
+ "eval_samples_per_second": 48.934,
+ "eval_steps_per_second": 1.543,
+ "step": 936
+ },
+ {
+ "epoch": 13.013973799126637,
+ "grad_norm": 0.023570898920297623,
+ "learning_rate": 0.0006,
+ "loss": 3.7133145332336426,
+ "step": 937
+ },
+ {
+ "epoch": 13.027947598253276,
+ "grad_norm": 0.03165869787335396,
+ "learning_rate": 0.0006,
+ "loss": 3.7199676036834717,
+ "step": 938
+ },
+ {
+ "epoch": 13.041921397379912,
+ "grad_norm": 0.03561289608478546,
+ "learning_rate": 0.0006,
+ "loss": 3.7414278984069824,
+ "step": 939
+ },
+ {
+ "epoch": 13.055895196506551,
+ "grad_norm": 0.03167610988020897,
+ "learning_rate": 0.0006,
+ "loss": 3.7263808250427246,
+ "step": 940
+ },
+ {
+ "epoch": 13.069868995633188,
+ "grad_norm": 0.035912878811359406,
+ "learning_rate": 0.0006,
+ "loss": 3.7170684337615967,
+ "step": 941
+ },
+ {
+ "epoch": 13.083842794759825,
+ "grad_norm": 0.03632035478949547,
+ "learning_rate": 0.0006,
+ "loss": 3.750077724456787,
+ "step": 942
+ },
+ {
+ "epoch": 13.097816593886463,
+ "grad_norm": 0.031844258308410645,
+ "learning_rate": 0.0006,
+ "loss": 3.7065911293029785,
+ "step": 943
+ },
+ {
+ "epoch": 13.1117903930131,
+ "grad_norm": 0.03410554304718971,
+ "learning_rate": 0.0006,
+ "loss": 3.739224910736084,
+ "step": 944
+ },
+ {
+ "epoch": 13.125764192139737,
+ "grad_norm": 0.03375937044620514,
+ "learning_rate": 0.0006,
+ "loss": 3.6903367042541504,
+ "step": 945
+ },
+ {
+ "epoch": 13.139737991266376,
+ "grad_norm": 0.03705555200576782,
+ "learning_rate": 0.0006,
+ "loss": 3.778822422027588,
+ "step": 946
+ },
+ {
+ "epoch": 13.153711790393013,
+ "grad_norm": 0.03603963926434517,
+ "learning_rate": 0.0006,
+ "loss": 3.73783802986145,
+ "step": 947
+ },
+ {
+ "epoch": 13.167685589519651,
+ "grad_norm": 0.034089673310518265,
+ "learning_rate": 0.0006,
+ "loss": 3.7886078357696533,
+ "step": 948
+ },
+ {
+ "epoch": 13.181659388646288,
+ "grad_norm": 0.03745635598897934,
+ "learning_rate": 0.0006,
+ "loss": 3.76809024810791,
+ "step": 949
+ },
+ {
+ "epoch": 13.195633187772925,
+ "grad_norm": 0.04209613427519798,
+ "learning_rate": 0.0006,
+ "loss": 3.7813467979431152,
+ "step": 950
+ },
+ {
+ "epoch": 13.209606986899564,
+ "grad_norm": 0.036846764385700226,
+ "learning_rate": 0.0006,
+ "loss": 3.7726383209228516,
+ "step": 951
+ },
+ {
+ "epoch": 13.2235807860262,
+ "grad_norm": 0.036949072033166885,
+ "learning_rate": 0.0006,
+ "loss": 3.7197751998901367,
+ "step": 952
+ },
+ {
+ "epoch": 13.237554585152838,
+ "grad_norm": 0.03458063304424286,
+ "learning_rate": 0.0006,
+ "loss": 3.7695436477661133,
+ "step": 953
+ },
+ {
+ "epoch": 13.251528384279476,
+ "grad_norm": 0.038074951618909836,
+ "learning_rate": 0.0006,
+ "loss": 3.7531425952911377,
+ "step": 954
+ },
+ {
+ "epoch": 13.265502183406113,
+ "grad_norm": 0.03661646693944931,
+ "learning_rate": 0.0006,
+ "loss": 3.767953872680664,
+ "step": 955
+ },
+ {
+ "epoch": 13.279475982532752,
+ "grad_norm": 0.039892520755529404,
+ "learning_rate": 0.0006,
+ "loss": 3.7687599658966064,
+ "step": 956
+ },
+ {
+ "epoch": 13.293449781659389,
+ "grad_norm": 0.036572884768247604,
+ "learning_rate": 0.0006,
+ "loss": 3.7693774700164795,
+ "step": 957
+ },
+ {
+ "epoch": 13.307423580786025,
+ "grad_norm": 0.03855743631720543,
+ "learning_rate": 0.0006,
+ "loss": 3.8233063220977783,
+ "step": 958
+ },
+ {
+ "epoch": 13.321397379912664,
+ "grad_norm": 0.03484344109892845,
+ "learning_rate": 0.0006,
+ "loss": 3.79215669631958,
+ "step": 959
+ },
+ {
+ "epoch": 13.335371179039301,
+ "grad_norm": 0.036101482808589935,
+ "learning_rate": 0.0006,
+ "loss": 3.768373966217041,
+ "step": 960
+ },
+ {
+ "epoch": 13.34934497816594,
+ "grad_norm": 0.03150841221213341,
+ "learning_rate": 0.0006,
+ "loss": 3.7502622604370117,
+ "step": 961
+ },
+ {
+ "epoch": 13.363318777292577,
+ "grad_norm": 0.03154430910944939,
+ "learning_rate": 0.0006,
+ "loss": 3.764416217803955,
+ "step": 962
+ },
+ {
+ "epoch": 13.377292576419213,
+ "grad_norm": 0.03163410350680351,
+ "learning_rate": 0.0006,
+ "loss": 3.757230758666992,
+ "step": 963
+ },
+ {
+ "epoch": 13.391266375545852,
+ "grad_norm": 0.02932742051780224,
+ "learning_rate": 0.0006,
+ "loss": 3.7860183715820312,
+ "step": 964
+ },
+ {
+ "epoch": 13.405240174672489,
+ "grad_norm": 0.025545787066221237,
+ "learning_rate": 0.0006,
+ "loss": 3.748073101043701,
+ "step": 965
+ },
+ {
+ "epoch": 13.419213973799126,
+ "grad_norm": 0.02389710769057274,
+ "learning_rate": 0.0006,
+ "loss": 3.778963565826416,
+ "step": 966
+ },
+ {
+ "epoch": 13.433187772925764,
+ "grad_norm": 0.023781558498740196,
+ "learning_rate": 0.0006,
+ "loss": 3.7151870727539062,
+ "step": 967
+ },
+ {
+ "epoch": 13.447161572052401,
+ "grad_norm": 0.023273715749382973,
+ "learning_rate": 0.0006,
+ "loss": 3.766374111175537,
+ "step": 968
+ },
+ {
+ "epoch": 13.46113537117904,
+ "grad_norm": 0.023059967905282974,
+ "learning_rate": 0.0006,
+ "loss": 3.783663749694824,
+ "step": 969
+ },
+ {
+ "epoch": 13.475109170305677,
+ "grad_norm": 0.020438550040125847,
+ "learning_rate": 0.0006,
+ "loss": 3.755140781402588,
+ "step": 970
+ },
+ {
+ "epoch": 13.489082969432314,
+ "grad_norm": 0.019272785633802414,
+ "learning_rate": 0.0006,
+ "loss": 3.741131544113159,
+ "step": 971
+ },
+ {
+ "epoch": 13.503056768558952,
+ "grad_norm": 0.017616258934140205,
+ "learning_rate": 0.0006,
+ "loss": 3.7395365238189697,
+ "step": 972
+ },
+ {
+ "epoch": 13.51703056768559,
+ "grad_norm": 0.017435181885957718,
+ "learning_rate": 0.0006,
+ "loss": 3.7755181789398193,
+ "step": 973
+ },
+ {
+ "epoch": 13.531004366812226,
+ "grad_norm": 0.01710323616862297,
+ "learning_rate": 0.0006,
+ "loss": 3.7158422470092773,
+ "step": 974
+ },
+ {
+ "epoch": 13.544978165938865,
+ "grad_norm": 0.016912570223212242,
+ "learning_rate": 0.0006,
+ "loss": 3.727623462677002,
+ "step": 975
+ },
+ {
+ "epoch": 13.558951965065502,
+ "grad_norm": 0.0181113388389349,
+ "learning_rate": 0.0006,
+ "loss": 3.771268367767334,
+ "step": 976
+ },
+ {
+ "epoch": 13.57292576419214,
+ "grad_norm": 0.018880970776081085,
+ "learning_rate": 0.0006,
+ "loss": 3.7602953910827637,
+ "step": 977
+ },
+ {
+ "epoch": 13.586899563318777,
+ "grad_norm": 0.019182899966835976,
+ "learning_rate": 0.0006,
+ "loss": 3.7339329719543457,
+ "step": 978
+ },
+ {
+ "epoch": 13.600873362445414,
+ "grad_norm": 0.02025751583278179,
+ "learning_rate": 0.0006,
+ "loss": 3.7562665939331055,
+ "step": 979
+ },
+ {
+ "epoch": 13.614847161572053,
+ "grad_norm": 0.01820831373333931,
+ "learning_rate": 0.0006,
+ "loss": 3.725492477416992,
+ "step": 980
+ },
+ {
+ "epoch": 13.62882096069869,
+ "grad_norm": 0.017619458958506584,
+ "learning_rate": 0.0006,
+ "loss": 3.714106798171997,
+ "step": 981
+ },
+ {
+ "epoch": 13.642794759825328,
+ "grad_norm": 0.016764821484684944,
+ "learning_rate": 0.0006,
+ "loss": 3.7665224075317383,
+ "step": 982
+ },
+ {
+ "epoch": 13.656768558951965,
+ "grad_norm": 0.016131598502397537,
+ "learning_rate": 0.0006,
+ "loss": 3.779419422149658,
+ "step": 983
+ },
+ {
+ "epoch": 13.670742358078602,
+ "grad_norm": 0.01535084005445242,
+ "learning_rate": 0.0006,
+ "loss": 3.7591190338134766,
+ "step": 984
+ },
+ {
+ "epoch": 13.68471615720524,
+ "grad_norm": 0.016390377655625343,
+ "learning_rate": 0.0006,
+ "loss": 3.7544782161712646,
+ "step": 985
+ },
+ {
+ "epoch": 13.698689956331878,
+ "grad_norm": 0.016028346493840218,
+ "learning_rate": 0.0006,
+ "loss": 3.772927761077881,
+ "step": 986
+ },
+ {
+ "epoch": 13.712663755458514,
+ "grad_norm": 0.015925439074635506,
+ "learning_rate": 0.0006,
+ "loss": 3.7092344760894775,
+ "step": 987
+ },
+ {
+ "epoch": 13.726637554585153,
+ "grad_norm": 0.016125058755278587,
+ "learning_rate": 0.0006,
+ "loss": 3.7528953552246094,
+ "step": 988
+ },
+ {
+ "epoch": 13.74061135371179,
+ "grad_norm": 0.015887845307588577,
+ "learning_rate": 0.0006,
+ "loss": 3.744354248046875,
+ "step": 989
+ },
+ {
+ "epoch": 13.754585152838429,
+ "grad_norm": 0.015301455743610859,
+ "learning_rate": 0.0006,
+ "loss": 3.743435859680176,
+ "step": 990
+ },
+ {
+ "epoch": 13.768558951965066,
+ "grad_norm": 0.014814727008342743,
+ "learning_rate": 0.0006,
+ "loss": 3.7351980209350586,
+ "step": 991
+ },
+ {
+ "epoch": 13.782532751091702,
+ "grad_norm": 0.01479976624250412,
+ "learning_rate": 0.0006,
+ "loss": 3.722226619720459,
+ "step": 992
+ },
+ {
+ "epoch": 13.796506550218341,
+ "grad_norm": 0.016558295115828514,
+ "learning_rate": 0.0006,
+ "loss": 3.717442512512207,
+ "step": 993
+ },
+ {
+ "epoch": 13.810480349344978,
+ "grad_norm": 0.01635979674756527,
+ "learning_rate": 0.0006,
+ "loss": 3.707097053527832,
+ "step": 994
+ },
+ {
+ "epoch": 13.824454148471617,
+ "grad_norm": 0.014870786108076572,
+ "learning_rate": 0.0006,
+ "loss": 3.768139362335205,
+ "step": 995
+ },
+ {
+ "epoch": 13.838427947598253,
+ "grad_norm": 0.014958183281123638,
+ "learning_rate": 0.0006,
+ "loss": 3.722902774810791,
+ "step": 996
+ },
+ {
+ "epoch": 13.85240174672489,
+ "grad_norm": 0.015501127578318119,
+ "learning_rate": 0.0006,
+ "loss": 3.7323732376098633,
+ "step": 997
+ },
+ {
+ "epoch": 13.866375545851529,
+ "grad_norm": 0.015276075340807438,
+ "learning_rate": 0.0006,
+ "loss": 3.734039783477783,
+ "step": 998
+ },
+ {
+ "epoch": 13.880349344978166,
+ "grad_norm": 0.01742061786353588,
+ "learning_rate": 0.0006,
+ "loss": 3.737147331237793,
+ "step": 999
+ },
+ {
+ "epoch": 13.894323144104803,
+ "grad_norm": 0.016311734914779663,
+ "learning_rate": 0.0006,
+ "loss": 3.7114202976226807,
+ "step": 1000
+ },
+ {
+ "epoch": 13.908296943231441,
+ "grad_norm": 0.017144575715065002,
+ "learning_rate": 0.0006,
+ "loss": 3.734762191772461,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922270742358078,
+ "grad_norm": 0.016401860862970352,
+ "learning_rate": 0.0006,
+ "loss": 3.753246784210205,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936244541484717,
+ "grad_norm": 0.015357336029410362,
+ "learning_rate": 0.0006,
+ "loss": 3.7216477394104004,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950218340611354,
+ "grad_norm": 0.016586005687713623,
+ "learning_rate": 0.0006,
+ "loss": 3.793790102005005,
+ "step": 1004
+ },
+ {
+ "epoch": 13.96419213973799,
+ "grad_norm": 0.015338776633143425,
+ "learning_rate": 0.0006,
+ "loss": 3.711658000946045,
+ "step": 1005
+ },
+ {
+ "epoch": 13.97816593886463,
+ "grad_norm": 0.017011435702443123,
+ "learning_rate": 0.0006,
+ "loss": 3.752537727355957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992139737991266,
+ "grad_norm": 0.017308345064520836,
+ "learning_rate": 0.0006,
+ "loss": 3.7391486167907715,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.01815737411379814,
+ "learning_rate": 0.0006,
+ "loss": 3.7011828422546387,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.046541690826416,
+ "eval_runtime": 54.3615,
+ "eval_samples_per_second": 44.922,
+ "eval_steps_per_second": 1.416,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013973799126637,
+ "grad_norm": 0.01765853725373745,
+ "learning_rate": 0.0006,
+ "loss": 3.6156458854675293,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027947598253276,
+ "grad_norm": 0.02285143919289112,
+ "learning_rate": 0.0006,
+ "loss": 3.6625490188598633,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041921397379912,
+ "grad_norm": 0.02511940896511078,
+ "learning_rate": 0.0006,
+ "loss": 3.619877815246582,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055895196506551,
+ "grad_norm": 0.02781127765774727,
+ "learning_rate": 0.0006,
+ "loss": 3.676270008087158,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069868995633188,
+ "grad_norm": 0.027363400906324387,
+ "learning_rate": 0.0006,
+ "loss": 3.64404034614563,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083842794759825,
+ "grad_norm": 0.02478782832622528,
+ "learning_rate": 0.0006,
+ "loss": 3.6325106620788574,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097816593886463,
+ "grad_norm": 0.02767058275640011,
+ "learning_rate": 0.0006,
+ "loss": 3.65087890625,
+ "step": 1015
+ },
+ {
+ "epoch": 14.1117903930131,
+ "grad_norm": 0.026782231405377388,
+ "learning_rate": 0.0006,
+ "loss": 3.6227691173553467,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125764192139737,
+ "grad_norm": 0.02921525575220585,
+ "learning_rate": 0.0006,
+ "loss": 3.5829410552978516,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139737991266376,
+ "grad_norm": 0.029077231884002686,
+ "learning_rate": 0.0006,
+ "loss": 3.645134687423706,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153711790393013,
+ "grad_norm": 0.0327303521335125,
+ "learning_rate": 0.0006,
+ "loss": 3.629804849624634,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167685589519651,
+ "grad_norm": 0.035763293504714966,
+ "learning_rate": 0.0006,
+ "loss": 3.6261279582977295,
+ "step": 1020
+ },
+ {
+ "epoch": 14.181659388646288,
+ "grad_norm": 0.03943935036659241,
+ "learning_rate": 0.0006,
+ "loss": 3.6591973304748535,
+ "step": 1021
+ },
+ {
+ "epoch": 14.195633187772925,
+ "grad_norm": 0.03753122314810753,
+ "learning_rate": 0.0006,
+ "loss": 3.6450369358062744,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209606986899564,
+ "grad_norm": 0.04103509336709976,
+ "learning_rate": 0.0006,
+ "loss": 3.6689958572387695,
+ "step": 1023
+ },
+ {
+ "epoch": 14.2235807860262,
+ "grad_norm": 0.04133584722876549,
+ "learning_rate": 0.0006,
+ "loss": 3.6584630012512207,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237554585152838,
+ "grad_norm": 0.04211857542395592,
+ "learning_rate": 0.0006,
+ "loss": 3.6606225967407227,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251528384279476,
+ "grad_norm": 0.038261570036411285,
+ "learning_rate": 0.0006,
+ "loss": 3.667980194091797,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265502183406113,
+ "grad_norm": 0.03518976271152496,
+ "learning_rate": 0.0006,
+ "loss": 3.6699838638305664,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279475982532752,
+ "grad_norm": 0.03253129869699478,
+ "learning_rate": 0.0006,
+ "loss": 3.636895179748535,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293449781659389,
+ "grad_norm": 0.031595997512340546,
+ "learning_rate": 0.0006,
+ "loss": 3.632096290588379,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307423580786025,
+ "grad_norm": 0.03253999352455139,
+ "learning_rate": 0.0006,
+ "loss": 3.6577043533325195,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321397379912664,
+ "grad_norm": 0.034704145044088364,
+ "learning_rate": 0.0006,
+ "loss": 3.703457832336426,
+ "step": 1031
+ },
+ {
+ "epoch": 14.335371179039301,
+ "grad_norm": 0.03362954035401344,
+ "learning_rate": 0.0006,
+ "loss": 3.6303958892822266,
+ "step": 1032
+ },
+ {
+ "epoch": 14.34934497816594,
+ "grad_norm": 0.02985706552863121,
+ "learning_rate": 0.0006,
+ "loss": 3.669577121734619,
+ "step": 1033
+ },
+ {
+ "epoch": 14.363318777292577,
+ "grad_norm": 0.028826212510466576,
+ "learning_rate": 0.0006,
+ "loss": 3.6573240756988525,
+ "step": 1034
+ },
+ {
+ "epoch": 14.377292576419213,
+ "grad_norm": 0.025705639272928238,
+ "learning_rate": 0.0006,
+ "loss": 3.695673942565918,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391266375545852,
+ "grad_norm": 0.02392077073454857,
+ "learning_rate": 0.0006,
+ "loss": 3.699263095855713,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405240174672489,
+ "grad_norm": 0.02234474942088127,
+ "learning_rate": 0.0006,
+ "loss": 3.666858196258545,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419213973799126,
+ "grad_norm": 0.021519573405385017,
+ "learning_rate": 0.0006,
+ "loss": 3.6542158126831055,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433187772925764,
+ "grad_norm": 0.019302112981677055,
+ "learning_rate": 0.0006,
+ "loss": 3.672900676727295,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447161572052401,
+ "grad_norm": 0.01938394270837307,
+ "learning_rate": 0.0006,
+ "loss": 3.6841869354248047,
+ "step": 1040
+ },
+ {
+ "epoch": 14.46113537117904,
+ "grad_norm": 0.01918088085949421,
+ "learning_rate": 0.0006,
+ "loss": 3.6915340423583984,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475109170305677,
+ "grad_norm": 0.019382303580641747,
+ "learning_rate": 0.0006,
+ "loss": 3.696239471435547,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489082969432314,
+ "grad_norm": 0.0190880224108696,
+ "learning_rate": 0.0006,
+ "loss": 3.686777114868164,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503056768558952,
+ "grad_norm": 0.019921699538826942,
+ "learning_rate": 0.0006,
+ "loss": 3.596571207046509,
+ "step": 1044
+ },
+ {
+ "epoch": 14.51703056768559,
+ "grad_norm": 0.019849983975291252,
+ "learning_rate": 0.0006,
+ "loss": 3.6621527671813965,
+ "step": 1045
+ },
+ {
+ "epoch": 14.531004366812226,
+ "grad_norm": 0.01987219788134098,
+ "learning_rate": 0.0006,
+ "loss": 3.6440532207489014,
+ "step": 1046
+ },
+ {
+ "epoch": 14.544978165938865,
+ "grad_norm": 0.019135860726237297,
+ "learning_rate": 0.0006,
+ "loss": 3.663760185241699,
+ "step": 1047
+ },
+ {
+ "epoch": 14.558951965065502,
+ "grad_norm": 0.019754081964492798,
+ "learning_rate": 0.0006,
+ "loss": 3.692115306854248,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57292576419214,
+ "grad_norm": 0.017559237778186798,
+ "learning_rate": 0.0006,
+ "loss": 3.6560468673706055,
+ "step": 1049
+ },
+ {
+ "epoch": 14.586899563318777,
+ "grad_norm": 0.018740499392151833,
+ "learning_rate": 0.0006,
+ "loss": 3.678459405899048,
+ "step": 1050
+ },
+ {
+ "epoch": 14.600873362445414,
+ "grad_norm": 0.020979298278689384,
+ "learning_rate": 0.0006,
+ "loss": 3.6760807037353516,
+ "step": 1051
+ },
+ {
+ "epoch": 14.614847161572053,
+ "grad_norm": 0.024136187508702278,
+ "learning_rate": 0.0006,
+ "loss": 3.6586780548095703,
+ "step": 1052
+ },
+ {
+ "epoch": 14.62882096069869,
+ "grad_norm": 0.022492283955216408,
+ "learning_rate": 0.0006,
+ "loss": 3.6521711349487305,
+ "step": 1053
+ },
+ {
+ "epoch": 14.642794759825328,
+ "grad_norm": 0.022067412734031677,
+ "learning_rate": 0.0006,
+ "loss": 3.6784937381744385,
+ "step": 1054
+ },
+ {
+ "epoch": 14.656768558951965,
+ "grad_norm": 0.019800225272774696,
+ "learning_rate": 0.0006,
+ "loss": 3.6375701427459717,
+ "step": 1055
+ },
+ {
+ "epoch": 14.670742358078602,
+ "grad_norm": 0.018210966140031815,
+ "learning_rate": 0.0006,
+ "loss": 3.6653239727020264,
+ "step": 1056
+ },
+ {
+ "epoch": 14.68471615720524,
+ "grad_norm": 0.018579861149191856,
+ "learning_rate": 0.0006,
+ "loss": 3.718411922454834,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698689956331878,
+ "grad_norm": 0.016911206766963005,
+ "learning_rate": 0.0006,
+ "loss": 3.6463894844055176,
+ "step": 1058
+ },
+ {
+ "epoch": 14.712663755458514,
+ "grad_norm": 0.016846856102347374,
+ "learning_rate": 0.0006,
+ "loss": 3.672767162322998,
+ "step": 1059
+ },
+ {
+ "epoch": 14.726637554585153,
+ "grad_norm": 0.0170889999717474,
+ "learning_rate": 0.0006,
+ "loss": 3.6862080097198486,
+ "step": 1060
+ },
+ {
+ "epoch": 14.74061135371179,
+ "grad_norm": 0.016432611271739006,
+ "learning_rate": 0.0006,
+ "loss": 3.656050682067871,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754585152838429,
+ "grad_norm": 0.016253121197223663,
+ "learning_rate": 0.0006,
+ "loss": 3.6118998527526855,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768558951965066,
+ "grad_norm": 0.016804836690425873,
+ "learning_rate": 0.0006,
+ "loss": 3.6646556854248047,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782532751091702,
+ "grad_norm": 0.016385341063141823,
+ "learning_rate": 0.0006,
+ "loss": 3.6862335205078125,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796506550218341,
+ "grad_norm": 0.016926517710089684,
+ "learning_rate": 0.0006,
+ "loss": 3.675138473510742,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810480349344978,
+ "grad_norm": 0.018508978188037872,
+ "learning_rate": 0.0006,
+ "loss": 3.7009687423706055,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824454148471617,
+ "grad_norm": 0.018666446208953857,
+ "learning_rate": 0.0006,
+ "loss": 3.636359214782715,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838427947598253,
+ "grad_norm": 0.019378433004021645,
+ "learning_rate": 0.0006,
+ "loss": 3.665518283843994,
+ "step": 1068
+ },
+ {
+ "epoch": 14.85240174672489,
+ "grad_norm": 0.02128547430038452,
+ "learning_rate": 0.0006,
+ "loss": 3.7005434036254883,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866375545851529,
+ "grad_norm": 0.02191224694252014,
+ "learning_rate": 0.0006,
+ "loss": 3.6584267616271973,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880349344978166,
+ "grad_norm": 0.019272804260253906,
+ "learning_rate": 0.0006,
+ "loss": 3.673880100250244,
+ "step": 1071
+ },
+ {
+ "epoch": 14.894323144104803,
+ "grad_norm": 0.018591508269309998,
+ "learning_rate": 0.0006,
+ "loss": 3.680145025253296,
+ "step": 1072
+ },
+ {
+ "epoch": 14.908296943231441,
+ "grad_norm": 0.019954141229391098,
+ "learning_rate": 0.0006,
+ "loss": 3.659092903137207,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922270742358078,
+ "grad_norm": 0.019956151023507118,
+ "learning_rate": 0.0006,
+ "loss": 3.680950164794922,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936244541484717,
+ "grad_norm": 0.0198400616645813,
+ "learning_rate": 0.0006,
+ "loss": 3.665740728378296,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950218340611354,
+ "grad_norm": 0.018525801599025726,
+ "learning_rate": 0.0006,
+ "loss": 3.695254325866699,
+ "step": 1076
+ },
+ {
+ "epoch": 14.96419213973799,
+ "grad_norm": 0.019410012289881706,
+ "learning_rate": 0.0006,
+ "loss": 3.637185573577881,
+ "step": 1077
+ },
+ {
+ "epoch": 14.97816593886463,
+ "grad_norm": 0.01842549443244934,
+ "learning_rate": 0.0006,
+ "loss": 3.6925792694091797,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992139737991266,
+ "grad_norm": 0.018512850627303123,
+ "learning_rate": 0.0006,
+ "loss": 3.6421403884887695,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.019783539697527885,
+ "learning_rate": 0.0006,
+ "loss": 3.669989824295044,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.0208282470703125,
+ "eval_runtime": 50.0946,
+ "eval_samples_per_second": 48.748,
+ "eval_steps_per_second": 1.537,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013973799126637,
+ "grad_norm": 0.02009645849466324,
+ "learning_rate": 0.0006,
+ "loss": 3.5637366771698,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027947598253276,
+ "grad_norm": 0.02333172969520092,
+ "learning_rate": 0.0006,
+ "loss": 3.5258095264434814,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041921397379912,
+ "grad_norm": 0.027971796691417694,
+ "learning_rate": 0.0006,
+ "loss": 3.552365779876709,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055895196506551,
+ "grad_norm": 0.03144870325922966,
+ "learning_rate": 0.0006,
+ "loss": 3.570685863494873,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069868995633188,
+ "grad_norm": 0.03174359351396561,
+ "learning_rate": 0.0006,
+ "loss": 3.557307720184326,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083842794759825,
+ "grad_norm": 0.0314076766371727,
+ "learning_rate": 0.0006,
+ "loss": 3.5835516452789307,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097816593886463,
+ "grad_norm": 0.02998494543135166,
+ "learning_rate": 0.0006,
+ "loss": 3.564689874649048,
+ "step": 1087
+ },
+ {
+ "epoch": 15.1117903930131,
+ "grad_norm": 0.027682173997163773,
+ "learning_rate": 0.0006,
+ "loss": 3.5372314453125,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125764192139737,
+ "grad_norm": 0.029720479622483253,
+ "learning_rate": 0.0006,
+ "loss": 3.5263895988464355,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139737991266376,
+ "grad_norm": 0.03526446595788002,
+ "learning_rate": 0.0006,
+ "loss": 3.5656511783599854,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153711790393013,
+ "grad_norm": 0.03473281115293503,
+ "learning_rate": 0.0006,
+ "loss": 3.5796432495117188,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167685589519651,
+ "grad_norm": 0.034728601574897766,
+ "learning_rate": 0.0006,
+ "loss": 3.5634264945983887,
+ "step": 1092
+ },
+ {
+ "epoch": 15.181659388646288,
+ "grad_norm": 0.03513004630804062,
+ "learning_rate": 0.0006,
+ "loss": 3.587097644805908,
+ "step": 1093
+ },
+ {
+ "epoch": 15.195633187772925,
+ "grad_norm": 0.03495538607239723,
+ "learning_rate": 0.0006,
+ "loss": 3.588749885559082,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209606986899564,
+ "grad_norm": 0.03559393063187599,
+ "learning_rate": 0.0006,
+ "loss": 3.588261604309082,
+ "step": 1095
+ },
+ {
+ "epoch": 15.2235807860262,
+ "grad_norm": 0.04117827117443085,
+ "learning_rate": 0.0006,
+ "loss": 3.5925493240356445,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237554585152838,
+ "grad_norm": 0.03481105715036392,
+ "learning_rate": 0.0006,
+ "loss": 3.609713077545166,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251528384279476,
+ "grad_norm": 0.03399660810828209,
+ "learning_rate": 0.0006,
+ "loss": 3.6001386642456055,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265502183406113,
+ "grad_norm": 0.037158723920583725,
+ "learning_rate": 0.0006,
+ "loss": 3.5907320976257324,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279475982532752,
+ "grad_norm": 0.03714929521083832,
+ "learning_rate": 0.0006,
+ "loss": 3.620131015777588,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293449781659389,
+ "grad_norm": 0.03506772965192795,
+ "learning_rate": 0.0006,
+ "loss": 3.5833165645599365,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307423580786025,
+ "grad_norm": 0.03335156291723251,
+ "learning_rate": 0.0006,
+ "loss": 3.588583469390869,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321397379912664,
+ "grad_norm": 0.03749598562717438,
+ "learning_rate": 0.0006,
+ "loss": 3.5726234912872314,
+ "step": 1103
+ },
+ {
+ "epoch": 15.335371179039301,
+ "grad_norm": 0.033490296453237534,
+ "learning_rate": 0.0006,
+ "loss": 3.609440326690674,
+ "step": 1104
+ },
+ {
+ "epoch": 15.34934497816594,
+ "grad_norm": 0.02744245156645775,
+ "learning_rate": 0.0006,
+ "loss": 3.5969347953796387,
+ "step": 1105
+ },
+ {
+ "epoch": 15.363318777292577,
+ "grad_norm": 0.025563672184944153,
+ "learning_rate": 0.0006,
+ "loss": 3.6081204414367676,
+ "step": 1106
+ },
+ {
+ "epoch": 15.377292576419213,
+ "grad_norm": 0.02479025535285473,
+ "learning_rate": 0.0006,
+ "loss": 3.569492816925049,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391266375545852,
+ "grad_norm": 0.022969363257288933,
+ "learning_rate": 0.0006,
+ "loss": 3.5940051078796387,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405240174672489,
+ "grad_norm": 0.0211333017796278,
+ "learning_rate": 0.0006,
+ "loss": 3.6032228469848633,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419213973799126,
+ "grad_norm": 0.023232776671648026,
+ "learning_rate": 0.0006,
+ "loss": 3.597538471221924,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433187772925764,
+ "grad_norm": 0.02560894563794136,
+ "learning_rate": 0.0006,
+ "loss": 3.6099822521209717,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447161572052401,
+ "grad_norm": 0.028530243784189224,
+ "learning_rate": 0.0006,
+ "loss": 3.6099116802215576,
+ "step": 1112
+ },
+ {
+ "epoch": 15.46113537117904,
+ "grad_norm": 0.024349553510546684,
+ "learning_rate": 0.0006,
+ "loss": 3.596257448196411,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475109170305677,
+ "grad_norm": 0.025264214724302292,
+ "learning_rate": 0.0006,
+ "loss": 3.58459210395813,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489082969432314,
+ "grad_norm": 0.024628883227705956,
+ "learning_rate": 0.0006,
+ "loss": 3.5940113067626953,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503056768558952,
+ "grad_norm": 0.02550858072936535,
+ "learning_rate": 0.0006,
+ "loss": 3.6039438247680664,
+ "step": 1116
+ },
+ {
+ "epoch": 15.51703056768559,
+ "grad_norm": 0.02455618977546692,
+ "learning_rate": 0.0006,
+ "loss": 3.582425594329834,
+ "step": 1117
+ },
+ {
+ "epoch": 15.531004366812226,
+ "grad_norm": 0.023190757259726524,
+ "learning_rate": 0.0006,
+ "loss": 3.5945615768432617,
+ "step": 1118
+ },
+ {
+ "epoch": 15.544978165938865,
+ "grad_norm": 0.025178825482726097,
+ "learning_rate": 0.0006,
+ "loss": 3.6276583671569824,
+ "step": 1119
+ },
+ {
+ "epoch": 15.558951965065502,
+ "grad_norm": 0.027304047718644142,
+ "learning_rate": 0.0006,
+ "loss": 3.591130018234253,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57292576419214,
+ "grad_norm": 0.02635739929974079,
+ "learning_rate": 0.0006,
+ "loss": 3.626152992248535,
+ "step": 1121
+ },
+ {
+ "epoch": 15.586899563318777,
+ "grad_norm": 0.023574283346533775,
+ "learning_rate": 0.0006,
+ "loss": 3.5790467262268066,
+ "step": 1122
+ },
+ {
+ "epoch": 15.600873362445414,
+ "grad_norm": 0.02167615108191967,
+ "learning_rate": 0.0006,
+ "loss": 3.5816423892974854,
+ "step": 1123
+ },
+ {
+ "epoch": 15.614847161572053,
+ "grad_norm": 0.020352814346551895,
+ "learning_rate": 0.0006,
+ "loss": 3.5963048934936523,
+ "step": 1124
+ },
+ {
+ "epoch": 15.62882096069869,
+ "grad_norm": 0.022047650068998337,
+ "learning_rate": 0.0006,
+ "loss": 3.5933878421783447,
+ "step": 1125
+ },
+ {
+ "epoch": 15.642794759825328,
+ "grad_norm": 0.022744329646229744,
+ "learning_rate": 0.0006,
+ "loss": 3.5755128860473633,
+ "step": 1126
+ },
+ {
+ "epoch": 15.656768558951965,
+ "grad_norm": 0.020325182005763054,
+ "learning_rate": 0.0006,
+ "loss": 3.5617265701293945,
+ "step": 1127
+ },
+ {
+ "epoch": 15.670742358078602,
+ "grad_norm": 0.021056298166513443,
+ "learning_rate": 0.0006,
+ "loss": 3.5767688751220703,
+ "step": 1128
+ },
+ {
+ "epoch": 15.68471615720524,
+ "grad_norm": 0.019120410084724426,
+ "learning_rate": 0.0006,
+ "loss": 3.5909035205841064,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698689956331878,
+ "grad_norm": 0.01864859275519848,
+ "learning_rate": 0.0006,
+ "loss": 3.586052417755127,
+ "step": 1130
+ },
+ {
+ "epoch": 15.712663755458514,
+ "grad_norm": 0.017953047528862953,
+ "learning_rate": 0.0006,
+ "loss": 3.5801734924316406,
+ "step": 1131
+ },
+ {
+ "epoch": 15.726637554585153,
+ "grad_norm": 0.019331611692905426,
+ "learning_rate": 0.0006,
+ "loss": 3.5663723945617676,
+ "step": 1132
+ },
+ {
+ "epoch": 15.74061135371179,
+ "grad_norm": 0.018863828852772713,
+ "learning_rate": 0.0006,
+ "loss": 3.5982472896575928,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754585152838429,
+ "grad_norm": 0.01941121369600296,
+ "learning_rate": 0.0006,
+ "loss": 3.586141586303711,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768558951965066,
+ "grad_norm": 0.0202215276658535,
+ "learning_rate": 0.0006,
+ "loss": 3.603093385696411,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782532751091702,
+ "grad_norm": 0.02065861038863659,
+ "learning_rate": 0.0006,
+ "loss": 3.6258344650268555,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796506550218341,
+ "grad_norm": 0.019885104149580002,
+ "learning_rate": 0.0006,
+ "loss": 3.5961670875549316,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810480349344978,
+ "grad_norm": 0.019395584240555763,
+ "learning_rate": 0.0006,
+ "loss": 3.6085386276245117,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824454148471617,
+ "grad_norm": 0.02079256810247898,
+ "learning_rate": 0.0006,
+ "loss": 3.5907459259033203,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838427947598253,
+ "grad_norm": 0.021177049726247787,
+ "learning_rate": 0.0006,
+ "loss": 3.6031875610351562,
+ "step": 1140
+ },
+ {
+ "epoch": 15.85240174672489,
+ "grad_norm": 0.01875251717865467,
+ "learning_rate": 0.0006,
+ "loss": 3.5799269676208496,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866375545851529,
+ "grad_norm": 0.018393032252788544,
+ "learning_rate": 0.0006,
+ "loss": 3.589036464691162,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880349344978166,
+ "grad_norm": 0.017482910305261612,
+ "learning_rate": 0.0006,
+ "loss": 3.57010555267334,
+ "step": 1143
+ },
+ {
+ "epoch": 15.894323144104803,
+ "grad_norm": 0.017565404996275902,
+ "learning_rate": 0.0006,
+ "loss": 3.586590051651001,
+ "step": 1144
+ },
+ {
+ "epoch": 15.908296943231441,
+ "grad_norm": 0.018097810447216034,
+ "learning_rate": 0.0006,
+ "loss": 3.60231876373291,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922270742358078,
+ "grad_norm": 0.01748323254287243,
+ "learning_rate": 0.0006,
+ "loss": 3.605266571044922,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936244541484717,
+ "grad_norm": 0.017633914947509766,
+ "learning_rate": 0.0006,
+ "loss": 3.57650089263916,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950218340611354,
+ "grad_norm": 0.017630109563469887,
+ "learning_rate": 0.0006,
+ "loss": 3.599179744720459,
+ "step": 1148
+ },
+ {
+ "epoch": 15.96419213973799,
+ "grad_norm": 0.017756082117557526,
+ "learning_rate": 0.0006,
+ "loss": 3.610539436340332,
+ "step": 1149
+ },
+ {
+ "epoch": 15.97816593886463,
+ "grad_norm": 0.017975619062781334,
+ "learning_rate": 0.0006,
+ "loss": 3.5654094219207764,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992139737991266,
+ "grad_norm": 0.01672595739364624,
+ "learning_rate": 0.0006,
+ "loss": 3.5157313346862793,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.018963614478707314,
+ "learning_rate": 0.0006,
+ "loss": 3.5679218769073486,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.002192497253418,
+ "eval_runtime": 54.7074,
+ "eval_samples_per_second": 44.638,
+ "eval_steps_per_second": 1.407,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397379912664,
+ "grad_norm": 0.019997047260403633,
+ "learning_rate": 0.0006,
+ "loss": 3.4640445709228516,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027947598253274,
+ "grad_norm": 0.02668819949030876,
+ "learning_rate": 0.0006,
+ "loss": 3.4792230129241943,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041921397379912,
+ "grad_norm": 0.03133378177881241,
+ "learning_rate": 0.0006,
+ "loss": 3.445514678955078,
+ "step": 1155
+ },
+ {
+ "epoch": 16.05589519650655,
+ "grad_norm": 0.0333341620862484,
+ "learning_rate": 0.0006,
+ "loss": 3.4823379516601562,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069868995633186,
+ "grad_norm": 0.033309273421764374,
+ "learning_rate": 0.0006,
+ "loss": 3.5140066146850586,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083842794759825,
+ "grad_norm": 0.03211270272731781,
+ "learning_rate": 0.0006,
+ "loss": 3.4474544525146484,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097816593886463,
+ "grad_norm": 0.030286215245723724,
+ "learning_rate": 0.0006,
+ "loss": 3.4566705226898193,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111790393013102,
+ "grad_norm": 0.034668438136577606,
+ "learning_rate": 0.0006,
+ "loss": 3.464046001434326,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125764192139737,
+ "grad_norm": 0.03580283746123314,
+ "learning_rate": 0.0006,
+ "loss": 3.483121871948242,
+ "step": 1161
+ },
+ {
+ "epoch": 16.139737991266376,
+ "grad_norm": 0.03359296917915344,
+ "learning_rate": 0.0006,
+ "loss": 3.477879524230957,
+ "step": 1162
+ },
+ {
+ "epoch": 16.153711790393015,
+ "grad_norm": 0.03444180637598038,
+ "learning_rate": 0.0006,
+ "loss": 3.513066053390503,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16768558951965,
+ "grad_norm": 0.034195005893707275,
+ "learning_rate": 0.0006,
+ "loss": 3.4954705238342285,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18165938864629,
+ "grad_norm": 0.03186183422803879,
+ "learning_rate": 0.0006,
+ "loss": 3.5126149654388428,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195633187772927,
+ "grad_norm": 0.03474068269133568,
+ "learning_rate": 0.0006,
+ "loss": 3.4613423347473145,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209606986899562,
+ "grad_norm": 0.03117581456899643,
+ "learning_rate": 0.0006,
+ "loss": 3.5202698707580566,
+ "step": 1167
+ },
+ {
+ "epoch": 16.2235807860262,
+ "grad_norm": 0.030044663697481155,
+ "learning_rate": 0.0006,
+ "loss": 3.4795448780059814,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23755458515284,
+ "grad_norm": 0.03448783978819847,
+ "learning_rate": 0.0006,
+ "loss": 3.4979453086853027,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251528384279474,
+ "grad_norm": 0.040600501000881195,
+ "learning_rate": 0.0006,
+ "loss": 3.5161967277526855,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265502183406113,
+ "grad_norm": 0.041196491569280624,
+ "learning_rate": 0.0006,
+ "loss": 3.5099880695343018,
+ "step": 1171
+ },
+ {
+ "epoch": 16.27947598253275,
+ "grad_norm": 0.0403696708381176,
+ "learning_rate": 0.0006,
+ "loss": 3.515664577484131,
+ "step": 1172
+ },
+ {
+ "epoch": 16.29344978165939,
+ "grad_norm": 0.0369957759976387,
+ "learning_rate": 0.0006,
+ "loss": 3.568899631500244,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307423580786025,
+ "grad_norm": 0.034086693078279495,
+ "learning_rate": 0.0006,
+ "loss": 3.5406198501586914,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321397379912664,
+ "grad_norm": 0.03118005394935608,
+ "learning_rate": 0.0006,
+ "loss": 3.4970381259918213,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335371179039303,
+ "grad_norm": 0.030468063428997993,
+ "learning_rate": 0.0006,
+ "loss": 3.5451807975769043,
+ "step": 1176
+ },
+ {
+ "epoch": 16.349344978165938,
+ "grad_norm": 0.0309329554438591,
+ "learning_rate": 0.0006,
+ "loss": 3.53481388092041,
+ "step": 1177
+ },
+ {
+ "epoch": 16.363318777292577,
+ "grad_norm": 0.030906643718481064,
+ "learning_rate": 0.0006,
+ "loss": 3.5201809406280518,
+ "step": 1178
+ },
+ {
+ "epoch": 16.377292576419215,
+ "grad_norm": 0.029425526037812233,
+ "learning_rate": 0.0006,
+ "loss": 3.5083932876586914,
+ "step": 1179
+ },
+ {
+ "epoch": 16.39126637554585,
+ "grad_norm": 0.03284955024719238,
+ "learning_rate": 0.0006,
+ "loss": 3.5315258502960205,
+ "step": 1180
+ },
+ {
+ "epoch": 16.40524017467249,
+ "grad_norm": 0.03235018253326416,
+ "learning_rate": 0.0006,
+ "loss": 3.5033299922943115,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419213973799128,
+ "grad_norm": 0.029569406062364578,
+ "learning_rate": 0.0006,
+ "loss": 3.52433180809021,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433187772925763,
+ "grad_norm": 0.028649726882576942,
+ "learning_rate": 0.0006,
+ "loss": 3.486379623413086,
+ "step": 1183
+ },
+ {
+ "epoch": 16.4471615720524,
+ "grad_norm": 0.027956973761320114,
+ "learning_rate": 0.0006,
+ "loss": 3.5237250328063965,
+ "step": 1184
+ },
+ {
+ "epoch": 16.46113537117904,
+ "grad_norm": 0.0276664849370718,
+ "learning_rate": 0.0006,
+ "loss": 3.512511730194092,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475109170305675,
+ "grad_norm": 0.027819795534014702,
+ "learning_rate": 0.0006,
+ "loss": 3.5440287590026855,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489082969432314,
+ "grad_norm": 0.028435861691832542,
+ "learning_rate": 0.0006,
+ "loss": 3.560199737548828,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503056768558952,
+ "grad_norm": 0.02672969177365303,
+ "learning_rate": 0.0006,
+ "loss": 3.5323410034179688,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51703056768559,
+ "grad_norm": 0.024931233376264572,
+ "learning_rate": 0.0006,
+ "loss": 3.5182852745056152,
+ "step": 1189
+ },
+ {
+ "epoch": 16.531004366812226,
+ "grad_norm": 0.02562815696001053,
+ "learning_rate": 0.0006,
+ "loss": 3.525887966156006,
+ "step": 1190
+ },
+ {
+ "epoch": 16.544978165938865,
+ "grad_norm": 0.022041132673621178,
+ "learning_rate": 0.0006,
+ "loss": 3.5331735610961914,
+ "step": 1191
+ },
+ {
+ "epoch": 16.558951965065503,
+ "grad_norm": 0.02091669663786888,
+ "learning_rate": 0.0006,
+ "loss": 3.5219545364379883,
+ "step": 1192
+ },
+ {
+ "epoch": 16.57292576419214,
+ "grad_norm": 0.0208087507635355,
+ "learning_rate": 0.0006,
+ "loss": 3.5721282958984375,
+ "step": 1193
+ },
+ {
+ "epoch": 16.586899563318777,
+ "grad_norm": 0.019807223230600357,
+ "learning_rate": 0.0006,
+ "loss": 3.493896484375,
+ "step": 1194
+ },
+ {
+ "epoch": 16.600873362445416,
+ "grad_norm": 0.019274886697530746,
+ "learning_rate": 0.0006,
+ "loss": 3.5042009353637695,
+ "step": 1195
+ },
+ {
+ "epoch": 16.61484716157205,
+ "grad_norm": 0.01950680837035179,
+ "learning_rate": 0.0006,
+ "loss": 3.5548095703125,
+ "step": 1196
+ },
+ {
+ "epoch": 16.62882096069869,
+ "grad_norm": 0.02027183771133423,
+ "learning_rate": 0.0006,
+ "loss": 3.495508909225464,
+ "step": 1197
+ },
+ {
+ "epoch": 16.64279475982533,
+ "grad_norm": 0.021261053159832954,
+ "learning_rate": 0.0006,
+ "loss": 3.531256675720215,
+ "step": 1198
+ },
+ {
+ "epoch": 16.656768558951963,
+ "grad_norm": 0.02054775319993496,
+ "learning_rate": 0.0006,
+ "loss": 3.499379873275757,
+ "step": 1199
+ },
+ {
+ "epoch": 16.670742358078602,
+ "grad_norm": 0.01810075156390667,
+ "learning_rate": 0.0006,
+ "loss": 3.561351776123047,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68471615720524,
+ "grad_norm": 0.017886348068714142,
+ "learning_rate": 0.0006,
+ "loss": 3.551504373550415,
+ "step": 1201
+ },
+ {
+ "epoch": 16.69868995633188,
+ "grad_norm": 0.01893145777285099,
+ "learning_rate": 0.0006,
+ "loss": 3.4890754222869873,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712663755458514,
+ "grad_norm": 0.018899526447057724,
+ "learning_rate": 0.0006,
+ "loss": 3.545161724090576,
+ "step": 1203
+ },
+ {
+ "epoch": 16.726637554585153,
+ "grad_norm": 0.018913133069872856,
+ "learning_rate": 0.0006,
+ "loss": 3.502636194229126,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74061135371179,
+ "grad_norm": 0.019347554072737694,
+ "learning_rate": 0.0006,
+ "loss": 3.521177291870117,
+ "step": 1205
+ },
+ {
+ "epoch": 16.754585152838427,
+ "grad_norm": 0.02018282189965248,
+ "learning_rate": 0.0006,
+ "loss": 3.5440759658813477,
+ "step": 1206
+ },
+ {
+ "epoch": 16.768558951965066,
+ "grad_norm": 0.018046081066131592,
+ "learning_rate": 0.0006,
+ "loss": 3.5429065227508545,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782532751091704,
+ "grad_norm": 0.01814688742160797,
+ "learning_rate": 0.0006,
+ "loss": 3.524298667907715,
+ "step": 1208
+ },
+ {
+ "epoch": 16.79650655021834,
+ "grad_norm": 0.017817430198192596,
+ "learning_rate": 0.0006,
+ "loss": 3.5429811477661133,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810480349344978,
+ "grad_norm": 0.01804095320403576,
+ "learning_rate": 0.0006,
+ "loss": 3.5601816177368164,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824454148471617,
+ "grad_norm": 0.01939644105732441,
+ "learning_rate": 0.0006,
+ "loss": 3.5711722373962402,
+ "step": 1211
+ },
+ {
+ "epoch": 16.83842794759825,
+ "grad_norm": 0.019648978486657143,
+ "learning_rate": 0.0006,
+ "loss": 3.5105032920837402,
+ "step": 1212
+ },
+ {
+ "epoch": 16.85240174672489,
+ "grad_norm": 0.01914234645664692,
+ "learning_rate": 0.0006,
+ "loss": 3.5199899673461914,
+ "step": 1213
+ },
+ {
+ "epoch": 16.86637554585153,
+ "grad_norm": 0.019934657961130142,
+ "learning_rate": 0.0006,
+ "loss": 3.531907320022583,
+ "step": 1214
+ },
+ {
+ "epoch": 16.880349344978168,
+ "grad_norm": 0.019740048795938492,
+ "learning_rate": 0.0006,
+ "loss": 3.4846372604370117,
+ "step": 1215
+ },
+ {
+ "epoch": 16.894323144104803,
+ "grad_norm": 0.020136266946792603,
+ "learning_rate": 0.0006,
+ "loss": 3.5342910289764404,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90829694323144,
+ "grad_norm": 0.021572282537817955,
+ "learning_rate": 0.0006,
+ "loss": 3.5846221446990967,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92227074235808,
+ "grad_norm": 0.01965942606329918,
+ "learning_rate": 0.0006,
+ "loss": 3.489861011505127,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936244541484715,
+ "grad_norm": 0.018763914704322815,
+ "learning_rate": 0.0006,
+ "loss": 3.5294601917266846,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950218340611354,
+ "grad_norm": 0.017964672297239304,
+ "learning_rate": 0.0006,
+ "loss": 3.5389389991760254,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964192139737992,
+ "grad_norm": 0.018288105726242065,
+ "learning_rate": 0.0006,
+ "loss": 3.531959056854248,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978165938864628,
+ "grad_norm": 0.019321706146001816,
+ "learning_rate": 0.0006,
+ "loss": 3.533597469329834,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992139737991266,
+ "grad_norm": 0.019614171236753464,
+ "learning_rate": 0.0006,
+ "loss": 3.5083813667297363,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.020609203726053238,
+ "learning_rate": 0.0006,
+ "loss": 3.580991268157959,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 3.992704153060913,
+ "eval_runtime": 50.2038,
+ "eval_samples_per_second": 48.642,
+ "eval_steps_per_second": 1.534,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397379912664,
+ "grad_norm": 0.023699766024947166,
+ "learning_rate": 0.0006,
+ "loss": 3.4216837882995605,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027947598253274,
+ "grad_norm": 0.03299031779170036,
+ "learning_rate": 0.0006,
+ "loss": 3.3943543434143066,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041921397379912,
+ "grad_norm": 0.0365300215780735,
+ "learning_rate": 0.0006,
+ "loss": 3.419881820678711,
+ "step": 1227
+ },
+ {
+ "epoch": 17.05589519650655,
+ "grad_norm": 0.037790149450302124,
+ "learning_rate": 0.0006,
+ "loss": 3.397857666015625,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069868995633186,
+ "grad_norm": 0.03478766605257988,
+ "learning_rate": 0.0006,
+ "loss": 3.4057488441467285,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083842794759825,
+ "grad_norm": 0.03660628944635391,
+ "learning_rate": 0.0006,
+ "loss": 3.449805498123169,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097816593886463,
+ "grad_norm": 0.03783934935927391,
+ "learning_rate": 0.0006,
+ "loss": 3.391709804534912,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111790393013102,
+ "grad_norm": 0.03578848019242287,
+ "learning_rate": 0.0006,
+ "loss": 3.3921704292297363,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125764192139737,
+ "grad_norm": 0.04182235524058342,
+ "learning_rate": 0.0006,
+ "loss": 3.406362295150757,
+ "step": 1233
+ },
+ {
+ "epoch": 17.139737991266376,
+ "grad_norm": 0.04345374181866646,
+ "learning_rate": 0.0006,
+ "loss": 3.39174222946167,
+ "step": 1234
+ },
+ {
+ "epoch": 17.153711790393015,
+ "grad_norm": 0.0420818068087101,
+ "learning_rate": 0.0006,
+ "loss": 3.431614398956299,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16768558951965,
+ "grad_norm": 0.045535873621702194,
+ "learning_rate": 0.0006,
+ "loss": 3.4326839447021484,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18165938864629,
+ "grad_norm": 0.05574474856257439,
+ "learning_rate": 0.0006,
+ "loss": 3.4711036682128906,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195633187772927,
+ "grad_norm": 0.057157132774591446,
+ "learning_rate": 0.0006,
+ "loss": 3.4650626182556152,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209606986899562,
+ "grad_norm": 0.053199656307697296,
+ "learning_rate": 0.0006,
+ "loss": 3.4461426734924316,
+ "step": 1239
+ },
+ {
+ "epoch": 17.2235807860262,
+ "grad_norm": 0.054264020174741745,
+ "learning_rate": 0.0006,
+ "loss": 3.4681930541992188,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23755458515284,
+ "grad_norm": 0.05625223368406296,
+ "learning_rate": 0.0006,
+ "loss": 3.4914324283599854,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251528384279474,
+ "grad_norm": 0.061760347336530685,
+ "learning_rate": 0.0006,
+ "loss": 3.525092840194702,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265502183406113,
+ "grad_norm": 0.0628439411520958,
+ "learning_rate": 0.0006,
+ "loss": 3.5061843395233154,
+ "step": 1243
+ },
+ {
+ "epoch": 17.27947598253275,
+ "grad_norm": 0.0659259706735611,
+ "learning_rate": 0.0006,
+ "loss": 3.53128719329834,
+ "step": 1244
+ },
+ {
+ "epoch": 17.29344978165939,
+ "grad_norm": 0.05818862468004227,
+ "learning_rate": 0.0006,
+ "loss": 3.5536415576934814,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307423580786025,
+ "grad_norm": 0.05471836030483246,
+ "learning_rate": 0.0006,
+ "loss": 3.5337672233581543,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321397379912664,
+ "grad_norm": 0.0487399697303772,
+ "learning_rate": 0.0006,
+ "loss": 3.522909641265869,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335371179039303,
+ "grad_norm": 0.05006934702396393,
+ "learning_rate": 0.0006,
+ "loss": 3.5228986740112305,
+ "step": 1248
+ },
+ {
+ "epoch": 17.349344978165938,
+ "grad_norm": 0.047036584466695786,
+ "learning_rate": 0.0006,
+ "loss": 3.582343578338623,
+ "step": 1249
+ },
+ {
+ "epoch": 17.363318777292577,
+ "grad_norm": 0.045836590230464935,
+ "learning_rate": 0.0006,
+ "loss": 3.5376439094543457,
+ "step": 1250
+ },
+ {
+ "epoch": 17.377292576419215,
+ "grad_norm": 0.044237297028303146,
+ "learning_rate": 0.0006,
+ "loss": 3.5435123443603516,
+ "step": 1251
+ },
+ {
+ "epoch": 17.39126637554585,
+ "grad_norm": 0.04441322013735771,
+ "learning_rate": 0.0006,
+ "loss": 3.5400638580322266,
+ "step": 1252
+ },
+ {
+ "epoch": 17.40524017467249,
+ "grad_norm": 0.04533323645591736,
+ "learning_rate": 0.0006,
+ "loss": 3.5287728309631348,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419213973799128,
+ "grad_norm": 0.03689985349774361,
+ "learning_rate": 0.0006,
+ "loss": 3.5161759853363037,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433187772925763,
+ "grad_norm": 0.03836561366915703,
+ "learning_rate": 0.0006,
+ "loss": 3.4899721145629883,
+ "step": 1255
+ },
+ {
+ "epoch": 17.4471615720524,
+ "grad_norm": 0.03594471141695976,
+ "learning_rate": 0.0006,
+ "loss": 3.534101963043213,
+ "step": 1256
+ },
+ {
+ "epoch": 17.46113537117904,
+ "grad_norm": 0.03834489732980728,
+ "learning_rate": 0.0006,
+ "loss": 3.4943580627441406,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475109170305675,
+ "grad_norm": 0.04318688064813614,
+ "learning_rate": 0.0006,
+ "loss": 3.5304384231567383,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489082969432314,
+ "grad_norm": 0.04468952864408493,
+ "learning_rate": 0.0006,
+ "loss": 3.5435900688171387,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503056768558952,
+ "grad_norm": 0.041371092200279236,
+ "learning_rate": 0.0006,
+ "loss": 3.529571056365967,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51703056768559,
+ "grad_norm": 0.03826779127120972,
+ "learning_rate": 0.0006,
+ "loss": 3.5024611949920654,
+ "step": 1261
+ },
+ {
+ "epoch": 17.531004366812226,
+ "grad_norm": 0.030302148312330246,
+ "learning_rate": 0.0006,
+ "loss": 3.5491857528686523,
+ "step": 1262
+ },
+ {
+ "epoch": 17.544978165938865,
+ "grad_norm": 0.02673652581870556,
+ "learning_rate": 0.0006,
+ "loss": 3.498325824737549,
+ "step": 1263
+ },
+ {
+ "epoch": 17.558951965065503,
+ "grad_norm": 0.026035286486148834,
+ "learning_rate": 0.0006,
+ "loss": 3.524242639541626,
+ "step": 1264
+ },
+ {
+ "epoch": 17.57292576419214,
+ "grad_norm": 0.02433512918651104,
+ "learning_rate": 0.0006,
+ "loss": 3.496821880340576,
+ "step": 1265
+ },
+ {
+ "epoch": 17.586899563318777,
+ "grad_norm": 0.023563958704471588,
+ "learning_rate": 0.0006,
+ "loss": 3.4883062839508057,
+ "step": 1266
+ },
+ {
+ "epoch": 17.600873362445416,
+ "grad_norm": 0.0206421110779047,
+ "learning_rate": 0.0006,
+ "loss": 3.519468069076538,
+ "step": 1267
+ },
+ {
+ "epoch": 17.61484716157205,
+ "grad_norm": 0.020854417234659195,
+ "learning_rate": 0.0006,
+ "loss": 3.5546176433563232,
+ "step": 1268
+ },
+ {
+ "epoch": 17.62882096069869,
+ "grad_norm": 0.01948000118136406,
+ "learning_rate": 0.0006,
+ "loss": 3.4945712089538574,
+ "step": 1269
+ },
+ {
+ "epoch": 17.64279475982533,
+ "grad_norm": 0.018670955672860146,
+ "learning_rate": 0.0006,
+ "loss": 3.4944663047790527,
+ "step": 1270
+ },
+ {
+ "epoch": 17.656768558951963,
+ "grad_norm": 0.018675116822123528,
+ "learning_rate": 0.0006,
+ "loss": 3.4906811714172363,
+ "step": 1271
+ },
+ {
+ "epoch": 17.670742358078602,
+ "grad_norm": 0.018198898062109947,
+ "learning_rate": 0.0006,
+ "loss": 3.4814324378967285,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68471615720524,
+ "grad_norm": 0.017625771462917328,
+ "learning_rate": 0.0006,
+ "loss": 3.481903553009033,
+ "step": 1273
+ },
+ {
+ "epoch": 17.69868995633188,
+ "grad_norm": 0.017468655481934547,
+ "learning_rate": 0.0006,
+ "loss": 3.504253625869751,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712663755458514,
+ "grad_norm": 0.017738448455929756,
+ "learning_rate": 0.0006,
+ "loss": 3.4731998443603516,
+ "step": 1275
+ },
+ {
+ "epoch": 17.726637554585153,
+ "grad_norm": 0.01674838177859783,
+ "learning_rate": 0.0006,
+ "loss": 3.501451253890991,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74061135371179,
+ "grad_norm": 0.016940834000706673,
+ "learning_rate": 0.0006,
+ "loss": 3.5022473335266113,
+ "step": 1277
+ },
+ {
+ "epoch": 17.754585152838427,
+ "grad_norm": 0.016655702143907547,
+ "learning_rate": 0.0006,
+ "loss": 3.489267349243164,
+ "step": 1278
+ },
+ {
+ "epoch": 17.768558951965066,
+ "grad_norm": 0.016576141119003296,
+ "learning_rate": 0.0006,
+ "loss": 3.489868402481079,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782532751091704,
+ "grad_norm": 0.015516328625380993,
+ "learning_rate": 0.0006,
+ "loss": 3.4777278900146484,
+ "step": 1280
+ },
+ {
+ "epoch": 17.79650655021834,
+ "grad_norm": 0.01572612300515175,
+ "learning_rate": 0.0006,
+ "loss": 3.4924020767211914,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810480349344978,
+ "grad_norm": 0.01619344763457775,
+ "learning_rate": 0.0006,
+ "loss": 3.4541757106781006,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824454148471617,
+ "grad_norm": 0.016174443066120148,
+ "learning_rate": 0.0006,
+ "loss": 3.496953010559082,
+ "step": 1283
+ },
+ {
+ "epoch": 17.83842794759825,
+ "grad_norm": 0.015538575127720833,
+ "learning_rate": 0.0006,
+ "loss": 3.501938819885254,
+ "step": 1284
+ },
+ {
+ "epoch": 17.85240174672489,
+ "grad_norm": 0.015476577915251255,
+ "learning_rate": 0.0006,
+ "loss": 3.4954936504364014,
+ "step": 1285
+ },
+ {
+ "epoch": 17.86637554585153,
+ "grad_norm": 0.01563846506178379,
+ "learning_rate": 0.0006,
+ "loss": 3.4736757278442383,
+ "step": 1286
+ },
+ {
+ "epoch": 17.880349344978168,
+ "grad_norm": 0.016416197642683983,
+ "learning_rate": 0.0006,
+ "loss": 3.4564414024353027,
+ "step": 1287
+ },
+ {
+ "epoch": 17.894323144104803,
+ "grad_norm": 0.016533056274056435,
+ "learning_rate": 0.0006,
+ "loss": 3.4835453033447266,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90829694323144,
+ "grad_norm": 0.01587281934916973,
+ "learning_rate": 0.0006,
+ "loss": 3.460432529449463,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92227074235808,
+ "grad_norm": 0.01610104739665985,
+ "learning_rate": 0.0006,
+ "loss": 3.4919300079345703,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936244541484715,
+ "grad_norm": 0.01581653021275997,
+ "learning_rate": 0.0006,
+ "loss": 3.4631175994873047,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950218340611354,
+ "grad_norm": 0.015979735180735588,
+ "learning_rate": 0.0006,
+ "loss": 3.4901933670043945,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964192139737992,
+ "grad_norm": 0.01630399376153946,
+ "learning_rate": 0.0006,
+ "loss": 3.4629836082458496,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978165938864628,
+ "grad_norm": 0.017480242997407913,
+ "learning_rate": 0.0006,
+ "loss": 3.4913692474365234,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992139737991266,
+ "grad_norm": 0.016874775290489197,
+ "learning_rate": 0.0006,
+ "loss": 3.4790616035461426,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.01860641874372959,
+ "learning_rate": 0.0006,
+ "loss": 3.451586961746216,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 3.9891297817230225,
+ "eval_runtime": 50.1961,
+ "eval_samples_per_second": 48.649,
+ "eval_steps_per_second": 1.534,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397379912664,
+ "grad_norm": 0.020353643223643303,
+ "learning_rate": 0.0006,
+ "loss": 3.3365015983581543,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027947598253274,
+ "grad_norm": 0.025348901748657227,
+ "learning_rate": 0.0006,
+ "loss": 3.362994909286499,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041921397379912,
+ "grad_norm": 0.025188535451889038,
+ "learning_rate": 0.0006,
+ "loss": 3.363680362701416,
+ "step": 1299
+ },
+ {
+ "epoch": 18.05589519650655,
+ "grad_norm": 0.022153817117214203,
+ "learning_rate": 0.0006,
+ "loss": 3.3311727046966553,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069868995633186,
+ "grad_norm": 0.023192603141069412,
+ "learning_rate": 0.0006,
+ "loss": 3.313582420349121,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083842794759825,
+ "grad_norm": 0.023841004818677902,
+ "learning_rate": 0.0006,
+ "loss": 3.3787522315979004,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097816593886463,
+ "grad_norm": 0.024539794772863388,
+ "learning_rate": 0.0006,
+ "loss": 3.382267475128174,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111790393013102,
+ "grad_norm": 0.026391029357910156,
+ "learning_rate": 0.0006,
+ "loss": 3.3674709796905518,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125764192139737,
+ "grad_norm": 0.027859404683113098,
+ "learning_rate": 0.0006,
+ "loss": 3.3584036827087402,
+ "step": 1305
+ },
+ {
+ "epoch": 18.139737991266376,
+ "grad_norm": 0.027688005939126015,
+ "learning_rate": 0.0006,
+ "loss": 3.314915657043457,
+ "step": 1306
+ },
+ {
+ "epoch": 18.153711790393015,
+ "grad_norm": 0.026942238211631775,
+ "learning_rate": 0.0006,
+ "loss": 3.387618064880371,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16768558951965,
+ "grad_norm": 0.02890498749911785,
+ "learning_rate": 0.0006,
+ "loss": 3.35286021232605,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18165938864629,
+ "grad_norm": 0.028318168595433235,
+ "learning_rate": 0.0006,
+ "loss": 3.347115993499756,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195633187772927,
+ "grad_norm": 0.02423982135951519,
+ "learning_rate": 0.0006,
+ "loss": 3.365628242492676,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209606986899562,
+ "grad_norm": 0.025620151311159134,
+ "learning_rate": 0.0006,
+ "loss": 3.3887939453125,
+ "step": 1311
+ },
+ {
+ "epoch": 18.2235807860262,
+ "grad_norm": 0.02538205496966839,
+ "learning_rate": 0.0006,
+ "loss": 3.3417105674743652,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23755458515284,
+ "grad_norm": 0.024902652949094772,
+ "learning_rate": 0.0006,
+ "loss": 3.348081111907959,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251528384279474,
+ "grad_norm": 0.024858251214027405,
+ "learning_rate": 0.0006,
+ "loss": 3.3346352577209473,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265502183406113,
+ "grad_norm": 0.02413691021502018,
+ "learning_rate": 0.0006,
+ "loss": 3.373331069946289,
+ "step": 1315
+ },
+ {
+ "epoch": 18.27947598253275,
+ "grad_norm": 0.024673711508512497,
+ "learning_rate": 0.0006,
+ "loss": 3.3532657623291016,
+ "step": 1316
+ },
+ {
+ "epoch": 18.29344978165939,
+ "grad_norm": 0.02378152869641781,
+ "learning_rate": 0.0006,
+ "loss": 3.380765438079834,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307423580786025,
+ "grad_norm": 0.025095898658037186,
+ "learning_rate": 0.0006,
+ "loss": 3.3837740421295166,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321397379912664,
+ "grad_norm": 0.028187017887830734,
+ "learning_rate": 0.0006,
+ "loss": 3.4130377769470215,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335371179039303,
+ "grad_norm": 0.030678752809762955,
+ "learning_rate": 0.0006,
+ "loss": 3.353358745574951,
+ "step": 1320
+ },
+ {
+ "epoch": 18.349344978165938,
+ "grad_norm": 0.03067706525325775,
+ "learning_rate": 0.0006,
+ "loss": 3.386003017425537,
+ "step": 1321
+ },
+ {
+ "epoch": 18.363318777292577,
+ "grad_norm": 0.029064467176795006,
+ "learning_rate": 0.0006,
+ "loss": 3.3915395736694336,
+ "step": 1322
+ },
+ {
+ "epoch": 18.377292576419215,
+ "grad_norm": 0.027225302532315254,
+ "learning_rate": 0.0006,
+ "loss": 3.3875136375427246,
+ "step": 1323
+ },
+ {
+ "epoch": 18.39126637554585,
+ "grad_norm": 0.02669711410999298,
+ "learning_rate": 0.0006,
+ "loss": 3.406268358230591,
+ "step": 1324
+ },
+ {
+ "epoch": 18.40524017467249,
+ "grad_norm": 0.028905952349305153,
+ "learning_rate": 0.0006,
+ "loss": 3.3588786125183105,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419213973799128,
+ "grad_norm": 0.02591577172279358,
+ "learning_rate": 0.0006,
+ "loss": 3.378920078277588,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433187772925763,
+ "grad_norm": 0.02405492030084133,
+ "learning_rate": 0.0006,
+ "loss": 3.4215216636657715,
+ "step": 1327
+ },
+ {
+ "epoch": 18.4471615720524,
+ "grad_norm": 0.02288426086306572,
+ "learning_rate": 0.0006,
+ "loss": 3.4051475524902344,
+ "step": 1328
+ },
+ {
+ "epoch": 18.46113537117904,
+ "grad_norm": 0.02265259623527527,
+ "learning_rate": 0.0006,
+ "loss": 3.376089096069336,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475109170305675,
+ "grad_norm": 0.021498411893844604,
+ "learning_rate": 0.0006,
+ "loss": 3.3922982215881348,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489082969432314,
+ "grad_norm": 0.02283475548028946,
+ "learning_rate": 0.0006,
+ "loss": 3.435965061187744,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503056768558952,
+ "grad_norm": 0.02214580774307251,
+ "learning_rate": 0.0006,
+ "loss": 3.4137468338012695,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51703056768559,
+ "grad_norm": 0.02150345966219902,
+ "learning_rate": 0.0006,
+ "loss": 3.3775486946105957,
+ "step": 1333
+ },
+ {
+ "epoch": 18.531004366812226,
+ "grad_norm": 0.02131151221692562,
+ "learning_rate": 0.0006,
+ "loss": 3.3902227878570557,
+ "step": 1334
+ },
+ {
+ "epoch": 18.544978165938865,
+ "grad_norm": 0.019052445888519287,
+ "learning_rate": 0.0006,
+ "loss": 3.4158318042755127,
+ "step": 1335
+ },
+ {
+ "epoch": 18.558951965065503,
+ "grad_norm": 0.018629150465130806,
+ "learning_rate": 0.0006,
+ "loss": 3.40549898147583,
+ "step": 1336
+ },
+ {
+ "epoch": 18.57292576419214,
+ "grad_norm": 0.019917191937565804,
+ "learning_rate": 0.0006,
+ "loss": 3.3770365715026855,
+ "step": 1337
+ },
+ {
+ "epoch": 18.586899563318777,
+ "grad_norm": 0.01985880360007286,
+ "learning_rate": 0.0006,
+ "loss": 3.393543243408203,
+ "step": 1338
+ },
+ {
+ "epoch": 18.600873362445416,
+ "grad_norm": 0.019536739215254784,
+ "learning_rate": 0.0006,
+ "loss": 3.426811695098877,
+ "step": 1339
+ },
+ {
+ "epoch": 18.61484716157205,
+ "grad_norm": 0.01855909265577793,
+ "learning_rate": 0.0006,
+ "loss": 3.401531219482422,
+ "step": 1340
+ },
+ {
+ "epoch": 18.62882096069869,
+ "grad_norm": 0.018492981791496277,
+ "learning_rate": 0.0006,
+ "loss": 3.4268338680267334,
+ "step": 1341
+ },
+ {
+ "epoch": 18.64279475982533,
+ "grad_norm": 0.0180380679666996,
+ "learning_rate": 0.0006,
+ "loss": 3.4302897453308105,
+ "step": 1342
+ },
+ {
+ "epoch": 18.656768558951963,
+ "grad_norm": 0.017962129786610603,
+ "learning_rate": 0.0006,
+ "loss": 3.396136522293091,
+ "step": 1343
+ },
+ {
+ "epoch": 18.670742358078602,
+ "grad_norm": 0.019102413207292557,
+ "learning_rate": 0.0006,
+ "loss": 3.390157699584961,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68471615720524,
+ "grad_norm": 0.01885206066071987,
+ "learning_rate": 0.0006,
+ "loss": 3.410893440246582,
+ "step": 1345
+ },
+ {
+ "epoch": 18.69868995633188,
+ "grad_norm": 0.018043991178274155,
+ "learning_rate": 0.0006,
+ "loss": 3.3919389247894287,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712663755458514,
+ "grad_norm": 0.01806800253689289,
+ "learning_rate": 0.0006,
+ "loss": 3.43209171295166,
+ "step": 1347
+ },
+ {
+ "epoch": 18.726637554585153,
+ "grad_norm": 0.01855402998626232,
+ "learning_rate": 0.0006,
+ "loss": 3.428830146789551,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74061135371179,
+ "grad_norm": 0.018445072695612907,
+ "learning_rate": 0.0006,
+ "loss": 3.4180264472961426,
+ "step": 1349
+ },
+ {
+ "epoch": 18.754585152838427,
+ "grad_norm": 0.018156694248318672,
+ "learning_rate": 0.0006,
+ "loss": 3.4011521339416504,
+ "step": 1350
+ },
+ {
+ "epoch": 18.768558951965066,
+ "grad_norm": 0.019634190946817398,
+ "learning_rate": 0.0006,
+ "loss": 3.388862371444702,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782532751091704,
+ "grad_norm": 0.01954115554690361,
+ "learning_rate": 0.0006,
+ "loss": 3.4300918579101562,
+ "step": 1352
+ },
+ {
+ "epoch": 18.79650655021834,
+ "grad_norm": 0.01783105544745922,
+ "learning_rate": 0.0006,
+ "loss": 3.3942103385925293,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810480349344978,
+ "grad_norm": 0.017380334436893463,
+ "learning_rate": 0.0006,
+ "loss": 3.4005725383758545,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824454148471617,
+ "grad_norm": 0.01806088164448738,
+ "learning_rate": 0.0006,
+ "loss": 3.4157588481903076,
+ "step": 1355
+ },
+ {
+ "epoch": 18.83842794759825,
+ "grad_norm": 0.018839186057448387,
+ "learning_rate": 0.0006,
+ "loss": 3.40814208984375,
+ "step": 1356
+ },
+ {
+ "epoch": 18.85240174672489,
+ "grad_norm": 0.018662428483366966,
+ "learning_rate": 0.0006,
+ "loss": 3.4516561031341553,
+ "step": 1357
+ },
+ {
+ "epoch": 18.86637554585153,
+ "grad_norm": 0.016893137246370316,
+ "learning_rate": 0.0006,
+ "loss": 3.437650680541992,
+ "step": 1358
+ },
+ {
+ "epoch": 18.880349344978168,
+ "grad_norm": 0.017629794776439667,
+ "learning_rate": 0.0006,
+ "loss": 3.4278972148895264,
+ "step": 1359
+ },
+ {
+ "epoch": 18.894323144104803,
+ "grad_norm": 0.018383143469691277,
+ "learning_rate": 0.0006,
+ "loss": 3.4278743267059326,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90829694323144,
+ "grad_norm": 0.01822691783308983,
+ "learning_rate": 0.0006,
+ "loss": 3.4315247535705566,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92227074235808,
+ "grad_norm": 0.019348058849573135,
+ "learning_rate": 0.0006,
+ "loss": 3.401350498199463,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936244541484715,
+ "grad_norm": 0.01952742226421833,
+ "learning_rate": 0.0006,
+ "loss": 3.378289222717285,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950218340611354,
+ "grad_norm": 0.019068529829382896,
+ "learning_rate": 0.0006,
+ "loss": 3.4088215827941895,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964192139737992,
+ "grad_norm": 0.02002856135368347,
+ "learning_rate": 0.0006,
+ "loss": 3.4396965503692627,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978165938864628,
+ "grad_norm": 0.01839490234851837,
+ "learning_rate": 0.0006,
+ "loss": 3.4167215824127197,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992139737991266,
+ "grad_norm": 0.018450899049639702,
+ "learning_rate": 0.0006,
+ "loss": 3.4458084106445312,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.021764317527413368,
+ "learning_rate": 0.0006,
+ "loss": 3.4413537979125977,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 3.9891514778137207,
+ "eval_runtime": 49.9998,
+ "eval_samples_per_second": 48.84,
+ "eval_steps_per_second": 1.54,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397379912664,
+ "grad_norm": 0.02277272194623947,
+ "learning_rate": 0.0006,
+ "loss": 3.2692642211914062,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027947598253274,
+ "grad_norm": 0.03352588415145874,
+ "learning_rate": 0.0006,
+ "loss": 3.2701330184936523,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041921397379912,
+ "grad_norm": 0.03873065486550331,
+ "learning_rate": 0.0006,
+ "loss": 3.3169291019439697,
+ "step": 1371
+ },
+ {
+ "epoch": 19.05589519650655,
+ "grad_norm": 0.03804260492324829,
+ "learning_rate": 0.0006,
+ "loss": 3.2720119953155518,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069868995633186,
+ "grad_norm": 0.04382786899805069,
+ "learning_rate": 0.0006,
+ "loss": 3.2789559364318848,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083842794759825,
+ "grad_norm": 0.042553164064884186,
+ "learning_rate": 0.0006,
+ "loss": 3.287041187286377,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097816593886463,
+ "grad_norm": 0.040354058146476746,
+ "learning_rate": 0.0006,
+ "loss": 3.2970733642578125,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111790393013102,
+ "grad_norm": 0.04003302380442619,
+ "learning_rate": 0.0006,
+ "loss": 3.298656940460205,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125764192139737,
+ "grad_norm": 0.04839435964822769,
+ "learning_rate": 0.0006,
+ "loss": 3.3119897842407227,
+ "step": 1377
+ },
+ {
+ "epoch": 19.139737991266376,
+ "grad_norm": 0.04619353264570236,
+ "learning_rate": 0.0006,
+ "loss": 3.323103904724121,
+ "step": 1378
+ },
+ {
+ "epoch": 19.153711790393015,
+ "grad_norm": 0.04889119043946266,
+ "learning_rate": 0.0006,
+ "loss": 3.29386043548584,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16768558951965,
+ "grad_norm": 0.052284516394138336,
+ "learning_rate": 0.0006,
+ "loss": 3.2952120304107666,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18165938864629,
+ "grad_norm": 0.053939417004585266,
+ "learning_rate": 0.0006,
+ "loss": 3.309581756591797,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195633187772927,
+ "grad_norm": 0.04883198067545891,
+ "learning_rate": 0.0006,
+ "loss": 3.3202223777770996,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209606986899562,
+ "grad_norm": 0.04550885036587715,
+ "learning_rate": 0.0006,
+ "loss": 3.3503410816192627,
+ "step": 1383
+ },
+ {
+ "epoch": 19.2235807860262,
+ "grad_norm": 0.04721444472670555,
+ "learning_rate": 0.0006,
+ "loss": 3.3530726432800293,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23755458515284,
+ "grad_norm": 0.051496051251888275,
+ "learning_rate": 0.0006,
+ "loss": 3.333950996398926,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251528384279474,
+ "grad_norm": 0.053854621946811676,
+ "learning_rate": 0.0006,
+ "loss": 3.3520333766937256,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265502183406113,
+ "grad_norm": 0.04623614624142647,
+ "learning_rate": 0.0006,
+ "loss": 3.350588083267212,
+ "step": 1387
+ },
+ {
+ "epoch": 19.27947598253275,
+ "grad_norm": 0.04073309525847435,
+ "learning_rate": 0.0006,
+ "loss": 3.3644251823425293,
+ "step": 1388
+ },
+ {
+ "epoch": 19.29344978165939,
+ "grad_norm": 0.03639872372150421,
+ "learning_rate": 0.0006,
+ "loss": 3.367534875869751,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307423580786025,
+ "grad_norm": 0.036499980837106705,
+ "learning_rate": 0.0006,
+ "loss": 3.3632423877716064,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321397379912664,
+ "grad_norm": 0.0373394750058651,
+ "learning_rate": 0.0006,
+ "loss": 3.3506932258605957,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335371179039303,
+ "grad_norm": 0.04176274687051773,
+ "learning_rate": 0.0006,
+ "loss": 3.3571481704711914,
+ "step": 1392
+ },
+ {
+ "epoch": 19.349344978165938,
+ "grad_norm": 0.04616089537739754,
+ "learning_rate": 0.0006,
+ "loss": 3.359266996383667,
+ "step": 1393
+ },
+ {
+ "epoch": 19.363318777292577,
+ "grad_norm": 0.04692723974585533,
+ "learning_rate": 0.0006,
+ "loss": 3.390904188156128,
+ "step": 1394
+ },
+ {
+ "epoch": 19.377292576419215,
+ "grad_norm": 0.04957121983170509,
+ "learning_rate": 0.0006,
+ "loss": 3.341733932495117,
+ "step": 1395
+ },
+ {
+ "epoch": 19.39126637554585,
+ "grad_norm": 0.0432475246489048,
+ "learning_rate": 0.0006,
+ "loss": 3.2961924076080322,
+ "step": 1396
+ },
+ {
+ "epoch": 19.40524017467249,
+ "grad_norm": 0.041836753487586975,
+ "learning_rate": 0.0006,
+ "loss": 3.3686509132385254,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419213973799128,
+ "grad_norm": 0.03855185955762863,
+ "learning_rate": 0.0006,
+ "loss": 3.3566665649414062,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433187772925763,
+ "grad_norm": 0.034848880022764206,
+ "learning_rate": 0.0006,
+ "loss": 3.374608039855957,
+ "step": 1399
+ },
+ {
+ "epoch": 19.4471615720524,
+ "grad_norm": 0.03131943941116333,
+ "learning_rate": 0.0006,
+ "loss": 3.3618953227996826,
+ "step": 1400
+ },
+ {
+ "epoch": 19.46113537117904,
+ "grad_norm": 0.029629478231072426,
+ "learning_rate": 0.0006,
+ "loss": 3.3952600955963135,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475109170305675,
+ "grad_norm": 0.02885911799967289,
+ "learning_rate": 0.0006,
+ "loss": 3.382490634918213,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489082969432314,
+ "grad_norm": 0.026441723108291626,
+ "learning_rate": 0.0006,
+ "loss": 3.3543779850006104,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503056768558952,
+ "grad_norm": 0.024119269102811813,
+ "learning_rate": 0.0006,
+ "loss": 3.3829503059387207,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51703056768559,
+ "grad_norm": 0.023766381666064262,
+ "learning_rate": 0.0006,
+ "loss": 3.37758731842041,
+ "step": 1405
+ },
+ {
+ "epoch": 19.531004366812226,
+ "grad_norm": 0.02395741641521454,
+ "learning_rate": 0.0006,
+ "loss": 3.4042277336120605,
+ "step": 1406
+ },
+ {
+ "epoch": 19.544978165938865,
+ "grad_norm": 0.023499730974435806,
+ "learning_rate": 0.0006,
+ "loss": 3.3811798095703125,
+ "step": 1407
+ },
+ {
+ "epoch": 19.558951965065503,
+ "grad_norm": 0.021423807367682457,
+ "learning_rate": 0.0006,
+ "loss": 3.3517274856567383,
+ "step": 1408
+ },
+ {
+ "epoch": 19.57292576419214,
+ "grad_norm": 0.02017848752439022,
+ "learning_rate": 0.0006,
+ "loss": 3.369368314743042,
+ "step": 1409
+ },
+ {
+ "epoch": 19.586899563318777,
+ "grad_norm": 0.02168160304427147,
+ "learning_rate": 0.0006,
+ "loss": 3.357361316680908,
+ "step": 1410
+ },
+ {
+ "epoch": 19.600873362445416,
+ "grad_norm": 0.020053956657648087,
+ "learning_rate": 0.0006,
+ "loss": 3.378511667251587,
+ "step": 1411
+ },
+ {
+ "epoch": 19.61484716157205,
+ "grad_norm": 0.018789371475577354,
+ "learning_rate": 0.0006,
+ "loss": 3.386579990386963,
+ "step": 1412
+ },
+ {
+ "epoch": 19.62882096069869,
+ "grad_norm": 0.01985175907611847,
+ "learning_rate": 0.0006,
+ "loss": 3.3903000354766846,
+ "step": 1413
+ },
+ {
+ "epoch": 19.64279475982533,
+ "grad_norm": 0.019878871738910675,
+ "learning_rate": 0.0006,
+ "loss": 3.362997055053711,
+ "step": 1414
+ },
+ {
+ "epoch": 19.656768558951963,
+ "grad_norm": 0.01920200325548649,
+ "learning_rate": 0.0006,
+ "loss": 3.397496461868286,
+ "step": 1415
+ },
+ {
+ "epoch": 19.670742358078602,
+ "grad_norm": 0.019940156489610672,
+ "learning_rate": 0.0006,
+ "loss": 3.375986099243164,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68471615720524,
+ "grad_norm": 0.019822560250759125,
+ "learning_rate": 0.0006,
+ "loss": 3.351943016052246,
+ "step": 1417
+ },
+ {
+ "epoch": 19.69868995633188,
+ "grad_norm": 0.01987987756729126,
+ "learning_rate": 0.0006,
+ "loss": 3.3699135780334473,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712663755458514,
+ "grad_norm": 0.020490208640694618,
+ "learning_rate": 0.0006,
+ "loss": 3.3826851844787598,
+ "step": 1419
+ },
+ {
+ "epoch": 19.726637554585153,
+ "grad_norm": 0.019540539011359215,
+ "learning_rate": 0.0006,
+ "loss": 3.330385208129883,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74061135371179,
+ "grad_norm": 0.018522001802921295,
+ "learning_rate": 0.0006,
+ "loss": 3.3798022270202637,
+ "step": 1421
+ },
+ {
+ "epoch": 19.754585152838427,
+ "grad_norm": 0.019179968163371086,
+ "learning_rate": 0.0006,
+ "loss": 3.352015733718872,
+ "step": 1422
+ },
+ {
+ "epoch": 19.768558951965066,
+ "grad_norm": 0.018380016088485718,
+ "learning_rate": 0.0006,
+ "loss": 3.3417506217956543,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782532751091704,
+ "grad_norm": 0.018539059907197952,
+ "learning_rate": 0.0006,
+ "loss": 3.3680901527404785,
+ "step": 1424
+ },
+ {
+ "epoch": 19.79650655021834,
+ "grad_norm": 0.01938101463019848,
+ "learning_rate": 0.0006,
+ "loss": 3.3972573280334473,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810480349344978,
+ "grad_norm": 0.019287938252091408,
+ "learning_rate": 0.0006,
+ "loss": 3.3635201454162598,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824454148471617,
+ "grad_norm": 0.01918751373887062,
+ "learning_rate": 0.0006,
+ "loss": 3.3594346046447754,
+ "step": 1427
+ },
+ {
+ "epoch": 19.83842794759825,
+ "grad_norm": 0.01843525469303131,
+ "learning_rate": 0.0006,
+ "loss": 3.3794357776641846,
+ "step": 1428
+ },
+ {
+ "epoch": 19.85240174672489,
+ "grad_norm": 0.017499281093478203,
+ "learning_rate": 0.0006,
+ "loss": 3.3725686073303223,
+ "step": 1429
+ },
+ {
+ "epoch": 19.86637554585153,
+ "grad_norm": 0.01804421842098236,
+ "learning_rate": 0.0006,
+ "loss": 3.3510665893554688,
+ "step": 1430
+ },
+ {
+ "epoch": 19.880349344978168,
+ "grad_norm": 0.01854187622666359,
+ "learning_rate": 0.0006,
+ "loss": 3.366323471069336,
+ "step": 1431
+ },
+ {
+ "epoch": 19.894323144104803,
+ "grad_norm": 0.019070899114012718,
+ "learning_rate": 0.0006,
+ "loss": 3.3426618576049805,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90829694323144,
+ "grad_norm": 0.018046852201223373,
+ "learning_rate": 0.0006,
+ "loss": 3.392629623413086,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92227074235808,
+ "grad_norm": 0.017897332087159157,
+ "learning_rate": 0.0006,
+ "loss": 3.384459972381592,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936244541484715,
+ "grad_norm": 0.018831918016076088,
+ "learning_rate": 0.0006,
+ "loss": 3.3787403106689453,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950218340611354,
+ "grad_norm": 0.017684299498796463,
+ "learning_rate": 0.0006,
+ "loss": 3.3839499950408936,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964192139737992,
+ "grad_norm": 0.018664930015802383,
+ "learning_rate": 0.0006,
+ "loss": 3.361309289932251,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978165938864628,
+ "grad_norm": 0.018459675833582878,
+ "learning_rate": 0.0006,
+ "loss": 3.3763248920440674,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992139737991266,
+ "grad_norm": 0.018684620037674904,
+ "learning_rate": 0.0006,
+ "loss": 3.364279270172119,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.02109597623348236,
+ "learning_rate": 0.0006,
+ "loss": 3.3849806785583496,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 3.997159004211426,
+ "eval_runtime": 54.7559,
+ "eval_samples_per_second": 44.598,
+ "eval_steps_per_second": 1.406,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397379912664,
+ "grad_norm": 0.023242158815264702,
+ "learning_rate": 0.0006,
+ "loss": 3.219148635864258,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027947598253274,
+ "grad_norm": 0.035289909690618515,
+ "learning_rate": 0.0006,
+ "loss": 3.1906566619873047,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041921397379912,
+ "grad_norm": 0.03934298828244209,
+ "learning_rate": 0.0006,
+ "loss": 3.24796199798584,
+ "step": 1443
+ },
+ {
+ "epoch": 20.05589519650655,
+ "grad_norm": 0.03764699772000313,
+ "learning_rate": 0.0006,
+ "loss": 3.258643627166748,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069868995633186,
+ "grad_norm": 0.038128290325403214,
+ "learning_rate": 0.0006,
+ "loss": 3.2360262870788574,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083842794759825,
+ "grad_norm": 0.04228486120700836,
+ "learning_rate": 0.0006,
+ "loss": 3.246365547180176,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097816593886463,
+ "grad_norm": 0.04360193759202957,
+ "learning_rate": 0.0006,
+ "loss": 3.2414700984954834,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111790393013102,
+ "grad_norm": 0.03822943568229675,
+ "learning_rate": 0.0006,
+ "loss": 3.2489700317382812,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125764192139737,
+ "grad_norm": 0.036029502749443054,
+ "learning_rate": 0.0006,
+ "loss": 3.2229957580566406,
+ "step": 1449
+ },
+ {
+ "epoch": 20.139737991266376,
+ "grad_norm": 0.03957182168960571,
+ "learning_rate": 0.0006,
+ "loss": 3.256904125213623,
+ "step": 1450
+ },
+ {
+ "epoch": 20.153711790393015,
+ "grad_norm": 0.039222728461027145,
+ "learning_rate": 0.0006,
+ "loss": 3.268920660018921,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16768558951965,
+ "grad_norm": 0.034906432032585144,
+ "learning_rate": 0.0006,
+ "loss": 3.2575674057006836,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18165938864629,
+ "grad_norm": 0.03401615098118782,
+ "learning_rate": 0.0006,
+ "loss": 3.231116771697998,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195633187772927,
+ "grad_norm": 0.034356508404016495,
+ "learning_rate": 0.0006,
+ "loss": 3.262190580368042,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209606986899562,
+ "grad_norm": 0.03251064196228981,
+ "learning_rate": 0.0006,
+ "loss": 3.2810235023498535,
+ "step": 1455
+ },
+ {
+ "epoch": 20.2235807860262,
+ "grad_norm": 0.03308776021003723,
+ "learning_rate": 0.0006,
+ "loss": 3.2639098167419434,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23755458515284,
+ "grad_norm": 0.03230876103043556,
+ "learning_rate": 0.0006,
+ "loss": 3.2558178901672363,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251528384279474,
+ "grad_norm": 0.03161812946200371,
+ "learning_rate": 0.0006,
+ "loss": 3.291419267654419,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265502183406113,
+ "grad_norm": 0.02916458062827587,
+ "learning_rate": 0.0006,
+ "loss": 3.280852794647217,
+ "step": 1459
+ },
+ {
+ "epoch": 20.27947598253275,
+ "grad_norm": 0.029812375083565712,
+ "learning_rate": 0.0006,
+ "loss": 3.2271876335144043,
+ "step": 1460
+ },
+ {
+ "epoch": 20.29344978165939,
+ "grad_norm": 0.029384229332208633,
+ "learning_rate": 0.0006,
+ "loss": 3.2629804611206055,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307423580786025,
+ "grad_norm": 0.033414218574762344,
+ "learning_rate": 0.0006,
+ "loss": 3.270416498184204,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321397379912664,
+ "grad_norm": 0.03318887576460838,
+ "learning_rate": 0.0006,
+ "loss": 3.272148609161377,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335371179039303,
+ "grad_norm": 0.030193055048584938,
+ "learning_rate": 0.0006,
+ "loss": 3.2646775245666504,
+ "step": 1464
+ },
+ {
+ "epoch": 20.349344978165938,
+ "grad_norm": 0.028252357617020607,
+ "learning_rate": 0.0006,
+ "loss": 3.2772417068481445,
+ "step": 1465
+ },
+ {
+ "epoch": 20.363318777292577,
+ "grad_norm": 0.028565213084220886,
+ "learning_rate": 0.0006,
+ "loss": 3.3179280757904053,
+ "step": 1466
+ },
+ {
+ "epoch": 20.377292576419215,
+ "grad_norm": 0.026722336187958717,
+ "learning_rate": 0.0006,
+ "loss": 3.2810170650482178,
+ "step": 1467
+ },
+ {
+ "epoch": 20.39126637554585,
+ "grad_norm": 0.025114644318819046,
+ "learning_rate": 0.0006,
+ "loss": 3.2686173915863037,
+ "step": 1468
+ },
+ {
+ "epoch": 20.40524017467249,
+ "grad_norm": 0.025851737707853317,
+ "learning_rate": 0.0006,
+ "loss": 3.2975308895111084,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419213973799128,
+ "grad_norm": 0.024468228220939636,
+ "learning_rate": 0.0006,
+ "loss": 3.2880358695983887,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433187772925763,
+ "grad_norm": 0.02360754832625389,
+ "learning_rate": 0.0006,
+ "loss": 3.2768073081970215,
+ "step": 1471
+ },
+ {
+ "epoch": 20.4471615720524,
+ "grad_norm": 0.024596888571977615,
+ "learning_rate": 0.0006,
+ "loss": 3.285207509994507,
+ "step": 1472
+ },
+ {
+ "epoch": 20.46113537117904,
+ "grad_norm": 0.02434864081442356,
+ "learning_rate": 0.0006,
+ "loss": 3.284351110458374,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475109170305675,
+ "grad_norm": 0.023001939058303833,
+ "learning_rate": 0.0006,
+ "loss": 3.2642571926116943,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489082969432314,
+ "grad_norm": 0.022632446140050888,
+ "learning_rate": 0.0006,
+ "loss": 3.32163143157959,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503056768558952,
+ "grad_norm": 0.023113328963518143,
+ "learning_rate": 0.0006,
+ "loss": 3.292109251022339,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51703056768559,
+ "grad_norm": 0.02199697494506836,
+ "learning_rate": 0.0006,
+ "loss": 3.3133938312530518,
+ "step": 1477
+ },
+ {
+ "epoch": 20.531004366812226,
+ "grad_norm": 0.023468362167477608,
+ "learning_rate": 0.0006,
+ "loss": 3.2595276832580566,
+ "step": 1478
+ },
+ {
+ "epoch": 20.544978165938865,
+ "grad_norm": 0.022027716040611267,
+ "learning_rate": 0.0006,
+ "loss": 3.2692484855651855,
+ "step": 1479
+ },
+ {
+ "epoch": 20.558951965065503,
+ "grad_norm": 0.021089443936944008,
+ "learning_rate": 0.0006,
+ "loss": 3.317549467086792,
+ "step": 1480
+ },
+ {
+ "epoch": 20.57292576419214,
+ "grad_norm": 0.020714912563562393,
+ "learning_rate": 0.0006,
+ "loss": 3.2982163429260254,
+ "step": 1481
+ },
+ {
+ "epoch": 20.586899563318777,
+ "grad_norm": 0.021601643413305283,
+ "learning_rate": 0.0006,
+ "loss": 3.303770065307617,
+ "step": 1482
+ },
+ {
+ "epoch": 20.600873362445416,
+ "grad_norm": 0.02164667472243309,
+ "learning_rate": 0.0006,
+ "loss": 3.297548294067383,
+ "step": 1483
+ },
+ {
+ "epoch": 20.61484716157205,
+ "grad_norm": 0.0205276720225811,
+ "learning_rate": 0.0006,
+ "loss": 3.265287399291992,
+ "step": 1484
+ },
+ {
+ "epoch": 20.62882096069869,
+ "grad_norm": 0.020926227793097496,
+ "learning_rate": 0.0006,
+ "loss": 3.3233776092529297,
+ "step": 1485
+ },
+ {
+ "epoch": 20.64279475982533,
+ "grad_norm": 0.020680908113718033,
+ "learning_rate": 0.0006,
+ "loss": 3.299736499786377,
+ "step": 1486
+ },
+ {
+ "epoch": 20.656768558951963,
+ "grad_norm": 0.02010631375014782,
+ "learning_rate": 0.0006,
+ "loss": 3.319195032119751,
+ "step": 1487
+ },
+ {
+ "epoch": 20.670742358078602,
+ "grad_norm": 0.01861870475113392,
+ "learning_rate": 0.0006,
+ "loss": 3.309542179107666,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68471615720524,
+ "grad_norm": 0.019709311425685883,
+ "learning_rate": 0.0006,
+ "loss": 3.2684426307678223,
+ "step": 1489
+ },
+ {
+ "epoch": 20.69868995633188,
+ "grad_norm": 0.019379155710339546,
+ "learning_rate": 0.0006,
+ "loss": 3.3123316764831543,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712663755458514,
+ "grad_norm": 0.018971465528011322,
+ "learning_rate": 0.0006,
+ "loss": 3.3249459266662598,
+ "step": 1491
+ },
+ {
+ "epoch": 20.726637554585153,
+ "grad_norm": 0.01862727664411068,
+ "learning_rate": 0.0006,
+ "loss": 3.2942824363708496,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74061135371179,
+ "grad_norm": 0.01932865008711815,
+ "learning_rate": 0.0006,
+ "loss": 3.3328568935394287,
+ "step": 1493
+ },
+ {
+ "epoch": 20.754585152838427,
+ "grad_norm": 0.019298749044537544,
+ "learning_rate": 0.0006,
+ "loss": 3.2632360458374023,
+ "step": 1494
+ },
+ {
+ "epoch": 20.768558951965066,
+ "grad_norm": 0.018749341368675232,
+ "learning_rate": 0.0006,
+ "loss": 3.320802688598633,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782532751091704,
+ "grad_norm": 0.01888313889503479,
+ "learning_rate": 0.0006,
+ "loss": 3.3290247917175293,
+ "step": 1496
+ },
+ {
+ "epoch": 20.79650655021834,
+ "grad_norm": 0.019536348059773445,
+ "learning_rate": 0.0006,
+ "loss": 3.311213493347168,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810480349344978,
+ "grad_norm": 0.018573017790913582,
+ "learning_rate": 0.0006,
+ "loss": 3.3132004737854004,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824454148471617,
+ "grad_norm": 0.019365103915333748,
+ "learning_rate": 0.0006,
+ "loss": 3.312656879425049,
+ "step": 1499
+ },
+ {
+ "epoch": 20.83842794759825,
+ "grad_norm": 0.021032165735960007,
+ "learning_rate": 0.0006,
+ "loss": 3.330728054046631,
+ "step": 1500
+ },
+ {
+ "epoch": 20.85240174672489,
+ "grad_norm": 0.02062826044857502,
+ "learning_rate": 0.0006,
+ "loss": 3.386507034301758,
+ "step": 1501
+ },
+ {
+ "epoch": 20.86637554585153,
+ "grad_norm": 0.019087517634034157,
+ "learning_rate": 0.0006,
+ "loss": 3.3134851455688477,
+ "step": 1502
+ },
+ {
+ "epoch": 20.880349344978168,
+ "grad_norm": 0.018393544480204582,
+ "learning_rate": 0.0006,
+ "loss": 3.3288557529449463,
+ "step": 1503
+ },
+ {
+ "epoch": 20.894323144104803,
+ "grad_norm": 0.018625570461153984,
+ "learning_rate": 0.0006,
+ "loss": 3.3385863304138184,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90829694323144,
+ "grad_norm": 0.018994612619280815,
+ "learning_rate": 0.0006,
+ "loss": 3.3441519737243652,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92227074235808,
+ "grad_norm": 0.019807450473308563,
+ "learning_rate": 0.0006,
+ "loss": 3.2853572368621826,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936244541484715,
+ "grad_norm": 0.01904045045375824,
+ "learning_rate": 0.0006,
+ "loss": 3.2973103523254395,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950218340611354,
+ "grad_norm": 0.019115809351205826,
+ "learning_rate": 0.0006,
+ "loss": 3.3340232372283936,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964192139737992,
+ "grad_norm": 0.020370563492178917,
+ "learning_rate": 0.0006,
+ "loss": 3.3770620822906494,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978165938864628,
+ "grad_norm": 0.02040398307144642,
+ "learning_rate": 0.0006,
+ "loss": 3.3141350746154785,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992139737991266,
+ "grad_norm": 0.019721226766705513,
+ "learning_rate": 0.0006,
+ "loss": 3.3140838146209717,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.021993499249219894,
+ "learning_rate": 0.0006,
+ "loss": 3.327284574508667,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 4.007121562957764,
+ "eval_runtime": 50.0284,
+ "eval_samples_per_second": 48.812,
+ "eval_steps_per_second": 1.539,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397379912664,
+ "grad_norm": 0.0266740545630455,
+ "learning_rate": 0.0006,
+ "loss": 3.1542232036590576,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027947598253274,
+ "grad_norm": 0.0431625060737133,
+ "learning_rate": 0.0006,
+ "loss": 3.1733574867248535,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041921397379912,
+ "grad_norm": 0.05062565952539444,
+ "learning_rate": 0.0006,
+ "loss": 3.2326841354370117,
+ "step": 1515
+ },
+ {
+ "epoch": 21.05589519650655,
+ "grad_norm": 0.04447261989116669,
+ "learning_rate": 0.0006,
+ "loss": 3.158965587615967,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069868995633186,
+ "grad_norm": 0.04547872766852379,
+ "learning_rate": 0.0006,
+ "loss": 3.1754844188690186,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083842794759825,
+ "grad_norm": 0.045201778411865234,
+ "learning_rate": 0.0006,
+ "loss": 3.164539337158203,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097816593886463,
+ "grad_norm": 0.04903271794319153,
+ "learning_rate": 0.0006,
+ "loss": 3.223135232925415,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111790393013102,
+ "grad_norm": 0.05277688428759575,
+ "learning_rate": 0.0006,
+ "loss": 3.21925687789917,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125764192139737,
+ "grad_norm": 0.055951476097106934,
+ "learning_rate": 0.0006,
+ "loss": 3.2054057121276855,
+ "step": 1521
+ },
+ {
+ "epoch": 21.139737991266376,
+ "grad_norm": 0.05742252990603447,
+ "learning_rate": 0.0006,
+ "loss": 3.2347140312194824,
+ "step": 1522
+ },
+ {
+ "epoch": 21.153711790393015,
+ "grad_norm": 0.05464409664273262,
+ "learning_rate": 0.0006,
+ "loss": 3.2519783973693848,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16768558951965,
+ "grad_norm": 0.06649098545312881,
+ "learning_rate": 0.0006,
+ "loss": 3.2739510536193848,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18165938864629,
+ "grad_norm": 0.07743308693170547,
+ "learning_rate": 0.0006,
+ "loss": 3.2961807250976562,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195633187772927,
+ "grad_norm": 0.0752289667725563,
+ "learning_rate": 0.0006,
+ "loss": 3.284780740737915,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209606986899562,
+ "grad_norm": 0.06247316300868988,
+ "learning_rate": 0.0006,
+ "loss": 3.253411293029785,
+ "step": 1527
+ },
+ {
+ "epoch": 21.2235807860262,
+ "grad_norm": 0.06856120377779007,
+ "learning_rate": 0.0006,
+ "loss": 3.288010597229004,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23755458515284,
+ "grad_norm": 0.06939002871513367,
+ "learning_rate": 0.0006,
+ "loss": 3.2672412395477295,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251528384279474,
+ "grad_norm": 0.06546786427497864,
+ "learning_rate": 0.0006,
+ "loss": 3.2822303771972656,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265502183406113,
+ "grad_norm": 0.06720232218503952,
+ "learning_rate": 0.0006,
+ "loss": 3.332411289215088,
+ "step": 1531
+ },
+ {
+ "epoch": 21.27947598253275,
+ "grad_norm": 0.061658330261707306,
+ "learning_rate": 0.0006,
+ "loss": 3.2908289432525635,
+ "step": 1532
+ },
+ {
+ "epoch": 21.29344978165939,
+ "grad_norm": 0.07328956574201584,
+ "learning_rate": 0.0006,
+ "loss": 3.3375182151794434,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307423580786025,
+ "grad_norm": 0.06822583079338074,
+ "learning_rate": 0.0006,
+ "loss": 3.3630833625793457,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321397379912664,
+ "grad_norm": 0.060682639479637146,
+ "learning_rate": 0.0006,
+ "loss": 3.3475425243377686,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335371179039303,
+ "grad_norm": 0.05718247592449188,
+ "learning_rate": 0.0006,
+ "loss": 3.351832866668701,
+ "step": 1536
+ },
+ {
+ "epoch": 21.349344978165938,
+ "grad_norm": 0.05781054124236107,
+ "learning_rate": 0.0006,
+ "loss": 3.38287091255188,
+ "step": 1537
+ },
+ {
+ "epoch": 21.363318777292577,
+ "grad_norm": 0.05846734717488289,
+ "learning_rate": 0.0006,
+ "loss": 3.3522510528564453,
+ "step": 1538
+ },
+ {
+ "epoch": 21.377292576419215,
+ "grad_norm": 0.0558689683675766,
+ "learning_rate": 0.0006,
+ "loss": 3.3376541137695312,
+ "step": 1539
+ },
+ {
+ "epoch": 21.39126637554585,
+ "grad_norm": 0.050501998513936996,
+ "learning_rate": 0.0006,
+ "loss": 3.359436511993408,
+ "step": 1540
+ },
+ {
+ "epoch": 21.40524017467249,
+ "grad_norm": 0.04265185445547104,
+ "learning_rate": 0.0006,
+ "loss": 3.3644630908966064,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419213973799128,
+ "grad_norm": 0.038762111216783524,
+ "learning_rate": 0.0006,
+ "loss": 3.347414493560791,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433187772925763,
+ "grad_norm": 0.033920831978321075,
+ "learning_rate": 0.0006,
+ "loss": 3.3242359161376953,
+ "step": 1543
+ },
+ {
+ "epoch": 21.4471615720524,
+ "grad_norm": 0.03363734856247902,
+ "learning_rate": 0.0006,
+ "loss": 3.3375630378723145,
+ "step": 1544
+ },
+ {
+ "epoch": 21.46113537117904,
+ "grad_norm": 0.03235653042793274,
+ "learning_rate": 0.0006,
+ "loss": 3.3372178077697754,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475109170305675,
+ "grad_norm": 0.028865264728665352,
+ "learning_rate": 0.0006,
+ "loss": 3.349198341369629,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489082969432314,
+ "grad_norm": 0.026676205918192863,
+ "learning_rate": 0.0006,
+ "loss": 3.355546474456787,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503056768558952,
+ "grad_norm": 0.023821823298931122,
+ "learning_rate": 0.0006,
+ "loss": 3.303542137145996,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51703056768559,
+ "grad_norm": 0.02385578863322735,
+ "learning_rate": 0.0006,
+ "loss": 3.3081653118133545,
+ "step": 1549
+ },
+ {
+ "epoch": 21.531004366812226,
+ "grad_norm": 0.022704163566231728,
+ "learning_rate": 0.0006,
+ "loss": 3.308283805847168,
+ "step": 1550
+ },
+ {
+ "epoch": 21.544978165938865,
+ "grad_norm": 0.02143189311027527,
+ "learning_rate": 0.0006,
+ "loss": 3.309621810913086,
+ "step": 1551
+ },
+ {
+ "epoch": 21.558951965065503,
+ "grad_norm": 0.020797641947865486,
+ "learning_rate": 0.0006,
+ "loss": 3.314361095428467,
+ "step": 1552
+ },
+ {
+ "epoch": 21.57292576419214,
+ "grad_norm": 0.020197909325361252,
+ "learning_rate": 0.0006,
+ "loss": 3.314574956893921,
+ "step": 1553
+ },
+ {
+ "epoch": 21.586899563318777,
+ "grad_norm": 0.020033083856105804,
+ "learning_rate": 0.0006,
+ "loss": 3.3187432289123535,
+ "step": 1554
+ },
+ {
+ "epoch": 21.600873362445416,
+ "grad_norm": 0.019949860870838165,
+ "learning_rate": 0.0006,
+ "loss": 3.292051315307617,
+ "step": 1555
+ },
+ {
+ "epoch": 21.61484716157205,
+ "grad_norm": 0.019957413896918297,
+ "learning_rate": 0.0006,
+ "loss": 3.305405855178833,
+ "step": 1556
+ },
+ {
+ "epoch": 21.62882096069869,
+ "grad_norm": 0.019971443340182304,
+ "learning_rate": 0.0006,
+ "loss": 3.296830177307129,
+ "step": 1557
+ },
+ {
+ "epoch": 21.64279475982533,
+ "grad_norm": 0.020505597814917564,
+ "learning_rate": 0.0006,
+ "loss": 3.2825589179992676,
+ "step": 1558
+ },
+ {
+ "epoch": 21.656768558951963,
+ "grad_norm": 0.019877616316080093,
+ "learning_rate": 0.0006,
+ "loss": 3.313103199005127,
+ "step": 1559
+ },
+ {
+ "epoch": 21.670742358078602,
+ "grad_norm": 0.020201386883854866,
+ "learning_rate": 0.0006,
+ "loss": 3.235610008239746,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68471615720524,
+ "grad_norm": 0.02024715021252632,
+ "learning_rate": 0.0006,
+ "loss": 3.2557928562164307,
+ "step": 1561
+ },
+ {
+ "epoch": 21.69868995633188,
+ "grad_norm": 0.019592178985476494,
+ "learning_rate": 0.0006,
+ "loss": 3.2867813110351562,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712663755458514,
+ "grad_norm": 0.018611110746860504,
+ "learning_rate": 0.0006,
+ "loss": 3.2807016372680664,
+ "step": 1563
+ },
+ {
+ "epoch": 21.726637554585153,
+ "grad_norm": 0.018972786143422127,
+ "learning_rate": 0.0006,
+ "loss": 3.2985191345214844,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74061135371179,
+ "grad_norm": 0.018826451152563095,
+ "learning_rate": 0.0006,
+ "loss": 3.29825758934021,
+ "step": 1565
+ },
+ {
+ "epoch": 21.754585152838427,
+ "grad_norm": 0.018894566223025322,
+ "learning_rate": 0.0006,
+ "loss": 3.276063919067383,
+ "step": 1566
+ },
+ {
+ "epoch": 21.768558951965066,
+ "grad_norm": 0.01885579153895378,
+ "learning_rate": 0.0006,
+ "loss": 3.2703640460968018,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782532751091704,
+ "grad_norm": 0.018351880833506584,
+ "learning_rate": 0.0006,
+ "loss": 3.2634973526000977,
+ "step": 1568
+ },
+ {
+ "epoch": 21.79650655021834,
+ "grad_norm": 0.018520258367061615,
+ "learning_rate": 0.0006,
+ "loss": 3.2701549530029297,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810480349344978,
+ "grad_norm": 0.018321022391319275,
+ "learning_rate": 0.0006,
+ "loss": 3.2998499870300293,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824454148471617,
+ "grad_norm": 0.018834305927157402,
+ "learning_rate": 0.0006,
+ "loss": 3.2863354682922363,
+ "step": 1571
+ },
+ {
+ "epoch": 21.83842794759825,
+ "grad_norm": 0.019185064360499382,
+ "learning_rate": 0.0006,
+ "loss": 3.286705493927002,
+ "step": 1572
+ },
+ {
+ "epoch": 21.85240174672489,
+ "grad_norm": 0.01889665424823761,
+ "learning_rate": 0.0006,
+ "loss": 3.32741641998291,
+ "step": 1573
+ },
+ {
+ "epoch": 21.86637554585153,
+ "grad_norm": 0.018116198480129242,
+ "learning_rate": 0.0006,
+ "loss": 3.3165807723999023,
+ "step": 1574
+ },
+ {
+ "epoch": 21.880349344978168,
+ "grad_norm": 0.019612092524766922,
+ "learning_rate": 0.0006,
+ "loss": 3.2506771087646484,
+ "step": 1575
+ },
+ {
+ "epoch": 21.894323144104803,
+ "grad_norm": 0.018245317041873932,
+ "learning_rate": 0.0006,
+ "loss": 3.287231922149658,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90829694323144,
+ "grad_norm": 0.01800438202917576,
+ "learning_rate": 0.0006,
+ "loss": 3.323281764984131,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92227074235808,
+ "grad_norm": 0.018265806138515472,
+ "learning_rate": 0.0006,
+ "loss": 3.327335834503174,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936244541484715,
+ "grad_norm": 0.01925564929842949,
+ "learning_rate": 0.0006,
+ "loss": 3.3010969161987305,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950218340611354,
+ "grad_norm": 0.019137129187583923,
+ "learning_rate": 0.0006,
+ "loss": 3.2997634410858154,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964192139737992,
+ "grad_norm": 0.01760365068912506,
+ "learning_rate": 0.0006,
+ "loss": 3.2637267112731934,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978165938864628,
+ "grad_norm": 0.018728850409388542,
+ "learning_rate": 0.0006,
+ "loss": 3.2676243782043457,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992139737991266,
+ "grad_norm": 0.018930058926343918,
+ "learning_rate": 0.0006,
+ "loss": 3.280712604522705,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.021552253514528275,
+ "learning_rate": 0.0006,
+ "loss": 3.297333240509033,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 4.021175384521484,
+ "eval_runtime": 50.1224,
+ "eval_samples_per_second": 48.721,
+ "eval_steps_per_second": 1.536,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397379912664,
+ "grad_norm": 0.02215493470430374,
+ "learning_rate": 0.0006,
+ "loss": 3.1229772567749023,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027947598253274,
+ "grad_norm": 0.02967856451869011,
+ "learning_rate": 0.0006,
+ "loss": 3.137763738632202,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041921397379912,
+ "grad_norm": 0.02984168380498886,
+ "learning_rate": 0.0006,
+ "loss": 3.1206588745117188,
+ "step": 1587
+ },
+ {
+ "epoch": 22.05589519650655,
+ "grad_norm": 0.029677357524633408,
+ "learning_rate": 0.0006,
+ "loss": 3.1399269104003906,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069868995633186,
+ "grad_norm": 0.03151305764913559,
+ "learning_rate": 0.0006,
+ "loss": 3.1238462924957275,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083842794759825,
+ "grad_norm": 0.033034879714250565,
+ "learning_rate": 0.0006,
+ "loss": 3.0901098251342773,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097816593886463,
+ "grad_norm": 0.03483431041240692,
+ "learning_rate": 0.0006,
+ "loss": 3.141174077987671,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111790393013102,
+ "grad_norm": 0.03549962490797043,
+ "learning_rate": 0.0006,
+ "loss": 3.1501364707946777,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125764192139737,
+ "grad_norm": 0.03203433007001877,
+ "learning_rate": 0.0006,
+ "loss": 3.159137725830078,
+ "step": 1593
+ },
+ {
+ "epoch": 22.139737991266376,
+ "grad_norm": 0.032320212572813034,
+ "learning_rate": 0.0006,
+ "loss": 3.132265329360962,
+ "step": 1594
+ },
+ {
+ "epoch": 22.153711790393015,
+ "grad_norm": 0.034070853143930435,
+ "learning_rate": 0.0006,
+ "loss": 3.1619839668273926,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16768558951965,
+ "grad_norm": 0.03379609435796738,
+ "learning_rate": 0.0006,
+ "loss": 3.1391677856445312,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18165938864629,
+ "grad_norm": 0.02766602858901024,
+ "learning_rate": 0.0006,
+ "loss": 3.134331226348877,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195633187772927,
+ "grad_norm": 0.02805453911423683,
+ "learning_rate": 0.0006,
+ "loss": 3.1561427116394043,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209606986899562,
+ "grad_norm": 0.028059443458914757,
+ "learning_rate": 0.0006,
+ "loss": 3.1427788734436035,
+ "step": 1599
+ },
+ {
+ "epoch": 22.2235807860262,
+ "grad_norm": 0.028307706117630005,
+ "learning_rate": 0.0006,
+ "loss": 3.1559817790985107,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23755458515284,
+ "grad_norm": 0.0279996320605278,
+ "learning_rate": 0.0006,
+ "loss": 3.132871389389038,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251528384279474,
+ "grad_norm": 0.02574557065963745,
+ "learning_rate": 0.0006,
+ "loss": 3.1786751747131348,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265502183406113,
+ "grad_norm": 0.024875380098819733,
+ "learning_rate": 0.0006,
+ "loss": 3.1568856239318848,
+ "step": 1603
+ },
+ {
+ "epoch": 22.27947598253275,
+ "grad_norm": 0.025276372209191322,
+ "learning_rate": 0.0006,
+ "loss": 3.162123203277588,
+ "step": 1604
+ },
+ {
+ "epoch": 22.29344978165939,
+ "grad_norm": 0.024784576147794724,
+ "learning_rate": 0.0006,
+ "loss": 3.1623098850250244,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307423580786025,
+ "grad_norm": 0.0219266377389431,
+ "learning_rate": 0.0006,
+ "loss": 3.193899393081665,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321397379912664,
+ "grad_norm": 0.02260139398276806,
+ "learning_rate": 0.0006,
+ "loss": 3.1366958618164062,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335371179039303,
+ "grad_norm": 0.023162642493844032,
+ "learning_rate": 0.0006,
+ "loss": 3.1931166648864746,
+ "step": 1608
+ },
+ {
+ "epoch": 22.349344978165938,
+ "grad_norm": 0.022873790934681892,
+ "learning_rate": 0.0006,
+ "loss": 3.1660501956939697,
+ "step": 1609
+ },
+ {
+ "epoch": 22.363318777292577,
+ "grad_norm": 0.02431238628923893,
+ "learning_rate": 0.0006,
+ "loss": 3.172982931137085,
+ "step": 1610
+ },
+ {
+ "epoch": 22.377292576419215,
+ "grad_norm": 0.023474128916859627,
+ "learning_rate": 0.0006,
+ "loss": 3.1941604614257812,
+ "step": 1611
+ },
+ {
+ "epoch": 22.39126637554585,
+ "grad_norm": 0.021899253129959106,
+ "learning_rate": 0.0006,
+ "loss": 3.164011240005493,
+ "step": 1612
+ },
+ {
+ "epoch": 22.40524017467249,
+ "grad_norm": 0.023463290184736252,
+ "learning_rate": 0.0006,
+ "loss": 3.181821823120117,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419213973799128,
+ "grad_norm": 0.022636929526925087,
+ "learning_rate": 0.0006,
+ "loss": 3.1651649475097656,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433187772925763,
+ "grad_norm": 0.022014712914824486,
+ "learning_rate": 0.0006,
+ "loss": 3.1782679557800293,
+ "step": 1615
+ },
+ {
+ "epoch": 22.4471615720524,
+ "grad_norm": 0.02165660634636879,
+ "learning_rate": 0.0006,
+ "loss": 3.188546657562256,
+ "step": 1616
+ },
+ {
+ "epoch": 22.46113537117904,
+ "grad_norm": 0.019901631399989128,
+ "learning_rate": 0.0006,
+ "loss": 3.1988091468811035,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475109170305675,
+ "grad_norm": 0.0209745354950428,
+ "learning_rate": 0.0006,
+ "loss": 3.19329833984375,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489082969432314,
+ "grad_norm": 0.021747298538684845,
+ "learning_rate": 0.0006,
+ "loss": 3.2036776542663574,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503056768558952,
+ "grad_norm": 0.019623076543211937,
+ "learning_rate": 0.0006,
+ "loss": 3.1681504249572754,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51703056768559,
+ "grad_norm": 0.020048566162586212,
+ "learning_rate": 0.0006,
+ "loss": 3.1954283714294434,
+ "step": 1621
+ },
+ {
+ "epoch": 22.531004366812226,
+ "grad_norm": 0.021175740286707878,
+ "learning_rate": 0.0006,
+ "loss": 3.189802646636963,
+ "step": 1622
+ },
+ {
+ "epoch": 22.544978165938865,
+ "grad_norm": 0.02099684439599514,
+ "learning_rate": 0.0006,
+ "loss": 3.2179861068725586,
+ "step": 1623
+ },
+ {
+ "epoch": 22.558951965065503,
+ "grad_norm": 0.020709119737148285,
+ "learning_rate": 0.0006,
+ "loss": 3.219874382019043,
+ "step": 1624
+ },
+ {
+ "epoch": 22.57292576419214,
+ "grad_norm": 0.02090434730052948,
+ "learning_rate": 0.0006,
+ "loss": 3.1864824295043945,
+ "step": 1625
+ },
+ {
+ "epoch": 22.586899563318777,
+ "grad_norm": 0.02059161476790905,
+ "learning_rate": 0.0006,
+ "loss": 3.2084670066833496,
+ "step": 1626
+ },
+ {
+ "epoch": 22.600873362445416,
+ "grad_norm": 0.02269027940928936,
+ "learning_rate": 0.0006,
+ "loss": 3.2111763954162598,
+ "step": 1627
+ },
+ {
+ "epoch": 22.61484716157205,
+ "grad_norm": 0.023081645369529724,
+ "learning_rate": 0.0006,
+ "loss": 3.1888933181762695,
+ "step": 1628
+ },
+ {
+ "epoch": 22.62882096069869,
+ "grad_norm": 0.021397452801465988,
+ "learning_rate": 0.0006,
+ "loss": 3.252058982849121,
+ "step": 1629
+ },
+ {
+ "epoch": 22.64279475982533,
+ "grad_norm": 0.021065089851617813,
+ "learning_rate": 0.0006,
+ "loss": 3.2006194591522217,
+ "step": 1630
+ },
+ {
+ "epoch": 22.656768558951963,
+ "grad_norm": 0.022490495815873146,
+ "learning_rate": 0.0006,
+ "loss": 3.229124069213867,
+ "step": 1631
+ },
+ {
+ "epoch": 22.670742358078602,
+ "grad_norm": 0.021817505359649658,
+ "learning_rate": 0.0006,
+ "loss": 3.194119691848755,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68471615720524,
+ "grad_norm": 0.021232811734080315,
+ "learning_rate": 0.0006,
+ "loss": 3.245544910430908,
+ "step": 1633
+ },
+ {
+ "epoch": 22.69868995633188,
+ "grad_norm": 0.023222077637910843,
+ "learning_rate": 0.0006,
+ "loss": 3.279717445373535,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712663755458514,
+ "grad_norm": 0.02224564366042614,
+ "learning_rate": 0.0006,
+ "loss": 3.2494592666625977,
+ "step": 1635
+ },
+ {
+ "epoch": 22.726637554585153,
+ "grad_norm": 0.021308856084942818,
+ "learning_rate": 0.0006,
+ "loss": 3.204773426055908,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74061135371179,
+ "grad_norm": 0.020439520478248596,
+ "learning_rate": 0.0006,
+ "loss": 3.205946683883667,
+ "step": 1637
+ },
+ {
+ "epoch": 22.754585152838427,
+ "grad_norm": 0.020782779902219772,
+ "learning_rate": 0.0006,
+ "loss": 3.239274501800537,
+ "step": 1638
+ },
+ {
+ "epoch": 22.768558951965066,
+ "grad_norm": 0.022062206640839577,
+ "learning_rate": 0.0006,
+ "loss": 3.2261786460876465,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782532751091704,
+ "grad_norm": 0.02113729901611805,
+ "learning_rate": 0.0006,
+ "loss": 3.2691404819488525,
+ "step": 1640
+ },
+ {
+ "epoch": 22.79650655021834,
+ "grad_norm": 0.021274438127875328,
+ "learning_rate": 0.0006,
+ "loss": 3.226609706878662,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810480349344978,
+ "grad_norm": 0.021622309461236,
+ "learning_rate": 0.0006,
+ "loss": 3.2209739685058594,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824454148471617,
+ "grad_norm": 0.0202135369181633,
+ "learning_rate": 0.0006,
+ "loss": 3.1961019039154053,
+ "step": 1643
+ },
+ {
+ "epoch": 22.83842794759825,
+ "grad_norm": 0.020688654854893684,
+ "learning_rate": 0.0006,
+ "loss": 3.2573604583740234,
+ "step": 1644
+ },
+ {
+ "epoch": 22.85240174672489,
+ "grad_norm": 0.021738961338996887,
+ "learning_rate": 0.0006,
+ "loss": 3.2542853355407715,
+ "step": 1645
+ },
+ {
+ "epoch": 22.86637554585153,
+ "grad_norm": 0.0219196118414402,
+ "learning_rate": 0.0006,
+ "loss": 3.252492904663086,
+ "step": 1646
+ },
+ {
+ "epoch": 22.880349344978168,
+ "grad_norm": 0.0218547023832798,
+ "learning_rate": 0.0006,
+ "loss": 3.2702088356018066,
+ "step": 1647
+ },
+ {
+ "epoch": 22.894323144104803,
+ "grad_norm": 0.021791797131299973,
+ "learning_rate": 0.0006,
+ "loss": 3.2743520736694336,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90829694323144,
+ "grad_norm": 0.02209450677037239,
+ "learning_rate": 0.0006,
+ "loss": 3.2271618843078613,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92227074235808,
+ "grad_norm": 0.021461671218276024,
+ "learning_rate": 0.0006,
+ "loss": 3.237719774246216,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936244541484715,
+ "grad_norm": 0.02116190828382969,
+ "learning_rate": 0.0006,
+ "loss": 3.220345973968506,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950218340611354,
+ "grad_norm": 0.021221552044153214,
+ "learning_rate": 0.0006,
+ "loss": 3.270355224609375,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964192139737992,
+ "grad_norm": 0.021926164627075195,
+ "learning_rate": 0.0006,
+ "loss": 3.251894474029541,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978165938864628,
+ "grad_norm": 0.02037062682211399,
+ "learning_rate": 0.0006,
+ "loss": 3.2335145473480225,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992139737991266,
+ "grad_norm": 0.021061841398477554,
+ "learning_rate": 0.0006,
+ "loss": 3.258089065551758,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.023548489436507225,
+ "learning_rate": 0.0006,
+ "loss": 3.211991548538208,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 4.036250591278076,
+ "eval_runtime": 50.0837,
+ "eval_samples_per_second": 48.758,
+ "eval_steps_per_second": 1.537,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397379912664,
+ "grad_norm": 0.028975404798984528,
+ "learning_rate": 0.0006,
+ "loss": 3.0739121437072754,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027947598253274,
+ "grad_norm": 0.045989733189344406,
+ "learning_rate": 0.0006,
+ "loss": 3.086352825164795,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041921397379912,
+ "grad_norm": 0.054499756544828415,
+ "learning_rate": 0.0006,
+ "loss": 3.0560779571533203,
+ "step": 1659
+ },
+ {
+ "epoch": 23.05589519650655,
+ "grad_norm": 0.05919722840189934,
+ "learning_rate": 0.0006,
+ "loss": 3.0908679962158203,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069868995633186,
+ "grad_norm": 0.05523031949996948,
+ "learning_rate": 0.0006,
+ "loss": 3.143130302429199,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083842794759825,
+ "grad_norm": 0.04946798086166382,
+ "learning_rate": 0.0006,
+ "loss": 3.0894484519958496,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097816593886463,
+ "grad_norm": 0.05096029117703438,
+ "learning_rate": 0.0006,
+ "loss": 3.1163463592529297,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111790393013102,
+ "grad_norm": 0.051004018634557724,
+ "learning_rate": 0.0006,
+ "loss": 3.094862937927246,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125764192139737,
+ "grad_norm": 0.04774824529886246,
+ "learning_rate": 0.0006,
+ "loss": 3.056874990463257,
+ "step": 1665
+ },
+ {
+ "epoch": 23.139737991266376,
+ "grad_norm": 0.04676121845841408,
+ "learning_rate": 0.0006,
+ "loss": 3.1135435104370117,
+ "step": 1666
+ },
+ {
+ "epoch": 23.153711790393015,
+ "grad_norm": 0.04623310640454292,
+ "learning_rate": 0.0006,
+ "loss": 3.0834898948669434,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16768558951965,
+ "grad_norm": 0.04654386639595032,
+ "learning_rate": 0.0006,
+ "loss": 3.1126627922058105,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18165938864629,
+ "grad_norm": 0.05056565999984741,
+ "learning_rate": 0.0006,
+ "loss": 3.1404361724853516,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195633187772927,
+ "grad_norm": 0.04947774112224579,
+ "learning_rate": 0.0006,
+ "loss": 3.0800836086273193,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209606986899562,
+ "grad_norm": 0.05254998058080673,
+ "learning_rate": 0.0006,
+ "loss": 3.1659531593322754,
+ "step": 1671
+ },
+ {
+ "epoch": 23.2235807860262,
+ "grad_norm": 0.05698013678193092,
+ "learning_rate": 0.0006,
+ "loss": 3.124387741088867,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23755458515284,
+ "grad_norm": 0.05885928124189377,
+ "learning_rate": 0.0006,
+ "loss": 3.1883671283721924,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251528384279474,
+ "grad_norm": 0.05118200555443764,
+ "learning_rate": 0.0006,
+ "loss": 3.1102395057678223,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265502183406113,
+ "grad_norm": 0.04967886209487915,
+ "learning_rate": 0.0006,
+ "loss": 3.124696731567383,
+ "step": 1675
+ },
+ {
+ "epoch": 23.27947598253275,
+ "grad_norm": 0.05399557575583458,
+ "learning_rate": 0.0006,
+ "loss": 3.152482032775879,
+ "step": 1676
+ },
+ {
+ "epoch": 23.29344978165939,
+ "grad_norm": 0.04705207049846649,
+ "learning_rate": 0.0006,
+ "loss": 3.1485037803649902,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307423580786025,
+ "grad_norm": 0.045942481607198715,
+ "learning_rate": 0.0006,
+ "loss": 3.149049997329712,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321397379912664,
+ "grad_norm": 0.04364842176437378,
+ "learning_rate": 0.0006,
+ "loss": 3.1753323078155518,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335371179039303,
+ "grad_norm": 0.04357321560382843,
+ "learning_rate": 0.0006,
+ "loss": 3.1530587673187256,
+ "step": 1680
+ },
+ {
+ "epoch": 23.349344978165938,
+ "grad_norm": 0.040299318730831146,
+ "learning_rate": 0.0006,
+ "loss": 3.1689562797546387,
+ "step": 1681
+ },
+ {
+ "epoch": 23.363318777292577,
+ "grad_norm": 0.033832576125860214,
+ "learning_rate": 0.0006,
+ "loss": 3.1539080142974854,
+ "step": 1682
+ },
+ {
+ "epoch": 23.377292576419215,
+ "grad_norm": 0.0333096869289875,
+ "learning_rate": 0.0006,
+ "loss": 3.136540412902832,
+ "step": 1683
+ },
+ {
+ "epoch": 23.39126637554585,
+ "grad_norm": 0.03185306116938591,
+ "learning_rate": 0.0006,
+ "loss": 3.161989450454712,
+ "step": 1684
+ },
+ {
+ "epoch": 23.40524017467249,
+ "grad_norm": 0.030003627762198448,
+ "learning_rate": 0.0006,
+ "loss": 3.1533138751983643,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419213973799128,
+ "grad_norm": 0.028618820011615753,
+ "learning_rate": 0.0006,
+ "loss": 3.185976028442383,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433187772925763,
+ "grad_norm": 0.02691742591559887,
+ "learning_rate": 0.0006,
+ "loss": 3.153627872467041,
+ "step": 1687
+ },
+ {
+ "epoch": 23.4471615720524,
+ "grad_norm": 0.026324588805437088,
+ "learning_rate": 0.0006,
+ "loss": 3.1644554138183594,
+ "step": 1688
+ },
+ {
+ "epoch": 23.46113537117904,
+ "grad_norm": 0.025900371372699738,
+ "learning_rate": 0.0006,
+ "loss": 3.1649692058563232,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475109170305675,
+ "grad_norm": 0.0243719182908535,
+ "learning_rate": 0.0006,
+ "loss": 3.182521343231201,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489082969432314,
+ "grad_norm": 0.022730499505996704,
+ "learning_rate": 0.0006,
+ "loss": 3.1854891777038574,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503056768558952,
+ "grad_norm": 0.02335519716143608,
+ "learning_rate": 0.0006,
+ "loss": 3.151111364364624,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51703056768559,
+ "grad_norm": 0.022645823657512665,
+ "learning_rate": 0.0006,
+ "loss": 3.181077241897583,
+ "step": 1693
+ },
+ {
+ "epoch": 23.531004366812226,
+ "grad_norm": 0.022274266928434372,
+ "learning_rate": 0.0006,
+ "loss": 3.155630111694336,
+ "step": 1694
+ },
+ {
+ "epoch": 23.544978165938865,
+ "grad_norm": 0.02225971594452858,
+ "learning_rate": 0.0006,
+ "loss": 3.20708966255188,
+ "step": 1695
+ },
+ {
+ "epoch": 23.558951965065503,
+ "grad_norm": 0.022145207971334457,
+ "learning_rate": 0.0006,
+ "loss": 3.1944689750671387,
+ "step": 1696
+ },
+ {
+ "epoch": 23.57292576419214,
+ "grad_norm": 0.02143380232155323,
+ "learning_rate": 0.0006,
+ "loss": 3.1928765773773193,
+ "step": 1697
+ },
+ {
+ "epoch": 23.586899563318777,
+ "grad_norm": 0.021410757675766945,
+ "learning_rate": 0.0006,
+ "loss": 3.141218900680542,
+ "step": 1698
+ },
+ {
+ "epoch": 23.600873362445416,
+ "grad_norm": 0.020946916192770004,
+ "learning_rate": 0.0006,
+ "loss": 3.1523003578186035,
+ "step": 1699
+ },
+ {
+ "epoch": 23.61484716157205,
+ "grad_norm": 0.02247041091322899,
+ "learning_rate": 0.0006,
+ "loss": 3.197848320007324,
+ "step": 1700
+ },
+ {
+ "epoch": 23.62882096069869,
+ "grad_norm": 0.02199610322713852,
+ "learning_rate": 0.0006,
+ "loss": 3.146364212036133,
+ "step": 1701
+ },
+ {
+ "epoch": 23.64279475982533,
+ "grad_norm": 0.021192600950598717,
+ "learning_rate": 0.0006,
+ "loss": 3.205726146697998,
+ "step": 1702
+ },
+ {
+ "epoch": 23.656768558951963,
+ "grad_norm": 0.021812601014971733,
+ "learning_rate": 0.0006,
+ "loss": 3.1663761138916016,
+ "step": 1703
+ },
+ {
+ "epoch": 23.670742358078602,
+ "grad_norm": 0.021653084084391594,
+ "learning_rate": 0.0006,
+ "loss": 3.186915397644043,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68471615720524,
+ "grad_norm": 0.02271277830004692,
+ "learning_rate": 0.0006,
+ "loss": 3.1901726722717285,
+ "step": 1705
+ },
+ {
+ "epoch": 23.69868995633188,
+ "grad_norm": 0.022516358643770218,
+ "learning_rate": 0.0006,
+ "loss": 3.1948347091674805,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712663755458514,
+ "grad_norm": 0.021564161404967308,
+ "learning_rate": 0.0006,
+ "loss": 3.18239688873291,
+ "step": 1707
+ },
+ {
+ "epoch": 23.726637554585153,
+ "grad_norm": 0.02193053439259529,
+ "learning_rate": 0.0006,
+ "loss": 3.167478561401367,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74061135371179,
+ "grad_norm": 0.020590802654623985,
+ "learning_rate": 0.0006,
+ "loss": 3.1782495975494385,
+ "step": 1709
+ },
+ {
+ "epoch": 23.754585152838427,
+ "grad_norm": 0.02001943439245224,
+ "learning_rate": 0.0006,
+ "loss": 3.140777111053467,
+ "step": 1710
+ },
+ {
+ "epoch": 23.768558951965066,
+ "grad_norm": 0.02146220952272415,
+ "learning_rate": 0.0006,
+ "loss": 3.196669578552246,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782532751091704,
+ "grad_norm": 0.02064087800681591,
+ "learning_rate": 0.0006,
+ "loss": 3.1968512535095215,
+ "step": 1712
+ },
+ {
+ "epoch": 23.79650655021834,
+ "grad_norm": 0.020168280228972435,
+ "learning_rate": 0.0006,
+ "loss": 3.185011625289917,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810480349344978,
+ "grad_norm": 0.021309854462742805,
+ "learning_rate": 0.0006,
+ "loss": 3.223778247833252,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824454148471617,
+ "grad_norm": 0.021627578884363174,
+ "learning_rate": 0.0006,
+ "loss": 3.2337048053741455,
+ "step": 1715
+ },
+ {
+ "epoch": 23.83842794759825,
+ "grad_norm": 0.022393809631466866,
+ "learning_rate": 0.0006,
+ "loss": 3.1815061569213867,
+ "step": 1716
+ },
+ {
+ "epoch": 23.85240174672489,
+ "grad_norm": 0.021653614938259125,
+ "learning_rate": 0.0006,
+ "loss": 3.2199814319610596,
+ "step": 1717
+ },
+ {
+ "epoch": 23.86637554585153,
+ "grad_norm": 0.021053675562143326,
+ "learning_rate": 0.0006,
+ "loss": 3.2100138664245605,
+ "step": 1718
+ },
+ {
+ "epoch": 23.880349344978168,
+ "grad_norm": 0.02070586569607258,
+ "learning_rate": 0.0006,
+ "loss": 3.169224262237549,
+ "step": 1719
+ },
+ {
+ "epoch": 23.894323144104803,
+ "grad_norm": 0.02080441080033779,
+ "learning_rate": 0.0006,
+ "loss": 3.2199649810791016,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90829694323144,
+ "grad_norm": 0.022092828527092934,
+ "learning_rate": 0.0006,
+ "loss": 3.2059383392333984,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92227074235808,
+ "grad_norm": 0.02031811885535717,
+ "learning_rate": 0.0006,
+ "loss": 3.181447982788086,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936244541484715,
+ "grad_norm": 0.020453795790672302,
+ "learning_rate": 0.0006,
+ "loss": 3.2039992809295654,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950218340611354,
+ "grad_norm": 0.02050524763762951,
+ "learning_rate": 0.0006,
+ "loss": 3.2518773078918457,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964192139737992,
+ "grad_norm": 0.020392276346683502,
+ "learning_rate": 0.0006,
+ "loss": 3.21860408782959,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978165938864628,
+ "grad_norm": 0.02083909884095192,
+ "learning_rate": 0.0006,
+ "loss": 3.2072129249572754,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992139737991266,
+ "grad_norm": 0.020636966452002525,
+ "learning_rate": 0.0006,
+ "loss": 3.1956424713134766,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.02314000204205513,
+ "learning_rate": 0.0006,
+ "loss": 3.1868958473205566,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 4.061861038208008,
+ "eval_runtime": 50.2887,
+ "eval_samples_per_second": 48.56,
+ "eval_steps_per_second": 1.531,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397379912664,
+ "grad_norm": 0.026494357734918594,
+ "learning_rate": 0.0006,
+ "loss": 3.0170693397521973,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027947598253274,
+ "grad_norm": 0.03457538038492203,
+ "learning_rate": 0.0006,
+ "loss": 3.038365364074707,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041921397379912,
+ "grad_norm": 0.0362137034535408,
+ "learning_rate": 0.0006,
+ "loss": 3.042156219482422,
+ "step": 1731
+ },
+ {
+ "epoch": 24.05589519650655,
+ "grad_norm": 0.0380006767809391,
+ "learning_rate": 0.0006,
+ "loss": 2.9978504180908203,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069868995633186,
+ "grad_norm": 0.039754100143909454,
+ "learning_rate": 0.0006,
+ "loss": 3.0558762550354004,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083842794759825,
+ "grad_norm": 0.04269031062722206,
+ "learning_rate": 0.0006,
+ "loss": 3.0549988746643066,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097816593886463,
+ "grad_norm": 0.04441278055310249,
+ "learning_rate": 0.0006,
+ "loss": 3.0869946479797363,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111790393013102,
+ "grad_norm": 0.040790386497974396,
+ "learning_rate": 0.0006,
+ "loss": 3.0361521244049072,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125764192139737,
+ "grad_norm": 0.03730896860361099,
+ "learning_rate": 0.0006,
+ "loss": 3.046663761138916,
+ "step": 1737
+ },
+ {
+ "epoch": 24.139737991266376,
+ "grad_norm": 0.03982469439506531,
+ "learning_rate": 0.0006,
+ "loss": 3.0173420906066895,
+ "step": 1738
+ },
+ {
+ "epoch": 24.153711790393015,
+ "grad_norm": 0.039260219782590866,
+ "learning_rate": 0.0006,
+ "loss": 3.0473644733428955,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16768558951965,
+ "grad_norm": 0.03755051642656326,
+ "learning_rate": 0.0006,
+ "loss": 3.0663342475891113,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18165938864629,
+ "grad_norm": 0.03793613240122795,
+ "learning_rate": 0.0006,
+ "loss": 3.0489985942840576,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195633187772927,
+ "grad_norm": 0.04197019711136818,
+ "learning_rate": 0.0006,
+ "loss": 3.097670555114746,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209606986899562,
+ "grad_norm": 0.0469660609960556,
+ "learning_rate": 0.0006,
+ "loss": 3.1100730895996094,
+ "step": 1743
+ },
+ {
+ "epoch": 24.2235807860262,
+ "grad_norm": 0.04978584498167038,
+ "learning_rate": 0.0006,
+ "loss": 3.079113006591797,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23755458515284,
+ "grad_norm": 0.04865782707929611,
+ "learning_rate": 0.0006,
+ "loss": 3.0800795555114746,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251528384279474,
+ "grad_norm": 0.04515399411320686,
+ "learning_rate": 0.0006,
+ "loss": 3.0951786041259766,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265502183406113,
+ "grad_norm": 0.05194929614663124,
+ "learning_rate": 0.0006,
+ "loss": 3.0923233032226562,
+ "step": 1747
+ },
+ {
+ "epoch": 24.27947598253275,
+ "grad_norm": 0.05268502235412598,
+ "learning_rate": 0.0006,
+ "loss": 3.0762367248535156,
+ "step": 1748
+ },
+ {
+ "epoch": 24.29344978165939,
+ "grad_norm": 0.04807785153388977,
+ "learning_rate": 0.0006,
+ "loss": 3.0600905418395996,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307423580786025,
+ "grad_norm": 0.049069009721279144,
+ "learning_rate": 0.0006,
+ "loss": 3.119414806365967,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321397379912664,
+ "grad_norm": 0.040332380682229996,
+ "learning_rate": 0.0006,
+ "loss": 3.101262092590332,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335371179039303,
+ "grad_norm": 0.037106387317180634,
+ "learning_rate": 0.0006,
+ "loss": 3.111459732055664,
+ "step": 1752
+ },
+ {
+ "epoch": 24.349344978165938,
+ "grad_norm": 0.04089464247226715,
+ "learning_rate": 0.0006,
+ "loss": 3.078132152557373,
+ "step": 1753
+ },
+ {
+ "epoch": 24.363318777292577,
+ "grad_norm": 0.042072005569934845,
+ "learning_rate": 0.0006,
+ "loss": 3.098802089691162,
+ "step": 1754
+ },
+ {
+ "epoch": 24.377292576419215,
+ "grad_norm": 0.03779057413339615,
+ "learning_rate": 0.0006,
+ "loss": 3.137354850769043,
+ "step": 1755
+ },
+ {
+ "epoch": 24.39126637554585,
+ "grad_norm": 0.037271898239851,
+ "learning_rate": 0.0006,
+ "loss": 3.1019601821899414,
+ "step": 1756
+ },
+ {
+ "epoch": 24.40524017467249,
+ "grad_norm": 0.036236681044101715,
+ "learning_rate": 0.0006,
+ "loss": 3.073394775390625,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419213973799128,
+ "grad_norm": 0.03288481757044792,
+ "learning_rate": 0.0006,
+ "loss": 3.085905075073242,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433187772925763,
+ "grad_norm": 0.030534565448760986,
+ "learning_rate": 0.0006,
+ "loss": 3.1430633068084717,
+ "step": 1759
+ },
+ {
+ "epoch": 24.4471615720524,
+ "grad_norm": 0.030080555006861687,
+ "learning_rate": 0.0006,
+ "loss": 3.084897994995117,
+ "step": 1760
+ },
+ {
+ "epoch": 24.46113537117904,
+ "grad_norm": 0.028177041560411453,
+ "learning_rate": 0.0006,
+ "loss": 3.0981075763702393,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475109170305675,
+ "grad_norm": 0.02868589572608471,
+ "learning_rate": 0.0006,
+ "loss": 3.113759994506836,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489082969432314,
+ "grad_norm": 0.02866324409842491,
+ "learning_rate": 0.0006,
+ "loss": 3.146918773651123,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503056768558952,
+ "grad_norm": 0.032893482595682144,
+ "learning_rate": 0.0006,
+ "loss": 3.16141414642334,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51703056768559,
+ "grad_norm": 0.03186864033341408,
+ "learning_rate": 0.0006,
+ "loss": 3.13303804397583,
+ "step": 1765
+ },
+ {
+ "epoch": 24.531004366812226,
+ "grad_norm": 0.0323340930044651,
+ "learning_rate": 0.0006,
+ "loss": 3.1308135986328125,
+ "step": 1766
+ },
+ {
+ "epoch": 24.544978165938865,
+ "grad_norm": 0.03451741859316826,
+ "learning_rate": 0.0006,
+ "loss": 3.13972806930542,
+ "step": 1767
+ },
+ {
+ "epoch": 24.558951965065503,
+ "grad_norm": 0.03144263103604317,
+ "learning_rate": 0.0006,
+ "loss": 3.1428070068359375,
+ "step": 1768
+ },
+ {
+ "epoch": 24.57292576419214,
+ "grad_norm": 0.02920706383883953,
+ "learning_rate": 0.0006,
+ "loss": 3.1201605796813965,
+ "step": 1769
+ },
+ {
+ "epoch": 24.586899563318777,
+ "grad_norm": 0.028445811942219734,
+ "learning_rate": 0.0006,
+ "loss": 3.144218683242798,
+ "step": 1770
+ },
+ {
+ "epoch": 24.600873362445416,
+ "grad_norm": 0.02665509283542633,
+ "learning_rate": 0.0006,
+ "loss": 3.130509853363037,
+ "step": 1771
+ },
+ {
+ "epoch": 24.61484716157205,
+ "grad_norm": 0.02607566863298416,
+ "learning_rate": 0.0006,
+ "loss": 3.1229686737060547,
+ "step": 1772
+ },
+ {
+ "epoch": 24.62882096069869,
+ "grad_norm": 0.02450554072856903,
+ "learning_rate": 0.0006,
+ "loss": 3.1412901878356934,
+ "step": 1773
+ },
+ {
+ "epoch": 24.64279475982533,
+ "grad_norm": 0.024406673386693,
+ "learning_rate": 0.0006,
+ "loss": 3.1482839584350586,
+ "step": 1774
+ },
+ {
+ "epoch": 24.656768558951963,
+ "grad_norm": 0.02445918507874012,
+ "learning_rate": 0.0006,
+ "loss": 3.1525535583496094,
+ "step": 1775
+ },
+ {
+ "epoch": 24.670742358078602,
+ "grad_norm": 0.024329137057065964,
+ "learning_rate": 0.0006,
+ "loss": 3.1237733364105225,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68471615720524,
+ "grad_norm": 0.026551753282546997,
+ "learning_rate": 0.0006,
+ "loss": 3.168206214904785,
+ "step": 1777
+ },
+ {
+ "epoch": 24.69868995633188,
+ "grad_norm": 0.02526521123945713,
+ "learning_rate": 0.0006,
+ "loss": 3.145684242248535,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712663755458514,
+ "grad_norm": 0.022739525884389877,
+ "learning_rate": 0.0006,
+ "loss": 3.109616756439209,
+ "step": 1779
+ },
+ {
+ "epoch": 24.726637554585153,
+ "grad_norm": 0.02353929914534092,
+ "learning_rate": 0.0006,
+ "loss": 3.1133408546447754,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74061135371179,
+ "grad_norm": 0.024195613339543343,
+ "learning_rate": 0.0006,
+ "loss": 3.1797852516174316,
+ "step": 1781
+ },
+ {
+ "epoch": 24.754585152838427,
+ "grad_norm": 0.023433320224285126,
+ "learning_rate": 0.0006,
+ "loss": 3.1500236988067627,
+ "step": 1782
+ },
+ {
+ "epoch": 24.768558951965066,
+ "grad_norm": 0.023815682157874107,
+ "learning_rate": 0.0006,
+ "loss": 3.1468753814697266,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782532751091704,
+ "grad_norm": 0.023465458303689957,
+ "learning_rate": 0.0006,
+ "loss": 3.1285457611083984,
+ "step": 1784
+ },
+ {
+ "epoch": 24.79650655021834,
+ "grad_norm": 0.023044317960739136,
+ "learning_rate": 0.0006,
+ "loss": 3.152935028076172,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810480349344978,
+ "grad_norm": 0.02268923819065094,
+ "learning_rate": 0.0006,
+ "loss": 3.149824619293213,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824454148471617,
+ "grad_norm": 0.02200215309858322,
+ "learning_rate": 0.0006,
+ "loss": 3.136305570602417,
+ "step": 1787
+ },
+ {
+ "epoch": 24.83842794759825,
+ "grad_norm": 0.021768024191260338,
+ "learning_rate": 0.0006,
+ "loss": 3.1580021381378174,
+ "step": 1788
+ },
+ {
+ "epoch": 24.85240174672489,
+ "grad_norm": 0.02197638899087906,
+ "learning_rate": 0.0006,
+ "loss": 3.167720079421997,
+ "step": 1789
+ },
+ {
+ "epoch": 24.86637554585153,
+ "grad_norm": 0.02179424650967121,
+ "learning_rate": 0.0006,
+ "loss": 3.1844677925109863,
+ "step": 1790
+ },
+ {
+ "epoch": 24.880349344978168,
+ "grad_norm": 0.02222774736583233,
+ "learning_rate": 0.0006,
+ "loss": 3.1534781455993652,
+ "step": 1791
+ },
+ {
+ "epoch": 24.894323144104803,
+ "grad_norm": 0.0211419016122818,
+ "learning_rate": 0.0006,
+ "loss": 3.1624507904052734,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90829694323144,
+ "grad_norm": 0.021679047495126724,
+ "learning_rate": 0.0006,
+ "loss": 3.1692471504211426,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92227074235808,
+ "grad_norm": 0.02098955772817135,
+ "learning_rate": 0.0006,
+ "loss": 3.1197893619537354,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936244541484715,
+ "grad_norm": 0.02041255682706833,
+ "learning_rate": 0.0006,
+ "loss": 3.1489920616149902,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950218340611354,
+ "grad_norm": 0.021229229867458344,
+ "learning_rate": 0.0006,
+ "loss": 3.181349277496338,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964192139737992,
+ "grad_norm": 0.021164825186133385,
+ "learning_rate": 0.0006,
+ "loss": 3.174917221069336,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978165938864628,
+ "grad_norm": 0.021351559087634087,
+ "learning_rate": 0.0006,
+ "loss": 3.1783559322357178,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992139737991266,
+ "grad_norm": 0.020969994366168976,
+ "learning_rate": 0.0006,
+ "loss": 3.193674087524414,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.02423921413719654,
+ "learning_rate": 0.0006,
+ "loss": 3.200575590133667,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 4.083610534667969,
+ "eval_runtime": 49.9782,
+ "eval_samples_per_second": 48.861,
+ "eval_steps_per_second": 1.541,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397379912664,
+ "grad_norm": 0.02671094425022602,
+ "learning_rate": 0.0006,
+ "loss": 2.9603734016418457,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027947598253274,
+ "grad_norm": 0.04277094826102257,
+ "learning_rate": 0.0006,
+ "loss": 2.97347354888916,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041921397379912,
+ "grad_norm": 0.05197378247976303,
+ "learning_rate": 0.0006,
+ "loss": 2.999575614929199,
+ "step": 1803
+ },
+ {
+ "epoch": 25.05589519650655,
+ "grad_norm": 0.05377629026770592,
+ "learning_rate": 0.0006,
+ "loss": 2.9785799980163574,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069868995633186,
+ "grad_norm": 0.056606143712997437,
+ "learning_rate": 0.0006,
+ "loss": 3.0218558311462402,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083842794759825,
+ "grad_norm": 0.054323576390743256,
+ "learning_rate": 0.0006,
+ "loss": 3.009265899658203,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097816593886463,
+ "grad_norm": 0.05065226927399635,
+ "learning_rate": 0.0006,
+ "loss": 3.033031702041626,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111790393013102,
+ "grad_norm": 0.05075160786509514,
+ "learning_rate": 0.0006,
+ "loss": 3.0429916381835938,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125764192139737,
+ "grad_norm": 0.05267050117254257,
+ "learning_rate": 0.0006,
+ "loss": 3.0145187377929688,
+ "step": 1809
+ },
+ {
+ "epoch": 25.139737991266376,
+ "grad_norm": 0.04282816872000694,
+ "learning_rate": 0.0006,
+ "loss": 3.019191026687622,
+ "step": 1810
+ },
+ {
+ "epoch": 25.153711790393015,
+ "grad_norm": 0.042729251086711884,
+ "learning_rate": 0.0006,
+ "loss": 3.024594783782959,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16768558951965,
+ "grad_norm": 0.04174517095088959,
+ "learning_rate": 0.0006,
+ "loss": 3.021573066711426,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18165938864629,
+ "grad_norm": 0.039621077477931976,
+ "learning_rate": 0.0006,
+ "loss": 3.033224105834961,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195633187772927,
+ "grad_norm": 0.037193190306425095,
+ "learning_rate": 0.0006,
+ "loss": 3.022829532623291,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209606986899562,
+ "grad_norm": 0.03468523919582367,
+ "learning_rate": 0.0006,
+ "loss": 3.016298294067383,
+ "step": 1815
+ },
+ {
+ "epoch": 25.2235807860262,
+ "grad_norm": 0.03721904382109642,
+ "learning_rate": 0.0006,
+ "loss": 2.991225242614746,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23755458515284,
+ "grad_norm": 0.03951790928840637,
+ "learning_rate": 0.0006,
+ "loss": 3.0309948921203613,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251528384279474,
+ "grad_norm": 0.04039984196424484,
+ "learning_rate": 0.0006,
+ "loss": 3.032059669494629,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265502183406113,
+ "grad_norm": 0.041549600660800934,
+ "learning_rate": 0.0006,
+ "loss": 3.041177749633789,
+ "step": 1819
+ },
+ {
+ "epoch": 25.27947598253275,
+ "grad_norm": 0.041605785489082336,
+ "learning_rate": 0.0006,
+ "loss": 3.052733898162842,
+ "step": 1820
+ },
+ {
+ "epoch": 25.29344978165939,
+ "grad_norm": 0.03979694843292236,
+ "learning_rate": 0.0006,
+ "loss": 3.030470371246338,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307423580786025,
+ "grad_norm": 0.038538020104169846,
+ "learning_rate": 0.0006,
+ "loss": 3.0051193237304688,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321397379912664,
+ "grad_norm": 0.035272035747766495,
+ "learning_rate": 0.0006,
+ "loss": 3.0283000469207764,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335371179039303,
+ "grad_norm": 0.03455478698015213,
+ "learning_rate": 0.0006,
+ "loss": 3.070821523666382,
+ "step": 1824
+ },
+ {
+ "epoch": 25.349344978165938,
+ "grad_norm": 0.035375602543354034,
+ "learning_rate": 0.0006,
+ "loss": 3.0163800716400146,
+ "step": 1825
+ },
+ {
+ "epoch": 25.363318777292577,
+ "grad_norm": 0.03162388876080513,
+ "learning_rate": 0.0006,
+ "loss": 3.037997245788574,
+ "step": 1826
+ },
+ {
+ "epoch": 25.377292576419215,
+ "grad_norm": 0.031044775620102882,
+ "learning_rate": 0.0006,
+ "loss": 3.0624966621398926,
+ "step": 1827
+ },
+ {
+ "epoch": 25.39126637554585,
+ "grad_norm": 0.03079981915652752,
+ "learning_rate": 0.0006,
+ "loss": 3.0983829498291016,
+ "step": 1828
+ },
+ {
+ "epoch": 25.40524017467249,
+ "grad_norm": 0.029769832268357277,
+ "learning_rate": 0.0006,
+ "loss": 3.0633068084716797,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419213973799128,
+ "grad_norm": 0.029182543978095055,
+ "learning_rate": 0.0006,
+ "loss": 3.038501501083374,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433187772925763,
+ "grad_norm": 0.02948548085987568,
+ "learning_rate": 0.0006,
+ "loss": 3.074523448944092,
+ "step": 1831
+ },
+ {
+ "epoch": 25.4471615720524,
+ "grad_norm": 0.02877483330667019,
+ "learning_rate": 0.0006,
+ "loss": 3.067094326019287,
+ "step": 1832
+ },
+ {
+ "epoch": 25.46113537117904,
+ "grad_norm": 0.029504863545298576,
+ "learning_rate": 0.0006,
+ "loss": 3.071795701980591,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475109170305675,
+ "grad_norm": 0.030246607959270477,
+ "learning_rate": 0.0006,
+ "loss": 3.0463738441467285,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489082969432314,
+ "grad_norm": 0.03195366635918617,
+ "learning_rate": 0.0006,
+ "loss": 3.1079678535461426,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503056768558952,
+ "grad_norm": 0.0315500870347023,
+ "learning_rate": 0.0006,
+ "loss": 3.074368953704834,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51703056768559,
+ "grad_norm": 0.03132857382297516,
+ "learning_rate": 0.0006,
+ "loss": 3.070516347885132,
+ "step": 1837
+ },
+ {
+ "epoch": 25.531004366812226,
+ "grad_norm": 0.031229723244905472,
+ "learning_rate": 0.0006,
+ "loss": 3.129385471343994,
+ "step": 1838
+ },
+ {
+ "epoch": 25.544978165938865,
+ "grad_norm": 0.027454618364572525,
+ "learning_rate": 0.0006,
+ "loss": 3.0627448558807373,
+ "step": 1839
+ },
+ {
+ "epoch": 25.558951965065503,
+ "grad_norm": 0.028137732297182083,
+ "learning_rate": 0.0006,
+ "loss": 3.109487533569336,
+ "step": 1840
+ },
+ {
+ "epoch": 25.57292576419214,
+ "grad_norm": 0.029513249173760414,
+ "learning_rate": 0.0006,
+ "loss": 3.0803885459899902,
+ "step": 1841
+ },
+ {
+ "epoch": 25.586899563318777,
+ "grad_norm": 0.02965722233057022,
+ "learning_rate": 0.0006,
+ "loss": 3.105023145675659,
+ "step": 1842
+ },
+ {
+ "epoch": 25.600873362445416,
+ "grad_norm": 0.027627428993582726,
+ "learning_rate": 0.0006,
+ "loss": 3.1149749755859375,
+ "step": 1843
+ },
+ {
+ "epoch": 25.61484716157205,
+ "grad_norm": 0.026547718793153763,
+ "learning_rate": 0.0006,
+ "loss": 3.061279058456421,
+ "step": 1844
+ },
+ {
+ "epoch": 25.62882096069869,
+ "grad_norm": 0.025937994942069054,
+ "learning_rate": 0.0006,
+ "loss": 3.106267213821411,
+ "step": 1845
+ },
+ {
+ "epoch": 25.64279475982533,
+ "grad_norm": 0.024786189198493958,
+ "learning_rate": 0.0006,
+ "loss": 3.1162233352661133,
+ "step": 1846
+ },
+ {
+ "epoch": 25.656768558951963,
+ "grad_norm": 0.024458372965455055,
+ "learning_rate": 0.0006,
+ "loss": 3.0887248516082764,
+ "step": 1847
+ },
+ {
+ "epoch": 25.670742358078602,
+ "grad_norm": 0.02396211586892605,
+ "learning_rate": 0.0006,
+ "loss": 3.0862269401550293,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68471615720524,
+ "grad_norm": 0.025120655074715614,
+ "learning_rate": 0.0006,
+ "loss": 3.1100106239318848,
+ "step": 1849
+ },
+ {
+ "epoch": 25.69868995633188,
+ "grad_norm": 0.023946302011609077,
+ "learning_rate": 0.0006,
+ "loss": 3.1287240982055664,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712663755458514,
+ "grad_norm": 0.024584904313087463,
+ "learning_rate": 0.0006,
+ "loss": 3.131906270980835,
+ "step": 1851
+ },
+ {
+ "epoch": 25.726637554585153,
+ "grad_norm": 0.024075916036963463,
+ "learning_rate": 0.0006,
+ "loss": 3.1310033798217773,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74061135371179,
+ "grad_norm": 0.024674106389284134,
+ "learning_rate": 0.0006,
+ "loss": 3.098094940185547,
+ "step": 1853
+ },
+ {
+ "epoch": 25.754585152838427,
+ "grad_norm": 0.02386128157377243,
+ "learning_rate": 0.0006,
+ "loss": 3.13789963722229,
+ "step": 1854
+ },
+ {
+ "epoch": 25.768558951965066,
+ "grad_norm": 0.023464003577828407,
+ "learning_rate": 0.0006,
+ "loss": 3.130636215209961,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782532751091704,
+ "grad_norm": 0.022808177396655083,
+ "learning_rate": 0.0006,
+ "loss": 3.0649960041046143,
+ "step": 1856
+ },
+ {
+ "epoch": 25.79650655021834,
+ "grad_norm": 0.02347465232014656,
+ "learning_rate": 0.0006,
+ "loss": 3.1142053604125977,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810480349344978,
+ "grad_norm": 0.022884836420416832,
+ "learning_rate": 0.0006,
+ "loss": 3.135101795196533,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824454148471617,
+ "grad_norm": 0.022401098161935806,
+ "learning_rate": 0.0006,
+ "loss": 3.1598546504974365,
+ "step": 1859
+ },
+ {
+ "epoch": 25.83842794759825,
+ "grad_norm": 0.024321401491761208,
+ "learning_rate": 0.0006,
+ "loss": 3.1175436973571777,
+ "step": 1860
+ },
+ {
+ "epoch": 25.85240174672489,
+ "grad_norm": 0.0246965941041708,
+ "learning_rate": 0.0006,
+ "loss": 3.103957176208496,
+ "step": 1861
+ },
+ {
+ "epoch": 25.86637554585153,
+ "grad_norm": 0.02330162189900875,
+ "learning_rate": 0.0006,
+ "loss": 3.1311264038085938,
+ "step": 1862
+ },
+ {
+ "epoch": 25.880349344978168,
+ "grad_norm": 0.02354249730706215,
+ "learning_rate": 0.0006,
+ "loss": 3.14554500579834,
+ "step": 1863
+ },
+ {
+ "epoch": 25.894323144104803,
+ "grad_norm": 0.023865245282649994,
+ "learning_rate": 0.0006,
+ "loss": 3.124208927154541,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90829694323144,
+ "grad_norm": 0.023171618580818176,
+ "learning_rate": 0.0006,
+ "loss": 3.1324727535247803,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92227074235808,
+ "grad_norm": 0.023055147379636765,
+ "learning_rate": 0.0006,
+ "loss": 3.141408920288086,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936244541484715,
+ "grad_norm": 0.02303205616772175,
+ "learning_rate": 0.0006,
+ "loss": 3.135986804962158,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950218340611354,
+ "grad_norm": 0.02289523370563984,
+ "learning_rate": 0.0006,
+ "loss": 3.1296586990356445,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964192139737992,
+ "grad_norm": 0.024415697902441025,
+ "learning_rate": 0.0006,
+ "loss": 3.119215726852417,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978165938864628,
+ "grad_norm": 0.024061039090156555,
+ "learning_rate": 0.0006,
+ "loss": 3.096515417098999,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992139737991266,
+ "grad_norm": 0.021828658878803253,
+ "learning_rate": 0.0006,
+ "loss": 3.1706314086914062,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.025072937831282616,
+ "learning_rate": 0.0006,
+ "loss": 3.0891950130462646,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 4.104246616363525,
+ "eval_runtime": 50.0171,
+ "eval_samples_per_second": 48.823,
+ "eval_steps_per_second": 1.539,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397379912664,
+ "grad_norm": 0.031121261417865753,
+ "learning_rate": 0.0006,
+ "loss": 2.9661660194396973,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027947598253274,
+ "grad_norm": 0.04691348224878311,
+ "learning_rate": 0.0006,
+ "loss": 2.932932138442993,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041921397379912,
+ "grad_norm": 0.054467298090457916,
+ "learning_rate": 0.0006,
+ "loss": 2.9723329544067383,
+ "step": 1875
+ },
+ {
+ "epoch": 26.05589519650655,
+ "grad_norm": 0.055070292204618454,
+ "learning_rate": 0.0006,
+ "loss": 2.941164016723633,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069868995633186,
+ "grad_norm": 0.06226547062397003,
+ "learning_rate": 0.0006,
+ "loss": 2.9275927543640137,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083842794759825,
+ "grad_norm": 0.08149895071983337,
+ "learning_rate": 0.0006,
+ "loss": 2.9974710941314697,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097816593886463,
+ "grad_norm": 0.07903563231229782,
+ "learning_rate": 0.0006,
+ "loss": 3.028019666671753,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111790393013102,
+ "grad_norm": 0.07048483937978745,
+ "learning_rate": 0.0006,
+ "loss": 3.0385470390319824,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125764192139737,
+ "grad_norm": 0.07622414827346802,
+ "learning_rate": 0.0006,
+ "loss": 3.006513833999634,
+ "step": 1881
+ },
+ {
+ "epoch": 26.139737991266376,
+ "grad_norm": 0.06729200482368469,
+ "learning_rate": 0.0006,
+ "loss": 3.042820453643799,
+ "step": 1882
+ },
+ {
+ "epoch": 26.153711790393015,
+ "grad_norm": 0.0560869500041008,
+ "learning_rate": 0.0006,
+ "loss": 3.0113673210144043,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16768558951965,
+ "grad_norm": 0.05453485623002052,
+ "learning_rate": 0.0006,
+ "loss": 3.005843162536621,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18165938864629,
+ "grad_norm": 0.05410083383321762,
+ "learning_rate": 0.0006,
+ "loss": 3.0122809410095215,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195633187772927,
+ "grad_norm": 0.05099239945411682,
+ "learning_rate": 0.0006,
+ "loss": 3.003960132598877,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209606986899562,
+ "grad_norm": 0.054503440856933594,
+ "learning_rate": 0.0006,
+ "loss": 3.0250349044799805,
+ "step": 1887
+ },
+ {
+ "epoch": 26.2235807860262,
+ "grad_norm": 0.06119848042726517,
+ "learning_rate": 0.0006,
+ "loss": 3.013659954071045,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23755458515284,
+ "grad_norm": 0.05560006573796272,
+ "learning_rate": 0.0006,
+ "loss": 3.045351028442383,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251528384279474,
+ "grad_norm": 0.04513552039861679,
+ "learning_rate": 0.0006,
+ "loss": 3.0176339149475098,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265502183406113,
+ "grad_norm": 0.04880162701010704,
+ "learning_rate": 0.0006,
+ "loss": 2.997415065765381,
+ "step": 1891
+ },
+ {
+ "epoch": 26.27947598253275,
+ "grad_norm": 0.04402848333120346,
+ "learning_rate": 0.0006,
+ "loss": 3.035266876220703,
+ "step": 1892
+ },
+ {
+ "epoch": 26.29344978165939,
+ "grad_norm": 0.040773630142211914,
+ "learning_rate": 0.0006,
+ "loss": 3.0323173999786377,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307423580786025,
+ "grad_norm": 0.03853452205657959,
+ "learning_rate": 0.0006,
+ "loss": 3.0291802883148193,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321397379912664,
+ "grad_norm": 0.037200599908828735,
+ "learning_rate": 0.0006,
+ "loss": 3.0359907150268555,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335371179039303,
+ "grad_norm": 0.035764336585998535,
+ "learning_rate": 0.0006,
+ "loss": 3.017059326171875,
+ "step": 1896
+ },
+ {
+ "epoch": 26.349344978165938,
+ "grad_norm": 0.0344136580824852,
+ "learning_rate": 0.0006,
+ "loss": 3.0438151359558105,
+ "step": 1897
+ },
+ {
+ "epoch": 26.363318777292577,
+ "grad_norm": 0.03413735702633858,
+ "learning_rate": 0.0006,
+ "loss": 3.0627403259277344,
+ "step": 1898
+ },
+ {
+ "epoch": 26.377292576419215,
+ "grad_norm": 0.03260914236307144,
+ "learning_rate": 0.0006,
+ "loss": 2.9989752769470215,
+ "step": 1899
+ },
+ {
+ "epoch": 26.39126637554585,
+ "grad_norm": 0.03044072724878788,
+ "learning_rate": 0.0006,
+ "loss": 3.0424299240112305,
+ "step": 1900
+ },
+ {
+ "epoch": 26.40524017467249,
+ "grad_norm": 0.030227871611714363,
+ "learning_rate": 0.0006,
+ "loss": 3.0220985412597656,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419213973799128,
+ "grad_norm": 0.031268492341041565,
+ "learning_rate": 0.0006,
+ "loss": 3.056239128112793,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433187772925763,
+ "grad_norm": 0.028938250616192818,
+ "learning_rate": 0.0006,
+ "loss": 3.017686367034912,
+ "step": 1903
+ },
+ {
+ "epoch": 26.4471615720524,
+ "grad_norm": 0.02674158848822117,
+ "learning_rate": 0.0006,
+ "loss": 3.066281318664551,
+ "step": 1904
+ },
+ {
+ "epoch": 26.46113537117904,
+ "grad_norm": 0.028296295553445816,
+ "learning_rate": 0.0006,
+ "loss": 3.02766752243042,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475109170305675,
+ "grad_norm": 0.03080872818827629,
+ "learning_rate": 0.0006,
+ "loss": 3.059089422225952,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489082969432314,
+ "grad_norm": 0.028370540589094162,
+ "learning_rate": 0.0006,
+ "loss": 3.0661725997924805,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503056768558952,
+ "grad_norm": 0.025940680876374245,
+ "learning_rate": 0.0006,
+ "loss": 3.050424098968506,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51703056768559,
+ "grad_norm": 0.025786688551306725,
+ "learning_rate": 0.0006,
+ "loss": 3.035883665084839,
+ "step": 1909
+ },
+ {
+ "epoch": 26.531004366812226,
+ "grad_norm": 0.025683339685201645,
+ "learning_rate": 0.0006,
+ "loss": 3.057992935180664,
+ "step": 1910
+ },
+ {
+ "epoch": 26.544978165938865,
+ "grad_norm": 0.028027107939124107,
+ "learning_rate": 0.0006,
+ "loss": 3.047372579574585,
+ "step": 1911
+ },
+ {
+ "epoch": 26.558951965065503,
+ "grad_norm": 0.02833317033946514,
+ "learning_rate": 0.0006,
+ "loss": 3.056609630584717,
+ "step": 1912
+ },
+ {
+ "epoch": 26.57292576419214,
+ "grad_norm": 0.028734203428030014,
+ "learning_rate": 0.0006,
+ "loss": 3.08479642868042,
+ "step": 1913
+ },
+ {
+ "epoch": 26.586899563318777,
+ "grad_norm": 0.027691153809428215,
+ "learning_rate": 0.0006,
+ "loss": 3.0392603874206543,
+ "step": 1914
+ },
+ {
+ "epoch": 26.600873362445416,
+ "grad_norm": 0.0263577438890934,
+ "learning_rate": 0.0006,
+ "loss": 3.0504343509674072,
+ "step": 1915
+ },
+ {
+ "epoch": 26.61484716157205,
+ "grad_norm": 0.026692545041441917,
+ "learning_rate": 0.0006,
+ "loss": 3.100642204284668,
+ "step": 1916
+ },
+ {
+ "epoch": 26.62882096069869,
+ "grad_norm": 0.025303112342953682,
+ "learning_rate": 0.0006,
+ "loss": 3.05635929107666,
+ "step": 1917
+ },
+ {
+ "epoch": 26.64279475982533,
+ "grad_norm": 0.024708664044737816,
+ "learning_rate": 0.0006,
+ "loss": 3.059967517852783,
+ "step": 1918
+ },
+ {
+ "epoch": 26.656768558951963,
+ "grad_norm": 0.02639661729335785,
+ "learning_rate": 0.0006,
+ "loss": 3.0737743377685547,
+ "step": 1919
+ },
+ {
+ "epoch": 26.670742358078602,
+ "grad_norm": 0.025596698746085167,
+ "learning_rate": 0.0006,
+ "loss": 3.067931890487671,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68471615720524,
+ "grad_norm": 0.02229447290301323,
+ "learning_rate": 0.0006,
+ "loss": 3.0820088386535645,
+ "step": 1921
+ },
+ {
+ "epoch": 26.69868995633188,
+ "grad_norm": 0.02375129424035549,
+ "learning_rate": 0.0006,
+ "loss": 3.07956862449646,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712663755458514,
+ "grad_norm": 0.02399134822189808,
+ "learning_rate": 0.0006,
+ "loss": 3.061767101287842,
+ "step": 1923
+ },
+ {
+ "epoch": 26.726637554585153,
+ "grad_norm": 0.024671411141753197,
+ "learning_rate": 0.0006,
+ "loss": 3.1015849113464355,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74061135371179,
+ "grad_norm": 0.024321842938661575,
+ "learning_rate": 0.0006,
+ "loss": 3.0476126670837402,
+ "step": 1925
+ },
+ {
+ "epoch": 26.754585152838427,
+ "grad_norm": 0.023859843611717224,
+ "learning_rate": 0.0006,
+ "loss": 3.0923385620117188,
+ "step": 1926
+ },
+ {
+ "epoch": 26.768558951965066,
+ "grad_norm": 0.024472227320075035,
+ "learning_rate": 0.0006,
+ "loss": 3.0999197959899902,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782532751091704,
+ "grad_norm": 0.02513224445283413,
+ "learning_rate": 0.0006,
+ "loss": 3.067659854888916,
+ "step": 1928
+ },
+ {
+ "epoch": 26.79650655021834,
+ "grad_norm": 0.023755615577101707,
+ "learning_rate": 0.0006,
+ "loss": 3.070265293121338,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810480349344978,
+ "grad_norm": 0.023443203419446945,
+ "learning_rate": 0.0006,
+ "loss": 3.0928702354431152,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824454148471617,
+ "grad_norm": 0.024389786645770073,
+ "learning_rate": 0.0006,
+ "loss": 3.039468288421631,
+ "step": 1931
+ },
+ {
+ "epoch": 26.83842794759825,
+ "grad_norm": 0.021939845755696297,
+ "learning_rate": 0.0006,
+ "loss": 3.0597710609436035,
+ "step": 1932
+ },
+ {
+ "epoch": 26.85240174672489,
+ "grad_norm": 0.022113796323537827,
+ "learning_rate": 0.0006,
+ "loss": 3.078843593597412,
+ "step": 1933
+ },
+ {
+ "epoch": 26.86637554585153,
+ "grad_norm": 0.023516526445746422,
+ "learning_rate": 0.0006,
+ "loss": 3.136680841445923,
+ "step": 1934
+ },
+ {
+ "epoch": 26.880349344978168,
+ "grad_norm": 0.023710910230875015,
+ "learning_rate": 0.0006,
+ "loss": 3.103081703186035,
+ "step": 1935
+ },
+ {
+ "epoch": 26.894323144104803,
+ "grad_norm": 0.023430297151207924,
+ "learning_rate": 0.0006,
+ "loss": 3.098705291748047,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90829694323144,
+ "grad_norm": 0.023761266842484474,
+ "learning_rate": 0.0006,
+ "loss": 3.1277971267700195,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92227074235808,
+ "grad_norm": 0.023715797811746597,
+ "learning_rate": 0.0006,
+ "loss": 3.0877621173858643,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936244541484715,
+ "grad_norm": 0.023883594200015068,
+ "learning_rate": 0.0006,
+ "loss": 3.087163209915161,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950218340611354,
+ "grad_norm": 0.022293508052825928,
+ "learning_rate": 0.0006,
+ "loss": 3.086988925933838,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964192139737992,
+ "grad_norm": 0.022041622549295425,
+ "learning_rate": 0.0006,
+ "loss": 3.1225247383117676,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978165938864628,
+ "grad_norm": 0.021637167781591415,
+ "learning_rate": 0.0006,
+ "loss": 3.0737392902374268,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992139737991266,
+ "grad_norm": 0.02192411944270134,
+ "learning_rate": 0.0006,
+ "loss": 3.104888916015625,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.025614608079195023,
+ "learning_rate": 0.0006,
+ "loss": 3.12424898147583,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 4.125223636627197,
+ "eval_runtime": 50.2001,
+ "eval_samples_per_second": 48.645,
+ "eval_steps_per_second": 1.534,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397379912664,
+ "grad_norm": 0.028453795239329338,
+ "learning_rate": 0.0006,
+ "loss": 2.879258632659912,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027947598253274,
+ "grad_norm": 0.04377718269824982,
+ "learning_rate": 0.0006,
+ "loss": 2.9013819694519043,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041921397379912,
+ "grad_norm": 0.049764763563871384,
+ "learning_rate": 0.0006,
+ "loss": 2.9127326011657715,
+ "step": 1947
+ },
+ {
+ "epoch": 27.05589519650655,
+ "grad_norm": 0.05033150315284729,
+ "learning_rate": 0.0006,
+ "loss": 2.8803203105926514,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069868995633186,
+ "grad_norm": 0.05057684704661369,
+ "learning_rate": 0.0006,
+ "loss": 2.9041876792907715,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083842794759825,
+ "grad_norm": 0.05503581836819649,
+ "learning_rate": 0.0006,
+ "loss": 2.9236111640930176,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097816593886463,
+ "grad_norm": 0.0504646934568882,
+ "learning_rate": 0.0006,
+ "loss": 2.898369789123535,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111790393013102,
+ "grad_norm": 0.05223672091960907,
+ "learning_rate": 0.0006,
+ "loss": 2.922698974609375,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125764192139737,
+ "grad_norm": 0.061617255210876465,
+ "learning_rate": 0.0006,
+ "loss": 2.933682680130005,
+ "step": 1953
+ },
+ {
+ "epoch": 27.139737991266376,
+ "grad_norm": 0.06874233484268188,
+ "learning_rate": 0.0006,
+ "loss": 2.9357151985168457,
+ "step": 1954
+ },
+ {
+ "epoch": 27.153711790393015,
+ "grad_norm": 0.06190113350749016,
+ "learning_rate": 0.0006,
+ "loss": 2.954944610595703,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16768558951965,
+ "grad_norm": 0.05684139207005501,
+ "learning_rate": 0.0006,
+ "loss": 2.9126837253570557,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18165938864629,
+ "grad_norm": 0.06056728586554527,
+ "learning_rate": 0.0006,
+ "loss": 2.9814395904541016,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195633187772927,
+ "grad_norm": 0.056225795298814774,
+ "learning_rate": 0.0006,
+ "loss": 2.991654872894287,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209606986899562,
+ "grad_norm": 0.045878518372774124,
+ "learning_rate": 0.0006,
+ "loss": 3.001042604446411,
+ "step": 1959
+ },
+ {
+ "epoch": 27.2235807860262,
+ "grad_norm": 0.0471920520067215,
+ "learning_rate": 0.0006,
+ "loss": 2.9564008712768555,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23755458515284,
+ "grad_norm": 0.053059689700603485,
+ "learning_rate": 0.0006,
+ "loss": 2.996217727661133,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251528384279474,
+ "grad_norm": 0.0541369765996933,
+ "learning_rate": 0.0006,
+ "loss": 2.9720678329467773,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265502183406113,
+ "grad_norm": 0.047301989048719406,
+ "learning_rate": 0.0006,
+ "loss": 2.9787089824676514,
+ "step": 1963
+ },
+ {
+ "epoch": 27.27947598253275,
+ "grad_norm": 0.046062350273132324,
+ "learning_rate": 0.0006,
+ "loss": 2.9771294593811035,
+ "step": 1964
+ },
+ {
+ "epoch": 27.29344978165939,
+ "grad_norm": 0.05031602457165718,
+ "learning_rate": 0.0006,
+ "loss": 2.9904980659484863,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307423580786025,
+ "grad_norm": 0.049279652535915375,
+ "learning_rate": 0.0006,
+ "loss": 2.994781494140625,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321397379912664,
+ "grad_norm": 0.05007164552807808,
+ "learning_rate": 0.0006,
+ "loss": 3.0293216705322266,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335371179039303,
+ "grad_norm": 0.053599122911691666,
+ "learning_rate": 0.0006,
+ "loss": 2.966653347015381,
+ "step": 1968
+ },
+ {
+ "epoch": 27.349344978165938,
+ "grad_norm": 0.053869765251874924,
+ "learning_rate": 0.0006,
+ "loss": 2.986807107925415,
+ "step": 1969
+ },
+ {
+ "epoch": 27.363318777292577,
+ "grad_norm": 0.049204543232917786,
+ "learning_rate": 0.0006,
+ "loss": 3.035799264907837,
+ "step": 1970
+ },
+ {
+ "epoch": 27.377292576419215,
+ "grad_norm": 0.041741687804460526,
+ "learning_rate": 0.0006,
+ "loss": 3.01177978515625,
+ "step": 1971
+ },
+ {
+ "epoch": 27.39126637554585,
+ "grad_norm": 0.04108894243836403,
+ "learning_rate": 0.0006,
+ "loss": 3.0135087966918945,
+ "step": 1972
+ },
+ {
+ "epoch": 27.40524017467249,
+ "grad_norm": 0.03928737714886665,
+ "learning_rate": 0.0006,
+ "loss": 2.9952547550201416,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419213973799128,
+ "grad_norm": 0.038500797003507614,
+ "learning_rate": 0.0006,
+ "loss": 3.047365188598633,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433187772925763,
+ "grad_norm": 0.03740246221423149,
+ "learning_rate": 0.0006,
+ "loss": 3.033809185028076,
+ "step": 1975
+ },
+ {
+ "epoch": 27.4471615720524,
+ "grad_norm": 0.03386867046356201,
+ "learning_rate": 0.0006,
+ "loss": 3.025137424468994,
+ "step": 1976
+ },
+ {
+ "epoch": 27.46113537117904,
+ "grad_norm": 0.03259620815515518,
+ "learning_rate": 0.0006,
+ "loss": 3.031647205352783,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475109170305675,
+ "grad_norm": 0.03135821223258972,
+ "learning_rate": 0.0006,
+ "loss": 3.038449287414551,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489082969432314,
+ "grad_norm": 0.02891516126692295,
+ "learning_rate": 0.0006,
+ "loss": 3.0067849159240723,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503056768558952,
+ "grad_norm": 0.029571816325187683,
+ "learning_rate": 0.0006,
+ "loss": 3.0450942516326904,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51703056768559,
+ "grad_norm": 0.02915847674012184,
+ "learning_rate": 0.0006,
+ "loss": 3.0238382816314697,
+ "step": 1981
+ },
+ {
+ "epoch": 27.531004366812226,
+ "grad_norm": 0.02730637416243553,
+ "learning_rate": 0.0006,
+ "loss": 2.9970340728759766,
+ "step": 1982
+ },
+ {
+ "epoch": 27.544978165938865,
+ "grad_norm": 0.026363128796219826,
+ "learning_rate": 0.0006,
+ "loss": 3.042269229888916,
+ "step": 1983
+ },
+ {
+ "epoch": 27.558951965065503,
+ "grad_norm": 0.02613256685435772,
+ "learning_rate": 0.0006,
+ "loss": 2.9850640296936035,
+ "step": 1984
+ },
+ {
+ "epoch": 27.57292576419214,
+ "grad_norm": 0.025504328310489655,
+ "learning_rate": 0.0006,
+ "loss": 3.02850341796875,
+ "step": 1985
+ },
+ {
+ "epoch": 27.586899563318777,
+ "grad_norm": 0.025076977908611298,
+ "learning_rate": 0.0006,
+ "loss": 3.022831678390503,
+ "step": 1986
+ },
+ {
+ "epoch": 27.600873362445416,
+ "grad_norm": 0.026498636230826378,
+ "learning_rate": 0.0006,
+ "loss": 3.036193370819092,
+ "step": 1987
+ },
+ {
+ "epoch": 27.61484716157205,
+ "grad_norm": 0.02634165622293949,
+ "learning_rate": 0.0006,
+ "loss": 2.988772392272949,
+ "step": 1988
+ },
+ {
+ "epoch": 27.62882096069869,
+ "grad_norm": 0.02386527881026268,
+ "learning_rate": 0.0006,
+ "loss": 3.0652225017547607,
+ "step": 1989
+ },
+ {
+ "epoch": 27.64279475982533,
+ "grad_norm": 0.025630373507738113,
+ "learning_rate": 0.0006,
+ "loss": 3.025211811065674,
+ "step": 1990
+ },
+ {
+ "epoch": 27.656768558951963,
+ "grad_norm": 0.02564374916255474,
+ "learning_rate": 0.0006,
+ "loss": 3.038477659225464,
+ "step": 1991
+ },
+ {
+ "epoch": 27.670742358078602,
+ "grad_norm": 0.024687733501195908,
+ "learning_rate": 0.0006,
+ "loss": 3.0274953842163086,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68471615720524,
+ "grad_norm": 0.0237992312759161,
+ "learning_rate": 0.0006,
+ "loss": 3.020660638809204,
+ "step": 1993
+ },
+ {
+ "epoch": 27.69868995633188,
+ "grad_norm": 0.024008993059396744,
+ "learning_rate": 0.0006,
+ "loss": 3.0048153400421143,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712663755458514,
+ "grad_norm": 0.024011511355638504,
+ "learning_rate": 0.0006,
+ "loss": 3.028651714324951,
+ "step": 1995
+ },
+ {
+ "epoch": 27.726637554585153,
+ "grad_norm": 0.023767957463860512,
+ "learning_rate": 0.0006,
+ "loss": 3.024357795715332,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74061135371179,
+ "grad_norm": 0.02491922304034233,
+ "learning_rate": 0.0006,
+ "loss": 3.0481948852539062,
+ "step": 1997
+ },
+ {
+ "epoch": 27.754585152838427,
+ "grad_norm": 0.023492073640227318,
+ "learning_rate": 0.0006,
+ "loss": 3.0265281200408936,
+ "step": 1998
+ },
+ {
+ "epoch": 27.768558951965066,
+ "grad_norm": 0.022904539480805397,
+ "learning_rate": 0.0006,
+ "loss": 3.035724401473999,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782532751091704,
+ "grad_norm": 0.02523794211447239,
+ "learning_rate": 0.0006,
+ "loss": 3.0473437309265137,
+ "step": 2000
+ },
+ {
+ "epoch": 27.79650655021834,
+ "grad_norm": 0.02560942806303501,
+ "learning_rate": 0.0006,
+ "loss": 3.031550168991089,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810480349344978,
+ "grad_norm": 0.025517819449305534,
+ "learning_rate": 0.0006,
+ "loss": 3.0686302185058594,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824454148471617,
+ "grad_norm": 0.02572985179722309,
+ "learning_rate": 0.0006,
+ "loss": 3.07204270362854,
+ "step": 2003
+ },
+ {
+ "epoch": 27.83842794759825,
+ "grad_norm": 0.025370420888066292,
+ "learning_rate": 0.0006,
+ "loss": 3.0560848712921143,
+ "step": 2004
+ },
+ {
+ "epoch": 27.85240174672489,
+ "grad_norm": 0.02532627247273922,
+ "learning_rate": 0.0006,
+ "loss": 3.0176045894622803,
+ "step": 2005
+ },
+ {
+ "epoch": 27.86637554585153,
+ "grad_norm": 0.02456071600317955,
+ "learning_rate": 0.0006,
+ "loss": 3.0588455200195312,
+ "step": 2006
+ },
+ {
+ "epoch": 27.880349344978168,
+ "grad_norm": 0.025378121063113213,
+ "learning_rate": 0.0006,
+ "loss": 3.086975574493408,
+ "step": 2007
+ },
+ {
+ "epoch": 27.894323144104803,
+ "grad_norm": 0.024764427915215492,
+ "learning_rate": 0.0006,
+ "loss": 3.0386085510253906,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90829694323144,
+ "grad_norm": 0.024318184703588486,
+ "learning_rate": 0.0006,
+ "loss": 3.0750131607055664,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92227074235808,
+ "grad_norm": 0.023893442004919052,
+ "learning_rate": 0.0006,
+ "loss": 3.0715298652648926,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936244541484715,
+ "grad_norm": 0.023891527205705643,
+ "learning_rate": 0.0006,
+ "loss": 3.063795804977417,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950218340611354,
+ "grad_norm": 0.023563770577311516,
+ "learning_rate": 0.0006,
+ "loss": 3.066619873046875,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964192139737992,
+ "grad_norm": 0.023340724408626556,
+ "learning_rate": 0.0006,
+ "loss": 3.0637826919555664,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978165938864628,
+ "grad_norm": 0.024990880861878395,
+ "learning_rate": 0.0006,
+ "loss": 3.0814566612243652,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992139737991266,
+ "grad_norm": 0.024654274806380272,
+ "learning_rate": 0.0006,
+ "loss": 3.0768063068389893,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.02644839696586132,
+ "learning_rate": 0.0006,
+ "loss": 3.0343258380889893,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 4.1515045166015625,
+ "eval_runtime": 50.2049,
+ "eval_samples_per_second": 48.641,
+ "eval_steps_per_second": 1.534,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397379912664,
+ "grad_norm": 0.03195852413773537,
+ "learning_rate": 0.0006,
+ "loss": 2.834456443786621,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027947598253274,
+ "grad_norm": 0.0489632710814476,
+ "learning_rate": 0.0006,
+ "loss": 2.864487648010254,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041921397379912,
+ "grad_norm": 0.052848201245069504,
+ "learning_rate": 0.0006,
+ "loss": 2.881183624267578,
+ "step": 2019
+ },
+ {
+ "epoch": 28.05589519650655,
+ "grad_norm": 0.05033821240067482,
+ "learning_rate": 0.0006,
+ "loss": 2.8849921226501465,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069868995633186,
+ "grad_norm": 0.04925774410367012,
+ "learning_rate": 0.0006,
+ "loss": 2.8940699100494385,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083842794759825,
+ "grad_norm": 0.048295699059963226,
+ "learning_rate": 0.0006,
+ "loss": 2.8744611740112305,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097816593886463,
+ "grad_norm": 0.05191510170698166,
+ "learning_rate": 0.0006,
+ "loss": 2.8981003761291504,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111790393013102,
+ "grad_norm": 0.054681845009326935,
+ "learning_rate": 0.0006,
+ "loss": 2.894259452819824,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125764192139737,
+ "grad_norm": 0.05124315246939659,
+ "learning_rate": 0.0006,
+ "loss": 2.8902621269226074,
+ "step": 2025
+ },
+ {
+ "epoch": 28.139737991266376,
+ "grad_norm": 0.05269423872232437,
+ "learning_rate": 0.0006,
+ "loss": 2.9419264793395996,
+ "step": 2026
+ },
+ {
+ "epoch": 28.153711790393015,
+ "grad_norm": 0.052072685211896896,
+ "learning_rate": 0.0006,
+ "loss": 2.8902721405029297,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16768558951965,
+ "grad_norm": 0.04868622496724129,
+ "learning_rate": 0.0006,
+ "loss": 2.9544949531555176,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18165938864629,
+ "grad_norm": 0.04919573664665222,
+ "learning_rate": 0.0006,
+ "loss": 2.9149084091186523,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195633187772927,
+ "grad_norm": 0.05350393056869507,
+ "learning_rate": 0.0006,
+ "loss": 2.9301857948303223,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209606986899562,
+ "grad_norm": 0.06072673574090004,
+ "learning_rate": 0.0006,
+ "loss": 2.937542200088501,
+ "step": 2031
+ },
+ {
+ "epoch": 28.2235807860262,
+ "grad_norm": 0.06678931415081024,
+ "learning_rate": 0.0006,
+ "loss": 2.9437155723571777,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23755458515284,
+ "grad_norm": 0.07136489450931549,
+ "learning_rate": 0.0006,
+ "loss": 2.9720969200134277,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251528384279474,
+ "grad_norm": 0.06340529769659042,
+ "learning_rate": 0.0006,
+ "loss": 2.957184076309204,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265502183406113,
+ "grad_norm": 0.05951949581503868,
+ "learning_rate": 0.0006,
+ "loss": 2.9483275413513184,
+ "step": 2035
+ },
+ {
+ "epoch": 28.27947598253275,
+ "grad_norm": 0.05508637800812721,
+ "learning_rate": 0.0006,
+ "loss": 2.944632053375244,
+ "step": 2036
+ },
+ {
+ "epoch": 28.29344978165939,
+ "grad_norm": 0.04451477900147438,
+ "learning_rate": 0.0006,
+ "loss": 2.9538841247558594,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307423580786025,
+ "grad_norm": 0.04283531755208969,
+ "learning_rate": 0.0006,
+ "loss": 2.942497730255127,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321397379912664,
+ "grad_norm": 0.04256067052483559,
+ "learning_rate": 0.0006,
+ "loss": 2.9589486122131348,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335371179039303,
+ "grad_norm": 0.040724314749240875,
+ "learning_rate": 0.0006,
+ "loss": 2.9297492504119873,
+ "step": 2040
+ },
+ {
+ "epoch": 28.349344978165938,
+ "grad_norm": 0.035998500883579254,
+ "learning_rate": 0.0006,
+ "loss": 2.921250820159912,
+ "step": 2041
+ },
+ {
+ "epoch": 28.363318777292577,
+ "grad_norm": 0.03447495028376579,
+ "learning_rate": 0.0006,
+ "loss": 2.9901719093322754,
+ "step": 2042
+ },
+ {
+ "epoch": 28.377292576419215,
+ "grad_norm": 0.03475875034928322,
+ "learning_rate": 0.0006,
+ "loss": 2.975034236907959,
+ "step": 2043
+ },
+ {
+ "epoch": 28.39126637554585,
+ "grad_norm": 0.035763081163167953,
+ "learning_rate": 0.0006,
+ "loss": 2.9198880195617676,
+ "step": 2044
+ },
+ {
+ "epoch": 28.40524017467249,
+ "grad_norm": 0.03533506393432617,
+ "learning_rate": 0.0006,
+ "loss": 2.954592704772949,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419213973799128,
+ "grad_norm": 0.03279201313853264,
+ "learning_rate": 0.0006,
+ "loss": 2.9453115463256836,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433187772925763,
+ "grad_norm": 0.031335968524217606,
+ "learning_rate": 0.0006,
+ "loss": 2.9707398414611816,
+ "step": 2047
+ },
+ {
+ "epoch": 28.4471615720524,
+ "grad_norm": 0.028612999245524406,
+ "learning_rate": 0.0006,
+ "loss": 2.9935314655303955,
+ "step": 2048
+ },
+ {
+ "epoch": 28.46113537117904,
+ "grad_norm": 0.027722638100385666,
+ "learning_rate": 0.0006,
+ "loss": 2.937558650970459,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475109170305675,
+ "grad_norm": 0.026583192870020866,
+ "learning_rate": 0.0006,
+ "loss": 2.9509410858154297,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489082969432314,
+ "grad_norm": 0.026762869209051132,
+ "learning_rate": 0.0006,
+ "loss": 3.011293888092041,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503056768558952,
+ "grad_norm": 0.027254173532128334,
+ "learning_rate": 0.0006,
+ "loss": 2.9635009765625,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51703056768559,
+ "grad_norm": 0.028218677267432213,
+ "learning_rate": 0.0006,
+ "loss": 2.9973299503326416,
+ "step": 2053
+ },
+ {
+ "epoch": 28.531004366812226,
+ "grad_norm": 0.028099076822400093,
+ "learning_rate": 0.0006,
+ "loss": 2.980783462524414,
+ "step": 2054
+ },
+ {
+ "epoch": 28.544978165938865,
+ "grad_norm": 0.02740541286766529,
+ "learning_rate": 0.0006,
+ "loss": 3.0181171894073486,
+ "step": 2055
+ },
+ {
+ "epoch": 28.558951965065503,
+ "grad_norm": 0.028045643121004105,
+ "learning_rate": 0.0006,
+ "loss": 2.998990774154663,
+ "step": 2056
+ },
+ {
+ "epoch": 28.57292576419214,
+ "grad_norm": 0.026816850528120995,
+ "learning_rate": 0.0006,
+ "loss": 3.0068860054016113,
+ "step": 2057
+ },
+ {
+ "epoch": 28.586899563318777,
+ "grad_norm": 0.025382595136761665,
+ "learning_rate": 0.0006,
+ "loss": 2.9418373107910156,
+ "step": 2058
+ },
+ {
+ "epoch": 28.600873362445416,
+ "grad_norm": 0.026060424745082855,
+ "learning_rate": 0.0006,
+ "loss": 2.936776638031006,
+ "step": 2059
+ },
+ {
+ "epoch": 28.61484716157205,
+ "grad_norm": 0.025853872299194336,
+ "learning_rate": 0.0006,
+ "loss": 3.0203466415405273,
+ "step": 2060
+ },
+ {
+ "epoch": 28.62882096069869,
+ "grad_norm": 0.02508033812046051,
+ "learning_rate": 0.0006,
+ "loss": 2.9945011138916016,
+ "step": 2061
+ },
+ {
+ "epoch": 28.64279475982533,
+ "grad_norm": 0.025970350950956345,
+ "learning_rate": 0.0006,
+ "loss": 2.9931695461273193,
+ "step": 2062
+ },
+ {
+ "epoch": 28.656768558951963,
+ "grad_norm": 0.025476455688476562,
+ "learning_rate": 0.0006,
+ "loss": 2.957230567932129,
+ "step": 2063
+ },
+ {
+ "epoch": 28.670742358078602,
+ "grad_norm": 0.026332074776291847,
+ "learning_rate": 0.0006,
+ "loss": 3.0264182090759277,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68471615720524,
+ "grad_norm": 0.025519322603940964,
+ "learning_rate": 0.0006,
+ "loss": 3.0092458724975586,
+ "step": 2065
+ },
+ {
+ "epoch": 28.69868995633188,
+ "grad_norm": 0.024840593338012695,
+ "learning_rate": 0.0006,
+ "loss": 2.986766815185547,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712663755458514,
+ "grad_norm": 0.02441803738474846,
+ "learning_rate": 0.0006,
+ "loss": 2.9874420166015625,
+ "step": 2067
+ },
+ {
+ "epoch": 28.726637554585153,
+ "grad_norm": 0.02630285918712616,
+ "learning_rate": 0.0006,
+ "loss": 3.0578904151916504,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74061135371179,
+ "grad_norm": 0.026446865871548653,
+ "learning_rate": 0.0006,
+ "loss": 3.0013539791107178,
+ "step": 2069
+ },
+ {
+ "epoch": 28.754585152838427,
+ "grad_norm": 0.02450861781835556,
+ "learning_rate": 0.0006,
+ "loss": 3.0490686893463135,
+ "step": 2070
+ },
+ {
+ "epoch": 28.768558951965066,
+ "grad_norm": 0.02672298066318035,
+ "learning_rate": 0.0006,
+ "loss": 3.020845413208008,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782532751091704,
+ "grad_norm": 0.025726495310664177,
+ "learning_rate": 0.0006,
+ "loss": 3.0180835723876953,
+ "step": 2072
+ },
+ {
+ "epoch": 28.79650655021834,
+ "grad_norm": 0.026580246165394783,
+ "learning_rate": 0.0006,
+ "loss": 2.991779327392578,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810480349344978,
+ "grad_norm": 0.02619314193725586,
+ "learning_rate": 0.0006,
+ "loss": 2.963550329208374,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824454148471617,
+ "grad_norm": 0.02470521256327629,
+ "learning_rate": 0.0006,
+ "loss": 2.9849443435668945,
+ "step": 2075
+ },
+ {
+ "epoch": 28.83842794759825,
+ "grad_norm": 0.02675030194222927,
+ "learning_rate": 0.0006,
+ "loss": 2.996417284011841,
+ "step": 2076
+ },
+ {
+ "epoch": 28.85240174672489,
+ "grad_norm": 0.02626962400972843,
+ "learning_rate": 0.0006,
+ "loss": 3.037600040435791,
+ "step": 2077
+ },
+ {
+ "epoch": 28.86637554585153,
+ "grad_norm": 0.025189539417624474,
+ "learning_rate": 0.0006,
+ "loss": 3.0162289142608643,
+ "step": 2078
+ },
+ {
+ "epoch": 28.880349344978168,
+ "grad_norm": 0.023836355656385422,
+ "learning_rate": 0.0006,
+ "loss": 3.0182363986968994,
+ "step": 2079
+ },
+ {
+ "epoch": 28.894323144104803,
+ "grad_norm": 0.025875985622406006,
+ "learning_rate": 0.0006,
+ "loss": 3.0712671279907227,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90829694323144,
+ "grad_norm": 0.025787588208913803,
+ "learning_rate": 0.0006,
+ "loss": 3.060253858566284,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92227074235808,
+ "grad_norm": 0.025029966607689857,
+ "learning_rate": 0.0006,
+ "loss": 3.0385570526123047,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936244541484715,
+ "grad_norm": 0.024807918816804886,
+ "learning_rate": 0.0006,
+ "loss": 3.030642509460449,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950218340611354,
+ "grad_norm": 0.02444799616932869,
+ "learning_rate": 0.0006,
+ "loss": 3.025789260864258,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964192139737992,
+ "grad_norm": 0.02498369850218296,
+ "learning_rate": 0.0006,
+ "loss": 3.0041980743408203,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978165938864628,
+ "grad_norm": 0.02519051544368267,
+ "learning_rate": 0.0006,
+ "loss": 3.0126523971557617,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992139737991266,
+ "grad_norm": 0.026262952014803886,
+ "learning_rate": 0.0006,
+ "loss": 3.036421775817871,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.028925646096467972,
+ "learning_rate": 0.0006,
+ "loss": 2.9996514320373535,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 4.17269229888916,
+ "eval_runtime": 54.6168,
+ "eval_samples_per_second": 44.711,
+ "eval_steps_per_second": 1.41,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397379912664,
+ "grad_norm": 0.033029936254024506,
+ "learning_rate": 0.0006,
+ "loss": 2.8362483978271484,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027947598253274,
+ "grad_norm": 0.04538845643401146,
+ "learning_rate": 0.0006,
+ "loss": 2.8311057090759277,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041921397379912,
+ "grad_norm": 0.046482112258672714,
+ "learning_rate": 0.0006,
+ "loss": 2.851710319519043,
+ "step": 2091
+ },
+ {
+ "epoch": 29.05589519650655,
+ "grad_norm": 0.04495995491743088,
+ "learning_rate": 0.0006,
+ "loss": 2.8197240829467773,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069868995633186,
+ "grad_norm": 0.043497391045093536,
+ "learning_rate": 0.0006,
+ "loss": 2.835160255432129,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083842794759825,
+ "grad_norm": 0.042180925607681274,
+ "learning_rate": 0.0006,
+ "loss": 2.814297914505005,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097816593886463,
+ "grad_norm": 0.046564772725105286,
+ "learning_rate": 0.0006,
+ "loss": 2.8432681560516357,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111790393013102,
+ "grad_norm": 0.05109454691410065,
+ "learning_rate": 0.0006,
+ "loss": 2.8209657669067383,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125764192139737,
+ "grad_norm": 0.054633282124996185,
+ "learning_rate": 0.0006,
+ "loss": 2.860410213470459,
+ "step": 2097
+ },
+ {
+ "epoch": 29.139737991266376,
+ "grad_norm": 0.05523914843797684,
+ "learning_rate": 0.0006,
+ "loss": 2.850083827972412,
+ "step": 2098
+ },
+ {
+ "epoch": 29.153711790393015,
+ "grad_norm": 0.055773504078388214,
+ "learning_rate": 0.0006,
+ "loss": 2.8240323066711426,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16768558951965,
+ "grad_norm": 0.054498568177223206,
+ "learning_rate": 0.0006,
+ "loss": 2.8628149032592773,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18165938864629,
+ "grad_norm": 0.053030889481306076,
+ "learning_rate": 0.0006,
+ "loss": 2.8365299701690674,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195633187772927,
+ "grad_norm": 0.05545743182301521,
+ "learning_rate": 0.0006,
+ "loss": 2.884146213531494,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209606986899562,
+ "grad_norm": 0.057719431817531586,
+ "learning_rate": 0.0006,
+ "loss": 2.8857107162475586,
+ "step": 2103
+ },
+ {
+ "epoch": 29.2235807860262,
+ "grad_norm": 0.060189153999090195,
+ "learning_rate": 0.0006,
+ "loss": 2.896878242492676,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23755458515284,
+ "grad_norm": 0.06222223490476608,
+ "learning_rate": 0.0006,
+ "loss": 2.883173704147339,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251528384279474,
+ "grad_norm": 0.06780146062374115,
+ "learning_rate": 0.0006,
+ "loss": 2.926743745803833,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265502183406113,
+ "grad_norm": 0.06533487886190414,
+ "learning_rate": 0.0006,
+ "loss": 2.9010519981384277,
+ "step": 2107
+ },
+ {
+ "epoch": 29.27947598253275,
+ "grad_norm": 0.05744635686278343,
+ "learning_rate": 0.0006,
+ "loss": 2.922598123550415,
+ "step": 2108
+ },
+ {
+ "epoch": 29.29344978165939,
+ "grad_norm": 0.05649896338582039,
+ "learning_rate": 0.0006,
+ "loss": 2.905834674835205,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307423580786025,
+ "grad_norm": 0.06080562621355057,
+ "learning_rate": 0.0006,
+ "loss": 2.92208194732666,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321397379912664,
+ "grad_norm": 0.059314578771591187,
+ "learning_rate": 0.0006,
+ "loss": 2.9546284675598145,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335371179039303,
+ "grad_norm": 0.047971680760383606,
+ "learning_rate": 0.0006,
+ "loss": 2.9306116104125977,
+ "step": 2112
+ },
+ {
+ "epoch": 29.349344978165938,
+ "grad_norm": 0.041513457894325256,
+ "learning_rate": 0.0006,
+ "loss": 2.885359287261963,
+ "step": 2113
+ },
+ {
+ "epoch": 29.363318777292577,
+ "grad_norm": 0.044294606894254684,
+ "learning_rate": 0.0006,
+ "loss": 2.923374652862549,
+ "step": 2114
+ },
+ {
+ "epoch": 29.377292576419215,
+ "grad_norm": 0.0417361743748188,
+ "learning_rate": 0.0006,
+ "loss": 2.88425350189209,
+ "step": 2115
+ },
+ {
+ "epoch": 29.39126637554585,
+ "grad_norm": 0.041468895971775055,
+ "learning_rate": 0.0006,
+ "loss": 2.9643259048461914,
+ "step": 2116
+ },
+ {
+ "epoch": 29.40524017467249,
+ "grad_norm": 0.04073813930153847,
+ "learning_rate": 0.0006,
+ "loss": 2.95505952835083,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419213973799128,
+ "grad_norm": 0.039006855338811874,
+ "learning_rate": 0.0006,
+ "loss": 2.9500551223754883,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433187772925763,
+ "grad_norm": 0.035800445824861526,
+ "learning_rate": 0.0006,
+ "loss": 2.954481601715088,
+ "step": 2119
+ },
+ {
+ "epoch": 29.4471615720524,
+ "grad_norm": 0.03534843400120735,
+ "learning_rate": 0.0006,
+ "loss": 2.949183940887451,
+ "step": 2120
+ },
+ {
+ "epoch": 29.46113537117904,
+ "grad_norm": 0.03376666083931923,
+ "learning_rate": 0.0006,
+ "loss": 2.9482197761535645,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475109170305675,
+ "grad_norm": 0.032544493675231934,
+ "learning_rate": 0.0006,
+ "loss": 2.9613194465637207,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489082969432314,
+ "grad_norm": 0.02941369079053402,
+ "learning_rate": 0.0006,
+ "loss": 2.9054269790649414,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503056768558952,
+ "grad_norm": 0.030306288972496986,
+ "learning_rate": 0.0006,
+ "loss": 2.955117702484131,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51703056768559,
+ "grad_norm": 0.029188739135861397,
+ "learning_rate": 0.0006,
+ "loss": 2.9344658851623535,
+ "step": 2125
+ },
+ {
+ "epoch": 29.531004366812226,
+ "grad_norm": 0.028544921427965164,
+ "learning_rate": 0.0006,
+ "loss": 2.9878439903259277,
+ "step": 2126
+ },
+ {
+ "epoch": 29.544978165938865,
+ "grad_norm": 0.029478471726179123,
+ "learning_rate": 0.0006,
+ "loss": 2.9671640396118164,
+ "step": 2127
+ },
+ {
+ "epoch": 29.558951965065503,
+ "grad_norm": 0.029838059097528458,
+ "learning_rate": 0.0006,
+ "loss": 2.9319276809692383,
+ "step": 2128
+ },
+ {
+ "epoch": 29.57292576419214,
+ "grad_norm": 0.031277935951948166,
+ "learning_rate": 0.0006,
+ "loss": 2.9517064094543457,
+ "step": 2129
+ },
+ {
+ "epoch": 29.586899563318777,
+ "grad_norm": 0.028920911252498627,
+ "learning_rate": 0.0006,
+ "loss": 3.0010836124420166,
+ "step": 2130
+ },
+ {
+ "epoch": 29.600873362445416,
+ "grad_norm": 0.028258386999368668,
+ "learning_rate": 0.0006,
+ "loss": 2.9552881717681885,
+ "step": 2131
+ },
+ {
+ "epoch": 29.61484716157205,
+ "grad_norm": 0.027709737420082092,
+ "learning_rate": 0.0006,
+ "loss": 2.9699630737304688,
+ "step": 2132
+ },
+ {
+ "epoch": 29.62882096069869,
+ "grad_norm": 0.027644682675600052,
+ "learning_rate": 0.0006,
+ "loss": 2.966932535171509,
+ "step": 2133
+ },
+ {
+ "epoch": 29.64279475982533,
+ "grad_norm": 0.026919284835457802,
+ "learning_rate": 0.0006,
+ "loss": 2.9580016136169434,
+ "step": 2134
+ },
+ {
+ "epoch": 29.656768558951963,
+ "grad_norm": 0.025746364146471024,
+ "learning_rate": 0.0006,
+ "loss": 2.9671740531921387,
+ "step": 2135
+ },
+ {
+ "epoch": 29.670742358078602,
+ "grad_norm": 0.026482900604605675,
+ "learning_rate": 0.0006,
+ "loss": 2.9920620918273926,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68471615720524,
+ "grad_norm": 0.028580941259860992,
+ "learning_rate": 0.0006,
+ "loss": 2.998594045639038,
+ "step": 2137
+ },
+ {
+ "epoch": 29.69868995633188,
+ "grad_norm": 0.027317512780427933,
+ "learning_rate": 0.0006,
+ "loss": 2.978580951690674,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712663755458514,
+ "grad_norm": 0.026336928829550743,
+ "learning_rate": 0.0006,
+ "loss": 2.9933362007141113,
+ "step": 2139
+ },
+ {
+ "epoch": 29.726637554585153,
+ "grad_norm": 0.025520015507936478,
+ "learning_rate": 0.0006,
+ "loss": 2.9906885623931885,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74061135371179,
+ "grad_norm": 0.024093175306916237,
+ "learning_rate": 0.0006,
+ "loss": 2.95902419090271,
+ "step": 2141
+ },
+ {
+ "epoch": 29.754585152838427,
+ "grad_norm": 0.024410322308540344,
+ "learning_rate": 0.0006,
+ "loss": 2.96647047996521,
+ "step": 2142
+ },
+ {
+ "epoch": 29.768558951965066,
+ "grad_norm": 0.024991247802972794,
+ "learning_rate": 0.0006,
+ "loss": 2.9643096923828125,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782532751091704,
+ "grad_norm": 0.025067847222089767,
+ "learning_rate": 0.0006,
+ "loss": 3.0112953186035156,
+ "step": 2144
+ },
+ {
+ "epoch": 29.79650655021834,
+ "grad_norm": 0.025362879037857056,
+ "learning_rate": 0.0006,
+ "loss": 2.971529483795166,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810480349344978,
+ "grad_norm": 0.024684470146894455,
+ "learning_rate": 0.0006,
+ "loss": 2.989647388458252,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824454148471617,
+ "grad_norm": 0.02385212853550911,
+ "learning_rate": 0.0006,
+ "loss": 2.977238178253174,
+ "step": 2147
+ },
+ {
+ "epoch": 29.83842794759825,
+ "grad_norm": 0.02527615986764431,
+ "learning_rate": 0.0006,
+ "loss": 2.9751431941986084,
+ "step": 2148
+ },
+ {
+ "epoch": 29.85240174672489,
+ "grad_norm": 0.024217894300818443,
+ "learning_rate": 0.0006,
+ "loss": 2.9607608318328857,
+ "step": 2149
+ },
+ {
+ "epoch": 29.86637554585153,
+ "grad_norm": 0.0244144294410944,
+ "learning_rate": 0.0006,
+ "loss": 3.0002236366271973,
+ "step": 2150
+ },
+ {
+ "epoch": 29.880349344978168,
+ "grad_norm": 0.026171889156103134,
+ "learning_rate": 0.0006,
+ "loss": 2.9608335494995117,
+ "step": 2151
+ },
+ {
+ "epoch": 29.894323144104803,
+ "grad_norm": 0.025675922632217407,
+ "learning_rate": 0.0006,
+ "loss": 3.0153677463531494,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90829694323144,
+ "grad_norm": 0.026269402354955673,
+ "learning_rate": 0.0006,
+ "loss": 2.990961790084839,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92227074235808,
+ "grad_norm": 0.025278599932789803,
+ "learning_rate": 0.0006,
+ "loss": 2.9858884811401367,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936244541484715,
+ "grad_norm": 0.02442092075943947,
+ "learning_rate": 0.0006,
+ "loss": 2.981938123703003,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950218340611354,
+ "grad_norm": 0.025676338002085686,
+ "learning_rate": 0.0006,
+ "loss": 3.007082462310791,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964192139737992,
+ "grad_norm": 0.02556379698216915,
+ "learning_rate": 0.0006,
+ "loss": 3.030315399169922,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978165938864628,
+ "grad_norm": 0.027025923132896423,
+ "learning_rate": 0.0006,
+ "loss": 2.9751744270324707,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992139737991266,
+ "grad_norm": 0.027581017464399338,
+ "learning_rate": 0.0006,
+ "loss": 3.0025429725646973,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.029440129175782204,
+ "learning_rate": 0.0006,
+ "loss": 2.9936294555664062,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 4.204888343811035,
+ "eval_runtime": 49.9747,
+ "eval_samples_per_second": 48.865,
+ "eval_steps_per_second": 1.541,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397379912664,
+ "grad_norm": 0.03082278184592724,
+ "learning_rate": 0.0006,
+ "loss": 2.790925979614258,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027947598253274,
+ "grad_norm": 0.04583689942955971,
+ "learning_rate": 0.0006,
+ "loss": 2.7823095321655273,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041921397379912,
+ "grad_norm": 0.05001630261540413,
+ "learning_rate": 0.0006,
+ "loss": 2.776362895965576,
+ "step": 2163
+ },
+ {
+ "epoch": 30.05589519650655,
+ "grad_norm": 0.04742066189646721,
+ "learning_rate": 0.0006,
+ "loss": 2.803783893585205,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069868995633186,
+ "grad_norm": 0.048882510513067245,
+ "learning_rate": 0.0006,
+ "loss": 2.8219070434570312,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083842794759825,
+ "grad_norm": 0.05513570457696915,
+ "learning_rate": 0.0006,
+ "loss": 2.833082437515259,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097816593886463,
+ "grad_norm": 0.05891067534685135,
+ "learning_rate": 0.0006,
+ "loss": 2.8083062171936035,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111790393013102,
+ "grad_norm": 0.06333944201469421,
+ "learning_rate": 0.0006,
+ "loss": 2.8162131309509277,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125764192139737,
+ "grad_norm": 0.06515136361122131,
+ "learning_rate": 0.0006,
+ "loss": 2.8343942165374756,
+ "step": 2169
+ },
+ {
+ "epoch": 30.139737991266376,
+ "grad_norm": 0.06689856946468353,
+ "learning_rate": 0.0006,
+ "loss": 2.837913990020752,
+ "step": 2170
+ },
+ {
+ "epoch": 30.153711790393015,
+ "grad_norm": 0.0659976378083229,
+ "learning_rate": 0.0006,
+ "loss": 2.816307306289673,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16768558951965,
+ "grad_norm": 0.05694719776511192,
+ "learning_rate": 0.0006,
+ "loss": 2.815828323364258,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18165938864629,
+ "grad_norm": 0.057003188878297806,
+ "learning_rate": 0.0006,
+ "loss": 2.8621420860290527,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195633187772927,
+ "grad_norm": 0.061041459441185,
+ "learning_rate": 0.0006,
+ "loss": 2.8613672256469727,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209606986899562,
+ "grad_norm": 0.06092670559883118,
+ "learning_rate": 0.0006,
+ "loss": 2.871680498123169,
+ "step": 2175
+ },
+ {
+ "epoch": 30.2235807860262,
+ "grad_norm": 0.06369971483945847,
+ "learning_rate": 0.0006,
+ "loss": 2.8823862075805664,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23755458515284,
+ "grad_norm": 0.06887379288673401,
+ "learning_rate": 0.0006,
+ "loss": 2.869670867919922,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251528384279474,
+ "grad_norm": 0.07047348469495773,
+ "learning_rate": 0.0006,
+ "loss": 2.8879926204681396,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265502183406113,
+ "grad_norm": 0.06639240682125092,
+ "learning_rate": 0.0006,
+ "loss": 2.8918027877807617,
+ "step": 2179
+ },
+ {
+ "epoch": 30.27947598253275,
+ "grad_norm": 0.06433828920125961,
+ "learning_rate": 0.0006,
+ "loss": 2.898557662963867,
+ "step": 2180
+ },
+ {
+ "epoch": 30.29344978165939,
+ "grad_norm": 0.05627095326781273,
+ "learning_rate": 0.0006,
+ "loss": 2.952359199523926,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307423580786025,
+ "grad_norm": 0.052996374666690826,
+ "learning_rate": 0.0006,
+ "loss": 2.8907530307769775,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321397379912664,
+ "grad_norm": 0.05459262803196907,
+ "learning_rate": 0.0006,
+ "loss": 2.920314073562622,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335371179039303,
+ "grad_norm": 0.05082414671778679,
+ "learning_rate": 0.0006,
+ "loss": 2.930004596710205,
+ "step": 2184
+ },
+ {
+ "epoch": 30.349344978165938,
+ "grad_norm": 0.04854968935251236,
+ "learning_rate": 0.0006,
+ "loss": 2.909700632095337,
+ "step": 2185
+ },
+ {
+ "epoch": 30.363318777292577,
+ "grad_norm": 0.046354763209819794,
+ "learning_rate": 0.0006,
+ "loss": 2.8992667198181152,
+ "step": 2186
+ },
+ {
+ "epoch": 30.377292576419215,
+ "grad_norm": 0.04162409156560898,
+ "learning_rate": 0.0006,
+ "loss": 2.8841357231140137,
+ "step": 2187
+ },
+ {
+ "epoch": 30.39126637554585,
+ "grad_norm": 0.0407755970954895,
+ "learning_rate": 0.0006,
+ "loss": 2.8838725090026855,
+ "step": 2188
+ },
+ {
+ "epoch": 30.40524017467249,
+ "grad_norm": 0.04091903567314148,
+ "learning_rate": 0.0006,
+ "loss": 2.9465415477752686,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419213973799128,
+ "grad_norm": 0.037343017756938934,
+ "learning_rate": 0.0006,
+ "loss": 2.9277544021606445,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433187772925763,
+ "grad_norm": 0.03364052250981331,
+ "learning_rate": 0.0006,
+ "loss": 2.9258010387420654,
+ "step": 2191
+ },
+ {
+ "epoch": 30.4471615720524,
+ "grad_norm": 0.033522892743349075,
+ "learning_rate": 0.0006,
+ "loss": 2.894564628601074,
+ "step": 2192
+ },
+ {
+ "epoch": 30.46113537117904,
+ "grad_norm": 0.03192823752760887,
+ "learning_rate": 0.0006,
+ "loss": 2.9259095191955566,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475109170305675,
+ "grad_norm": 0.030643166974186897,
+ "learning_rate": 0.0006,
+ "loss": 2.9532039165496826,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489082969432314,
+ "grad_norm": 0.030904730781912804,
+ "learning_rate": 0.0006,
+ "loss": 2.9105587005615234,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503056768558952,
+ "grad_norm": 0.029073279350996017,
+ "learning_rate": 0.0006,
+ "loss": 2.882645606994629,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51703056768559,
+ "grad_norm": 0.03068859502673149,
+ "learning_rate": 0.0006,
+ "loss": 2.972698211669922,
+ "step": 2197
+ },
+ {
+ "epoch": 30.531004366812226,
+ "grad_norm": 0.030377032235264778,
+ "learning_rate": 0.0006,
+ "loss": 2.903886318206787,
+ "step": 2198
+ },
+ {
+ "epoch": 30.544978165938865,
+ "grad_norm": 0.030634265393018723,
+ "learning_rate": 0.0006,
+ "loss": 2.867248058319092,
+ "step": 2199
+ },
+ {
+ "epoch": 30.558951965065503,
+ "grad_norm": 0.029660150408744812,
+ "learning_rate": 0.0006,
+ "loss": 2.925515651702881,
+ "step": 2200
+ },
+ {
+ "epoch": 30.57292576419214,
+ "grad_norm": 0.029679421335458755,
+ "learning_rate": 0.0006,
+ "loss": 2.9485011100769043,
+ "step": 2201
+ },
+ {
+ "epoch": 30.586899563318777,
+ "grad_norm": 0.029809271916747093,
+ "learning_rate": 0.0006,
+ "loss": 2.9528913497924805,
+ "step": 2202
+ },
+ {
+ "epoch": 30.600873362445416,
+ "grad_norm": 0.028424153104424477,
+ "learning_rate": 0.0006,
+ "loss": 2.92244291305542,
+ "step": 2203
+ },
+ {
+ "epoch": 30.61484716157205,
+ "grad_norm": 0.02718108892440796,
+ "learning_rate": 0.0006,
+ "loss": 2.9047327041625977,
+ "step": 2204
+ },
+ {
+ "epoch": 30.62882096069869,
+ "grad_norm": 0.028654800727963448,
+ "learning_rate": 0.0006,
+ "loss": 2.926530361175537,
+ "step": 2205
+ },
+ {
+ "epoch": 30.64279475982533,
+ "grad_norm": 0.027802037075161934,
+ "learning_rate": 0.0006,
+ "loss": 2.9279685020446777,
+ "step": 2206
+ },
+ {
+ "epoch": 30.656768558951963,
+ "grad_norm": 0.026860002428293228,
+ "learning_rate": 0.0006,
+ "loss": 2.918400287628174,
+ "step": 2207
+ },
+ {
+ "epoch": 30.670742358078602,
+ "grad_norm": 0.026720909401774406,
+ "learning_rate": 0.0006,
+ "loss": 2.907062530517578,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68471615720524,
+ "grad_norm": 0.026722557842731476,
+ "learning_rate": 0.0006,
+ "loss": 2.9302074909210205,
+ "step": 2209
+ },
+ {
+ "epoch": 30.69868995633188,
+ "grad_norm": 0.026495203375816345,
+ "learning_rate": 0.0006,
+ "loss": 2.914985418319702,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712663755458514,
+ "grad_norm": 0.025444738566875458,
+ "learning_rate": 0.0006,
+ "loss": 2.9205482006073,
+ "step": 2211
+ },
+ {
+ "epoch": 30.726637554585153,
+ "grad_norm": 0.02570643275976181,
+ "learning_rate": 0.0006,
+ "loss": 2.9142990112304688,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74061135371179,
+ "grad_norm": 0.025516517460346222,
+ "learning_rate": 0.0006,
+ "loss": 2.9324023723602295,
+ "step": 2213
+ },
+ {
+ "epoch": 30.754585152838427,
+ "grad_norm": 0.02481970377266407,
+ "learning_rate": 0.0006,
+ "loss": 2.9404819011688232,
+ "step": 2214
+ },
+ {
+ "epoch": 30.768558951965066,
+ "grad_norm": 0.024804186075925827,
+ "learning_rate": 0.0006,
+ "loss": 2.9476962089538574,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782532751091704,
+ "grad_norm": 0.02516373060643673,
+ "learning_rate": 0.0006,
+ "loss": 2.9525418281555176,
+ "step": 2216
+ },
+ {
+ "epoch": 30.79650655021834,
+ "grad_norm": 0.02501778118312359,
+ "learning_rate": 0.0006,
+ "loss": 2.953561782836914,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810480349344978,
+ "grad_norm": 0.025414010509848595,
+ "learning_rate": 0.0006,
+ "loss": 2.962048292160034,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824454148471617,
+ "grad_norm": 0.024972591549158096,
+ "learning_rate": 0.0006,
+ "loss": 2.9431703090667725,
+ "step": 2219
+ },
+ {
+ "epoch": 30.83842794759825,
+ "grad_norm": 0.024618400260806084,
+ "learning_rate": 0.0006,
+ "loss": 2.976715087890625,
+ "step": 2220
+ },
+ {
+ "epoch": 30.85240174672489,
+ "grad_norm": 0.025781305506825447,
+ "learning_rate": 0.0006,
+ "loss": 2.9464545249938965,
+ "step": 2221
+ },
+ {
+ "epoch": 30.86637554585153,
+ "grad_norm": 0.025492621585726738,
+ "learning_rate": 0.0006,
+ "loss": 2.9683992862701416,
+ "step": 2222
+ },
+ {
+ "epoch": 30.880349344978168,
+ "grad_norm": 0.024332989007234573,
+ "learning_rate": 0.0006,
+ "loss": 2.936504364013672,
+ "step": 2223
+ },
+ {
+ "epoch": 30.894323144104803,
+ "grad_norm": 0.025873707607388496,
+ "learning_rate": 0.0006,
+ "loss": 2.9819533824920654,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90829694323144,
+ "grad_norm": 0.025367610156536102,
+ "learning_rate": 0.0006,
+ "loss": 2.9434492588043213,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92227074235808,
+ "grad_norm": 0.025719329714775085,
+ "learning_rate": 0.0006,
+ "loss": 2.9492809772491455,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936244541484715,
+ "grad_norm": 0.025365520268678665,
+ "learning_rate": 0.0006,
+ "loss": 2.9604077339172363,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950218340611354,
+ "grad_norm": 0.025556908920407295,
+ "learning_rate": 0.0006,
+ "loss": 2.9890618324279785,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964192139737992,
+ "grad_norm": 0.025892134755849838,
+ "learning_rate": 0.0006,
+ "loss": 3.0024898052215576,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978165938864628,
+ "grad_norm": 0.02661663107573986,
+ "learning_rate": 0.0006,
+ "loss": 2.952683687210083,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992139737991266,
+ "grad_norm": 0.027014167979359627,
+ "learning_rate": 0.0006,
+ "loss": 2.9711644649505615,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.030383866280317307,
+ "learning_rate": 0.0006,
+ "loss": 2.9667253494262695,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 4.229912281036377,
+ "eval_runtime": 50.1223,
+ "eval_samples_per_second": 48.721,
+ "eval_steps_per_second": 1.536,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397379912664,
+ "grad_norm": 0.03256843239068985,
+ "learning_rate": 0.0006,
+ "loss": 2.7514405250549316,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027947598253274,
+ "grad_norm": 0.047255322337150574,
+ "learning_rate": 0.0006,
+ "loss": 2.74819278717041,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041921397379912,
+ "grad_norm": 0.057098377496004105,
+ "learning_rate": 0.0006,
+ "loss": 2.8072285652160645,
+ "step": 2235
+ },
+ {
+ "epoch": 31.05589519650655,
+ "grad_norm": 0.06089015305042267,
+ "learning_rate": 0.0006,
+ "loss": 2.7930731773376465,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069868995633186,
+ "grad_norm": 0.06132258102297783,
+ "learning_rate": 0.0006,
+ "loss": 2.758162498474121,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083842794759825,
+ "grad_norm": 0.06187787652015686,
+ "learning_rate": 0.0006,
+ "loss": 2.7864990234375,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097816593886463,
+ "grad_norm": 0.06031458452343941,
+ "learning_rate": 0.0006,
+ "loss": 2.7684197425842285,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111790393013102,
+ "grad_norm": 0.06238894909620285,
+ "learning_rate": 0.0006,
+ "loss": 2.7754814624786377,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125764192139737,
+ "grad_norm": 0.062081411480903625,
+ "learning_rate": 0.0006,
+ "loss": 2.790771484375,
+ "step": 2241
+ },
+ {
+ "epoch": 31.139737991266376,
+ "grad_norm": 0.06554440408945084,
+ "learning_rate": 0.0006,
+ "loss": 2.8218588829040527,
+ "step": 2242
+ },
+ {
+ "epoch": 31.153711790393015,
+ "grad_norm": 0.06824780255556107,
+ "learning_rate": 0.0006,
+ "loss": 2.7899062633514404,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16768558951965,
+ "grad_norm": 0.06519690155982971,
+ "learning_rate": 0.0006,
+ "loss": 2.8244035243988037,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18165938864629,
+ "grad_norm": 0.06539556384086609,
+ "learning_rate": 0.0006,
+ "loss": 2.8237123489379883,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195633187772927,
+ "grad_norm": 0.06608626246452332,
+ "learning_rate": 0.0006,
+ "loss": 2.82597017288208,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209606986899562,
+ "grad_norm": 0.0633682906627655,
+ "learning_rate": 0.0006,
+ "loss": 2.854529857635498,
+ "step": 2247
+ },
+ {
+ "epoch": 31.2235807860262,
+ "grad_norm": 0.06378687173128128,
+ "learning_rate": 0.0006,
+ "loss": 2.834493637084961,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23755458515284,
+ "grad_norm": 0.06429384648799896,
+ "learning_rate": 0.0006,
+ "loss": 2.835636854171753,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251528384279474,
+ "grad_norm": 0.06059514731168747,
+ "learning_rate": 0.0006,
+ "loss": 2.8262174129486084,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265502183406113,
+ "grad_norm": 0.05870524421334267,
+ "learning_rate": 0.0006,
+ "loss": 2.8372795581817627,
+ "step": 2251
+ },
+ {
+ "epoch": 31.27947598253275,
+ "grad_norm": 0.05517038330435753,
+ "learning_rate": 0.0006,
+ "loss": 2.8663249015808105,
+ "step": 2252
+ },
+ {
+ "epoch": 31.29344978165939,
+ "grad_norm": 0.05413469672203064,
+ "learning_rate": 0.0006,
+ "loss": 2.88608980178833,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307423580786025,
+ "grad_norm": 0.05486409366130829,
+ "learning_rate": 0.0006,
+ "loss": 2.861100673675537,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321397379912664,
+ "grad_norm": 0.049654968082904816,
+ "learning_rate": 0.0006,
+ "loss": 2.86140775680542,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335371179039303,
+ "grad_norm": 0.041566286236047745,
+ "learning_rate": 0.0006,
+ "loss": 2.8499088287353516,
+ "step": 2256
+ },
+ {
+ "epoch": 31.349344978165938,
+ "grad_norm": 0.03958230838179588,
+ "learning_rate": 0.0006,
+ "loss": 2.8657469749450684,
+ "step": 2257
+ },
+ {
+ "epoch": 31.363318777292577,
+ "grad_norm": 0.039652854204177856,
+ "learning_rate": 0.0006,
+ "loss": 2.877363681793213,
+ "step": 2258
+ },
+ {
+ "epoch": 31.377292576419215,
+ "grad_norm": 0.03760487213730812,
+ "learning_rate": 0.0006,
+ "loss": 2.8804736137390137,
+ "step": 2259
+ },
+ {
+ "epoch": 31.39126637554585,
+ "grad_norm": 0.0382104329764843,
+ "learning_rate": 0.0006,
+ "loss": 2.868318796157837,
+ "step": 2260
+ },
+ {
+ "epoch": 31.40524017467249,
+ "grad_norm": 0.03440074995160103,
+ "learning_rate": 0.0006,
+ "loss": 2.8732798099517822,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419213973799128,
+ "grad_norm": 0.033076152205467224,
+ "learning_rate": 0.0006,
+ "loss": 2.906764030456543,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433187772925763,
+ "grad_norm": 0.032357051968574524,
+ "learning_rate": 0.0006,
+ "loss": 2.9036777019500732,
+ "step": 2263
+ },
+ {
+ "epoch": 31.4471615720524,
+ "grad_norm": 0.03397732973098755,
+ "learning_rate": 0.0006,
+ "loss": 2.877735137939453,
+ "step": 2264
+ },
+ {
+ "epoch": 31.46113537117904,
+ "grad_norm": 0.03163991868495941,
+ "learning_rate": 0.0006,
+ "loss": 2.8931736946105957,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475109170305675,
+ "grad_norm": 0.0300164595246315,
+ "learning_rate": 0.0006,
+ "loss": 2.874295234680176,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489082969432314,
+ "grad_norm": 0.030882105231285095,
+ "learning_rate": 0.0006,
+ "loss": 2.8706257343292236,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503056768558952,
+ "grad_norm": 0.03332842141389847,
+ "learning_rate": 0.0006,
+ "loss": 2.884972095489502,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51703056768559,
+ "grad_norm": 0.03143863379955292,
+ "learning_rate": 0.0006,
+ "loss": 2.8599395751953125,
+ "step": 2269
+ },
+ {
+ "epoch": 31.531004366812226,
+ "grad_norm": 0.029551811516284943,
+ "learning_rate": 0.0006,
+ "loss": 2.8945577144622803,
+ "step": 2270
+ },
+ {
+ "epoch": 31.544978165938865,
+ "grad_norm": 0.030553745105862617,
+ "learning_rate": 0.0006,
+ "loss": 2.8668577671051025,
+ "step": 2271
+ },
+ {
+ "epoch": 31.558951965065503,
+ "grad_norm": 0.030133841559290886,
+ "learning_rate": 0.0006,
+ "loss": 2.8667306900024414,
+ "step": 2272
+ },
+ {
+ "epoch": 31.57292576419214,
+ "grad_norm": 0.0286093782633543,
+ "learning_rate": 0.0006,
+ "loss": 2.8893041610717773,
+ "step": 2273
+ },
+ {
+ "epoch": 31.586899563318777,
+ "grad_norm": 0.028428595513105392,
+ "learning_rate": 0.0006,
+ "loss": 2.9043941497802734,
+ "step": 2274
+ },
+ {
+ "epoch": 31.600873362445416,
+ "grad_norm": 0.028137098997831345,
+ "learning_rate": 0.0006,
+ "loss": 2.8917198181152344,
+ "step": 2275
+ },
+ {
+ "epoch": 31.61484716157205,
+ "grad_norm": 0.02749542146921158,
+ "learning_rate": 0.0006,
+ "loss": 2.8751792907714844,
+ "step": 2276
+ },
+ {
+ "epoch": 31.62882096069869,
+ "grad_norm": 0.027882523834705353,
+ "learning_rate": 0.0006,
+ "loss": 2.875168800354004,
+ "step": 2277
+ },
+ {
+ "epoch": 31.64279475982533,
+ "grad_norm": 0.02791895531117916,
+ "learning_rate": 0.0006,
+ "loss": 2.9148941040039062,
+ "step": 2278
+ },
+ {
+ "epoch": 31.656768558951963,
+ "grad_norm": 0.027536451816558838,
+ "learning_rate": 0.0006,
+ "loss": 2.9327642917633057,
+ "step": 2279
+ },
+ {
+ "epoch": 31.670742358078602,
+ "grad_norm": 0.027606090530753136,
+ "learning_rate": 0.0006,
+ "loss": 2.8927245140075684,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68471615720524,
+ "grad_norm": 0.027958661317825317,
+ "learning_rate": 0.0006,
+ "loss": 2.90574312210083,
+ "step": 2281
+ },
+ {
+ "epoch": 31.69868995633188,
+ "grad_norm": 0.027077173814177513,
+ "learning_rate": 0.0006,
+ "loss": 2.937171459197998,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712663755458514,
+ "grad_norm": 0.027880772948265076,
+ "learning_rate": 0.0006,
+ "loss": 2.9102025032043457,
+ "step": 2283
+ },
+ {
+ "epoch": 31.726637554585153,
+ "grad_norm": 0.028209930285811424,
+ "learning_rate": 0.0006,
+ "loss": 2.9417295455932617,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74061135371179,
+ "grad_norm": 0.02771490439772606,
+ "learning_rate": 0.0006,
+ "loss": 2.923916816711426,
+ "step": 2285
+ },
+ {
+ "epoch": 31.754585152838427,
+ "grad_norm": 0.02741638571023941,
+ "learning_rate": 0.0006,
+ "loss": 2.8878226280212402,
+ "step": 2286
+ },
+ {
+ "epoch": 31.768558951965066,
+ "grad_norm": 0.02630724012851715,
+ "learning_rate": 0.0006,
+ "loss": 2.9191370010375977,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782532751091704,
+ "grad_norm": 0.025788497179746628,
+ "learning_rate": 0.0006,
+ "loss": 2.9376463890075684,
+ "step": 2288
+ },
+ {
+ "epoch": 31.79650655021834,
+ "grad_norm": 0.027125656604766846,
+ "learning_rate": 0.0006,
+ "loss": 2.9007105827331543,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810480349344978,
+ "grad_norm": 0.02757101133465767,
+ "learning_rate": 0.0006,
+ "loss": 2.887821912765503,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824454148471617,
+ "grad_norm": 0.027768995612859726,
+ "learning_rate": 0.0006,
+ "loss": 2.906799793243408,
+ "step": 2291
+ },
+ {
+ "epoch": 31.83842794759825,
+ "grad_norm": 0.027256596833467484,
+ "learning_rate": 0.0006,
+ "loss": 2.931828498840332,
+ "step": 2292
+ },
+ {
+ "epoch": 31.85240174672489,
+ "grad_norm": 0.025560658425092697,
+ "learning_rate": 0.0006,
+ "loss": 2.9481167793273926,
+ "step": 2293
+ },
+ {
+ "epoch": 31.86637554585153,
+ "grad_norm": 0.026807734742760658,
+ "learning_rate": 0.0006,
+ "loss": 2.9222939014434814,
+ "step": 2294
+ },
+ {
+ "epoch": 31.880349344978168,
+ "grad_norm": 0.02557470090687275,
+ "learning_rate": 0.0006,
+ "loss": 2.9439048767089844,
+ "step": 2295
+ },
+ {
+ "epoch": 31.894323144104803,
+ "grad_norm": 0.026537157595157623,
+ "learning_rate": 0.0006,
+ "loss": 2.9390292167663574,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90829694323144,
+ "grad_norm": 0.027184665203094482,
+ "learning_rate": 0.0006,
+ "loss": 2.954176902770996,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92227074235808,
+ "grad_norm": 0.028301499783992767,
+ "learning_rate": 0.0006,
+ "loss": 2.918628692626953,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936244541484715,
+ "grad_norm": 0.028094016015529633,
+ "learning_rate": 0.0006,
+ "loss": 2.964953899383545,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950218340611354,
+ "grad_norm": 0.028538303449749947,
+ "learning_rate": 0.0006,
+ "loss": 2.968601703643799,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964192139737992,
+ "grad_norm": 0.026872891932725906,
+ "learning_rate": 0.0006,
+ "loss": 2.967205047607422,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978165938864628,
+ "grad_norm": 0.02604864165186882,
+ "learning_rate": 0.0006,
+ "loss": 2.964766263961792,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992139737991266,
+ "grad_norm": 0.02906455658376217,
+ "learning_rate": 0.0006,
+ "loss": 2.9137468338012695,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.03300034999847412,
+ "learning_rate": 0.0006,
+ "loss": 2.927333354949951,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 4.2580718994140625,
+ "eval_runtime": 50.1093,
+ "eval_samples_per_second": 48.733,
+ "eval_steps_per_second": 1.537,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397379912664,
+ "grad_norm": 0.032037410885095596,
+ "learning_rate": 0.0006,
+ "loss": 2.742370128631592,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02794759825328,
+ "grad_norm": 0.04566849023103714,
+ "learning_rate": 0.0006,
+ "loss": 2.7334156036376953,
+ "step": 2306
+ },
+ {
+ "epoch": 32.041921397379916,
+ "grad_norm": 0.051055751740932465,
+ "learning_rate": 0.0006,
+ "loss": 2.711585283279419,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05589519650655,
+ "grad_norm": 0.051270145922899246,
+ "learning_rate": 0.0006,
+ "loss": 2.7437586784362793,
+ "step": 2308
+ },
+ {
+ "epoch": 32.069868995633186,
+ "grad_norm": 0.05252866446971893,
+ "learning_rate": 0.0006,
+ "loss": 2.7164244651794434,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083842794759825,
+ "grad_norm": 0.06172860786318779,
+ "learning_rate": 0.0006,
+ "loss": 2.7258028984069824,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09781659388646,
+ "grad_norm": 0.07105273753404617,
+ "learning_rate": 0.0006,
+ "loss": 2.784562587738037,
+ "step": 2311
+ },
+ {
+ "epoch": 32.1117903930131,
+ "grad_norm": 0.0731290802359581,
+ "learning_rate": 0.0006,
+ "loss": 2.7349305152893066,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12576419213974,
+ "grad_norm": 0.06616552174091339,
+ "learning_rate": 0.0006,
+ "loss": 2.7377257347106934,
+ "step": 2313
+ },
+ {
+ "epoch": 32.13973799126637,
+ "grad_norm": 0.060200285166502,
+ "learning_rate": 0.0006,
+ "loss": 2.7815725803375244,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15371179039301,
+ "grad_norm": 0.06167658045887947,
+ "learning_rate": 0.0006,
+ "loss": 2.7790369987487793,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16768558951965,
+ "grad_norm": 0.056791823357343674,
+ "learning_rate": 0.0006,
+ "loss": 2.7982912063598633,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18165938864629,
+ "grad_norm": 0.051635418087244034,
+ "learning_rate": 0.0006,
+ "loss": 2.795342445373535,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19563318777293,
+ "grad_norm": 0.04736269265413284,
+ "learning_rate": 0.0006,
+ "loss": 2.7246901988983154,
+ "step": 2318
+ },
+ {
+ "epoch": 32.209606986899566,
+ "grad_norm": 0.05233636125922203,
+ "learning_rate": 0.0006,
+ "loss": 2.7580928802490234,
+ "step": 2319
+ },
+ {
+ "epoch": 32.223580786026204,
+ "grad_norm": 0.05724285542964935,
+ "learning_rate": 0.0006,
+ "loss": 2.7991695404052734,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237554585152836,
+ "grad_norm": 0.06089061126112938,
+ "learning_rate": 0.0006,
+ "loss": 2.818295478820801,
+ "step": 2321
+ },
+ {
+ "epoch": 32.251528384279474,
+ "grad_norm": 0.06421101838350296,
+ "learning_rate": 0.0006,
+ "loss": 2.8264989852905273,
+ "step": 2322
+ },
+ {
+ "epoch": 32.26550218340611,
+ "grad_norm": 0.06509649753570557,
+ "learning_rate": 0.0006,
+ "loss": 2.847254753112793,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27947598253275,
+ "grad_norm": 0.06762181967496872,
+ "learning_rate": 0.0006,
+ "loss": 2.7911386489868164,
+ "step": 2324
+ },
+ {
+ "epoch": 32.29344978165939,
+ "grad_norm": 0.06925082206726074,
+ "learning_rate": 0.0006,
+ "loss": 2.7912075519561768,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30742358078603,
+ "grad_norm": 0.060691531747579575,
+ "learning_rate": 0.0006,
+ "loss": 2.8301353454589844,
+ "step": 2326
+ },
+ {
+ "epoch": 32.32139737991266,
+ "grad_norm": 0.05697881057858467,
+ "learning_rate": 0.0006,
+ "loss": 2.7735865116119385,
+ "step": 2327
+ },
+ {
+ "epoch": 32.3353711790393,
+ "grad_norm": 0.04882541298866272,
+ "learning_rate": 0.0006,
+ "loss": 2.8305134773254395,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34934497816594,
+ "grad_norm": 0.05006708949804306,
+ "learning_rate": 0.0006,
+ "loss": 2.8248348236083984,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36331877729258,
+ "grad_norm": 0.05743676424026489,
+ "learning_rate": 0.0006,
+ "loss": 2.821669340133667,
+ "step": 2330
+ },
+ {
+ "epoch": 32.377292576419215,
+ "grad_norm": 0.05322850123047829,
+ "learning_rate": 0.0006,
+ "loss": 2.863438606262207,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391266375545854,
+ "grad_norm": 0.04769251123070717,
+ "learning_rate": 0.0006,
+ "loss": 2.8355751037597656,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40524017467249,
+ "grad_norm": 0.047659195959568024,
+ "learning_rate": 0.0006,
+ "loss": 2.8436594009399414,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419213973799124,
+ "grad_norm": 0.04434720054268837,
+ "learning_rate": 0.0006,
+ "loss": 2.8192641735076904,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43318777292576,
+ "grad_norm": 0.04431871324777603,
+ "learning_rate": 0.0006,
+ "loss": 2.8672127723693848,
+ "step": 2335
+ },
+ {
+ "epoch": 32.4471615720524,
+ "grad_norm": 0.04206263646483421,
+ "learning_rate": 0.0006,
+ "loss": 2.858680486679077,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46113537117904,
+ "grad_norm": 0.03994728997349739,
+ "learning_rate": 0.0006,
+ "loss": 2.88413405418396,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47510917030568,
+ "grad_norm": 0.040253281593322754,
+ "learning_rate": 0.0006,
+ "loss": 2.8301520347595215,
+ "step": 2338
+ },
+ {
+ "epoch": 32.48908296943232,
+ "grad_norm": 0.038392145186662674,
+ "learning_rate": 0.0006,
+ "loss": 2.821742534637451,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50305676855895,
+ "grad_norm": 0.03597316890954971,
+ "learning_rate": 0.0006,
+ "loss": 2.899796485900879,
+ "step": 2340
+ },
+ {
+ "epoch": 32.51703056768559,
+ "grad_norm": 0.035971421748399734,
+ "learning_rate": 0.0006,
+ "loss": 2.8710737228393555,
+ "step": 2341
+ },
+ {
+ "epoch": 32.531004366812226,
+ "grad_norm": 0.035625241696834564,
+ "learning_rate": 0.0006,
+ "loss": 2.8744492530822754,
+ "step": 2342
+ },
+ {
+ "epoch": 32.544978165938865,
+ "grad_norm": 0.03281800076365471,
+ "learning_rate": 0.0006,
+ "loss": 2.8716745376586914,
+ "step": 2343
+ },
+ {
+ "epoch": 32.5589519650655,
+ "grad_norm": 0.031027544289827347,
+ "learning_rate": 0.0006,
+ "loss": 2.8424720764160156,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57292576419214,
+ "grad_norm": 0.03187177702784538,
+ "learning_rate": 0.0006,
+ "loss": 2.8346052169799805,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58689956331878,
+ "grad_norm": 0.03155096247792244,
+ "learning_rate": 0.0006,
+ "loss": 2.8507466316223145,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60087336244541,
+ "grad_norm": 0.03118431754410267,
+ "learning_rate": 0.0006,
+ "loss": 2.902325391769409,
+ "step": 2347
+ },
+ {
+ "epoch": 32.61484716157205,
+ "grad_norm": 0.032406579703092575,
+ "learning_rate": 0.0006,
+ "loss": 2.8646554946899414,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62882096069869,
+ "grad_norm": 0.03170140087604523,
+ "learning_rate": 0.0006,
+ "loss": 2.8921170234680176,
+ "step": 2349
+ },
+ {
+ "epoch": 32.64279475982533,
+ "grad_norm": 0.03082709200680256,
+ "learning_rate": 0.0006,
+ "loss": 2.8608059883117676,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65676855895197,
+ "grad_norm": 0.028605740517377853,
+ "learning_rate": 0.0006,
+ "loss": 2.8731441497802734,
+ "step": 2351
+ },
+ {
+ "epoch": 32.670742358078606,
+ "grad_norm": 0.028392326086759567,
+ "learning_rate": 0.0006,
+ "loss": 2.8904993534088135,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68471615720524,
+ "grad_norm": 0.029447391629219055,
+ "learning_rate": 0.0006,
+ "loss": 2.877455472946167,
+ "step": 2353
+ },
+ {
+ "epoch": 32.698689956331876,
+ "grad_norm": 0.031085917726159096,
+ "learning_rate": 0.0006,
+ "loss": 2.8698372840881348,
+ "step": 2354
+ },
+ {
+ "epoch": 32.712663755458514,
+ "grad_norm": 0.029842285439372063,
+ "learning_rate": 0.0006,
+ "loss": 2.8689470291137695,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72663755458515,
+ "grad_norm": 0.03001115471124649,
+ "learning_rate": 0.0006,
+ "loss": 2.9131507873535156,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74061135371179,
+ "grad_norm": 0.028849447146058083,
+ "learning_rate": 0.0006,
+ "loss": 2.8918845653533936,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75458515283843,
+ "grad_norm": 0.02883053943514824,
+ "learning_rate": 0.0006,
+ "loss": 2.896641731262207,
+ "step": 2358
+ },
+ {
+ "epoch": 32.76855895196506,
+ "grad_norm": 0.029307082295417786,
+ "learning_rate": 0.0006,
+ "loss": 2.9132862091064453,
+ "step": 2359
+ },
+ {
+ "epoch": 32.7825327510917,
+ "grad_norm": 0.027899738401174545,
+ "learning_rate": 0.0006,
+ "loss": 2.9068503379821777,
+ "step": 2360
+ },
+ {
+ "epoch": 32.79650655021834,
+ "grad_norm": 0.026993675157427788,
+ "learning_rate": 0.0006,
+ "loss": 2.884234666824341,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81048034934498,
+ "grad_norm": 0.029380464926362038,
+ "learning_rate": 0.0006,
+ "loss": 2.935711622238159,
+ "step": 2362
+ },
+ {
+ "epoch": 32.82445414847162,
+ "grad_norm": 0.029252734035253525,
+ "learning_rate": 0.0006,
+ "loss": 2.9058709144592285,
+ "step": 2363
+ },
+ {
+ "epoch": 32.838427947598255,
+ "grad_norm": 0.028128111734986305,
+ "learning_rate": 0.0006,
+ "loss": 2.8898634910583496,
+ "step": 2364
+ },
+ {
+ "epoch": 32.852401746724894,
+ "grad_norm": 0.027143409475684166,
+ "learning_rate": 0.0006,
+ "loss": 2.910818576812744,
+ "step": 2365
+ },
+ {
+ "epoch": 32.866375545851525,
+ "grad_norm": 0.027796905487775803,
+ "learning_rate": 0.0006,
+ "loss": 2.902510166168213,
+ "step": 2366
+ },
+ {
+ "epoch": 32.880349344978164,
+ "grad_norm": 0.028360942378640175,
+ "learning_rate": 0.0006,
+ "loss": 2.9564762115478516,
+ "step": 2367
+ },
+ {
+ "epoch": 32.8943231441048,
+ "grad_norm": 0.028355851769447327,
+ "learning_rate": 0.0006,
+ "loss": 2.9333415031433105,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90829694323144,
+ "grad_norm": 0.028441734611988068,
+ "learning_rate": 0.0006,
+ "loss": 2.892359495162964,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92227074235808,
+ "grad_norm": 0.027564451098442078,
+ "learning_rate": 0.0006,
+ "loss": 2.946666717529297,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93624454148472,
+ "grad_norm": 0.02841477282345295,
+ "learning_rate": 0.0006,
+ "loss": 2.9348950386047363,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95021834061135,
+ "grad_norm": 0.029114512726664543,
+ "learning_rate": 0.0006,
+ "loss": 2.9399232864379883,
+ "step": 2372
+ },
+ {
+ "epoch": 32.96419213973799,
+ "grad_norm": 0.027796028181910515,
+ "learning_rate": 0.0006,
+ "loss": 2.9034712314605713,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97816593886463,
+ "grad_norm": 0.027424966916441917,
+ "learning_rate": 0.0006,
+ "loss": 2.9037415981292725,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992139737991266,
+ "grad_norm": 0.026966635137796402,
+ "learning_rate": 0.0006,
+ "loss": 2.9162826538085938,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.031656671315431595,
+ "learning_rate": 0.0006,
+ "loss": 2.923030376434326,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 4.279788970947266,
+ "eval_runtime": 49.948,
+ "eval_samples_per_second": 48.891,
+ "eval_steps_per_second": 1.542,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397379912664,
+ "grad_norm": 0.033716026693582535,
+ "learning_rate": 0.0006,
+ "loss": 2.6915321350097656,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02794759825328,
+ "grad_norm": 0.04677571356296539,
+ "learning_rate": 0.0006,
+ "loss": 2.6532812118530273,
+ "step": 2378
+ },
+ {
+ "epoch": 33.041921397379916,
+ "grad_norm": 0.05152101069688797,
+ "learning_rate": 0.0006,
+ "loss": 2.6847143173217773,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05589519650655,
+ "grad_norm": 0.05217320844531059,
+ "learning_rate": 0.0006,
+ "loss": 2.6862430572509766,
+ "step": 2380
+ },
+ {
+ "epoch": 33.069868995633186,
+ "grad_norm": 0.050403568893671036,
+ "learning_rate": 0.0006,
+ "loss": 2.719501495361328,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083842794759825,
+ "grad_norm": 0.05084824562072754,
+ "learning_rate": 0.0006,
+ "loss": 2.692394971847534,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09781659388646,
+ "grad_norm": 0.05117104575037956,
+ "learning_rate": 0.0006,
+ "loss": 2.744056224822998,
+ "step": 2383
+ },
+ {
+ "epoch": 33.1117903930131,
+ "grad_norm": 0.04953674226999283,
+ "learning_rate": 0.0006,
+ "loss": 2.7042603492736816,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12576419213974,
+ "grad_norm": 0.04990607127547264,
+ "learning_rate": 0.0006,
+ "loss": 2.710092544555664,
+ "step": 2385
+ },
+ {
+ "epoch": 33.13973799126637,
+ "grad_norm": 0.05052730068564415,
+ "learning_rate": 0.0006,
+ "loss": 2.730630397796631,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15371179039301,
+ "grad_norm": 0.05005491152405739,
+ "learning_rate": 0.0006,
+ "loss": 2.730384349822998,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16768558951965,
+ "grad_norm": 0.04792829975485802,
+ "learning_rate": 0.0006,
+ "loss": 2.7367067337036133,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18165938864629,
+ "grad_norm": 0.050187911838293076,
+ "learning_rate": 0.0006,
+ "loss": 2.7383334636688232,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19563318777293,
+ "grad_norm": 0.05145636200904846,
+ "learning_rate": 0.0006,
+ "loss": 2.7097063064575195,
+ "step": 2390
+ },
+ {
+ "epoch": 33.209606986899566,
+ "grad_norm": 0.050812143832445145,
+ "learning_rate": 0.0006,
+ "loss": 2.734105348587036,
+ "step": 2391
+ },
+ {
+ "epoch": 33.223580786026204,
+ "grad_norm": 0.05062062293291092,
+ "learning_rate": 0.0006,
+ "loss": 2.783468246459961,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237554585152836,
+ "grad_norm": 0.05209152400493622,
+ "learning_rate": 0.0006,
+ "loss": 2.7660093307495117,
+ "step": 2393
+ },
+ {
+ "epoch": 33.251528384279474,
+ "grad_norm": 0.049624551087617874,
+ "learning_rate": 0.0006,
+ "loss": 2.7733097076416016,
+ "step": 2394
+ },
+ {
+ "epoch": 33.26550218340611,
+ "grad_norm": 0.05187871679663658,
+ "learning_rate": 0.0006,
+ "loss": 2.7738423347473145,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27947598253275,
+ "grad_norm": 0.05329177528619766,
+ "learning_rate": 0.0006,
+ "loss": 2.756072998046875,
+ "step": 2396
+ },
+ {
+ "epoch": 33.29344978165939,
+ "grad_norm": 0.05190843343734741,
+ "learning_rate": 0.0006,
+ "loss": 2.7866833209991455,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30742358078603,
+ "grad_norm": 0.04941689595580101,
+ "learning_rate": 0.0006,
+ "loss": 2.7642035484313965,
+ "step": 2398
+ },
+ {
+ "epoch": 33.32139737991266,
+ "grad_norm": 0.04649437963962555,
+ "learning_rate": 0.0006,
+ "loss": 2.78639817237854,
+ "step": 2399
+ },
+ {
+ "epoch": 33.3353711790393,
+ "grad_norm": 0.044044461101293564,
+ "learning_rate": 0.0006,
+ "loss": 2.7860288619995117,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34934497816594,
+ "grad_norm": 0.04321051016449928,
+ "learning_rate": 0.0006,
+ "loss": 2.7772903442382812,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36331877729258,
+ "grad_norm": 0.045066945254802704,
+ "learning_rate": 0.0006,
+ "loss": 2.780142068862915,
+ "step": 2402
+ },
+ {
+ "epoch": 33.377292576419215,
+ "grad_norm": 0.05035722628235817,
+ "learning_rate": 0.0006,
+ "loss": 2.844978094100952,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391266375545854,
+ "grad_norm": 0.047962989658117294,
+ "learning_rate": 0.0006,
+ "loss": 2.790775775909424,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40524017467249,
+ "grad_norm": 0.04262860491871834,
+ "learning_rate": 0.0006,
+ "loss": 2.791409730911255,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419213973799124,
+ "grad_norm": 0.04162844642996788,
+ "learning_rate": 0.0006,
+ "loss": 2.787597179412842,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43318777292576,
+ "grad_norm": 0.04054319113492966,
+ "learning_rate": 0.0006,
+ "loss": 2.8160147666931152,
+ "step": 2407
+ },
+ {
+ "epoch": 33.4471615720524,
+ "grad_norm": 0.039851218461990356,
+ "learning_rate": 0.0006,
+ "loss": 2.8315625190734863,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46113537117904,
+ "grad_norm": 0.037504494190216064,
+ "learning_rate": 0.0006,
+ "loss": 2.8182449340820312,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47510917030568,
+ "grad_norm": 0.034121323376894,
+ "learning_rate": 0.0006,
+ "loss": 2.795137882232666,
+ "step": 2410
+ },
+ {
+ "epoch": 33.48908296943232,
+ "grad_norm": 0.03626429662108421,
+ "learning_rate": 0.0006,
+ "loss": 2.8132519721984863,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50305676855895,
+ "grad_norm": 0.03472466766834259,
+ "learning_rate": 0.0006,
+ "loss": 2.8613948822021484,
+ "step": 2412
+ },
+ {
+ "epoch": 33.51703056768559,
+ "grad_norm": 0.033197011798620224,
+ "learning_rate": 0.0006,
+ "loss": 2.8210697174072266,
+ "step": 2413
+ },
+ {
+ "epoch": 33.531004366812226,
+ "grad_norm": 0.03290683776140213,
+ "learning_rate": 0.0006,
+ "loss": 2.8431336879730225,
+ "step": 2414
+ },
+ {
+ "epoch": 33.544978165938865,
+ "grad_norm": 0.03219873458147049,
+ "learning_rate": 0.0006,
+ "loss": 2.784018039703369,
+ "step": 2415
+ },
+ {
+ "epoch": 33.5589519650655,
+ "grad_norm": 0.03163836523890495,
+ "learning_rate": 0.0006,
+ "loss": 2.8298420906066895,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57292576419214,
+ "grad_norm": 0.030518434941768646,
+ "learning_rate": 0.0006,
+ "loss": 2.821584701538086,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58689956331878,
+ "grad_norm": 0.029640426859259605,
+ "learning_rate": 0.0006,
+ "loss": 2.8617959022521973,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60087336244541,
+ "grad_norm": 0.03000856749713421,
+ "learning_rate": 0.0006,
+ "loss": 2.837906837463379,
+ "step": 2419
+ },
+ {
+ "epoch": 33.61484716157205,
+ "grad_norm": 0.029703237116336823,
+ "learning_rate": 0.0006,
+ "loss": 2.867283344268799,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62882096069869,
+ "grad_norm": 0.029219454154372215,
+ "learning_rate": 0.0006,
+ "loss": 2.8318774700164795,
+ "step": 2421
+ },
+ {
+ "epoch": 33.64279475982533,
+ "grad_norm": 0.029444001615047455,
+ "learning_rate": 0.0006,
+ "loss": 2.8493499755859375,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65676855895197,
+ "grad_norm": 0.030653655529022217,
+ "learning_rate": 0.0006,
+ "loss": 2.8528506755828857,
+ "step": 2423
+ },
+ {
+ "epoch": 33.670742358078606,
+ "grad_norm": 0.031539395451545715,
+ "learning_rate": 0.0006,
+ "loss": 2.8657748699188232,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68471615720524,
+ "grad_norm": 0.030429808422923088,
+ "learning_rate": 0.0006,
+ "loss": 2.8664650917053223,
+ "step": 2425
+ },
+ {
+ "epoch": 33.698689956331876,
+ "grad_norm": 0.029895296320319176,
+ "learning_rate": 0.0006,
+ "loss": 2.809852123260498,
+ "step": 2426
+ },
+ {
+ "epoch": 33.712663755458514,
+ "grad_norm": 0.03146650269627571,
+ "learning_rate": 0.0006,
+ "loss": 2.862276554107666,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72663755458515,
+ "grad_norm": 0.03134695440530777,
+ "learning_rate": 0.0006,
+ "loss": 2.8528666496276855,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74061135371179,
+ "grad_norm": 0.02905678190290928,
+ "learning_rate": 0.0006,
+ "loss": 2.882528781890869,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75458515283843,
+ "grad_norm": 0.027311185374855995,
+ "learning_rate": 0.0006,
+ "loss": 2.831305980682373,
+ "step": 2430
+ },
+ {
+ "epoch": 33.76855895196506,
+ "grad_norm": 0.029073255136609077,
+ "learning_rate": 0.0006,
+ "loss": 2.853543281555176,
+ "step": 2431
+ },
+ {
+ "epoch": 33.7825327510917,
+ "grad_norm": 0.029640158638358116,
+ "learning_rate": 0.0006,
+ "loss": 2.87980318069458,
+ "step": 2432
+ },
+ {
+ "epoch": 33.79650655021834,
+ "grad_norm": 0.02919093891978264,
+ "learning_rate": 0.0006,
+ "loss": 2.865605592727661,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81048034934498,
+ "grad_norm": 0.0279269777238369,
+ "learning_rate": 0.0006,
+ "loss": 2.8410637378692627,
+ "step": 2434
+ },
+ {
+ "epoch": 33.82445414847162,
+ "grad_norm": 0.028659343719482422,
+ "learning_rate": 0.0006,
+ "loss": 2.905547618865967,
+ "step": 2435
+ },
+ {
+ "epoch": 33.838427947598255,
+ "grad_norm": 0.029965637251734734,
+ "learning_rate": 0.0006,
+ "loss": 2.8864023685455322,
+ "step": 2436
+ },
+ {
+ "epoch": 33.852401746724894,
+ "grad_norm": 0.0290619358420372,
+ "learning_rate": 0.0006,
+ "loss": 2.8675897121429443,
+ "step": 2437
+ },
+ {
+ "epoch": 33.866375545851525,
+ "grad_norm": 0.02953960932791233,
+ "learning_rate": 0.0006,
+ "loss": 2.867520332336426,
+ "step": 2438
+ },
+ {
+ "epoch": 33.880349344978164,
+ "grad_norm": 0.027759216725826263,
+ "learning_rate": 0.0006,
+ "loss": 2.8683114051818848,
+ "step": 2439
+ },
+ {
+ "epoch": 33.8943231441048,
+ "grad_norm": 0.029629496857523918,
+ "learning_rate": 0.0006,
+ "loss": 2.8873648643493652,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90829694323144,
+ "grad_norm": 0.030611209571361542,
+ "learning_rate": 0.0006,
+ "loss": 2.8631839752197266,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92227074235808,
+ "grad_norm": 0.029470890760421753,
+ "learning_rate": 0.0006,
+ "loss": 2.911470651626587,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93624454148472,
+ "grad_norm": 0.02960297465324402,
+ "learning_rate": 0.0006,
+ "loss": 2.889380931854248,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95021834061135,
+ "grad_norm": 0.029129860922694206,
+ "learning_rate": 0.0006,
+ "loss": 2.9198157787323,
+ "step": 2444
+ },
+ {
+ "epoch": 33.96419213973799,
+ "grad_norm": 0.029969653114676476,
+ "learning_rate": 0.0006,
+ "loss": 2.8918609619140625,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97816593886463,
+ "grad_norm": 0.030586522072553635,
+ "learning_rate": 0.0006,
+ "loss": 2.873225212097168,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992139737991266,
+ "grad_norm": 0.02921980805695057,
+ "learning_rate": 0.0006,
+ "loss": 2.887167453765869,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.03401815518736839,
+ "learning_rate": 0.0006,
+ "loss": 2.89204740524292,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 4.312065124511719,
+ "eval_runtime": 49.9591,
+ "eval_samples_per_second": 48.88,
+ "eval_steps_per_second": 1.541,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397379912664,
+ "grad_norm": 0.03744617849588394,
+ "learning_rate": 0.0006,
+ "loss": 2.633880138397217,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02794759825328,
+ "grad_norm": 0.054182395339012146,
+ "learning_rate": 0.0006,
+ "loss": 2.6851818561553955,
+ "step": 2450
+ },
+ {
+ "epoch": 34.041921397379916,
+ "grad_norm": 0.06439153105020523,
+ "learning_rate": 0.0006,
+ "loss": 2.679424524307251,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05589519650655,
+ "grad_norm": 0.06744980812072754,
+ "learning_rate": 0.0006,
+ "loss": 2.687166452407837,
+ "step": 2452
+ },
+ {
+ "epoch": 34.069868995633186,
+ "grad_norm": 0.0673324465751648,
+ "learning_rate": 0.0006,
+ "loss": 2.691007137298584,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083842794759825,
+ "grad_norm": 0.0708099827170372,
+ "learning_rate": 0.0006,
+ "loss": 2.6955928802490234,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09781659388646,
+ "grad_norm": 0.07955297082662582,
+ "learning_rate": 0.0006,
+ "loss": 2.6972296237945557,
+ "step": 2455
+ },
+ {
+ "epoch": 34.1117903930131,
+ "grad_norm": 0.08364879339933395,
+ "learning_rate": 0.0006,
+ "loss": 2.701580762863159,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12576419213974,
+ "grad_norm": 0.07912622392177582,
+ "learning_rate": 0.0006,
+ "loss": 2.7441725730895996,
+ "step": 2457
+ },
+ {
+ "epoch": 34.13973799126637,
+ "grad_norm": 0.0700681209564209,
+ "learning_rate": 0.0006,
+ "loss": 2.713972806930542,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15371179039301,
+ "grad_norm": 0.07052778452634811,
+ "learning_rate": 0.0006,
+ "loss": 2.7288241386413574,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16768558951965,
+ "grad_norm": 0.07464324682950974,
+ "learning_rate": 0.0006,
+ "loss": 2.750864028930664,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18165938864629,
+ "grad_norm": 0.07311835139989853,
+ "learning_rate": 0.0006,
+ "loss": 2.7264657020568848,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19563318777293,
+ "grad_norm": 0.06497597694396973,
+ "learning_rate": 0.0006,
+ "loss": 2.682237148284912,
+ "step": 2462
+ },
+ {
+ "epoch": 34.209606986899566,
+ "grad_norm": 0.05856176093220711,
+ "learning_rate": 0.0006,
+ "loss": 2.7529397010803223,
+ "step": 2463
+ },
+ {
+ "epoch": 34.223580786026204,
+ "grad_norm": 0.061765216290950775,
+ "learning_rate": 0.0006,
+ "loss": 2.7662041187286377,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237554585152836,
+ "grad_norm": 0.0642806887626648,
+ "learning_rate": 0.0006,
+ "loss": 2.7548298835754395,
+ "step": 2465
+ },
+ {
+ "epoch": 34.251528384279474,
+ "grad_norm": 0.06512990593910217,
+ "learning_rate": 0.0006,
+ "loss": 2.7554194927215576,
+ "step": 2466
+ },
+ {
+ "epoch": 34.26550218340611,
+ "grad_norm": 0.0589950829744339,
+ "learning_rate": 0.0006,
+ "loss": 2.769420623779297,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27947598253275,
+ "grad_norm": 0.05657818540930748,
+ "learning_rate": 0.0006,
+ "loss": 2.7650272846221924,
+ "step": 2468
+ },
+ {
+ "epoch": 34.29344978165939,
+ "grad_norm": 0.05322669446468353,
+ "learning_rate": 0.0006,
+ "loss": 2.77347993850708,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30742358078603,
+ "grad_norm": 0.05230143666267395,
+ "learning_rate": 0.0006,
+ "loss": 2.735914468765259,
+ "step": 2470
+ },
+ {
+ "epoch": 34.32139737991266,
+ "grad_norm": 0.05265705659985542,
+ "learning_rate": 0.0006,
+ "loss": 2.7812156677246094,
+ "step": 2471
+ },
+ {
+ "epoch": 34.3353711790393,
+ "grad_norm": 0.05546131730079651,
+ "learning_rate": 0.0006,
+ "loss": 2.7896432876586914,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34934497816594,
+ "grad_norm": 0.05458299443125725,
+ "learning_rate": 0.0006,
+ "loss": 2.819030284881592,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36331877729258,
+ "grad_norm": 0.05159497633576393,
+ "learning_rate": 0.0006,
+ "loss": 2.754566192626953,
+ "step": 2474
+ },
+ {
+ "epoch": 34.377292576419215,
+ "grad_norm": 0.050053127110004425,
+ "learning_rate": 0.0006,
+ "loss": 2.8089818954467773,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391266375545854,
+ "grad_norm": 0.04858779534697533,
+ "learning_rate": 0.0006,
+ "loss": 2.7998061180114746,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40524017467249,
+ "grad_norm": 0.044354405254125595,
+ "learning_rate": 0.0006,
+ "loss": 2.784242630004883,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419213973799124,
+ "grad_norm": 0.04001179337501526,
+ "learning_rate": 0.0006,
+ "loss": 2.783764362335205,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43318777292576,
+ "grad_norm": 0.04385716840624809,
+ "learning_rate": 0.0006,
+ "loss": 2.784696102142334,
+ "step": 2479
+ },
+ {
+ "epoch": 34.4471615720524,
+ "grad_norm": 0.043631598353385925,
+ "learning_rate": 0.0006,
+ "loss": 2.8201065063476562,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46113537117904,
+ "grad_norm": 0.04059017077088356,
+ "learning_rate": 0.0006,
+ "loss": 2.8026556968688965,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47510917030568,
+ "grad_norm": 0.036322809755802155,
+ "learning_rate": 0.0006,
+ "loss": 2.7829108238220215,
+ "step": 2482
+ },
+ {
+ "epoch": 34.48908296943232,
+ "grad_norm": 0.035887353122234344,
+ "learning_rate": 0.0006,
+ "loss": 2.7465004920959473,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50305676855895,
+ "grad_norm": 0.03708780184388161,
+ "learning_rate": 0.0006,
+ "loss": 2.8431384563446045,
+ "step": 2484
+ },
+ {
+ "epoch": 34.51703056768559,
+ "grad_norm": 0.03533044084906578,
+ "learning_rate": 0.0006,
+ "loss": 2.8101470470428467,
+ "step": 2485
+ },
+ {
+ "epoch": 34.531004366812226,
+ "grad_norm": 0.03405928611755371,
+ "learning_rate": 0.0006,
+ "loss": 2.7987847328186035,
+ "step": 2486
+ },
+ {
+ "epoch": 34.544978165938865,
+ "grad_norm": 0.03389867767691612,
+ "learning_rate": 0.0006,
+ "loss": 2.7919681072235107,
+ "step": 2487
+ },
+ {
+ "epoch": 34.5589519650655,
+ "grad_norm": 0.033871643245220184,
+ "learning_rate": 0.0006,
+ "loss": 2.7761473655700684,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57292576419214,
+ "grad_norm": 0.03257331997156143,
+ "learning_rate": 0.0006,
+ "loss": 2.812105894088745,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58689956331878,
+ "grad_norm": 0.03190063685178757,
+ "learning_rate": 0.0006,
+ "loss": 2.8423357009887695,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60087336244541,
+ "grad_norm": 0.031575895845890045,
+ "learning_rate": 0.0006,
+ "loss": 2.7943596839904785,
+ "step": 2491
+ },
+ {
+ "epoch": 34.61484716157205,
+ "grad_norm": 0.03200801834464073,
+ "learning_rate": 0.0006,
+ "loss": 2.8491477966308594,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62882096069869,
+ "grad_norm": 0.030606744810938835,
+ "learning_rate": 0.0006,
+ "loss": 2.813282012939453,
+ "step": 2493
+ },
+ {
+ "epoch": 34.64279475982533,
+ "grad_norm": 0.030069513246417046,
+ "learning_rate": 0.0006,
+ "loss": 2.8009464740753174,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65676855895197,
+ "grad_norm": 0.0297919362783432,
+ "learning_rate": 0.0006,
+ "loss": 2.8645522594451904,
+ "step": 2495
+ },
+ {
+ "epoch": 34.670742358078606,
+ "grad_norm": 0.03045765683054924,
+ "learning_rate": 0.0006,
+ "loss": 2.8353028297424316,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68471615720524,
+ "grad_norm": 0.030040500685572624,
+ "learning_rate": 0.0006,
+ "loss": 2.8319077491760254,
+ "step": 2497
+ },
+ {
+ "epoch": 34.698689956331876,
+ "grad_norm": 0.031257182359695435,
+ "learning_rate": 0.0006,
+ "loss": 2.834317207336426,
+ "step": 2498
+ },
+ {
+ "epoch": 34.712663755458514,
+ "grad_norm": 0.030055133625864983,
+ "learning_rate": 0.0006,
+ "loss": 2.8072402477264404,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72663755458515,
+ "grad_norm": 0.029170751571655273,
+ "learning_rate": 0.0006,
+ "loss": 2.8323609828948975,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74061135371179,
+ "grad_norm": 0.029433568939566612,
+ "learning_rate": 0.0006,
+ "loss": 2.8593740463256836,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75458515283843,
+ "grad_norm": 0.02942809648811817,
+ "learning_rate": 0.0006,
+ "loss": 2.820500373840332,
+ "step": 2502
+ },
+ {
+ "epoch": 34.76855895196506,
+ "grad_norm": 0.029914356768131256,
+ "learning_rate": 0.0006,
+ "loss": 2.834043502807617,
+ "step": 2503
+ },
+ {
+ "epoch": 34.7825327510917,
+ "grad_norm": 0.028835486620664597,
+ "learning_rate": 0.0006,
+ "loss": 2.831223487854004,
+ "step": 2504
+ },
+ {
+ "epoch": 34.79650655021834,
+ "grad_norm": 0.029353221878409386,
+ "learning_rate": 0.0006,
+ "loss": 2.841521739959717,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81048034934498,
+ "grad_norm": 0.028947100043296814,
+ "learning_rate": 0.0006,
+ "loss": 2.831580638885498,
+ "step": 2506
+ },
+ {
+ "epoch": 34.82445414847162,
+ "grad_norm": 0.028323130682110786,
+ "learning_rate": 0.0006,
+ "loss": 2.8628885746002197,
+ "step": 2507
+ },
+ {
+ "epoch": 34.838427947598255,
+ "grad_norm": 0.029734885320067406,
+ "learning_rate": 0.0006,
+ "loss": 2.854740619659424,
+ "step": 2508
+ },
+ {
+ "epoch": 34.852401746724894,
+ "grad_norm": 0.0290104690939188,
+ "learning_rate": 0.0006,
+ "loss": 2.85213041305542,
+ "step": 2509
+ },
+ {
+ "epoch": 34.866375545851525,
+ "grad_norm": 0.029280826449394226,
+ "learning_rate": 0.0006,
+ "loss": 2.857929229736328,
+ "step": 2510
+ },
+ {
+ "epoch": 34.880349344978164,
+ "grad_norm": 0.028648024424910545,
+ "learning_rate": 0.0006,
+ "loss": 2.830528736114502,
+ "step": 2511
+ },
+ {
+ "epoch": 34.8943231441048,
+ "grad_norm": 0.029075585305690765,
+ "learning_rate": 0.0006,
+ "loss": 2.881229877471924,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90829694323144,
+ "grad_norm": 0.028980575501918793,
+ "learning_rate": 0.0006,
+ "loss": 2.868142604827881,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92227074235808,
+ "grad_norm": 0.029943501576781273,
+ "learning_rate": 0.0006,
+ "loss": 2.8303728103637695,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93624454148472,
+ "grad_norm": 0.02938331663608551,
+ "learning_rate": 0.0006,
+ "loss": 2.8427226543426514,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95021834061135,
+ "grad_norm": 0.02868194319307804,
+ "learning_rate": 0.0006,
+ "loss": 2.849410057067871,
+ "step": 2516
+ },
+ {
+ "epoch": 34.96419213973799,
+ "grad_norm": 0.030948800966143608,
+ "learning_rate": 0.0006,
+ "loss": 2.884430170059204,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97816593886463,
+ "grad_norm": 0.030883876606822014,
+ "learning_rate": 0.0006,
+ "loss": 2.8707523345947266,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992139737991266,
+ "grad_norm": 0.03043620102107525,
+ "learning_rate": 0.0006,
+ "loss": 2.851923704147339,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.033082764595746994,
+ "learning_rate": 0.0006,
+ "loss": 2.8447909355163574,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 4.33588171005249,
+ "eval_runtime": 49.934,
+ "eval_samples_per_second": 48.905,
+ "eval_steps_per_second": 1.542,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397379912664,
+ "grad_norm": 0.036395180970430374,
+ "learning_rate": 0.0006,
+ "loss": 2.6331610679626465,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02794759825328,
+ "grad_norm": 0.053629934787750244,
+ "learning_rate": 0.0006,
+ "loss": 2.6128628253936768,
+ "step": 2522
+ },
+ {
+ "epoch": 35.041921397379916,
+ "grad_norm": 0.054892078042030334,
+ "learning_rate": 0.0006,
+ "loss": 2.6575927734375,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05589519650655,
+ "grad_norm": 0.05470828711986542,
+ "learning_rate": 0.0006,
+ "loss": 2.6456429958343506,
+ "step": 2524
+ },
+ {
+ "epoch": 35.069868995633186,
+ "grad_norm": 0.06473619490861893,
+ "learning_rate": 0.0006,
+ "loss": 2.632046937942505,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083842794759825,
+ "grad_norm": 0.0745120495557785,
+ "learning_rate": 0.0006,
+ "loss": 2.6917338371276855,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09781659388646,
+ "grad_norm": 0.0714118480682373,
+ "learning_rate": 0.0006,
+ "loss": 2.6786327362060547,
+ "step": 2527
+ },
+ {
+ "epoch": 35.1117903930131,
+ "grad_norm": 0.06144334003329277,
+ "learning_rate": 0.0006,
+ "loss": 2.6451380252838135,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12576419213974,
+ "grad_norm": 0.060587771236896515,
+ "learning_rate": 0.0006,
+ "loss": 2.6674041748046875,
+ "step": 2529
+ },
+ {
+ "epoch": 35.13973799126637,
+ "grad_norm": 0.06250529736280441,
+ "learning_rate": 0.0006,
+ "loss": 2.6516387462615967,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15371179039301,
+ "grad_norm": 0.06093739718198776,
+ "learning_rate": 0.0006,
+ "loss": 2.6811413764953613,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16768558951965,
+ "grad_norm": 0.05771986022591591,
+ "learning_rate": 0.0006,
+ "loss": 2.691535711288452,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18165938864629,
+ "grad_norm": 0.05855504050850868,
+ "learning_rate": 0.0006,
+ "loss": 2.665607213973999,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19563318777293,
+ "grad_norm": 0.05824999883770943,
+ "learning_rate": 0.0006,
+ "loss": 2.721041202545166,
+ "step": 2534
+ },
+ {
+ "epoch": 35.209606986899566,
+ "grad_norm": 0.053909532725811005,
+ "learning_rate": 0.0006,
+ "loss": 2.660585403442383,
+ "step": 2535
+ },
+ {
+ "epoch": 35.223580786026204,
+ "grad_norm": 0.055602360516786575,
+ "learning_rate": 0.0006,
+ "loss": 2.6967453956604004,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237554585152836,
+ "grad_norm": 0.0574912391602993,
+ "learning_rate": 0.0006,
+ "loss": 2.7239747047424316,
+ "step": 2537
+ },
+ {
+ "epoch": 35.251528384279474,
+ "grad_norm": 0.054333578795194626,
+ "learning_rate": 0.0006,
+ "loss": 2.6704535484313965,
+ "step": 2538
+ },
+ {
+ "epoch": 35.26550218340611,
+ "grad_norm": 0.05948286131024361,
+ "learning_rate": 0.0006,
+ "loss": 2.720869541168213,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27947598253275,
+ "grad_norm": 0.06190783903002739,
+ "learning_rate": 0.0006,
+ "loss": 2.721590757369995,
+ "step": 2540
+ },
+ {
+ "epoch": 35.29344978165939,
+ "grad_norm": 0.05553191900253296,
+ "learning_rate": 0.0006,
+ "loss": 2.7517542839050293,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30742358078603,
+ "grad_norm": 0.04760485514998436,
+ "learning_rate": 0.0006,
+ "loss": 2.7198104858398438,
+ "step": 2542
+ },
+ {
+ "epoch": 35.32139737991266,
+ "grad_norm": 0.04803032800555229,
+ "learning_rate": 0.0006,
+ "loss": 2.7268385887145996,
+ "step": 2543
+ },
+ {
+ "epoch": 35.3353711790393,
+ "grad_norm": 0.047935858368873596,
+ "learning_rate": 0.0006,
+ "loss": 2.766300678253174,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34934497816594,
+ "grad_norm": 0.043682098388671875,
+ "learning_rate": 0.0006,
+ "loss": 2.735440254211426,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36331877729258,
+ "grad_norm": 0.0460897758603096,
+ "learning_rate": 0.0006,
+ "loss": 2.717315912246704,
+ "step": 2546
+ },
+ {
+ "epoch": 35.377292576419215,
+ "grad_norm": 0.044396013021469116,
+ "learning_rate": 0.0006,
+ "loss": 2.7212257385253906,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391266375545854,
+ "grad_norm": 0.040433261543512344,
+ "learning_rate": 0.0006,
+ "loss": 2.723316192626953,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40524017467249,
+ "grad_norm": 0.041403185576200485,
+ "learning_rate": 0.0006,
+ "loss": 2.759697675704956,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419213973799124,
+ "grad_norm": 0.03993840515613556,
+ "learning_rate": 0.0006,
+ "loss": 2.775761604309082,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43318777292576,
+ "grad_norm": 0.03806636855006218,
+ "learning_rate": 0.0006,
+ "loss": 2.750617027282715,
+ "step": 2551
+ },
+ {
+ "epoch": 35.4471615720524,
+ "grad_norm": 0.03736311197280884,
+ "learning_rate": 0.0006,
+ "loss": 2.7172799110412598,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46113537117904,
+ "grad_norm": 0.036035846918821335,
+ "learning_rate": 0.0006,
+ "loss": 2.759298801422119,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47510917030568,
+ "grad_norm": 0.03488297760486603,
+ "learning_rate": 0.0006,
+ "loss": 2.747471809387207,
+ "step": 2554
+ },
+ {
+ "epoch": 35.48908296943232,
+ "grad_norm": 0.03363402560353279,
+ "learning_rate": 0.0006,
+ "loss": 2.759998083114624,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50305676855895,
+ "grad_norm": 0.03320737183094025,
+ "learning_rate": 0.0006,
+ "loss": 2.7580599784851074,
+ "step": 2556
+ },
+ {
+ "epoch": 35.51703056768559,
+ "grad_norm": 0.03354880213737488,
+ "learning_rate": 0.0006,
+ "loss": 2.7684097290039062,
+ "step": 2557
+ },
+ {
+ "epoch": 35.531004366812226,
+ "grad_norm": 0.03128495812416077,
+ "learning_rate": 0.0006,
+ "loss": 2.7520344257354736,
+ "step": 2558
+ },
+ {
+ "epoch": 35.544978165938865,
+ "grad_norm": 0.031224513426423073,
+ "learning_rate": 0.0006,
+ "loss": 2.770404815673828,
+ "step": 2559
+ },
+ {
+ "epoch": 35.5589519650655,
+ "grad_norm": 0.03233371675014496,
+ "learning_rate": 0.0006,
+ "loss": 2.7809855937957764,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57292576419214,
+ "grad_norm": 0.032018471509218216,
+ "learning_rate": 0.0006,
+ "loss": 2.7970263957977295,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58689956331878,
+ "grad_norm": 0.032062090933322906,
+ "learning_rate": 0.0006,
+ "loss": 2.7884416580200195,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60087336244541,
+ "grad_norm": 0.03408309072256088,
+ "learning_rate": 0.0006,
+ "loss": 2.764061450958252,
+ "step": 2563
+ },
+ {
+ "epoch": 35.61484716157205,
+ "grad_norm": 0.0338619202375412,
+ "learning_rate": 0.0006,
+ "loss": 2.789513111114502,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62882096069869,
+ "grad_norm": 0.03228410705924034,
+ "learning_rate": 0.0006,
+ "loss": 2.8063037395477295,
+ "step": 2565
+ },
+ {
+ "epoch": 35.64279475982533,
+ "grad_norm": 0.03316644951701164,
+ "learning_rate": 0.0006,
+ "loss": 2.7694640159606934,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65676855895197,
+ "grad_norm": 0.033389851450920105,
+ "learning_rate": 0.0006,
+ "loss": 2.7624075412750244,
+ "step": 2567
+ },
+ {
+ "epoch": 35.670742358078606,
+ "grad_norm": 0.03307284414768219,
+ "learning_rate": 0.0006,
+ "loss": 2.785665988922119,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68471615720524,
+ "grad_norm": 0.030986541882157326,
+ "learning_rate": 0.0006,
+ "loss": 2.7866663932800293,
+ "step": 2569
+ },
+ {
+ "epoch": 35.698689956331876,
+ "grad_norm": 0.03094528801739216,
+ "learning_rate": 0.0006,
+ "loss": 2.8076682090759277,
+ "step": 2570
+ },
+ {
+ "epoch": 35.712663755458514,
+ "grad_norm": 0.03171663358807564,
+ "learning_rate": 0.0006,
+ "loss": 2.782132148742676,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72663755458515,
+ "grad_norm": 0.0331517718732357,
+ "learning_rate": 0.0006,
+ "loss": 2.8277947902679443,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74061135371179,
+ "grad_norm": 0.03378507122397423,
+ "learning_rate": 0.0006,
+ "loss": 2.8356106281280518,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75458515283843,
+ "grad_norm": 0.032871708273887634,
+ "learning_rate": 0.0006,
+ "loss": 2.791121244430542,
+ "step": 2574
+ },
+ {
+ "epoch": 35.76855895196506,
+ "grad_norm": 0.0323161855340004,
+ "learning_rate": 0.0006,
+ "loss": 2.8413639068603516,
+ "step": 2575
+ },
+ {
+ "epoch": 35.7825327510917,
+ "grad_norm": 0.030985118821263313,
+ "learning_rate": 0.0006,
+ "loss": 2.8311750888824463,
+ "step": 2576
+ },
+ {
+ "epoch": 35.79650655021834,
+ "grad_norm": 0.03137309476733208,
+ "learning_rate": 0.0006,
+ "loss": 2.8018269538879395,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81048034934498,
+ "grad_norm": 0.0310555137693882,
+ "learning_rate": 0.0006,
+ "loss": 2.828988552093506,
+ "step": 2578
+ },
+ {
+ "epoch": 35.82445414847162,
+ "grad_norm": 0.0319097563624382,
+ "learning_rate": 0.0006,
+ "loss": 2.8161017894744873,
+ "step": 2579
+ },
+ {
+ "epoch": 35.838427947598255,
+ "grad_norm": 0.03197171911597252,
+ "learning_rate": 0.0006,
+ "loss": 2.8399734497070312,
+ "step": 2580
+ },
+ {
+ "epoch": 35.852401746724894,
+ "grad_norm": 0.030828699469566345,
+ "learning_rate": 0.0006,
+ "loss": 2.836793899536133,
+ "step": 2581
+ },
+ {
+ "epoch": 35.866375545851525,
+ "grad_norm": 0.03147060424089432,
+ "learning_rate": 0.0006,
+ "loss": 2.844219923019409,
+ "step": 2582
+ },
+ {
+ "epoch": 35.880349344978164,
+ "grad_norm": 0.02972196415066719,
+ "learning_rate": 0.0006,
+ "loss": 2.817901611328125,
+ "step": 2583
+ },
+ {
+ "epoch": 35.8943231441048,
+ "grad_norm": 0.02843536250293255,
+ "learning_rate": 0.0006,
+ "loss": 2.838104486465454,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90829694323144,
+ "grad_norm": 0.029629549011588097,
+ "learning_rate": 0.0006,
+ "loss": 2.821699857711792,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92227074235808,
+ "grad_norm": 0.02935348078608513,
+ "learning_rate": 0.0006,
+ "loss": 2.8552277088165283,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93624454148472,
+ "grad_norm": 0.029901504516601562,
+ "learning_rate": 0.0006,
+ "loss": 2.8445591926574707,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95021834061135,
+ "grad_norm": 0.029276540502905846,
+ "learning_rate": 0.0006,
+ "loss": 2.8441314697265625,
+ "step": 2588
+ },
+ {
+ "epoch": 35.96419213973799,
+ "grad_norm": 0.029745396226644516,
+ "learning_rate": 0.0006,
+ "loss": 2.896646022796631,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97816593886463,
+ "grad_norm": 0.02929696813225746,
+ "learning_rate": 0.0006,
+ "loss": 2.8974666595458984,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992139737991266,
+ "grad_norm": 0.02984563633799553,
+ "learning_rate": 0.0006,
+ "loss": 2.8272669315338135,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.03494219109416008,
+ "learning_rate": 0.0006,
+ "loss": 2.8428730964660645,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 4.369523525238037,
+ "eval_runtime": 50.0529,
+ "eval_samples_per_second": 48.788,
+ "eval_steps_per_second": 1.538,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01397379912664,
+ "grad_norm": 0.03490602225065231,
+ "learning_rate": 0.0006,
+ "loss": 2.5940639972686768,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02794759825328,
+ "grad_norm": 0.050851449370384216,
+ "learning_rate": 0.0006,
+ "loss": 2.593388557434082,
+ "step": 2594
+ },
+ {
+ "epoch": 36.041921397379916,
+ "grad_norm": 0.060013141483068466,
+ "learning_rate": 0.0006,
+ "loss": 2.6344308853149414,
+ "step": 2595
+ },
+ {
+ "epoch": 36.05589519650655,
+ "grad_norm": 0.06508053094148636,
+ "learning_rate": 0.0006,
+ "loss": 2.6312448978424072,
+ "step": 2596
+ },
+ {
+ "epoch": 36.069868995633186,
+ "grad_norm": 0.06916631013154984,
+ "learning_rate": 0.0006,
+ "loss": 2.600289821624756,
+ "step": 2597
+ },
+ {
+ "epoch": 36.083842794759825,
+ "grad_norm": 0.07091353833675385,
+ "learning_rate": 0.0006,
+ "loss": 2.609846830368042,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09781659388646,
+ "grad_norm": 0.07601680606603622,
+ "learning_rate": 0.0006,
+ "loss": 2.654294490814209,
+ "step": 2599
+ },
+ {
+ "epoch": 36.1117903930131,
+ "grad_norm": 0.07646584510803223,
+ "learning_rate": 0.0006,
+ "loss": 2.6450939178466797,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12576419213974,
+ "grad_norm": 0.07362814247608185,
+ "learning_rate": 0.0006,
+ "loss": 2.659259796142578,
+ "step": 2601
+ },
+ {
+ "epoch": 36.13973799126637,
+ "grad_norm": 0.08164925128221512,
+ "learning_rate": 0.0006,
+ "loss": 2.662081718444824,
+ "step": 2602
+ },
+ {
+ "epoch": 36.15371179039301,
+ "grad_norm": 0.08094824850559235,
+ "learning_rate": 0.0006,
+ "loss": 2.667121410369873,
+ "step": 2603
+ },
+ {
+ "epoch": 36.16768558951965,
+ "grad_norm": 0.07605643570423126,
+ "learning_rate": 0.0006,
+ "loss": 2.6883997917175293,
+ "step": 2604
+ },
+ {
+ "epoch": 36.18165938864629,
+ "grad_norm": 0.06676740944385529,
+ "learning_rate": 0.0006,
+ "loss": 2.663100242614746,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19563318777293,
+ "grad_norm": 0.0635375827550888,
+ "learning_rate": 0.0006,
+ "loss": 2.6472132205963135,
+ "step": 2606
+ },
+ {
+ "epoch": 36.209606986899566,
+ "grad_norm": 0.06065768003463745,
+ "learning_rate": 0.0006,
+ "loss": 2.6462607383728027,
+ "step": 2607
+ },
+ {
+ "epoch": 36.223580786026204,
+ "grad_norm": 0.06379321962594986,
+ "learning_rate": 0.0006,
+ "loss": 2.6894640922546387,
+ "step": 2608
+ },
+ {
+ "epoch": 36.237554585152836,
+ "grad_norm": 0.06459622085094452,
+ "learning_rate": 0.0006,
+ "loss": 2.7406561374664307,
+ "step": 2609
+ },
+ {
+ "epoch": 36.251528384279474,
+ "grad_norm": 0.06207888945937157,
+ "learning_rate": 0.0006,
+ "loss": 2.7089905738830566,
+ "step": 2610
+ },
+ {
+ "epoch": 36.26550218340611,
+ "grad_norm": 0.06348677724599838,
+ "learning_rate": 0.0006,
+ "loss": 2.725884437561035,
+ "step": 2611
+ },
+ {
+ "epoch": 36.27947598253275,
+ "grad_norm": 0.06256353110074997,
+ "learning_rate": 0.0006,
+ "loss": 2.7075743675231934,
+ "step": 2612
+ },
+ {
+ "epoch": 36.29344978165939,
+ "grad_norm": 0.05954873189330101,
+ "learning_rate": 0.0006,
+ "loss": 2.7114720344543457,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30742358078603,
+ "grad_norm": 0.0583999864757061,
+ "learning_rate": 0.0006,
+ "loss": 2.7207398414611816,
+ "step": 2614
+ },
+ {
+ "epoch": 36.32139737991266,
+ "grad_norm": 0.061629343777894974,
+ "learning_rate": 0.0006,
+ "loss": 2.7031898498535156,
+ "step": 2615
+ },
+ {
+ "epoch": 36.3353711790393,
+ "grad_norm": 0.061459898948669434,
+ "learning_rate": 0.0006,
+ "loss": 2.735596179962158,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34934497816594,
+ "grad_norm": 0.053438540548086166,
+ "learning_rate": 0.0006,
+ "loss": 2.7351770401000977,
+ "step": 2617
+ },
+ {
+ "epoch": 36.36331877729258,
+ "grad_norm": 0.04568196460604668,
+ "learning_rate": 0.0006,
+ "loss": 2.7138471603393555,
+ "step": 2618
+ },
+ {
+ "epoch": 36.377292576419215,
+ "grad_norm": 0.04499683529138565,
+ "learning_rate": 0.0006,
+ "loss": 2.730149030685425,
+ "step": 2619
+ },
+ {
+ "epoch": 36.391266375545854,
+ "grad_norm": 0.04277553781867027,
+ "learning_rate": 0.0006,
+ "loss": 2.7424325942993164,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40524017467249,
+ "grad_norm": 0.04207402467727661,
+ "learning_rate": 0.0006,
+ "loss": 2.754441261291504,
+ "step": 2621
+ },
+ {
+ "epoch": 36.419213973799124,
+ "grad_norm": 0.03976842388510704,
+ "learning_rate": 0.0006,
+ "loss": 2.732058048248291,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43318777292576,
+ "grad_norm": 0.03874991834163666,
+ "learning_rate": 0.0006,
+ "loss": 2.7042877674102783,
+ "step": 2623
+ },
+ {
+ "epoch": 36.4471615720524,
+ "grad_norm": 0.03784204646945,
+ "learning_rate": 0.0006,
+ "loss": 2.7523202896118164,
+ "step": 2624
+ },
+ {
+ "epoch": 36.46113537117904,
+ "grad_norm": 0.03787514567375183,
+ "learning_rate": 0.0006,
+ "loss": 2.738129138946533,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47510917030568,
+ "grad_norm": 0.037570249289274216,
+ "learning_rate": 0.0006,
+ "loss": 2.743746757507324,
+ "step": 2626
+ },
+ {
+ "epoch": 36.48908296943232,
+ "grad_norm": 0.035842426121234894,
+ "learning_rate": 0.0006,
+ "loss": 2.7416439056396484,
+ "step": 2627
+ },
+ {
+ "epoch": 36.50305676855895,
+ "grad_norm": 0.034818656742572784,
+ "learning_rate": 0.0006,
+ "loss": 2.7759745121002197,
+ "step": 2628
+ },
+ {
+ "epoch": 36.51703056768559,
+ "grad_norm": 0.034450169652700424,
+ "learning_rate": 0.0006,
+ "loss": 2.736292839050293,
+ "step": 2629
+ },
+ {
+ "epoch": 36.531004366812226,
+ "grad_norm": 0.03515971824526787,
+ "learning_rate": 0.0006,
+ "loss": 2.764486312866211,
+ "step": 2630
+ },
+ {
+ "epoch": 36.544978165938865,
+ "grad_norm": 0.03290434926748276,
+ "learning_rate": 0.0006,
+ "loss": 2.740506410598755,
+ "step": 2631
+ },
+ {
+ "epoch": 36.5589519650655,
+ "grad_norm": 0.03414572775363922,
+ "learning_rate": 0.0006,
+ "loss": 2.751025676727295,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57292576419214,
+ "grad_norm": 0.03288982808589935,
+ "learning_rate": 0.0006,
+ "loss": 2.745819568634033,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58689956331878,
+ "grad_norm": 0.03212651610374451,
+ "learning_rate": 0.0006,
+ "loss": 2.7716150283813477,
+ "step": 2634
+ },
+ {
+ "epoch": 36.60087336244541,
+ "grad_norm": 0.03207395225763321,
+ "learning_rate": 0.0006,
+ "loss": 2.793949604034424,
+ "step": 2635
+ },
+ {
+ "epoch": 36.61484716157205,
+ "grad_norm": 0.033769235014915466,
+ "learning_rate": 0.0006,
+ "loss": 2.769838333129883,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62882096069869,
+ "grad_norm": 0.031914398074150085,
+ "learning_rate": 0.0006,
+ "loss": 2.770416021347046,
+ "step": 2637
+ },
+ {
+ "epoch": 36.64279475982533,
+ "grad_norm": 0.031676363199949265,
+ "learning_rate": 0.0006,
+ "loss": 2.7603726387023926,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65676855895197,
+ "grad_norm": 0.03254379332065582,
+ "learning_rate": 0.0006,
+ "loss": 2.778376340866089,
+ "step": 2639
+ },
+ {
+ "epoch": 36.670742358078606,
+ "grad_norm": 0.03292303532361984,
+ "learning_rate": 0.0006,
+ "loss": 2.7858481407165527,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68471615720524,
+ "grad_norm": 0.03174275904893875,
+ "learning_rate": 0.0006,
+ "loss": 2.742514133453369,
+ "step": 2641
+ },
+ {
+ "epoch": 36.698689956331876,
+ "grad_norm": 0.03137286379933357,
+ "learning_rate": 0.0006,
+ "loss": 2.801379919052124,
+ "step": 2642
+ },
+ {
+ "epoch": 36.712663755458514,
+ "grad_norm": 0.03203504532575607,
+ "learning_rate": 0.0006,
+ "loss": 2.779083251953125,
+ "step": 2643
+ },
+ {
+ "epoch": 36.72663755458515,
+ "grad_norm": 0.03179030492901802,
+ "learning_rate": 0.0006,
+ "loss": 2.771510124206543,
+ "step": 2644
+ },
+ {
+ "epoch": 36.74061135371179,
+ "grad_norm": 0.032224394381046295,
+ "learning_rate": 0.0006,
+ "loss": 2.8102035522460938,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75458515283843,
+ "grad_norm": 0.031711332499980927,
+ "learning_rate": 0.0006,
+ "loss": 2.767608404159546,
+ "step": 2646
+ },
+ {
+ "epoch": 36.76855895196506,
+ "grad_norm": 0.03080599568784237,
+ "learning_rate": 0.0006,
+ "loss": 2.782320499420166,
+ "step": 2647
+ },
+ {
+ "epoch": 36.7825327510917,
+ "grad_norm": 0.030831260606646538,
+ "learning_rate": 0.0006,
+ "loss": 2.7803382873535156,
+ "step": 2648
+ },
+ {
+ "epoch": 36.79650655021834,
+ "grad_norm": 0.031478576362133026,
+ "learning_rate": 0.0006,
+ "loss": 2.8040833473205566,
+ "step": 2649
+ },
+ {
+ "epoch": 36.81048034934498,
+ "grad_norm": 0.03126827999949455,
+ "learning_rate": 0.0006,
+ "loss": 2.8021888732910156,
+ "step": 2650
+ },
+ {
+ "epoch": 36.82445414847162,
+ "grad_norm": 0.031755175441503525,
+ "learning_rate": 0.0006,
+ "loss": 2.8038527965545654,
+ "step": 2651
+ },
+ {
+ "epoch": 36.838427947598255,
+ "grad_norm": 0.030794523656368256,
+ "learning_rate": 0.0006,
+ "loss": 2.8320565223693848,
+ "step": 2652
+ },
+ {
+ "epoch": 36.852401746724894,
+ "grad_norm": 0.031342003494501114,
+ "learning_rate": 0.0006,
+ "loss": 2.8298325538635254,
+ "step": 2653
+ },
+ {
+ "epoch": 36.866375545851525,
+ "grad_norm": 0.03070714697241783,
+ "learning_rate": 0.0006,
+ "loss": 2.8219547271728516,
+ "step": 2654
+ },
+ {
+ "epoch": 36.880349344978164,
+ "grad_norm": 0.03040326200425625,
+ "learning_rate": 0.0006,
+ "loss": 2.8132448196411133,
+ "step": 2655
+ },
+ {
+ "epoch": 36.8943231441048,
+ "grad_norm": 0.02934376150369644,
+ "learning_rate": 0.0006,
+ "loss": 2.811267852783203,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90829694323144,
+ "grad_norm": 0.029699301347136497,
+ "learning_rate": 0.0006,
+ "loss": 2.8061418533325195,
+ "step": 2657
+ },
+ {
+ "epoch": 36.92227074235808,
+ "grad_norm": 0.029918788000941277,
+ "learning_rate": 0.0006,
+ "loss": 2.794674873352051,
+ "step": 2658
+ },
+ {
+ "epoch": 36.93624454148472,
+ "grad_norm": 0.02991834282875061,
+ "learning_rate": 0.0006,
+ "loss": 2.816540241241455,
+ "step": 2659
+ },
+ {
+ "epoch": 36.95021834061135,
+ "grad_norm": 0.03143605217337608,
+ "learning_rate": 0.0006,
+ "loss": 2.8300628662109375,
+ "step": 2660
+ },
+ {
+ "epoch": 36.96419213973799,
+ "grad_norm": 0.031110897660255432,
+ "learning_rate": 0.0006,
+ "loss": 2.8169212341308594,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97816593886463,
+ "grad_norm": 0.029465164989233017,
+ "learning_rate": 0.0006,
+ "loss": 2.8461415767669678,
+ "step": 2662
+ },
+ {
+ "epoch": 36.992139737991266,
+ "grad_norm": 0.030419915914535522,
+ "learning_rate": 0.0006,
+ "loss": 2.7931275367736816,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.035463880747556686,
+ "learning_rate": 0.0006,
+ "loss": 2.8003745079040527,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 4.394656181335449,
+ "eval_runtime": 50.0682,
+ "eval_samples_per_second": 48.773,
+ "eval_steps_per_second": 1.538,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01397379912664,
+ "grad_norm": 0.039373818784952164,
+ "learning_rate": 0.0006,
+ "loss": 2.592010259628296,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02794759825328,
+ "grad_norm": 0.05262094363570213,
+ "learning_rate": 0.0006,
+ "loss": 2.589017391204834,
+ "step": 2666
+ },
+ {
+ "epoch": 37.041921397379916,
+ "grad_norm": 0.05636955797672272,
+ "learning_rate": 0.0006,
+ "loss": 2.561220407485962,
+ "step": 2667
+ },
+ {
+ "epoch": 37.05589519650655,
+ "grad_norm": 0.051275093108415604,
+ "learning_rate": 0.0006,
+ "loss": 2.5869505405426025,
+ "step": 2668
+ },
+ {
+ "epoch": 37.069868995633186,
+ "grad_norm": 0.0468141995370388,
+ "learning_rate": 0.0006,
+ "loss": 2.553292751312256,
+ "step": 2669
+ },
+ {
+ "epoch": 37.083842794759825,
+ "grad_norm": 0.052394118160009384,
+ "learning_rate": 0.0006,
+ "loss": 2.5985684394836426,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09781659388646,
+ "grad_norm": 0.05675945058465004,
+ "learning_rate": 0.0006,
+ "loss": 2.582035779953003,
+ "step": 2671
+ },
+ {
+ "epoch": 37.1117903930131,
+ "grad_norm": 0.06314633041620255,
+ "learning_rate": 0.0006,
+ "loss": 2.580726146697998,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12576419213974,
+ "grad_norm": 0.06775114685297012,
+ "learning_rate": 0.0006,
+ "loss": 2.624112606048584,
+ "step": 2673
+ },
+ {
+ "epoch": 37.13973799126637,
+ "grad_norm": 0.06685114651918411,
+ "learning_rate": 0.0006,
+ "loss": 2.62692928314209,
+ "step": 2674
+ },
+ {
+ "epoch": 37.15371179039301,
+ "grad_norm": 0.06467496603727341,
+ "learning_rate": 0.0006,
+ "loss": 2.6223182678222656,
+ "step": 2675
+ },
+ {
+ "epoch": 37.16768558951965,
+ "grad_norm": 0.06089473515748978,
+ "learning_rate": 0.0006,
+ "loss": 2.5847854614257812,
+ "step": 2676
+ },
+ {
+ "epoch": 37.18165938864629,
+ "grad_norm": 0.07048582285642624,
+ "learning_rate": 0.0006,
+ "loss": 2.638550043106079,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19563318777293,
+ "grad_norm": 0.078424371778965,
+ "learning_rate": 0.0006,
+ "loss": 2.6740827560424805,
+ "step": 2678
+ },
+ {
+ "epoch": 37.209606986899566,
+ "grad_norm": 0.0736483484506607,
+ "learning_rate": 0.0006,
+ "loss": 2.628920078277588,
+ "step": 2679
+ },
+ {
+ "epoch": 37.223580786026204,
+ "grad_norm": 0.07170230895280838,
+ "learning_rate": 0.0006,
+ "loss": 2.6470746994018555,
+ "step": 2680
+ },
+ {
+ "epoch": 37.237554585152836,
+ "grad_norm": 0.07302328944206238,
+ "learning_rate": 0.0006,
+ "loss": 2.668698310852051,
+ "step": 2681
+ },
+ {
+ "epoch": 37.251528384279474,
+ "grad_norm": 0.06811188161373138,
+ "learning_rate": 0.0006,
+ "loss": 2.661168336868286,
+ "step": 2682
+ },
+ {
+ "epoch": 37.26550218340611,
+ "grad_norm": 0.06356747448444366,
+ "learning_rate": 0.0006,
+ "loss": 2.6648004055023193,
+ "step": 2683
+ },
+ {
+ "epoch": 37.27947598253275,
+ "grad_norm": 0.06473492085933685,
+ "learning_rate": 0.0006,
+ "loss": 2.651553153991699,
+ "step": 2684
+ },
+ {
+ "epoch": 37.29344978165939,
+ "grad_norm": 0.06337012350559235,
+ "learning_rate": 0.0006,
+ "loss": 2.709005832672119,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30742358078603,
+ "grad_norm": 0.058579571545124054,
+ "learning_rate": 0.0006,
+ "loss": 2.6779019832611084,
+ "step": 2686
+ },
+ {
+ "epoch": 37.32139737991266,
+ "grad_norm": 0.059343740344047546,
+ "learning_rate": 0.0006,
+ "loss": 2.6886844635009766,
+ "step": 2687
+ },
+ {
+ "epoch": 37.3353711790393,
+ "grad_norm": 0.0641576424241066,
+ "learning_rate": 0.0006,
+ "loss": 2.713414192199707,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34934497816594,
+ "grad_norm": 0.05990339443087578,
+ "learning_rate": 0.0006,
+ "loss": 2.7016336917877197,
+ "step": 2689
+ },
+ {
+ "epoch": 37.36331877729258,
+ "grad_norm": 0.055855415761470795,
+ "learning_rate": 0.0006,
+ "loss": 2.6898298263549805,
+ "step": 2690
+ },
+ {
+ "epoch": 37.377292576419215,
+ "grad_norm": 0.052080344408750534,
+ "learning_rate": 0.0006,
+ "loss": 2.6867756843566895,
+ "step": 2691
+ },
+ {
+ "epoch": 37.391266375545854,
+ "grad_norm": 0.04859146848320961,
+ "learning_rate": 0.0006,
+ "loss": 2.68493390083313,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40524017467249,
+ "grad_norm": 0.04352935776114464,
+ "learning_rate": 0.0006,
+ "loss": 2.6639962196350098,
+ "step": 2693
+ },
+ {
+ "epoch": 37.419213973799124,
+ "grad_norm": 0.04342535510659218,
+ "learning_rate": 0.0006,
+ "loss": 2.735095977783203,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43318777292576,
+ "grad_norm": 0.0410088449716568,
+ "learning_rate": 0.0006,
+ "loss": 2.7232322692871094,
+ "step": 2695
+ },
+ {
+ "epoch": 37.4471615720524,
+ "grad_norm": 0.039221733808517456,
+ "learning_rate": 0.0006,
+ "loss": 2.7050681114196777,
+ "step": 2696
+ },
+ {
+ "epoch": 37.46113537117904,
+ "grad_norm": 0.04178847372531891,
+ "learning_rate": 0.0006,
+ "loss": 2.724748134613037,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47510917030568,
+ "grad_norm": 0.039962198585271835,
+ "learning_rate": 0.0006,
+ "loss": 2.719238758087158,
+ "step": 2698
+ },
+ {
+ "epoch": 37.48908296943232,
+ "grad_norm": 0.03615671768784523,
+ "learning_rate": 0.0006,
+ "loss": 2.713306427001953,
+ "step": 2699
+ },
+ {
+ "epoch": 37.50305676855895,
+ "grad_norm": 0.036234475672245026,
+ "learning_rate": 0.0006,
+ "loss": 2.7221012115478516,
+ "step": 2700
+ },
+ {
+ "epoch": 37.51703056768559,
+ "grad_norm": 0.03482469543814659,
+ "learning_rate": 0.0006,
+ "loss": 2.7185797691345215,
+ "step": 2701
+ },
+ {
+ "epoch": 37.531004366812226,
+ "grad_norm": 0.0354674831032753,
+ "learning_rate": 0.0006,
+ "loss": 2.7420835494995117,
+ "step": 2702
+ },
+ {
+ "epoch": 37.544978165938865,
+ "grad_norm": 0.03426757827401161,
+ "learning_rate": 0.0006,
+ "loss": 2.7190346717834473,
+ "step": 2703
+ },
+ {
+ "epoch": 37.5589519650655,
+ "grad_norm": 0.033486198633909225,
+ "learning_rate": 0.0006,
+ "loss": 2.7215936183929443,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57292576419214,
+ "grad_norm": 0.03335055336356163,
+ "learning_rate": 0.0006,
+ "loss": 2.756931781768799,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58689956331878,
+ "grad_norm": 0.032623328268527985,
+ "learning_rate": 0.0006,
+ "loss": 2.753610849380493,
+ "step": 2706
+ },
+ {
+ "epoch": 37.60087336244541,
+ "grad_norm": 0.032821573317050934,
+ "learning_rate": 0.0006,
+ "loss": 2.7263944149017334,
+ "step": 2707
+ },
+ {
+ "epoch": 37.61484716157205,
+ "grad_norm": 0.0339694619178772,
+ "learning_rate": 0.0006,
+ "loss": 2.7686405181884766,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62882096069869,
+ "grad_norm": 0.03282426670193672,
+ "learning_rate": 0.0006,
+ "loss": 2.747377634048462,
+ "step": 2709
+ },
+ {
+ "epoch": 37.64279475982533,
+ "grad_norm": 0.03218618035316467,
+ "learning_rate": 0.0006,
+ "loss": 2.735844850540161,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65676855895197,
+ "grad_norm": 0.03223560005426407,
+ "learning_rate": 0.0006,
+ "loss": 2.7668800354003906,
+ "step": 2711
+ },
+ {
+ "epoch": 37.670742358078606,
+ "grad_norm": 0.033299706876277924,
+ "learning_rate": 0.0006,
+ "loss": 2.7376902103424072,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68471615720524,
+ "grad_norm": 0.03223729878664017,
+ "learning_rate": 0.0006,
+ "loss": 2.764571189880371,
+ "step": 2713
+ },
+ {
+ "epoch": 37.698689956331876,
+ "grad_norm": 0.03010910004377365,
+ "learning_rate": 0.0006,
+ "loss": 2.807518482208252,
+ "step": 2714
+ },
+ {
+ "epoch": 37.712663755458514,
+ "grad_norm": 0.032127492129802704,
+ "learning_rate": 0.0006,
+ "loss": 2.748624801635742,
+ "step": 2715
+ },
+ {
+ "epoch": 37.72663755458515,
+ "grad_norm": 0.03201155364513397,
+ "learning_rate": 0.0006,
+ "loss": 2.7762606143951416,
+ "step": 2716
+ },
+ {
+ "epoch": 37.74061135371179,
+ "grad_norm": 0.03101099096238613,
+ "learning_rate": 0.0006,
+ "loss": 2.7716212272644043,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75458515283843,
+ "grad_norm": 0.03134670853614807,
+ "learning_rate": 0.0006,
+ "loss": 2.758235216140747,
+ "step": 2718
+ },
+ {
+ "epoch": 37.76855895196506,
+ "grad_norm": 0.03176133707165718,
+ "learning_rate": 0.0006,
+ "loss": 2.766803741455078,
+ "step": 2719
+ },
+ {
+ "epoch": 37.7825327510917,
+ "grad_norm": 0.03252684697508812,
+ "learning_rate": 0.0006,
+ "loss": 2.761983871459961,
+ "step": 2720
+ },
+ {
+ "epoch": 37.79650655021834,
+ "grad_norm": 0.03122265450656414,
+ "learning_rate": 0.0006,
+ "loss": 2.7825980186462402,
+ "step": 2721
+ },
+ {
+ "epoch": 37.81048034934498,
+ "grad_norm": 0.031970955431461334,
+ "learning_rate": 0.0006,
+ "loss": 2.7722127437591553,
+ "step": 2722
+ },
+ {
+ "epoch": 37.82445414847162,
+ "grad_norm": 0.032369960099458694,
+ "learning_rate": 0.0006,
+ "loss": 2.774726390838623,
+ "step": 2723
+ },
+ {
+ "epoch": 37.838427947598255,
+ "grad_norm": 0.030761610716581345,
+ "learning_rate": 0.0006,
+ "loss": 2.792672872543335,
+ "step": 2724
+ },
+ {
+ "epoch": 37.852401746724894,
+ "grad_norm": 0.030011910945177078,
+ "learning_rate": 0.0006,
+ "loss": 2.803577423095703,
+ "step": 2725
+ },
+ {
+ "epoch": 37.866375545851525,
+ "grad_norm": 0.02982843853533268,
+ "learning_rate": 0.0006,
+ "loss": 2.7959346771240234,
+ "step": 2726
+ },
+ {
+ "epoch": 37.880349344978164,
+ "grad_norm": 0.030303213745355606,
+ "learning_rate": 0.0006,
+ "loss": 2.7652835845947266,
+ "step": 2727
+ },
+ {
+ "epoch": 37.8943231441048,
+ "grad_norm": 0.0287516750395298,
+ "learning_rate": 0.0006,
+ "loss": 2.764218807220459,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90829694323144,
+ "grad_norm": 0.029441531747579575,
+ "learning_rate": 0.0006,
+ "loss": 2.779582977294922,
+ "step": 2729
+ },
+ {
+ "epoch": 37.92227074235808,
+ "grad_norm": 0.03061698004603386,
+ "learning_rate": 0.0006,
+ "loss": 2.7803516387939453,
+ "step": 2730
+ },
+ {
+ "epoch": 37.93624454148472,
+ "grad_norm": 0.030252723023295403,
+ "learning_rate": 0.0006,
+ "loss": 2.7625863552093506,
+ "step": 2731
+ },
+ {
+ "epoch": 37.95021834061135,
+ "grad_norm": 0.02976156584918499,
+ "learning_rate": 0.0006,
+ "loss": 2.7869396209716797,
+ "step": 2732
+ },
+ {
+ "epoch": 37.96419213973799,
+ "grad_norm": 0.029136599972844124,
+ "learning_rate": 0.0006,
+ "loss": 2.7765321731567383,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97816593886463,
+ "grad_norm": 0.030161233618855476,
+ "learning_rate": 0.0006,
+ "loss": 2.791417360305786,
+ "step": 2734
+ },
+ {
+ "epoch": 37.992139737991266,
+ "grad_norm": 0.030011065304279327,
+ "learning_rate": 0.0006,
+ "loss": 2.7904176712036133,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.03508797287940979,
+ "learning_rate": 0.0006,
+ "loss": 2.7349987030029297,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 4.422760486602783,
+ "eval_runtime": 53.9373,
+ "eval_samples_per_second": 45.275,
+ "eval_steps_per_second": 1.428,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01397379912664,
+ "grad_norm": 0.03668081387877464,
+ "learning_rate": 0.0006,
+ "loss": 2.53720760345459,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02794759825328,
+ "grad_norm": 0.04997535049915314,
+ "learning_rate": 0.0006,
+ "loss": 2.5344130992889404,
+ "step": 2738
+ },
+ {
+ "epoch": 38.041921397379916,
+ "grad_norm": 0.05997481942176819,
+ "learning_rate": 0.0006,
+ "loss": 2.5450313091278076,
+ "step": 2739
+ },
+ {
+ "epoch": 38.05589519650655,
+ "grad_norm": 0.062439143657684326,
+ "learning_rate": 0.0006,
+ "loss": 2.5441112518310547,
+ "step": 2740
+ },
+ {
+ "epoch": 38.069868995633186,
+ "grad_norm": 0.06186581030488014,
+ "learning_rate": 0.0006,
+ "loss": 2.572591781616211,
+ "step": 2741
+ },
+ {
+ "epoch": 38.083842794759825,
+ "grad_norm": 0.0676693245768547,
+ "learning_rate": 0.0006,
+ "loss": 2.569788932800293,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09781659388646,
+ "grad_norm": 0.06468940526247025,
+ "learning_rate": 0.0006,
+ "loss": 2.5714502334594727,
+ "step": 2743
+ },
+ {
+ "epoch": 38.1117903930131,
+ "grad_norm": 0.055295590311288834,
+ "learning_rate": 0.0006,
+ "loss": 2.58925199508667,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12576419213974,
+ "grad_norm": 0.06001334637403488,
+ "learning_rate": 0.0006,
+ "loss": 2.583470582962036,
+ "step": 2745
+ },
+ {
+ "epoch": 38.13973799126637,
+ "grad_norm": 0.06829231232404709,
+ "learning_rate": 0.0006,
+ "loss": 2.6078848838806152,
+ "step": 2746
+ },
+ {
+ "epoch": 38.15371179039301,
+ "grad_norm": 0.07044653594493866,
+ "learning_rate": 0.0006,
+ "loss": 2.5761101245880127,
+ "step": 2747
+ },
+ {
+ "epoch": 38.16768558951965,
+ "grad_norm": 0.07410730421543121,
+ "learning_rate": 0.0006,
+ "loss": 2.596060276031494,
+ "step": 2748
+ },
+ {
+ "epoch": 38.18165938864629,
+ "grad_norm": 0.07986581325531006,
+ "learning_rate": 0.0006,
+ "loss": 2.617733955383301,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19563318777293,
+ "grad_norm": 0.08090859651565552,
+ "learning_rate": 0.0006,
+ "loss": 2.651851177215576,
+ "step": 2750
+ },
+ {
+ "epoch": 38.209606986899566,
+ "grad_norm": 0.0723685622215271,
+ "learning_rate": 0.0006,
+ "loss": 2.6376562118530273,
+ "step": 2751
+ },
+ {
+ "epoch": 38.223580786026204,
+ "grad_norm": 0.06757329404354095,
+ "learning_rate": 0.0006,
+ "loss": 2.6036531925201416,
+ "step": 2752
+ },
+ {
+ "epoch": 38.237554585152836,
+ "grad_norm": 0.05956781655550003,
+ "learning_rate": 0.0006,
+ "loss": 2.617344379425049,
+ "step": 2753
+ },
+ {
+ "epoch": 38.251528384279474,
+ "grad_norm": 0.05907238647341728,
+ "learning_rate": 0.0006,
+ "loss": 2.6348252296447754,
+ "step": 2754
+ },
+ {
+ "epoch": 38.26550218340611,
+ "grad_norm": 0.0665246993303299,
+ "learning_rate": 0.0006,
+ "loss": 2.6281394958496094,
+ "step": 2755
+ },
+ {
+ "epoch": 38.27947598253275,
+ "grad_norm": 0.06223048269748688,
+ "learning_rate": 0.0006,
+ "loss": 2.6564953327178955,
+ "step": 2756
+ },
+ {
+ "epoch": 38.29344978165939,
+ "grad_norm": 0.06228935718536377,
+ "learning_rate": 0.0006,
+ "loss": 2.646735429763794,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30742358078603,
+ "grad_norm": 0.06451544910669327,
+ "learning_rate": 0.0006,
+ "loss": 2.6907505989074707,
+ "step": 2758
+ },
+ {
+ "epoch": 38.32139737991266,
+ "grad_norm": 0.060543883591890335,
+ "learning_rate": 0.0006,
+ "loss": 2.6545357704162598,
+ "step": 2759
+ },
+ {
+ "epoch": 38.3353711790393,
+ "grad_norm": 0.06213623657822609,
+ "learning_rate": 0.0006,
+ "loss": 2.6602659225463867,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34934497816594,
+ "grad_norm": 0.06142106652259827,
+ "learning_rate": 0.0006,
+ "loss": 2.6603493690490723,
+ "step": 2761
+ },
+ {
+ "epoch": 38.36331877729258,
+ "grad_norm": 0.05699477344751358,
+ "learning_rate": 0.0006,
+ "loss": 2.705566883087158,
+ "step": 2762
+ },
+ {
+ "epoch": 38.377292576419215,
+ "grad_norm": 0.05346331000328064,
+ "learning_rate": 0.0006,
+ "loss": 2.6819496154785156,
+ "step": 2763
+ },
+ {
+ "epoch": 38.391266375545854,
+ "grad_norm": 0.0479198656976223,
+ "learning_rate": 0.0006,
+ "loss": 2.66951847076416,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40524017467249,
+ "grad_norm": 0.045958783477544785,
+ "learning_rate": 0.0006,
+ "loss": 2.6856331825256348,
+ "step": 2765
+ },
+ {
+ "epoch": 38.419213973799124,
+ "grad_norm": 0.04896858334541321,
+ "learning_rate": 0.0006,
+ "loss": 2.7199149131774902,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43318777292576,
+ "grad_norm": 0.047721102833747864,
+ "learning_rate": 0.0006,
+ "loss": 2.6921496391296387,
+ "step": 2767
+ },
+ {
+ "epoch": 38.4471615720524,
+ "grad_norm": 0.04214667156338692,
+ "learning_rate": 0.0006,
+ "loss": 2.6727256774902344,
+ "step": 2768
+ },
+ {
+ "epoch": 38.46113537117904,
+ "grad_norm": 0.039888642728328705,
+ "learning_rate": 0.0006,
+ "loss": 2.713071584701538,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47510917030568,
+ "grad_norm": 0.038344573229551315,
+ "learning_rate": 0.0006,
+ "loss": 2.670497417449951,
+ "step": 2770
+ },
+ {
+ "epoch": 38.48908296943232,
+ "grad_norm": 0.039165955036878586,
+ "learning_rate": 0.0006,
+ "loss": 2.6962404251098633,
+ "step": 2771
+ },
+ {
+ "epoch": 38.50305676855895,
+ "grad_norm": 0.04007214680314064,
+ "learning_rate": 0.0006,
+ "loss": 2.708710193634033,
+ "step": 2772
+ },
+ {
+ "epoch": 38.51703056768559,
+ "grad_norm": 0.03807772323489189,
+ "learning_rate": 0.0006,
+ "loss": 2.6834216117858887,
+ "step": 2773
+ },
+ {
+ "epoch": 38.531004366812226,
+ "grad_norm": 0.03653077036142349,
+ "learning_rate": 0.0006,
+ "loss": 2.7046523094177246,
+ "step": 2774
+ },
+ {
+ "epoch": 38.544978165938865,
+ "grad_norm": 0.03634301573038101,
+ "learning_rate": 0.0006,
+ "loss": 2.740858554840088,
+ "step": 2775
+ },
+ {
+ "epoch": 38.5589519650655,
+ "grad_norm": 0.03424578905105591,
+ "learning_rate": 0.0006,
+ "loss": 2.682713747024536,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57292576419214,
+ "grad_norm": 0.0343807190656662,
+ "learning_rate": 0.0006,
+ "loss": 2.7189817428588867,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58689956331878,
+ "grad_norm": 0.0348835363984108,
+ "learning_rate": 0.0006,
+ "loss": 2.724893569946289,
+ "step": 2778
+ },
+ {
+ "epoch": 38.60087336244541,
+ "grad_norm": 0.03508136048913002,
+ "learning_rate": 0.0006,
+ "loss": 2.73518705368042,
+ "step": 2779
+ },
+ {
+ "epoch": 38.61484716157205,
+ "grad_norm": 0.03429904207587242,
+ "learning_rate": 0.0006,
+ "loss": 2.736717939376831,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62882096069869,
+ "grad_norm": 0.03205183520913124,
+ "learning_rate": 0.0006,
+ "loss": 2.721712589263916,
+ "step": 2781
+ },
+ {
+ "epoch": 38.64279475982533,
+ "grad_norm": 0.03305064141750336,
+ "learning_rate": 0.0006,
+ "loss": 2.6993613243103027,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65676855895197,
+ "grad_norm": 0.035046663135290146,
+ "learning_rate": 0.0006,
+ "loss": 2.7248196601867676,
+ "step": 2783
+ },
+ {
+ "epoch": 38.670742358078606,
+ "grad_norm": 0.03516519442200661,
+ "learning_rate": 0.0006,
+ "loss": 2.7311136722564697,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68471615720524,
+ "grad_norm": 0.03347651660442352,
+ "learning_rate": 0.0006,
+ "loss": 2.72220778465271,
+ "step": 2785
+ },
+ {
+ "epoch": 38.698689956331876,
+ "grad_norm": 0.032616935670375824,
+ "learning_rate": 0.0006,
+ "loss": 2.755411148071289,
+ "step": 2786
+ },
+ {
+ "epoch": 38.712663755458514,
+ "grad_norm": 0.033312223851680756,
+ "learning_rate": 0.0006,
+ "loss": 2.732534885406494,
+ "step": 2787
+ },
+ {
+ "epoch": 38.72663755458515,
+ "grad_norm": 0.033402036875486374,
+ "learning_rate": 0.0006,
+ "loss": 2.7253611087799072,
+ "step": 2788
+ },
+ {
+ "epoch": 38.74061135371179,
+ "grad_norm": 0.03428902477025986,
+ "learning_rate": 0.0006,
+ "loss": 2.7514877319335938,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75458515283843,
+ "grad_norm": 0.032412827014923096,
+ "learning_rate": 0.0006,
+ "loss": 2.7110795974731445,
+ "step": 2790
+ },
+ {
+ "epoch": 38.76855895196506,
+ "grad_norm": 0.03287288919091225,
+ "learning_rate": 0.0006,
+ "loss": 2.7271571159362793,
+ "step": 2791
+ },
+ {
+ "epoch": 38.7825327510917,
+ "grad_norm": 0.032132744789123535,
+ "learning_rate": 0.0006,
+ "loss": 2.7556326389312744,
+ "step": 2792
+ },
+ {
+ "epoch": 38.79650655021834,
+ "grad_norm": 0.03317050263285637,
+ "learning_rate": 0.0006,
+ "loss": 2.7323567867279053,
+ "step": 2793
+ },
+ {
+ "epoch": 38.81048034934498,
+ "grad_norm": 0.032200053334236145,
+ "learning_rate": 0.0006,
+ "loss": 2.7799339294433594,
+ "step": 2794
+ },
+ {
+ "epoch": 38.82445414847162,
+ "grad_norm": 0.03184610605239868,
+ "learning_rate": 0.0006,
+ "loss": 2.749330520629883,
+ "step": 2795
+ },
+ {
+ "epoch": 38.838427947598255,
+ "grad_norm": 0.03251924365758896,
+ "learning_rate": 0.0006,
+ "loss": 2.7194664478302,
+ "step": 2796
+ },
+ {
+ "epoch": 38.852401746724894,
+ "grad_norm": 0.03341902419924736,
+ "learning_rate": 0.0006,
+ "loss": 2.7730190753936768,
+ "step": 2797
+ },
+ {
+ "epoch": 38.866375545851525,
+ "grad_norm": 0.03277548775076866,
+ "learning_rate": 0.0006,
+ "loss": 2.748821258544922,
+ "step": 2798
+ },
+ {
+ "epoch": 38.880349344978164,
+ "grad_norm": 0.033009354025125504,
+ "learning_rate": 0.0006,
+ "loss": 2.7735595703125,
+ "step": 2799
+ },
+ {
+ "epoch": 38.8943231441048,
+ "grad_norm": 0.033856526017189026,
+ "learning_rate": 0.0006,
+ "loss": 2.828324794769287,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90829694323144,
+ "grad_norm": 0.03593005985021591,
+ "learning_rate": 0.0006,
+ "loss": 2.7579283714294434,
+ "step": 2801
+ },
+ {
+ "epoch": 38.92227074235808,
+ "grad_norm": 0.03454919904470444,
+ "learning_rate": 0.0006,
+ "loss": 2.7957282066345215,
+ "step": 2802
+ },
+ {
+ "epoch": 38.93624454148472,
+ "grad_norm": 0.03228568285703659,
+ "learning_rate": 0.0006,
+ "loss": 2.7695181369781494,
+ "step": 2803
+ },
+ {
+ "epoch": 38.95021834061135,
+ "grad_norm": 0.030785217881202698,
+ "learning_rate": 0.0006,
+ "loss": 2.7762393951416016,
+ "step": 2804
+ },
+ {
+ "epoch": 38.96419213973799,
+ "grad_norm": 0.03203628957271576,
+ "learning_rate": 0.0006,
+ "loss": 2.7768611907958984,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97816593886463,
+ "grad_norm": 0.031972482800483704,
+ "learning_rate": 0.0006,
+ "loss": 2.7826151847839355,
+ "step": 2806
+ },
+ {
+ "epoch": 38.992139737991266,
+ "grad_norm": 0.03173843398690224,
+ "learning_rate": 0.0006,
+ "loss": 2.8008720874786377,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.03597976267337799,
+ "learning_rate": 0.0006,
+ "loss": 2.761889934539795,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 4.451672077178955,
+ "eval_runtime": 50.0424,
+ "eval_samples_per_second": 48.799,
+ "eval_steps_per_second": 1.539,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01397379912664,
+ "grad_norm": 0.035917509347200394,
+ "learning_rate": 0.0006,
+ "loss": 2.5109643936157227,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02794759825328,
+ "grad_norm": 0.048883527517318726,
+ "learning_rate": 0.0006,
+ "loss": 2.4966325759887695,
+ "step": 2810
+ },
+ {
+ "epoch": 39.041921397379916,
+ "grad_norm": 0.0520956926047802,
+ "learning_rate": 0.0006,
+ "loss": 2.5114963054656982,
+ "step": 2811
+ },
+ {
+ "epoch": 39.05589519650655,
+ "grad_norm": 0.05243239551782608,
+ "learning_rate": 0.0006,
+ "loss": 2.509138584136963,
+ "step": 2812
+ },
+ {
+ "epoch": 39.069868995633186,
+ "grad_norm": 0.05494685098528862,
+ "learning_rate": 0.0006,
+ "loss": 2.5110630989074707,
+ "step": 2813
+ },
+ {
+ "epoch": 39.083842794759825,
+ "grad_norm": 0.05914803221821785,
+ "learning_rate": 0.0006,
+ "loss": 2.582940101623535,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09781659388646,
+ "grad_norm": 0.06418700516223907,
+ "learning_rate": 0.0006,
+ "loss": 2.549758195877075,
+ "step": 2815
+ },
+ {
+ "epoch": 39.1117903930131,
+ "grad_norm": 0.06571007519960403,
+ "learning_rate": 0.0006,
+ "loss": 2.5406949520111084,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12576419213974,
+ "grad_norm": 0.06867309659719467,
+ "learning_rate": 0.0006,
+ "loss": 2.5541300773620605,
+ "step": 2817
+ },
+ {
+ "epoch": 39.13973799126637,
+ "grad_norm": 0.07403446733951569,
+ "learning_rate": 0.0006,
+ "loss": 2.543792963027954,
+ "step": 2818
+ },
+ {
+ "epoch": 39.15371179039301,
+ "grad_norm": 0.07405679672956467,
+ "learning_rate": 0.0006,
+ "loss": 2.6033244132995605,
+ "step": 2819
+ },
+ {
+ "epoch": 39.16768558951965,
+ "grad_norm": 0.07382416725158691,
+ "learning_rate": 0.0006,
+ "loss": 2.554922580718994,
+ "step": 2820
+ },
+ {
+ "epoch": 39.18165938864629,
+ "grad_norm": 0.07891468703746796,
+ "learning_rate": 0.0006,
+ "loss": 2.540740489959717,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19563318777293,
+ "grad_norm": 0.08196107298135757,
+ "learning_rate": 0.0006,
+ "loss": 2.587352752685547,
+ "step": 2822
+ },
+ {
+ "epoch": 39.209606986899566,
+ "grad_norm": 0.08047913014888763,
+ "learning_rate": 0.0006,
+ "loss": 2.625654935836792,
+ "step": 2823
+ },
+ {
+ "epoch": 39.223580786026204,
+ "grad_norm": 0.0823366791009903,
+ "learning_rate": 0.0006,
+ "loss": 2.6116280555725098,
+ "step": 2824
+ },
+ {
+ "epoch": 39.237554585152836,
+ "grad_norm": 0.0757770836353302,
+ "learning_rate": 0.0006,
+ "loss": 2.6480040550231934,
+ "step": 2825
+ },
+ {
+ "epoch": 39.251528384279474,
+ "grad_norm": 0.06412673741579056,
+ "learning_rate": 0.0006,
+ "loss": 2.630819082260132,
+ "step": 2826
+ },
+ {
+ "epoch": 39.26550218340611,
+ "grad_norm": 0.06720094382762909,
+ "learning_rate": 0.0006,
+ "loss": 2.6194870471954346,
+ "step": 2827
+ },
+ {
+ "epoch": 39.27947598253275,
+ "grad_norm": 0.07029621303081512,
+ "learning_rate": 0.0006,
+ "loss": 2.6223702430725098,
+ "step": 2828
+ },
+ {
+ "epoch": 39.29344978165939,
+ "grad_norm": 0.06339625269174576,
+ "learning_rate": 0.0006,
+ "loss": 2.673099994659424,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30742358078603,
+ "grad_norm": 0.05949276313185692,
+ "learning_rate": 0.0006,
+ "loss": 2.6469547748565674,
+ "step": 2830
+ },
+ {
+ "epoch": 39.32139737991266,
+ "grad_norm": 0.053506240248680115,
+ "learning_rate": 0.0006,
+ "loss": 2.653002977371216,
+ "step": 2831
+ },
+ {
+ "epoch": 39.3353711790393,
+ "grad_norm": 0.05102718994021416,
+ "learning_rate": 0.0006,
+ "loss": 2.6284027099609375,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34934497816594,
+ "grad_norm": 0.05140380188822746,
+ "learning_rate": 0.0006,
+ "loss": 2.6136865615844727,
+ "step": 2833
+ },
+ {
+ "epoch": 39.36331877729258,
+ "grad_norm": 0.05189013481140137,
+ "learning_rate": 0.0006,
+ "loss": 2.624032974243164,
+ "step": 2834
+ },
+ {
+ "epoch": 39.377292576419215,
+ "grad_norm": 0.0518079474568367,
+ "learning_rate": 0.0006,
+ "loss": 2.6563472747802734,
+ "step": 2835
+ },
+ {
+ "epoch": 39.391266375545854,
+ "grad_norm": 0.048856109380722046,
+ "learning_rate": 0.0006,
+ "loss": 2.6669912338256836,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40524017467249,
+ "grad_norm": 0.04633012041449547,
+ "learning_rate": 0.0006,
+ "loss": 2.6586191654205322,
+ "step": 2837
+ },
+ {
+ "epoch": 39.419213973799124,
+ "grad_norm": 0.04814019426703453,
+ "learning_rate": 0.0006,
+ "loss": 2.667342185974121,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43318777292576,
+ "grad_norm": 0.0436280220746994,
+ "learning_rate": 0.0006,
+ "loss": 2.665431499481201,
+ "step": 2839
+ },
+ {
+ "epoch": 39.4471615720524,
+ "grad_norm": 0.041196923702955246,
+ "learning_rate": 0.0006,
+ "loss": 2.6492676734924316,
+ "step": 2840
+ },
+ {
+ "epoch": 39.46113537117904,
+ "grad_norm": 0.0395592525601387,
+ "learning_rate": 0.0006,
+ "loss": 2.6705574989318848,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47510917030568,
+ "grad_norm": 0.0385267548263073,
+ "learning_rate": 0.0006,
+ "loss": 2.6977322101593018,
+ "step": 2842
+ },
+ {
+ "epoch": 39.48908296943232,
+ "grad_norm": 0.039683643728494644,
+ "learning_rate": 0.0006,
+ "loss": 2.7133736610412598,
+ "step": 2843
+ },
+ {
+ "epoch": 39.50305676855895,
+ "grad_norm": 0.038295429199934006,
+ "learning_rate": 0.0006,
+ "loss": 2.6389265060424805,
+ "step": 2844
+ },
+ {
+ "epoch": 39.51703056768559,
+ "grad_norm": 0.040176548063755035,
+ "learning_rate": 0.0006,
+ "loss": 2.698523998260498,
+ "step": 2845
+ },
+ {
+ "epoch": 39.531004366812226,
+ "grad_norm": 0.04064524546265602,
+ "learning_rate": 0.0006,
+ "loss": 2.656214952468872,
+ "step": 2846
+ },
+ {
+ "epoch": 39.544978165938865,
+ "grad_norm": 0.03750603273510933,
+ "learning_rate": 0.0006,
+ "loss": 2.678588628768921,
+ "step": 2847
+ },
+ {
+ "epoch": 39.5589519650655,
+ "grad_norm": 0.035905614495277405,
+ "learning_rate": 0.0006,
+ "loss": 2.704439640045166,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57292576419214,
+ "grad_norm": 0.039338648319244385,
+ "learning_rate": 0.0006,
+ "loss": 2.6884841918945312,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58689956331878,
+ "grad_norm": 0.04038030281662941,
+ "learning_rate": 0.0006,
+ "loss": 2.6797773838043213,
+ "step": 2850
+ },
+ {
+ "epoch": 39.60087336244541,
+ "grad_norm": 0.037040162831544876,
+ "learning_rate": 0.0006,
+ "loss": 2.6956043243408203,
+ "step": 2851
+ },
+ {
+ "epoch": 39.61484716157205,
+ "grad_norm": 0.034921690821647644,
+ "learning_rate": 0.0006,
+ "loss": 2.694153308868408,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62882096069869,
+ "grad_norm": 0.03549359738826752,
+ "learning_rate": 0.0006,
+ "loss": 2.7244749069213867,
+ "step": 2853
+ },
+ {
+ "epoch": 39.64279475982533,
+ "grad_norm": 0.035824477672576904,
+ "learning_rate": 0.0006,
+ "loss": 2.7074999809265137,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65676855895197,
+ "grad_norm": 0.034420810639858246,
+ "learning_rate": 0.0006,
+ "loss": 2.7221333980560303,
+ "step": 2855
+ },
+ {
+ "epoch": 39.670742358078606,
+ "grad_norm": 0.03463764861226082,
+ "learning_rate": 0.0006,
+ "loss": 2.727510929107666,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68471615720524,
+ "grad_norm": 0.03375630080699921,
+ "learning_rate": 0.0006,
+ "loss": 2.669036388397217,
+ "step": 2857
+ },
+ {
+ "epoch": 39.698689956331876,
+ "grad_norm": 0.034777212888002396,
+ "learning_rate": 0.0006,
+ "loss": 2.722949504852295,
+ "step": 2858
+ },
+ {
+ "epoch": 39.712663755458514,
+ "grad_norm": 0.033754393458366394,
+ "learning_rate": 0.0006,
+ "loss": 2.691465139389038,
+ "step": 2859
+ },
+ {
+ "epoch": 39.72663755458515,
+ "grad_norm": 0.03520940989255905,
+ "learning_rate": 0.0006,
+ "loss": 2.699446201324463,
+ "step": 2860
+ },
+ {
+ "epoch": 39.74061135371179,
+ "grad_norm": 0.03567482531070709,
+ "learning_rate": 0.0006,
+ "loss": 2.7141056060791016,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75458515283843,
+ "grad_norm": 0.0348379909992218,
+ "learning_rate": 0.0006,
+ "loss": 2.768491268157959,
+ "step": 2862
+ },
+ {
+ "epoch": 39.76855895196506,
+ "grad_norm": 0.03526907041668892,
+ "learning_rate": 0.0006,
+ "loss": 2.7331318855285645,
+ "step": 2863
+ },
+ {
+ "epoch": 39.7825327510917,
+ "grad_norm": 0.03621441870927811,
+ "learning_rate": 0.0006,
+ "loss": 2.7229490280151367,
+ "step": 2864
+ },
+ {
+ "epoch": 39.79650655021834,
+ "grad_norm": 0.03302044793963432,
+ "learning_rate": 0.0006,
+ "loss": 2.7376222610473633,
+ "step": 2865
+ },
+ {
+ "epoch": 39.81048034934498,
+ "grad_norm": 0.03541046380996704,
+ "learning_rate": 0.0006,
+ "loss": 2.7527167797088623,
+ "step": 2866
+ },
+ {
+ "epoch": 39.82445414847162,
+ "grad_norm": 0.035719070583581924,
+ "learning_rate": 0.0006,
+ "loss": 2.742863178253174,
+ "step": 2867
+ },
+ {
+ "epoch": 39.838427947598255,
+ "grad_norm": 0.03448639065027237,
+ "learning_rate": 0.0006,
+ "loss": 2.699861764907837,
+ "step": 2868
+ },
+ {
+ "epoch": 39.852401746724894,
+ "grad_norm": 0.033144641667604446,
+ "learning_rate": 0.0006,
+ "loss": 2.7319140434265137,
+ "step": 2869
+ },
+ {
+ "epoch": 39.866375545851525,
+ "grad_norm": 0.032493121922016144,
+ "learning_rate": 0.0006,
+ "loss": 2.7466368675231934,
+ "step": 2870
+ },
+ {
+ "epoch": 39.880349344978164,
+ "grad_norm": 0.032590243965387344,
+ "learning_rate": 0.0006,
+ "loss": 2.721978187561035,
+ "step": 2871
+ },
+ {
+ "epoch": 39.8943231441048,
+ "grad_norm": 0.03250930458307266,
+ "learning_rate": 0.0006,
+ "loss": 2.7361791133880615,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90829694323144,
+ "grad_norm": 0.03177327662706375,
+ "learning_rate": 0.0006,
+ "loss": 2.736617088317871,
+ "step": 2873
+ },
+ {
+ "epoch": 39.92227074235808,
+ "grad_norm": 0.03167487680912018,
+ "learning_rate": 0.0006,
+ "loss": 2.74830961227417,
+ "step": 2874
+ },
+ {
+ "epoch": 39.93624454148472,
+ "grad_norm": 0.03139375150203705,
+ "learning_rate": 0.0006,
+ "loss": 2.7477545738220215,
+ "step": 2875
+ },
+ {
+ "epoch": 39.95021834061135,
+ "grad_norm": 0.03216864913702011,
+ "learning_rate": 0.0006,
+ "loss": 2.7286179065704346,
+ "step": 2876
+ },
+ {
+ "epoch": 39.96419213973799,
+ "grad_norm": 0.033048611134290695,
+ "learning_rate": 0.0006,
+ "loss": 2.7587175369262695,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97816593886463,
+ "grad_norm": 0.031695522367954254,
+ "learning_rate": 0.0006,
+ "loss": 2.752018928527832,
+ "step": 2878
+ },
+ {
+ "epoch": 39.992139737991266,
+ "grad_norm": 0.030985886231064796,
+ "learning_rate": 0.0006,
+ "loss": 2.773669719696045,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.036308158189058304,
+ "learning_rate": 0.0006,
+ "loss": 2.7251877784729004,
+ "step": 2880
+ },
+ {
+ "epoch": 40.0,
+ "eval_loss": 4.474143981933594,
+ "eval_runtime": 49.9011,
+ "eval_samples_per_second": 48.937,
+ "eval_steps_per_second": 1.543,
+ "step": 2880
+ },
+ {
+ "epoch": 40.01397379912664,
+ "grad_norm": 0.039337001740932465,
+ "learning_rate": 0.0006,
+ "loss": 2.514352321624756,
+ "step": 2881
+ },
+ {
+ "epoch": 40.02794759825328,
+ "grad_norm": 0.0578283965587616,
+ "learning_rate": 0.0006,
+ "loss": 2.5215506553649902,
+ "step": 2882
+ },
+ {
+ "epoch": 40.041921397379916,
+ "grad_norm": 0.06699222326278687,
+ "learning_rate": 0.0006,
+ "loss": 2.5044867992401123,
+ "step": 2883
+ },
+ {
+ "epoch": 40.05589519650655,
+ "grad_norm": 0.06550704687833786,
+ "learning_rate": 0.0006,
+ "loss": 2.488755941390991,
+ "step": 2884
+ },
+ {
+ "epoch": 40.069868995633186,
+ "grad_norm": 0.06436064094305038,
+ "learning_rate": 0.0006,
+ "loss": 2.5425314903259277,
+ "step": 2885
+ },
+ {
+ "epoch": 40.083842794759825,
+ "grad_norm": 0.07783094793558121,
+ "learning_rate": 0.0006,
+ "loss": 2.5326032638549805,
+ "step": 2886
+ },
+ {
+ "epoch": 40.09781659388646,
+ "grad_norm": 0.08629380166530609,
+ "learning_rate": 0.0006,
+ "loss": 2.5318236351013184,
+ "step": 2887
+ },
+ {
+ "epoch": 40.1117903930131,
+ "grad_norm": 0.08499810099601746,
+ "learning_rate": 0.0006,
+ "loss": 2.544509172439575,
+ "step": 2888
+ },
+ {
+ "epoch": 40.12576419213974,
+ "grad_norm": 0.08014187961816788,
+ "learning_rate": 0.0006,
+ "loss": 2.541004180908203,
+ "step": 2889
+ },
+ {
+ "epoch": 40.13973799126637,
+ "grad_norm": 0.07640037685632706,
+ "learning_rate": 0.0006,
+ "loss": 2.569610118865967,
+ "step": 2890
+ },
+ {
+ "epoch": 40.15371179039301,
+ "grad_norm": 0.07590228319168091,
+ "learning_rate": 0.0006,
+ "loss": 2.610346794128418,
+ "step": 2891
+ },
+ {
+ "epoch": 40.16768558951965,
+ "grad_norm": 0.0713343694806099,
+ "learning_rate": 0.0006,
+ "loss": 2.565481424331665,
+ "step": 2892
+ },
+ {
+ "epoch": 40.18165938864629,
+ "grad_norm": 0.06972482055425644,
+ "learning_rate": 0.0006,
+ "loss": 2.5367839336395264,
+ "step": 2893
+ },
+ {
+ "epoch": 40.19563318777293,
+ "grad_norm": 0.06594175845384598,
+ "learning_rate": 0.0006,
+ "loss": 2.561854839324951,
+ "step": 2894
+ },
+ {
+ "epoch": 40.209606986899566,
+ "grad_norm": 0.06096635013818741,
+ "learning_rate": 0.0006,
+ "loss": 2.5752482414245605,
+ "step": 2895
+ },
+ {
+ "epoch": 40.223580786026204,
+ "grad_norm": 0.06971662491559982,
+ "learning_rate": 0.0006,
+ "loss": 2.5526719093322754,
+ "step": 2896
+ },
+ {
+ "epoch": 40.237554585152836,
+ "grad_norm": 0.07076017558574677,
+ "learning_rate": 0.0006,
+ "loss": 2.5867996215820312,
+ "step": 2897
+ },
+ {
+ "epoch": 40.251528384279474,
+ "grad_norm": 0.0636894702911377,
+ "learning_rate": 0.0006,
+ "loss": 2.5642850399017334,
+ "step": 2898
+ },
+ {
+ "epoch": 40.26550218340611,
+ "grad_norm": 0.06342290341854095,
+ "learning_rate": 0.0006,
+ "loss": 2.594398260116577,
+ "step": 2899
+ },
+ {
+ "epoch": 40.27947598253275,
+ "grad_norm": 0.059829309582710266,
+ "learning_rate": 0.0006,
+ "loss": 2.6322319507598877,
+ "step": 2900
+ },
+ {
+ "epoch": 40.29344978165939,
+ "grad_norm": 0.054255399852991104,
+ "learning_rate": 0.0006,
+ "loss": 2.5863678455352783,
+ "step": 2901
+ },
+ {
+ "epoch": 40.30742358078603,
+ "grad_norm": 0.05746527016162872,
+ "learning_rate": 0.0006,
+ "loss": 2.6030540466308594,
+ "step": 2902
+ },
+ {
+ "epoch": 40.32139737991266,
+ "grad_norm": 0.055593617260456085,
+ "learning_rate": 0.0006,
+ "loss": 2.6012344360351562,
+ "step": 2903
+ },
+ {
+ "epoch": 40.3353711790393,
+ "grad_norm": 0.05329304188489914,
+ "learning_rate": 0.0006,
+ "loss": 2.62961483001709,
+ "step": 2904
+ },
+ {
+ "epoch": 40.34934497816594,
+ "grad_norm": 0.05749393254518509,
+ "learning_rate": 0.0006,
+ "loss": 2.6130566596984863,
+ "step": 2905
+ },
+ {
+ "epoch": 40.36331877729258,
+ "grad_norm": 0.058272067457437515,
+ "learning_rate": 0.0006,
+ "loss": 2.6373796463012695,
+ "step": 2906
+ },
+ {
+ "epoch": 40.377292576419215,
+ "grad_norm": 0.05478287860751152,
+ "learning_rate": 0.0006,
+ "loss": 2.6072428226470947,
+ "step": 2907
+ },
+ {
+ "epoch": 40.391266375545854,
+ "grad_norm": 0.05362486094236374,
+ "learning_rate": 0.0006,
+ "loss": 2.627718448638916,
+ "step": 2908
+ },
+ {
+ "epoch": 40.40524017467249,
+ "grad_norm": 0.048258356750011444,
+ "learning_rate": 0.0006,
+ "loss": 2.6520800590515137,
+ "step": 2909
+ },
+ {
+ "epoch": 40.419213973799124,
+ "grad_norm": 0.04497991502285004,
+ "learning_rate": 0.0006,
+ "loss": 2.6447935104370117,
+ "step": 2910
+ },
+ {
+ "epoch": 40.43318777292576,
+ "grad_norm": 0.04416095092892647,
+ "learning_rate": 0.0006,
+ "loss": 2.647826910018921,
+ "step": 2911
+ },
+ {
+ "epoch": 40.4471615720524,
+ "grad_norm": 0.04513152316212654,
+ "learning_rate": 0.0006,
+ "loss": 2.612380027770996,
+ "step": 2912
+ },
+ {
+ "epoch": 40.46113537117904,
+ "grad_norm": 0.04386728256940842,
+ "learning_rate": 0.0006,
+ "loss": 2.6557984352111816,
+ "step": 2913
+ },
+ {
+ "epoch": 40.47510917030568,
+ "grad_norm": 0.040835894644260406,
+ "learning_rate": 0.0006,
+ "loss": 2.678039073944092,
+ "step": 2914
+ },
+ {
+ "epoch": 40.48908296943232,
+ "grad_norm": 0.03893722593784332,
+ "learning_rate": 0.0006,
+ "loss": 2.6199405193328857,
+ "step": 2915
+ },
+ {
+ "epoch": 40.50305676855895,
+ "grad_norm": 0.037534426897764206,
+ "learning_rate": 0.0006,
+ "loss": 2.645772695541382,
+ "step": 2916
+ },
+ {
+ "epoch": 40.51703056768559,
+ "grad_norm": 0.03901223838329315,
+ "learning_rate": 0.0006,
+ "loss": 2.6730403900146484,
+ "step": 2917
+ },
+ {
+ "epoch": 40.531004366812226,
+ "grad_norm": 0.03872915357351303,
+ "learning_rate": 0.0006,
+ "loss": 2.6446070671081543,
+ "step": 2918
+ },
+ {
+ "epoch": 40.544978165938865,
+ "grad_norm": 0.038637708872556686,
+ "learning_rate": 0.0006,
+ "loss": 2.6479978561401367,
+ "step": 2919
+ },
+ {
+ "epoch": 40.5589519650655,
+ "grad_norm": 0.036958739161491394,
+ "learning_rate": 0.0006,
+ "loss": 2.6752829551696777,
+ "step": 2920
+ },
+ {
+ "epoch": 40.57292576419214,
+ "grad_norm": 0.03570971637964249,
+ "learning_rate": 0.0006,
+ "loss": 2.653032064437866,
+ "step": 2921
+ },
+ {
+ "epoch": 40.58689956331878,
+ "grad_norm": 0.036177560687065125,
+ "learning_rate": 0.0006,
+ "loss": 2.6773481369018555,
+ "step": 2922
+ },
+ {
+ "epoch": 40.60087336244541,
+ "grad_norm": 0.03769815340638161,
+ "learning_rate": 0.0006,
+ "loss": 2.6339635848999023,
+ "step": 2923
+ },
+ {
+ "epoch": 40.61484716157205,
+ "grad_norm": 0.037199243903160095,
+ "learning_rate": 0.0006,
+ "loss": 2.680356025695801,
+ "step": 2924
+ },
+ {
+ "epoch": 40.62882096069869,
+ "grad_norm": 0.03642818331718445,
+ "learning_rate": 0.0006,
+ "loss": 2.675764799118042,
+ "step": 2925
+ },
+ {
+ "epoch": 40.64279475982533,
+ "grad_norm": 0.035731032490730286,
+ "learning_rate": 0.0006,
+ "loss": 2.672274589538574,
+ "step": 2926
+ },
+ {
+ "epoch": 40.65676855895197,
+ "grad_norm": 0.03664281219244003,
+ "learning_rate": 0.0006,
+ "loss": 2.675323486328125,
+ "step": 2927
+ },
+ {
+ "epoch": 40.670742358078606,
+ "grad_norm": 0.03724899888038635,
+ "learning_rate": 0.0006,
+ "loss": 2.7059831619262695,
+ "step": 2928
+ },
+ {
+ "epoch": 40.68471615720524,
+ "grad_norm": 0.03431715816259384,
+ "learning_rate": 0.0006,
+ "loss": 2.6749188899993896,
+ "step": 2929
+ },
+ {
+ "epoch": 40.698689956331876,
+ "grad_norm": 0.03504498302936554,
+ "learning_rate": 0.0006,
+ "loss": 2.7245900630950928,
+ "step": 2930
+ },
+ {
+ "epoch": 40.712663755458514,
+ "grad_norm": 0.03632767125964165,
+ "learning_rate": 0.0006,
+ "loss": 2.6805551052093506,
+ "step": 2931
+ },
+ {
+ "epoch": 40.72663755458515,
+ "grad_norm": 0.0335846021771431,
+ "learning_rate": 0.0006,
+ "loss": 2.7219207286834717,
+ "step": 2932
+ },
+ {
+ "epoch": 40.74061135371179,
+ "grad_norm": 0.033441077917814255,
+ "learning_rate": 0.0006,
+ "loss": 2.6754677295684814,
+ "step": 2933
+ },
+ {
+ "epoch": 40.75458515283843,
+ "grad_norm": 0.034840479493141174,
+ "learning_rate": 0.0006,
+ "loss": 2.679255485534668,
+ "step": 2934
+ },
+ {
+ "epoch": 40.76855895196506,
+ "grad_norm": 0.03573078662157059,
+ "learning_rate": 0.0006,
+ "loss": 2.7130138874053955,
+ "step": 2935
+ },
+ {
+ "epoch": 40.7825327510917,
+ "grad_norm": 0.034926887601614,
+ "learning_rate": 0.0006,
+ "loss": 2.6799659729003906,
+ "step": 2936
+ },
+ {
+ "epoch": 40.79650655021834,
+ "grad_norm": 0.03294713795185089,
+ "learning_rate": 0.0006,
+ "loss": 2.7167084217071533,
+ "step": 2937
+ },
+ {
+ "epoch": 40.81048034934498,
+ "grad_norm": 0.03352857381105423,
+ "learning_rate": 0.0006,
+ "loss": 2.7211174964904785,
+ "step": 2938
+ },
+ {
+ "epoch": 40.82445414847162,
+ "grad_norm": 0.03446228429675102,
+ "learning_rate": 0.0006,
+ "loss": 2.7129034996032715,
+ "step": 2939
+ },
+ {
+ "epoch": 40.838427947598255,
+ "grad_norm": 0.033214204013347626,
+ "learning_rate": 0.0006,
+ "loss": 2.6809608936309814,
+ "step": 2940
+ },
+ {
+ "epoch": 40.852401746724894,
+ "grad_norm": 0.03338344767689705,
+ "learning_rate": 0.0006,
+ "loss": 2.7225375175476074,
+ "step": 2941
+ },
+ {
+ "epoch": 40.866375545851525,
+ "grad_norm": 0.034566860646009445,
+ "learning_rate": 0.0006,
+ "loss": 2.758361339569092,
+ "step": 2942
+ },
+ {
+ "epoch": 40.880349344978164,
+ "grad_norm": 0.03447209671139717,
+ "learning_rate": 0.0006,
+ "loss": 2.7186620235443115,
+ "step": 2943
+ },
+ {
+ "epoch": 40.8943231441048,
+ "grad_norm": 0.03161827102303505,
+ "learning_rate": 0.0006,
+ "loss": 2.735325813293457,
+ "step": 2944
+ },
+ {
+ "epoch": 40.90829694323144,
+ "grad_norm": 0.03281267732381821,
+ "learning_rate": 0.0006,
+ "loss": 2.726142406463623,
+ "step": 2945
+ },
+ {
+ "epoch": 40.92227074235808,
+ "grad_norm": 0.03426361829042435,
+ "learning_rate": 0.0006,
+ "loss": 2.7087631225585938,
+ "step": 2946
+ },
+ {
+ "epoch": 40.93624454148472,
+ "grad_norm": 0.03302868455648422,
+ "learning_rate": 0.0006,
+ "loss": 2.705690860748291,
+ "step": 2947
+ },
+ {
+ "epoch": 40.95021834061135,
+ "grad_norm": 0.032940059900283813,
+ "learning_rate": 0.0006,
+ "loss": 2.7776706218719482,
+ "step": 2948
+ },
+ {
+ "epoch": 40.96419213973799,
+ "grad_norm": 0.03340820595622063,
+ "learning_rate": 0.0006,
+ "loss": 2.7082834243774414,
+ "step": 2949
+ },
+ {
+ "epoch": 40.97816593886463,
+ "grad_norm": 0.0323544442653656,
+ "learning_rate": 0.0006,
+ "loss": 2.7513222694396973,
+ "step": 2950
+ },
+ {
+ "epoch": 40.992139737991266,
+ "grad_norm": 0.032614532858133316,
+ "learning_rate": 0.0006,
+ "loss": 2.7283036708831787,
+ "step": 2951
+ },
+ {
+ "epoch": 41.0,
+ "grad_norm": 0.03670470416545868,
+ "learning_rate": 0.0006,
+ "loss": 2.7127060890197754,
+ "step": 2952
+ },
+ {
+ "epoch": 41.0,
+ "eval_loss": 4.508173942565918,
+ "eval_runtime": 50.2261,
+ "eval_samples_per_second": 48.62,
+ "eval_steps_per_second": 1.533,
+ "step": 2952
+ },
+ {
+ "epoch": 41.01397379912664,
+ "grad_norm": 0.03746651113033295,
+ "learning_rate": 0.0006,
+ "loss": 2.4814019203186035,
+ "step": 2953
+ },
+ {
+ "epoch": 41.02794759825328,
+ "grad_norm": 0.054200317710638046,
+ "learning_rate": 0.0006,
+ "loss": 2.4697980880737305,
+ "step": 2954
+ },
+ {
+ "epoch": 41.041921397379916,
+ "grad_norm": 0.06288814544677734,
+ "learning_rate": 0.0006,
+ "loss": 2.5091521739959717,
+ "step": 2955
+ },
+ {
+ "epoch": 41.05589519650655,
+ "grad_norm": 0.06734023988246918,
+ "learning_rate": 0.0006,
+ "loss": 2.4951586723327637,
+ "step": 2956
+ },
+ {
+ "epoch": 41.069868995633186,
+ "grad_norm": 0.06427191197872162,
+ "learning_rate": 0.0006,
+ "loss": 2.493849039077759,
+ "step": 2957
+ },
+ {
+ "epoch": 41.083842794759825,
+ "grad_norm": 0.06457237899303436,
+ "learning_rate": 0.0006,
+ "loss": 2.48870849609375,
+ "step": 2958
+ },
+ {
+ "epoch": 41.09781659388646,
+ "grad_norm": 0.06964237242937088,
+ "learning_rate": 0.0006,
+ "loss": 2.540151596069336,
+ "step": 2959
+ },
+ {
+ "epoch": 41.1117903930131,
+ "grad_norm": 0.06629417091608047,
+ "learning_rate": 0.0006,
+ "loss": 2.4720113277435303,
+ "step": 2960
+ },
+ {
+ "epoch": 41.12576419213974,
+ "grad_norm": 0.05969119444489479,
+ "learning_rate": 0.0006,
+ "loss": 2.4723451137542725,
+ "step": 2961
+ },
+ {
+ "epoch": 41.13973799126637,
+ "grad_norm": 0.06374634057283401,
+ "learning_rate": 0.0006,
+ "loss": 2.530426025390625,
+ "step": 2962
+ },
+ {
+ "epoch": 41.15371179039301,
+ "grad_norm": 0.07170208543539047,
+ "learning_rate": 0.0006,
+ "loss": 2.5041663646698,
+ "step": 2963
+ },
+ {
+ "epoch": 41.16768558951965,
+ "grad_norm": 0.06941591203212738,
+ "learning_rate": 0.0006,
+ "loss": 2.51432204246521,
+ "step": 2964
+ },
+ {
+ "epoch": 41.18165938864629,
+ "grad_norm": 0.06023700162768364,
+ "learning_rate": 0.0006,
+ "loss": 2.5003089904785156,
+ "step": 2965
+ },
+ {
+ "epoch": 41.19563318777293,
+ "grad_norm": 0.054598093032836914,
+ "learning_rate": 0.0006,
+ "loss": 2.49953556060791,
+ "step": 2966
+ },
+ {
+ "epoch": 41.209606986899566,
+ "grad_norm": 0.05806402489542961,
+ "learning_rate": 0.0006,
+ "loss": 2.5472049713134766,
+ "step": 2967
+ },
+ {
+ "epoch": 41.223580786026204,
+ "grad_norm": 0.06137162446975708,
+ "learning_rate": 0.0006,
+ "loss": 2.5571017265319824,
+ "step": 2968
+ },
+ {
+ "epoch": 41.237554585152836,
+ "grad_norm": 0.06971567124128342,
+ "learning_rate": 0.0006,
+ "loss": 2.591752767562866,
+ "step": 2969
+ },
+ {
+ "epoch": 41.251528384279474,
+ "grad_norm": 0.07225124537944794,
+ "learning_rate": 0.0006,
+ "loss": 2.565896987915039,
+ "step": 2970
+ },
+ {
+ "epoch": 41.26550218340611,
+ "grad_norm": 0.06897974759340286,
+ "learning_rate": 0.0006,
+ "loss": 2.5832743644714355,
+ "step": 2971
+ },
+ {
+ "epoch": 41.27947598253275,
+ "grad_norm": 0.06968700885772705,
+ "learning_rate": 0.0006,
+ "loss": 2.58354115486145,
+ "step": 2972
+ },
+ {
+ "epoch": 41.29344978165939,
+ "grad_norm": 0.06928391754627228,
+ "learning_rate": 0.0006,
+ "loss": 2.5523929595947266,
+ "step": 2973
+ },
+ {
+ "epoch": 41.30742358078603,
+ "grad_norm": 0.06092998385429382,
+ "learning_rate": 0.0006,
+ "loss": 2.5852198600769043,
+ "step": 2974
+ },
+ {
+ "epoch": 41.32139737991266,
+ "grad_norm": 0.05461019277572632,
+ "learning_rate": 0.0006,
+ "loss": 2.5784430503845215,
+ "step": 2975
+ },
+ {
+ "epoch": 41.3353711790393,
+ "grad_norm": 0.059578269720077515,
+ "learning_rate": 0.0006,
+ "loss": 2.5980494022369385,
+ "step": 2976
+ },
+ {
+ "epoch": 41.34934497816594,
+ "grad_norm": 0.05834083631634712,
+ "learning_rate": 0.0006,
+ "loss": 2.602646827697754,
+ "step": 2977
+ },
+ {
+ "epoch": 41.36331877729258,
+ "grad_norm": 0.05291537567973137,
+ "learning_rate": 0.0006,
+ "loss": 2.557065486907959,
+ "step": 2978
+ },
+ {
+ "epoch": 41.377292576419215,
+ "grad_norm": 0.050251904875040054,
+ "learning_rate": 0.0006,
+ "loss": 2.6000962257385254,
+ "step": 2979
+ },
+ {
+ "epoch": 41.391266375545854,
+ "grad_norm": 0.051875483244657516,
+ "learning_rate": 0.0006,
+ "loss": 2.582411766052246,
+ "step": 2980
+ },
+ {
+ "epoch": 41.40524017467249,
+ "grad_norm": 0.05478638410568237,
+ "learning_rate": 0.0006,
+ "loss": 2.5964908599853516,
+ "step": 2981
+ },
+ {
+ "epoch": 41.419213973799124,
+ "grad_norm": 0.05316122993826866,
+ "learning_rate": 0.0006,
+ "loss": 2.6215295791625977,
+ "step": 2982
+ },
+ {
+ "epoch": 41.43318777292576,
+ "grad_norm": 0.050784602761268616,
+ "learning_rate": 0.0006,
+ "loss": 2.628396987915039,
+ "step": 2983
+ },
+ {
+ "epoch": 41.4471615720524,
+ "grad_norm": 0.04980757087469101,
+ "learning_rate": 0.0006,
+ "loss": 2.598594903945923,
+ "step": 2984
+ },
+ {
+ "epoch": 41.46113537117904,
+ "grad_norm": 0.04802572727203369,
+ "learning_rate": 0.0006,
+ "loss": 2.632929801940918,
+ "step": 2985
+ },
+ {
+ "epoch": 41.47510917030568,
+ "grad_norm": 0.046256471425294876,
+ "learning_rate": 0.0006,
+ "loss": 2.647948980331421,
+ "step": 2986
+ },
+ {
+ "epoch": 41.48908296943232,
+ "grad_norm": 0.04124723747372627,
+ "learning_rate": 0.0006,
+ "loss": 2.6318936347961426,
+ "step": 2987
+ },
+ {
+ "epoch": 41.50305676855895,
+ "grad_norm": 0.04096651077270508,
+ "learning_rate": 0.0006,
+ "loss": 2.6342906951904297,
+ "step": 2988
+ },
+ {
+ "epoch": 41.51703056768559,
+ "grad_norm": 0.04245220124721527,
+ "learning_rate": 0.0006,
+ "loss": 2.611931800842285,
+ "step": 2989
+ },
+ {
+ "epoch": 41.531004366812226,
+ "grad_norm": 0.041183747351169586,
+ "learning_rate": 0.0006,
+ "loss": 2.649632453918457,
+ "step": 2990
+ },
+ {
+ "epoch": 41.544978165938865,
+ "grad_norm": 0.03992500156164169,
+ "learning_rate": 0.0006,
+ "loss": 2.6692309379577637,
+ "step": 2991
+ },
+ {
+ "epoch": 41.5589519650655,
+ "grad_norm": 0.037352435290813446,
+ "learning_rate": 0.0006,
+ "loss": 2.641296863555908,
+ "step": 2992
+ },
+ {
+ "epoch": 41.57292576419214,
+ "grad_norm": 0.03561893850564957,
+ "learning_rate": 0.0006,
+ "loss": 2.6621932983398438,
+ "step": 2993
+ },
+ {
+ "epoch": 41.58689956331878,
+ "grad_norm": 0.03681188076734543,
+ "learning_rate": 0.0006,
+ "loss": 2.655366897583008,
+ "step": 2994
+ },
+ {
+ "epoch": 41.60087336244541,
+ "grad_norm": 0.03648288920521736,
+ "learning_rate": 0.0006,
+ "loss": 2.648235321044922,
+ "step": 2995
+ },
+ {
+ "epoch": 41.61484716157205,
+ "grad_norm": 0.03450721874833107,
+ "learning_rate": 0.0006,
+ "loss": 2.6067535877227783,
+ "step": 2996
+ },
+ {
+ "epoch": 41.62882096069869,
+ "grad_norm": 0.03514327108860016,
+ "learning_rate": 0.0006,
+ "loss": 2.6524481773376465,
+ "step": 2997
+ },
+ {
+ "epoch": 41.64279475982533,
+ "grad_norm": 0.035532090812921524,
+ "learning_rate": 0.0006,
+ "loss": 2.661794662475586,
+ "step": 2998
+ },
+ {
+ "epoch": 41.65676855895197,
+ "grad_norm": 0.03596893325448036,
+ "learning_rate": 0.0006,
+ "loss": 2.6547136306762695,
+ "step": 2999
+ },
+ {
+ "epoch": 41.670742358078606,
+ "grad_norm": 0.03504801541566849,
+ "learning_rate": 0.0006,
+ "loss": 2.6949620246887207,
+ "step": 3000
+ },
+ {
+ "epoch": 41.68471615720524,
+ "grad_norm": 0.03513277322053909,
+ "learning_rate": 0.0006,
+ "loss": 2.669483184814453,
+ "step": 3001
+ },
+ {
+ "epoch": 41.698689956331876,
+ "grad_norm": 0.034047797322273254,
+ "learning_rate": 0.0006,
+ "loss": 2.6670925617218018,
+ "step": 3002
+ },
+ {
+ "epoch": 41.712663755458514,
+ "grad_norm": 0.03440465033054352,
+ "learning_rate": 0.0006,
+ "loss": 2.6995179653167725,
+ "step": 3003
+ },
+ {
+ "epoch": 41.72663755458515,
+ "grad_norm": 0.03386697918176651,
+ "learning_rate": 0.0006,
+ "loss": 2.6748435497283936,
+ "step": 3004
+ },
+ {
+ "epoch": 41.74061135371179,
+ "grad_norm": 0.03427353873848915,
+ "learning_rate": 0.0006,
+ "loss": 2.687830924987793,
+ "step": 3005
+ },
+ {
+ "epoch": 41.75458515283843,
+ "grad_norm": 0.034239862114191055,
+ "learning_rate": 0.0006,
+ "loss": 2.655815601348877,
+ "step": 3006
+ },
+ {
+ "epoch": 41.76855895196506,
+ "grad_norm": 0.03303586691617966,
+ "learning_rate": 0.0006,
+ "loss": 2.669964075088501,
+ "step": 3007
+ },
+ {
+ "epoch": 41.7825327510917,
+ "grad_norm": 0.03340915963053703,
+ "learning_rate": 0.0006,
+ "loss": 2.6928677558898926,
+ "step": 3008
+ },
+ {
+ "epoch": 41.79650655021834,
+ "grad_norm": 0.03367476165294647,
+ "learning_rate": 0.0006,
+ "loss": 2.7179598808288574,
+ "step": 3009
+ },
+ {
+ "epoch": 41.81048034934498,
+ "grad_norm": 0.03302138298749924,
+ "learning_rate": 0.0006,
+ "loss": 2.6798248291015625,
+ "step": 3010
+ },
+ {
+ "epoch": 41.82445414847162,
+ "grad_norm": 0.033954862505197525,
+ "learning_rate": 0.0006,
+ "loss": 2.6973462104797363,
+ "step": 3011
+ },
+ {
+ "epoch": 41.838427947598255,
+ "grad_norm": 0.033157311379909515,
+ "learning_rate": 0.0006,
+ "loss": 2.6747636795043945,
+ "step": 3012
+ },
+ {
+ "epoch": 41.852401746724894,
+ "grad_norm": 0.033011890947818756,
+ "learning_rate": 0.0006,
+ "loss": 2.686279535293579,
+ "step": 3013
+ },
+ {
+ "epoch": 41.866375545851525,
+ "grad_norm": 0.032952625304460526,
+ "learning_rate": 0.0006,
+ "loss": 2.6770482063293457,
+ "step": 3014
+ },
+ {
+ "epoch": 41.880349344978164,
+ "grad_norm": 0.03311127424240112,
+ "learning_rate": 0.0006,
+ "loss": 2.6875858306884766,
+ "step": 3015
+ },
+ {
+ "epoch": 41.8943231441048,
+ "grad_norm": 0.03227787837386131,
+ "learning_rate": 0.0006,
+ "loss": 2.7145700454711914,
+ "step": 3016
+ },
+ {
+ "epoch": 41.90829694323144,
+ "grad_norm": 0.03321456536650658,
+ "learning_rate": 0.0006,
+ "loss": 2.673895835876465,
+ "step": 3017
+ },
+ {
+ "epoch": 41.92227074235808,
+ "grad_norm": 0.03320823982357979,
+ "learning_rate": 0.0006,
+ "loss": 2.7287275791168213,
+ "step": 3018
+ },
+ {
+ "epoch": 41.93624454148472,
+ "grad_norm": 0.03459212929010391,
+ "learning_rate": 0.0006,
+ "loss": 2.735105514526367,
+ "step": 3019
+ },
+ {
+ "epoch": 41.95021834061135,
+ "grad_norm": 0.03409607708454132,
+ "learning_rate": 0.0006,
+ "loss": 2.718269109725952,
+ "step": 3020
+ },
+ {
+ "epoch": 41.96419213973799,
+ "grad_norm": 0.031720004975795746,
+ "learning_rate": 0.0006,
+ "loss": 2.7110891342163086,
+ "step": 3021
+ },
+ {
+ "epoch": 41.97816593886463,
+ "grad_norm": 0.032923273742198944,
+ "learning_rate": 0.0006,
+ "loss": 2.6825613975524902,
+ "step": 3022
+ },
+ {
+ "epoch": 41.992139737991266,
+ "grad_norm": 0.033411912620067596,
+ "learning_rate": 0.0006,
+ "loss": 2.7118630409240723,
+ "step": 3023
+ },
+ {
+ "epoch": 42.0,
+ "grad_norm": 0.03869323059916496,
+ "learning_rate": 0.0006,
+ "loss": 2.6891462802886963,
+ "step": 3024
+ },
+ {
+ "epoch": 42.0,
+ "eval_loss": 4.533603668212891,
+ "eval_runtime": 50.3169,
+ "eval_samples_per_second": 48.532,
+ "eval_steps_per_second": 1.53,
+ "step": 3024
+ },
+ {
+ "epoch": 42.01397379912664,
+ "grad_norm": 0.039055779576301575,
+ "learning_rate": 0.0006,
+ "loss": 2.5039710998535156,
+ "step": 3025
+ },
+ {
+ "epoch": 42.02794759825328,
+ "grad_norm": 0.052520107477903366,
+ "learning_rate": 0.0006,
+ "loss": 2.462716579437256,
+ "step": 3026
+ },
+ {
+ "epoch": 42.041921397379916,
+ "grad_norm": 0.058227334171533585,
+ "learning_rate": 0.0006,
+ "loss": 2.477053642272949,
+ "step": 3027
+ },
+ {
+ "epoch": 42.05589519650655,
+ "grad_norm": 0.06221282109618187,
+ "learning_rate": 0.0006,
+ "loss": 2.4450716972351074,
+ "step": 3028
+ },
+ {
+ "epoch": 42.069868995633186,
+ "grad_norm": 0.06616507470607758,
+ "learning_rate": 0.0006,
+ "loss": 2.4570517539978027,
+ "step": 3029
+ },
+ {
+ "epoch": 42.083842794759825,
+ "grad_norm": 0.07041152566671371,
+ "learning_rate": 0.0006,
+ "loss": 2.470550060272217,
+ "step": 3030
+ },
+ {
+ "epoch": 42.09781659388646,
+ "grad_norm": 0.0759936049580574,
+ "learning_rate": 0.0006,
+ "loss": 2.4792351722717285,
+ "step": 3031
+ },
+ {
+ "epoch": 42.1117903930131,
+ "grad_norm": 0.07650945335626602,
+ "learning_rate": 0.0006,
+ "loss": 2.506289482116699,
+ "step": 3032
+ },
+ {
+ "epoch": 42.12576419213974,
+ "grad_norm": 0.07527980953454971,
+ "learning_rate": 0.0006,
+ "loss": 2.4983952045440674,
+ "step": 3033
+ },
+ {
+ "epoch": 42.13973799126637,
+ "grad_norm": 0.07372308522462845,
+ "learning_rate": 0.0006,
+ "loss": 2.488091230392456,
+ "step": 3034
+ },
+ {
+ "epoch": 42.15371179039301,
+ "grad_norm": 0.06859748810529709,
+ "learning_rate": 0.0006,
+ "loss": 2.4849133491516113,
+ "step": 3035
+ },
+ {
+ "epoch": 42.16768558951965,
+ "grad_norm": 0.07006996870040894,
+ "learning_rate": 0.0006,
+ "loss": 2.5095486640930176,
+ "step": 3036
+ },
+ {
+ "epoch": 42.18165938864629,
+ "grad_norm": 0.07903590798377991,
+ "learning_rate": 0.0006,
+ "loss": 2.5036849975585938,
+ "step": 3037
+ },
+ {
+ "epoch": 42.19563318777293,
+ "grad_norm": 0.08817902207374573,
+ "learning_rate": 0.0006,
+ "loss": 2.5240135192871094,
+ "step": 3038
+ },
+ {
+ "epoch": 42.209606986899566,
+ "grad_norm": 0.09336652606725693,
+ "learning_rate": 0.0006,
+ "loss": 2.5357613563537598,
+ "step": 3039
+ },
+ {
+ "epoch": 42.223580786026204,
+ "grad_norm": 0.08338862657546997,
+ "learning_rate": 0.0006,
+ "loss": 2.539161443710327,
+ "step": 3040
+ },
+ {
+ "epoch": 42.237554585152836,
+ "grad_norm": 0.06879600882530212,
+ "learning_rate": 0.0006,
+ "loss": 2.507911205291748,
+ "step": 3041
+ },
+ {
+ "epoch": 42.251528384279474,
+ "grad_norm": 0.0669286772608757,
+ "learning_rate": 0.0006,
+ "loss": 2.514423370361328,
+ "step": 3042
+ },
+ {
+ "epoch": 42.26550218340611,
+ "grad_norm": 0.061652153730392456,
+ "learning_rate": 0.0006,
+ "loss": 2.532485008239746,
+ "step": 3043
+ },
+ {
+ "epoch": 42.27947598253275,
+ "grad_norm": 0.056599609553813934,
+ "learning_rate": 0.0006,
+ "loss": 2.5467514991760254,
+ "step": 3044
+ },
+ {
+ "epoch": 42.29344978165939,
+ "grad_norm": 0.06113262474536896,
+ "learning_rate": 0.0006,
+ "loss": 2.5644102096557617,
+ "step": 3045
+ },
+ {
+ "epoch": 42.30742358078603,
+ "grad_norm": 0.06744182854890823,
+ "learning_rate": 0.0006,
+ "loss": 2.575010299682617,
+ "step": 3046
+ },
+ {
+ "epoch": 42.32139737991266,
+ "grad_norm": 0.06519673764705658,
+ "learning_rate": 0.0006,
+ "loss": 2.5722289085388184,
+ "step": 3047
+ },
+ {
+ "epoch": 42.3353711790393,
+ "grad_norm": 0.06317145377397537,
+ "learning_rate": 0.0006,
+ "loss": 2.5724639892578125,
+ "step": 3048
+ },
+ {
+ "epoch": 42.34934497816594,
+ "grad_norm": 0.05925135314464569,
+ "learning_rate": 0.0006,
+ "loss": 2.566068172454834,
+ "step": 3049
+ },
+ {
+ "epoch": 42.36331877729258,
+ "grad_norm": 0.05837476998567581,
+ "learning_rate": 0.0006,
+ "loss": 2.5841143131256104,
+ "step": 3050
+ },
+ {
+ "epoch": 42.377292576419215,
+ "grad_norm": 0.054796624928712845,
+ "learning_rate": 0.0006,
+ "loss": 2.6088240146636963,
+ "step": 3051
+ },
+ {
+ "epoch": 42.391266375545854,
+ "grad_norm": 0.05314824357628822,
+ "learning_rate": 0.0006,
+ "loss": 2.608184337615967,
+ "step": 3052
+ },
+ {
+ "epoch": 42.40524017467249,
+ "grad_norm": 0.05028757452964783,
+ "learning_rate": 0.0006,
+ "loss": 2.602792501449585,
+ "step": 3053
+ },
+ {
+ "epoch": 42.419213973799124,
+ "grad_norm": 0.05145784094929695,
+ "learning_rate": 0.0006,
+ "loss": 2.591215133666992,
+ "step": 3054
+ },
+ {
+ "epoch": 42.43318777292576,
+ "grad_norm": 0.050456155091524124,
+ "learning_rate": 0.0006,
+ "loss": 2.578303813934326,
+ "step": 3055
+ },
+ {
+ "epoch": 42.4471615720524,
+ "grad_norm": 0.04676664620637894,
+ "learning_rate": 0.0006,
+ "loss": 2.6015772819519043,
+ "step": 3056
+ },
+ {
+ "epoch": 42.46113537117904,
+ "grad_norm": 0.04779385030269623,
+ "learning_rate": 0.0006,
+ "loss": 2.6344552040100098,
+ "step": 3057
+ },
+ {
+ "epoch": 42.47510917030568,
+ "grad_norm": 0.04689611494541168,
+ "learning_rate": 0.0006,
+ "loss": 2.5751309394836426,
+ "step": 3058
+ },
+ {
+ "epoch": 42.48908296943232,
+ "grad_norm": 0.04553738981485367,
+ "learning_rate": 0.0006,
+ "loss": 2.5387766361236572,
+ "step": 3059
+ },
+ {
+ "epoch": 42.50305676855895,
+ "grad_norm": 0.043393444269895554,
+ "learning_rate": 0.0006,
+ "loss": 2.5929782390594482,
+ "step": 3060
+ },
+ {
+ "epoch": 42.51703056768559,
+ "grad_norm": 0.04091055691242218,
+ "learning_rate": 0.0006,
+ "loss": 2.5865015983581543,
+ "step": 3061
+ },
+ {
+ "epoch": 42.531004366812226,
+ "grad_norm": 0.040986157953739166,
+ "learning_rate": 0.0006,
+ "loss": 2.5849504470825195,
+ "step": 3062
+ },
+ {
+ "epoch": 42.544978165938865,
+ "grad_norm": 0.0396786630153656,
+ "learning_rate": 0.0006,
+ "loss": 2.6373119354248047,
+ "step": 3063
+ },
+ {
+ "epoch": 42.5589519650655,
+ "grad_norm": 0.03911421447992325,
+ "learning_rate": 0.0006,
+ "loss": 2.629985809326172,
+ "step": 3064
+ },
+ {
+ "epoch": 42.57292576419214,
+ "grad_norm": 0.03813336789608002,
+ "learning_rate": 0.0006,
+ "loss": 2.621062755584717,
+ "step": 3065
+ },
+ {
+ "epoch": 42.58689956331878,
+ "grad_norm": 0.03617129847407341,
+ "learning_rate": 0.0006,
+ "loss": 2.616161823272705,
+ "step": 3066
+ },
+ {
+ "epoch": 42.60087336244541,
+ "grad_norm": 0.03905786573886871,
+ "learning_rate": 0.0006,
+ "loss": 2.643871784210205,
+ "step": 3067
+ },
+ {
+ "epoch": 42.61484716157205,
+ "grad_norm": 0.03813883289694786,
+ "learning_rate": 0.0006,
+ "loss": 2.6352767944335938,
+ "step": 3068
+ },
+ {
+ "epoch": 42.62882096069869,
+ "grad_norm": 0.03774777427315712,
+ "learning_rate": 0.0006,
+ "loss": 2.6713361740112305,
+ "step": 3069
+ },
+ {
+ "epoch": 42.64279475982533,
+ "grad_norm": 0.03608370199799538,
+ "learning_rate": 0.0006,
+ "loss": 2.661457061767578,
+ "step": 3070
+ },
+ {
+ "epoch": 42.65676855895197,
+ "grad_norm": 0.03751992806792259,
+ "learning_rate": 0.0006,
+ "loss": 2.6212592124938965,
+ "step": 3071
+ },
+ {
+ "epoch": 42.670742358078606,
+ "grad_norm": 0.036885008215904236,
+ "learning_rate": 0.0006,
+ "loss": 2.6710402965545654,
+ "step": 3072
+ },
+ {
+ "epoch": 42.68471615720524,
+ "grad_norm": 0.03548501431941986,
+ "learning_rate": 0.0006,
+ "loss": 2.6712498664855957,
+ "step": 3073
+ },
+ {
+ "epoch": 42.698689956331876,
+ "grad_norm": 0.035861410200595856,
+ "learning_rate": 0.0006,
+ "loss": 2.6542186737060547,
+ "step": 3074
+ },
+ {
+ "epoch": 42.712663755458514,
+ "grad_norm": 0.033946141600608826,
+ "learning_rate": 0.0006,
+ "loss": 2.6522037982940674,
+ "step": 3075
+ },
+ {
+ "epoch": 42.72663755458515,
+ "grad_norm": 0.03576039895415306,
+ "learning_rate": 0.0006,
+ "loss": 2.6726837158203125,
+ "step": 3076
+ },
+ {
+ "epoch": 42.74061135371179,
+ "grad_norm": 0.036935970187187195,
+ "learning_rate": 0.0006,
+ "loss": 2.6788535118103027,
+ "step": 3077
+ },
+ {
+ "epoch": 42.75458515283843,
+ "grad_norm": 0.03468472138047218,
+ "learning_rate": 0.0006,
+ "loss": 2.6404237747192383,
+ "step": 3078
+ },
+ {
+ "epoch": 42.76855895196506,
+ "grad_norm": 0.0341462567448616,
+ "learning_rate": 0.0006,
+ "loss": 2.6670050621032715,
+ "step": 3079
+ },
+ {
+ "epoch": 42.7825327510917,
+ "grad_norm": 0.03578699752688408,
+ "learning_rate": 0.0006,
+ "loss": 2.6439907550811768,
+ "step": 3080
+ },
+ {
+ "epoch": 42.79650655021834,
+ "grad_norm": 0.03652707859873772,
+ "learning_rate": 0.0006,
+ "loss": 2.6720101833343506,
+ "step": 3081
+ },
+ {
+ "epoch": 42.81048034934498,
+ "grad_norm": 0.03481908142566681,
+ "learning_rate": 0.0006,
+ "loss": 2.675555467605591,
+ "step": 3082
+ },
+ {
+ "epoch": 42.82445414847162,
+ "grad_norm": 0.03538025543093681,
+ "learning_rate": 0.0006,
+ "loss": 2.65213680267334,
+ "step": 3083
+ },
+ {
+ "epoch": 42.838427947598255,
+ "grad_norm": 0.034426379948854446,
+ "learning_rate": 0.0006,
+ "loss": 2.6370458602905273,
+ "step": 3084
+ },
+ {
+ "epoch": 42.852401746724894,
+ "grad_norm": 0.035427920520305634,
+ "learning_rate": 0.0006,
+ "loss": 2.678520679473877,
+ "step": 3085
+ },
+ {
+ "epoch": 42.866375545851525,
+ "grad_norm": 0.034902121871709824,
+ "learning_rate": 0.0006,
+ "loss": 2.6570701599121094,
+ "step": 3086
+ },
+ {
+ "epoch": 42.880349344978164,
+ "grad_norm": 0.0353839248418808,
+ "learning_rate": 0.0006,
+ "loss": 2.6869828701019287,
+ "step": 3087
+ },
+ {
+ "epoch": 42.8943231441048,
+ "grad_norm": 0.03405144438147545,
+ "learning_rate": 0.0006,
+ "loss": 2.698706865310669,
+ "step": 3088
+ },
+ {
+ "epoch": 42.90829694323144,
+ "grad_norm": 0.033478010445833206,
+ "learning_rate": 0.0006,
+ "loss": 2.669114351272583,
+ "step": 3089
+ },
+ {
+ "epoch": 42.92227074235808,
+ "grad_norm": 0.0346604660153389,
+ "learning_rate": 0.0006,
+ "loss": 2.7061116695404053,
+ "step": 3090
+ },
+ {
+ "epoch": 42.93624454148472,
+ "grad_norm": 0.03334188461303711,
+ "learning_rate": 0.0006,
+ "loss": 2.706364154815674,
+ "step": 3091
+ },
+ {
+ "epoch": 42.95021834061135,
+ "grad_norm": 0.032201964408159256,
+ "learning_rate": 0.0006,
+ "loss": 2.6762053966522217,
+ "step": 3092
+ },
+ {
+ "epoch": 42.96419213973799,
+ "grad_norm": 0.033559318631887436,
+ "learning_rate": 0.0006,
+ "loss": 2.6897826194763184,
+ "step": 3093
+ },
+ {
+ "epoch": 42.97816593886463,
+ "grad_norm": 0.033161524683237076,
+ "learning_rate": 0.0006,
+ "loss": 2.6918983459472656,
+ "step": 3094
+ },
+ {
+ "epoch": 42.992139737991266,
+ "grad_norm": 0.03354569524526596,
+ "learning_rate": 0.0006,
+ "loss": 2.7026150226593018,
+ "step": 3095
+ },
+ {
+ "epoch": 43.0,
+ "grad_norm": 0.037834350019693375,
+ "learning_rate": 0.0006,
+ "loss": 2.7188563346862793,
+ "step": 3096
+ },
+ {
+ "epoch": 43.0,
+ "eval_loss": 4.551867961883545,
+ "eval_runtime": 50.1252,
+ "eval_samples_per_second": 48.718,
+ "eval_steps_per_second": 1.536,
+ "step": 3096
+ },
+ {
+ "epoch": 43.01397379912664,
+ "grad_norm": 0.039894044399261475,
+ "learning_rate": 0.0006,
+ "loss": 2.4054040908813477,
+ "step": 3097
+ },
+ {
+ "epoch": 43.02794759825328,
+ "grad_norm": 0.0556144081056118,
+ "learning_rate": 0.0006,
+ "loss": 2.434190273284912,
+ "step": 3098
+ },
+ {
+ "epoch": 43.041921397379916,
+ "grad_norm": 0.06012912467122078,
+ "learning_rate": 0.0006,
+ "loss": 2.458591938018799,
+ "step": 3099
+ },
+ {
+ "epoch": 43.05589519650655,
+ "grad_norm": 0.06086045131087303,
+ "learning_rate": 0.0006,
+ "loss": 2.443781852722168,
+ "step": 3100
+ },
+ {
+ "epoch": 43.069868995633186,
+ "grad_norm": 0.06091619282960892,
+ "learning_rate": 0.0006,
+ "loss": 2.4393179416656494,
+ "step": 3101
+ },
+ {
+ "epoch": 43.083842794759825,
+ "grad_norm": 0.07029589265584946,
+ "learning_rate": 0.0006,
+ "loss": 2.4653985500335693,
+ "step": 3102
+ },
+ {
+ "epoch": 43.09781659388646,
+ "grad_norm": 0.08059313148260117,
+ "learning_rate": 0.0006,
+ "loss": 2.4899373054504395,
+ "step": 3103
+ },
+ {
+ "epoch": 43.1117903930131,
+ "grad_norm": 0.08094831556081772,
+ "learning_rate": 0.0006,
+ "loss": 2.4630067348480225,
+ "step": 3104
+ },
+ {
+ "epoch": 43.12576419213974,
+ "grad_norm": 0.07868043333292007,
+ "learning_rate": 0.0006,
+ "loss": 2.4484105110168457,
+ "step": 3105
+ },
+ {
+ "epoch": 43.13973799126637,
+ "grad_norm": 0.07610005140304565,
+ "learning_rate": 0.0006,
+ "loss": 2.4880459308624268,
+ "step": 3106
+ },
+ {
+ "epoch": 43.15371179039301,
+ "grad_norm": 0.07098852843046188,
+ "learning_rate": 0.0006,
+ "loss": 2.46286678314209,
+ "step": 3107
+ },
+ {
+ "epoch": 43.16768558951965,
+ "grad_norm": 0.07232986390590668,
+ "learning_rate": 0.0006,
+ "loss": 2.476626396179199,
+ "step": 3108
+ },
+ {
+ "epoch": 43.18165938864629,
+ "grad_norm": 0.07110542058944702,
+ "learning_rate": 0.0006,
+ "loss": 2.529035806655884,
+ "step": 3109
+ },
+ {
+ "epoch": 43.19563318777293,
+ "grad_norm": 0.07055077701807022,
+ "learning_rate": 0.0006,
+ "loss": 2.518265724182129,
+ "step": 3110
+ },
+ {
+ "epoch": 43.209606986899566,
+ "grad_norm": 0.07104186713695526,
+ "learning_rate": 0.0006,
+ "loss": 2.483802318572998,
+ "step": 3111
+ },
+ {
+ "epoch": 43.223580786026204,
+ "grad_norm": 0.07302606105804443,
+ "learning_rate": 0.0006,
+ "loss": 2.5399117469787598,
+ "step": 3112
+ },
+ {
+ "epoch": 43.237554585152836,
+ "grad_norm": 0.07185189425945282,
+ "learning_rate": 0.0006,
+ "loss": 2.54400897026062,
+ "step": 3113
+ },
+ {
+ "epoch": 43.251528384279474,
+ "grad_norm": 0.06465277820825577,
+ "learning_rate": 0.0006,
+ "loss": 2.529027223587036,
+ "step": 3114
+ },
+ {
+ "epoch": 43.26550218340611,
+ "grad_norm": 0.06251437962055206,
+ "learning_rate": 0.0006,
+ "loss": 2.5403528213500977,
+ "step": 3115
+ },
+ {
+ "epoch": 43.27947598253275,
+ "grad_norm": 0.06332837790250778,
+ "learning_rate": 0.0006,
+ "loss": 2.526170253753662,
+ "step": 3116
+ },
+ {
+ "epoch": 43.29344978165939,
+ "grad_norm": 0.06325972825288773,
+ "learning_rate": 0.0006,
+ "loss": 2.5278429985046387,
+ "step": 3117
+ },
+ {
+ "epoch": 43.30742358078603,
+ "grad_norm": 0.06548318266868591,
+ "learning_rate": 0.0006,
+ "loss": 2.55181622505188,
+ "step": 3118
+ },
+ {
+ "epoch": 43.32139737991266,
+ "grad_norm": 0.06045873090624809,
+ "learning_rate": 0.0006,
+ "loss": 2.508786201477051,
+ "step": 3119
+ },
+ {
+ "epoch": 43.3353711790393,
+ "grad_norm": 0.059493113309144974,
+ "learning_rate": 0.0006,
+ "loss": 2.558365821838379,
+ "step": 3120
+ },
+ {
+ "epoch": 43.34934497816594,
+ "grad_norm": 0.0564209446310997,
+ "learning_rate": 0.0006,
+ "loss": 2.5639777183532715,
+ "step": 3121
+ },
+ {
+ "epoch": 43.36331877729258,
+ "grad_norm": 0.05593051016330719,
+ "learning_rate": 0.0006,
+ "loss": 2.5792932510375977,
+ "step": 3122
+ },
+ {
+ "epoch": 43.377292576419215,
+ "grad_norm": 0.05426349490880966,
+ "learning_rate": 0.0006,
+ "loss": 2.578277587890625,
+ "step": 3123
+ },
+ {
+ "epoch": 43.391266375545854,
+ "grad_norm": 0.05218787491321564,
+ "learning_rate": 0.0006,
+ "loss": 2.5250115394592285,
+ "step": 3124
+ },
+ {
+ "epoch": 43.40524017467249,
+ "grad_norm": 0.04864683002233505,
+ "learning_rate": 0.0006,
+ "loss": 2.561724901199341,
+ "step": 3125
+ },
+ {
+ "epoch": 43.419213973799124,
+ "grad_norm": 0.04763657972216606,
+ "learning_rate": 0.0006,
+ "loss": 2.598081350326538,
+ "step": 3126
+ },
+ {
+ "epoch": 43.43318777292576,
+ "grad_norm": 0.047468241304159164,
+ "learning_rate": 0.0006,
+ "loss": 2.582240343093872,
+ "step": 3127
+ },
+ {
+ "epoch": 43.4471615720524,
+ "grad_norm": 0.046475861221551895,
+ "learning_rate": 0.0006,
+ "loss": 2.5932564735412598,
+ "step": 3128
+ },
+ {
+ "epoch": 43.46113537117904,
+ "grad_norm": 0.047135964035987854,
+ "learning_rate": 0.0006,
+ "loss": 2.5604312419891357,
+ "step": 3129
+ },
+ {
+ "epoch": 43.47510917030568,
+ "grad_norm": 0.0423005111515522,
+ "learning_rate": 0.0006,
+ "loss": 2.559349536895752,
+ "step": 3130
+ },
+ {
+ "epoch": 43.48908296943232,
+ "grad_norm": 0.04360322654247284,
+ "learning_rate": 0.0006,
+ "loss": 2.578221559524536,
+ "step": 3131
+ },
+ {
+ "epoch": 43.50305676855895,
+ "grad_norm": 0.04468272626399994,
+ "learning_rate": 0.0006,
+ "loss": 2.605259418487549,
+ "step": 3132
+ },
+ {
+ "epoch": 43.51703056768559,
+ "grad_norm": 0.043453149497509,
+ "learning_rate": 0.0006,
+ "loss": 2.584420919418335,
+ "step": 3133
+ },
+ {
+ "epoch": 43.531004366812226,
+ "grad_norm": 0.04170256480574608,
+ "learning_rate": 0.0006,
+ "loss": 2.6173574924468994,
+ "step": 3134
+ },
+ {
+ "epoch": 43.544978165938865,
+ "grad_norm": 0.041505344212055206,
+ "learning_rate": 0.0006,
+ "loss": 2.5952024459838867,
+ "step": 3135
+ },
+ {
+ "epoch": 43.5589519650655,
+ "grad_norm": 0.03797348961234093,
+ "learning_rate": 0.0006,
+ "loss": 2.6145734786987305,
+ "step": 3136
+ },
+ {
+ "epoch": 43.57292576419214,
+ "grad_norm": 0.038926657289266586,
+ "learning_rate": 0.0006,
+ "loss": 2.6303224563598633,
+ "step": 3137
+ },
+ {
+ "epoch": 43.58689956331878,
+ "grad_norm": 0.04031370207667351,
+ "learning_rate": 0.0006,
+ "loss": 2.59706711769104,
+ "step": 3138
+ },
+ {
+ "epoch": 43.60087336244541,
+ "grad_norm": 0.03780565410852432,
+ "learning_rate": 0.0006,
+ "loss": 2.6325907707214355,
+ "step": 3139
+ },
+ {
+ "epoch": 43.61484716157205,
+ "grad_norm": 0.03980429843068123,
+ "learning_rate": 0.0006,
+ "loss": 2.6041979789733887,
+ "step": 3140
+ },
+ {
+ "epoch": 43.62882096069869,
+ "grad_norm": 0.04150824621319771,
+ "learning_rate": 0.0006,
+ "loss": 2.6184306144714355,
+ "step": 3141
+ },
+ {
+ "epoch": 43.64279475982533,
+ "grad_norm": 0.03963693976402283,
+ "learning_rate": 0.0006,
+ "loss": 2.613598346710205,
+ "step": 3142
+ },
+ {
+ "epoch": 43.65676855895197,
+ "grad_norm": 0.03586544841527939,
+ "learning_rate": 0.0006,
+ "loss": 2.6322641372680664,
+ "step": 3143
+ },
+ {
+ "epoch": 43.670742358078606,
+ "grad_norm": 0.03535877540707588,
+ "learning_rate": 0.0006,
+ "loss": 2.633875608444214,
+ "step": 3144
+ },
+ {
+ "epoch": 43.68471615720524,
+ "grad_norm": 0.03778599575161934,
+ "learning_rate": 0.0006,
+ "loss": 2.622668743133545,
+ "step": 3145
+ },
+ {
+ "epoch": 43.698689956331876,
+ "grad_norm": 0.03664970397949219,
+ "learning_rate": 0.0006,
+ "loss": 2.6412525177001953,
+ "step": 3146
+ },
+ {
+ "epoch": 43.712663755458514,
+ "grad_norm": 0.0350605733692646,
+ "learning_rate": 0.0006,
+ "loss": 2.6174161434173584,
+ "step": 3147
+ },
+ {
+ "epoch": 43.72663755458515,
+ "grad_norm": 0.03612935170531273,
+ "learning_rate": 0.0006,
+ "loss": 2.6528100967407227,
+ "step": 3148
+ },
+ {
+ "epoch": 43.74061135371179,
+ "grad_norm": 0.03577341139316559,
+ "learning_rate": 0.0006,
+ "loss": 2.625124931335449,
+ "step": 3149
+ },
+ {
+ "epoch": 43.75458515283843,
+ "grad_norm": 0.03630969673395157,
+ "learning_rate": 0.0006,
+ "loss": 2.6396608352661133,
+ "step": 3150
+ },
+ {
+ "epoch": 43.76855895196506,
+ "grad_norm": 0.03708301857113838,
+ "learning_rate": 0.0006,
+ "loss": 2.634946584701538,
+ "step": 3151
+ },
+ {
+ "epoch": 43.7825327510917,
+ "grad_norm": 0.03584316000342369,
+ "learning_rate": 0.0006,
+ "loss": 2.6711108684539795,
+ "step": 3152
+ },
+ {
+ "epoch": 43.79650655021834,
+ "grad_norm": 0.03631407395005226,
+ "learning_rate": 0.0006,
+ "loss": 2.6760013103485107,
+ "step": 3153
+ },
+ {
+ "epoch": 43.81048034934498,
+ "grad_norm": 0.034824665635824203,
+ "learning_rate": 0.0006,
+ "loss": 2.648905038833618,
+ "step": 3154
+ },
+ {
+ "epoch": 43.82445414847162,
+ "grad_norm": 0.03596187382936478,
+ "learning_rate": 0.0006,
+ "loss": 2.6340579986572266,
+ "step": 3155
+ },
+ {
+ "epoch": 43.838427947598255,
+ "grad_norm": 0.03648270666599274,
+ "learning_rate": 0.0006,
+ "loss": 2.658421516418457,
+ "step": 3156
+ },
+ {
+ "epoch": 43.852401746724894,
+ "grad_norm": 0.03374706581234932,
+ "learning_rate": 0.0006,
+ "loss": 2.6651556491851807,
+ "step": 3157
+ },
+ {
+ "epoch": 43.866375545851525,
+ "grad_norm": 0.03548721969127655,
+ "learning_rate": 0.0006,
+ "loss": 2.6552627086639404,
+ "step": 3158
+ },
+ {
+ "epoch": 43.880349344978164,
+ "grad_norm": 0.03659737855195999,
+ "learning_rate": 0.0006,
+ "loss": 2.660137176513672,
+ "step": 3159
+ },
+ {
+ "epoch": 43.8943231441048,
+ "grad_norm": 0.03530234470963478,
+ "learning_rate": 0.0006,
+ "loss": 2.637637138366699,
+ "step": 3160
+ },
+ {
+ "epoch": 43.90829694323144,
+ "grad_norm": 0.03411990776658058,
+ "learning_rate": 0.0006,
+ "loss": 2.639763355255127,
+ "step": 3161
+ },
+ {
+ "epoch": 43.92227074235808,
+ "grad_norm": 0.03414890915155411,
+ "learning_rate": 0.0006,
+ "loss": 2.620924949645996,
+ "step": 3162
+ },
+ {
+ "epoch": 43.93624454148472,
+ "grad_norm": 0.03575901687145233,
+ "learning_rate": 0.0006,
+ "loss": 2.61818265914917,
+ "step": 3163
+ },
+ {
+ "epoch": 43.95021834061135,
+ "grad_norm": 0.033907290548086166,
+ "learning_rate": 0.0006,
+ "loss": 2.6804091930389404,
+ "step": 3164
+ },
+ {
+ "epoch": 43.96419213973799,
+ "grad_norm": 0.034784093499183655,
+ "learning_rate": 0.0006,
+ "loss": 2.664044141769409,
+ "step": 3165
+ },
+ {
+ "epoch": 43.97816593886463,
+ "grad_norm": 0.03513629734516144,
+ "learning_rate": 0.0006,
+ "loss": 2.665102005004883,
+ "step": 3166
+ },
+ {
+ "epoch": 43.992139737991266,
+ "grad_norm": 0.03519217669963837,
+ "learning_rate": 0.0006,
+ "loss": 2.6723098754882812,
+ "step": 3167
+ },
+ {
+ "epoch": 44.0,
+ "grad_norm": 0.039666421711444855,
+ "learning_rate": 0.0006,
+ "loss": 2.71716046333313,
+ "step": 3168
+ },
+ {
+ "epoch": 44.0,
+ "eval_loss": 4.5813307762146,
+ "eval_runtime": 54.441,
+ "eval_samples_per_second": 44.856,
+ "eval_steps_per_second": 1.414,
+ "step": 3168
+ },
+ {
+ "epoch": 44.01397379912664,
+ "grad_norm": 0.039331790059804916,
+ "learning_rate": 0.0006,
+ "loss": 2.3901710510253906,
+ "step": 3169
+ },
+ {
+ "epoch": 44.02794759825328,
+ "grad_norm": 0.05411116033792496,
+ "learning_rate": 0.0006,
+ "loss": 2.44466495513916,
+ "step": 3170
+ },
+ {
+ "epoch": 44.041921397379916,
+ "grad_norm": 0.05987037718296051,
+ "learning_rate": 0.0006,
+ "loss": 2.4077227115631104,
+ "step": 3171
+ },
+ {
+ "epoch": 44.05589519650655,
+ "grad_norm": 0.06380907446146011,
+ "learning_rate": 0.0006,
+ "loss": 2.442009925842285,
+ "step": 3172
+ },
+ {
+ "epoch": 44.069868995633186,
+ "grad_norm": 0.0651869922876358,
+ "learning_rate": 0.0006,
+ "loss": 2.3962411880493164,
+ "step": 3173
+ },
+ {
+ "epoch": 44.083842794759825,
+ "grad_norm": 0.07043886929750443,
+ "learning_rate": 0.0006,
+ "loss": 2.437635660171509,
+ "step": 3174
+ },
+ {
+ "epoch": 44.09781659388646,
+ "grad_norm": 0.07482526451349258,
+ "learning_rate": 0.0006,
+ "loss": 2.454097032546997,
+ "step": 3175
+ },
+ {
+ "epoch": 44.1117903930131,
+ "grad_norm": 0.07368145883083344,
+ "learning_rate": 0.0006,
+ "loss": 2.44191575050354,
+ "step": 3176
+ },
+ {
+ "epoch": 44.12576419213974,
+ "grad_norm": 0.07219808548688889,
+ "learning_rate": 0.0006,
+ "loss": 2.477715492248535,
+ "step": 3177
+ },
+ {
+ "epoch": 44.13973799126637,
+ "grad_norm": 0.06787604838609695,
+ "learning_rate": 0.0006,
+ "loss": 2.4774646759033203,
+ "step": 3178
+ },
+ {
+ "epoch": 44.15371179039301,
+ "grad_norm": 0.058558497577905655,
+ "learning_rate": 0.0006,
+ "loss": 2.4713292121887207,
+ "step": 3179
+ },
+ {
+ "epoch": 44.16768558951965,
+ "grad_norm": 0.056441739201545715,
+ "learning_rate": 0.0006,
+ "loss": 2.435551643371582,
+ "step": 3180
+ },
+ {
+ "epoch": 44.18165938864629,
+ "grad_norm": 0.05752360448241234,
+ "learning_rate": 0.0006,
+ "loss": 2.467848300933838,
+ "step": 3181
+ },
+ {
+ "epoch": 44.19563318777293,
+ "grad_norm": 0.05480615049600601,
+ "learning_rate": 0.0006,
+ "loss": 2.450211524963379,
+ "step": 3182
+ },
+ {
+ "epoch": 44.209606986899566,
+ "grad_norm": 0.058033570647239685,
+ "learning_rate": 0.0006,
+ "loss": 2.4664998054504395,
+ "step": 3183
+ },
+ {
+ "epoch": 44.223580786026204,
+ "grad_norm": 0.06683015078306198,
+ "learning_rate": 0.0006,
+ "loss": 2.4486424922943115,
+ "step": 3184
+ },
+ {
+ "epoch": 44.237554585152836,
+ "grad_norm": 0.07018277794122696,
+ "learning_rate": 0.0006,
+ "loss": 2.485224723815918,
+ "step": 3185
+ },
+ {
+ "epoch": 44.251528384279474,
+ "grad_norm": 0.07178860902786255,
+ "learning_rate": 0.0006,
+ "loss": 2.5386805534362793,
+ "step": 3186
+ },
+ {
+ "epoch": 44.26550218340611,
+ "grad_norm": 0.07218033075332642,
+ "learning_rate": 0.0006,
+ "loss": 2.5018200874328613,
+ "step": 3187
+ },
+ {
+ "epoch": 44.27947598253275,
+ "grad_norm": 0.06924473494291306,
+ "learning_rate": 0.0006,
+ "loss": 2.4995083808898926,
+ "step": 3188
+ },
+ {
+ "epoch": 44.29344978165939,
+ "grad_norm": 0.05837813764810562,
+ "learning_rate": 0.0006,
+ "loss": 2.5062248706817627,
+ "step": 3189
+ },
+ {
+ "epoch": 44.30742358078603,
+ "grad_norm": 0.058064766228199005,
+ "learning_rate": 0.0006,
+ "loss": 2.4953861236572266,
+ "step": 3190
+ },
+ {
+ "epoch": 44.32139737991266,
+ "grad_norm": 0.06594701111316681,
+ "learning_rate": 0.0006,
+ "loss": 2.5327587127685547,
+ "step": 3191
+ },
+ {
+ "epoch": 44.3353711790393,
+ "grad_norm": 0.06670266389846802,
+ "learning_rate": 0.0006,
+ "loss": 2.5376901626586914,
+ "step": 3192
+ },
+ {
+ "epoch": 44.34934497816594,
+ "grad_norm": 0.06714925169944763,
+ "learning_rate": 0.0006,
+ "loss": 2.5229666233062744,
+ "step": 3193
+ },
+ {
+ "epoch": 44.36331877729258,
+ "grad_norm": 0.06601539999246597,
+ "learning_rate": 0.0006,
+ "loss": 2.5745208263397217,
+ "step": 3194
+ },
+ {
+ "epoch": 44.377292576419215,
+ "grad_norm": 0.05972324684262276,
+ "learning_rate": 0.0006,
+ "loss": 2.5657095909118652,
+ "step": 3195
+ },
+ {
+ "epoch": 44.391266375545854,
+ "grad_norm": 0.05763658881187439,
+ "learning_rate": 0.0006,
+ "loss": 2.491349220275879,
+ "step": 3196
+ },
+ {
+ "epoch": 44.40524017467249,
+ "grad_norm": 0.058750350028276443,
+ "learning_rate": 0.0006,
+ "loss": 2.4997429847717285,
+ "step": 3197
+ },
+ {
+ "epoch": 44.419213973799124,
+ "grad_norm": 0.058132488280534744,
+ "learning_rate": 0.0006,
+ "loss": 2.548736095428467,
+ "step": 3198
+ },
+ {
+ "epoch": 44.43318777292576,
+ "grad_norm": 0.05674244835972786,
+ "learning_rate": 0.0006,
+ "loss": 2.5280601978302,
+ "step": 3199
+ },
+ {
+ "epoch": 44.4471615720524,
+ "grad_norm": 0.053632549941539764,
+ "learning_rate": 0.0006,
+ "loss": 2.553617000579834,
+ "step": 3200
+ },
+ {
+ "epoch": 44.46113537117904,
+ "grad_norm": 0.04617946594953537,
+ "learning_rate": 0.0006,
+ "loss": 2.5816709995269775,
+ "step": 3201
+ },
+ {
+ "epoch": 44.47510917030568,
+ "grad_norm": 0.043780263513326645,
+ "learning_rate": 0.0006,
+ "loss": 2.577531337738037,
+ "step": 3202
+ },
+ {
+ "epoch": 44.48908296943232,
+ "grad_norm": 0.04082828760147095,
+ "learning_rate": 0.0006,
+ "loss": 2.5517544746398926,
+ "step": 3203
+ },
+ {
+ "epoch": 44.50305676855895,
+ "grad_norm": 0.04695146158337593,
+ "learning_rate": 0.0006,
+ "loss": 2.619779586791992,
+ "step": 3204
+ },
+ {
+ "epoch": 44.51703056768559,
+ "grad_norm": 0.045555293560028076,
+ "learning_rate": 0.0006,
+ "loss": 2.587749719619751,
+ "step": 3205
+ },
+ {
+ "epoch": 44.531004366812226,
+ "grad_norm": 0.042370736598968506,
+ "learning_rate": 0.0006,
+ "loss": 2.5899648666381836,
+ "step": 3206
+ },
+ {
+ "epoch": 44.544978165938865,
+ "grad_norm": 0.041646722704172134,
+ "learning_rate": 0.0006,
+ "loss": 2.5843143463134766,
+ "step": 3207
+ },
+ {
+ "epoch": 44.5589519650655,
+ "grad_norm": 0.03952941298484802,
+ "learning_rate": 0.0006,
+ "loss": 2.581390380859375,
+ "step": 3208
+ },
+ {
+ "epoch": 44.57292576419214,
+ "grad_norm": 0.03865276649594307,
+ "learning_rate": 0.0006,
+ "loss": 2.5838258266448975,
+ "step": 3209
+ },
+ {
+ "epoch": 44.58689956331878,
+ "grad_norm": 0.03863168880343437,
+ "learning_rate": 0.0006,
+ "loss": 2.585869312286377,
+ "step": 3210
+ },
+ {
+ "epoch": 44.60087336244541,
+ "grad_norm": 0.03916747868061066,
+ "learning_rate": 0.0006,
+ "loss": 2.597865104675293,
+ "step": 3211
+ },
+ {
+ "epoch": 44.61484716157205,
+ "grad_norm": 0.03860041871666908,
+ "learning_rate": 0.0006,
+ "loss": 2.5577869415283203,
+ "step": 3212
+ },
+ {
+ "epoch": 44.62882096069869,
+ "grad_norm": 0.037900179624557495,
+ "learning_rate": 0.0006,
+ "loss": 2.580699920654297,
+ "step": 3213
+ },
+ {
+ "epoch": 44.64279475982533,
+ "grad_norm": 0.03962555155158043,
+ "learning_rate": 0.0006,
+ "loss": 2.636986255645752,
+ "step": 3214
+ },
+ {
+ "epoch": 44.65676855895197,
+ "grad_norm": 0.03885175287723541,
+ "learning_rate": 0.0006,
+ "loss": 2.6034324169158936,
+ "step": 3215
+ },
+ {
+ "epoch": 44.670742358078606,
+ "grad_norm": 0.03927305340766907,
+ "learning_rate": 0.0006,
+ "loss": 2.609377861022949,
+ "step": 3216
+ },
+ {
+ "epoch": 44.68471615720524,
+ "grad_norm": 0.03865079581737518,
+ "learning_rate": 0.0006,
+ "loss": 2.5959830284118652,
+ "step": 3217
+ },
+ {
+ "epoch": 44.698689956331876,
+ "grad_norm": 0.03827716037631035,
+ "learning_rate": 0.0006,
+ "loss": 2.628967761993408,
+ "step": 3218
+ },
+ {
+ "epoch": 44.712663755458514,
+ "grad_norm": 0.03955534100532532,
+ "learning_rate": 0.0006,
+ "loss": 2.5850605964660645,
+ "step": 3219
+ },
+ {
+ "epoch": 44.72663755458515,
+ "grad_norm": 0.038406338542699814,
+ "learning_rate": 0.0006,
+ "loss": 2.628791570663452,
+ "step": 3220
+ },
+ {
+ "epoch": 44.74061135371179,
+ "grad_norm": 0.03848153352737427,
+ "learning_rate": 0.0006,
+ "loss": 2.6288108825683594,
+ "step": 3221
+ },
+ {
+ "epoch": 44.75458515283843,
+ "grad_norm": 0.03772028908133507,
+ "learning_rate": 0.0006,
+ "loss": 2.609067916870117,
+ "step": 3222
+ },
+ {
+ "epoch": 44.76855895196506,
+ "grad_norm": 0.03625430539250374,
+ "learning_rate": 0.0006,
+ "loss": 2.635019540786743,
+ "step": 3223
+ },
+ {
+ "epoch": 44.7825327510917,
+ "grad_norm": 0.0383269302546978,
+ "learning_rate": 0.0006,
+ "loss": 2.6121182441711426,
+ "step": 3224
+ },
+ {
+ "epoch": 44.79650655021834,
+ "grad_norm": 0.03871947526931763,
+ "learning_rate": 0.0006,
+ "loss": 2.638749599456787,
+ "step": 3225
+ },
+ {
+ "epoch": 44.81048034934498,
+ "grad_norm": 0.03679358586668968,
+ "learning_rate": 0.0006,
+ "loss": 2.6222660541534424,
+ "step": 3226
+ },
+ {
+ "epoch": 44.82445414847162,
+ "grad_norm": 0.036158837378025055,
+ "learning_rate": 0.0006,
+ "loss": 2.631132125854492,
+ "step": 3227
+ },
+ {
+ "epoch": 44.838427947598255,
+ "grad_norm": 0.036070339381694794,
+ "learning_rate": 0.0006,
+ "loss": 2.6139631271362305,
+ "step": 3228
+ },
+ {
+ "epoch": 44.852401746724894,
+ "grad_norm": 0.03578571230173111,
+ "learning_rate": 0.0006,
+ "loss": 2.6763968467712402,
+ "step": 3229
+ },
+ {
+ "epoch": 44.866375545851525,
+ "grad_norm": 0.03629235550761223,
+ "learning_rate": 0.0006,
+ "loss": 2.610201358795166,
+ "step": 3230
+ },
+ {
+ "epoch": 44.880349344978164,
+ "grad_norm": 0.03521077707409859,
+ "learning_rate": 0.0006,
+ "loss": 2.617300271987915,
+ "step": 3231
+ },
+ {
+ "epoch": 44.8943231441048,
+ "grad_norm": 0.03449288755655289,
+ "learning_rate": 0.0006,
+ "loss": 2.6529922485351562,
+ "step": 3232
+ },
+ {
+ "epoch": 44.90829694323144,
+ "grad_norm": 0.034105561673641205,
+ "learning_rate": 0.0006,
+ "loss": 2.657431125640869,
+ "step": 3233
+ },
+ {
+ "epoch": 44.92227074235808,
+ "grad_norm": 0.035542141646146774,
+ "learning_rate": 0.0006,
+ "loss": 2.6559646129608154,
+ "step": 3234
+ },
+ {
+ "epoch": 44.93624454148472,
+ "grad_norm": 0.036316659301519394,
+ "learning_rate": 0.0006,
+ "loss": 2.617659568786621,
+ "step": 3235
+ },
+ {
+ "epoch": 44.95021834061135,
+ "grad_norm": 0.03466450423002243,
+ "learning_rate": 0.0006,
+ "loss": 2.625791072845459,
+ "step": 3236
+ },
+ {
+ "epoch": 44.96419213973799,
+ "grad_norm": 0.034643229097127914,
+ "learning_rate": 0.0006,
+ "loss": 2.617854595184326,
+ "step": 3237
+ },
+ {
+ "epoch": 44.97816593886463,
+ "grad_norm": 0.036251697689294815,
+ "learning_rate": 0.0006,
+ "loss": 2.617257833480835,
+ "step": 3238
+ },
+ {
+ "epoch": 44.992139737991266,
+ "grad_norm": 0.035136230289936066,
+ "learning_rate": 0.0006,
+ "loss": 2.675013542175293,
+ "step": 3239
+ },
+ {
+ "epoch": 45.0,
+ "grad_norm": 0.04073465242981911,
+ "learning_rate": 0.0006,
+ "loss": 2.6605868339538574,
+ "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-constantlr/checkpoint-3240/training_args.bin b/runs/baseline-constantlr/checkpoint-3240/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..902eed46d9e02245694ec118af9efec9cd359ff6
--- /dev/null
+++ b/runs/baseline-constantlr/checkpoint-3240/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f8a755363e28cfde742d3e37ba600ce14b5716157c9823f5cadd1b47464c7fc2
+size 5201
diff --git a/runs/baseline-constantlr/checkpoint-360/chat_template.jinja b/runs/baseline-constantlr/checkpoint-360/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-360/config.json b/runs/baseline-constantlr/checkpoint-360/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-360/generation_config.json b/runs/baseline-constantlr/checkpoint-360/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-360/model.safetensors b/runs/baseline-constantlr/checkpoint-360/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..3dbd8a2a780aca4323c277a3d83d78afd9ce49ed
--- /dev/null
+++ b/runs/baseline-constantlr/checkpoint-360/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:4b565b21ac127d737defeb697a8be3f6616e1dd07ac69d1ea80b865bc32d8da4
+size 583356232
diff --git a/runs/baseline-constantlr/checkpoint-360/optimizer.pt b/runs/baseline-constantlr/checkpoint-360/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..e53751e711568896d70ca0ddcfc1f62474201a0e
--- /dev/null
+++ b/runs/baseline-constantlr/checkpoint-360/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5316ca0fdb10f11c355a6d331eb46b2f27daa305fc6c0541add015129d991dc5
+size 1166825803
diff --git a/runs/baseline-constantlr/checkpoint-360/rng_state_0.pth b/runs/baseline-constantlr/checkpoint-360/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..3a2bb760d0b0b50f4b7b6980626fda172a127f68
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-360/rng_state_1.pth b/runs/baseline-constantlr/checkpoint-360/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..7b307a1ab4859d8d838e7d20293e5eb15985549a
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-360/scheduler.pt b/runs/baseline-constantlr/checkpoint-360/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..3392be51d4828dc797fb839f2a9e1046a40a043b
--- /dev/null
+++ b/runs/baseline-constantlr/checkpoint-360/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7e65a4ec33ef36e983f2dbef4f566bda9603a61392f1098ae20853ffb703015a
+size 1465
diff --git a/runs/baseline-constantlr/checkpoint-360/tokenizer.json b/runs/baseline-constantlr/checkpoint-360/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-360/tokenizer_config.json b/runs/baseline-constantlr/checkpoint-360/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-360/trainer_state.json b/runs/baseline-constantlr/checkpoint-360/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..990a50c111e552a15b889fe9f30b3e59b106e310
--- /dev/null
+++ b/runs/baseline-constantlr/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.13303375244140625,
+ "learning_rate": 0.0,
+ "loss": 12.018817901611328,
+ "step": 1
+ },
+ {
+ "epoch": 0.02794759825327511,
+ "grad_norm": 0.13390742242336273,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.021883964538574,
+ "step": 2
+ },
+ {
+ "epoch": 0.04192139737991266,
+ "grad_norm": 0.13340722024440765,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.986108779907227,
+ "step": 3
+ },
+ {
+ "epoch": 0.05589519650655022,
+ "grad_norm": 0.13777263462543488,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.926837921142578,
+ "step": 4
+ },
+ {
+ "epoch": 0.06986899563318777,
+ "grad_norm": 0.14294272661209106,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.845431327819824,
+ "step": 5
+ },
+ {
+ "epoch": 0.08384279475982533,
+ "grad_norm": 0.15314988791942596,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.736921310424805,
+ "step": 6
+ },
+ {
+ "epoch": 0.09781659388646288,
+ "grad_norm": 0.14554648101329803,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.615877151489258,
+ "step": 7
+ },
+ {
+ "epoch": 0.11179039301310044,
+ "grad_norm": 0.1252845823764801,
+ "learning_rate": 4.2e-05,
+ "loss": 11.501619338989258,
+ "step": 8
+ },
+ {
+ "epoch": 0.125764192139738,
+ "grad_norm": 0.11403433233499527,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.396705627441406,
+ "step": 9
+ },
+ {
+ "epoch": 0.13973799126637554,
+ "grad_norm": 0.10996542125940323,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.31666374206543,
+ "step": 10
+ },
+ {
+ "epoch": 0.1537117903930131,
+ "grad_norm": 0.10755623877048492,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.252704620361328,
+ "step": 11
+ },
+ {
+ "epoch": 0.16768558951965065,
+ "grad_norm": 0.10700664669275284,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.194284439086914,
+ "step": 12
+ },
+ {
+ "epoch": 0.18165938864628822,
+ "grad_norm": 0.10606497526168823,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.14437198638916,
+ "step": 13
+ },
+ {
+ "epoch": 0.19563318777292577,
+ "grad_norm": 0.10551681369543076,
+ "learning_rate": 7.8e-05,
+ "loss": 11.096858024597168,
+ "step": 14
+ },
+ {
+ "epoch": 0.2096069868995633,
+ "grad_norm": 0.10573510080575943,
+ "learning_rate": 8.4e-05,
+ "loss": 11.047990798950195,
+ "step": 15
+ },
+ {
+ "epoch": 0.22358078602620088,
+ "grad_norm": 0.10572560131549835,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 11.000219345092773,
+ "step": 16
+ },
+ {
+ "epoch": 0.23755458515283842,
+ "grad_norm": 0.10625051707029343,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.93830680847168,
+ "step": 17
+ },
+ {
+ "epoch": 0.251528384279476,
+ "grad_norm": 0.10565247386693954,
+ "learning_rate": 0.000102,
+ "loss": 10.88237190246582,
+ "step": 18
+ },
+ {
+ "epoch": 0.26550218340611353,
+ "grad_norm": 0.10570791363716125,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.81382942199707,
+ "step": 19
+ },
+ {
+ "epoch": 0.2794759825327511,
+ "grad_norm": 0.10585319995880127,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.742864608764648,
+ "step": 20
+ },
+ {
+ "epoch": 0.2934497816593886,
+ "grad_norm": 0.10421311110258102,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.675719261169434,
+ "step": 21
+ },
+ {
+ "epoch": 0.3074235807860262,
+ "grad_norm": 0.10436785966157913,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.589548110961914,
+ "step": 22
+ },
+ {
+ "epoch": 0.32139737991266376,
+ "grad_norm": 0.10463878512382507,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.504261016845703,
+ "step": 23
+ },
+ {
+ "epoch": 0.3353711790393013,
+ "grad_norm": 0.104142926633358,
+ "learning_rate": 0.000138,
+ "loss": 10.41696548461914,
+ "step": 24
+ },
+ {
+ "epoch": 0.34934497816593885,
+ "grad_norm": 0.1037549152970314,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.327609062194824,
+ "step": 25
+ },
+ {
+ "epoch": 0.36331877729257644,
+ "grad_norm": 0.10464346408843994,
+ "learning_rate": 0.00015,
+ "loss": 10.226776123046875,
+ "step": 26
+ },
+ {
+ "epoch": 0.377292576419214,
+ "grad_norm": 0.10289040952920914,
+ "learning_rate": 0.000156,
+ "loss": 10.142925262451172,
+ "step": 27
+ },
+ {
+ "epoch": 0.39126637554585153,
+ "grad_norm": 0.10476566106081009,
+ "learning_rate": 0.000162,
+ "loss": 10.032388687133789,
+ "step": 28
+ },
+ {
+ "epoch": 0.4052401746724891,
+ "grad_norm": 0.10285190492868423,
+ "learning_rate": 0.000168,
+ "loss": 9.944738388061523,
+ "step": 29
+ },
+ {
+ "epoch": 0.4192139737991266,
+ "grad_norm": 0.10330761969089508,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.832511901855469,
+ "step": 30
+ },
+ {
+ "epoch": 0.4331877729257642,
+ "grad_norm": 0.10190961509943008,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.742905616760254,
+ "step": 31
+ },
+ {
+ "epoch": 0.44716157205240176,
+ "grad_norm": 0.10172155499458313,
+ "learning_rate": 0.000186,
+ "loss": 9.634834289550781,
+ "step": 32
+ },
+ {
+ "epoch": 0.4611353711790393,
+ "grad_norm": 0.10067209601402283,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.522916793823242,
+ "step": 33
+ },
+ {
+ "epoch": 0.47510917030567684,
+ "grad_norm": 0.10058761388063431,
+ "learning_rate": 0.000198,
+ "loss": 9.416927337646484,
+ "step": 34
+ },
+ {
+ "epoch": 0.4890829694323144,
+ "grad_norm": 0.0981091558933258,
+ "learning_rate": 0.000204,
+ "loss": 9.32928466796875,
+ "step": 35
+ },
+ {
+ "epoch": 0.503056768558952,
+ "grad_norm": 0.09739134460687637,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.215356826782227,
+ "step": 36
+ },
+ {
+ "epoch": 0.5170305676855895,
+ "grad_norm": 0.0969916582107544,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.101107597351074,
+ "step": 37
+ },
+ {
+ "epoch": 0.5310043668122271,
+ "grad_norm": 0.0959910973906517,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.998035430908203,
+ "step": 38
+ },
+ {
+ "epoch": 0.5449781659388646,
+ "grad_norm": 0.09558682143688202,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.89165210723877,
+ "step": 39
+ },
+ {
+ "epoch": 0.5589519650655022,
+ "grad_norm": 0.09313725680112839,
+ "learning_rate": 0.000234,
+ "loss": 8.806523323059082,
+ "step": 40
+ },
+ {
+ "epoch": 0.5729257641921397,
+ "grad_norm": 0.09075582772493362,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.71815299987793,
+ "step": 41
+ },
+ {
+ "epoch": 0.5868995633187772,
+ "grad_norm": 0.08912578970193863,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.617330551147461,
+ "step": 42
+ },
+ {
+ "epoch": 0.6008733624454149,
+ "grad_norm": 0.08745060116052628,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.511157989501953,
+ "step": 43
+ },
+ {
+ "epoch": 0.6148471615720524,
+ "grad_norm": 0.08254463970661163,
+ "learning_rate": 0.000258,
+ "loss": 8.458954811096191,
+ "step": 44
+ },
+ {
+ "epoch": 0.62882096069869,
+ "grad_norm": 0.0795406699180603,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.37498664855957,
+ "step": 45
+ },
+ {
+ "epoch": 0.6427947598253275,
+ "grad_norm": 0.07730695605278015,
+ "learning_rate": 0.00027,
+ "loss": 8.293156623840332,
+ "step": 46
+ },
+ {
+ "epoch": 0.6567685589519651,
+ "grad_norm": 0.07404499500989914,
+ "learning_rate": 0.000276,
+ "loss": 8.200754165649414,
+ "step": 47
+ },
+ {
+ "epoch": 0.6707423580786026,
+ "grad_norm": 0.07091354578733444,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.114692687988281,
+ "step": 48
+ },
+ {
+ "epoch": 0.6847161572052402,
+ "grad_norm": 0.06816772371530533,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.060348510742188,
+ "step": 49
+ },
+ {
+ "epoch": 0.6986899563318777,
+ "grad_norm": 0.0605427622795105,
+ "learning_rate": 0.000294,
+ "loss": 7.991006851196289,
+ "step": 50
+ },
+ {
+ "epoch": 0.7126637554585152,
+ "grad_norm": 0.05635255202651024,
+ "learning_rate": 0.0003,
+ "loss": 7.945850372314453,
+ "step": 51
+ },
+ {
+ "epoch": 0.7266375545851529,
+ "grad_norm": 0.05419522523880005,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.895726203918457,
+ "step": 52
+ },
+ {
+ "epoch": 0.7406113537117904,
+ "grad_norm": 0.06724901497364044,
+ "learning_rate": 0.000312,
+ "loss": 7.839101791381836,
+ "step": 53
+ },
+ {
+ "epoch": 0.754585152838428,
+ "grad_norm": 0.12858672440052032,
+ "learning_rate": 0.000318,
+ "loss": 7.840076446533203,
+ "step": 54
+ },
+ {
+ "epoch": 0.7685589519650655,
+ "grad_norm": 0.05087178573012352,
+ "learning_rate": 0.000324,
+ "loss": 7.77433967590332,
+ "step": 55
+ },
+ {
+ "epoch": 0.7825327510917031,
+ "grad_norm": 0.0458969883620739,
+ "learning_rate": 0.00033,
+ "loss": 7.747459411621094,
+ "step": 56
+ },
+ {
+ "epoch": 0.7965065502183406,
+ "grad_norm": 0.03214738890528679,
+ "learning_rate": 0.000336,
+ "loss": 7.735766410827637,
+ "step": 57
+ },
+ {
+ "epoch": 0.8104803493449781,
+ "grad_norm": 0.022700699046254158,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.716371059417725,
+ "step": 58
+ },
+ {
+ "epoch": 0.8244541484716157,
+ "grad_norm": 0.02415020391345024,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.700209140777588,
+ "step": 59
+ },
+ {
+ "epoch": 0.8384279475982532,
+ "grad_norm": 0.021143650636076927,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.687976360321045,
+ "step": 60
+ },
+ {
+ "epoch": 0.8524017467248908,
+ "grad_norm": 0.019051192328333855,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.640708923339844,
+ "step": 61
+ },
+ {
+ "epoch": 0.8663755458515284,
+ "grad_norm": 0.02110682614147663,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.6529130935668945,
+ "step": 62
+ },
+ {
+ "epoch": 0.880349344978166,
+ "grad_norm": 0.024010686203837395,
+ "learning_rate": 0.000372,
+ "loss": 7.645641326904297,
+ "step": 63
+ },
+ {
+ "epoch": 0.8943231441048035,
+ "grad_norm": 0.02591090090572834,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.626849174499512,
+ "step": 64
+ },
+ {
+ "epoch": 0.9082969432314411,
+ "grad_norm": 0.02841993235051632,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.633922576904297,
+ "step": 65
+ },
+ {
+ "epoch": 0.9222707423580786,
+ "grad_norm": 0.02565363608300686,
+ "learning_rate": 0.00039,
+ "loss": 7.6236772537231445,
+ "step": 66
+ },
+ {
+ "epoch": 0.9362445414847161,
+ "grad_norm": 0.020100994035601616,
+ "learning_rate": 0.000396,
+ "loss": 7.602252006530762,
+ "step": 67
+ },
+ {
+ "epoch": 0.9502183406113537,
+ "grad_norm": 0.017415935173630714,
+ "learning_rate": 0.000402,
+ "loss": 7.574195861816406,
+ "step": 68
+ },
+ {
+ "epoch": 0.9641921397379912,
+ "grad_norm": 0.01630476303398609,
+ "learning_rate": 0.000408,
+ "loss": 7.578503131866455,
+ "step": 69
+ },
+ {
+ "epoch": 0.9781659388646288,
+ "grad_norm": 0.015402277931571007,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.54685115814209,
+ "step": 70
+ },
+ {
+ "epoch": 0.9921397379912664,
+ "grad_norm": 0.01438985951244831,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.546932220458984,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.016883183270692825,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.555042266845703,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.549549579620361,
+ "eval_runtime": 54.3422,
+ "eval_samples_per_second": 44.937,
+ "eval_steps_per_second": 1.417,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139737991266375,
+ "grad_norm": 0.01215015072375536,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.534733295440674,
+ "step": 73
+ },
+ {
+ "epoch": 1.027947598253275,
+ "grad_norm": 0.01328246109187603,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.543649196624756,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419213973799126,
+ "grad_norm": 0.012859524227678776,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.50216817855835,
+ "step": 75
+ },
+ {
+ "epoch": 1.0558951965065502,
+ "grad_norm": 0.011157970875501633,
+ "learning_rate": 0.00045,
+ "loss": 7.508391857147217,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698689956331877,
+ "grad_norm": 0.012834188528358936,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.4759087562561035,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838427947598253,
+ "grad_norm": 0.013627874664962292,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.45142936706543,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978165938864628,
+ "grad_norm": 0.01641070283949375,
+ "learning_rate": 0.000468,
+ "loss": 7.492819786071777,
+ "step": 79
+ },
+ {
+ "epoch": 1.1117903930131003,
+ "grad_norm": 0.025136210024356842,
+ "learning_rate": 0.000474,
+ "loss": 7.474215507507324,
+ "step": 80
+ },
+ {
+ "epoch": 1.125764192139738,
+ "grad_norm": 0.03659580647945404,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.475737571716309,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397379912663754,
+ "grad_norm": 0.04370221868157387,
+ "learning_rate": 0.000486,
+ "loss": 7.453543663024902,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537117903930132,
+ "grad_norm": 0.02917138673365116,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.424599647521973,
+ "step": 83
+ },
+ {
+ "epoch": 1.1676855895196507,
+ "grad_norm": 0.015414979308843613,
+ "learning_rate": 0.000498,
+ "loss": 7.388550758361816,
+ "step": 84
+ },
+ {
+ "epoch": 1.1816593886462883,
+ "grad_norm": 0.029156062752008438,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.379591941833496,
+ "step": 85
+ },
+ {
+ "epoch": 1.1956331877729258,
+ "grad_norm": 0.014958011917769909,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.372748374938965,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096069868995634,
+ "grad_norm": 0.021887343376874924,
+ "learning_rate": 0.000516,
+ "loss": 7.3589630126953125,
+ "step": 87
+ },
+ {
+ "epoch": 1.223580786026201,
+ "grad_norm": 0.02962890826165676,
+ "learning_rate": 0.000522,
+ "loss": 7.373016357421875,
+ "step": 88
+ },
+ {
+ "epoch": 1.2375545851528384,
+ "grad_norm": 0.031032968312501907,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.3282928466796875,
+ "step": 89
+ },
+ {
+ "epoch": 1.251528384279476,
+ "grad_norm": 0.027690274640917778,
+ "learning_rate": 0.000534,
+ "loss": 7.320304870605469,
+ "step": 90
+ },
+ {
+ "epoch": 1.2655021834061135,
+ "grad_norm": 0.022552549839019775,
+ "learning_rate": 0.00054,
+ "loss": 7.3051300048828125,
+ "step": 91
+ },
+ {
+ "epoch": 1.279475982532751,
+ "grad_norm": 0.04130178689956665,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.284594535827637,
+ "step": 92
+ },
+ {
+ "epoch": 1.2934497816593886,
+ "grad_norm": 0.05043136328458786,
+ "learning_rate": 0.000552,
+ "loss": 7.286007881164551,
+ "step": 93
+ },
+ {
+ "epoch": 1.3074235807860262,
+ "grad_norm": 0.04574465751647949,
+ "learning_rate": 0.000558,
+ "loss": 7.22679328918457,
+ "step": 94
+ },
+ {
+ "epoch": 1.3213973799126637,
+ "grad_norm": 0.03277682512998581,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.229741096496582,
+ "step": 95
+ },
+ {
+ "epoch": 1.3353711790393012,
+ "grad_norm": 0.022675029933452606,
+ "learning_rate": 0.00057,
+ "loss": 7.241637706756592,
+ "step": 96
+ },
+ {
+ "epoch": 1.3493449781659388,
+ "grad_norm": 0.03889699652791023,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.193673133850098,
+ "step": 97
+ },
+ {
+ "epoch": 1.3633187772925766,
+ "grad_norm": 0.029434625059366226,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.1953840255737305,
+ "step": 98
+ },
+ {
+ "epoch": 1.3772925764192139,
+ "grad_norm": 0.02118326723575592,
+ "learning_rate": 0.000588,
+ "loss": 7.178635597229004,
+ "step": 99
+ },
+ {
+ "epoch": 1.3912663755458516,
+ "grad_norm": 0.02966528758406639,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.151487350463867,
+ "step": 100
+ },
+ {
+ "epoch": 1.405240174672489,
+ "grad_norm": 0.0450727716088295,
+ "learning_rate": 0.0006,
+ "loss": 7.144834995269775,
+ "step": 101
+ },
+ {
+ "epoch": 1.4192139737991267,
+ "grad_norm": 0.08898167312145233,
+ "learning_rate": 0.0006,
+ "loss": 7.180665969848633,
+ "step": 102
+ },
+ {
+ "epoch": 1.4331877729257643,
+ "grad_norm": 0.10679084807634354,
+ "learning_rate": 0.0006,
+ "loss": 7.233458518981934,
+ "step": 103
+ },
+ {
+ "epoch": 1.4471615720524018,
+ "grad_norm": 0.04746336117386818,
+ "learning_rate": 0.0006,
+ "loss": 7.167373180389404,
+ "step": 104
+ },
+ {
+ "epoch": 1.4611353711790394,
+ "grad_norm": 0.06380590051412582,
+ "learning_rate": 0.0006,
+ "loss": 7.189356803894043,
+ "step": 105
+ },
+ {
+ "epoch": 1.475109170305677,
+ "grad_norm": 0.039717014878988266,
+ "learning_rate": 0.0006,
+ "loss": 7.096653938293457,
+ "step": 106
+ },
+ {
+ "epoch": 1.4890829694323144,
+ "grad_norm": 0.06762711703777313,
+ "learning_rate": 0.0006,
+ "loss": 7.127993583679199,
+ "step": 107
+ },
+ {
+ "epoch": 1.503056768558952,
+ "grad_norm": 0.05134489759802818,
+ "learning_rate": 0.0006,
+ "loss": 7.072257995605469,
+ "step": 108
+ },
+ {
+ "epoch": 1.5170305676855895,
+ "grad_norm": 0.062314722687006,
+ "learning_rate": 0.0006,
+ "loss": 7.073700904846191,
+ "step": 109
+ },
+ {
+ "epoch": 1.531004366812227,
+ "grad_norm": 0.03607739135622978,
+ "learning_rate": 0.0006,
+ "loss": 7.051465034484863,
+ "step": 110
+ },
+ {
+ "epoch": 1.5449781659388646,
+ "grad_norm": 0.04546204209327698,
+ "learning_rate": 0.0006,
+ "loss": 7.049814224243164,
+ "step": 111
+ },
+ {
+ "epoch": 1.5589519650655022,
+ "grad_norm": 0.0319792665541172,
+ "learning_rate": 0.0006,
+ "loss": 7.0164875984191895,
+ "step": 112
+ },
+ {
+ "epoch": 1.5729257641921397,
+ "grad_norm": 0.04590746760368347,
+ "learning_rate": 0.0006,
+ "loss": 7.001565456390381,
+ "step": 113
+ },
+ {
+ "epoch": 1.5868995633187772,
+ "grad_norm": 0.031896382570266724,
+ "learning_rate": 0.0006,
+ "loss": 6.994606018066406,
+ "step": 114
+ },
+ {
+ "epoch": 1.600873362445415,
+ "grad_norm": 0.021410338580608368,
+ "learning_rate": 0.0006,
+ "loss": 6.947071075439453,
+ "step": 115
+ },
+ {
+ "epoch": 1.6148471615720523,
+ "grad_norm": 0.030063210055232048,
+ "learning_rate": 0.0006,
+ "loss": 6.979219913482666,
+ "step": 116
+ },
+ {
+ "epoch": 1.62882096069869,
+ "grad_norm": 0.02234027162194252,
+ "learning_rate": 0.0006,
+ "loss": 6.929020881652832,
+ "step": 117
+ },
+ {
+ "epoch": 1.6427947598253274,
+ "grad_norm": 0.025586063042283058,
+ "learning_rate": 0.0006,
+ "loss": 6.9200663566589355,
+ "step": 118
+ },
+ {
+ "epoch": 1.6567685589519652,
+ "grad_norm": 0.022098371759057045,
+ "learning_rate": 0.0006,
+ "loss": 6.899832248687744,
+ "step": 119
+ },
+ {
+ "epoch": 1.6707423580786025,
+ "grad_norm": 0.019238410517573357,
+ "learning_rate": 0.0006,
+ "loss": 6.8586015701293945,
+ "step": 120
+ },
+ {
+ "epoch": 1.6847161572052403,
+ "grad_norm": 0.024153294041752815,
+ "learning_rate": 0.0006,
+ "loss": 6.867973327636719,
+ "step": 121
+ },
+ {
+ "epoch": 1.6986899563318776,
+ "grad_norm": 0.01690024696290493,
+ "learning_rate": 0.0006,
+ "loss": 6.878490447998047,
+ "step": 122
+ },
+ {
+ "epoch": 1.7126637554585153,
+ "grad_norm": 0.02171619050204754,
+ "learning_rate": 0.0006,
+ "loss": 6.853621959686279,
+ "step": 123
+ },
+ {
+ "epoch": 1.726637554585153,
+ "grad_norm": 0.020535755902528763,
+ "learning_rate": 0.0006,
+ "loss": 6.852185249328613,
+ "step": 124
+ },
+ {
+ "epoch": 1.7406113537117904,
+ "grad_norm": 0.015457311645150185,
+ "learning_rate": 0.0006,
+ "loss": 6.826596260070801,
+ "step": 125
+ },
+ {
+ "epoch": 1.754585152838428,
+ "grad_norm": 0.017492085695266724,
+ "learning_rate": 0.0006,
+ "loss": 6.842765808105469,
+ "step": 126
+ },
+ {
+ "epoch": 1.7685589519650655,
+ "grad_norm": 0.014785612002015114,
+ "learning_rate": 0.0006,
+ "loss": 6.849224090576172,
+ "step": 127
+ },
+ {
+ "epoch": 1.782532751091703,
+ "grad_norm": 0.017512250691652298,
+ "learning_rate": 0.0006,
+ "loss": 6.824787139892578,
+ "step": 128
+ },
+ {
+ "epoch": 1.7965065502183406,
+ "grad_norm": 0.01895114593207836,
+ "learning_rate": 0.0006,
+ "loss": 6.801428318023682,
+ "step": 129
+ },
+ {
+ "epoch": 1.8104803493449781,
+ "grad_norm": 0.015728816390037537,
+ "learning_rate": 0.0006,
+ "loss": 6.801990985870361,
+ "step": 130
+ },
+ {
+ "epoch": 1.8244541484716157,
+ "grad_norm": 0.014321585185825825,
+ "learning_rate": 0.0006,
+ "loss": 6.793122291564941,
+ "step": 131
+ },
+ {
+ "epoch": 1.8384279475982532,
+ "grad_norm": 0.016692014411091805,
+ "learning_rate": 0.0006,
+ "loss": 6.74687385559082,
+ "step": 132
+ },
+ {
+ "epoch": 1.8524017467248908,
+ "grad_norm": 0.016697920858860016,
+ "learning_rate": 0.0006,
+ "loss": 6.75140380859375,
+ "step": 133
+ },
+ {
+ "epoch": 1.8663755458515285,
+ "grad_norm": 0.014954701997339725,
+ "learning_rate": 0.0006,
+ "loss": 6.746084213256836,
+ "step": 134
+ },
+ {
+ "epoch": 1.8803493449781659,
+ "grad_norm": 0.013010316528379917,
+ "learning_rate": 0.0006,
+ "loss": 6.725405693054199,
+ "step": 135
+ },
+ {
+ "epoch": 1.8943231441048036,
+ "grad_norm": 0.011892660520970821,
+ "learning_rate": 0.0006,
+ "loss": 6.718758583068848,
+ "step": 136
+ },
+ {
+ "epoch": 1.908296943231441,
+ "grad_norm": 0.012127497233450413,
+ "learning_rate": 0.0006,
+ "loss": 6.708139419555664,
+ "step": 137
+ },
+ {
+ "epoch": 1.9222707423580787,
+ "grad_norm": 0.015417213551700115,
+ "learning_rate": 0.0006,
+ "loss": 6.705748558044434,
+ "step": 138
+ },
+ {
+ "epoch": 1.936244541484716,
+ "grad_norm": 0.03063729591667652,
+ "learning_rate": 0.0006,
+ "loss": 6.691249847412109,
+ "step": 139
+ },
+ {
+ "epoch": 1.9502183406113538,
+ "grad_norm": 0.07376791536808014,
+ "learning_rate": 0.0006,
+ "loss": 6.71767520904541,
+ "step": 140
+ },
+ {
+ "epoch": 1.9641921397379911,
+ "grad_norm": 0.14157423377037048,
+ "learning_rate": 0.0006,
+ "loss": 6.787544250488281,
+ "step": 141
+ },
+ {
+ "epoch": 1.9781659388646289,
+ "grad_norm": 0.09186933934688568,
+ "learning_rate": 0.0006,
+ "loss": 6.73362398147583,
+ "step": 142
+ },
+ {
+ "epoch": 1.9921397379912664,
+ "grad_norm": 0.06612848490476608,
+ "learning_rate": 0.0006,
+ "loss": 6.719516754150391,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.048072297126054764,
+ "learning_rate": 0.0006,
+ "loss": 6.666120529174805,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 6.7162394523620605,
+ "eval_runtime": 50.5907,
+ "eval_samples_per_second": 48.27,
+ "eval_steps_per_second": 1.522,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139737991266378,
+ "grad_norm": 0.03777749463915825,
+ "learning_rate": 0.0006,
+ "loss": 6.686484336853027,
+ "step": 145
+ },
+ {
+ "epoch": 2.027947598253275,
+ "grad_norm": 0.04378646984696388,
+ "learning_rate": 0.0006,
+ "loss": 6.679071426391602,
+ "step": 146
+ },
+ {
+ "epoch": 2.041921397379913,
+ "grad_norm": 0.027715124189853668,
+ "learning_rate": 0.0006,
+ "loss": 6.6776323318481445,
+ "step": 147
+ },
+ {
+ "epoch": 2.05589519650655,
+ "grad_norm": 0.03411925211548805,
+ "learning_rate": 0.0006,
+ "loss": 6.643917083740234,
+ "step": 148
+ },
+ {
+ "epoch": 2.069868995633188,
+ "grad_norm": 0.034444212913513184,
+ "learning_rate": 0.0006,
+ "loss": 6.67141056060791,
+ "step": 149
+ },
+ {
+ "epoch": 2.0838427947598253,
+ "grad_norm": 0.0387650802731514,
+ "learning_rate": 0.0006,
+ "loss": 6.65234375,
+ "step": 150
+ },
+ {
+ "epoch": 2.097816593886463,
+ "grad_norm": 0.03921861574053764,
+ "learning_rate": 0.0006,
+ "loss": 6.624712944030762,
+ "step": 151
+ },
+ {
+ "epoch": 2.1117903930131003,
+ "grad_norm": 0.02531580813229084,
+ "learning_rate": 0.0006,
+ "loss": 6.617608547210693,
+ "step": 152
+ },
+ {
+ "epoch": 2.125764192139738,
+ "grad_norm": 0.03220974653959274,
+ "learning_rate": 0.0006,
+ "loss": 6.587964057922363,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397379912663754,
+ "grad_norm": 0.03923291340470314,
+ "learning_rate": 0.0006,
+ "loss": 6.588845252990723,
+ "step": 154
+ },
+ {
+ "epoch": 2.153711790393013,
+ "grad_norm": 0.028337281197309494,
+ "learning_rate": 0.0006,
+ "loss": 6.5807952880859375,
+ "step": 155
+ },
+ {
+ "epoch": 2.1676855895196505,
+ "grad_norm": 0.01873156800866127,
+ "learning_rate": 0.0006,
+ "loss": 6.560453414916992,
+ "step": 156
+ },
+ {
+ "epoch": 2.1816593886462883,
+ "grad_norm": 0.027509493753314018,
+ "learning_rate": 0.0006,
+ "loss": 6.5615363121032715,
+ "step": 157
+ },
+ {
+ "epoch": 2.1956331877729256,
+ "grad_norm": 0.025428347289562225,
+ "learning_rate": 0.0006,
+ "loss": 6.5283966064453125,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096069868995634,
+ "grad_norm": 0.02118629403412342,
+ "learning_rate": 0.0006,
+ "loss": 6.526224136352539,
+ "step": 159
+ },
+ {
+ "epoch": 2.2235807860262007,
+ "grad_norm": 0.03233652561903,
+ "learning_rate": 0.0006,
+ "loss": 6.536041259765625,
+ "step": 160
+ },
+ {
+ "epoch": 2.2375545851528384,
+ "grad_norm": 0.04605546221137047,
+ "learning_rate": 0.0006,
+ "loss": 6.537662029266357,
+ "step": 161
+ },
+ {
+ "epoch": 2.251528384279476,
+ "grad_norm": 0.05192062631249428,
+ "learning_rate": 0.0006,
+ "loss": 6.551901817321777,
+ "step": 162
+ },
+ {
+ "epoch": 2.2655021834061135,
+ "grad_norm": 0.042231615632772446,
+ "learning_rate": 0.0006,
+ "loss": 6.511076927185059,
+ "step": 163
+ },
+ {
+ "epoch": 2.279475982532751,
+ "grad_norm": 0.04085887596011162,
+ "learning_rate": 0.0006,
+ "loss": 6.503472328186035,
+ "step": 164
+ },
+ {
+ "epoch": 2.2934497816593886,
+ "grad_norm": 0.031182587146759033,
+ "learning_rate": 0.0006,
+ "loss": 6.504403591156006,
+ "step": 165
+ },
+ {
+ "epoch": 2.3074235807860264,
+ "grad_norm": 0.032555561512708664,
+ "learning_rate": 0.0006,
+ "loss": 6.4552764892578125,
+ "step": 166
+ },
+ {
+ "epoch": 2.3213973799126637,
+ "grad_norm": 0.04939635097980499,
+ "learning_rate": 0.0006,
+ "loss": 6.495351791381836,
+ "step": 167
+ },
+ {
+ "epoch": 2.3353711790393015,
+ "grad_norm": 0.037503793835639954,
+ "learning_rate": 0.0006,
+ "loss": 6.4742560386657715,
+ "step": 168
+ },
+ {
+ "epoch": 2.349344978165939,
+ "grad_norm": 0.02366613782942295,
+ "learning_rate": 0.0006,
+ "loss": 6.478525161743164,
+ "step": 169
+ },
+ {
+ "epoch": 2.3633187772925766,
+ "grad_norm": 0.022314894944429398,
+ "learning_rate": 0.0006,
+ "loss": 6.414134979248047,
+ "step": 170
+ },
+ {
+ "epoch": 2.377292576419214,
+ "grad_norm": 0.030494702979922295,
+ "learning_rate": 0.0006,
+ "loss": 6.444867134094238,
+ "step": 171
+ },
+ {
+ "epoch": 2.3912663755458516,
+ "grad_norm": 0.04064486175775528,
+ "learning_rate": 0.0006,
+ "loss": 6.417036056518555,
+ "step": 172
+ },
+ {
+ "epoch": 2.405240174672489,
+ "grad_norm": 0.03061651438474655,
+ "learning_rate": 0.0006,
+ "loss": 6.423735618591309,
+ "step": 173
+ },
+ {
+ "epoch": 2.4192139737991267,
+ "grad_norm": 0.02046056278049946,
+ "learning_rate": 0.0006,
+ "loss": 6.419736862182617,
+ "step": 174
+ },
+ {
+ "epoch": 2.433187772925764,
+ "grad_norm": 0.02530163712799549,
+ "learning_rate": 0.0006,
+ "loss": 6.399930953979492,
+ "step": 175
+ },
+ {
+ "epoch": 2.447161572052402,
+ "grad_norm": 0.03588842228055,
+ "learning_rate": 0.0006,
+ "loss": 6.418618202209473,
+ "step": 176
+ },
+ {
+ "epoch": 2.461135371179039,
+ "grad_norm": 0.04048234224319458,
+ "learning_rate": 0.0006,
+ "loss": 6.390285491943359,
+ "step": 177
+ },
+ {
+ "epoch": 2.475109170305677,
+ "grad_norm": 0.039080191403627396,
+ "learning_rate": 0.0006,
+ "loss": 6.3688530921936035,
+ "step": 178
+ },
+ {
+ "epoch": 2.489082969432314,
+ "grad_norm": 0.029000122100114822,
+ "learning_rate": 0.0006,
+ "loss": 6.369181156158447,
+ "step": 179
+ },
+ {
+ "epoch": 2.503056768558952,
+ "grad_norm": 0.01609761081635952,
+ "learning_rate": 0.0006,
+ "loss": 6.359917640686035,
+ "step": 180
+ },
+ {
+ "epoch": 2.5170305676855893,
+ "grad_norm": 0.02305005118250847,
+ "learning_rate": 0.0006,
+ "loss": 6.347358226776123,
+ "step": 181
+ },
+ {
+ "epoch": 2.531004366812227,
+ "grad_norm": 0.03316781297326088,
+ "learning_rate": 0.0006,
+ "loss": 6.36626672744751,
+ "step": 182
+ },
+ {
+ "epoch": 2.544978165938865,
+ "grad_norm": 0.05111207440495491,
+ "learning_rate": 0.0006,
+ "loss": 6.380453109741211,
+ "step": 183
+ },
+ {
+ "epoch": 2.558951965065502,
+ "grad_norm": 0.062241602689027786,
+ "learning_rate": 0.0006,
+ "loss": 6.353237152099609,
+ "step": 184
+ },
+ {
+ "epoch": 2.5729257641921395,
+ "grad_norm": 0.060149725526571274,
+ "learning_rate": 0.0006,
+ "loss": 6.358938694000244,
+ "step": 185
+ },
+ {
+ "epoch": 2.5868995633187772,
+ "grad_norm": 0.04228121414780617,
+ "learning_rate": 0.0006,
+ "loss": 6.310116767883301,
+ "step": 186
+ },
+ {
+ "epoch": 2.600873362445415,
+ "grad_norm": 0.019458215683698654,
+ "learning_rate": 0.0006,
+ "loss": 6.284702777862549,
+ "step": 187
+ },
+ {
+ "epoch": 2.6148471615720523,
+ "grad_norm": 0.0342358835041523,
+ "learning_rate": 0.0006,
+ "loss": 6.316659927368164,
+ "step": 188
+ },
+ {
+ "epoch": 2.62882096069869,
+ "grad_norm": 0.04139583557844162,
+ "learning_rate": 0.0006,
+ "loss": 6.301124572753906,
+ "step": 189
+ },
+ {
+ "epoch": 2.6427947598253274,
+ "grad_norm": 0.028264787048101425,
+ "learning_rate": 0.0006,
+ "loss": 6.298510551452637,
+ "step": 190
+ },
+ {
+ "epoch": 2.656768558951965,
+ "grad_norm": 0.023622136563062668,
+ "learning_rate": 0.0006,
+ "loss": 6.2571210861206055,
+ "step": 191
+ },
+ {
+ "epoch": 2.6707423580786025,
+ "grad_norm": 0.039508845657110214,
+ "learning_rate": 0.0006,
+ "loss": 6.267218589782715,
+ "step": 192
+ },
+ {
+ "epoch": 2.6847161572052403,
+ "grad_norm": 0.043358899652957916,
+ "learning_rate": 0.0006,
+ "loss": 6.279658794403076,
+ "step": 193
+ },
+ {
+ "epoch": 2.6986899563318776,
+ "grad_norm": 0.04134640842676163,
+ "learning_rate": 0.0006,
+ "loss": 6.277159214019775,
+ "step": 194
+ },
+ {
+ "epoch": 2.7126637554585153,
+ "grad_norm": 0.05406952276825905,
+ "learning_rate": 0.0006,
+ "loss": 6.295559883117676,
+ "step": 195
+ },
+ {
+ "epoch": 2.726637554585153,
+ "grad_norm": 0.04557774215936661,
+ "learning_rate": 0.0006,
+ "loss": 6.260174751281738,
+ "step": 196
+ },
+ {
+ "epoch": 2.7406113537117904,
+ "grad_norm": 0.04542337730526924,
+ "learning_rate": 0.0006,
+ "loss": 6.244534492492676,
+ "step": 197
+ },
+ {
+ "epoch": 2.7545851528384278,
+ "grad_norm": 0.06924881041049957,
+ "learning_rate": 0.0006,
+ "loss": 6.2060723304748535,
+ "step": 198
+ },
+ {
+ "epoch": 2.7685589519650655,
+ "grad_norm": 0.06679725646972656,
+ "learning_rate": 0.0006,
+ "loss": 6.259133815765381,
+ "step": 199
+ },
+ {
+ "epoch": 2.7825327510917033,
+ "grad_norm": 0.05039471387863159,
+ "learning_rate": 0.0006,
+ "loss": 6.239280700683594,
+ "step": 200
+ },
+ {
+ "epoch": 2.7965065502183406,
+ "grad_norm": 0.05935394763946533,
+ "learning_rate": 0.0006,
+ "loss": 6.242481231689453,
+ "step": 201
+ },
+ {
+ "epoch": 2.810480349344978,
+ "grad_norm": 0.0486418716609478,
+ "learning_rate": 0.0006,
+ "loss": 6.239593505859375,
+ "step": 202
+ },
+ {
+ "epoch": 2.8244541484716157,
+ "grad_norm": 0.05010748282074928,
+ "learning_rate": 0.0006,
+ "loss": 6.2328948974609375,
+ "step": 203
+ },
+ {
+ "epoch": 2.8384279475982535,
+ "grad_norm": 0.03444438800215721,
+ "learning_rate": 0.0006,
+ "loss": 6.200089454650879,
+ "step": 204
+ },
+ {
+ "epoch": 2.8524017467248908,
+ "grad_norm": 0.043253373354673386,
+ "learning_rate": 0.0006,
+ "loss": 6.2089433670043945,
+ "step": 205
+ },
+ {
+ "epoch": 2.8663755458515285,
+ "grad_norm": 0.047505684196949005,
+ "learning_rate": 0.0006,
+ "loss": 6.220322608947754,
+ "step": 206
+ },
+ {
+ "epoch": 2.880349344978166,
+ "grad_norm": 0.04393792524933815,
+ "learning_rate": 0.0006,
+ "loss": 6.178770542144775,
+ "step": 207
+ },
+ {
+ "epoch": 2.8943231441048036,
+ "grad_norm": 0.04025835916399956,
+ "learning_rate": 0.0006,
+ "loss": 6.160248756408691,
+ "step": 208
+ },
+ {
+ "epoch": 2.908296943231441,
+ "grad_norm": 0.03877986595034599,
+ "learning_rate": 0.0006,
+ "loss": 6.164917945861816,
+ "step": 209
+ },
+ {
+ "epoch": 2.9222707423580787,
+ "grad_norm": 0.03666771203279495,
+ "learning_rate": 0.0006,
+ "loss": 6.172199249267578,
+ "step": 210
+ },
+ {
+ "epoch": 2.936244541484716,
+ "grad_norm": 0.028036516159772873,
+ "learning_rate": 0.0006,
+ "loss": 6.179510116577148,
+ "step": 211
+ },
+ {
+ "epoch": 2.950218340611354,
+ "grad_norm": 0.021492617204785347,
+ "learning_rate": 0.0006,
+ "loss": 6.1275153160095215,
+ "step": 212
+ },
+ {
+ "epoch": 2.964192139737991,
+ "grad_norm": 0.026816558092832565,
+ "learning_rate": 0.0006,
+ "loss": 6.131775856018066,
+ "step": 213
+ },
+ {
+ "epoch": 2.978165938864629,
+ "grad_norm": 0.03757898136973381,
+ "learning_rate": 0.0006,
+ "loss": 6.135777473449707,
+ "step": 214
+ },
+ {
+ "epoch": 2.992139737991266,
+ "grad_norm": 0.06036437302827835,
+ "learning_rate": 0.0006,
+ "loss": 6.146076202392578,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.09846952557563782,
+ "learning_rate": 0.0006,
+ "loss": 6.218435287475586,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.23890495300293,
+ "eval_runtime": 50.6822,
+ "eval_samples_per_second": 48.183,
+ "eval_steps_per_second": 1.519,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139737991266378,
+ "grad_norm": 0.10463741421699524,
+ "learning_rate": 0.0006,
+ "loss": 6.197120666503906,
+ "step": 217
+ },
+ {
+ "epoch": 3.027947598253275,
+ "grad_norm": 0.10212419927120209,
+ "learning_rate": 0.0006,
+ "loss": 6.178340911865234,
+ "step": 218
+ },
+ {
+ "epoch": 3.041921397379913,
+ "grad_norm": 0.08038751780986786,
+ "learning_rate": 0.0006,
+ "loss": 6.217406749725342,
+ "step": 219
+ },
+ {
+ "epoch": 3.05589519650655,
+ "grad_norm": 0.04787508398294449,
+ "learning_rate": 0.0006,
+ "loss": 6.155381679534912,
+ "step": 220
+ },
+ {
+ "epoch": 3.069868995633188,
+ "grad_norm": 0.06880322843790054,
+ "learning_rate": 0.0006,
+ "loss": 6.121614933013916,
+ "step": 221
+ },
+ {
+ "epoch": 3.0838427947598253,
+ "grad_norm": 0.03749438002705574,
+ "learning_rate": 0.0006,
+ "loss": 6.120484352111816,
+ "step": 222
+ },
+ {
+ "epoch": 3.097816593886463,
+ "grad_norm": 0.03875046223402023,
+ "learning_rate": 0.0006,
+ "loss": 6.12362003326416,
+ "step": 223
+ },
+ {
+ "epoch": 3.1117903930131003,
+ "grad_norm": 0.030663209035992622,
+ "learning_rate": 0.0006,
+ "loss": 6.1111063957214355,
+ "step": 224
+ },
+ {
+ "epoch": 3.125764192139738,
+ "grad_norm": 0.029520904645323753,
+ "learning_rate": 0.0006,
+ "loss": 6.130336761474609,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397379912663754,
+ "grad_norm": 0.02854953519999981,
+ "learning_rate": 0.0006,
+ "loss": 6.086193084716797,
+ "step": 226
+ },
+ {
+ "epoch": 3.153711790393013,
+ "grad_norm": 0.027147898450493813,
+ "learning_rate": 0.0006,
+ "loss": 6.066827774047852,
+ "step": 227
+ },
+ {
+ "epoch": 3.1676855895196505,
+ "grad_norm": 0.025577887892723083,
+ "learning_rate": 0.0006,
+ "loss": 6.070775032043457,
+ "step": 228
+ },
+ {
+ "epoch": 3.1816593886462883,
+ "grad_norm": 0.026318276301026344,
+ "learning_rate": 0.0006,
+ "loss": 6.064469814300537,
+ "step": 229
+ },
+ {
+ "epoch": 3.1956331877729256,
+ "grad_norm": 0.02595221996307373,
+ "learning_rate": 0.0006,
+ "loss": 6.066489219665527,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096069868995634,
+ "grad_norm": 0.0248890221118927,
+ "learning_rate": 0.0006,
+ "loss": 6.032470703125,
+ "step": 231
+ },
+ {
+ "epoch": 3.2235807860262007,
+ "grad_norm": 0.017041699960827827,
+ "learning_rate": 0.0006,
+ "loss": 6.056160926818848,
+ "step": 232
+ },
+ {
+ "epoch": 3.2375545851528384,
+ "grad_norm": 0.020971592515707016,
+ "learning_rate": 0.0006,
+ "loss": 6.024506568908691,
+ "step": 233
+ },
+ {
+ "epoch": 3.251528384279476,
+ "grad_norm": 0.01897028088569641,
+ "learning_rate": 0.0006,
+ "loss": 6.035656929016113,
+ "step": 234
+ },
+ {
+ "epoch": 3.2655021834061135,
+ "grad_norm": 0.027151981368660927,
+ "learning_rate": 0.0006,
+ "loss": 6.026547431945801,
+ "step": 235
+ },
+ {
+ "epoch": 3.279475982532751,
+ "grad_norm": 0.029453502967953682,
+ "learning_rate": 0.0006,
+ "loss": 5.981723785400391,
+ "step": 236
+ },
+ {
+ "epoch": 3.2934497816593886,
+ "grad_norm": 0.027771083638072014,
+ "learning_rate": 0.0006,
+ "loss": 6.019796371459961,
+ "step": 237
+ },
+ {
+ "epoch": 3.3074235807860264,
+ "grad_norm": 0.02605084516108036,
+ "learning_rate": 0.0006,
+ "loss": 5.984506607055664,
+ "step": 238
+ },
+ {
+ "epoch": 3.3213973799126637,
+ "grad_norm": 0.022903922945261,
+ "learning_rate": 0.0006,
+ "loss": 6.023873805999756,
+ "step": 239
+ },
+ {
+ "epoch": 3.3353711790393015,
+ "grad_norm": 0.01976492442190647,
+ "learning_rate": 0.0006,
+ "loss": 6.009030342102051,
+ "step": 240
+ },
+ {
+ "epoch": 3.349344978165939,
+ "grad_norm": 0.018872970715165138,
+ "learning_rate": 0.0006,
+ "loss": 5.970742702484131,
+ "step": 241
+ },
+ {
+ "epoch": 3.3633187772925766,
+ "grad_norm": 0.017447829246520996,
+ "learning_rate": 0.0006,
+ "loss": 5.968851089477539,
+ "step": 242
+ },
+ {
+ "epoch": 3.377292576419214,
+ "grad_norm": 0.025419825688004494,
+ "learning_rate": 0.0006,
+ "loss": 5.956470489501953,
+ "step": 243
+ },
+ {
+ "epoch": 3.3912663755458516,
+ "grad_norm": 0.03654123470187187,
+ "learning_rate": 0.0006,
+ "loss": 5.94770622253418,
+ "step": 244
+ },
+ {
+ "epoch": 3.405240174672489,
+ "grad_norm": 0.05607098713517189,
+ "learning_rate": 0.0006,
+ "loss": 6.008593559265137,
+ "step": 245
+ },
+ {
+ "epoch": 3.4192139737991267,
+ "grad_norm": 0.07973720878362656,
+ "learning_rate": 0.0006,
+ "loss": 5.9966888427734375,
+ "step": 246
+ },
+ {
+ "epoch": 3.433187772925764,
+ "grad_norm": 0.10906023532152176,
+ "learning_rate": 0.0006,
+ "loss": 6.054642200469971,
+ "step": 247
+ },
+ {
+ "epoch": 3.447161572052402,
+ "grad_norm": 0.09792660176753998,
+ "learning_rate": 0.0006,
+ "loss": 6.067026138305664,
+ "step": 248
+ },
+ {
+ "epoch": 3.461135371179039,
+ "grad_norm": 0.07395700365304947,
+ "learning_rate": 0.0006,
+ "loss": 6.01310920715332,
+ "step": 249
+ },
+ {
+ "epoch": 3.475109170305677,
+ "grad_norm": 0.10172071307897568,
+ "learning_rate": 0.0006,
+ "loss": 6.048509120941162,
+ "step": 250
+ },
+ {
+ "epoch": 3.489082969432314,
+ "grad_norm": 0.0717678815126419,
+ "learning_rate": 0.0006,
+ "loss": 6.055008888244629,
+ "step": 251
+ },
+ {
+ "epoch": 3.503056768558952,
+ "grad_norm": 0.06398089975118637,
+ "learning_rate": 0.0006,
+ "loss": 5.9677276611328125,
+ "step": 252
+ },
+ {
+ "epoch": 3.5170305676855893,
+ "grad_norm": 0.0643860474228859,
+ "learning_rate": 0.0006,
+ "loss": 5.957507133483887,
+ "step": 253
+ },
+ {
+ "epoch": 3.531004366812227,
+ "grad_norm": 0.03472325950860977,
+ "learning_rate": 0.0006,
+ "loss": 5.952362060546875,
+ "step": 254
+ },
+ {
+ "epoch": 3.544978165938865,
+ "grad_norm": 0.03918307647109032,
+ "learning_rate": 0.0006,
+ "loss": 5.957100868225098,
+ "step": 255
+ },
+ {
+ "epoch": 3.558951965065502,
+ "grad_norm": 0.03519073501229286,
+ "learning_rate": 0.0006,
+ "loss": 5.97830867767334,
+ "step": 256
+ },
+ {
+ "epoch": 3.5729257641921395,
+ "grad_norm": 0.03435497358441353,
+ "learning_rate": 0.0006,
+ "loss": 5.93912410736084,
+ "step": 257
+ },
+ {
+ "epoch": 3.5868995633187772,
+ "grad_norm": 0.026064487174153328,
+ "learning_rate": 0.0006,
+ "loss": 5.91353702545166,
+ "step": 258
+ },
+ {
+ "epoch": 3.600873362445415,
+ "grad_norm": 0.03159152343869209,
+ "learning_rate": 0.0006,
+ "loss": 5.913291931152344,
+ "step": 259
+ },
+ {
+ "epoch": 3.6148471615720523,
+ "grad_norm": 0.02195592038333416,
+ "learning_rate": 0.0006,
+ "loss": 5.906322479248047,
+ "step": 260
+ },
+ {
+ "epoch": 3.62882096069869,
+ "grad_norm": 0.020358966663479805,
+ "learning_rate": 0.0006,
+ "loss": 5.891860008239746,
+ "step": 261
+ },
+ {
+ "epoch": 3.6427947598253274,
+ "grad_norm": 0.01964488998055458,
+ "learning_rate": 0.0006,
+ "loss": 5.881132125854492,
+ "step": 262
+ },
+ {
+ "epoch": 3.656768558951965,
+ "grad_norm": 0.022447235882282257,
+ "learning_rate": 0.0006,
+ "loss": 5.8846940994262695,
+ "step": 263
+ },
+ {
+ "epoch": 3.6707423580786025,
+ "grad_norm": 0.018359875306487083,
+ "learning_rate": 0.0006,
+ "loss": 5.8861188888549805,
+ "step": 264
+ },
+ {
+ "epoch": 3.6847161572052403,
+ "grad_norm": 0.018481185659766197,
+ "learning_rate": 0.0006,
+ "loss": 5.874635696411133,
+ "step": 265
+ },
+ {
+ "epoch": 3.6986899563318776,
+ "grad_norm": 0.016943952068686485,
+ "learning_rate": 0.0006,
+ "loss": 5.8380126953125,
+ "step": 266
+ },
+ {
+ "epoch": 3.7126637554585153,
+ "grad_norm": 0.016593772917985916,
+ "learning_rate": 0.0006,
+ "loss": 5.855746269226074,
+ "step": 267
+ },
+ {
+ "epoch": 3.726637554585153,
+ "grad_norm": 0.018204636871814728,
+ "learning_rate": 0.0006,
+ "loss": 5.873927116394043,
+ "step": 268
+ },
+ {
+ "epoch": 3.7406113537117904,
+ "grad_norm": 0.017277248203754425,
+ "learning_rate": 0.0006,
+ "loss": 5.855231285095215,
+ "step": 269
+ },
+ {
+ "epoch": 3.7545851528384278,
+ "grad_norm": 0.01717568188905716,
+ "learning_rate": 0.0006,
+ "loss": 5.847787857055664,
+ "step": 270
+ },
+ {
+ "epoch": 3.7685589519650655,
+ "grad_norm": 0.01537331473082304,
+ "learning_rate": 0.0006,
+ "loss": 5.852605819702148,
+ "step": 271
+ },
+ {
+ "epoch": 3.7825327510917033,
+ "grad_norm": 0.01504798699170351,
+ "learning_rate": 0.0006,
+ "loss": 5.825901031494141,
+ "step": 272
+ },
+ {
+ "epoch": 3.7965065502183406,
+ "grad_norm": 0.023221664130687714,
+ "learning_rate": 0.0006,
+ "loss": 5.812404155731201,
+ "step": 273
+ },
+ {
+ "epoch": 3.810480349344978,
+ "grad_norm": 0.0397733673453331,
+ "learning_rate": 0.0006,
+ "loss": 5.804308891296387,
+ "step": 274
+ },
+ {
+ "epoch": 3.8244541484716157,
+ "grad_norm": 0.05233687534928322,
+ "learning_rate": 0.0006,
+ "loss": 5.788049697875977,
+ "step": 275
+ },
+ {
+ "epoch": 3.8384279475982535,
+ "grad_norm": 0.05563921108841896,
+ "learning_rate": 0.0006,
+ "loss": 5.811939239501953,
+ "step": 276
+ },
+ {
+ "epoch": 3.8524017467248908,
+ "grad_norm": 0.0501336008310318,
+ "learning_rate": 0.0006,
+ "loss": 5.810712814331055,
+ "step": 277
+ },
+ {
+ "epoch": 3.8663755458515285,
+ "grad_norm": 0.07601612061262131,
+ "learning_rate": 0.0006,
+ "loss": 5.846009254455566,
+ "step": 278
+ },
+ {
+ "epoch": 3.880349344978166,
+ "grad_norm": 0.07927536964416504,
+ "learning_rate": 0.0006,
+ "loss": 5.846945285797119,
+ "step": 279
+ },
+ {
+ "epoch": 3.8943231441048036,
+ "grad_norm": 0.05778975039720535,
+ "learning_rate": 0.0006,
+ "loss": 5.8009209632873535,
+ "step": 280
+ },
+ {
+ "epoch": 3.908296943231441,
+ "grad_norm": 0.06650745123624802,
+ "learning_rate": 0.0006,
+ "loss": 5.825387001037598,
+ "step": 281
+ },
+ {
+ "epoch": 3.9222707423580787,
+ "grad_norm": 0.05610830709338188,
+ "learning_rate": 0.0006,
+ "loss": 5.854207992553711,
+ "step": 282
+ },
+ {
+ "epoch": 3.936244541484716,
+ "grad_norm": 0.03054177202284336,
+ "learning_rate": 0.0006,
+ "loss": 5.8229875564575195,
+ "step": 283
+ },
+ {
+ "epoch": 3.950218340611354,
+ "grad_norm": 0.03929241746664047,
+ "learning_rate": 0.0006,
+ "loss": 5.8026041984558105,
+ "step": 284
+ },
+ {
+ "epoch": 3.964192139737991,
+ "grad_norm": 0.03007139079272747,
+ "learning_rate": 0.0006,
+ "loss": 5.7833709716796875,
+ "step": 285
+ },
+ {
+ "epoch": 3.978165938864629,
+ "grad_norm": 0.03231097757816315,
+ "learning_rate": 0.0006,
+ "loss": 5.7852091789245605,
+ "step": 286
+ },
+ {
+ "epoch": 3.992139737991266,
+ "grad_norm": 0.02939445711672306,
+ "learning_rate": 0.0006,
+ "loss": 5.753163814544678,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.02993260696530342,
+ "learning_rate": 0.0006,
+ "loss": 5.762526512145996,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 5.799882888793945,
+ "eval_runtime": 50.8936,
+ "eval_samples_per_second": 47.982,
+ "eval_steps_per_second": 1.513,
+ "step": 288
+ },
+ {
+ "epoch": 4.013973799126638,
+ "grad_norm": 0.025836583226919174,
+ "learning_rate": 0.0006,
+ "loss": 5.74060583114624,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279475982532755,
+ "grad_norm": 0.02240375429391861,
+ "learning_rate": 0.0006,
+ "loss": 5.744357109069824,
+ "step": 290
+ },
+ {
+ "epoch": 4.041921397379912,
+ "grad_norm": 0.019645314663648605,
+ "learning_rate": 0.0006,
+ "loss": 5.714840412139893,
+ "step": 291
+ },
+ {
+ "epoch": 4.05589519650655,
+ "grad_norm": 0.01903143897652626,
+ "learning_rate": 0.0006,
+ "loss": 5.749794006347656,
+ "step": 292
+ },
+ {
+ "epoch": 4.069868995633188,
+ "grad_norm": 0.020970258861780167,
+ "learning_rate": 0.0006,
+ "loss": 5.684886932373047,
+ "step": 293
+ },
+ {
+ "epoch": 4.083842794759826,
+ "grad_norm": 0.022254586219787598,
+ "learning_rate": 0.0006,
+ "loss": 5.690360069274902,
+ "step": 294
+ },
+ {
+ "epoch": 4.097816593886463,
+ "grad_norm": 0.024622811004519463,
+ "learning_rate": 0.0006,
+ "loss": 5.7078962326049805,
+ "step": 295
+ },
+ {
+ "epoch": 4.1117903930131,
+ "grad_norm": 0.023592552170157433,
+ "learning_rate": 0.0006,
+ "loss": 5.7039971351623535,
+ "step": 296
+ },
+ {
+ "epoch": 4.125764192139738,
+ "grad_norm": 0.02667587623000145,
+ "learning_rate": 0.0006,
+ "loss": 5.677852630615234,
+ "step": 297
+ },
+ {
+ "epoch": 4.139737991266376,
+ "grad_norm": 0.03330948203802109,
+ "learning_rate": 0.0006,
+ "loss": 5.688773155212402,
+ "step": 298
+ },
+ {
+ "epoch": 4.153711790393013,
+ "grad_norm": 0.045157793909311295,
+ "learning_rate": 0.0006,
+ "loss": 5.675937652587891,
+ "step": 299
+ },
+ {
+ "epoch": 4.1676855895196505,
+ "grad_norm": 0.07034408301115036,
+ "learning_rate": 0.0006,
+ "loss": 5.687074661254883,
+ "step": 300
+ },
+ {
+ "epoch": 4.181659388646288,
+ "grad_norm": 0.10193091630935669,
+ "learning_rate": 0.0006,
+ "loss": 5.748222351074219,
+ "step": 301
+ },
+ {
+ "epoch": 4.195633187772926,
+ "grad_norm": 0.09606931358575821,
+ "learning_rate": 0.0006,
+ "loss": 5.767232894897461,
+ "step": 302
+ },
+ {
+ "epoch": 4.209606986899563,
+ "grad_norm": 0.05994758382439613,
+ "learning_rate": 0.0006,
+ "loss": 5.723153114318848,
+ "step": 303
+ },
+ {
+ "epoch": 4.223580786026201,
+ "grad_norm": 0.045849986374378204,
+ "learning_rate": 0.0006,
+ "loss": 5.7005815505981445,
+ "step": 304
+ },
+ {
+ "epoch": 4.2375545851528384,
+ "grad_norm": 0.04177941009402275,
+ "learning_rate": 0.0006,
+ "loss": 5.679755210876465,
+ "step": 305
+ },
+ {
+ "epoch": 4.251528384279476,
+ "grad_norm": 0.03307238593697548,
+ "learning_rate": 0.0006,
+ "loss": 5.677393913269043,
+ "step": 306
+ },
+ {
+ "epoch": 4.265502183406113,
+ "grad_norm": 0.04340110346674919,
+ "learning_rate": 0.0006,
+ "loss": 5.702075004577637,
+ "step": 307
+ },
+ {
+ "epoch": 4.279475982532751,
+ "grad_norm": 0.04797970876097679,
+ "learning_rate": 0.0006,
+ "loss": 5.650345802307129,
+ "step": 308
+ },
+ {
+ "epoch": 4.293449781659389,
+ "grad_norm": 0.04946571961045265,
+ "learning_rate": 0.0006,
+ "loss": 5.675044059753418,
+ "step": 309
+ },
+ {
+ "epoch": 4.307423580786026,
+ "grad_norm": 0.03254636004567146,
+ "learning_rate": 0.0006,
+ "loss": 5.622986793518066,
+ "step": 310
+ },
+ {
+ "epoch": 4.321397379912664,
+ "grad_norm": 0.032069381326436996,
+ "learning_rate": 0.0006,
+ "loss": 5.629563331604004,
+ "step": 311
+ },
+ {
+ "epoch": 4.335371179039301,
+ "grad_norm": 0.033597469329833984,
+ "learning_rate": 0.0006,
+ "loss": 5.612854480743408,
+ "step": 312
+ },
+ {
+ "epoch": 4.349344978165939,
+ "grad_norm": 0.02717825584113598,
+ "learning_rate": 0.0006,
+ "loss": 5.652135372161865,
+ "step": 313
+ },
+ {
+ "epoch": 4.3633187772925766,
+ "grad_norm": 0.03312784433364868,
+ "learning_rate": 0.0006,
+ "loss": 5.649629592895508,
+ "step": 314
+ },
+ {
+ "epoch": 4.377292576419214,
+ "grad_norm": 0.03037389926612377,
+ "learning_rate": 0.0006,
+ "loss": 5.6194305419921875,
+ "step": 315
+ },
+ {
+ "epoch": 4.391266375545851,
+ "grad_norm": 0.03778672590851784,
+ "learning_rate": 0.0006,
+ "loss": 5.641755104064941,
+ "step": 316
+ },
+ {
+ "epoch": 4.405240174672489,
+ "grad_norm": 0.053473301231861115,
+ "learning_rate": 0.0006,
+ "loss": 5.621832847595215,
+ "step": 317
+ },
+ {
+ "epoch": 4.419213973799127,
+ "grad_norm": 0.06915664672851562,
+ "learning_rate": 0.0006,
+ "loss": 5.601483345031738,
+ "step": 318
+ },
+ {
+ "epoch": 4.4331877729257645,
+ "grad_norm": 0.06667220592498779,
+ "learning_rate": 0.0006,
+ "loss": 5.642349720001221,
+ "step": 319
+ },
+ {
+ "epoch": 4.447161572052401,
+ "grad_norm": 0.037290167063474655,
+ "learning_rate": 0.0006,
+ "loss": 5.604238510131836,
+ "step": 320
+ },
+ {
+ "epoch": 4.461135371179039,
+ "grad_norm": 0.04003678262233734,
+ "learning_rate": 0.0006,
+ "loss": 5.593315601348877,
+ "step": 321
+ },
+ {
+ "epoch": 4.475109170305677,
+ "grad_norm": 0.028076812624931335,
+ "learning_rate": 0.0006,
+ "loss": 5.566408157348633,
+ "step": 322
+ },
+ {
+ "epoch": 4.489082969432315,
+ "grad_norm": 0.031247343868017197,
+ "learning_rate": 0.0006,
+ "loss": 5.6215410232543945,
+ "step": 323
+ },
+ {
+ "epoch": 4.503056768558952,
+ "grad_norm": 0.02864190936088562,
+ "learning_rate": 0.0006,
+ "loss": 5.583666801452637,
+ "step": 324
+ },
+ {
+ "epoch": 4.517030567685589,
+ "grad_norm": 0.03396870568394661,
+ "learning_rate": 0.0006,
+ "loss": 5.568394184112549,
+ "step": 325
+ },
+ {
+ "epoch": 4.531004366812227,
+ "grad_norm": 0.03053557313978672,
+ "learning_rate": 0.0006,
+ "loss": 5.5704755783081055,
+ "step": 326
+ },
+ {
+ "epoch": 4.544978165938865,
+ "grad_norm": 0.039402369409799576,
+ "learning_rate": 0.0006,
+ "loss": 5.529522895812988,
+ "step": 327
+ },
+ {
+ "epoch": 4.558951965065502,
+ "grad_norm": 0.039162520319223404,
+ "learning_rate": 0.0006,
+ "loss": 5.565547466278076,
+ "step": 328
+ },
+ {
+ "epoch": 4.5729257641921395,
+ "grad_norm": 0.03071208856999874,
+ "learning_rate": 0.0006,
+ "loss": 5.551553726196289,
+ "step": 329
+ },
+ {
+ "epoch": 4.586899563318777,
+ "grad_norm": 0.0320625938475132,
+ "learning_rate": 0.0006,
+ "loss": 5.535126686096191,
+ "step": 330
+ },
+ {
+ "epoch": 4.600873362445415,
+ "grad_norm": 0.03700695186853409,
+ "learning_rate": 0.0006,
+ "loss": 5.560665130615234,
+ "step": 331
+ },
+ {
+ "epoch": 4.614847161572053,
+ "grad_norm": 0.0327119417488575,
+ "learning_rate": 0.0006,
+ "loss": 5.528924465179443,
+ "step": 332
+ },
+ {
+ "epoch": 4.62882096069869,
+ "grad_norm": 0.028552839532494545,
+ "learning_rate": 0.0006,
+ "loss": 5.520917892456055,
+ "step": 333
+ },
+ {
+ "epoch": 4.642794759825327,
+ "grad_norm": 0.029750585556030273,
+ "learning_rate": 0.0006,
+ "loss": 5.512092113494873,
+ "step": 334
+ },
+ {
+ "epoch": 4.656768558951965,
+ "grad_norm": 0.03556099906563759,
+ "learning_rate": 0.0006,
+ "loss": 5.500020503997803,
+ "step": 335
+ },
+ {
+ "epoch": 4.670742358078603,
+ "grad_norm": 0.03819836303591728,
+ "learning_rate": 0.0006,
+ "loss": 5.523126602172852,
+ "step": 336
+ },
+ {
+ "epoch": 4.68471615720524,
+ "grad_norm": 0.038457129150629044,
+ "learning_rate": 0.0006,
+ "loss": 5.497986316680908,
+ "step": 337
+ },
+ {
+ "epoch": 4.698689956331878,
+ "grad_norm": 0.049066998064517975,
+ "learning_rate": 0.0006,
+ "loss": 5.481566429138184,
+ "step": 338
+ },
+ {
+ "epoch": 4.712663755458515,
+ "grad_norm": 0.06208881363272667,
+ "learning_rate": 0.0006,
+ "loss": 5.5200581550598145,
+ "step": 339
+ },
+ {
+ "epoch": 4.726637554585153,
+ "grad_norm": 0.04952879622578621,
+ "learning_rate": 0.0006,
+ "loss": 5.528044700622559,
+ "step": 340
+ },
+ {
+ "epoch": 4.74061135371179,
+ "grad_norm": 0.046794820576906204,
+ "learning_rate": 0.0006,
+ "loss": 5.4694437980651855,
+ "step": 341
+ },
+ {
+ "epoch": 4.754585152838428,
+ "grad_norm": 0.05241665989160538,
+ "learning_rate": 0.0006,
+ "loss": 5.5203752517700195,
+ "step": 342
+ },
+ {
+ "epoch": 4.7685589519650655,
+ "grad_norm": 0.029848996549844742,
+ "learning_rate": 0.0006,
+ "loss": 5.484467506408691,
+ "step": 343
+ },
+ {
+ "epoch": 4.782532751091703,
+ "grad_norm": 0.035734955221414566,
+ "learning_rate": 0.0006,
+ "loss": 5.4982075691223145,
+ "step": 344
+ },
+ {
+ "epoch": 4.796506550218341,
+ "grad_norm": 0.03326781094074249,
+ "learning_rate": 0.0006,
+ "loss": 5.4673380851745605,
+ "step": 345
+ },
+ {
+ "epoch": 4.810480349344978,
+ "grad_norm": 0.02851971797645092,
+ "learning_rate": 0.0006,
+ "loss": 5.466347694396973,
+ "step": 346
+ },
+ {
+ "epoch": 4.824454148471616,
+ "grad_norm": 0.02881411463022232,
+ "learning_rate": 0.0006,
+ "loss": 5.4748992919921875,
+ "step": 347
+ },
+ {
+ "epoch": 4.8384279475982535,
+ "grad_norm": 0.037079520523548126,
+ "learning_rate": 0.0006,
+ "loss": 5.430629730224609,
+ "step": 348
+ },
+ {
+ "epoch": 4.85240174672489,
+ "grad_norm": 0.06697188317775726,
+ "learning_rate": 0.0006,
+ "loss": 5.48007869720459,
+ "step": 349
+ },
+ {
+ "epoch": 4.866375545851528,
+ "grad_norm": 0.08443532884120941,
+ "learning_rate": 0.0006,
+ "loss": 5.519370079040527,
+ "step": 350
+ },
+ {
+ "epoch": 4.880349344978166,
+ "grad_norm": 0.0594899021089077,
+ "learning_rate": 0.0006,
+ "loss": 5.502467155456543,
+ "step": 351
+ },
+ {
+ "epoch": 4.894323144104804,
+ "grad_norm": 0.045731619000434875,
+ "learning_rate": 0.0006,
+ "loss": 5.48048210144043,
+ "step": 352
+ },
+ {
+ "epoch": 4.908296943231441,
+ "grad_norm": 0.02911028079688549,
+ "learning_rate": 0.0006,
+ "loss": 5.45798921585083,
+ "step": 353
+ },
+ {
+ "epoch": 4.922270742358078,
+ "grad_norm": 0.03407920524477959,
+ "learning_rate": 0.0006,
+ "loss": 5.452054977416992,
+ "step": 354
+ },
+ {
+ "epoch": 4.936244541484716,
+ "grad_norm": 0.030616968870162964,
+ "learning_rate": 0.0006,
+ "loss": 5.416000843048096,
+ "step": 355
+ },
+ {
+ "epoch": 4.950218340611354,
+ "grad_norm": 0.036123789846897125,
+ "learning_rate": 0.0006,
+ "loss": 5.448460102081299,
+ "step": 356
+ },
+ {
+ "epoch": 4.964192139737992,
+ "grad_norm": 0.03511728718876839,
+ "learning_rate": 0.0006,
+ "loss": 5.4388580322265625,
+ "step": 357
+ },
+ {
+ "epoch": 4.978165938864628,
+ "grad_norm": 0.032399944961071014,
+ "learning_rate": 0.0006,
+ "loss": 5.439154624938965,
+ "step": 358
+ },
+ {
+ "epoch": 4.992139737991266,
+ "grad_norm": 0.030734507367014885,
+ "learning_rate": 0.0006,
+ "loss": 5.394845485687256,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.036368995904922485,
+ "learning_rate": 0.0006,
+ "loss": 5.4285783767700195,
+ "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-constantlr/checkpoint-360/training_args.bin b/runs/baseline-constantlr/checkpoint-360/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..902eed46d9e02245694ec118af9efec9cd359ff6
--- /dev/null
+++ b/runs/baseline-constantlr/checkpoint-360/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f8a755363e28cfde742d3e37ba600ce14b5716157c9823f5cadd1b47464c7fc2
+size 5201
diff --git a/runs/baseline-constantlr/checkpoint-3600/chat_template.jinja b/runs/baseline-constantlr/checkpoint-3600/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-3600/config.json b/runs/baseline-constantlr/checkpoint-3600/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-3600/generation_config.json b/runs/baseline-constantlr/checkpoint-3600/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-3600/model.safetensors b/runs/baseline-constantlr/checkpoint-3600/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..f3135f3c606eb6172dbebe4674b3f0923e1266ae
--- /dev/null
+++ b/runs/baseline-constantlr/checkpoint-3600/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5405741b37b86f91f79deb9255582c9a4ab6b0013375b63b77e5ad0464aed9d9
+size 583356232
diff --git a/runs/baseline-constantlr/checkpoint-3600/optimizer.pt b/runs/baseline-constantlr/checkpoint-3600/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..ee7ef9a760c649e2b15e13778cb9dacb7d7b331d
--- /dev/null
+++ b/runs/baseline-constantlr/checkpoint-3600/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:158ce7b58e62d9bb23a6f98c17f0d4a75dd5375489a46a2c3c45795bd7f330f7
+size 1166825803
diff --git a/runs/baseline-constantlr/checkpoint-3600/rng_state_0.pth b/runs/baseline-constantlr/checkpoint-3600/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..42e5fb760a4884c24f3899e0e2c34f9ab7d35d5e
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-3600/rng_state_1.pth b/runs/baseline-constantlr/checkpoint-3600/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..d6f10c7be65a25152763463abf33eb700d784288
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-3600/scheduler.pt b/runs/baseline-constantlr/checkpoint-3600/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..20a986e4fb920e85c26c60263e9015b8ab4618f9
--- /dev/null
+++ b/runs/baseline-constantlr/checkpoint-3600/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f4eb43f04013056843a7b59a2cc642c592be1e564c086bf712a257cfc4d72d63
+size 1465
diff --git a/runs/baseline-constantlr/checkpoint-3600/tokenizer.json b/runs/baseline-constantlr/checkpoint-3600/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-3600/tokenizer_config.json b/runs/baseline-constantlr/checkpoint-3600/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-3600/trainer_state.json b/runs/baseline-constantlr/checkpoint-3600/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..7dacae261dc916993d431728599199d96030efa9
--- /dev/null
+++ b/runs/baseline-constantlr/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.13303375244140625,
+ "learning_rate": 0.0,
+ "loss": 12.018817901611328,
+ "step": 1
+ },
+ {
+ "epoch": 0.02794759825327511,
+ "grad_norm": 0.13390742242336273,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.021883964538574,
+ "step": 2
+ },
+ {
+ "epoch": 0.04192139737991266,
+ "grad_norm": 0.13340722024440765,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.986108779907227,
+ "step": 3
+ },
+ {
+ "epoch": 0.05589519650655022,
+ "grad_norm": 0.13777263462543488,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.926837921142578,
+ "step": 4
+ },
+ {
+ "epoch": 0.06986899563318777,
+ "grad_norm": 0.14294272661209106,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.845431327819824,
+ "step": 5
+ },
+ {
+ "epoch": 0.08384279475982533,
+ "grad_norm": 0.15314988791942596,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.736921310424805,
+ "step": 6
+ },
+ {
+ "epoch": 0.09781659388646288,
+ "grad_norm": 0.14554648101329803,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.615877151489258,
+ "step": 7
+ },
+ {
+ "epoch": 0.11179039301310044,
+ "grad_norm": 0.1252845823764801,
+ "learning_rate": 4.2e-05,
+ "loss": 11.501619338989258,
+ "step": 8
+ },
+ {
+ "epoch": 0.125764192139738,
+ "grad_norm": 0.11403433233499527,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.396705627441406,
+ "step": 9
+ },
+ {
+ "epoch": 0.13973799126637554,
+ "grad_norm": 0.10996542125940323,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.31666374206543,
+ "step": 10
+ },
+ {
+ "epoch": 0.1537117903930131,
+ "grad_norm": 0.10755623877048492,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.252704620361328,
+ "step": 11
+ },
+ {
+ "epoch": 0.16768558951965065,
+ "grad_norm": 0.10700664669275284,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.194284439086914,
+ "step": 12
+ },
+ {
+ "epoch": 0.18165938864628822,
+ "grad_norm": 0.10606497526168823,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.14437198638916,
+ "step": 13
+ },
+ {
+ "epoch": 0.19563318777292577,
+ "grad_norm": 0.10551681369543076,
+ "learning_rate": 7.8e-05,
+ "loss": 11.096858024597168,
+ "step": 14
+ },
+ {
+ "epoch": 0.2096069868995633,
+ "grad_norm": 0.10573510080575943,
+ "learning_rate": 8.4e-05,
+ "loss": 11.047990798950195,
+ "step": 15
+ },
+ {
+ "epoch": 0.22358078602620088,
+ "grad_norm": 0.10572560131549835,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 11.000219345092773,
+ "step": 16
+ },
+ {
+ "epoch": 0.23755458515283842,
+ "grad_norm": 0.10625051707029343,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.93830680847168,
+ "step": 17
+ },
+ {
+ "epoch": 0.251528384279476,
+ "grad_norm": 0.10565247386693954,
+ "learning_rate": 0.000102,
+ "loss": 10.88237190246582,
+ "step": 18
+ },
+ {
+ "epoch": 0.26550218340611353,
+ "grad_norm": 0.10570791363716125,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.81382942199707,
+ "step": 19
+ },
+ {
+ "epoch": 0.2794759825327511,
+ "grad_norm": 0.10585319995880127,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.742864608764648,
+ "step": 20
+ },
+ {
+ "epoch": 0.2934497816593886,
+ "grad_norm": 0.10421311110258102,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.675719261169434,
+ "step": 21
+ },
+ {
+ "epoch": 0.3074235807860262,
+ "grad_norm": 0.10436785966157913,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.589548110961914,
+ "step": 22
+ },
+ {
+ "epoch": 0.32139737991266376,
+ "grad_norm": 0.10463878512382507,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.504261016845703,
+ "step": 23
+ },
+ {
+ "epoch": 0.3353711790393013,
+ "grad_norm": 0.104142926633358,
+ "learning_rate": 0.000138,
+ "loss": 10.41696548461914,
+ "step": 24
+ },
+ {
+ "epoch": 0.34934497816593885,
+ "grad_norm": 0.1037549152970314,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.327609062194824,
+ "step": 25
+ },
+ {
+ "epoch": 0.36331877729257644,
+ "grad_norm": 0.10464346408843994,
+ "learning_rate": 0.00015,
+ "loss": 10.226776123046875,
+ "step": 26
+ },
+ {
+ "epoch": 0.377292576419214,
+ "grad_norm": 0.10289040952920914,
+ "learning_rate": 0.000156,
+ "loss": 10.142925262451172,
+ "step": 27
+ },
+ {
+ "epoch": 0.39126637554585153,
+ "grad_norm": 0.10476566106081009,
+ "learning_rate": 0.000162,
+ "loss": 10.032388687133789,
+ "step": 28
+ },
+ {
+ "epoch": 0.4052401746724891,
+ "grad_norm": 0.10285190492868423,
+ "learning_rate": 0.000168,
+ "loss": 9.944738388061523,
+ "step": 29
+ },
+ {
+ "epoch": 0.4192139737991266,
+ "grad_norm": 0.10330761969089508,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.832511901855469,
+ "step": 30
+ },
+ {
+ "epoch": 0.4331877729257642,
+ "grad_norm": 0.10190961509943008,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.742905616760254,
+ "step": 31
+ },
+ {
+ "epoch": 0.44716157205240176,
+ "grad_norm": 0.10172155499458313,
+ "learning_rate": 0.000186,
+ "loss": 9.634834289550781,
+ "step": 32
+ },
+ {
+ "epoch": 0.4611353711790393,
+ "grad_norm": 0.10067209601402283,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.522916793823242,
+ "step": 33
+ },
+ {
+ "epoch": 0.47510917030567684,
+ "grad_norm": 0.10058761388063431,
+ "learning_rate": 0.000198,
+ "loss": 9.416927337646484,
+ "step": 34
+ },
+ {
+ "epoch": 0.4890829694323144,
+ "grad_norm": 0.0981091558933258,
+ "learning_rate": 0.000204,
+ "loss": 9.32928466796875,
+ "step": 35
+ },
+ {
+ "epoch": 0.503056768558952,
+ "grad_norm": 0.09739134460687637,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.215356826782227,
+ "step": 36
+ },
+ {
+ "epoch": 0.5170305676855895,
+ "grad_norm": 0.0969916582107544,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.101107597351074,
+ "step": 37
+ },
+ {
+ "epoch": 0.5310043668122271,
+ "grad_norm": 0.0959910973906517,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.998035430908203,
+ "step": 38
+ },
+ {
+ "epoch": 0.5449781659388646,
+ "grad_norm": 0.09558682143688202,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.89165210723877,
+ "step": 39
+ },
+ {
+ "epoch": 0.5589519650655022,
+ "grad_norm": 0.09313725680112839,
+ "learning_rate": 0.000234,
+ "loss": 8.806523323059082,
+ "step": 40
+ },
+ {
+ "epoch": 0.5729257641921397,
+ "grad_norm": 0.09075582772493362,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.71815299987793,
+ "step": 41
+ },
+ {
+ "epoch": 0.5868995633187772,
+ "grad_norm": 0.08912578970193863,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.617330551147461,
+ "step": 42
+ },
+ {
+ "epoch": 0.6008733624454149,
+ "grad_norm": 0.08745060116052628,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.511157989501953,
+ "step": 43
+ },
+ {
+ "epoch": 0.6148471615720524,
+ "grad_norm": 0.08254463970661163,
+ "learning_rate": 0.000258,
+ "loss": 8.458954811096191,
+ "step": 44
+ },
+ {
+ "epoch": 0.62882096069869,
+ "grad_norm": 0.0795406699180603,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.37498664855957,
+ "step": 45
+ },
+ {
+ "epoch": 0.6427947598253275,
+ "grad_norm": 0.07730695605278015,
+ "learning_rate": 0.00027,
+ "loss": 8.293156623840332,
+ "step": 46
+ },
+ {
+ "epoch": 0.6567685589519651,
+ "grad_norm": 0.07404499500989914,
+ "learning_rate": 0.000276,
+ "loss": 8.200754165649414,
+ "step": 47
+ },
+ {
+ "epoch": 0.6707423580786026,
+ "grad_norm": 0.07091354578733444,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.114692687988281,
+ "step": 48
+ },
+ {
+ "epoch": 0.6847161572052402,
+ "grad_norm": 0.06816772371530533,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.060348510742188,
+ "step": 49
+ },
+ {
+ "epoch": 0.6986899563318777,
+ "grad_norm": 0.0605427622795105,
+ "learning_rate": 0.000294,
+ "loss": 7.991006851196289,
+ "step": 50
+ },
+ {
+ "epoch": 0.7126637554585152,
+ "grad_norm": 0.05635255202651024,
+ "learning_rate": 0.0003,
+ "loss": 7.945850372314453,
+ "step": 51
+ },
+ {
+ "epoch": 0.7266375545851529,
+ "grad_norm": 0.05419522523880005,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.895726203918457,
+ "step": 52
+ },
+ {
+ "epoch": 0.7406113537117904,
+ "grad_norm": 0.06724901497364044,
+ "learning_rate": 0.000312,
+ "loss": 7.839101791381836,
+ "step": 53
+ },
+ {
+ "epoch": 0.754585152838428,
+ "grad_norm": 0.12858672440052032,
+ "learning_rate": 0.000318,
+ "loss": 7.840076446533203,
+ "step": 54
+ },
+ {
+ "epoch": 0.7685589519650655,
+ "grad_norm": 0.05087178573012352,
+ "learning_rate": 0.000324,
+ "loss": 7.77433967590332,
+ "step": 55
+ },
+ {
+ "epoch": 0.7825327510917031,
+ "grad_norm": 0.0458969883620739,
+ "learning_rate": 0.00033,
+ "loss": 7.747459411621094,
+ "step": 56
+ },
+ {
+ "epoch": 0.7965065502183406,
+ "grad_norm": 0.03214738890528679,
+ "learning_rate": 0.000336,
+ "loss": 7.735766410827637,
+ "step": 57
+ },
+ {
+ "epoch": 0.8104803493449781,
+ "grad_norm": 0.022700699046254158,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.716371059417725,
+ "step": 58
+ },
+ {
+ "epoch": 0.8244541484716157,
+ "grad_norm": 0.02415020391345024,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.700209140777588,
+ "step": 59
+ },
+ {
+ "epoch": 0.8384279475982532,
+ "grad_norm": 0.021143650636076927,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.687976360321045,
+ "step": 60
+ },
+ {
+ "epoch": 0.8524017467248908,
+ "grad_norm": 0.019051192328333855,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.640708923339844,
+ "step": 61
+ },
+ {
+ "epoch": 0.8663755458515284,
+ "grad_norm": 0.02110682614147663,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.6529130935668945,
+ "step": 62
+ },
+ {
+ "epoch": 0.880349344978166,
+ "grad_norm": 0.024010686203837395,
+ "learning_rate": 0.000372,
+ "loss": 7.645641326904297,
+ "step": 63
+ },
+ {
+ "epoch": 0.8943231441048035,
+ "grad_norm": 0.02591090090572834,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.626849174499512,
+ "step": 64
+ },
+ {
+ "epoch": 0.9082969432314411,
+ "grad_norm": 0.02841993235051632,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.633922576904297,
+ "step": 65
+ },
+ {
+ "epoch": 0.9222707423580786,
+ "grad_norm": 0.02565363608300686,
+ "learning_rate": 0.00039,
+ "loss": 7.6236772537231445,
+ "step": 66
+ },
+ {
+ "epoch": 0.9362445414847161,
+ "grad_norm": 0.020100994035601616,
+ "learning_rate": 0.000396,
+ "loss": 7.602252006530762,
+ "step": 67
+ },
+ {
+ "epoch": 0.9502183406113537,
+ "grad_norm": 0.017415935173630714,
+ "learning_rate": 0.000402,
+ "loss": 7.574195861816406,
+ "step": 68
+ },
+ {
+ "epoch": 0.9641921397379912,
+ "grad_norm": 0.01630476303398609,
+ "learning_rate": 0.000408,
+ "loss": 7.578503131866455,
+ "step": 69
+ },
+ {
+ "epoch": 0.9781659388646288,
+ "grad_norm": 0.015402277931571007,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.54685115814209,
+ "step": 70
+ },
+ {
+ "epoch": 0.9921397379912664,
+ "grad_norm": 0.01438985951244831,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.546932220458984,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.016883183270692825,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.555042266845703,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.549549579620361,
+ "eval_runtime": 54.3422,
+ "eval_samples_per_second": 44.937,
+ "eval_steps_per_second": 1.417,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139737991266375,
+ "grad_norm": 0.01215015072375536,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.534733295440674,
+ "step": 73
+ },
+ {
+ "epoch": 1.027947598253275,
+ "grad_norm": 0.01328246109187603,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.543649196624756,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419213973799126,
+ "grad_norm": 0.012859524227678776,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.50216817855835,
+ "step": 75
+ },
+ {
+ "epoch": 1.0558951965065502,
+ "grad_norm": 0.011157970875501633,
+ "learning_rate": 0.00045,
+ "loss": 7.508391857147217,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698689956331877,
+ "grad_norm": 0.012834188528358936,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.4759087562561035,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838427947598253,
+ "grad_norm": 0.013627874664962292,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.45142936706543,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978165938864628,
+ "grad_norm": 0.01641070283949375,
+ "learning_rate": 0.000468,
+ "loss": 7.492819786071777,
+ "step": 79
+ },
+ {
+ "epoch": 1.1117903930131003,
+ "grad_norm": 0.025136210024356842,
+ "learning_rate": 0.000474,
+ "loss": 7.474215507507324,
+ "step": 80
+ },
+ {
+ "epoch": 1.125764192139738,
+ "grad_norm": 0.03659580647945404,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.475737571716309,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397379912663754,
+ "grad_norm": 0.04370221868157387,
+ "learning_rate": 0.000486,
+ "loss": 7.453543663024902,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537117903930132,
+ "grad_norm": 0.02917138673365116,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.424599647521973,
+ "step": 83
+ },
+ {
+ "epoch": 1.1676855895196507,
+ "grad_norm": 0.015414979308843613,
+ "learning_rate": 0.000498,
+ "loss": 7.388550758361816,
+ "step": 84
+ },
+ {
+ "epoch": 1.1816593886462883,
+ "grad_norm": 0.029156062752008438,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.379591941833496,
+ "step": 85
+ },
+ {
+ "epoch": 1.1956331877729258,
+ "grad_norm": 0.014958011917769909,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.372748374938965,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096069868995634,
+ "grad_norm": 0.021887343376874924,
+ "learning_rate": 0.000516,
+ "loss": 7.3589630126953125,
+ "step": 87
+ },
+ {
+ "epoch": 1.223580786026201,
+ "grad_norm": 0.02962890826165676,
+ "learning_rate": 0.000522,
+ "loss": 7.373016357421875,
+ "step": 88
+ },
+ {
+ "epoch": 1.2375545851528384,
+ "grad_norm": 0.031032968312501907,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.3282928466796875,
+ "step": 89
+ },
+ {
+ "epoch": 1.251528384279476,
+ "grad_norm": 0.027690274640917778,
+ "learning_rate": 0.000534,
+ "loss": 7.320304870605469,
+ "step": 90
+ },
+ {
+ "epoch": 1.2655021834061135,
+ "grad_norm": 0.022552549839019775,
+ "learning_rate": 0.00054,
+ "loss": 7.3051300048828125,
+ "step": 91
+ },
+ {
+ "epoch": 1.279475982532751,
+ "grad_norm": 0.04130178689956665,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.284594535827637,
+ "step": 92
+ },
+ {
+ "epoch": 1.2934497816593886,
+ "grad_norm": 0.05043136328458786,
+ "learning_rate": 0.000552,
+ "loss": 7.286007881164551,
+ "step": 93
+ },
+ {
+ "epoch": 1.3074235807860262,
+ "grad_norm": 0.04574465751647949,
+ "learning_rate": 0.000558,
+ "loss": 7.22679328918457,
+ "step": 94
+ },
+ {
+ "epoch": 1.3213973799126637,
+ "grad_norm": 0.03277682512998581,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.229741096496582,
+ "step": 95
+ },
+ {
+ "epoch": 1.3353711790393012,
+ "grad_norm": 0.022675029933452606,
+ "learning_rate": 0.00057,
+ "loss": 7.241637706756592,
+ "step": 96
+ },
+ {
+ "epoch": 1.3493449781659388,
+ "grad_norm": 0.03889699652791023,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.193673133850098,
+ "step": 97
+ },
+ {
+ "epoch": 1.3633187772925766,
+ "grad_norm": 0.029434625059366226,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.1953840255737305,
+ "step": 98
+ },
+ {
+ "epoch": 1.3772925764192139,
+ "grad_norm": 0.02118326723575592,
+ "learning_rate": 0.000588,
+ "loss": 7.178635597229004,
+ "step": 99
+ },
+ {
+ "epoch": 1.3912663755458516,
+ "grad_norm": 0.02966528758406639,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.151487350463867,
+ "step": 100
+ },
+ {
+ "epoch": 1.405240174672489,
+ "grad_norm": 0.0450727716088295,
+ "learning_rate": 0.0006,
+ "loss": 7.144834995269775,
+ "step": 101
+ },
+ {
+ "epoch": 1.4192139737991267,
+ "grad_norm": 0.08898167312145233,
+ "learning_rate": 0.0006,
+ "loss": 7.180665969848633,
+ "step": 102
+ },
+ {
+ "epoch": 1.4331877729257643,
+ "grad_norm": 0.10679084807634354,
+ "learning_rate": 0.0006,
+ "loss": 7.233458518981934,
+ "step": 103
+ },
+ {
+ "epoch": 1.4471615720524018,
+ "grad_norm": 0.04746336117386818,
+ "learning_rate": 0.0006,
+ "loss": 7.167373180389404,
+ "step": 104
+ },
+ {
+ "epoch": 1.4611353711790394,
+ "grad_norm": 0.06380590051412582,
+ "learning_rate": 0.0006,
+ "loss": 7.189356803894043,
+ "step": 105
+ },
+ {
+ "epoch": 1.475109170305677,
+ "grad_norm": 0.039717014878988266,
+ "learning_rate": 0.0006,
+ "loss": 7.096653938293457,
+ "step": 106
+ },
+ {
+ "epoch": 1.4890829694323144,
+ "grad_norm": 0.06762711703777313,
+ "learning_rate": 0.0006,
+ "loss": 7.127993583679199,
+ "step": 107
+ },
+ {
+ "epoch": 1.503056768558952,
+ "grad_norm": 0.05134489759802818,
+ "learning_rate": 0.0006,
+ "loss": 7.072257995605469,
+ "step": 108
+ },
+ {
+ "epoch": 1.5170305676855895,
+ "grad_norm": 0.062314722687006,
+ "learning_rate": 0.0006,
+ "loss": 7.073700904846191,
+ "step": 109
+ },
+ {
+ "epoch": 1.531004366812227,
+ "grad_norm": 0.03607739135622978,
+ "learning_rate": 0.0006,
+ "loss": 7.051465034484863,
+ "step": 110
+ },
+ {
+ "epoch": 1.5449781659388646,
+ "grad_norm": 0.04546204209327698,
+ "learning_rate": 0.0006,
+ "loss": 7.049814224243164,
+ "step": 111
+ },
+ {
+ "epoch": 1.5589519650655022,
+ "grad_norm": 0.0319792665541172,
+ "learning_rate": 0.0006,
+ "loss": 7.0164875984191895,
+ "step": 112
+ },
+ {
+ "epoch": 1.5729257641921397,
+ "grad_norm": 0.04590746760368347,
+ "learning_rate": 0.0006,
+ "loss": 7.001565456390381,
+ "step": 113
+ },
+ {
+ "epoch": 1.5868995633187772,
+ "grad_norm": 0.031896382570266724,
+ "learning_rate": 0.0006,
+ "loss": 6.994606018066406,
+ "step": 114
+ },
+ {
+ "epoch": 1.600873362445415,
+ "grad_norm": 0.021410338580608368,
+ "learning_rate": 0.0006,
+ "loss": 6.947071075439453,
+ "step": 115
+ },
+ {
+ "epoch": 1.6148471615720523,
+ "grad_norm": 0.030063210055232048,
+ "learning_rate": 0.0006,
+ "loss": 6.979219913482666,
+ "step": 116
+ },
+ {
+ "epoch": 1.62882096069869,
+ "grad_norm": 0.02234027162194252,
+ "learning_rate": 0.0006,
+ "loss": 6.929020881652832,
+ "step": 117
+ },
+ {
+ "epoch": 1.6427947598253274,
+ "grad_norm": 0.025586063042283058,
+ "learning_rate": 0.0006,
+ "loss": 6.9200663566589355,
+ "step": 118
+ },
+ {
+ "epoch": 1.6567685589519652,
+ "grad_norm": 0.022098371759057045,
+ "learning_rate": 0.0006,
+ "loss": 6.899832248687744,
+ "step": 119
+ },
+ {
+ "epoch": 1.6707423580786025,
+ "grad_norm": 0.019238410517573357,
+ "learning_rate": 0.0006,
+ "loss": 6.8586015701293945,
+ "step": 120
+ },
+ {
+ "epoch": 1.6847161572052403,
+ "grad_norm": 0.024153294041752815,
+ "learning_rate": 0.0006,
+ "loss": 6.867973327636719,
+ "step": 121
+ },
+ {
+ "epoch": 1.6986899563318776,
+ "grad_norm": 0.01690024696290493,
+ "learning_rate": 0.0006,
+ "loss": 6.878490447998047,
+ "step": 122
+ },
+ {
+ "epoch": 1.7126637554585153,
+ "grad_norm": 0.02171619050204754,
+ "learning_rate": 0.0006,
+ "loss": 6.853621959686279,
+ "step": 123
+ },
+ {
+ "epoch": 1.726637554585153,
+ "grad_norm": 0.020535755902528763,
+ "learning_rate": 0.0006,
+ "loss": 6.852185249328613,
+ "step": 124
+ },
+ {
+ "epoch": 1.7406113537117904,
+ "grad_norm": 0.015457311645150185,
+ "learning_rate": 0.0006,
+ "loss": 6.826596260070801,
+ "step": 125
+ },
+ {
+ "epoch": 1.754585152838428,
+ "grad_norm": 0.017492085695266724,
+ "learning_rate": 0.0006,
+ "loss": 6.842765808105469,
+ "step": 126
+ },
+ {
+ "epoch": 1.7685589519650655,
+ "grad_norm": 0.014785612002015114,
+ "learning_rate": 0.0006,
+ "loss": 6.849224090576172,
+ "step": 127
+ },
+ {
+ "epoch": 1.782532751091703,
+ "grad_norm": 0.017512250691652298,
+ "learning_rate": 0.0006,
+ "loss": 6.824787139892578,
+ "step": 128
+ },
+ {
+ "epoch": 1.7965065502183406,
+ "grad_norm": 0.01895114593207836,
+ "learning_rate": 0.0006,
+ "loss": 6.801428318023682,
+ "step": 129
+ },
+ {
+ "epoch": 1.8104803493449781,
+ "grad_norm": 0.015728816390037537,
+ "learning_rate": 0.0006,
+ "loss": 6.801990985870361,
+ "step": 130
+ },
+ {
+ "epoch": 1.8244541484716157,
+ "grad_norm": 0.014321585185825825,
+ "learning_rate": 0.0006,
+ "loss": 6.793122291564941,
+ "step": 131
+ },
+ {
+ "epoch": 1.8384279475982532,
+ "grad_norm": 0.016692014411091805,
+ "learning_rate": 0.0006,
+ "loss": 6.74687385559082,
+ "step": 132
+ },
+ {
+ "epoch": 1.8524017467248908,
+ "grad_norm": 0.016697920858860016,
+ "learning_rate": 0.0006,
+ "loss": 6.75140380859375,
+ "step": 133
+ },
+ {
+ "epoch": 1.8663755458515285,
+ "grad_norm": 0.014954701997339725,
+ "learning_rate": 0.0006,
+ "loss": 6.746084213256836,
+ "step": 134
+ },
+ {
+ "epoch": 1.8803493449781659,
+ "grad_norm": 0.013010316528379917,
+ "learning_rate": 0.0006,
+ "loss": 6.725405693054199,
+ "step": 135
+ },
+ {
+ "epoch": 1.8943231441048036,
+ "grad_norm": 0.011892660520970821,
+ "learning_rate": 0.0006,
+ "loss": 6.718758583068848,
+ "step": 136
+ },
+ {
+ "epoch": 1.908296943231441,
+ "grad_norm": 0.012127497233450413,
+ "learning_rate": 0.0006,
+ "loss": 6.708139419555664,
+ "step": 137
+ },
+ {
+ "epoch": 1.9222707423580787,
+ "grad_norm": 0.015417213551700115,
+ "learning_rate": 0.0006,
+ "loss": 6.705748558044434,
+ "step": 138
+ },
+ {
+ "epoch": 1.936244541484716,
+ "grad_norm": 0.03063729591667652,
+ "learning_rate": 0.0006,
+ "loss": 6.691249847412109,
+ "step": 139
+ },
+ {
+ "epoch": 1.9502183406113538,
+ "grad_norm": 0.07376791536808014,
+ "learning_rate": 0.0006,
+ "loss": 6.71767520904541,
+ "step": 140
+ },
+ {
+ "epoch": 1.9641921397379911,
+ "grad_norm": 0.14157423377037048,
+ "learning_rate": 0.0006,
+ "loss": 6.787544250488281,
+ "step": 141
+ },
+ {
+ "epoch": 1.9781659388646289,
+ "grad_norm": 0.09186933934688568,
+ "learning_rate": 0.0006,
+ "loss": 6.73362398147583,
+ "step": 142
+ },
+ {
+ "epoch": 1.9921397379912664,
+ "grad_norm": 0.06612848490476608,
+ "learning_rate": 0.0006,
+ "loss": 6.719516754150391,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.048072297126054764,
+ "learning_rate": 0.0006,
+ "loss": 6.666120529174805,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 6.7162394523620605,
+ "eval_runtime": 50.5907,
+ "eval_samples_per_second": 48.27,
+ "eval_steps_per_second": 1.522,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139737991266378,
+ "grad_norm": 0.03777749463915825,
+ "learning_rate": 0.0006,
+ "loss": 6.686484336853027,
+ "step": 145
+ },
+ {
+ "epoch": 2.027947598253275,
+ "grad_norm": 0.04378646984696388,
+ "learning_rate": 0.0006,
+ "loss": 6.679071426391602,
+ "step": 146
+ },
+ {
+ "epoch": 2.041921397379913,
+ "grad_norm": 0.027715124189853668,
+ "learning_rate": 0.0006,
+ "loss": 6.6776323318481445,
+ "step": 147
+ },
+ {
+ "epoch": 2.05589519650655,
+ "grad_norm": 0.03411925211548805,
+ "learning_rate": 0.0006,
+ "loss": 6.643917083740234,
+ "step": 148
+ },
+ {
+ "epoch": 2.069868995633188,
+ "grad_norm": 0.034444212913513184,
+ "learning_rate": 0.0006,
+ "loss": 6.67141056060791,
+ "step": 149
+ },
+ {
+ "epoch": 2.0838427947598253,
+ "grad_norm": 0.0387650802731514,
+ "learning_rate": 0.0006,
+ "loss": 6.65234375,
+ "step": 150
+ },
+ {
+ "epoch": 2.097816593886463,
+ "grad_norm": 0.03921861574053764,
+ "learning_rate": 0.0006,
+ "loss": 6.624712944030762,
+ "step": 151
+ },
+ {
+ "epoch": 2.1117903930131003,
+ "grad_norm": 0.02531580813229084,
+ "learning_rate": 0.0006,
+ "loss": 6.617608547210693,
+ "step": 152
+ },
+ {
+ "epoch": 2.125764192139738,
+ "grad_norm": 0.03220974653959274,
+ "learning_rate": 0.0006,
+ "loss": 6.587964057922363,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397379912663754,
+ "grad_norm": 0.03923291340470314,
+ "learning_rate": 0.0006,
+ "loss": 6.588845252990723,
+ "step": 154
+ },
+ {
+ "epoch": 2.153711790393013,
+ "grad_norm": 0.028337281197309494,
+ "learning_rate": 0.0006,
+ "loss": 6.5807952880859375,
+ "step": 155
+ },
+ {
+ "epoch": 2.1676855895196505,
+ "grad_norm": 0.01873156800866127,
+ "learning_rate": 0.0006,
+ "loss": 6.560453414916992,
+ "step": 156
+ },
+ {
+ "epoch": 2.1816593886462883,
+ "grad_norm": 0.027509493753314018,
+ "learning_rate": 0.0006,
+ "loss": 6.5615363121032715,
+ "step": 157
+ },
+ {
+ "epoch": 2.1956331877729256,
+ "grad_norm": 0.025428347289562225,
+ "learning_rate": 0.0006,
+ "loss": 6.5283966064453125,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096069868995634,
+ "grad_norm": 0.02118629403412342,
+ "learning_rate": 0.0006,
+ "loss": 6.526224136352539,
+ "step": 159
+ },
+ {
+ "epoch": 2.2235807860262007,
+ "grad_norm": 0.03233652561903,
+ "learning_rate": 0.0006,
+ "loss": 6.536041259765625,
+ "step": 160
+ },
+ {
+ "epoch": 2.2375545851528384,
+ "grad_norm": 0.04605546221137047,
+ "learning_rate": 0.0006,
+ "loss": 6.537662029266357,
+ "step": 161
+ },
+ {
+ "epoch": 2.251528384279476,
+ "grad_norm": 0.05192062631249428,
+ "learning_rate": 0.0006,
+ "loss": 6.551901817321777,
+ "step": 162
+ },
+ {
+ "epoch": 2.2655021834061135,
+ "grad_norm": 0.042231615632772446,
+ "learning_rate": 0.0006,
+ "loss": 6.511076927185059,
+ "step": 163
+ },
+ {
+ "epoch": 2.279475982532751,
+ "grad_norm": 0.04085887596011162,
+ "learning_rate": 0.0006,
+ "loss": 6.503472328186035,
+ "step": 164
+ },
+ {
+ "epoch": 2.2934497816593886,
+ "grad_norm": 0.031182587146759033,
+ "learning_rate": 0.0006,
+ "loss": 6.504403591156006,
+ "step": 165
+ },
+ {
+ "epoch": 2.3074235807860264,
+ "grad_norm": 0.032555561512708664,
+ "learning_rate": 0.0006,
+ "loss": 6.4552764892578125,
+ "step": 166
+ },
+ {
+ "epoch": 2.3213973799126637,
+ "grad_norm": 0.04939635097980499,
+ "learning_rate": 0.0006,
+ "loss": 6.495351791381836,
+ "step": 167
+ },
+ {
+ "epoch": 2.3353711790393015,
+ "grad_norm": 0.037503793835639954,
+ "learning_rate": 0.0006,
+ "loss": 6.4742560386657715,
+ "step": 168
+ },
+ {
+ "epoch": 2.349344978165939,
+ "grad_norm": 0.02366613782942295,
+ "learning_rate": 0.0006,
+ "loss": 6.478525161743164,
+ "step": 169
+ },
+ {
+ "epoch": 2.3633187772925766,
+ "grad_norm": 0.022314894944429398,
+ "learning_rate": 0.0006,
+ "loss": 6.414134979248047,
+ "step": 170
+ },
+ {
+ "epoch": 2.377292576419214,
+ "grad_norm": 0.030494702979922295,
+ "learning_rate": 0.0006,
+ "loss": 6.444867134094238,
+ "step": 171
+ },
+ {
+ "epoch": 2.3912663755458516,
+ "grad_norm": 0.04064486175775528,
+ "learning_rate": 0.0006,
+ "loss": 6.417036056518555,
+ "step": 172
+ },
+ {
+ "epoch": 2.405240174672489,
+ "grad_norm": 0.03061651438474655,
+ "learning_rate": 0.0006,
+ "loss": 6.423735618591309,
+ "step": 173
+ },
+ {
+ "epoch": 2.4192139737991267,
+ "grad_norm": 0.02046056278049946,
+ "learning_rate": 0.0006,
+ "loss": 6.419736862182617,
+ "step": 174
+ },
+ {
+ "epoch": 2.433187772925764,
+ "grad_norm": 0.02530163712799549,
+ "learning_rate": 0.0006,
+ "loss": 6.399930953979492,
+ "step": 175
+ },
+ {
+ "epoch": 2.447161572052402,
+ "grad_norm": 0.03588842228055,
+ "learning_rate": 0.0006,
+ "loss": 6.418618202209473,
+ "step": 176
+ },
+ {
+ "epoch": 2.461135371179039,
+ "grad_norm": 0.04048234224319458,
+ "learning_rate": 0.0006,
+ "loss": 6.390285491943359,
+ "step": 177
+ },
+ {
+ "epoch": 2.475109170305677,
+ "grad_norm": 0.039080191403627396,
+ "learning_rate": 0.0006,
+ "loss": 6.3688530921936035,
+ "step": 178
+ },
+ {
+ "epoch": 2.489082969432314,
+ "grad_norm": 0.029000122100114822,
+ "learning_rate": 0.0006,
+ "loss": 6.369181156158447,
+ "step": 179
+ },
+ {
+ "epoch": 2.503056768558952,
+ "grad_norm": 0.01609761081635952,
+ "learning_rate": 0.0006,
+ "loss": 6.359917640686035,
+ "step": 180
+ },
+ {
+ "epoch": 2.5170305676855893,
+ "grad_norm": 0.02305005118250847,
+ "learning_rate": 0.0006,
+ "loss": 6.347358226776123,
+ "step": 181
+ },
+ {
+ "epoch": 2.531004366812227,
+ "grad_norm": 0.03316781297326088,
+ "learning_rate": 0.0006,
+ "loss": 6.36626672744751,
+ "step": 182
+ },
+ {
+ "epoch": 2.544978165938865,
+ "grad_norm": 0.05111207440495491,
+ "learning_rate": 0.0006,
+ "loss": 6.380453109741211,
+ "step": 183
+ },
+ {
+ "epoch": 2.558951965065502,
+ "grad_norm": 0.062241602689027786,
+ "learning_rate": 0.0006,
+ "loss": 6.353237152099609,
+ "step": 184
+ },
+ {
+ "epoch": 2.5729257641921395,
+ "grad_norm": 0.060149725526571274,
+ "learning_rate": 0.0006,
+ "loss": 6.358938694000244,
+ "step": 185
+ },
+ {
+ "epoch": 2.5868995633187772,
+ "grad_norm": 0.04228121414780617,
+ "learning_rate": 0.0006,
+ "loss": 6.310116767883301,
+ "step": 186
+ },
+ {
+ "epoch": 2.600873362445415,
+ "grad_norm": 0.019458215683698654,
+ "learning_rate": 0.0006,
+ "loss": 6.284702777862549,
+ "step": 187
+ },
+ {
+ "epoch": 2.6148471615720523,
+ "grad_norm": 0.0342358835041523,
+ "learning_rate": 0.0006,
+ "loss": 6.316659927368164,
+ "step": 188
+ },
+ {
+ "epoch": 2.62882096069869,
+ "grad_norm": 0.04139583557844162,
+ "learning_rate": 0.0006,
+ "loss": 6.301124572753906,
+ "step": 189
+ },
+ {
+ "epoch": 2.6427947598253274,
+ "grad_norm": 0.028264787048101425,
+ "learning_rate": 0.0006,
+ "loss": 6.298510551452637,
+ "step": 190
+ },
+ {
+ "epoch": 2.656768558951965,
+ "grad_norm": 0.023622136563062668,
+ "learning_rate": 0.0006,
+ "loss": 6.2571210861206055,
+ "step": 191
+ },
+ {
+ "epoch": 2.6707423580786025,
+ "grad_norm": 0.039508845657110214,
+ "learning_rate": 0.0006,
+ "loss": 6.267218589782715,
+ "step": 192
+ },
+ {
+ "epoch": 2.6847161572052403,
+ "grad_norm": 0.043358899652957916,
+ "learning_rate": 0.0006,
+ "loss": 6.279658794403076,
+ "step": 193
+ },
+ {
+ "epoch": 2.6986899563318776,
+ "grad_norm": 0.04134640842676163,
+ "learning_rate": 0.0006,
+ "loss": 6.277159214019775,
+ "step": 194
+ },
+ {
+ "epoch": 2.7126637554585153,
+ "grad_norm": 0.05406952276825905,
+ "learning_rate": 0.0006,
+ "loss": 6.295559883117676,
+ "step": 195
+ },
+ {
+ "epoch": 2.726637554585153,
+ "grad_norm": 0.04557774215936661,
+ "learning_rate": 0.0006,
+ "loss": 6.260174751281738,
+ "step": 196
+ },
+ {
+ "epoch": 2.7406113537117904,
+ "grad_norm": 0.04542337730526924,
+ "learning_rate": 0.0006,
+ "loss": 6.244534492492676,
+ "step": 197
+ },
+ {
+ "epoch": 2.7545851528384278,
+ "grad_norm": 0.06924881041049957,
+ "learning_rate": 0.0006,
+ "loss": 6.2060723304748535,
+ "step": 198
+ },
+ {
+ "epoch": 2.7685589519650655,
+ "grad_norm": 0.06679725646972656,
+ "learning_rate": 0.0006,
+ "loss": 6.259133815765381,
+ "step": 199
+ },
+ {
+ "epoch": 2.7825327510917033,
+ "grad_norm": 0.05039471387863159,
+ "learning_rate": 0.0006,
+ "loss": 6.239280700683594,
+ "step": 200
+ },
+ {
+ "epoch": 2.7965065502183406,
+ "grad_norm": 0.05935394763946533,
+ "learning_rate": 0.0006,
+ "loss": 6.242481231689453,
+ "step": 201
+ },
+ {
+ "epoch": 2.810480349344978,
+ "grad_norm": 0.0486418716609478,
+ "learning_rate": 0.0006,
+ "loss": 6.239593505859375,
+ "step": 202
+ },
+ {
+ "epoch": 2.8244541484716157,
+ "grad_norm": 0.05010748282074928,
+ "learning_rate": 0.0006,
+ "loss": 6.2328948974609375,
+ "step": 203
+ },
+ {
+ "epoch": 2.8384279475982535,
+ "grad_norm": 0.03444438800215721,
+ "learning_rate": 0.0006,
+ "loss": 6.200089454650879,
+ "step": 204
+ },
+ {
+ "epoch": 2.8524017467248908,
+ "grad_norm": 0.043253373354673386,
+ "learning_rate": 0.0006,
+ "loss": 6.2089433670043945,
+ "step": 205
+ },
+ {
+ "epoch": 2.8663755458515285,
+ "grad_norm": 0.047505684196949005,
+ "learning_rate": 0.0006,
+ "loss": 6.220322608947754,
+ "step": 206
+ },
+ {
+ "epoch": 2.880349344978166,
+ "grad_norm": 0.04393792524933815,
+ "learning_rate": 0.0006,
+ "loss": 6.178770542144775,
+ "step": 207
+ },
+ {
+ "epoch": 2.8943231441048036,
+ "grad_norm": 0.04025835916399956,
+ "learning_rate": 0.0006,
+ "loss": 6.160248756408691,
+ "step": 208
+ },
+ {
+ "epoch": 2.908296943231441,
+ "grad_norm": 0.03877986595034599,
+ "learning_rate": 0.0006,
+ "loss": 6.164917945861816,
+ "step": 209
+ },
+ {
+ "epoch": 2.9222707423580787,
+ "grad_norm": 0.03666771203279495,
+ "learning_rate": 0.0006,
+ "loss": 6.172199249267578,
+ "step": 210
+ },
+ {
+ "epoch": 2.936244541484716,
+ "grad_norm": 0.028036516159772873,
+ "learning_rate": 0.0006,
+ "loss": 6.179510116577148,
+ "step": 211
+ },
+ {
+ "epoch": 2.950218340611354,
+ "grad_norm": 0.021492617204785347,
+ "learning_rate": 0.0006,
+ "loss": 6.1275153160095215,
+ "step": 212
+ },
+ {
+ "epoch": 2.964192139737991,
+ "grad_norm": 0.026816558092832565,
+ "learning_rate": 0.0006,
+ "loss": 6.131775856018066,
+ "step": 213
+ },
+ {
+ "epoch": 2.978165938864629,
+ "grad_norm": 0.03757898136973381,
+ "learning_rate": 0.0006,
+ "loss": 6.135777473449707,
+ "step": 214
+ },
+ {
+ "epoch": 2.992139737991266,
+ "grad_norm": 0.06036437302827835,
+ "learning_rate": 0.0006,
+ "loss": 6.146076202392578,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.09846952557563782,
+ "learning_rate": 0.0006,
+ "loss": 6.218435287475586,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.23890495300293,
+ "eval_runtime": 50.6822,
+ "eval_samples_per_second": 48.183,
+ "eval_steps_per_second": 1.519,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139737991266378,
+ "grad_norm": 0.10463741421699524,
+ "learning_rate": 0.0006,
+ "loss": 6.197120666503906,
+ "step": 217
+ },
+ {
+ "epoch": 3.027947598253275,
+ "grad_norm": 0.10212419927120209,
+ "learning_rate": 0.0006,
+ "loss": 6.178340911865234,
+ "step": 218
+ },
+ {
+ "epoch": 3.041921397379913,
+ "grad_norm": 0.08038751780986786,
+ "learning_rate": 0.0006,
+ "loss": 6.217406749725342,
+ "step": 219
+ },
+ {
+ "epoch": 3.05589519650655,
+ "grad_norm": 0.04787508398294449,
+ "learning_rate": 0.0006,
+ "loss": 6.155381679534912,
+ "step": 220
+ },
+ {
+ "epoch": 3.069868995633188,
+ "grad_norm": 0.06880322843790054,
+ "learning_rate": 0.0006,
+ "loss": 6.121614933013916,
+ "step": 221
+ },
+ {
+ "epoch": 3.0838427947598253,
+ "grad_norm": 0.03749438002705574,
+ "learning_rate": 0.0006,
+ "loss": 6.120484352111816,
+ "step": 222
+ },
+ {
+ "epoch": 3.097816593886463,
+ "grad_norm": 0.03875046223402023,
+ "learning_rate": 0.0006,
+ "loss": 6.12362003326416,
+ "step": 223
+ },
+ {
+ "epoch": 3.1117903930131003,
+ "grad_norm": 0.030663209035992622,
+ "learning_rate": 0.0006,
+ "loss": 6.1111063957214355,
+ "step": 224
+ },
+ {
+ "epoch": 3.125764192139738,
+ "grad_norm": 0.029520904645323753,
+ "learning_rate": 0.0006,
+ "loss": 6.130336761474609,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397379912663754,
+ "grad_norm": 0.02854953519999981,
+ "learning_rate": 0.0006,
+ "loss": 6.086193084716797,
+ "step": 226
+ },
+ {
+ "epoch": 3.153711790393013,
+ "grad_norm": 0.027147898450493813,
+ "learning_rate": 0.0006,
+ "loss": 6.066827774047852,
+ "step": 227
+ },
+ {
+ "epoch": 3.1676855895196505,
+ "grad_norm": 0.025577887892723083,
+ "learning_rate": 0.0006,
+ "loss": 6.070775032043457,
+ "step": 228
+ },
+ {
+ "epoch": 3.1816593886462883,
+ "grad_norm": 0.026318276301026344,
+ "learning_rate": 0.0006,
+ "loss": 6.064469814300537,
+ "step": 229
+ },
+ {
+ "epoch": 3.1956331877729256,
+ "grad_norm": 0.02595221996307373,
+ "learning_rate": 0.0006,
+ "loss": 6.066489219665527,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096069868995634,
+ "grad_norm": 0.0248890221118927,
+ "learning_rate": 0.0006,
+ "loss": 6.032470703125,
+ "step": 231
+ },
+ {
+ "epoch": 3.2235807860262007,
+ "grad_norm": 0.017041699960827827,
+ "learning_rate": 0.0006,
+ "loss": 6.056160926818848,
+ "step": 232
+ },
+ {
+ "epoch": 3.2375545851528384,
+ "grad_norm": 0.020971592515707016,
+ "learning_rate": 0.0006,
+ "loss": 6.024506568908691,
+ "step": 233
+ },
+ {
+ "epoch": 3.251528384279476,
+ "grad_norm": 0.01897028088569641,
+ "learning_rate": 0.0006,
+ "loss": 6.035656929016113,
+ "step": 234
+ },
+ {
+ "epoch": 3.2655021834061135,
+ "grad_norm": 0.027151981368660927,
+ "learning_rate": 0.0006,
+ "loss": 6.026547431945801,
+ "step": 235
+ },
+ {
+ "epoch": 3.279475982532751,
+ "grad_norm": 0.029453502967953682,
+ "learning_rate": 0.0006,
+ "loss": 5.981723785400391,
+ "step": 236
+ },
+ {
+ "epoch": 3.2934497816593886,
+ "grad_norm": 0.027771083638072014,
+ "learning_rate": 0.0006,
+ "loss": 6.019796371459961,
+ "step": 237
+ },
+ {
+ "epoch": 3.3074235807860264,
+ "grad_norm": 0.02605084516108036,
+ "learning_rate": 0.0006,
+ "loss": 5.984506607055664,
+ "step": 238
+ },
+ {
+ "epoch": 3.3213973799126637,
+ "grad_norm": 0.022903922945261,
+ "learning_rate": 0.0006,
+ "loss": 6.023873805999756,
+ "step": 239
+ },
+ {
+ "epoch": 3.3353711790393015,
+ "grad_norm": 0.01976492442190647,
+ "learning_rate": 0.0006,
+ "loss": 6.009030342102051,
+ "step": 240
+ },
+ {
+ "epoch": 3.349344978165939,
+ "grad_norm": 0.018872970715165138,
+ "learning_rate": 0.0006,
+ "loss": 5.970742702484131,
+ "step": 241
+ },
+ {
+ "epoch": 3.3633187772925766,
+ "grad_norm": 0.017447829246520996,
+ "learning_rate": 0.0006,
+ "loss": 5.968851089477539,
+ "step": 242
+ },
+ {
+ "epoch": 3.377292576419214,
+ "grad_norm": 0.025419825688004494,
+ "learning_rate": 0.0006,
+ "loss": 5.956470489501953,
+ "step": 243
+ },
+ {
+ "epoch": 3.3912663755458516,
+ "grad_norm": 0.03654123470187187,
+ "learning_rate": 0.0006,
+ "loss": 5.94770622253418,
+ "step": 244
+ },
+ {
+ "epoch": 3.405240174672489,
+ "grad_norm": 0.05607098713517189,
+ "learning_rate": 0.0006,
+ "loss": 6.008593559265137,
+ "step": 245
+ },
+ {
+ "epoch": 3.4192139737991267,
+ "grad_norm": 0.07973720878362656,
+ "learning_rate": 0.0006,
+ "loss": 5.9966888427734375,
+ "step": 246
+ },
+ {
+ "epoch": 3.433187772925764,
+ "grad_norm": 0.10906023532152176,
+ "learning_rate": 0.0006,
+ "loss": 6.054642200469971,
+ "step": 247
+ },
+ {
+ "epoch": 3.447161572052402,
+ "grad_norm": 0.09792660176753998,
+ "learning_rate": 0.0006,
+ "loss": 6.067026138305664,
+ "step": 248
+ },
+ {
+ "epoch": 3.461135371179039,
+ "grad_norm": 0.07395700365304947,
+ "learning_rate": 0.0006,
+ "loss": 6.01310920715332,
+ "step": 249
+ },
+ {
+ "epoch": 3.475109170305677,
+ "grad_norm": 0.10172071307897568,
+ "learning_rate": 0.0006,
+ "loss": 6.048509120941162,
+ "step": 250
+ },
+ {
+ "epoch": 3.489082969432314,
+ "grad_norm": 0.0717678815126419,
+ "learning_rate": 0.0006,
+ "loss": 6.055008888244629,
+ "step": 251
+ },
+ {
+ "epoch": 3.503056768558952,
+ "grad_norm": 0.06398089975118637,
+ "learning_rate": 0.0006,
+ "loss": 5.9677276611328125,
+ "step": 252
+ },
+ {
+ "epoch": 3.5170305676855893,
+ "grad_norm": 0.0643860474228859,
+ "learning_rate": 0.0006,
+ "loss": 5.957507133483887,
+ "step": 253
+ },
+ {
+ "epoch": 3.531004366812227,
+ "grad_norm": 0.03472325950860977,
+ "learning_rate": 0.0006,
+ "loss": 5.952362060546875,
+ "step": 254
+ },
+ {
+ "epoch": 3.544978165938865,
+ "grad_norm": 0.03918307647109032,
+ "learning_rate": 0.0006,
+ "loss": 5.957100868225098,
+ "step": 255
+ },
+ {
+ "epoch": 3.558951965065502,
+ "grad_norm": 0.03519073501229286,
+ "learning_rate": 0.0006,
+ "loss": 5.97830867767334,
+ "step": 256
+ },
+ {
+ "epoch": 3.5729257641921395,
+ "grad_norm": 0.03435497358441353,
+ "learning_rate": 0.0006,
+ "loss": 5.93912410736084,
+ "step": 257
+ },
+ {
+ "epoch": 3.5868995633187772,
+ "grad_norm": 0.026064487174153328,
+ "learning_rate": 0.0006,
+ "loss": 5.91353702545166,
+ "step": 258
+ },
+ {
+ "epoch": 3.600873362445415,
+ "grad_norm": 0.03159152343869209,
+ "learning_rate": 0.0006,
+ "loss": 5.913291931152344,
+ "step": 259
+ },
+ {
+ "epoch": 3.6148471615720523,
+ "grad_norm": 0.02195592038333416,
+ "learning_rate": 0.0006,
+ "loss": 5.906322479248047,
+ "step": 260
+ },
+ {
+ "epoch": 3.62882096069869,
+ "grad_norm": 0.020358966663479805,
+ "learning_rate": 0.0006,
+ "loss": 5.891860008239746,
+ "step": 261
+ },
+ {
+ "epoch": 3.6427947598253274,
+ "grad_norm": 0.01964488998055458,
+ "learning_rate": 0.0006,
+ "loss": 5.881132125854492,
+ "step": 262
+ },
+ {
+ "epoch": 3.656768558951965,
+ "grad_norm": 0.022447235882282257,
+ "learning_rate": 0.0006,
+ "loss": 5.8846940994262695,
+ "step": 263
+ },
+ {
+ "epoch": 3.6707423580786025,
+ "grad_norm": 0.018359875306487083,
+ "learning_rate": 0.0006,
+ "loss": 5.8861188888549805,
+ "step": 264
+ },
+ {
+ "epoch": 3.6847161572052403,
+ "grad_norm": 0.018481185659766197,
+ "learning_rate": 0.0006,
+ "loss": 5.874635696411133,
+ "step": 265
+ },
+ {
+ "epoch": 3.6986899563318776,
+ "grad_norm": 0.016943952068686485,
+ "learning_rate": 0.0006,
+ "loss": 5.8380126953125,
+ "step": 266
+ },
+ {
+ "epoch": 3.7126637554585153,
+ "grad_norm": 0.016593772917985916,
+ "learning_rate": 0.0006,
+ "loss": 5.855746269226074,
+ "step": 267
+ },
+ {
+ "epoch": 3.726637554585153,
+ "grad_norm": 0.018204636871814728,
+ "learning_rate": 0.0006,
+ "loss": 5.873927116394043,
+ "step": 268
+ },
+ {
+ "epoch": 3.7406113537117904,
+ "grad_norm": 0.017277248203754425,
+ "learning_rate": 0.0006,
+ "loss": 5.855231285095215,
+ "step": 269
+ },
+ {
+ "epoch": 3.7545851528384278,
+ "grad_norm": 0.01717568188905716,
+ "learning_rate": 0.0006,
+ "loss": 5.847787857055664,
+ "step": 270
+ },
+ {
+ "epoch": 3.7685589519650655,
+ "grad_norm": 0.01537331473082304,
+ "learning_rate": 0.0006,
+ "loss": 5.852605819702148,
+ "step": 271
+ },
+ {
+ "epoch": 3.7825327510917033,
+ "grad_norm": 0.01504798699170351,
+ "learning_rate": 0.0006,
+ "loss": 5.825901031494141,
+ "step": 272
+ },
+ {
+ "epoch": 3.7965065502183406,
+ "grad_norm": 0.023221664130687714,
+ "learning_rate": 0.0006,
+ "loss": 5.812404155731201,
+ "step": 273
+ },
+ {
+ "epoch": 3.810480349344978,
+ "grad_norm": 0.0397733673453331,
+ "learning_rate": 0.0006,
+ "loss": 5.804308891296387,
+ "step": 274
+ },
+ {
+ "epoch": 3.8244541484716157,
+ "grad_norm": 0.05233687534928322,
+ "learning_rate": 0.0006,
+ "loss": 5.788049697875977,
+ "step": 275
+ },
+ {
+ "epoch": 3.8384279475982535,
+ "grad_norm": 0.05563921108841896,
+ "learning_rate": 0.0006,
+ "loss": 5.811939239501953,
+ "step": 276
+ },
+ {
+ "epoch": 3.8524017467248908,
+ "grad_norm": 0.0501336008310318,
+ "learning_rate": 0.0006,
+ "loss": 5.810712814331055,
+ "step": 277
+ },
+ {
+ "epoch": 3.8663755458515285,
+ "grad_norm": 0.07601612061262131,
+ "learning_rate": 0.0006,
+ "loss": 5.846009254455566,
+ "step": 278
+ },
+ {
+ "epoch": 3.880349344978166,
+ "grad_norm": 0.07927536964416504,
+ "learning_rate": 0.0006,
+ "loss": 5.846945285797119,
+ "step": 279
+ },
+ {
+ "epoch": 3.8943231441048036,
+ "grad_norm": 0.05778975039720535,
+ "learning_rate": 0.0006,
+ "loss": 5.8009209632873535,
+ "step": 280
+ },
+ {
+ "epoch": 3.908296943231441,
+ "grad_norm": 0.06650745123624802,
+ "learning_rate": 0.0006,
+ "loss": 5.825387001037598,
+ "step": 281
+ },
+ {
+ "epoch": 3.9222707423580787,
+ "grad_norm": 0.05610830709338188,
+ "learning_rate": 0.0006,
+ "loss": 5.854207992553711,
+ "step": 282
+ },
+ {
+ "epoch": 3.936244541484716,
+ "grad_norm": 0.03054177202284336,
+ "learning_rate": 0.0006,
+ "loss": 5.8229875564575195,
+ "step": 283
+ },
+ {
+ "epoch": 3.950218340611354,
+ "grad_norm": 0.03929241746664047,
+ "learning_rate": 0.0006,
+ "loss": 5.8026041984558105,
+ "step": 284
+ },
+ {
+ "epoch": 3.964192139737991,
+ "grad_norm": 0.03007139079272747,
+ "learning_rate": 0.0006,
+ "loss": 5.7833709716796875,
+ "step": 285
+ },
+ {
+ "epoch": 3.978165938864629,
+ "grad_norm": 0.03231097757816315,
+ "learning_rate": 0.0006,
+ "loss": 5.7852091789245605,
+ "step": 286
+ },
+ {
+ "epoch": 3.992139737991266,
+ "grad_norm": 0.02939445711672306,
+ "learning_rate": 0.0006,
+ "loss": 5.753163814544678,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.02993260696530342,
+ "learning_rate": 0.0006,
+ "loss": 5.762526512145996,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 5.799882888793945,
+ "eval_runtime": 50.8936,
+ "eval_samples_per_second": 47.982,
+ "eval_steps_per_second": 1.513,
+ "step": 288
+ },
+ {
+ "epoch": 4.013973799126638,
+ "grad_norm": 0.025836583226919174,
+ "learning_rate": 0.0006,
+ "loss": 5.74060583114624,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279475982532755,
+ "grad_norm": 0.02240375429391861,
+ "learning_rate": 0.0006,
+ "loss": 5.744357109069824,
+ "step": 290
+ },
+ {
+ "epoch": 4.041921397379912,
+ "grad_norm": 0.019645314663648605,
+ "learning_rate": 0.0006,
+ "loss": 5.714840412139893,
+ "step": 291
+ },
+ {
+ "epoch": 4.05589519650655,
+ "grad_norm": 0.01903143897652626,
+ "learning_rate": 0.0006,
+ "loss": 5.749794006347656,
+ "step": 292
+ },
+ {
+ "epoch": 4.069868995633188,
+ "grad_norm": 0.020970258861780167,
+ "learning_rate": 0.0006,
+ "loss": 5.684886932373047,
+ "step": 293
+ },
+ {
+ "epoch": 4.083842794759826,
+ "grad_norm": 0.022254586219787598,
+ "learning_rate": 0.0006,
+ "loss": 5.690360069274902,
+ "step": 294
+ },
+ {
+ "epoch": 4.097816593886463,
+ "grad_norm": 0.024622811004519463,
+ "learning_rate": 0.0006,
+ "loss": 5.7078962326049805,
+ "step": 295
+ },
+ {
+ "epoch": 4.1117903930131,
+ "grad_norm": 0.023592552170157433,
+ "learning_rate": 0.0006,
+ "loss": 5.7039971351623535,
+ "step": 296
+ },
+ {
+ "epoch": 4.125764192139738,
+ "grad_norm": 0.02667587623000145,
+ "learning_rate": 0.0006,
+ "loss": 5.677852630615234,
+ "step": 297
+ },
+ {
+ "epoch": 4.139737991266376,
+ "grad_norm": 0.03330948203802109,
+ "learning_rate": 0.0006,
+ "loss": 5.688773155212402,
+ "step": 298
+ },
+ {
+ "epoch": 4.153711790393013,
+ "grad_norm": 0.045157793909311295,
+ "learning_rate": 0.0006,
+ "loss": 5.675937652587891,
+ "step": 299
+ },
+ {
+ "epoch": 4.1676855895196505,
+ "grad_norm": 0.07034408301115036,
+ "learning_rate": 0.0006,
+ "loss": 5.687074661254883,
+ "step": 300
+ },
+ {
+ "epoch": 4.181659388646288,
+ "grad_norm": 0.10193091630935669,
+ "learning_rate": 0.0006,
+ "loss": 5.748222351074219,
+ "step": 301
+ },
+ {
+ "epoch": 4.195633187772926,
+ "grad_norm": 0.09606931358575821,
+ "learning_rate": 0.0006,
+ "loss": 5.767232894897461,
+ "step": 302
+ },
+ {
+ "epoch": 4.209606986899563,
+ "grad_norm": 0.05994758382439613,
+ "learning_rate": 0.0006,
+ "loss": 5.723153114318848,
+ "step": 303
+ },
+ {
+ "epoch": 4.223580786026201,
+ "grad_norm": 0.045849986374378204,
+ "learning_rate": 0.0006,
+ "loss": 5.7005815505981445,
+ "step": 304
+ },
+ {
+ "epoch": 4.2375545851528384,
+ "grad_norm": 0.04177941009402275,
+ "learning_rate": 0.0006,
+ "loss": 5.679755210876465,
+ "step": 305
+ },
+ {
+ "epoch": 4.251528384279476,
+ "grad_norm": 0.03307238593697548,
+ "learning_rate": 0.0006,
+ "loss": 5.677393913269043,
+ "step": 306
+ },
+ {
+ "epoch": 4.265502183406113,
+ "grad_norm": 0.04340110346674919,
+ "learning_rate": 0.0006,
+ "loss": 5.702075004577637,
+ "step": 307
+ },
+ {
+ "epoch": 4.279475982532751,
+ "grad_norm": 0.04797970876097679,
+ "learning_rate": 0.0006,
+ "loss": 5.650345802307129,
+ "step": 308
+ },
+ {
+ "epoch": 4.293449781659389,
+ "grad_norm": 0.04946571961045265,
+ "learning_rate": 0.0006,
+ "loss": 5.675044059753418,
+ "step": 309
+ },
+ {
+ "epoch": 4.307423580786026,
+ "grad_norm": 0.03254636004567146,
+ "learning_rate": 0.0006,
+ "loss": 5.622986793518066,
+ "step": 310
+ },
+ {
+ "epoch": 4.321397379912664,
+ "grad_norm": 0.032069381326436996,
+ "learning_rate": 0.0006,
+ "loss": 5.629563331604004,
+ "step": 311
+ },
+ {
+ "epoch": 4.335371179039301,
+ "grad_norm": 0.033597469329833984,
+ "learning_rate": 0.0006,
+ "loss": 5.612854480743408,
+ "step": 312
+ },
+ {
+ "epoch": 4.349344978165939,
+ "grad_norm": 0.02717825584113598,
+ "learning_rate": 0.0006,
+ "loss": 5.652135372161865,
+ "step": 313
+ },
+ {
+ "epoch": 4.3633187772925766,
+ "grad_norm": 0.03312784433364868,
+ "learning_rate": 0.0006,
+ "loss": 5.649629592895508,
+ "step": 314
+ },
+ {
+ "epoch": 4.377292576419214,
+ "grad_norm": 0.03037389926612377,
+ "learning_rate": 0.0006,
+ "loss": 5.6194305419921875,
+ "step": 315
+ },
+ {
+ "epoch": 4.391266375545851,
+ "grad_norm": 0.03778672590851784,
+ "learning_rate": 0.0006,
+ "loss": 5.641755104064941,
+ "step": 316
+ },
+ {
+ "epoch": 4.405240174672489,
+ "grad_norm": 0.053473301231861115,
+ "learning_rate": 0.0006,
+ "loss": 5.621832847595215,
+ "step": 317
+ },
+ {
+ "epoch": 4.419213973799127,
+ "grad_norm": 0.06915664672851562,
+ "learning_rate": 0.0006,
+ "loss": 5.601483345031738,
+ "step": 318
+ },
+ {
+ "epoch": 4.4331877729257645,
+ "grad_norm": 0.06667220592498779,
+ "learning_rate": 0.0006,
+ "loss": 5.642349720001221,
+ "step": 319
+ },
+ {
+ "epoch": 4.447161572052401,
+ "grad_norm": 0.037290167063474655,
+ "learning_rate": 0.0006,
+ "loss": 5.604238510131836,
+ "step": 320
+ },
+ {
+ "epoch": 4.461135371179039,
+ "grad_norm": 0.04003678262233734,
+ "learning_rate": 0.0006,
+ "loss": 5.593315601348877,
+ "step": 321
+ },
+ {
+ "epoch": 4.475109170305677,
+ "grad_norm": 0.028076812624931335,
+ "learning_rate": 0.0006,
+ "loss": 5.566408157348633,
+ "step": 322
+ },
+ {
+ "epoch": 4.489082969432315,
+ "grad_norm": 0.031247343868017197,
+ "learning_rate": 0.0006,
+ "loss": 5.6215410232543945,
+ "step": 323
+ },
+ {
+ "epoch": 4.503056768558952,
+ "grad_norm": 0.02864190936088562,
+ "learning_rate": 0.0006,
+ "loss": 5.583666801452637,
+ "step": 324
+ },
+ {
+ "epoch": 4.517030567685589,
+ "grad_norm": 0.03396870568394661,
+ "learning_rate": 0.0006,
+ "loss": 5.568394184112549,
+ "step": 325
+ },
+ {
+ "epoch": 4.531004366812227,
+ "grad_norm": 0.03053557313978672,
+ "learning_rate": 0.0006,
+ "loss": 5.5704755783081055,
+ "step": 326
+ },
+ {
+ "epoch": 4.544978165938865,
+ "grad_norm": 0.039402369409799576,
+ "learning_rate": 0.0006,
+ "loss": 5.529522895812988,
+ "step": 327
+ },
+ {
+ "epoch": 4.558951965065502,
+ "grad_norm": 0.039162520319223404,
+ "learning_rate": 0.0006,
+ "loss": 5.565547466278076,
+ "step": 328
+ },
+ {
+ "epoch": 4.5729257641921395,
+ "grad_norm": 0.03071208856999874,
+ "learning_rate": 0.0006,
+ "loss": 5.551553726196289,
+ "step": 329
+ },
+ {
+ "epoch": 4.586899563318777,
+ "grad_norm": 0.0320625938475132,
+ "learning_rate": 0.0006,
+ "loss": 5.535126686096191,
+ "step": 330
+ },
+ {
+ "epoch": 4.600873362445415,
+ "grad_norm": 0.03700695186853409,
+ "learning_rate": 0.0006,
+ "loss": 5.560665130615234,
+ "step": 331
+ },
+ {
+ "epoch": 4.614847161572053,
+ "grad_norm": 0.0327119417488575,
+ "learning_rate": 0.0006,
+ "loss": 5.528924465179443,
+ "step": 332
+ },
+ {
+ "epoch": 4.62882096069869,
+ "grad_norm": 0.028552839532494545,
+ "learning_rate": 0.0006,
+ "loss": 5.520917892456055,
+ "step": 333
+ },
+ {
+ "epoch": 4.642794759825327,
+ "grad_norm": 0.029750585556030273,
+ "learning_rate": 0.0006,
+ "loss": 5.512092113494873,
+ "step": 334
+ },
+ {
+ "epoch": 4.656768558951965,
+ "grad_norm": 0.03556099906563759,
+ "learning_rate": 0.0006,
+ "loss": 5.500020503997803,
+ "step": 335
+ },
+ {
+ "epoch": 4.670742358078603,
+ "grad_norm": 0.03819836303591728,
+ "learning_rate": 0.0006,
+ "loss": 5.523126602172852,
+ "step": 336
+ },
+ {
+ "epoch": 4.68471615720524,
+ "grad_norm": 0.038457129150629044,
+ "learning_rate": 0.0006,
+ "loss": 5.497986316680908,
+ "step": 337
+ },
+ {
+ "epoch": 4.698689956331878,
+ "grad_norm": 0.049066998064517975,
+ "learning_rate": 0.0006,
+ "loss": 5.481566429138184,
+ "step": 338
+ },
+ {
+ "epoch": 4.712663755458515,
+ "grad_norm": 0.06208881363272667,
+ "learning_rate": 0.0006,
+ "loss": 5.5200581550598145,
+ "step": 339
+ },
+ {
+ "epoch": 4.726637554585153,
+ "grad_norm": 0.04952879622578621,
+ "learning_rate": 0.0006,
+ "loss": 5.528044700622559,
+ "step": 340
+ },
+ {
+ "epoch": 4.74061135371179,
+ "grad_norm": 0.046794820576906204,
+ "learning_rate": 0.0006,
+ "loss": 5.4694437980651855,
+ "step": 341
+ },
+ {
+ "epoch": 4.754585152838428,
+ "grad_norm": 0.05241665989160538,
+ "learning_rate": 0.0006,
+ "loss": 5.5203752517700195,
+ "step": 342
+ },
+ {
+ "epoch": 4.7685589519650655,
+ "grad_norm": 0.029848996549844742,
+ "learning_rate": 0.0006,
+ "loss": 5.484467506408691,
+ "step": 343
+ },
+ {
+ "epoch": 4.782532751091703,
+ "grad_norm": 0.035734955221414566,
+ "learning_rate": 0.0006,
+ "loss": 5.4982075691223145,
+ "step": 344
+ },
+ {
+ "epoch": 4.796506550218341,
+ "grad_norm": 0.03326781094074249,
+ "learning_rate": 0.0006,
+ "loss": 5.4673380851745605,
+ "step": 345
+ },
+ {
+ "epoch": 4.810480349344978,
+ "grad_norm": 0.02851971797645092,
+ "learning_rate": 0.0006,
+ "loss": 5.466347694396973,
+ "step": 346
+ },
+ {
+ "epoch": 4.824454148471616,
+ "grad_norm": 0.02881411463022232,
+ "learning_rate": 0.0006,
+ "loss": 5.4748992919921875,
+ "step": 347
+ },
+ {
+ "epoch": 4.8384279475982535,
+ "grad_norm": 0.037079520523548126,
+ "learning_rate": 0.0006,
+ "loss": 5.430629730224609,
+ "step": 348
+ },
+ {
+ "epoch": 4.85240174672489,
+ "grad_norm": 0.06697188317775726,
+ "learning_rate": 0.0006,
+ "loss": 5.48007869720459,
+ "step": 349
+ },
+ {
+ "epoch": 4.866375545851528,
+ "grad_norm": 0.08443532884120941,
+ "learning_rate": 0.0006,
+ "loss": 5.519370079040527,
+ "step": 350
+ },
+ {
+ "epoch": 4.880349344978166,
+ "grad_norm": 0.0594899021089077,
+ "learning_rate": 0.0006,
+ "loss": 5.502467155456543,
+ "step": 351
+ },
+ {
+ "epoch": 4.894323144104804,
+ "grad_norm": 0.045731619000434875,
+ "learning_rate": 0.0006,
+ "loss": 5.48048210144043,
+ "step": 352
+ },
+ {
+ "epoch": 4.908296943231441,
+ "grad_norm": 0.02911028079688549,
+ "learning_rate": 0.0006,
+ "loss": 5.45798921585083,
+ "step": 353
+ },
+ {
+ "epoch": 4.922270742358078,
+ "grad_norm": 0.03407920524477959,
+ "learning_rate": 0.0006,
+ "loss": 5.452054977416992,
+ "step": 354
+ },
+ {
+ "epoch": 4.936244541484716,
+ "grad_norm": 0.030616968870162964,
+ "learning_rate": 0.0006,
+ "loss": 5.416000843048096,
+ "step": 355
+ },
+ {
+ "epoch": 4.950218340611354,
+ "grad_norm": 0.036123789846897125,
+ "learning_rate": 0.0006,
+ "loss": 5.448460102081299,
+ "step": 356
+ },
+ {
+ "epoch": 4.964192139737992,
+ "grad_norm": 0.03511728718876839,
+ "learning_rate": 0.0006,
+ "loss": 5.4388580322265625,
+ "step": 357
+ },
+ {
+ "epoch": 4.978165938864628,
+ "grad_norm": 0.032399944961071014,
+ "learning_rate": 0.0006,
+ "loss": 5.439154624938965,
+ "step": 358
+ },
+ {
+ "epoch": 4.992139737991266,
+ "grad_norm": 0.030734507367014885,
+ "learning_rate": 0.0006,
+ "loss": 5.394845485687256,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.036368995904922485,
+ "learning_rate": 0.0006,
+ "loss": 5.4285783767700195,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.480083465576172,
+ "eval_runtime": 50.4055,
+ "eval_samples_per_second": 48.447,
+ "eval_steps_per_second": 1.528,
+ "step": 360
+ },
+ {
+ "epoch": 5.013973799126638,
+ "grad_norm": 0.04241528734564781,
+ "learning_rate": 0.0006,
+ "loss": 5.381251335144043,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279475982532755,
+ "grad_norm": 0.03248775005340576,
+ "learning_rate": 0.0006,
+ "loss": 5.37385892868042,
+ "step": 362
+ },
+ {
+ "epoch": 5.041921397379912,
+ "grad_norm": 0.034749697893857956,
+ "learning_rate": 0.0006,
+ "loss": 5.376180648803711,
+ "step": 363
+ },
+ {
+ "epoch": 5.05589519650655,
+ "grad_norm": 0.03606852516531944,
+ "learning_rate": 0.0006,
+ "loss": 5.374990940093994,
+ "step": 364
+ },
+ {
+ "epoch": 5.069868995633188,
+ "grad_norm": 0.037298817187547684,
+ "learning_rate": 0.0006,
+ "loss": 5.387371063232422,
+ "step": 365
+ },
+ {
+ "epoch": 5.083842794759826,
+ "grad_norm": 0.04082327336072922,
+ "learning_rate": 0.0006,
+ "loss": 5.389516830444336,
+ "step": 366
+ },
+ {
+ "epoch": 5.097816593886463,
+ "grad_norm": 0.04895859211683273,
+ "learning_rate": 0.0006,
+ "loss": 5.3711090087890625,
+ "step": 367
+ },
+ {
+ "epoch": 5.1117903930131,
+ "grad_norm": 0.050905536860227585,
+ "learning_rate": 0.0006,
+ "loss": 5.351629257202148,
+ "step": 368
+ },
+ {
+ "epoch": 5.125764192139738,
+ "grad_norm": 0.04349025338888168,
+ "learning_rate": 0.0006,
+ "loss": 5.348860263824463,
+ "step": 369
+ },
+ {
+ "epoch": 5.139737991266376,
+ "grad_norm": 0.04351300373673439,
+ "learning_rate": 0.0006,
+ "loss": 5.351939678192139,
+ "step": 370
+ },
+ {
+ "epoch": 5.153711790393013,
+ "grad_norm": 0.03227587044239044,
+ "learning_rate": 0.0006,
+ "loss": 5.345745086669922,
+ "step": 371
+ },
+ {
+ "epoch": 5.1676855895196505,
+ "grad_norm": 0.04331260547041893,
+ "learning_rate": 0.0006,
+ "loss": 5.316384315490723,
+ "step": 372
+ },
+ {
+ "epoch": 5.181659388646288,
+ "grad_norm": 0.0464855432510376,
+ "learning_rate": 0.0006,
+ "loss": 5.343276023864746,
+ "step": 373
+ },
+ {
+ "epoch": 5.195633187772926,
+ "grad_norm": 0.05008427053689957,
+ "learning_rate": 0.0006,
+ "loss": 5.369993209838867,
+ "step": 374
+ },
+ {
+ "epoch": 5.209606986899563,
+ "grad_norm": 0.04762439802289009,
+ "learning_rate": 0.0006,
+ "loss": 5.3458051681518555,
+ "step": 375
+ },
+ {
+ "epoch": 5.223580786026201,
+ "grad_norm": 0.04650581255555153,
+ "learning_rate": 0.0006,
+ "loss": 5.352739334106445,
+ "step": 376
+ },
+ {
+ "epoch": 5.2375545851528384,
+ "grad_norm": 0.04960601031780243,
+ "learning_rate": 0.0006,
+ "loss": 5.327419757843018,
+ "step": 377
+ },
+ {
+ "epoch": 5.251528384279476,
+ "grad_norm": 0.04186132177710533,
+ "learning_rate": 0.0006,
+ "loss": 5.319878578186035,
+ "step": 378
+ },
+ {
+ "epoch": 5.265502183406113,
+ "grad_norm": 0.0390714667737484,
+ "learning_rate": 0.0006,
+ "loss": 5.344437599182129,
+ "step": 379
+ },
+ {
+ "epoch": 5.279475982532751,
+ "grad_norm": 0.03270866721868515,
+ "learning_rate": 0.0006,
+ "loss": 5.313382148742676,
+ "step": 380
+ },
+ {
+ "epoch": 5.293449781659389,
+ "grad_norm": 0.031864266842603683,
+ "learning_rate": 0.0006,
+ "loss": 5.326592922210693,
+ "step": 381
+ },
+ {
+ "epoch": 5.307423580786026,
+ "grad_norm": 0.026960339397192,
+ "learning_rate": 0.0006,
+ "loss": 5.286443710327148,
+ "step": 382
+ },
+ {
+ "epoch": 5.321397379912664,
+ "grad_norm": 0.023257168009877205,
+ "learning_rate": 0.0006,
+ "loss": 5.291154384613037,
+ "step": 383
+ },
+ {
+ "epoch": 5.335371179039301,
+ "grad_norm": 0.024317380040884018,
+ "learning_rate": 0.0006,
+ "loss": 5.30286979675293,
+ "step": 384
+ },
+ {
+ "epoch": 5.349344978165939,
+ "grad_norm": 0.022621065378189087,
+ "learning_rate": 0.0006,
+ "loss": 5.315716743469238,
+ "step": 385
+ },
+ {
+ "epoch": 5.3633187772925766,
+ "grad_norm": 0.023142270743846893,
+ "learning_rate": 0.0006,
+ "loss": 5.30342960357666,
+ "step": 386
+ },
+ {
+ "epoch": 5.377292576419214,
+ "grad_norm": 0.023623041808605194,
+ "learning_rate": 0.0006,
+ "loss": 5.250846862792969,
+ "step": 387
+ },
+ {
+ "epoch": 5.391266375545851,
+ "grad_norm": 0.02163100801408291,
+ "learning_rate": 0.0006,
+ "loss": 5.239641189575195,
+ "step": 388
+ },
+ {
+ "epoch": 5.405240174672489,
+ "grad_norm": 0.02896741032600403,
+ "learning_rate": 0.0006,
+ "loss": 5.2592010498046875,
+ "step": 389
+ },
+ {
+ "epoch": 5.419213973799127,
+ "grad_norm": 0.03766395151615143,
+ "learning_rate": 0.0006,
+ "loss": 5.253421783447266,
+ "step": 390
+ },
+ {
+ "epoch": 5.4331877729257645,
+ "grad_norm": 0.04409803822636604,
+ "learning_rate": 0.0006,
+ "loss": 5.271892070770264,
+ "step": 391
+ },
+ {
+ "epoch": 5.447161572052401,
+ "grad_norm": 0.040245357900857925,
+ "learning_rate": 0.0006,
+ "loss": 5.259224891662598,
+ "step": 392
+ },
+ {
+ "epoch": 5.461135371179039,
+ "grad_norm": 0.04515395313501358,
+ "learning_rate": 0.0006,
+ "loss": 5.236300468444824,
+ "step": 393
+ },
+ {
+ "epoch": 5.475109170305677,
+ "grad_norm": 0.060296714305877686,
+ "learning_rate": 0.0006,
+ "loss": 5.265594959259033,
+ "step": 394
+ },
+ {
+ "epoch": 5.489082969432315,
+ "grad_norm": 0.05405225604772568,
+ "learning_rate": 0.0006,
+ "loss": 5.262340545654297,
+ "step": 395
+ },
+ {
+ "epoch": 5.503056768558952,
+ "grad_norm": 0.0568138062953949,
+ "learning_rate": 0.0006,
+ "loss": 5.239948749542236,
+ "step": 396
+ },
+ {
+ "epoch": 5.517030567685589,
+ "grad_norm": 0.059859342873096466,
+ "learning_rate": 0.0006,
+ "loss": 5.189077854156494,
+ "step": 397
+ },
+ {
+ "epoch": 5.531004366812227,
+ "grad_norm": 0.053871408104896545,
+ "learning_rate": 0.0006,
+ "loss": 5.270648956298828,
+ "step": 398
+ },
+ {
+ "epoch": 5.544978165938865,
+ "grad_norm": 0.06081297993659973,
+ "learning_rate": 0.0006,
+ "loss": 5.314695835113525,
+ "step": 399
+ },
+ {
+ "epoch": 5.558951965065502,
+ "grad_norm": 0.0646715834736824,
+ "learning_rate": 0.0006,
+ "loss": 5.286482810974121,
+ "step": 400
+ },
+ {
+ "epoch": 5.5729257641921395,
+ "grad_norm": 0.05934286117553711,
+ "learning_rate": 0.0006,
+ "loss": 5.247529983520508,
+ "step": 401
+ },
+ {
+ "epoch": 5.586899563318777,
+ "grad_norm": 0.05270497500896454,
+ "learning_rate": 0.0006,
+ "loss": 5.213264465332031,
+ "step": 402
+ },
+ {
+ "epoch": 5.600873362445415,
+ "grad_norm": 0.03454767167568207,
+ "learning_rate": 0.0006,
+ "loss": 5.234180450439453,
+ "step": 403
+ },
+ {
+ "epoch": 5.614847161572053,
+ "grad_norm": 0.04350962117314339,
+ "learning_rate": 0.0006,
+ "loss": 5.2320332527160645,
+ "step": 404
+ },
+ {
+ "epoch": 5.62882096069869,
+ "grad_norm": 0.04721181467175484,
+ "learning_rate": 0.0006,
+ "loss": 5.228950023651123,
+ "step": 405
+ },
+ {
+ "epoch": 5.642794759825327,
+ "grad_norm": 0.03711158409714699,
+ "learning_rate": 0.0006,
+ "loss": 5.234259605407715,
+ "step": 406
+ },
+ {
+ "epoch": 5.656768558951965,
+ "grad_norm": 0.029691185802221298,
+ "learning_rate": 0.0006,
+ "loss": 5.183767795562744,
+ "step": 407
+ },
+ {
+ "epoch": 5.670742358078603,
+ "grad_norm": 0.03253520280122757,
+ "learning_rate": 0.0006,
+ "loss": 5.224790573120117,
+ "step": 408
+ },
+ {
+ "epoch": 5.68471615720524,
+ "grad_norm": 0.026891207322478294,
+ "learning_rate": 0.0006,
+ "loss": 5.219671249389648,
+ "step": 409
+ },
+ {
+ "epoch": 5.698689956331878,
+ "grad_norm": 0.024443313479423523,
+ "learning_rate": 0.0006,
+ "loss": 5.177947044372559,
+ "step": 410
+ },
+ {
+ "epoch": 5.712663755458515,
+ "grad_norm": 0.024358445778489113,
+ "learning_rate": 0.0006,
+ "loss": 5.184648513793945,
+ "step": 411
+ },
+ {
+ "epoch": 5.726637554585153,
+ "grad_norm": 0.038056857883930206,
+ "learning_rate": 0.0006,
+ "loss": 5.213315010070801,
+ "step": 412
+ },
+ {
+ "epoch": 5.74061135371179,
+ "grad_norm": 0.05382931977510452,
+ "learning_rate": 0.0006,
+ "loss": 5.188442230224609,
+ "step": 413
+ },
+ {
+ "epoch": 5.754585152838428,
+ "grad_norm": 0.04695626348257065,
+ "learning_rate": 0.0006,
+ "loss": 5.214473724365234,
+ "step": 414
+ },
+ {
+ "epoch": 5.7685589519650655,
+ "grad_norm": 0.03373295068740845,
+ "learning_rate": 0.0006,
+ "loss": 5.187349319458008,
+ "step": 415
+ },
+ {
+ "epoch": 5.782532751091703,
+ "grad_norm": 0.04209282621741295,
+ "learning_rate": 0.0006,
+ "loss": 5.215581893920898,
+ "step": 416
+ },
+ {
+ "epoch": 5.796506550218341,
+ "grad_norm": 0.036461904644966125,
+ "learning_rate": 0.0006,
+ "loss": 5.148530006408691,
+ "step": 417
+ },
+ {
+ "epoch": 5.810480349344978,
+ "grad_norm": 0.02530442364513874,
+ "learning_rate": 0.0006,
+ "loss": 5.143393039703369,
+ "step": 418
+ },
+ {
+ "epoch": 5.824454148471616,
+ "grad_norm": 0.02545030415058136,
+ "learning_rate": 0.0006,
+ "loss": 5.167602062225342,
+ "step": 419
+ },
+ {
+ "epoch": 5.8384279475982535,
+ "grad_norm": 0.024862848222255707,
+ "learning_rate": 0.0006,
+ "loss": 5.133827209472656,
+ "step": 420
+ },
+ {
+ "epoch": 5.85240174672489,
+ "grad_norm": 0.0243727695196867,
+ "learning_rate": 0.0006,
+ "loss": 5.196236610412598,
+ "step": 421
+ },
+ {
+ "epoch": 5.866375545851528,
+ "grad_norm": 0.031052641570568085,
+ "learning_rate": 0.0006,
+ "loss": 5.163963317871094,
+ "step": 422
+ },
+ {
+ "epoch": 5.880349344978166,
+ "grad_norm": 0.03085985779762268,
+ "learning_rate": 0.0006,
+ "loss": 5.133022308349609,
+ "step": 423
+ },
+ {
+ "epoch": 5.894323144104804,
+ "grad_norm": 0.026254380121827126,
+ "learning_rate": 0.0006,
+ "loss": 5.126164436340332,
+ "step": 424
+ },
+ {
+ "epoch": 5.908296943231441,
+ "grad_norm": 0.02083180658519268,
+ "learning_rate": 0.0006,
+ "loss": 5.102797508239746,
+ "step": 425
+ },
+ {
+ "epoch": 5.922270742358078,
+ "grad_norm": 0.02210022322833538,
+ "learning_rate": 0.0006,
+ "loss": 5.079900741577148,
+ "step": 426
+ },
+ {
+ "epoch": 5.936244541484716,
+ "grad_norm": 0.024237696081399918,
+ "learning_rate": 0.0006,
+ "loss": 5.131382942199707,
+ "step": 427
+ },
+ {
+ "epoch": 5.950218340611354,
+ "grad_norm": 0.03174173831939697,
+ "learning_rate": 0.0006,
+ "loss": 5.12271785736084,
+ "step": 428
+ },
+ {
+ "epoch": 5.964192139737992,
+ "grad_norm": 0.035321734845638275,
+ "learning_rate": 0.0006,
+ "loss": 5.096363067626953,
+ "step": 429
+ },
+ {
+ "epoch": 5.978165938864628,
+ "grad_norm": 0.03945434093475342,
+ "learning_rate": 0.0006,
+ "loss": 5.104191780090332,
+ "step": 430
+ },
+ {
+ "epoch": 5.992139737991266,
+ "grad_norm": 0.03119991160929203,
+ "learning_rate": 0.0006,
+ "loss": 5.088006973266602,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.025646768510341644,
+ "learning_rate": 0.0006,
+ "loss": 5.060527801513672,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.1733880043029785,
+ "eval_runtime": 49.9632,
+ "eval_samples_per_second": 48.876,
+ "eval_steps_per_second": 1.541,
+ "step": 432
+ },
+ {
+ "epoch": 6.013973799126638,
+ "grad_norm": 0.04027649387717247,
+ "learning_rate": 0.0006,
+ "loss": 5.070117473602295,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279475982532755,
+ "grad_norm": 0.04872274026274681,
+ "learning_rate": 0.0006,
+ "loss": 5.076330184936523,
+ "step": 434
+ },
+ {
+ "epoch": 6.041921397379912,
+ "grad_norm": 0.044163160026073456,
+ "learning_rate": 0.0006,
+ "loss": 5.079638481140137,
+ "step": 435
+ },
+ {
+ "epoch": 6.05589519650655,
+ "grad_norm": 0.051925189793109894,
+ "learning_rate": 0.0006,
+ "loss": 5.077970027923584,
+ "step": 436
+ },
+ {
+ "epoch": 6.069868995633188,
+ "grad_norm": 0.06317602097988129,
+ "learning_rate": 0.0006,
+ "loss": 5.077326774597168,
+ "step": 437
+ },
+ {
+ "epoch": 6.083842794759826,
+ "grad_norm": 0.05190538242459297,
+ "learning_rate": 0.0006,
+ "loss": 5.078523635864258,
+ "step": 438
+ },
+ {
+ "epoch": 6.097816593886463,
+ "grad_norm": 0.054743602871894836,
+ "learning_rate": 0.0006,
+ "loss": 5.041546821594238,
+ "step": 439
+ },
+ {
+ "epoch": 6.1117903930131,
+ "grad_norm": 0.0473523885011673,
+ "learning_rate": 0.0006,
+ "loss": 5.055340766906738,
+ "step": 440
+ },
+ {
+ "epoch": 6.125764192139738,
+ "grad_norm": 0.04575403407216072,
+ "learning_rate": 0.0006,
+ "loss": 5.078280925750732,
+ "step": 441
+ },
+ {
+ "epoch": 6.139737991266376,
+ "grad_norm": 0.04004313051700592,
+ "learning_rate": 0.0006,
+ "loss": 5.0551252365112305,
+ "step": 442
+ },
+ {
+ "epoch": 6.153711790393013,
+ "grad_norm": 0.04324577748775482,
+ "learning_rate": 0.0006,
+ "loss": 5.052831649780273,
+ "step": 443
+ },
+ {
+ "epoch": 6.1676855895196505,
+ "grad_norm": 0.05479790270328522,
+ "learning_rate": 0.0006,
+ "loss": 5.075335502624512,
+ "step": 444
+ },
+ {
+ "epoch": 6.181659388646288,
+ "grad_norm": 0.05768252909183502,
+ "learning_rate": 0.0006,
+ "loss": 5.076082706451416,
+ "step": 445
+ },
+ {
+ "epoch": 6.195633187772926,
+ "grad_norm": 0.05240596458315849,
+ "learning_rate": 0.0006,
+ "loss": 5.058586120605469,
+ "step": 446
+ },
+ {
+ "epoch": 6.209606986899563,
+ "grad_norm": 0.0645335391163826,
+ "learning_rate": 0.0006,
+ "loss": 5.069242477416992,
+ "step": 447
+ },
+ {
+ "epoch": 6.223580786026201,
+ "grad_norm": 0.07776601612567902,
+ "learning_rate": 0.0006,
+ "loss": 5.100368499755859,
+ "step": 448
+ },
+ {
+ "epoch": 6.2375545851528384,
+ "grad_norm": 0.08278049528598785,
+ "learning_rate": 0.0006,
+ "loss": 5.109698295593262,
+ "step": 449
+ },
+ {
+ "epoch": 6.251528384279476,
+ "grad_norm": 0.07187525182962418,
+ "learning_rate": 0.0006,
+ "loss": 5.08582878112793,
+ "step": 450
+ },
+ {
+ "epoch": 6.265502183406113,
+ "grad_norm": 0.07394885271787643,
+ "learning_rate": 0.0006,
+ "loss": 5.06748628616333,
+ "step": 451
+ },
+ {
+ "epoch": 6.279475982532751,
+ "grad_norm": 0.06124480068683624,
+ "learning_rate": 0.0006,
+ "loss": 5.116754531860352,
+ "step": 452
+ },
+ {
+ "epoch": 6.293449781659389,
+ "grad_norm": 0.04062265530228615,
+ "learning_rate": 0.0006,
+ "loss": 5.04876184463501,
+ "step": 453
+ },
+ {
+ "epoch": 6.307423580786026,
+ "grad_norm": 0.04309544339776039,
+ "learning_rate": 0.0006,
+ "loss": 5.038376331329346,
+ "step": 454
+ },
+ {
+ "epoch": 6.321397379912664,
+ "grad_norm": 0.041932251304388046,
+ "learning_rate": 0.0006,
+ "loss": 5.071001052856445,
+ "step": 455
+ },
+ {
+ "epoch": 6.335371179039301,
+ "grad_norm": 0.033776845782995224,
+ "learning_rate": 0.0006,
+ "loss": 5.006098747253418,
+ "step": 456
+ },
+ {
+ "epoch": 6.349344978165939,
+ "grad_norm": 0.034641820937395096,
+ "learning_rate": 0.0006,
+ "loss": 4.992915153503418,
+ "step": 457
+ },
+ {
+ "epoch": 6.3633187772925766,
+ "grad_norm": 0.023475229740142822,
+ "learning_rate": 0.0006,
+ "loss": 5.044340133666992,
+ "step": 458
+ },
+ {
+ "epoch": 6.377292576419214,
+ "grad_norm": 0.02673504501581192,
+ "learning_rate": 0.0006,
+ "loss": 4.998212814331055,
+ "step": 459
+ },
+ {
+ "epoch": 6.391266375545851,
+ "grad_norm": 0.02482164464890957,
+ "learning_rate": 0.0006,
+ "loss": 5.010951042175293,
+ "step": 460
+ },
+ {
+ "epoch": 6.405240174672489,
+ "grad_norm": 0.022635847330093384,
+ "learning_rate": 0.0006,
+ "loss": 4.977993965148926,
+ "step": 461
+ },
+ {
+ "epoch": 6.419213973799127,
+ "grad_norm": 0.023006808012723923,
+ "learning_rate": 0.0006,
+ "loss": 4.947575569152832,
+ "step": 462
+ },
+ {
+ "epoch": 6.4331877729257645,
+ "grad_norm": 0.02624397724866867,
+ "learning_rate": 0.0006,
+ "loss": 4.977143287658691,
+ "step": 463
+ },
+ {
+ "epoch": 6.447161572052401,
+ "grad_norm": 0.03280187025666237,
+ "learning_rate": 0.0006,
+ "loss": 4.941946029663086,
+ "step": 464
+ },
+ {
+ "epoch": 6.461135371179039,
+ "grad_norm": 0.04020314663648605,
+ "learning_rate": 0.0006,
+ "loss": 4.947107315063477,
+ "step": 465
+ },
+ {
+ "epoch": 6.475109170305677,
+ "grad_norm": 0.037292513996362686,
+ "learning_rate": 0.0006,
+ "loss": 4.940674781799316,
+ "step": 466
+ },
+ {
+ "epoch": 6.489082969432315,
+ "grad_norm": 0.03219081461429596,
+ "learning_rate": 0.0006,
+ "loss": 4.945491790771484,
+ "step": 467
+ },
+ {
+ "epoch": 6.503056768558952,
+ "grad_norm": 0.034181494265794754,
+ "learning_rate": 0.0006,
+ "loss": 4.948554039001465,
+ "step": 468
+ },
+ {
+ "epoch": 6.517030567685589,
+ "grad_norm": 0.03098447248339653,
+ "learning_rate": 0.0006,
+ "loss": 4.923150062561035,
+ "step": 469
+ },
+ {
+ "epoch": 6.531004366812227,
+ "grad_norm": 0.026002254337072372,
+ "learning_rate": 0.0006,
+ "loss": 4.9629106521606445,
+ "step": 470
+ },
+ {
+ "epoch": 6.544978165938865,
+ "grad_norm": 0.02463129162788391,
+ "learning_rate": 0.0006,
+ "loss": 4.9400787353515625,
+ "step": 471
+ },
+ {
+ "epoch": 6.558951965065502,
+ "grad_norm": 0.025506779551506042,
+ "learning_rate": 0.0006,
+ "loss": 4.945688247680664,
+ "step": 472
+ },
+ {
+ "epoch": 6.5729257641921395,
+ "grad_norm": 0.021885665133595467,
+ "learning_rate": 0.0006,
+ "loss": 4.893912315368652,
+ "step": 473
+ },
+ {
+ "epoch": 6.586899563318777,
+ "grad_norm": 0.023528503254055977,
+ "learning_rate": 0.0006,
+ "loss": 4.948110580444336,
+ "step": 474
+ },
+ {
+ "epoch": 6.600873362445415,
+ "grad_norm": 0.02838003821671009,
+ "learning_rate": 0.0006,
+ "loss": 4.919154167175293,
+ "step": 475
+ },
+ {
+ "epoch": 6.614847161572053,
+ "grad_norm": 0.028782688081264496,
+ "learning_rate": 0.0006,
+ "loss": 4.89210319519043,
+ "step": 476
+ },
+ {
+ "epoch": 6.62882096069869,
+ "grad_norm": 0.02549571916460991,
+ "learning_rate": 0.0006,
+ "loss": 4.903683185577393,
+ "step": 477
+ },
+ {
+ "epoch": 6.642794759825327,
+ "grad_norm": 0.030100561678409576,
+ "learning_rate": 0.0006,
+ "loss": 4.907907485961914,
+ "step": 478
+ },
+ {
+ "epoch": 6.656768558951965,
+ "grad_norm": 0.03853096067905426,
+ "learning_rate": 0.0006,
+ "loss": 4.916140556335449,
+ "step": 479
+ },
+ {
+ "epoch": 6.670742358078603,
+ "grad_norm": 0.0367201492190361,
+ "learning_rate": 0.0006,
+ "loss": 4.882139205932617,
+ "step": 480
+ },
+ {
+ "epoch": 6.68471615720524,
+ "grad_norm": 0.034214165061712265,
+ "learning_rate": 0.0006,
+ "loss": 4.883127212524414,
+ "step": 481
+ },
+ {
+ "epoch": 6.698689956331878,
+ "grad_norm": 0.03360319137573242,
+ "learning_rate": 0.0006,
+ "loss": 4.903620719909668,
+ "step": 482
+ },
+ {
+ "epoch": 6.712663755458515,
+ "grad_norm": 0.027687804773449898,
+ "learning_rate": 0.0006,
+ "loss": 4.874878883361816,
+ "step": 483
+ },
+ {
+ "epoch": 6.726637554585153,
+ "grad_norm": 0.028244799003005028,
+ "learning_rate": 0.0006,
+ "loss": 4.877007961273193,
+ "step": 484
+ },
+ {
+ "epoch": 6.74061135371179,
+ "grad_norm": 0.027868567034602165,
+ "learning_rate": 0.0006,
+ "loss": 4.893726348876953,
+ "step": 485
+ },
+ {
+ "epoch": 6.754585152838428,
+ "grad_norm": 0.036026086658239365,
+ "learning_rate": 0.0006,
+ "loss": 4.899372577667236,
+ "step": 486
+ },
+ {
+ "epoch": 6.7685589519650655,
+ "grad_norm": 0.03497552126646042,
+ "learning_rate": 0.0006,
+ "loss": 4.8735671043396,
+ "step": 487
+ },
+ {
+ "epoch": 6.782532751091703,
+ "grad_norm": 0.027166219428181648,
+ "learning_rate": 0.0006,
+ "loss": 4.848074913024902,
+ "step": 488
+ },
+ {
+ "epoch": 6.796506550218341,
+ "grad_norm": 0.029360221698880196,
+ "learning_rate": 0.0006,
+ "loss": 4.821354389190674,
+ "step": 489
+ },
+ {
+ "epoch": 6.810480349344978,
+ "grad_norm": 0.030428793281316757,
+ "learning_rate": 0.0006,
+ "loss": 4.857872009277344,
+ "step": 490
+ },
+ {
+ "epoch": 6.824454148471616,
+ "grad_norm": 0.033143963664770126,
+ "learning_rate": 0.0006,
+ "loss": 4.8857526779174805,
+ "step": 491
+ },
+ {
+ "epoch": 6.8384279475982535,
+ "grad_norm": 0.03193509578704834,
+ "learning_rate": 0.0006,
+ "loss": 4.841046333312988,
+ "step": 492
+ },
+ {
+ "epoch": 6.85240174672489,
+ "grad_norm": 0.034551024436950684,
+ "learning_rate": 0.0006,
+ "loss": 4.857826232910156,
+ "step": 493
+ },
+ {
+ "epoch": 6.866375545851528,
+ "grad_norm": 0.04612463712692261,
+ "learning_rate": 0.0006,
+ "loss": 4.880589485168457,
+ "step": 494
+ },
+ {
+ "epoch": 6.880349344978166,
+ "grad_norm": 0.04604615643620491,
+ "learning_rate": 0.0006,
+ "loss": 4.836089134216309,
+ "step": 495
+ },
+ {
+ "epoch": 6.894323144104804,
+ "grad_norm": 0.04121214151382446,
+ "learning_rate": 0.0006,
+ "loss": 4.859458923339844,
+ "step": 496
+ },
+ {
+ "epoch": 6.908296943231441,
+ "grad_norm": 0.03569377213716507,
+ "learning_rate": 0.0006,
+ "loss": 4.846658706665039,
+ "step": 497
+ },
+ {
+ "epoch": 6.922270742358078,
+ "grad_norm": 0.03878311067819595,
+ "learning_rate": 0.0006,
+ "loss": 4.828747749328613,
+ "step": 498
+ },
+ {
+ "epoch": 6.936244541484716,
+ "grad_norm": 0.0379655621945858,
+ "learning_rate": 0.0006,
+ "loss": 4.7911152839660645,
+ "step": 499
+ },
+ {
+ "epoch": 6.950218340611354,
+ "grad_norm": 0.03329150751233101,
+ "learning_rate": 0.0006,
+ "loss": 4.8190741539001465,
+ "step": 500
+ },
+ {
+ "epoch": 6.964192139737992,
+ "grad_norm": 0.0386258140206337,
+ "learning_rate": 0.0006,
+ "loss": 4.826594352722168,
+ "step": 501
+ },
+ {
+ "epoch": 6.978165938864628,
+ "grad_norm": 0.043440066277980804,
+ "learning_rate": 0.0006,
+ "loss": 4.868552207946777,
+ "step": 502
+ },
+ {
+ "epoch": 6.992139737991266,
+ "grad_norm": 0.039522934705019,
+ "learning_rate": 0.0006,
+ "loss": 4.766866683959961,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.038620468229055405,
+ "learning_rate": 0.0006,
+ "loss": 4.828839302062988,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 4.907761573791504,
+ "eval_runtime": 49.951,
+ "eval_samples_per_second": 48.888,
+ "eval_steps_per_second": 1.542,
+ "step": 504
+ },
+ {
+ "epoch": 7.013973799126638,
+ "grad_norm": 0.040495287626981735,
+ "learning_rate": 0.0006,
+ "loss": 4.755504608154297,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279475982532755,
+ "grad_norm": 0.04684276506304741,
+ "learning_rate": 0.0006,
+ "loss": 4.79603385925293,
+ "step": 506
+ },
+ {
+ "epoch": 7.041921397379912,
+ "grad_norm": 0.057431042194366455,
+ "learning_rate": 0.0006,
+ "loss": 4.798529148101807,
+ "step": 507
+ },
+ {
+ "epoch": 7.05589519650655,
+ "grad_norm": 0.06289757043123245,
+ "learning_rate": 0.0006,
+ "loss": 4.819248199462891,
+ "step": 508
+ },
+ {
+ "epoch": 7.069868995633188,
+ "grad_norm": 0.07083664834499359,
+ "learning_rate": 0.0006,
+ "loss": 4.803141117095947,
+ "step": 509
+ },
+ {
+ "epoch": 7.083842794759826,
+ "grad_norm": 0.06081623584032059,
+ "learning_rate": 0.0006,
+ "loss": 4.743819236755371,
+ "step": 510
+ },
+ {
+ "epoch": 7.097816593886463,
+ "grad_norm": 0.05454877391457558,
+ "learning_rate": 0.0006,
+ "loss": 4.854677200317383,
+ "step": 511
+ },
+ {
+ "epoch": 7.1117903930131,
+ "grad_norm": 0.05157916992902756,
+ "learning_rate": 0.0006,
+ "loss": 4.797488212585449,
+ "step": 512
+ },
+ {
+ "epoch": 7.125764192139738,
+ "grad_norm": 0.04780645668506622,
+ "learning_rate": 0.0006,
+ "loss": 4.824231147766113,
+ "step": 513
+ },
+ {
+ "epoch": 7.139737991266376,
+ "grad_norm": 0.058745913207530975,
+ "learning_rate": 0.0006,
+ "loss": 4.79942512512207,
+ "step": 514
+ },
+ {
+ "epoch": 7.153711790393013,
+ "grad_norm": 0.07210857421159744,
+ "learning_rate": 0.0006,
+ "loss": 4.857621192932129,
+ "step": 515
+ },
+ {
+ "epoch": 7.1676855895196505,
+ "grad_norm": 0.0681944340467453,
+ "learning_rate": 0.0006,
+ "loss": 4.798557281494141,
+ "step": 516
+ },
+ {
+ "epoch": 7.181659388646288,
+ "grad_norm": 0.06716784089803696,
+ "learning_rate": 0.0006,
+ "loss": 4.81382942199707,
+ "step": 517
+ },
+ {
+ "epoch": 7.195633187772926,
+ "grad_norm": 0.0700073093175888,
+ "learning_rate": 0.0006,
+ "loss": 4.811261177062988,
+ "step": 518
+ },
+ {
+ "epoch": 7.209606986899563,
+ "grad_norm": 0.05830753222107887,
+ "learning_rate": 0.0006,
+ "loss": 4.818418025970459,
+ "step": 519
+ },
+ {
+ "epoch": 7.223580786026201,
+ "grad_norm": 0.06053008884191513,
+ "learning_rate": 0.0006,
+ "loss": 4.830060005187988,
+ "step": 520
+ },
+ {
+ "epoch": 7.2375545851528384,
+ "grad_norm": 0.04992729425430298,
+ "learning_rate": 0.0006,
+ "loss": 4.820477485656738,
+ "step": 521
+ },
+ {
+ "epoch": 7.251528384279476,
+ "grad_norm": 0.03906334191560745,
+ "learning_rate": 0.0006,
+ "loss": 4.776924133300781,
+ "step": 522
+ },
+ {
+ "epoch": 7.265502183406113,
+ "grad_norm": 0.041200339794158936,
+ "learning_rate": 0.0006,
+ "loss": 4.795502662658691,
+ "step": 523
+ },
+ {
+ "epoch": 7.279475982532751,
+ "grad_norm": 0.03866710141301155,
+ "learning_rate": 0.0006,
+ "loss": 4.748326778411865,
+ "step": 524
+ },
+ {
+ "epoch": 7.293449781659389,
+ "grad_norm": 0.03892578184604645,
+ "learning_rate": 0.0006,
+ "loss": 4.731060028076172,
+ "step": 525
+ },
+ {
+ "epoch": 7.307423580786026,
+ "grad_norm": 0.034929852932691574,
+ "learning_rate": 0.0006,
+ "loss": 4.769538879394531,
+ "step": 526
+ },
+ {
+ "epoch": 7.321397379912664,
+ "grad_norm": 0.03499983623623848,
+ "learning_rate": 0.0006,
+ "loss": 4.750111103057861,
+ "step": 527
+ },
+ {
+ "epoch": 7.335371179039301,
+ "grad_norm": 0.023694142699241638,
+ "learning_rate": 0.0006,
+ "loss": 4.741044998168945,
+ "step": 528
+ },
+ {
+ "epoch": 7.349344978165939,
+ "grad_norm": 0.02783721685409546,
+ "learning_rate": 0.0006,
+ "loss": 4.733529090881348,
+ "step": 529
+ },
+ {
+ "epoch": 7.3633187772925766,
+ "grad_norm": 0.022906454280018806,
+ "learning_rate": 0.0006,
+ "loss": 4.713002681732178,
+ "step": 530
+ },
+ {
+ "epoch": 7.377292576419214,
+ "grad_norm": 0.020011693239212036,
+ "learning_rate": 0.0006,
+ "loss": 4.6840620040893555,
+ "step": 531
+ },
+ {
+ "epoch": 7.391266375545851,
+ "grad_norm": 0.019985370337963104,
+ "learning_rate": 0.0006,
+ "loss": 4.695000171661377,
+ "step": 532
+ },
+ {
+ "epoch": 7.405240174672489,
+ "grad_norm": 0.019822653383016586,
+ "learning_rate": 0.0006,
+ "loss": 4.709036350250244,
+ "step": 533
+ },
+ {
+ "epoch": 7.419213973799127,
+ "grad_norm": 0.020615894347429276,
+ "learning_rate": 0.0006,
+ "loss": 4.679416656494141,
+ "step": 534
+ },
+ {
+ "epoch": 7.4331877729257645,
+ "grad_norm": 0.01958257146179676,
+ "learning_rate": 0.0006,
+ "loss": 4.704957008361816,
+ "step": 535
+ },
+ {
+ "epoch": 7.447161572052401,
+ "grad_norm": 0.02040509134531021,
+ "learning_rate": 0.0006,
+ "loss": 4.651505470275879,
+ "step": 536
+ },
+ {
+ "epoch": 7.461135371179039,
+ "grad_norm": 0.01626836135983467,
+ "learning_rate": 0.0006,
+ "loss": 4.694278240203857,
+ "step": 537
+ },
+ {
+ "epoch": 7.475109170305677,
+ "grad_norm": 0.01660163700580597,
+ "learning_rate": 0.0006,
+ "loss": 4.662658214569092,
+ "step": 538
+ },
+ {
+ "epoch": 7.489082969432315,
+ "grad_norm": 0.016483576968312263,
+ "learning_rate": 0.0006,
+ "loss": 4.695555686950684,
+ "step": 539
+ },
+ {
+ "epoch": 7.503056768558952,
+ "grad_norm": 0.018176909536123276,
+ "learning_rate": 0.0006,
+ "loss": 4.646458625793457,
+ "step": 540
+ },
+ {
+ "epoch": 7.517030567685589,
+ "grad_norm": 0.018314503133296967,
+ "learning_rate": 0.0006,
+ "loss": 4.643884181976318,
+ "step": 541
+ },
+ {
+ "epoch": 7.531004366812227,
+ "grad_norm": 0.016406886279582977,
+ "learning_rate": 0.0006,
+ "loss": 4.637638092041016,
+ "step": 542
+ },
+ {
+ "epoch": 7.544978165938865,
+ "grad_norm": 0.017510421574115753,
+ "learning_rate": 0.0006,
+ "loss": 4.6297926902771,
+ "step": 543
+ },
+ {
+ "epoch": 7.558951965065502,
+ "grad_norm": 0.021575570106506348,
+ "learning_rate": 0.0006,
+ "loss": 4.657093048095703,
+ "step": 544
+ },
+ {
+ "epoch": 7.5729257641921395,
+ "grad_norm": 0.024670056998729706,
+ "learning_rate": 0.0006,
+ "loss": 4.637840270996094,
+ "step": 545
+ },
+ {
+ "epoch": 7.586899563318777,
+ "grad_norm": 0.026005825027823448,
+ "learning_rate": 0.0006,
+ "loss": 4.622672080993652,
+ "step": 546
+ },
+ {
+ "epoch": 7.600873362445415,
+ "grad_norm": 0.024355988949537277,
+ "learning_rate": 0.0006,
+ "loss": 4.627206802368164,
+ "step": 547
+ },
+ {
+ "epoch": 7.614847161572053,
+ "grad_norm": 0.025826960802078247,
+ "learning_rate": 0.0006,
+ "loss": 4.616837501525879,
+ "step": 548
+ },
+ {
+ "epoch": 7.62882096069869,
+ "grad_norm": 0.02809619903564453,
+ "learning_rate": 0.0006,
+ "loss": 4.643812656402588,
+ "step": 549
+ },
+ {
+ "epoch": 7.642794759825327,
+ "grad_norm": 0.023823536932468414,
+ "learning_rate": 0.0006,
+ "loss": 4.623858451843262,
+ "step": 550
+ },
+ {
+ "epoch": 7.656768558951965,
+ "grad_norm": 0.024948647245764732,
+ "learning_rate": 0.0006,
+ "loss": 4.635528564453125,
+ "step": 551
+ },
+ {
+ "epoch": 7.670742358078603,
+ "grad_norm": 0.027852604165673256,
+ "learning_rate": 0.0006,
+ "loss": 4.606395721435547,
+ "step": 552
+ },
+ {
+ "epoch": 7.68471615720524,
+ "grad_norm": 0.031888775527477264,
+ "learning_rate": 0.0006,
+ "loss": 4.630072593688965,
+ "step": 553
+ },
+ {
+ "epoch": 7.698689956331878,
+ "grad_norm": 0.04423221945762634,
+ "learning_rate": 0.0006,
+ "loss": 4.592362880706787,
+ "step": 554
+ },
+ {
+ "epoch": 7.712663755458515,
+ "grad_norm": 0.05360350012779236,
+ "learning_rate": 0.0006,
+ "loss": 4.626799583435059,
+ "step": 555
+ },
+ {
+ "epoch": 7.726637554585153,
+ "grad_norm": 0.05218035727739334,
+ "learning_rate": 0.0006,
+ "loss": 4.591753005981445,
+ "step": 556
+ },
+ {
+ "epoch": 7.74061135371179,
+ "grad_norm": 0.04740380123257637,
+ "learning_rate": 0.0006,
+ "loss": 4.611865520477295,
+ "step": 557
+ },
+ {
+ "epoch": 7.754585152838428,
+ "grad_norm": 0.04325862228870392,
+ "learning_rate": 0.0006,
+ "loss": 4.585417747497559,
+ "step": 558
+ },
+ {
+ "epoch": 7.7685589519650655,
+ "grad_norm": 0.047380927950143814,
+ "learning_rate": 0.0006,
+ "loss": 4.595690727233887,
+ "step": 559
+ },
+ {
+ "epoch": 7.782532751091703,
+ "grad_norm": 0.05398833379149437,
+ "learning_rate": 0.0006,
+ "loss": 4.670032024383545,
+ "step": 560
+ },
+ {
+ "epoch": 7.796506550218341,
+ "grad_norm": 0.05550206080079079,
+ "learning_rate": 0.0006,
+ "loss": 4.603083610534668,
+ "step": 561
+ },
+ {
+ "epoch": 7.810480349344978,
+ "grad_norm": 0.048703186213970184,
+ "learning_rate": 0.0006,
+ "loss": 4.60882568359375,
+ "step": 562
+ },
+ {
+ "epoch": 7.824454148471616,
+ "grad_norm": 0.03849068656563759,
+ "learning_rate": 0.0006,
+ "loss": 4.600196838378906,
+ "step": 563
+ },
+ {
+ "epoch": 7.8384279475982535,
+ "grad_norm": 0.04322432354092598,
+ "learning_rate": 0.0006,
+ "loss": 4.635777473449707,
+ "step": 564
+ },
+ {
+ "epoch": 7.85240174672489,
+ "grad_norm": 0.03958692029118538,
+ "learning_rate": 0.0006,
+ "loss": 4.586699962615967,
+ "step": 565
+ },
+ {
+ "epoch": 7.866375545851528,
+ "grad_norm": 0.035496462136507034,
+ "learning_rate": 0.0006,
+ "loss": 4.602683067321777,
+ "step": 566
+ },
+ {
+ "epoch": 7.880349344978166,
+ "grad_norm": 0.038870155811309814,
+ "learning_rate": 0.0006,
+ "loss": 4.635684013366699,
+ "step": 567
+ },
+ {
+ "epoch": 7.894323144104804,
+ "grad_norm": 0.038049351423978806,
+ "learning_rate": 0.0006,
+ "loss": 4.5812602043151855,
+ "step": 568
+ },
+ {
+ "epoch": 7.908296943231441,
+ "grad_norm": 0.029217766597867012,
+ "learning_rate": 0.0006,
+ "loss": 4.560367584228516,
+ "step": 569
+ },
+ {
+ "epoch": 7.922270742358078,
+ "grad_norm": 0.028376970440149307,
+ "learning_rate": 0.0006,
+ "loss": 4.578996658325195,
+ "step": 570
+ },
+ {
+ "epoch": 7.936244541484716,
+ "grad_norm": 0.035108938813209534,
+ "learning_rate": 0.0006,
+ "loss": 4.554547309875488,
+ "step": 571
+ },
+ {
+ "epoch": 7.950218340611354,
+ "grad_norm": 0.02971036173403263,
+ "learning_rate": 0.0006,
+ "loss": 4.5761919021606445,
+ "step": 572
+ },
+ {
+ "epoch": 7.964192139737992,
+ "grad_norm": 0.02690828964114189,
+ "learning_rate": 0.0006,
+ "loss": 4.568772315979004,
+ "step": 573
+ },
+ {
+ "epoch": 7.978165938864628,
+ "grad_norm": 0.023910939693450928,
+ "learning_rate": 0.0006,
+ "loss": 4.56700325012207,
+ "step": 574
+ },
+ {
+ "epoch": 7.992139737991266,
+ "grad_norm": 0.02027987875044346,
+ "learning_rate": 0.0006,
+ "loss": 4.563353538513184,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.02621232345700264,
+ "learning_rate": 0.0006,
+ "loss": 4.52655029296875,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.659845352172852,
+ "eval_runtime": 54.5122,
+ "eval_samples_per_second": 44.797,
+ "eval_steps_per_second": 1.413,
+ "step": 576
+ },
+ {
+ "epoch": 8.013973799126637,
+ "grad_norm": 0.024295445531606674,
+ "learning_rate": 0.0006,
+ "loss": 4.514026641845703,
+ "step": 577
+ },
+ {
+ "epoch": 8.027947598253276,
+ "grad_norm": 0.029430922120809555,
+ "learning_rate": 0.0006,
+ "loss": 4.479931831359863,
+ "step": 578
+ },
+ {
+ "epoch": 8.041921397379912,
+ "grad_norm": 0.03156977519392967,
+ "learning_rate": 0.0006,
+ "loss": 4.529452323913574,
+ "step": 579
+ },
+ {
+ "epoch": 8.055895196506551,
+ "grad_norm": 0.03411492332816124,
+ "learning_rate": 0.0006,
+ "loss": 4.501816749572754,
+ "step": 580
+ },
+ {
+ "epoch": 8.069868995633188,
+ "grad_norm": 0.03944215178489685,
+ "learning_rate": 0.0006,
+ "loss": 4.503504753112793,
+ "step": 581
+ },
+ {
+ "epoch": 8.083842794759825,
+ "grad_norm": 0.04511773958802223,
+ "learning_rate": 0.0006,
+ "loss": 4.481729984283447,
+ "step": 582
+ },
+ {
+ "epoch": 8.097816593886463,
+ "grad_norm": 0.03235149383544922,
+ "learning_rate": 0.0006,
+ "loss": 4.510499954223633,
+ "step": 583
+ },
+ {
+ "epoch": 8.1117903930131,
+ "grad_norm": 0.027723919600248337,
+ "learning_rate": 0.0006,
+ "loss": 4.492958068847656,
+ "step": 584
+ },
+ {
+ "epoch": 8.125764192139737,
+ "grad_norm": 0.033535368740558624,
+ "learning_rate": 0.0006,
+ "loss": 4.480009078979492,
+ "step": 585
+ },
+ {
+ "epoch": 8.139737991266376,
+ "grad_norm": 0.03412545099854469,
+ "learning_rate": 0.0006,
+ "loss": 4.464960098266602,
+ "step": 586
+ },
+ {
+ "epoch": 8.153711790393013,
+ "grad_norm": 0.03285292908549309,
+ "learning_rate": 0.0006,
+ "loss": 4.478358745574951,
+ "step": 587
+ },
+ {
+ "epoch": 8.167685589519651,
+ "grad_norm": 0.03460532799363136,
+ "learning_rate": 0.0006,
+ "loss": 4.490439414978027,
+ "step": 588
+ },
+ {
+ "epoch": 8.181659388646288,
+ "grad_norm": 0.037275977432727814,
+ "learning_rate": 0.0006,
+ "loss": 4.473151683807373,
+ "step": 589
+ },
+ {
+ "epoch": 8.195633187772925,
+ "grad_norm": 0.03485316038131714,
+ "learning_rate": 0.0006,
+ "loss": 4.491796493530273,
+ "step": 590
+ },
+ {
+ "epoch": 8.209606986899564,
+ "grad_norm": 0.03405699506402016,
+ "learning_rate": 0.0006,
+ "loss": 4.473565101623535,
+ "step": 591
+ },
+ {
+ "epoch": 8.2235807860262,
+ "grad_norm": 0.03975093364715576,
+ "learning_rate": 0.0006,
+ "loss": 4.494463920593262,
+ "step": 592
+ },
+ {
+ "epoch": 8.237554585152838,
+ "grad_norm": 0.03563615307211876,
+ "learning_rate": 0.0006,
+ "loss": 4.458979606628418,
+ "step": 593
+ },
+ {
+ "epoch": 8.251528384279476,
+ "grad_norm": 0.037183649837970734,
+ "learning_rate": 0.0006,
+ "loss": 4.4701948165893555,
+ "step": 594
+ },
+ {
+ "epoch": 8.265502183406113,
+ "grad_norm": 0.039340466260910034,
+ "learning_rate": 0.0006,
+ "loss": 4.489675521850586,
+ "step": 595
+ },
+ {
+ "epoch": 8.279475982532752,
+ "grad_norm": 0.03162173181772232,
+ "learning_rate": 0.0006,
+ "loss": 4.422170162200928,
+ "step": 596
+ },
+ {
+ "epoch": 8.293449781659389,
+ "grad_norm": 0.03257273510098457,
+ "learning_rate": 0.0006,
+ "loss": 4.467840194702148,
+ "step": 597
+ },
+ {
+ "epoch": 8.307423580786025,
+ "grad_norm": 0.028066672384738922,
+ "learning_rate": 0.0006,
+ "loss": 4.471856117248535,
+ "step": 598
+ },
+ {
+ "epoch": 8.321397379912664,
+ "grad_norm": 0.032139431685209274,
+ "learning_rate": 0.0006,
+ "loss": 4.485661029815674,
+ "step": 599
+ },
+ {
+ "epoch": 8.335371179039301,
+ "grad_norm": 0.03333858773112297,
+ "learning_rate": 0.0006,
+ "loss": 4.411584854125977,
+ "step": 600
+ },
+ {
+ "epoch": 8.34934497816594,
+ "grad_norm": 0.03705155476927757,
+ "learning_rate": 0.0006,
+ "loss": 4.466585159301758,
+ "step": 601
+ },
+ {
+ "epoch": 8.363318777292577,
+ "grad_norm": 0.03022557683289051,
+ "learning_rate": 0.0006,
+ "loss": 4.4287428855896,
+ "step": 602
+ },
+ {
+ "epoch": 8.377292576419213,
+ "grad_norm": 0.02911069616675377,
+ "learning_rate": 0.0006,
+ "loss": 4.432306289672852,
+ "step": 603
+ },
+ {
+ "epoch": 8.391266375545852,
+ "grad_norm": 0.0332532562315464,
+ "learning_rate": 0.0006,
+ "loss": 4.446920871734619,
+ "step": 604
+ },
+ {
+ "epoch": 8.405240174672489,
+ "grad_norm": 0.028356043621897697,
+ "learning_rate": 0.0006,
+ "loss": 4.41445779800415,
+ "step": 605
+ },
+ {
+ "epoch": 8.419213973799126,
+ "grad_norm": 0.026536710560321808,
+ "learning_rate": 0.0006,
+ "loss": 4.45195198059082,
+ "step": 606
+ },
+ {
+ "epoch": 8.433187772925764,
+ "grad_norm": 0.027183571830391884,
+ "learning_rate": 0.0006,
+ "loss": 4.482472896575928,
+ "step": 607
+ },
+ {
+ "epoch": 8.447161572052401,
+ "grad_norm": 0.02418459579348564,
+ "learning_rate": 0.0006,
+ "loss": 4.407785415649414,
+ "step": 608
+ },
+ {
+ "epoch": 8.46113537117904,
+ "grad_norm": 0.03382935747504234,
+ "learning_rate": 0.0006,
+ "loss": 4.457126140594482,
+ "step": 609
+ },
+ {
+ "epoch": 8.475109170305677,
+ "grad_norm": 0.0399114228785038,
+ "learning_rate": 0.0006,
+ "loss": 4.404670238494873,
+ "step": 610
+ },
+ {
+ "epoch": 8.489082969432314,
+ "grad_norm": 0.02914121001958847,
+ "learning_rate": 0.0006,
+ "loss": 4.385491371154785,
+ "step": 611
+ },
+ {
+ "epoch": 8.503056768558952,
+ "grad_norm": 0.024029329419136047,
+ "learning_rate": 0.0006,
+ "loss": 4.3807878494262695,
+ "step": 612
+ },
+ {
+ "epoch": 8.51703056768559,
+ "grad_norm": 0.024073908105492592,
+ "learning_rate": 0.0006,
+ "loss": 4.393002033233643,
+ "step": 613
+ },
+ {
+ "epoch": 8.531004366812226,
+ "grad_norm": 0.024022364988923073,
+ "learning_rate": 0.0006,
+ "loss": 4.44310188293457,
+ "step": 614
+ },
+ {
+ "epoch": 8.544978165938865,
+ "grad_norm": 0.02552313171327114,
+ "learning_rate": 0.0006,
+ "loss": 4.370255947113037,
+ "step": 615
+ },
+ {
+ "epoch": 8.558951965065502,
+ "grad_norm": 0.022251879796385765,
+ "learning_rate": 0.0006,
+ "loss": 4.366595268249512,
+ "step": 616
+ },
+ {
+ "epoch": 8.57292576419214,
+ "grad_norm": 0.022750860080122948,
+ "learning_rate": 0.0006,
+ "loss": 4.377684116363525,
+ "step": 617
+ },
+ {
+ "epoch": 8.586899563318777,
+ "grad_norm": 0.022422555834054947,
+ "learning_rate": 0.0006,
+ "loss": 4.397234916687012,
+ "step": 618
+ },
+ {
+ "epoch": 8.600873362445414,
+ "grad_norm": 0.02737540379166603,
+ "learning_rate": 0.0006,
+ "loss": 4.406569957733154,
+ "step": 619
+ },
+ {
+ "epoch": 8.614847161572053,
+ "grad_norm": 0.0230751670897007,
+ "learning_rate": 0.0006,
+ "loss": 4.37363862991333,
+ "step": 620
+ },
+ {
+ "epoch": 8.62882096069869,
+ "grad_norm": 0.02010422758758068,
+ "learning_rate": 0.0006,
+ "loss": 4.396723747253418,
+ "step": 621
+ },
+ {
+ "epoch": 8.642794759825328,
+ "grad_norm": 0.024875663220882416,
+ "learning_rate": 0.0006,
+ "loss": 4.382737159729004,
+ "step": 622
+ },
+ {
+ "epoch": 8.656768558951965,
+ "grad_norm": 0.026101084426045418,
+ "learning_rate": 0.0006,
+ "loss": 4.376001358032227,
+ "step": 623
+ },
+ {
+ "epoch": 8.670742358078602,
+ "grad_norm": 0.026131760329008102,
+ "learning_rate": 0.0006,
+ "loss": 4.392600059509277,
+ "step": 624
+ },
+ {
+ "epoch": 8.68471615720524,
+ "grad_norm": 0.02580229938030243,
+ "learning_rate": 0.0006,
+ "loss": 4.383554458618164,
+ "step": 625
+ },
+ {
+ "epoch": 8.698689956331878,
+ "grad_norm": 0.02919621206820011,
+ "learning_rate": 0.0006,
+ "loss": 4.369998455047607,
+ "step": 626
+ },
+ {
+ "epoch": 8.712663755458514,
+ "grad_norm": 0.03268479183316231,
+ "learning_rate": 0.0006,
+ "loss": 4.364940166473389,
+ "step": 627
+ },
+ {
+ "epoch": 8.726637554585153,
+ "grad_norm": 0.031615134328603745,
+ "learning_rate": 0.0006,
+ "loss": 4.354142189025879,
+ "step": 628
+ },
+ {
+ "epoch": 8.74061135371179,
+ "grad_norm": 0.03091943822801113,
+ "learning_rate": 0.0006,
+ "loss": 4.405896186828613,
+ "step": 629
+ },
+ {
+ "epoch": 8.754585152838429,
+ "grad_norm": 0.03459984436631203,
+ "learning_rate": 0.0006,
+ "loss": 4.386331558227539,
+ "step": 630
+ },
+ {
+ "epoch": 8.768558951965066,
+ "grad_norm": 0.03276519104838371,
+ "learning_rate": 0.0006,
+ "loss": 4.351153373718262,
+ "step": 631
+ },
+ {
+ "epoch": 8.782532751091702,
+ "grad_norm": 0.03300934657454491,
+ "learning_rate": 0.0006,
+ "loss": 4.364960670471191,
+ "step": 632
+ },
+ {
+ "epoch": 8.796506550218341,
+ "grad_norm": 0.03618944436311722,
+ "learning_rate": 0.0006,
+ "loss": 4.3519134521484375,
+ "step": 633
+ },
+ {
+ "epoch": 8.810480349344978,
+ "grad_norm": 0.03368232026696205,
+ "learning_rate": 0.0006,
+ "loss": 4.374147891998291,
+ "step": 634
+ },
+ {
+ "epoch": 8.824454148471617,
+ "grad_norm": 0.03252463415265083,
+ "learning_rate": 0.0006,
+ "loss": 4.367391586303711,
+ "step": 635
+ },
+ {
+ "epoch": 8.838427947598253,
+ "grad_norm": 0.03680579736828804,
+ "learning_rate": 0.0006,
+ "loss": 4.364116191864014,
+ "step": 636
+ },
+ {
+ "epoch": 8.85240174672489,
+ "grad_norm": 0.0317164771258831,
+ "learning_rate": 0.0006,
+ "loss": 4.379790306091309,
+ "step": 637
+ },
+ {
+ "epoch": 8.866375545851529,
+ "grad_norm": 0.031701602041721344,
+ "learning_rate": 0.0006,
+ "loss": 4.353549003601074,
+ "step": 638
+ },
+ {
+ "epoch": 8.880349344978166,
+ "grad_norm": 0.029211340472102165,
+ "learning_rate": 0.0006,
+ "loss": 4.343072891235352,
+ "step": 639
+ },
+ {
+ "epoch": 8.894323144104803,
+ "grad_norm": 0.02774505503475666,
+ "learning_rate": 0.0006,
+ "loss": 4.354020118713379,
+ "step": 640
+ },
+ {
+ "epoch": 8.908296943231441,
+ "grad_norm": 0.027463624253869057,
+ "learning_rate": 0.0006,
+ "loss": 4.354701519012451,
+ "step": 641
+ },
+ {
+ "epoch": 8.922270742358078,
+ "grad_norm": 0.023732105270028114,
+ "learning_rate": 0.0006,
+ "loss": 4.347830772399902,
+ "step": 642
+ },
+ {
+ "epoch": 8.936244541484717,
+ "grad_norm": 0.02339051477611065,
+ "learning_rate": 0.0006,
+ "loss": 4.342405319213867,
+ "step": 643
+ },
+ {
+ "epoch": 8.950218340611354,
+ "grad_norm": 0.023744868114590645,
+ "learning_rate": 0.0006,
+ "loss": 4.352578163146973,
+ "step": 644
+ },
+ {
+ "epoch": 8.96419213973799,
+ "grad_norm": 0.02563423290848732,
+ "learning_rate": 0.0006,
+ "loss": 4.37408971786499,
+ "step": 645
+ },
+ {
+ "epoch": 8.97816593886463,
+ "grad_norm": 0.031334877014160156,
+ "learning_rate": 0.0006,
+ "loss": 4.309673309326172,
+ "step": 646
+ },
+ {
+ "epoch": 8.992139737991266,
+ "grad_norm": 0.03283081576228142,
+ "learning_rate": 0.0006,
+ "loss": 4.348544597625732,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.03263505920767784,
+ "learning_rate": 0.0006,
+ "loss": 4.307372093200684,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.477582931518555,
+ "eval_runtime": 50.1212,
+ "eval_samples_per_second": 48.722,
+ "eval_steps_per_second": 1.536,
+ "step": 648
+ },
+ {
+ "epoch": 9.013973799126637,
+ "grad_norm": 0.038239408284425735,
+ "learning_rate": 0.0006,
+ "loss": 4.2784552574157715,
+ "step": 649
+ },
+ {
+ "epoch": 9.027947598253276,
+ "grad_norm": 0.044226426631212234,
+ "learning_rate": 0.0006,
+ "loss": 4.332424163818359,
+ "step": 650
+ },
+ {
+ "epoch": 9.041921397379912,
+ "grad_norm": 0.04743504151701927,
+ "learning_rate": 0.0006,
+ "loss": 4.303574085235596,
+ "step": 651
+ },
+ {
+ "epoch": 9.055895196506551,
+ "grad_norm": 0.04348866268992424,
+ "learning_rate": 0.0006,
+ "loss": 4.295550346374512,
+ "step": 652
+ },
+ {
+ "epoch": 9.069868995633188,
+ "grad_norm": 0.04830600693821907,
+ "learning_rate": 0.0006,
+ "loss": 4.2577619552612305,
+ "step": 653
+ },
+ {
+ "epoch": 9.083842794759825,
+ "grad_norm": 0.05154724419116974,
+ "learning_rate": 0.0006,
+ "loss": 4.314383506774902,
+ "step": 654
+ },
+ {
+ "epoch": 9.097816593886463,
+ "grad_norm": 0.044492293149232864,
+ "learning_rate": 0.0006,
+ "loss": 4.32614803314209,
+ "step": 655
+ },
+ {
+ "epoch": 9.1117903930131,
+ "grad_norm": 0.03842560201883316,
+ "learning_rate": 0.0006,
+ "loss": 4.273819446563721,
+ "step": 656
+ },
+ {
+ "epoch": 9.125764192139737,
+ "grad_norm": 0.043655358254909515,
+ "learning_rate": 0.0006,
+ "loss": 4.334014892578125,
+ "step": 657
+ },
+ {
+ "epoch": 9.139737991266376,
+ "grad_norm": 0.051922112703323364,
+ "learning_rate": 0.0006,
+ "loss": 4.308163642883301,
+ "step": 658
+ },
+ {
+ "epoch": 9.153711790393013,
+ "grad_norm": 0.049958787858486176,
+ "learning_rate": 0.0006,
+ "loss": 4.30555534362793,
+ "step": 659
+ },
+ {
+ "epoch": 9.167685589519651,
+ "grad_norm": 0.03839104622602463,
+ "learning_rate": 0.0006,
+ "loss": 4.316109657287598,
+ "step": 660
+ },
+ {
+ "epoch": 9.181659388646288,
+ "grad_norm": 0.03898056969046593,
+ "learning_rate": 0.0006,
+ "loss": 4.308863639831543,
+ "step": 661
+ },
+ {
+ "epoch": 9.195633187772925,
+ "grad_norm": 0.028817247599363327,
+ "learning_rate": 0.0006,
+ "loss": 4.300504684448242,
+ "step": 662
+ },
+ {
+ "epoch": 9.209606986899564,
+ "grad_norm": 0.030067335814237595,
+ "learning_rate": 0.0006,
+ "loss": 4.259067535400391,
+ "step": 663
+ },
+ {
+ "epoch": 9.2235807860262,
+ "grad_norm": 0.03195219859480858,
+ "learning_rate": 0.0006,
+ "loss": 4.3144426345825195,
+ "step": 664
+ },
+ {
+ "epoch": 9.237554585152838,
+ "grad_norm": 0.03194814175367355,
+ "learning_rate": 0.0006,
+ "loss": 4.259864330291748,
+ "step": 665
+ },
+ {
+ "epoch": 9.251528384279476,
+ "grad_norm": 0.02754005789756775,
+ "learning_rate": 0.0006,
+ "loss": 4.291876316070557,
+ "step": 666
+ },
+ {
+ "epoch": 9.265502183406113,
+ "grad_norm": 0.026083929464221,
+ "learning_rate": 0.0006,
+ "loss": 4.205921649932861,
+ "step": 667
+ },
+ {
+ "epoch": 9.279475982532752,
+ "grad_norm": 0.025165516883134842,
+ "learning_rate": 0.0006,
+ "loss": 4.23714017868042,
+ "step": 668
+ },
+ {
+ "epoch": 9.293449781659389,
+ "grad_norm": 0.02380996011197567,
+ "learning_rate": 0.0006,
+ "loss": 4.263561725616455,
+ "step": 669
+ },
+ {
+ "epoch": 9.307423580786025,
+ "grad_norm": 0.025552157312631607,
+ "learning_rate": 0.0006,
+ "loss": 4.222456932067871,
+ "step": 670
+ },
+ {
+ "epoch": 9.321397379912664,
+ "grad_norm": 0.024957234039902687,
+ "learning_rate": 0.0006,
+ "loss": 4.250582695007324,
+ "step": 671
+ },
+ {
+ "epoch": 9.335371179039301,
+ "grad_norm": 0.02580283023416996,
+ "learning_rate": 0.0006,
+ "loss": 4.240250587463379,
+ "step": 672
+ },
+ {
+ "epoch": 9.34934497816594,
+ "grad_norm": 0.020701562985777855,
+ "learning_rate": 0.0006,
+ "loss": 4.222497463226318,
+ "step": 673
+ },
+ {
+ "epoch": 9.363318777292577,
+ "grad_norm": 0.021373746916651726,
+ "learning_rate": 0.0006,
+ "loss": 4.242282390594482,
+ "step": 674
+ },
+ {
+ "epoch": 9.377292576419213,
+ "grad_norm": 0.02025660127401352,
+ "learning_rate": 0.0006,
+ "loss": 4.270265579223633,
+ "step": 675
+ },
+ {
+ "epoch": 9.391266375545852,
+ "grad_norm": 0.02325408160686493,
+ "learning_rate": 0.0006,
+ "loss": 4.222276210784912,
+ "step": 676
+ },
+ {
+ "epoch": 9.405240174672489,
+ "grad_norm": 0.02470816671848297,
+ "learning_rate": 0.0006,
+ "loss": 4.238652229309082,
+ "step": 677
+ },
+ {
+ "epoch": 9.419213973799126,
+ "grad_norm": 0.02343972586095333,
+ "learning_rate": 0.0006,
+ "loss": 4.24069881439209,
+ "step": 678
+ },
+ {
+ "epoch": 9.433187772925764,
+ "grad_norm": 0.021034302189946175,
+ "learning_rate": 0.0006,
+ "loss": 4.244692802429199,
+ "step": 679
+ },
+ {
+ "epoch": 9.447161572052401,
+ "grad_norm": 0.021374190226197243,
+ "learning_rate": 0.0006,
+ "loss": 4.224084854125977,
+ "step": 680
+ },
+ {
+ "epoch": 9.46113537117904,
+ "grad_norm": 0.020527871325612068,
+ "learning_rate": 0.0006,
+ "loss": 4.262082099914551,
+ "step": 681
+ },
+ {
+ "epoch": 9.475109170305677,
+ "grad_norm": 0.01585977151989937,
+ "learning_rate": 0.0006,
+ "loss": 4.226033687591553,
+ "step": 682
+ },
+ {
+ "epoch": 9.489082969432314,
+ "grad_norm": 0.016423987224698067,
+ "learning_rate": 0.0006,
+ "loss": 4.171637535095215,
+ "step": 683
+ },
+ {
+ "epoch": 9.503056768558952,
+ "grad_norm": 0.015297142788767815,
+ "learning_rate": 0.0006,
+ "loss": 4.209469795227051,
+ "step": 684
+ },
+ {
+ "epoch": 9.51703056768559,
+ "grad_norm": 0.014817374758422375,
+ "learning_rate": 0.0006,
+ "loss": 4.216704845428467,
+ "step": 685
+ },
+ {
+ "epoch": 9.531004366812226,
+ "grad_norm": 0.015434044413268566,
+ "learning_rate": 0.0006,
+ "loss": 4.256552696228027,
+ "step": 686
+ },
+ {
+ "epoch": 9.544978165938865,
+ "grad_norm": 0.016138242557644844,
+ "learning_rate": 0.0006,
+ "loss": 4.218762397766113,
+ "step": 687
+ },
+ {
+ "epoch": 9.558951965065502,
+ "grad_norm": 0.017201369628310204,
+ "learning_rate": 0.0006,
+ "loss": 4.251995086669922,
+ "step": 688
+ },
+ {
+ "epoch": 9.57292576419214,
+ "grad_norm": 0.01714685745537281,
+ "learning_rate": 0.0006,
+ "loss": 4.219054222106934,
+ "step": 689
+ },
+ {
+ "epoch": 9.586899563318777,
+ "grad_norm": 0.020723173394799232,
+ "learning_rate": 0.0006,
+ "loss": 4.255344390869141,
+ "step": 690
+ },
+ {
+ "epoch": 9.600873362445414,
+ "grad_norm": 0.028826871886849403,
+ "learning_rate": 0.0006,
+ "loss": 4.221752166748047,
+ "step": 691
+ },
+ {
+ "epoch": 9.614847161572053,
+ "grad_norm": 0.03474748879671097,
+ "learning_rate": 0.0006,
+ "loss": 4.205111503601074,
+ "step": 692
+ },
+ {
+ "epoch": 9.62882096069869,
+ "grad_norm": 0.030536217615008354,
+ "learning_rate": 0.0006,
+ "loss": 4.232375144958496,
+ "step": 693
+ },
+ {
+ "epoch": 9.642794759825328,
+ "grad_norm": 0.03158785030245781,
+ "learning_rate": 0.0006,
+ "loss": 4.186178207397461,
+ "step": 694
+ },
+ {
+ "epoch": 9.656768558951965,
+ "grad_norm": 0.032505910843610764,
+ "learning_rate": 0.0006,
+ "loss": 4.208681106567383,
+ "step": 695
+ },
+ {
+ "epoch": 9.670742358078602,
+ "grad_norm": 0.025617435574531555,
+ "learning_rate": 0.0006,
+ "loss": 4.190085411071777,
+ "step": 696
+ },
+ {
+ "epoch": 9.68471615720524,
+ "grad_norm": 0.03047073632478714,
+ "learning_rate": 0.0006,
+ "loss": 4.210445404052734,
+ "step": 697
+ },
+ {
+ "epoch": 9.698689956331878,
+ "grad_norm": 0.033015694469213486,
+ "learning_rate": 0.0006,
+ "loss": 4.215723037719727,
+ "step": 698
+ },
+ {
+ "epoch": 9.712663755458514,
+ "grad_norm": 0.0364084430038929,
+ "learning_rate": 0.0006,
+ "loss": 4.192442417144775,
+ "step": 699
+ },
+ {
+ "epoch": 9.726637554585153,
+ "grad_norm": 0.03577317297458649,
+ "learning_rate": 0.0006,
+ "loss": 4.20793342590332,
+ "step": 700
+ },
+ {
+ "epoch": 9.74061135371179,
+ "grad_norm": 0.031464435160160065,
+ "learning_rate": 0.0006,
+ "loss": 4.205752372741699,
+ "step": 701
+ },
+ {
+ "epoch": 9.754585152838429,
+ "grad_norm": 0.030628090724349022,
+ "learning_rate": 0.0006,
+ "loss": 4.209503173828125,
+ "step": 702
+ },
+ {
+ "epoch": 9.768558951965066,
+ "grad_norm": 0.031171889975667,
+ "learning_rate": 0.0006,
+ "loss": 4.189100742340088,
+ "step": 703
+ },
+ {
+ "epoch": 9.782532751091702,
+ "grad_norm": 0.026728026568889618,
+ "learning_rate": 0.0006,
+ "loss": 4.175262928009033,
+ "step": 704
+ },
+ {
+ "epoch": 9.796506550218341,
+ "grad_norm": 0.02975568361580372,
+ "learning_rate": 0.0006,
+ "loss": 4.180237770080566,
+ "step": 705
+ },
+ {
+ "epoch": 9.810480349344978,
+ "grad_norm": 0.03690735250711441,
+ "learning_rate": 0.0006,
+ "loss": 4.160732269287109,
+ "step": 706
+ },
+ {
+ "epoch": 9.824454148471617,
+ "grad_norm": 0.03488203138113022,
+ "learning_rate": 0.0006,
+ "loss": 4.228294849395752,
+ "step": 707
+ },
+ {
+ "epoch": 9.838427947598253,
+ "grad_norm": 0.032557982951402664,
+ "learning_rate": 0.0006,
+ "loss": 4.144038200378418,
+ "step": 708
+ },
+ {
+ "epoch": 9.85240174672489,
+ "grad_norm": 0.03189995512366295,
+ "learning_rate": 0.0006,
+ "loss": 4.194624900817871,
+ "step": 709
+ },
+ {
+ "epoch": 9.866375545851529,
+ "grad_norm": 0.03439774736762047,
+ "learning_rate": 0.0006,
+ "loss": 4.216994762420654,
+ "step": 710
+ },
+ {
+ "epoch": 9.880349344978166,
+ "grad_norm": 0.03789396584033966,
+ "learning_rate": 0.0006,
+ "loss": 4.196347236633301,
+ "step": 711
+ },
+ {
+ "epoch": 9.894323144104803,
+ "grad_norm": 0.037980109453201294,
+ "learning_rate": 0.0006,
+ "loss": 4.213890075683594,
+ "step": 712
+ },
+ {
+ "epoch": 9.908296943231441,
+ "grad_norm": 0.043379005044698715,
+ "learning_rate": 0.0006,
+ "loss": 4.209582328796387,
+ "step": 713
+ },
+ {
+ "epoch": 9.922270742358078,
+ "grad_norm": 0.03881588950753212,
+ "learning_rate": 0.0006,
+ "loss": 4.210249900817871,
+ "step": 714
+ },
+ {
+ "epoch": 9.936244541484717,
+ "grad_norm": 0.038644567131996155,
+ "learning_rate": 0.0006,
+ "loss": 4.169578552246094,
+ "step": 715
+ },
+ {
+ "epoch": 9.950218340611354,
+ "grad_norm": 0.03676586598157883,
+ "learning_rate": 0.0006,
+ "loss": 4.234776020050049,
+ "step": 716
+ },
+ {
+ "epoch": 9.96419213973799,
+ "grad_norm": 0.032105959951877594,
+ "learning_rate": 0.0006,
+ "loss": 4.218995094299316,
+ "step": 717
+ },
+ {
+ "epoch": 9.97816593886463,
+ "grad_norm": 0.034359272569417953,
+ "learning_rate": 0.0006,
+ "loss": 4.209888458251953,
+ "step": 718
+ },
+ {
+ "epoch": 9.992139737991266,
+ "grad_norm": 0.02772289142012596,
+ "learning_rate": 0.0006,
+ "loss": 4.201578140258789,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.03038903884589672,
+ "learning_rate": 0.0006,
+ "loss": 4.170413494110107,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 4.344418048858643,
+ "eval_runtime": 50.1464,
+ "eval_samples_per_second": 48.697,
+ "eval_steps_per_second": 1.536,
+ "step": 720
+ },
+ {
+ "epoch": 10.013973799126637,
+ "grad_norm": 0.026941193267703056,
+ "learning_rate": 0.0006,
+ "loss": 4.122128486633301,
+ "step": 721
+ },
+ {
+ "epoch": 10.027947598253276,
+ "grad_norm": 0.028237640857696533,
+ "learning_rate": 0.0006,
+ "loss": 4.120541572570801,
+ "step": 722
+ },
+ {
+ "epoch": 10.041921397379912,
+ "grad_norm": 0.02316083386540413,
+ "learning_rate": 0.0006,
+ "loss": 4.127598285675049,
+ "step": 723
+ },
+ {
+ "epoch": 10.055895196506551,
+ "grad_norm": 0.02862458862364292,
+ "learning_rate": 0.0006,
+ "loss": 4.066249847412109,
+ "step": 724
+ },
+ {
+ "epoch": 10.069868995633188,
+ "grad_norm": 0.031772635877132416,
+ "learning_rate": 0.0006,
+ "loss": 4.1211652755737305,
+ "step": 725
+ },
+ {
+ "epoch": 10.083842794759825,
+ "grad_norm": 0.031032619997859,
+ "learning_rate": 0.0006,
+ "loss": 4.125894546508789,
+ "step": 726
+ },
+ {
+ "epoch": 10.097816593886463,
+ "grad_norm": 0.02898111566901207,
+ "learning_rate": 0.0006,
+ "loss": 4.119715213775635,
+ "step": 727
+ },
+ {
+ "epoch": 10.1117903930131,
+ "grad_norm": 0.030101103708148003,
+ "learning_rate": 0.0006,
+ "loss": 4.087604522705078,
+ "step": 728
+ },
+ {
+ "epoch": 10.125764192139737,
+ "grad_norm": 0.025814464315772057,
+ "learning_rate": 0.0006,
+ "loss": 4.124494552612305,
+ "step": 729
+ },
+ {
+ "epoch": 10.139737991266376,
+ "grad_norm": 0.029547641053795815,
+ "learning_rate": 0.0006,
+ "loss": 4.072463035583496,
+ "step": 730
+ },
+ {
+ "epoch": 10.153711790393013,
+ "grad_norm": 0.03424989432096481,
+ "learning_rate": 0.0006,
+ "loss": 4.111055374145508,
+ "step": 731
+ },
+ {
+ "epoch": 10.167685589519651,
+ "grad_norm": 0.0335191935300827,
+ "learning_rate": 0.0006,
+ "loss": 4.111437797546387,
+ "step": 732
+ },
+ {
+ "epoch": 10.181659388646288,
+ "grad_norm": 0.02894248627126217,
+ "learning_rate": 0.0006,
+ "loss": 4.133310317993164,
+ "step": 733
+ },
+ {
+ "epoch": 10.195633187772925,
+ "grad_norm": 0.0266376081854105,
+ "learning_rate": 0.0006,
+ "loss": 4.132228851318359,
+ "step": 734
+ },
+ {
+ "epoch": 10.209606986899564,
+ "grad_norm": 0.020824341103434563,
+ "learning_rate": 0.0006,
+ "loss": 4.110835075378418,
+ "step": 735
+ },
+ {
+ "epoch": 10.2235807860262,
+ "grad_norm": 0.021089477464556694,
+ "learning_rate": 0.0006,
+ "loss": 4.1186065673828125,
+ "step": 736
+ },
+ {
+ "epoch": 10.237554585152838,
+ "grad_norm": 0.023007674142718315,
+ "learning_rate": 0.0006,
+ "loss": 4.089912414550781,
+ "step": 737
+ },
+ {
+ "epoch": 10.251528384279476,
+ "grad_norm": 0.025911295786499977,
+ "learning_rate": 0.0006,
+ "loss": 4.10264778137207,
+ "step": 738
+ },
+ {
+ "epoch": 10.265502183406113,
+ "grad_norm": 0.02900099940598011,
+ "learning_rate": 0.0006,
+ "loss": 4.074974060058594,
+ "step": 739
+ },
+ {
+ "epoch": 10.279475982532752,
+ "grad_norm": 0.027182135730981827,
+ "learning_rate": 0.0006,
+ "loss": 4.107949256896973,
+ "step": 740
+ },
+ {
+ "epoch": 10.293449781659389,
+ "grad_norm": 0.027884794399142265,
+ "learning_rate": 0.0006,
+ "loss": 4.039497375488281,
+ "step": 741
+ },
+ {
+ "epoch": 10.307423580786025,
+ "grad_norm": 0.025900574401021004,
+ "learning_rate": 0.0006,
+ "loss": 4.063011646270752,
+ "step": 742
+ },
+ {
+ "epoch": 10.321397379912664,
+ "grad_norm": 0.023031197488307953,
+ "learning_rate": 0.0006,
+ "loss": 4.086951732635498,
+ "step": 743
+ },
+ {
+ "epoch": 10.335371179039301,
+ "grad_norm": 0.021363092586398125,
+ "learning_rate": 0.0006,
+ "loss": 4.140152454376221,
+ "step": 744
+ },
+ {
+ "epoch": 10.34934497816594,
+ "grad_norm": 0.019563496112823486,
+ "learning_rate": 0.0006,
+ "loss": 4.087207794189453,
+ "step": 745
+ },
+ {
+ "epoch": 10.363318777292577,
+ "grad_norm": 0.018893307074904442,
+ "learning_rate": 0.0006,
+ "loss": 4.087675094604492,
+ "step": 746
+ },
+ {
+ "epoch": 10.377292576419213,
+ "grad_norm": 0.020667923614382744,
+ "learning_rate": 0.0006,
+ "loss": 4.079525947570801,
+ "step": 747
+ },
+ {
+ "epoch": 10.391266375545852,
+ "grad_norm": 0.021774202585220337,
+ "learning_rate": 0.0006,
+ "loss": 4.107867240905762,
+ "step": 748
+ },
+ {
+ "epoch": 10.405240174672489,
+ "grad_norm": 0.020068392157554626,
+ "learning_rate": 0.0006,
+ "loss": 4.0873212814331055,
+ "step": 749
+ },
+ {
+ "epoch": 10.419213973799126,
+ "grad_norm": 0.01842055842280388,
+ "learning_rate": 0.0006,
+ "loss": 4.101090431213379,
+ "step": 750
+ },
+ {
+ "epoch": 10.433187772925764,
+ "grad_norm": 0.01795836165547371,
+ "learning_rate": 0.0006,
+ "loss": 4.050619602203369,
+ "step": 751
+ },
+ {
+ "epoch": 10.447161572052401,
+ "grad_norm": 0.019673889502882957,
+ "learning_rate": 0.0006,
+ "loss": 4.086307525634766,
+ "step": 752
+ },
+ {
+ "epoch": 10.46113537117904,
+ "grad_norm": 0.01977507211267948,
+ "learning_rate": 0.0006,
+ "loss": 4.0656023025512695,
+ "step": 753
+ },
+ {
+ "epoch": 10.475109170305677,
+ "grad_norm": 0.019471775740385056,
+ "learning_rate": 0.0006,
+ "loss": 4.046194076538086,
+ "step": 754
+ },
+ {
+ "epoch": 10.489082969432314,
+ "grad_norm": 0.018536966294050217,
+ "learning_rate": 0.0006,
+ "loss": 4.033197402954102,
+ "step": 755
+ },
+ {
+ "epoch": 10.503056768558952,
+ "grad_norm": 0.018902234733104706,
+ "learning_rate": 0.0006,
+ "loss": 4.060090065002441,
+ "step": 756
+ },
+ {
+ "epoch": 10.51703056768559,
+ "grad_norm": 0.01902388036251068,
+ "learning_rate": 0.0006,
+ "loss": 4.046975135803223,
+ "step": 757
+ },
+ {
+ "epoch": 10.531004366812226,
+ "grad_norm": 0.01699388213455677,
+ "learning_rate": 0.0006,
+ "loss": 4.081168174743652,
+ "step": 758
+ },
+ {
+ "epoch": 10.544978165938865,
+ "grad_norm": 0.022350501269102097,
+ "learning_rate": 0.0006,
+ "loss": 4.049786567687988,
+ "step": 759
+ },
+ {
+ "epoch": 10.558951965065502,
+ "grad_norm": 0.023642681539058685,
+ "learning_rate": 0.0006,
+ "loss": 4.055563926696777,
+ "step": 760
+ },
+ {
+ "epoch": 10.57292576419214,
+ "grad_norm": 0.02127036638557911,
+ "learning_rate": 0.0006,
+ "loss": 4.027631759643555,
+ "step": 761
+ },
+ {
+ "epoch": 10.586899563318777,
+ "grad_norm": 0.017590979114174843,
+ "learning_rate": 0.0006,
+ "loss": 4.0793137550354,
+ "step": 762
+ },
+ {
+ "epoch": 10.600873362445414,
+ "grad_norm": 0.016930999234318733,
+ "learning_rate": 0.0006,
+ "loss": 4.027737140655518,
+ "step": 763
+ },
+ {
+ "epoch": 10.614847161572053,
+ "grad_norm": 0.018824463710188866,
+ "learning_rate": 0.0006,
+ "loss": 4.046807289123535,
+ "step": 764
+ },
+ {
+ "epoch": 10.62882096069869,
+ "grad_norm": 0.020024564117193222,
+ "learning_rate": 0.0006,
+ "loss": 4.039668083190918,
+ "step": 765
+ },
+ {
+ "epoch": 10.642794759825328,
+ "grad_norm": 0.0220749881118536,
+ "learning_rate": 0.0006,
+ "loss": 4.031907558441162,
+ "step": 766
+ },
+ {
+ "epoch": 10.656768558951965,
+ "grad_norm": 0.023237163200974464,
+ "learning_rate": 0.0006,
+ "loss": 4.059335708618164,
+ "step": 767
+ },
+ {
+ "epoch": 10.670742358078602,
+ "grad_norm": 0.023948276415467262,
+ "learning_rate": 0.0006,
+ "loss": 4.054678440093994,
+ "step": 768
+ },
+ {
+ "epoch": 10.68471615720524,
+ "grad_norm": 0.02620924636721611,
+ "learning_rate": 0.0006,
+ "loss": 4.063493728637695,
+ "step": 769
+ },
+ {
+ "epoch": 10.698689956331878,
+ "grad_norm": 0.02867635153234005,
+ "learning_rate": 0.0006,
+ "loss": 4.036065578460693,
+ "step": 770
+ },
+ {
+ "epoch": 10.712663755458514,
+ "grad_norm": 0.028705662116408348,
+ "learning_rate": 0.0006,
+ "loss": 4.049670219421387,
+ "step": 771
+ },
+ {
+ "epoch": 10.726637554585153,
+ "grad_norm": 0.024740688502788544,
+ "learning_rate": 0.0006,
+ "loss": 4.06446647644043,
+ "step": 772
+ },
+ {
+ "epoch": 10.74061135371179,
+ "grad_norm": 0.03012487292289734,
+ "learning_rate": 0.0006,
+ "loss": 4.0461015701293945,
+ "step": 773
+ },
+ {
+ "epoch": 10.754585152838429,
+ "grad_norm": 0.03286127373576164,
+ "learning_rate": 0.0006,
+ "loss": 4.025463104248047,
+ "step": 774
+ },
+ {
+ "epoch": 10.768558951965066,
+ "grad_norm": 0.028815945610404015,
+ "learning_rate": 0.0006,
+ "loss": 4.064168930053711,
+ "step": 775
+ },
+ {
+ "epoch": 10.782532751091702,
+ "grad_norm": 0.028760947287082672,
+ "learning_rate": 0.0006,
+ "loss": 4.033624649047852,
+ "step": 776
+ },
+ {
+ "epoch": 10.796506550218341,
+ "grad_norm": 0.02942710369825363,
+ "learning_rate": 0.0006,
+ "loss": 4.0383501052856445,
+ "step": 777
+ },
+ {
+ "epoch": 10.810480349344978,
+ "grad_norm": 0.026153555139899254,
+ "learning_rate": 0.0006,
+ "loss": 4.040336608886719,
+ "step": 778
+ },
+ {
+ "epoch": 10.824454148471617,
+ "grad_norm": 0.025876570492982864,
+ "learning_rate": 0.0006,
+ "loss": 4.051267147064209,
+ "step": 779
+ },
+ {
+ "epoch": 10.838427947598253,
+ "grad_norm": 0.024056321009993553,
+ "learning_rate": 0.0006,
+ "loss": 4.035898208618164,
+ "step": 780
+ },
+ {
+ "epoch": 10.85240174672489,
+ "grad_norm": 0.023602450266480446,
+ "learning_rate": 0.0006,
+ "loss": 4.041120529174805,
+ "step": 781
+ },
+ {
+ "epoch": 10.866375545851529,
+ "grad_norm": 0.0207925196737051,
+ "learning_rate": 0.0006,
+ "loss": 4.030442237854004,
+ "step": 782
+ },
+ {
+ "epoch": 10.880349344978166,
+ "grad_norm": 0.021948475390672684,
+ "learning_rate": 0.0006,
+ "loss": 4.059929847717285,
+ "step": 783
+ },
+ {
+ "epoch": 10.894323144104803,
+ "grad_norm": 0.022555390372872353,
+ "learning_rate": 0.0006,
+ "loss": 4.077475547790527,
+ "step": 784
+ },
+ {
+ "epoch": 10.908296943231441,
+ "grad_norm": 0.020376233384013176,
+ "learning_rate": 0.0006,
+ "loss": 4.038033485412598,
+ "step": 785
+ },
+ {
+ "epoch": 10.922270742358078,
+ "grad_norm": 0.019903237000107765,
+ "learning_rate": 0.0006,
+ "loss": 4.036017417907715,
+ "step": 786
+ },
+ {
+ "epoch": 10.936244541484717,
+ "grad_norm": 0.019737590104341507,
+ "learning_rate": 0.0006,
+ "loss": 4.027589321136475,
+ "step": 787
+ },
+ {
+ "epoch": 10.950218340611354,
+ "grad_norm": 0.017857525497674942,
+ "learning_rate": 0.0006,
+ "loss": 4.039187431335449,
+ "step": 788
+ },
+ {
+ "epoch": 10.96419213973799,
+ "grad_norm": 0.019433340057730675,
+ "learning_rate": 0.0006,
+ "loss": 4.025817394256592,
+ "step": 789
+ },
+ {
+ "epoch": 10.97816593886463,
+ "grad_norm": 0.019131962209939957,
+ "learning_rate": 0.0006,
+ "loss": 4.050541877746582,
+ "step": 790
+ },
+ {
+ "epoch": 10.992139737991266,
+ "grad_norm": 0.01899166963994503,
+ "learning_rate": 0.0006,
+ "loss": 4.034682273864746,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.02292267233133316,
+ "learning_rate": 0.0006,
+ "loss": 4.02860689163208,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 4.223135471343994,
+ "eval_runtime": 50.1809,
+ "eval_samples_per_second": 48.664,
+ "eval_steps_per_second": 1.534,
+ "step": 792
+ },
+ {
+ "epoch": 11.013973799126637,
+ "grad_norm": 0.02331780269742012,
+ "learning_rate": 0.0006,
+ "loss": 3.9552907943725586,
+ "step": 793
+ },
+ {
+ "epoch": 11.027947598253276,
+ "grad_norm": 0.027006106451153755,
+ "learning_rate": 0.0006,
+ "loss": 3.9303345680236816,
+ "step": 794
+ },
+ {
+ "epoch": 11.041921397379912,
+ "grad_norm": 0.03403666242957115,
+ "learning_rate": 0.0006,
+ "loss": 3.93170166015625,
+ "step": 795
+ },
+ {
+ "epoch": 11.055895196506551,
+ "grad_norm": 0.03784231096506119,
+ "learning_rate": 0.0006,
+ "loss": 3.9460182189941406,
+ "step": 796
+ },
+ {
+ "epoch": 11.069868995633188,
+ "grad_norm": 0.036992497742176056,
+ "learning_rate": 0.0006,
+ "loss": 3.9788053035736084,
+ "step": 797
+ },
+ {
+ "epoch": 11.083842794759825,
+ "grad_norm": 0.040899068117141724,
+ "learning_rate": 0.0006,
+ "loss": 3.97415828704834,
+ "step": 798
+ },
+ {
+ "epoch": 11.097816593886463,
+ "grad_norm": 0.0333116240799427,
+ "learning_rate": 0.0006,
+ "loss": 3.9691474437713623,
+ "step": 799
+ },
+ {
+ "epoch": 11.1117903930131,
+ "grad_norm": 0.03146163746714592,
+ "learning_rate": 0.0006,
+ "loss": 3.95757794380188,
+ "step": 800
+ },
+ {
+ "epoch": 11.125764192139737,
+ "grad_norm": 0.031018080189824104,
+ "learning_rate": 0.0006,
+ "loss": 3.9483275413513184,
+ "step": 801
+ },
+ {
+ "epoch": 11.139737991266376,
+ "grad_norm": 0.03301657736301422,
+ "learning_rate": 0.0006,
+ "loss": 3.972309112548828,
+ "step": 802
+ },
+ {
+ "epoch": 11.153711790393013,
+ "grad_norm": 0.03665755316615105,
+ "learning_rate": 0.0006,
+ "loss": 3.963214874267578,
+ "step": 803
+ },
+ {
+ "epoch": 11.167685589519651,
+ "grad_norm": 0.038088612258434296,
+ "learning_rate": 0.0006,
+ "loss": 3.9526877403259277,
+ "step": 804
+ },
+ {
+ "epoch": 11.181659388646288,
+ "grad_norm": 0.035294584929943085,
+ "learning_rate": 0.0006,
+ "loss": 3.9849953651428223,
+ "step": 805
+ },
+ {
+ "epoch": 11.195633187772925,
+ "grad_norm": 0.03202495723962784,
+ "learning_rate": 0.0006,
+ "loss": 3.944120407104492,
+ "step": 806
+ },
+ {
+ "epoch": 11.209606986899564,
+ "grad_norm": 0.028670601546764374,
+ "learning_rate": 0.0006,
+ "loss": 3.9752721786499023,
+ "step": 807
+ },
+ {
+ "epoch": 11.2235807860262,
+ "grad_norm": 0.032401736825704575,
+ "learning_rate": 0.0006,
+ "loss": 3.986171245574951,
+ "step": 808
+ },
+ {
+ "epoch": 11.237554585152838,
+ "grad_norm": 0.033387646079063416,
+ "learning_rate": 0.0006,
+ "loss": 3.977919101715088,
+ "step": 809
+ },
+ {
+ "epoch": 11.251528384279476,
+ "grad_norm": 0.03134278208017349,
+ "learning_rate": 0.0006,
+ "loss": 3.9734086990356445,
+ "step": 810
+ },
+ {
+ "epoch": 11.265502183406113,
+ "grad_norm": 0.030449511483311653,
+ "learning_rate": 0.0006,
+ "loss": 3.995955228805542,
+ "step": 811
+ },
+ {
+ "epoch": 11.279475982532752,
+ "grad_norm": 0.03138570487499237,
+ "learning_rate": 0.0006,
+ "loss": 3.9690403938293457,
+ "step": 812
+ },
+ {
+ "epoch": 11.293449781659389,
+ "grad_norm": 0.03469259291887283,
+ "learning_rate": 0.0006,
+ "loss": 3.9562559127807617,
+ "step": 813
+ },
+ {
+ "epoch": 11.307423580786025,
+ "grad_norm": 0.03249761089682579,
+ "learning_rate": 0.0006,
+ "loss": 3.950381278991699,
+ "step": 814
+ },
+ {
+ "epoch": 11.321397379912664,
+ "grad_norm": 0.03012247197329998,
+ "learning_rate": 0.0006,
+ "loss": 3.9659230709075928,
+ "step": 815
+ },
+ {
+ "epoch": 11.335371179039301,
+ "grad_norm": 0.026212701573967934,
+ "learning_rate": 0.0006,
+ "loss": 3.956185817718506,
+ "step": 816
+ },
+ {
+ "epoch": 11.34934497816594,
+ "grad_norm": 0.02690894901752472,
+ "learning_rate": 0.0006,
+ "loss": 3.9513344764709473,
+ "step": 817
+ },
+ {
+ "epoch": 11.363318777292577,
+ "grad_norm": 0.02419866994023323,
+ "learning_rate": 0.0006,
+ "loss": 3.997973680496216,
+ "step": 818
+ },
+ {
+ "epoch": 11.377292576419213,
+ "grad_norm": 0.027116507291793823,
+ "learning_rate": 0.0006,
+ "loss": 3.9817705154418945,
+ "step": 819
+ },
+ {
+ "epoch": 11.391266375545852,
+ "grad_norm": 0.029049331322312355,
+ "learning_rate": 0.0006,
+ "loss": 3.951998472213745,
+ "step": 820
+ },
+ {
+ "epoch": 11.405240174672489,
+ "grad_norm": 0.026706157252192497,
+ "learning_rate": 0.0006,
+ "loss": 3.9744365215301514,
+ "step": 821
+ },
+ {
+ "epoch": 11.419213973799126,
+ "grad_norm": 0.025000600144267082,
+ "learning_rate": 0.0006,
+ "loss": 3.959059238433838,
+ "step": 822
+ },
+ {
+ "epoch": 11.433187772925764,
+ "grad_norm": 0.024861274287104607,
+ "learning_rate": 0.0006,
+ "loss": 3.9474871158599854,
+ "step": 823
+ },
+ {
+ "epoch": 11.447161572052401,
+ "grad_norm": 0.023006360977888107,
+ "learning_rate": 0.0006,
+ "loss": 3.924236297607422,
+ "step": 824
+ },
+ {
+ "epoch": 11.46113537117904,
+ "grad_norm": 0.023747073486447334,
+ "learning_rate": 0.0006,
+ "loss": 3.9383111000061035,
+ "step": 825
+ },
+ {
+ "epoch": 11.475109170305677,
+ "grad_norm": 0.027958976104855537,
+ "learning_rate": 0.0006,
+ "loss": 3.989518880844116,
+ "step": 826
+ },
+ {
+ "epoch": 11.489082969432314,
+ "grad_norm": 0.026648882776498795,
+ "learning_rate": 0.0006,
+ "loss": 3.9455833435058594,
+ "step": 827
+ },
+ {
+ "epoch": 11.503056768558952,
+ "grad_norm": 0.023990288376808167,
+ "learning_rate": 0.0006,
+ "loss": 3.9832968711853027,
+ "step": 828
+ },
+ {
+ "epoch": 11.51703056768559,
+ "grad_norm": 0.02722238190472126,
+ "learning_rate": 0.0006,
+ "loss": 3.924104690551758,
+ "step": 829
+ },
+ {
+ "epoch": 11.531004366812226,
+ "grad_norm": 0.026512466371059418,
+ "learning_rate": 0.0006,
+ "loss": 3.9410343170166016,
+ "step": 830
+ },
+ {
+ "epoch": 11.544978165938865,
+ "grad_norm": 0.022135436534881592,
+ "learning_rate": 0.0006,
+ "loss": 3.903899669647217,
+ "step": 831
+ },
+ {
+ "epoch": 11.558951965065502,
+ "grad_norm": 0.022456489503383636,
+ "learning_rate": 0.0006,
+ "loss": 3.962076187133789,
+ "step": 832
+ },
+ {
+ "epoch": 11.57292576419214,
+ "grad_norm": 0.024932855740189552,
+ "learning_rate": 0.0006,
+ "loss": 3.9023091793060303,
+ "step": 833
+ },
+ {
+ "epoch": 11.586899563318777,
+ "grad_norm": 0.02856597490608692,
+ "learning_rate": 0.0006,
+ "loss": 3.928679943084717,
+ "step": 834
+ },
+ {
+ "epoch": 11.600873362445414,
+ "grad_norm": 0.034227993339300156,
+ "learning_rate": 0.0006,
+ "loss": 3.9686708450317383,
+ "step": 835
+ },
+ {
+ "epoch": 11.614847161572053,
+ "grad_norm": 0.03348609432578087,
+ "learning_rate": 0.0006,
+ "loss": 4.001498699188232,
+ "step": 836
+ },
+ {
+ "epoch": 11.62882096069869,
+ "grad_norm": 0.028687726706266403,
+ "learning_rate": 0.0006,
+ "loss": 3.9448747634887695,
+ "step": 837
+ },
+ {
+ "epoch": 11.642794759825328,
+ "grad_norm": 0.030512670055031776,
+ "learning_rate": 0.0006,
+ "loss": 3.967744827270508,
+ "step": 838
+ },
+ {
+ "epoch": 11.656768558951965,
+ "grad_norm": 0.028223708271980286,
+ "learning_rate": 0.0006,
+ "loss": 3.937486171722412,
+ "step": 839
+ },
+ {
+ "epoch": 11.670742358078602,
+ "grad_norm": 0.026596587151288986,
+ "learning_rate": 0.0006,
+ "loss": 3.9503097534179688,
+ "step": 840
+ },
+ {
+ "epoch": 11.68471615720524,
+ "grad_norm": 0.025357289239764214,
+ "learning_rate": 0.0006,
+ "loss": 3.9005143642425537,
+ "step": 841
+ },
+ {
+ "epoch": 11.698689956331878,
+ "grad_norm": 0.027513934299349785,
+ "learning_rate": 0.0006,
+ "loss": 3.9426188468933105,
+ "step": 842
+ },
+ {
+ "epoch": 11.712663755458514,
+ "grad_norm": 0.024877114221453667,
+ "learning_rate": 0.0006,
+ "loss": 3.9422965049743652,
+ "step": 843
+ },
+ {
+ "epoch": 11.726637554585153,
+ "grad_norm": 0.024543913081288338,
+ "learning_rate": 0.0006,
+ "loss": 3.9211392402648926,
+ "step": 844
+ },
+ {
+ "epoch": 11.74061135371179,
+ "grad_norm": 0.02748306654393673,
+ "learning_rate": 0.0006,
+ "loss": 3.9308085441589355,
+ "step": 845
+ },
+ {
+ "epoch": 11.754585152838429,
+ "grad_norm": 0.02310740016400814,
+ "learning_rate": 0.0006,
+ "loss": 3.9191694259643555,
+ "step": 846
+ },
+ {
+ "epoch": 11.768558951965066,
+ "grad_norm": 0.01961519382894039,
+ "learning_rate": 0.0006,
+ "loss": 3.963473081588745,
+ "step": 847
+ },
+ {
+ "epoch": 11.782532751091702,
+ "grad_norm": 0.02019876055419445,
+ "learning_rate": 0.0006,
+ "loss": 3.9336318969726562,
+ "step": 848
+ },
+ {
+ "epoch": 11.796506550218341,
+ "grad_norm": 0.017846928909420967,
+ "learning_rate": 0.0006,
+ "loss": 3.9323928356170654,
+ "step": 849
+ },
+ {
+ "epoch": 11.810480349344978,
+ "grad_norm": 0.0204033050686121,
+ "learning_rate": 0.0006,
+ "loss": 3.9221231937408447,
+ "step": 850
+ },
+ {
+ "epoch": 11.824454148471617,
+ "grad_norm": 0.0186605304479599,
+ "learning_rate": 0.0006,
+ "loss": 3.964756965637207,
+ "step": 851
+ },
+ {
+ "epoch": 11.838427947598253,
+ "grad_norm": 0.01672505773603916,
+ "learning_rate": 0.0006,
+ "loss": 3.921032667160034,
+ "step": 852
+ },
+ {
+ "epoch": 11.85240174672489,
+ "grad_norm": 0.01734270341694355,
+ "learning_rate": 0.0006,
+ "loss": 3.9388551712036133,
+ "step": 853
+ },
+ {
+ "epoch": 11.866375545851529,
+ "grad_norm": 0.01686406321823597,
+ "learning_rate": 0.0006,
+ "loss": 3.9283366203308105,
+ "step": 854
+ },
+ {
+ "epoch": 11.880349344978166,
+ "grad_norm": 0.01593155413866043,
+ "learning_rate": 0.0006,
+ "loss": 3.9095754623413086,
+ "step": 855
+ },
+ {
+ "epoch": 11.894323144104803,
+ "grad_norm": 0.014560039155185223,
+ "learning_rate": 0.0006,
+ "loss": 3.942214012145996,
+ "step": 856
+ },
+ {
+ "epoch": 11.908296943231441,
+ "grad_norm": 0.016584530472755432,
+ "learning_rate": 0.0006,
+ "loss": 3.8745198249816895,
+ "step": 857
+ },
+ {
+ "epoch": 11.922270742358078,
+ "grad_norm": 0.016951464116573334,
+ "learning_rate": 0.0006,
+ "loss": 3.9224963188171387,
+ "step": 858
+ },
+ {
+ "epoch": 11.936244541484717,
+ "grad_norm": 0.017965901643037796,
+ "learning_rate": 0.0006,
+ "loss": 3.886237621307373,
+ "step": 859
+ },
+ {
+ "epoch": 11.950218340611354,
+ "grad_norm": 0.01874147541821003,
+ "learning_rate": 0.0006,
+ "loss": 3.9200339317321777,
+ "step": 860
+ },
+ {
+ "epoch": 11.96419213973799,
+ "grad_norm": 0.021464595571160316,
+ "learning_rate": 0.0006,
+ "loss": 3.9424729347229004,
+ "step": 861
+ },
+ {
+ "epoch": 11.97816593886463,
+ "grad_norm": 0.02506706677377224,
+ "learning_rate": 0.0006,
+ "loss": 3.9516968727111816,
+ "step": 862
+ },
+ {
+ "epoch": 11.992139737991266,
+ "grad_norm": 0.02550777979195118,
+ "learning_rate": 0.0006,
+ "loss": 3.9148871898651123,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.022032644599676132,
+ "learning_rate": 0.0006,
+ "loss": 3.934220314025879,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 4.146186828613281,
+ "eval_runtime": 70.9324,
+ "eval_samples_per_second": 34.427,
+ "eval_steps_per_second": 1.086,
+ "step": 864
+ },
+ {
+ "epoch": 12.013973799126637,
+ "grad_norm": 0.021564407274127007,
+ "learning_rate": 0.0006,
+ "loss": 3.8425402641296387,
+ "step": 865
+ },
+ {
+ "epoch": 12.027947598253276,
+ "grad_norm": 0.021265074610710144,
+ "learning_rate": 0.0006,
+ "loss": 3.8457272052764893,
+ "step": 866
+ },
+ {
+ "epoch": 12.041921397379912,
+ "grad_norm": 0.02154017984867096,
+ "learning_rate": 0.0006,
+ "loss": 3.810920238494873,
+ "step": 867
+ },
+ {
+ "epoch": 12.055895196506551,
+ "grad_norm": 0.020422060042619705,
+ "learning_rate": 0.0006,
+ "loss": 3.8347911834716797,
+ "step": 868
+ },
+ {
+ "epoch": 12.069868995633188,
+ "grad_norm": 0.01949428766965866,
+ "learning_rate": 0.0006,
+ "loss": 3.831073760986328,
+ "step": 869
+ },
+ {
+ "epoch": 12.083842794759825,
+ "grad_norm": 0.021055635064840317,
+ "learning_rate": 0.0006,
+ "loss": 3.8869409561157227,
+ "step": 870
+ },
+ {
+ "epoch": 12.097816593886463,
+ "grad_norm": 0.02397136203944683,
+ "learning_rate": 0.0006,
+ "loss": 3.837860107421875,
+ "step": 871
+ },
+ {
+ "epoch": 12.1117903930131,
+ "grad_norm": 0.02733064442873001,
+ "learning_rate": 0.0006,
+ "loss": 3.8453102111816406,
+ "step": 872
+ },
+ {
+ "epoch": 12.125764192139737,
+ "grad_norm": 0.03023727424442768,
+ "learning_rate": 0.0006,
+ "loss": 3.8106770515441895,
+ "step": 873
+ },
+ {
+ "epoch": 12.139737991266376,
+ "grad_norm": 0.0334315188229084,
+ "learning_rate": 0.0006,
+ "loss": 3.835714817047119,
+ "step": 874
+ },
+ {
+ "epoch": 12.153711790393013,
+ "grad_norm": 0.03233368694782257,
+ "learning_rate": 0.0006,
+ "loss": 3.8509063720703125,
+ "step": 875
+ },
+ {
+ "epoch": 12.167685589519651,
+ "grad_norm": 0.03522663936018944,
+ "learning_rate": 0.0006,
+ "loss": 3.854410171508789,
+ "step": 876
+ },
+ {
+ "epoch": 12.181659388646288,
+ "grad_norm": 0.04753761738538742,
+ "learning_rate": 0.0006,
+ "loss": 3.882387638092041,
+ "step": 877
+ },
+ {
+ "epoch": 12.195633187772925,
+ "grad_norm": 0.049719441682100296,
+ "learning_rate": 0.0006,
+ "loss": 3.8863918781280518,
+ "step": 878
+ },
+ {
+ "epoch": 12.209606986899564,
+ "grad_norm": 0.0482778400182724,
+ "learning_rate": 0.0006,
+ "loss": 3.8418054580688477,
+ "step": 879
+ },
+ {
+ "epoch": 12.2235807860262,
+ "grad_norm": 0.04967353492975235,
+ "learning_rate": 0.0006,
+ "loss": 3.88840389251709,
+ "step": 880
+ },
+ {
+ "epoch": 12.237554585152838,
+ "grad_norm": 0.04709675535559654,
+ "learning_rate": 0.0006,
+ "loss": 3.8831706047058105,
+ "step": 881
+ },
+ {
+ "epoch": 12.251528384279476,
+ "grad_norm": 0.05031110718846321,
+ "learning_rate": 0.0006,
+ "loss": 3.8964877128601074,
+ "step": 882
+ },
+ {
+ "epoch": 12.265502183406113,
+ "grad_norm": 0.04771656170487404,
+ "learning_rate": 0.0006,
+ "loss": 3.902888774871826,
+ "step": 883
+ },
+ {
+ "epoch": 12.279475982532752,
+ "grad_norm": 0.041541457176208496,
+ "learning_rate": 0.0006,
+ "loss": 3.849850654602051,
+ "step": 884
+ },
+ {
+ "epoch": 12.293449781659389,
+ "grad_norm": 0.04055247828364372,
+ "learning_rate": 0.0006,
+ "loss": 3.907242774963379,
+ "step": 885
+ },
+ {
+ "epoch": 12.307423580786025,
+ "grad_norm": 0.0392373651266098,
+ "learning_rate": 0.0006,
+ "loss": 3.882129669189453,
+ "step": 886
+ },
+ {
+ "epoch": 12.321397379912664,
+ "grad_norm": 0.040552686899900436,
+ "learning_rate": 0.0006,
+ "loss": 3.8719077110290527,
+ "step": 887
+ },
+ {
+ "epoch": 12.335371179039301,
+ "grad_norm": 0.03997429832816124,
+ "learning_rate": 0.0006,
+ "loss": 3.8770203590393066,
+ "step": 888
+ },
+ {
+ "epoch": 12.34934497816594,
+ "grad_norm": 0.04006315395236015,
+ "learning_rate": 0.0006,
+ "loss": 3.888833999633789,
+ "step": 889
+ },
+ {
+ "epoch": 12.363318777292577,
+ "grad_norm": 0.04192065820097923,
+ "learning_rate": 0.0006,
+ "loss": 3.9480466842651367,
+ "step": 890
+ },
+ {
+ "epoch": 12.377292576419213,
+ "grad_norm": 0.03901645913720131,
+ "learning_rate": 0.0006,
+ "loss": 3.8987879753112793,
+ "step": 891
+ },
+ {
+ "epoch": 12.391266375545852,
+ "grad_norm": 0.034923430532217026,
+ "learning_rate": 0.0006,
+ "loss": 3.887423515319824,
+ "step": 892
+ },
+ {
+ "epoch": 12.405240174672489,
+ "grad_norm": 0.03397240489721298,
+ "learning_rate": 0.0006,
+ "loss": 3.874734878540039,
+ "step": 893
+ },
+ {
+ "epoch": 12.419213973799126,
+ "grad_norm": 0.03498395159840584,
+ "learning_rate": 0.0006,
+ "loss": 3.8725318908691406,
+ "step": 894
+ },
+ {
+ "epoch": 12.433187772925764,
+ "grad_norm": 0.03299591317772865,
+ "learning_rate": 0.0006,
+ "loss": 3.8542797565460205,
+ "step": 895
+ },
+ {
+ "epoch": 12.447161572052401,
+ "grad_norm": 0.03591961786150932,
+ "learning_rate": 0.0006,
+ "loss": 3.8667421340942383,
+ "step": 896
+ },
+ {
+ "epoch": 12.46113537117904,
+ "grad_norm": 0.032906632870435715,
+ "learning_rate": 0.0006,
+ "loss": 3.802811622619629,
+ "step": 897
+ },
+ {
+ "epoch": 12.475109170305677,
+ "grad_norm": 0.02919355221092701,
+ "learning_rate": 0.0006,
+ "loss": 3.9085006713867188,
+ "step": 898
+ },
+ {
+ "epoch": 12.489082969432314,
+ "grad_norm": 0.02636081911623478,
+ "learning_rate": 0.0006,
+ "loss": 3.876291275024414,
+ "step": 899
+ },
+ {
+ "epoch": 12.503056768558952,
+ "grad_norm": 0.027786940336227417,
+ "learning_rate": 0.0006,
+ "loss": 3.813384532928467,
+ "step": 900
+ },
+ {
+ "epoch": 12.51703056768559,
+ "grad_norm": 0.021504681557416916,
+ "learning_rate": 0.0006,
+ "loss": 3.8531389236450195,
+ "step": 901
+ },
+ {
+ "epoch": 12.531004366812226,
+ "grad_norm": 0.020176850259304047,
+ "learning_rate": 0.0006,
+ "loss": 3.8540682792663574,
+ "step": 902
+ },
+ {
+ "epoch": 12.544978165938865,
+ "grad_norm": 0.018069395795464516,
+ "learning_rate": 0.0006,
+ "loss": 3.8401103019714355,
+ "step": 903
+ },
+ {
+ "epoch": 12.558951965065502,
+ "grad_norm": 0.017131980508565903,
+ "learning_rate": 0.0006,
+ "loss": 3.8590402603149414,
+ "step": 904
+ },
+ {
+ "epoch": 12.57292576419214,
+ "grad_norm": 0.016838181763887405,
+ "learning_rate": 0.0006,
+ "loss": 3.816793441772461,
+ "step": 905
+ },
+ {
+ "epoch": 12.586899563318777,
+ "grad_norm": 0.01688799448311329,
+ "learning_rate": 0.0006,
+ "loss": 3.8501386642456055,
+ "step": 906
+ },
+ {
+ "epoch": 12.600873362445414,
+ "grad_norm": 0.018547389656305313,
+ "learning_rate": 0.0006,
+ "loss": 3.844679355621338,
+ "step": 907
+ },
+ {
+ "epoch": 12.614847161572053,
+ "grad_norm": 0.01693912222981453,
+ "learning_rate": 0.0006,
+ "loss": 3.8392562866210938,
+ "step": 908
+ },
+ {
+ "epoch": 12.62882096069869,
+ "grad_norm": 0.017632123082876205,
+ "learning_rate": 0.0006,
+ "loss": 3.8433165550231934,
+ "step": 909
+ },
+ {
+ "epoch": 12.642794759825328,
+ "grad_norm": 0.017826121300458908,
+ "learning_rate": 0.0006,
+ "loss": 3.880542039871216,
+ "step": 910
+ },
+ {
+ "epoch": 12.656768558951965,
+ "grad_norm": 0.01775546185672283,
+ "learning_rate": 0.0006,
+ "loss": 3.828543186187744,
+ "step": 911
+ },
+ {
+ "epoch": 12.670742358078602,
+ "grad_norm": 0.016220970079302788,
+ "learning_rate": 0.0006,
+ "loss": 3.835036039352417,
+ "step": 912
+ },
+ {
+ "epoch": 12.68471615720524,
+ "grad_norm": 0.015805263072252274,
+ "learning_rate": 0.0006,
+ "loss": 3.860929489135742,
+ "step": 913
+ },
+ {
+ "epoch": 12.698689956331878,
+ "grad_norm": 0.014601027593016624,
+ "learning_rate": 0.0006,
+ "loss": 3.849916934967041,
+ "step": 914
+ },
+ {
+ "epoch": 12.712663755458514,
+ "grad_norm": 0.014955640770494938,
+ "learning_rate": 0.0006,
+ "loss": 3.82222843170166,
+ "step": 915
+ },
+ {
+ "epoch": 12.726637554585153,
+ "grad_norm": 0.01635930687189102,
+ "learning_rate": 0.0006,
+ "loss": 3.8616011142730713,
+ "step": 916
+ },
+ {
+ "epoch": 12.74061135371179,
+ "grad_norm": 0.015701569616794586,
+ "learning_rate": 0.0006,
+ "loss": 3.827305316925049,
+ "step": 917
+ },
+ {
+ "epoch": 12.754585152838429,
+ "grad_norm": 0.014878005720674992,
+ "learning_rate": 0.0006,
+ "loss": 3.8204379081726074,
+ "step": 918
+ },
+ {
+ "epoch": 12.768558951965066,
+ "grad_norm": 0.015863968059420586,
+ "learning_rate": 0.0006,
+ "loss": 3.8282384872436523,
+ "step": 919
+ },
+ {
+ "epoch": 12.782532751091702,
+ "grad_norm": 0.015376720577478409,
+ "learning_rate": 0.0006,
+ "loss": 3.8476157188415527,
+ "step": 920
+ },
+ {
+ "epoch": 12.796506550218341,
+ "grad_norm": 0.015112238936126232,
+ "learning_rate": 0.0006,
+ "loss": 3.814873695373535,
+ "step": 921
+ },
+ {
+ "epoch": 12.810480349344978,
+ "grad_norm": 0.014457261189818382,
+ "learning_rate": 0.0006,
+ "loss": 3.874340295791626,
+ "step": 922
+ },
+ {
+ "epoch": 12.824454148471617,
+ "grad_norm": 0.013799191452562809,
+ "learning_rate": 0.0006,
+ "loss": 3.8461344242095947,
+ "step": 923
+ },
+ {
+ "epoch": 12.838427947598253,
+ "grad_norm": 0.015976861119270325,
+ "learning_rate": 0.0006,
+ "loss": 3.8348283767700195,
+ "step": 924
+ },
+ {
+ "epoch": 12.85240174672489,
+ "grad_norm": 0.016569344326853752,
+ "learning_rate": 0.0006,
+ "loss": 3.8375229835510254,
+ "step": 925
+ },
+ {
+ "epoch": 12.866375545851529,
+ "grad_norm": 0.016443882137537003,
+ "learning_rate": 0.0006,
+ "loss": 3.814178943634033,
+ "step": 926
+ },
+ {
+ "epoch": 12.880349344978166,
+ "grad_norm": 0.01687130145728588,
+ "learning_rate": 0.0006,
+ "loss": 3.7934679985046387,
+ "step": 927
+ },
+ {
+ "epoch": 12.894323144104803,
+ "grad_norm": 0.01750864088535309,
+ "learning_rate": 0.0006,
+ "loss": 3.8297150135040283,
+ "step": 928
+ },
+ {
+ "epoch": 12.908296943231441,
+ "grad_norm": 0.017512314021587372,
+ "learning_rate": 0.0006,
+ "loss": 3.7785584926605225,
+ "step": 929
+ },
+ {
+ "epoch": 12.922270742358078,
+ "grad_norm": 0.01678168773651123,
+ "learning_rate": 0.0006,
+ "loss": 3.8569579124450684,
+ "step": 930
+ },
+ {
+ "epoch": 12.936244541484717,
+ "grad_norm": 0.017443843185901642,
+ "learning_rate": 0.0006,
+ "loss": 3.8003761768341064,
+ "step": 931
+ },
+ {
+ "epoch": 12.950218340611354,
+ "grad_norm": 0.017418883740901947,
+ "learning_rate": 0.0006,
+ "loss": 3.8066251277923584,
+ "step": 932
+ },
+ {
+ "epoch": 12.96419213973799,
+ "grad_norm": 0.01592562161386013,
+ "learning_rate": 0.0006,
+ "loss": 3.8218679428100586,
+ "step": 933
+ },
+ {
+ "epoch": 12.97816593886463,
+ "grad_norm": 0.01742086559534073,
+ "learning_rate": 0.0006,
+ "loss": 3.8229286670684814,
+ "step": 934
+ },
+ {
+ "epoch": 12.992139737991266,
+ "grad_norm": 0.017524391412734985,
+ "learning_rate": 0.0006,
+ "loss": 3.810349941253662,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.019961200654506683,
+ "learning_rate": 0.0006,
+ "loss": 3.8229546546936035,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 4.08996057510376,
+ "eval_runtime": 49.9041,
+ "eval_samples_per_second": 48.934,
+ "eval_steps_per_second": 1.543,
+ "step": 936
+ },
+ {
+ "epoch": 13.013973799126637,
+ "grad_norm": 0.023570898920297623,
+ "learning_rate": 0.0006,
+ "loss": 3.7133145332336426,
+ "step": 937
+ },
+ {
+ "epoch": 13.027947598253276,
+ "grad_norm": 0.03165869787335396,
+ "learning_rate": 0.0006,
+ "loss": 3.7199676036834717,
+ "step": 938
+ },
+ {
+ "epoch": 13.041921397379912,
+ "grad_norm": 0.03561289608478546,
+ "learning_rate": 0.0006,
+ "loss": 3.7414278984069824,
+ "step": 939
+ },
+ {
+ "epoch": 13.055895196506551,
+ "grad_norm": 0.03167610988020897,
+ "learning_rate": 0.0006,
+ "loss": 3.7263808250427246,
+ "step": 940
+ },
+ {
+ "epoch": 13.069868995633188,
+ "grad_norm": 0.035912878811359406,
+ "learning_rate": 0.0006,
+ "loss": 3.7170684337615967,
+ "step": 941
+ },
+ {
+ "epoch": 13.083842794759825,
+ "grad_norm": 0.03632035478949547,
+ "learning_rate": 0.0006,
+ "loss": 3.750077724456787,
+ "step": 942
+ },
+ {
+ "epoch": 13.097816593886463,
+ "grad_norm": 0.031844258308410645,
+ "learning_rate": 0.0006,
+ "loss": 3.7065911293029785,
+ "step": 943
+ },
+ {
+ "epoch": 13.1117903930131,
+ "grad_norm": 0.03410554304718971,
+ "learning_rate": 0.0006,
+ "loss": 3.739224910736084,
+ "step": 944
+ },
+ {
+ "epoch": 13.125764192139737,
+ "grad_norm": 0.03375937044620514,
+ "learning_rate": 0.0006,
+ "loss": 3.6903367042541504,
+ "step": 945
+ },
+ {
+ "epoch": 13.139737991266376,
+ "grad_norm": 0.03705555200576782,
+ "learning_rate": 0.0006,
+ "loss": 3.778822422027588,
+ "step": 946
+ },
+ {
+ "epoch": 13.153711790393013,
+ "grad_norm": 0.03603963926434517,
+ "learning_rate": 0.0006,
+ "loss": 3.73783802986145,
+ "step": 947
+ },
+ {
+ "epoch": 13.167685589519651,
+ "grad_norm": 0.034089673310518265,
+ "learning_rate": 0.0006,
+ "loss": 3.7886078357696533,
+ "step": 948
+ },
+ {
+ "epoch": 13.181659388646288,
+ "grad_norm": 0.03745635598897934,
+ "learning_rate": 0.0006,
+ "loss": 3.76809024810791,
+ "step": 949
+ },
+ {
+ "epoch": 13.195633187772925,
+ "grad_norm": 0.04209613427519798,
+ "learning_rate": 0.0006,
+ "loss": 3.7813467979431152,
+ "step": 950
+ },
+ {
+ "epoch": 13.209606986899564,
+ "grad_norm": 0.036846764385700226,
+ "learning_rate": 0.0006,
+ "loss": 3.7726383209228516,
+ "step": 951
+ },
+ {
+ "epoch": 13.2235807860262,
+ "grad_norm": 0.036949072033166885,
+ "learning_rate": 0.0006,
+ "loss": 3.7197751998901367,
+ "step": 952
+ },
+ {
+ "epoch": 13.237554585152838,
+ "grad_norm": 0.03458063304424286,
+ "learning_rate": 0.0006,
+ "loss": 3.7695436477661133,
+ "step": 953
+ },
+ {
+ "epoch": 13.251528384279476,
+ "grad_norm": 0.038074951618909836,
+ "learning_rate": 0.0006,
+ "loss": 3.7531425952911377,
+ "step": 954
+ },
+ {
+ "epoch": 13.265502183406113,
+ "grad_norm": 0.03661646693944931,
+ "learning_rate": 0.0006,
+ "loss": 3.767953872680664,
+ "step": 955
+ },
+ {
+ "epoch": 13.279475982532752,
+ "grad_norm": 0.039892520755529404,
+ "learning_rate": 0.0006,
+ "loss": 3.7687599658966064,
+ "step": 956
+ },
+ {
+ "epoch": 13.293449781659389,
+ "grad_norm": 0.036572884768247604,
+ "learning_rate": 0.0006,
+ "loss": 3.7693774700164795,
+ "step": 957
+ },
+ {
+ "epoch": 13.307423580786025,
+ "grad_norm": 0.03855743631720543,
+ "learning_rate": 0.0006,
+ "loss": 3.8233063220977783,
+ "step": 958
+ },
+ {
+ "epoch": 13.321397379912664,
+ "grad_norm": 0.03484344109892845,
+ "learning_rate": 0.0006,
+ "loss": 3.79215669631958,
+ "step": 959
+ },
+ {
+ "epoch": 13.335371179039301,
+ "grad_norm": 0.036101482808589935,
+ "learning_rate": 0.0006,
+ "loss": 3.768373966217041,
+ "step": 960
+ },
+ {
+ "epoch": 13.34934497816594,
+ "grad_norm": 0.03150841221213341,
+ "learning_rate": 0.0006,
+ "loss": 3.7502622604370117,
+ "step": 961
+ },
+ {
+ "epoch": 13.363318777292577,
+ "grad_norm": 0.03154430910944939,
+ "learning_rate": 0.0006,
+ "loss": 3.764416217803955,
+ "step": 962
+ },
+ {
+ "epoch": 13.377292576419213,
+ "grad_norm": 0.03163410350680351,
+ "learning_rate": 0.0006,
+ "loss": 3.757230758666992,
+ "step": 963
+ },
+ {
+ "epoch": 13.391266375545852,
+ "grad_norm": 0.02932742051780224,
+ "learning_rate": 0.0006,
+ "loss": 3.7860183715820312,
+ "step": 964
+ },
+ {
+ "epoch": 13.405240174672489,
+ "grad_norm": 0.025545787066221237,
+ "learning_rate": 0.0006,
+ "loss": 3.748073101043701,
+ "step": 965
+ },
+ {
+ "epoch": 13.419213973799126,
+ "grad_norm": 0.02389710769057274,
+ "learning_rate": 0.0006,
+ "loss": 3.778963565826416,
+ "step": 966
+ },
+ {
+ "epoch": 13.433187772925764,
+ "grad_norm": 0.023781558498740196,
+ "learning_rate": 0.0006,
+ "loss": 3.7151870727539062,
+ "step": 967
+ },
+ {
+ "epoch": 13.447161572052401,
+ "grad_norm": 0.023273715749382973,
+ "learning_rate": 0.0006,
+ "loss": 3.766374111175537,
+ "step": 968
+ },
+ {
+ "epoch": 13.46113537117904,
+ "grad_norm": 0.023059967905282974,
+ "learning_rate": 0.0006,
+ "loss": 3.783663749694824,
+ "step": 969
+ },
+ {
+ "epoch": 13.475109170305677,
+ "grad_norm": 0.020438550040125847,
+ "learning_rate": 0.0006,
+ "loss": 3.755140781402588,
+ "step": 970
+ },
+ {
+ "epoch": 13.489082969432314,
+ "grad_norm": 0.019272785633802414,
+ "learning_rate": 0.0006,
+ "loss": 3.741131544113159,
+ "step": 971
+ },
+ {
+ "epoch": 13.503056768558952,
+ "grad_norm": 0.017616258934140205,
+ "learning_rate": 0.0006,
+ "loss": 3.7395365238189697,
+ "step": 972
+ },
+ {
+ "epoch": 13.51703056768559,
+ "grad_norm": 0.017435181885957718,
+ "learning_rate": 0.0006,
+ "loss": 3.7755181789398193,
+ "step": 973
+ },
+ {
+ "epoch": 13.531004366812226,
+ "grad_norm": 0.01710323616862297,
+ "learning_rate": 0.0006,
+ "loss": 3.7158422470092773,
+ "step": 974
+ },
+ {
+ "epoch": 13.544978165938865,
+ "grad_norm": 0.016912570223212242,
+ "learning_rate": 0.0006,
+ "loss": 3.727623462677002,
+ "step": 975
+ },
+ {
+ "epoch": 13.558951965065502,
+ "grad_norm": 0.0181113388389349,
+ "learning_rate": 0.0006,
+ "loss": 3.771268367767334,
+ "step": 976
+ },
+ {
+ "epoch": 13.57292576419214,
+ "grad_norm": 0.018880970776081085,
+ "learning_rate": 0.0006,
+ "loss": 3.7602953910827637,
+ "step": 977
+ },
+ {
+ "epoch": 13.586899563318777,
+ "grad_norm": 0.019182899966835976,
+ "learning_rate": 0.0006,
+ "loss": 3.7339329719543457,
+ "step": 978
+ },
+ {
+ "epoch": 13.600873362445414,
+ "grad_norm": 0.02025751583278179,
+ "learning_rate": 0.0006,
+ "loss": 3.7562665939331055,
+ "step": 979
+ },
+ {
+ "epoch": 13.614847161572053,
+ "grad_norm": 0.01820831373333931,
+ "learning_rate": 0.0006,
+ "loss": 3.725492477416992,
+ "step": 980
+ },
+ {
+ "epoch": 13.62882096069869,
+ "grad_norm": 0.017619458958506584,
+ "learning_rate": 0.0006,
+ "loss": 3.714106798171997,
+ "step": 981
+ },
+ {
+ "epoch": 13.642794759825328,
+ "grad_norm": 0.016764821484684944,
+ "learning_rate": 0.0006,
+ "loss": 3.7665224075317383,
+ "step": 982
+ },
+ {
+ "epoch": 13.656768558951965,
+ "grad_norm": 0.016131598502397537,
+ "learning_rate": 0.0006,
+ "loss": 3.779419422149658,
+ "step": 983
+ },
+ {
+ "epoch": 13.670742358078602,
+ "grad_norm": 0.01535084005445242,
+ "learning_rate": 0.0006,
+ "loss": 3.7591190338134766,
+ "step": 984
+ },
+ {
+ "epoch": 13.68471615720524,
+ "grad_norm": 0.016390377655625343,
+ "learning_rate": 0.0006,
+ "loss": 3.7544782161712646,
+ "step": 985
+ },
+ {
+ "epoch": 13.698689956331878,
+ "grad_norm": 0.016028346493840218,
+ "learning_rate": 0.0006,
+ "loss": 3.772927761077881,
+ "step": 986
+ },
+ {
+ "epoch": 13.712663755458514,
+ "grad_norm": 0.015925439074635506,
+ "learning_rate": 0.0006,
+ "loss": 3.7092344760894775,
+ "step": 987
+ },
+ {
+ "epoch": 13.726637554585153,
+ "grad_norm": 0.016125058755278587,
+ "learning_rate": 0.0006,
+ "loss": 3.7528953552246094,
+ "step": 988
+ },
+ {
+ "epoch": 13.74061135371179,
+ "grad_norm": 0.015887845307588577,
+ "learning_rate": 0.0006,
+ "loss": 3.744354248046875,
+ "step": 989
+ },
+ {
+ "epoch": 13.754585152838429,
+ "grad_norm": 0.015301455743610859,
+ "learning_rate": 0.0006,
+ "loss": 3.743435859680176,
+ "step": 990
+ },
+ {
+ "epoch": 13.768558951965066,
+ "grad_norm": 0.014814727008342743,
+ "learning_rate": 0.0006,
+ "loss": 3.7351980209350586,
+ "step": 991
+ },
+ {
+ "epoch": 13.782532751091702,
+ "grad_norm": 0.01479976624250412,
+ "learning_rate": 0.0006,
+ "loss": 3.722226619720459,
+ "step": 992
+ },
+ {
+ "epoch": 13.796506550218341,
+ "grad_norm": 0.016558295115828514,
+ "learning_rate": 0.0006,
+ "loss": 3.717442512512207,
+ "step": 993
+ },
+ {
+ "epoch": 13.810480349344978,
+ "grad_norm": 0.01635979674756527,
+ "learning_rate": 0.0006,
+ "loss": 3.707097053527832,
+ "step": 994
+ },
+ {
+ "epoch": 13.824454148471617,
+ "grad_norm": 0.014870786108076572,
+ "learning_rate": 0.0006,
+ "loss": 3.768139362335205,
+ "step": 995
+ },
+ {
+ "epoch": 13.838427947598253,
+ "grad_norm": 0.014958183281123638,
+ "learning_rate": 0.0006,
+ "loss": 3.722902774810791,
+ "step": 996
+ },
+ {
+ "epoch": 13.85240174672489,
+ "grad_norm": 0.015501127578318119,
+ "learning_rate": 0.0006,
+ "loss": 3.7323732376098633,
+ "step": 997
+ },
+ {
+ "epoch": 13.866375545851529,
+ "grad_norm": 0.015276075340807438,
+ "learning_rate": 0.0006,
+ "loss": 3.734039783477783,
+ "step": 998
+ },
+ {
+ "epoch": 13.880349344978166,
+ "grad_norm": 0.01742061786353588,
+ "learning_rate": 0.0006,
+ "loss": 3.737147331237793,
+ "step": 999
+ },
+ {
+ "epoch": 13.894323144104803,
+ "grad_norm": 0.016311734914779663,
+ "learning_rate": 0.0006,
+ "loss": 3.7114202976226807,
+ "step": 1000
+ },
+ {
+ "epoch": 13.908296943231441,
+ "grad_norm": 0.017144575715065002,
+ "learning_rate": 0.0006,
+ "loss": 3.734762191772461,
+ "step": 1001
+ },
+ {
+ "epoch": 13.922270742358078,
+ "grad_norm": 0.016401860862970352,
+ "learning_rate": 0.0006,
+ "loss": 3.753246784210205,
+ "step": 1002
+ },
+ {
+ "epoch": 13.936244541484717,
+ "grad_norm": 0.015357336029410362,
+ "learning_rate": 0.0006,
+ "loss": 3.7216477394104004,
+ "step": 1003
+ },
+ {
+ "epoch": 13.950218340611354,
+ "grad_norm": 0.016586005687713623,
+ "learning_rate": 0.0006,
+ "loss": 3.793790102005005,
+ "step": 1004
+ },
+ {
+ "epoch": 13.96419213973799,
+ "grad_norm": 0.015338776633143425,
+ "learning_rate": 0.0006,
+ "loss": 3.711658000946045,
+ "step": 1005
+ },
+ {
+ "epoch": 13.97816593886463,
+ "grad_norm": 0.017011435702443123,
+ "learning_rate": 0.0006,
+ "loss": 3.752537727355957,
+ "step": 1006
+ },
+ {
+ "epoch": 13.992139737991266,
+ "grad_norm": 0.017308345064520836,
+ "learning_rate": 0.0006,
+ "loss": 3.7391486167907715,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.01815737411379814,
+ "learning_rate": 0.0006,
+ "loss": 3.7011828422546387,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 4.046541690826416,
+ "eval_runtime": 54.3615,
+ "eval_samples_per_second": 44.922,
+ "eval_steps_per_second": 1.416,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013973799126637,
+ "grad_norm": 0.01765853725373745,
+ "learning_rate": 0.0006,
+ "loss": 3.6156458854675293,
+ "step": 1009
+ },
+ {
+ "epoch": 14.027947598253276,
+ "grad_norm": 0.02285143919289112,
+ "learning_rate": 0.0006,
+ "loss": 3.6625490188598633,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041921397379912,
+ "grad_norm": 0.02511940896511078,
+ "learning_rate": 0.0006,
+ "loss": 3.619877815246582,
+ "step": 1011
+ },
+ {
+ "epoch": 14.055895196506551,
+ "grad_norm": 0.02781127765774727,
+ "learning_rate": 0.0006,
+ "loss": 3.676270008087158,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069868995633188,
+ "grad_norm": 0.027363400906324387,
+ "learning_rate": 0.0006,
+ "loss": 3.64404034614563,
+ "step": 1013
+ },
+ {
+ "epoch": 14.083842794759825,
+ "grad_norm": 0.02478782832622528,
+ "learning_rate": 0.0006,
+ "loss": 3.6325106620788574,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097816593886463,
+ "grad_norm": 0.02767058275640011,
+ "learning_rate": 0.0006,
+ "loss": 3.65087890625,
+ "step": 1015
+ },
+ {
+ "epoch": 14.1117903930131,
+ "grad_norm": 0.026782231405377388,
+ "learning_rate": 0.0006,
+ "loss": 3.6227691173553467,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125764192139737,
+ "grad_norm": 0.02921525575220585,
+ "learning_rate": 0.0006,
+ "loss": 3.5829410552978516,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139737991266376,
+ "grad_norm": 0.029077231884002686,
+ "learning_rate": 0.0006,
+ "loss": 3.645134687423706,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153711790393013,
+ "grad_norm": 0.0327303521335125,
+ "learning_rate": 0.0006,
+ "loss": 3.629804849624634,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167685589519651,
+ "grad_norm": 0.035763293504714966,
+ "learning_rate": 0.0006,
+ "loss": 3.6261279582977295,
+ "step": 1020
+ },
+ {
+ "epoch": 14.181659388646288,
+ "grad_norm": 0.03943935036659241,
+ "learning_rate": 0.0006,
+ "loss": 3.6591973304748535,
+ "step": 1021
+ },
+ {
+ "epoch": 14.195633187772925,
+ "grad_norm": 0.03753122314810753,
+ "learning_rate": 0.0006,
+ "loss": 3.6450369358062744,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209606986899564,
+ "grad_norm": 0.04103509336709976,
+ "learning_rate": 0.0006,
+ "loss": 3.6689958572387695,
+ "step": 1023
+ },
+ {
+ "epoch": 14.2235807860262,
+ "grad_norm": 0.04133584722876549,
+ "learning_rate": 0.0006,
+ "loss": 3.6584630012512207,
+ "step": 1024
+ },
+ {
+ "epoch": 14.237554585152838,
+ "grad_norm": 0.04211857542395592,
+ "learning_rate": 0.0006,
+ "loss": 3.6606225967407227,
+ "step": 1025
+ },
+ {
+ "epoch": 14.251528384279476,
+ "grad_norm": 0.038261570036411285,
+ "learning_rate": 0.0006,
+ "loss": 3.667980194091797,
+ "step": 1026
+ },
+ {
+ "epoch": 14.265502183406113,
+ "grad_norm": 0.03518976271152496,
+ "learning_rate": 0.0006,
+ "loss": 3.6699838638305664,
+ "step": 1027
+ },
+ {
+ "epoch": 14.279475982532752,
+ "grad_norm": 0.03253129869699478,
+ "learning_rate": 0.0006,
+ "loss": 3.636895179748535,
+ "step": 1028
+ },
+ {
+ "epoch": 14.293449781659389,
+ "grad_norm": 0.031595997512340546,
+ "learning_rate": 0.0006,
+ "loss": 3.632096290588379,
+ "step": 1029
+ },
+ {
+ "epoch": 14.307423580786025,
+ "grad_norm": 0.03253999352455139,
+ "learning_rate": 0.0006,
+ "loss": 3.6577043533325195,
+ "step": 1030
+ },
+ {
+ "epoch": 14.321397379912664,
+ "grad_norm": 0.034704145044088364,
+ "learning_rate": 0.0006,
+ "loss": 3.703457832336426,
+ "step": 1031
+ },
+ {
+ "epoch": 14.335371179039301,
+ "grad_norm": 0.03362954035401344,
+ "learning_rate": 0.0006,
+ "loss": 3.6303958892822266,
+ "step": 1032
+ },
+ {
+ "epoch": 14.34934497816594,
+ "grad_norm": 0.02985706552863121,
+ "learning_rate": 0.0006,
+ "loss": 3.669577121734619,
+ "step": 1033
+ },
+ {
+ "epoch": 14.363318777292577,
+ "grad_norm": 0.028826212510466576,
+ "learning_rate": 0.0006,
+ "loss": 3.6573240756988525,
+ "step": 1034
+ },
+ {
+ "epoch": 14.377292576419213,
+ "grad_norm": 0.025705639272928238,
+ "learning_rate": 0.0006,
+ "loss": 3.695673942565918,
+ "step": 1035
+ },
+ {
+ "epoch": 14.391266375545852,
+ "grad_norm": 0.02392077073454857,
+ "learning_rate": 0.0006,
+ "loss": 3.699263095855713,
+ "step": 1036
+ },
+ {
+ "epoch": 14.405240174672489,
+ "grad_norm": 0.02234474942088127,
+ "learning_rate": 0.0006,
+ "loss": 3.666858196258545,
+ "step": 1037
+ },
+ {
+ "epoch": 14.419213973799126,
+ "grad_norm": 0.021519573405385017,
+ "learning_rate": 0.0006,
+ "loss": 3.6542158126831055,
+ "step": 1038
+ },
+ {
+ "epoch": 14.433187772925764,
+ "grad_norm": 0.019302112981677055,
+ "learning_rate": 0.0006,
+ "loss": 3.672900676727295,
+ "step": 1039
+ },
+ {
+ "epoch": 14.447161572052401,
+ "grad_norm": 0.01938394270837307,
+ "learning_rate": 0.0006,
+ "loss": 3.6841869354248047,
+ "step": 1040
+ },
+ {
+ "epoch": 14.46113537117904,
+ "grad_norm": 0.01918088085949421,
+ "learning_rate": 0.0006,
+ "loss": 3.6915340423583984,
+ "step": 1041
+ },
+ {
+ "epoch": 14.475109170305677,
+ "grad_norm": 0.019382303580641747,
+ "learning_rate": 0.0006,
+ "loss": 3.696239471435547,
+ "step": 1042
+ },
+ {
+ "epoch": 14.489082969432314,
+ "grad_norm": 0.0190880224108696,
+ "learning_rate": 0.0006,
+ "loss": 3.686777114868164,
+ "step": 1043
+ },
+ {
+ "epoch": 14.503056768558952,
+ "grad_norm": 0.019921699538826942,
+ "learning_rate": 0.0006,
+ "loss": 3.596571207046509,
+ "step": 1044
+ },
+ {
+ "epoch": 14.51703056768559,
+ "grad_norm": 0.019849983975291252,
+ "learning_rate": 0.0006,
+ "loss": 3.6621527671813965,
+ "step": 1045
+ },
+ {
+ "epoch": 14.531004366812226,
+ "grad_norm": 0.01987219788134098,
+ "learning_rate": 0.0006,
+ "loss": 3.6440532207489014,
+ "step": 1046
+ },
+ {
+ "epoch": 14.544978165938865,
+ "grad_norm": 0.019135860726237297,
+ "learning_rate": 0.0006,
+ "loss": 3.663760185241699,
+ "step": 1047
+ },
+ {
+ "epoch": 14.558951965065502,
+ "grad_norm": 0.019754081964492798,
+ "learning_rate": 0.0006,
+ "loss": 3.692115306854248,
+ "step": 1048
+ },
+ {
+ "epoch": 14.57292576419214,
+ "grad_norm": 0.017559237778186798,
+ "learning_rate": 0.0006,
+ "loss": 3.6560468673706055,
+ "step": 1049
+ },
+ {
+ "epoch": 14.586899563318777,
+ "grad_norm": 0.018740499392151833,
+ "learning_rate": 0.0006,
+ "loss": 3.678459405899048,
+ "step": 1050
+ },
+ {
+ "epoch": 14.600873362445414,
+ "grad_norm": 0.020979298278689384,
+ "learning_rate": 0.0006,
+ "loss": 3.6760807037353516,
+ "step": 1051
+ },
+ {
+ "epoch": 14.614847161572053,
+ "grad_norm": 0.024136187508702278,
+ "learning_rate": 0.0006,
+ "loss": 3.6586780548095703,
+ "step": 1052
+ },
+ {
+ "epoch": 14.62882096069869,
+ "grad_norm": 0.022492283955216408,
+ "learning_rate": 0.0006,
+ "loss": 3.6521711349487305,
+ "step": 1053
+ },
+ {
+ "epoch": 14.642794759825328,
+ "grad_norm": 0.022067412734031677,
+ "learning_rate": 0.0006,
+ "loss": 3.6784937381744385,
+ "step": 1054
+ },
+ {
+ "epoch": 14.656768558951965,
+ "grad_norm": 0.019800225272774696,
+ "learning_rate": 0.0006,
+ "loss": 3.6375701427459717,
+ "step": 1055
+ },
+ {
+ "epoch": 14.670742358078602,
+ "grad_norm": 0.018210966140031815,
+ "learning_rate": 0.0006,
+ "loss": 3.6653239727020264,
+ "step": 1056
+ },
+ {
+ "epoch": 14.68471615720524,
+ "grad_norm": 0.018579861149191856,
+ "learning_rate": 0.0006,
+ "loss": 3.718411922454834,
+ "step": 1057
+ },
+ {
+ "epoch": 14.698689956331878,
+ "grad_norm": 0.016911206766963005,
+ "learning_rate": 0.0006,
+ "loss": 3.6463894844055176,
+ "step": 1058
+ },
+ {
+ "epoch": 14.712663755458514,
+ "grad_norm": 0.016846856102347374,
+ "learning_rate": 0.0006,
+ "loss": 3.672767162322998,
+ "step": 1059
+ },
+ {
+ "epoch": 14.726637554585153,
+ "grad_norm": 0.0170889999717474,
+ "learning_rate": 0.0006,
+ "loss": 3.6862080097198486,
+ "step": 1060
+ },
+ {
+ "epoch": 14.74061135371179,
+ "grad_norm": 0.016432611271739006,
+ "learning_rate": 0.0006,
+ "loss": 3.656050682067871,
+ "step": 1061
+ },
+ {
+ "epoch": 14.754585152838429,
+ "grad_norm": 0.016253121197223663,
+ "learning_rate": 0.0006,
+ "loss": 3.6118998527526855,
+ "step": 1062
+ },
+ {
+ "epoch": 14.768558951965066,
+ "grad_norm": 0.016804836690425873,
+ "learning_rate": 0.0006,
+ "loss": 3.6646556854248047,
+ "step": 1063
+ },
+ {
+ "epoch": 14.782532751091702,
+ "grad_norm": 0.016385341063141823,
+ "learning_rate": 0.0006,
+ "loss": 3.6862335205078125,
+ "step": 1064
+ },
+ {
+ "epoch": 14.796506550218341,
+ "grad_norm": 0.016926517710089684,
+ "learning_rate": 0.0006,
+ "loss": 3.675138473510742,
+ "step": 1065
+ },
+ {
+ "epoch": 14.810480349344978,
+ "grad_norm": 0.018508978188037872,
+ "learning_rate": 0.0006,
+ "loss": 3.7009687423706055,
+ "step": 1066
+ },
+ {
+ "epoch": 14.824454148471617,
+ "grad_norm": 0.018666446208953857,
+ "learning_rate": 0.0006,
+ "loss": 3.636359214782715,
+ "step": 1067
+ },
+ {
+ "epoch": 14.838427947598253,
+ "grad_norm": 0.019378433004021645,
+ "learning_rate": 0.0006,
+ "loss": 3.665518283843994,
+ "step": 1068
+ },
+ {
+ "epoch": 14.85240174672489,
+ "grad_norm": 0.02128547430038452,
+ "learning_rate": 0.0006,
+ "loss": 3.7005434036254883,
+ "step": 1069
+ },
+ {
+ "epoch": 14.866375545851529,
+ "grad_norm": 0.02191224694252014,
+ "learning_rate": 0.0006,
+ "loss": 3.6584267616271973,
+ "step": 1070
+ },
+ {
+ "epoch": 14.880349344978166,
+ "grad_norm": 0.019272804260253906,
+ "learning_rate": 0.0006,
+ "loss": 3.673880100250244,
+ "step": 1071
+ },
+ {
+ "epoch": 14.894323144104803,
+ "grad_norm": 0.018591508269309998,
+ "learning_rate": 0.0006,
+ "loss": 3.680145025253296,
+ "step": 1072
+ },
+ {
+ "epoch": 14.908296943231441,
+ "grad_norm": 0.019954141229391098,
+ "learning_rate": 0.0006,
+ "loss": 3.659092903137207,
+ "step": 1073
+ },
+ {
+ "epoch": 14.922270742358078,
+ "grad_norm": 0.019956151023507118,
+ "learning_rate": 0.0006,
+ "loss": 3.680950164794922,
+ "step": 1074
+ },
+ {
+ "epoch": 14.936244541484717,
+ "grad_norm": 0.0198400616645813,
+ "learning_rate": 0.0006,
+ "loss": 3.665740728378296,
+ "step": 1075
+ },
+ {
+ "epoch": 14.950218340611354,
+ "grad_norm": 0.018525801599025726,
+ "learning_rate": 0.0006,
+ "loss": 3.695254325866699,
+ "step": 1076
+ },
+ {
+ "epoch": 14.96419213973799,
+ "grad_norm": 0.019410012289881706,
+ "learning_rate": 0.0006,
+ "loss": 3.637185573577881,
+ "step": 1077
+ },
+ {
+ "epoch": 14.97816593886463,
+ "grad_norm": 0.01842549443244934,
+ "learning_rate": 0.0006,
+ "loss": 3.6925792694091797,
+ "step": 1078
+ },
+ {
+ "epoch": 14.992139737991266,
+ "grad_norm": 0.018512850627303123,
+ "learning_rate": 0.0006,
+ "loss": 3.6421403884887695,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.019783539697527885,
+ "learning_rate": 0.0006,
+ "loss": 3.669989824295044,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 4.0208282470703125,
+ "eval_runtime": 50.0946,
+ "eval_samples_per_second": 48.748,
+ "eval_steps_per_second": 1.537,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013973799126637,
+ "grad_norm": 0.02009645849466324,
+ "learning_rate": 0.0006,
+ "loss": 3.5637366771698,
+ "step": 1081
+ },
+ {
+ "epoch": 15.027947598253276,
+ "grad_norm": 0.02333172969520092,
+ "learning_rate": 0.0006,
+ "loss": 3.5258095264434814,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041921397379912,
+ "grad_norm": 0.027971796691417694,
+ "learning_rate": 0.0006,
+ "loss": 3.552365779876709,
+ "step": 1083
+ },
+ {
+ "epoch": 15.055895196506551,
+ "grad_norm": 0.03144870325922966,
+ "learning_rate": 0.0006,
+ "loss": 3.570685863494873,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069868995633188,
+ "grad_norm": 0.03174359351396561,
+ "learning_rate": 0.0006,
+ "loss": 3.557307720184326,
+ "step": 1085
+ },
+ {
+ "epoch": 15.083842794759825,
+ "grad_norm": 0.0314076766371727,
+ "learning_rate": 0.0006,
+ "loss": 3.5835516452789307,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097816593886463,
+ "grad_norm": 0.02998494543135166,
+ "learning_rate": 0.0006,
+ "loss": 3.564689874649048,
+ "step": 1087
+ },
+ {
+ "epoch": 15.1117903930131,
+ "grad_norm": 0.027682173997163773,
+ "learning_rate": 0.0006,
+ "loss": 3.5372314453125,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125764192139737,
+ "grad_norm": 0.029720479622483253,
+ "learning_rate": 0.0006,
+ "loss": 3.5263895988464355,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139737991266376,
+ "grad_norm": 0.03526446595788002,
+ "learning_rate": 0.0006,
+ "loss": 3.5656511783599854,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153711790393013,
+ "grad_norm": 0.03473281115293503,
+ "learning_rate": 0.0006,
+ "loss": 3.5796432495117188,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167685589519651,
+ "grad_norm": 0.034728601574897766,
+ "learning_rate": 0.0006,
+ "loss": 3.5634264945983887,
+ "step": 1092
+ },
+ {
+ "epoch": 15.181659388646288,
+ "grad_norm": 0.03513004630804062,
+ "learning_rate": 0.0006,
+ "loss": 3.587097644805908,
+ "step": 1093
+ },
+ {
+ "epoch": 15.195633187772925,
+ "grad_norm": 0.03495538607239723,
+ "learning_rate": 0.0006,
+ "loss": 3.588749885559082,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209606986899564,
+ "grad_norm": 0.03559393063187599,
+ "learning_rate": 0.0006,
+ "loss": 3.588261604309082,
+ "step": 1095
+ },
+ {
+ "epoch": 15.2235807860262,
+ "grad_norm": 0.04117827117443085,
+ "learning_rate": 0.0006,
+ "loss": 3.5925493240356445,
+ "step": 1096
+ },
+ {
+ "epoch": 15.237554585152838,
+ "grad_norm": 0.03481105715036392,
+ "learning_rate": 0.0006,
+ "loss": 3.609713077545166,
+ "step": 1097
+ },
+ {
+ "epoch": 15.251528384279476,
+ "grad_norm": 0.03399660810828209,
+ "learning_rate": 0.0006,
+ "loss": 3.6001386642456055,
+ "step": 1098
+ },
+ {
+ "epoch": 15.265502183406113,
+ "grad_norm": 0.037158723920583725,
+ "learning_rate": 0.0006,
+ "loss": 3.5907320976257324,
+ "step": 1099
+ },
+ {
+ "epoch": 15.279475982532752,
+ "grad_norm": 0.03714929521083832,
+ "learning_rate": 0.0006,
+ "loss": 3.620131015777588,
+ "step": 1100
+ },
+ {
+ "epoch": 15.293449781659389,
+ "grad_norm": 0.03506772965192795,
+ "learning_rate": 0.0006,
+ "loss": 3.5833165645599365,
+ "step": 1101
+ },
+ {
+ "epoch": 15.307423580786025,
+ "grad_norm": 0.03335156291723251,
+ "learning_rate": 0.0006,
+ "loss": 3.588583469390869,
+ "step": 1102
+ },
+ {
+ "epoch": 15.321397379912664,
+ "grad_norm": 0.03749598562717438,
+ "learning_rate": 0.0006,
+ "loss": 3.5726234912872314,
+ "step": 1103
+ },
+ {
+ "epoch": 15.335371179039301,
+ "grad_norm": 0.033490296453237534,
+ "learning_rate": 0.0006,
+ "loss": 3.609440326690674,
+ "step": 1104
+ },
+ {
+ "epoch": 15.34934497816594,
+ "grad_norm": 0.02744245156645775,
+ "learning_rate": 0.0006,
+ "loss": 3.5969347953796387,
+ "step": 1105
+ },
+ {
+ "epoch": 15.363318777292577,
+ "grad_norm": 0.025563672184944153,
+ "learning_rate": 0.0006,
+ "loss": 3.6081204414367676,
+ "step": 1106
+ },
+ {
+ "epoch": 15.377292576419213,
+ "grad_norm": 0.02479025535285473,
+ "learning_rate": 0.0006,
+ "loss": 3.569492816925049,
+ "step": 1107
+ },
+ {
+ "epoch": 15.391266375545852,
+ "grad_norm": 0.022969363257288933,
+ "learning_rate": 0.0006,
+ "loss": 3.5940051078796387,
+ "step": 1108
+ },
+ {
+ "epoch": 15.405240174672489,
+ "grad_norm": 0.0211333017796278,
+ "learning_rate": 0.0006,
+ "loss": 3.6032228469848633,
+ "step": 1109
+ },
+ {
+ "epoch": 15.419213973799126,
+ "grad_norm": 0.023232776671648026,
+ "learning_rate": 0.0006,
+ "loss": 3.597538471221924,
+ "step": 1110
+ },
+ {
+ "epoch": 15.433187772925764,
+ "grad_norm": 0.02560894563794136,
+ "learning_rate": 0.0006,
+ "loss": 3.6099822521209717,
+ "step": 1111
+ },
+ {
+ "epoch": 15.447161572052401,
+ "grad_norm": 0.028530243784189224,
+ "learning_rate": 0.0006,
+ "loss": 3.6099116802215576,
+ "step": 1112
+ },
+ {
+ "epoch": 15.46113537117904,
+ "grad_norm": 0.024349553510546684,
+ "learning_rate": 0.0006,
+ "loss": 3.596257448196411,
+ "step": 1113
+ },
+ {
+ "epoch": 15.475109170305677,
+ "grad_norm": 0.025264214724302292,
+ "learning_rate": 0.0006,
+ "loss": 3.58459210395813,
+ "step": 1114
+ },
+ {
+ "epoch": 15.489082969432314,
+ "grad_norm": 0.024628883227705956,
+ "learning_rate": 0.0006,
+ "loss": 3.5940113067626953,
+ "step": 1115
+ },
+ {
+ "epoch": 15.503056768558952,
+ "grad_norm": 0.02550858072936535,
+ "learning_rate": 0.0006,
+ "loss": 3.6039438247680664,
+ "step": 1116
+ },
+ {
+ "epoch": 15.51703056768559,
+ "grad_norm": 0.02455618977546692,
+ "learning_rate": 0.0006,
+ "loss": 3.582425594329834,
+ "step": 1117
+ },
+ {
+ "epoch": 15.531004366812226,
+ "grad_norm": 0.023190757259726524,
+ "learning_rate": 0.0006,
+ "loss": 3.5945615768432617,
+ "step": 1118
+ },
+ {
+ "epoch": 15.544978165938865,
+ "grad_norm": 0.025178825482726097,
+ "learning_rate": 0.0006,
+ "loss": 3.6276583671569824,
+ "step": 1119
+ },
+ {
+ "epoch": 15.558951965065502,
+ "grad_norm": 0.027304047718644142,
+ "learning_rate": 0.0006,
+ "loss": 3.591130018234253,
+ "step": 1120
+ },
+ {
+ "epoch": 15.57292576419214,
+ "grad_norm": 0.02635739929974079,
+ "learning_rate": 0.0006,
+ "loss": 3.626152992248535,
+ "step": 1121
+ },
+ {
+ "epoch": 15.586899563318777,
+ "grad_norm": 0.023574283346533775,
+ "learning_rate": 0.0006,
+ "loss": 3.5790467262268066,
+ "step": 1122
+ },
+ {
+ "epoch": 15.600873362445414,
+ "grad_norm": 0.02167615108191967,
+ "learning_rate": 0.0006,
+ "loss": 3.5816423892974854,
+ "step": 1123
+ },
+ {
+ "epoch": 15.614847161572053,
+ "grad_norm": 0.020352814346551895,
+ "learning_rate": 0.0006,
+ "loss": 3.5963048934936523,
+ "step": 1124
+ },
+ {
+ "epoch": 15.62882096069869,
+ "grad_norm": 0.022047650068998337,
+ "learning_rate": 0.0006,
+ "loss": 3.5933878421783447,
+ "step": 1125
+ },
+ {
+ "epoch": 15.642794759825328,
+ "grad_norm": 0.022744329646229744,
+ "learning_rate": 0.0006,
+ "loss": 3.5755128860473633,
+ "step": 1126
+ },
+ {
+ "epoch": 15.656768558951965,
+ "grad_norm": 0.020325182005763054,
+ "learning_rate": 0.0006,
+ "loss": 3.5617265701293945,
+ "step": 1127
+ },
+ {
+ "epoch": 15.670742358078602,
+ "grad_norm": 0.021056298166513443,
+ "learning_rate": 0.0006,
+ "loss": 3.5767688751220703,
+ "step": 1128
+ },
+ {
+ "epoch": 15.68471615720524,
+ "grad_norm": 0.019120410084724426,
+ "learning_rate": 0.0006,
+ "loss": 3.5909035205841064,
+ "step": 1129
+ },
+ {
+ "epoch": 15.698689956331878,
+ "grad_norm": 0.01864859275519848,
+ "learning_rate": 0.0006,
+ "loss": 3.586052417755127,
+ "step": 1130
+ },
+ {
+ "epoch": 15.712663755458514,
+ "grad_norm": 0.017953047528862953,
+ "learning_rate": 0.0006,
+ "loss": 3.5801734924316406,
+ "step": 1131
+ },
+ {
+ "epoch": 15.726637554585153,
+ "grad_norm": 0.019331611692905426,
+ "learning_rate": 0.0006,
+ "loss": 3.5663723945617676,
+ "step": 1132
+ },
+ {
+ "epoch": 15.74061135371179,
+ "grad_norm": 0.018863828852772713,
+ "learning_rate": 0.0006,
+ "loss": 3.5982472896575928,
+ "step": 1133
+ },
+ {
+ "epoch": 15.754585152838429,
+ "grad_norm": 0.01941121369600296,
+ "learning_rate": 0.0006,
+ "loss": 3.586141586303711,
+ "step": 1134
+ },
+ {
+ "epoch": 15.768558951965066,
+ "grad_norm": 0.0202215276658535,
+ "learning_rate": 0.0006,
+ "loss": 3.603093385696411,
+ "step": 1135
+ },
+ {
+ "epoch": 15.782532751091702,
+ "grad_norm": 0.02065861038863659,
+ "learning_rate": 0.0006,
+ "loss": 3.6258344650268555,
+ "step": 1136
+ },
+ {
+ "epoch": 15.796506550218341,
+ "grad_norm": 0.019885104149580002,
+ "learning_rate": 0.0006,
+ "loss": 3.5961670875549316,
+ "step": 1137
+ },
+ {
+ "epoch": 15.810480349344978,
+ "grad_norm": 0.019395584240555763,
+ "learning_rate": 0.0006,
+ "loss": 3.6085386276245117,
+ "step": 1138
+ },
+ {
+ "epoch": 15.824454148471617,
+ "grad_norm": 0.02079256810247898,
+ "learning_rate": 0.0006,
+ "loss": 3.5907459259033203,
+ "step": 1139
+ },
+ {
+ "epoch": 15.838427947598253,
+ "grad_norm": 0.021177049726247787,
+ "learning_rate": 0.0006,
+ "loss": 3.6031875610351562,
+ "step": 1140
+ },
+ {
+ "epoch": 15.85240174672489,
+ "grad_norm": 0.01875251717865467,
+ "learning_rate": 0.0006,
+ "loss": 3.5799269676208496,
+ "step": 1141
+ },
+ {
+ "epoch": 15.866375545851529,
+ "grad_norm": 0.018393032252788544,
+ "learning_rate": 0.0006,
+ "loss": 3.589036464691162,
+ "step": 1142
+ },
+ {
+ "epoch": 15.880349344978166,
+ "grad_norm": 0.017482910305261612,
+ "learning_rate": 0.0006,
+ "loss": 3.57010555267334,
+ "step": 1143
+ },
+ {
+ "epoch": 15.894323144104803,
+ "grad_norm": 0.017565404996275902,
+ "learning_rate": 0.0006,
+ "loss": 3.586590051651001,
+ "step": 1144
+ },
+ {
+ "epoch": 15.908296943231441,
+ "grad_norm": 0.018097810447216034,
+ "learning_rate": 0.0006,
+ "loss": 3.60231876373291,
+ "step": 1145
+ },
+ {
+ "epoch": 15.922270742358078,
+ "grad_norm": 0.01748323254287243,
+ "learning_rate": 0.0006,
+ "loss": 3.605266571044922,
+ "step": 1146
+ },
+ {
+ "epoch": 15.936244541484717,
+ "grad_norm": 0.017633914947509766,
+ "learning_rate": 0.0006,
+ "loss": 3.57650089263916,
+ "step": 1147
+ },
+ {
+ "epoch": 15.950218340611354,
+ "grad_norm": 0.017630109563469887,
+ "learning_rate": 0.0006,
+ "loss": 3.599179744720459,
+ "step": 1148
+ },
+ {
+ "epoch": 15.96419213973799,
+ "grad_norm": 0.017756082117557526,
+ "learning_rate": 0.0006,
+ "loss": 3.610539436340332,
+ "step": 1149
+ },
+ {
+ "epoch": 15.97816593886463,
+ "grad_norm": 0.017975619062781334,
+ "learning_rate": 0.0006,
+ "loss": 3.5654094219207764,
+ "step": 1150
+ },
+ {
+ "epoch": 15.992139737991266,
+ "grad_norm": 0.01672595739364624,
+ "learning_rate": 0.0006,
+ "loss": 3.5157313346862793,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.018963614478707314,
+ "learning_rate": 0.0006,
+ "loss": 3.5679218769073486,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 4.002192497253418,
+ "eval_runtime": 54.7074,
+ "eval_samples_per_second": 44.638,
+ "eval_steps_per_second": 1.407,
+ "step": 1152
+ },
+ {
+ "epoch": 16.01397379912664,
+ "grad_norm": 0.019997047260403633,
+ "learning_rate": 0.0006,
+ "loss": 3.4640445709228516,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027947598253274,
+ "grad_norm": 0.02668819949030876,
+ "learning_rate": 0.0006,
+ "loss": 3.4792230129241943,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041921397379912,
+ "grad_norm": 0.03133378177881241,
+ "learning_rate": 0.0006,
+ "loss": 3.445514678955078,
+ "step": 1155
+ },
+ {
+ "epoch": 16.05589519650655,
+ "grad_norm": 0.0333341620862484,
+ "learning_rate": 0.0006,
+ "loss": 3.4823379516601562,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069868995633186,
+ "grad_norm": 0.033309273421764374,
+ "learning_rate": 0.0006,
+ "loss": 3.5140066146850586,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083842794759825,
+ "grad_norm": 0.03211270272731781,
+ "learning_rate": 0.0006,
+ "loss": 3.4474544525146484,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097816593886463,
+ "grad_norm": 0.030286215245723724,
+ "learning_rate": 0.0006,
+ "loss": 3.4566705226898193,
+ "step": 1159
+ },
+ {
+ "epoch": 16.111790393013102,
+ "grad_norm": 0.034668438136577606,
+ "learning_rate": 0.0006,
+ "loss": 3.464046001434326,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125764192139737,
+ "grad_norm": 0.03580283746123314,
+ "learning_rate": 0.0006,
+ "loss": 3.483121871948242,
+ "step": 1161
+ },
+ {
+ "epoch": 16.139737991266376,
+ "grad_norm": 0.03359296917915344,
+ "learning_rate": 0.0006,
+ "loss": 3.477879524230957,
+ "step": 1162
+ },
+ {
+ "epoch": 16.153711790393015,
+ "grad_norm": 0.03444180637598038,
+ "learning_rate": 0.0006,
+ "loss": 3.513066053390503,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16768558951965,
+ "grad_norm": 0.034195005893707275,
+ "learning_rate": 0.0006,
+ "loss": 3.4954705238342285,
+ "step": 1164
+ },
+ {
+ "epoch": 16.18165938864629,
+ "grad_norm": 0.03186183422803879,
+ "learning_rate": 0.0006,
+ "loss": 3.5126149654388428,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195633187772927,
+ "grad_norm": 0.03474068269133568,
+ "learning_rate": 0.0006,
+ "loss": 3.4613423347473145,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209606986899562,
+ "grad_norm": 0.03117581456899643,
+ "learning_rate": 0.0006,
+ "loss": 3.5202698707580566,
+ "step": 1167
+ },
+ {
+ "epoch": 16.2235807860262,
+ "grad_norm": 0.030044663697481155,
+ "learning_rate": 0.0006,
+ "loss": 3.4795448780059814,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23755458515284,
+ "grad_norm": 0.03448783978819847,
+ "learning_rate": 0.0006,
+ "loss": 3.4979453086853027,
+ "step": 1169
+ },
+ {
+ "epoch": 16.251528384279474,
+ "grad_norm": 0.040600501000881195,
+ "learning_rate": 0.0006,
+ "loss": 3.5161967277526855,
+ "step": 1170
+ },
+ {
+ "epoch": 16.265502183406113,
+ "grad_norm": 0.041196491569280624,
+ "learning_rate": 0.0006,
+ "loss": 3.5099880695343018,
+ "step": 1171
+ },
+ {
+ "epoch": 16.27947598253275,
+ "grad_norm": 0.0403696708381176,
+ "learning_rate": 0.0006,
+ "loss": 3.515664577484131,
+ "step": 1172
+ },
+ {
+ "epoch": 16.29344978165939,
+ "grad_norm": 0.0369957759976387,
+ "learning_rate": 0.0006,
+ "loss": 3.568899631500244,
+ "step": 1173
+ },
+ {
+ "epoch": 16.307423580786025,
+ "grad_norm": 0.034086693078279495,
+ "learning_rate": 0.0006,
+ "loss": 3.5406198501586914,
+ "step": 1174
+ },
+ {
+ "epoch": 16.321397379912664,
+ "grad_norm": 0.03118005394935608,
+ "learning_rate": 0.0006,
+ "loss": 3.4970381259918213,
+ "step": 1175
+ },
+ {
+ "epoch": 16.335371179039303,
+ "grad_norm": 0.030468063428997993,
+ "learning_rate": 0.0006,
+ "loss": 3.5451807975769043,
+ "step": 1176
+ },
+ {
+ "epoch": 16.349344978165938,
+ "grad_norm": 0.0309329554438591,
+ "learning_rate": 0.0006,
+ "loss": 3.53481388092041,
+ "step": 1177
+ },
+ {
+ "epoch": 16.363318777292577,
+ "grad_norm": 0.030906643718481064,
+ "learning_rate": 0.0006,
+ "loss": 3.5201809406280518,
+ "step": 1178
+ },
+ {
+ "epoch": 16.377292576419215,
+ "grad_norm": 0.029425526037812233,
+ "learning_rate": 0.0006,
+ "loss": 3.5083932876586914,
+ "step": 1179
+ },
+ {
+ "epoch": 16.39126637554585,
+ "grad_norm": 0.03284955024719238,
+ "learning_rate": 0.0006,
+ "loss": 3.5315258502960205,
+ "step": 1180
+ },
+ {
+ "epoch": 16.40524017467249,
+ "grad_norm": 0.03235018253326416,
+ "learning_rate": 0.0006,
+ "loss": 3.5033299922943115,
+ "step": 1181
+ },
+ {
+ "epoch": 16.419213973799128,
+ "grad_norm": 0.029569406062364578,
+ "learning_rate": 0.0006,
+ "loss": 3.52433180809021,
+ "step": 1182
+ },
+ {
+ "epoch": 16.433187772925763,
+ "grad_norm": 0.028649726882576942,
+ "learning_rate": 0.0006,
+ "loss": 3.486379623413086,
+ "step": 1183
+ },
+ {
+ "epoch": 16.4471615720524,
+ "grad_norm": 0.027956973761320114,
+ "learning_rate": 0.0006,
+ "loss": 3.5237250328063965,
+ "step": 1184
+ },
+ {
+ "epoch": 16.46113537117904,
+ "grad_norm": 0.0276664849370718,
+ "learning_rate": 0.0006,
+ "loss": 3.512511730194092,
+ "step": 1185
+ },
+ {
+ "epoch": 16.475109170305675,
+ "grad_norm": 0.027819795534014702,
+ "learning_rate": 0.0006,
+ "loss": 3.5440287590026855,
+ "step": 1186
+ },
+ {
+ "epoch": 16.489082969432314,
+ "grad_norm": 0.028435861691832542,
+ "learning_rate": 0.0006,
+ "loss": 3.560199737548828,
+ "step": 1187
+ },
+ {
+ "epoch": 16.503056768558952,
+ "grad_norm": 0.02672969177365303,
+ "learning_rate": 0.0006,
+ "loss": 3.5323410034179688,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51703056768559,
+ "grad_norm": 0.024931233376264572,
+ "learning_rate": 0.0006,
+ "loss": 3.5182852745056152,
+ "step": 1189
+ },
+ {
+ "epoch": 16.531004366812226,
+ "grad_norm": 0.02562815696001053,
+ "learning_rate": 0.0006,
+ "loss": 3.525887966156006,
+ "step": 1190
+ },
+ {
+ "epoch": 16.544978165938865,
+ "grad_norm": 0.022041132673621178,
+ "learning_rate": 0.0006,
+ "loss": 3.5331735610961914,
+ "step": 1191
+ },
+ {
+ "epoch": 16.558951965065503,
+ "grad_norm": 0.02091669663786888,
+ "learning_rate": 0.0006,
+ "loss": 3.5219545364379883,
+ "step": 1192
+ },
+ {
+ "epoch": 16.57292576419214,
+ "grad_norm": 0.0208087507635355,
+ "learning_rate": 0.0006,
+ "loss": 3.5721282958984375,
+ "step": 1193
+ },
+ {
+ "epoch": 16.586899563318777,
+ "grad_norm": 0.019807223230600357,
+ "learning_rate": 0.0006,
+ "loss": 3.493896484375,
+ "step": 1194
+ },
+ {
+ "epoch": 16.600873362445416,
+ "grad_norm": 0.019274886697530746,
+ "learning_rate": 0.0006,
+ "loss": 3.5042009353637695,
+ "step": 1195
+ },
+ {
+ "epoch": 16.61484716157205,
+ "grad_norm": 0.01950680837035179,
+ "learning_rate": 0.0006,
+ "loss": 3.5548095703125,
+ "step": 1196
+ },
+ {
+ "epoch": 16.62882096069869,
+ "grad_norm": 0.02027183771133423,
+ "learning_rate": 0.0006,
+ "loss": 3.495508909225464,
+ "step": 1197
+ },
+ {
+ "epoch": 16.64279475982533,
+ "grad_norm": 0.021261053159832954,
+ "learning_rate": 0.0006,
+ "loss": 3.531256675720215,
+ "step": 1198
+ },
+ {
+ "epoch": 16.656768558951963,
+ "grad_norm": 0.02054775319993496,
+ "learning_rate": 0.0006,
+ "loss": 3.499379873275757,
+ "step": 1199
+ },
+ {
+ "epoch": 16.670742358078602,
+ "grad_norm": 0.01810075156390667,
+ "learning_rate": 0.0006,
+ "loss": 3.561351776123047,
+ "step": 1200
+ },
+ {
+ "epoch": 16.68471615720524,
+ "grad_norm": 0.017886348068714142,
+ "learning_rate": 0.0006,
+ "loss": 3.551504373550415,
+ "step": 1201
+ },
+ {
+ "epoch": 16.69868995633188,
+ "grad_norm": 0.01893145777285099,
+ "learning_rate": 0.0006,
+ "loss": 3.4890754222869873,
+ "step": 1202
+ },
+ {
+ "epoch": 16.712663755458514,
+ "grad_norm": 0.018899526447057724,
+ "learning_rate": 0.0006,
+ "loss": 3.545161724090576,
+ "step": 1203
+ },
+ {
+ "epoch": 16.726637554585153,
+ "grad_norm": 0.018913133069872856,
+ "learning_rate": 0.0006,
+ "loss": 3.502636194229126,
+ "step": 1204
+ },
+ {
+ "epoch": 16.74061135371179,
+ "grad_norm": 0.019347554072737694,
+ "learning_rate": 0.0006,
+ "loss": 3.521177291870117,
+ "step": 1205
+ },
+ {
+ "epoch": 16.754585152838427,
+ "grad_norm": 0.02018282189965248,
+ "learning_rate": 0.0006,
+ "loss": 3.5440759658813477,
+ "step": 1206
+ },
+ {
+ "epoch": 16.768558951965066,
+ "grad_norm": 0.018046081066131592,
+ "learning_rate": 0.0006,
+ "loss": 3.5429065227508545,
+ "step": 1207
+ },
+ {
+ "epoch": 16.782532751091704,
+ "grad_norm": 0.01814688742160797,
+ "learning_rate": 0.0006,
+ "loss": 3.524298667907715,
+ "step": 1208
+ },
+ {
+ "epoch": 16.79650655021834,
+ "grad_norm": 0.017817430198192596,
+ "learning_rate": 0.0006,
+ "loss": 3.5429811477661133,
+ "step": 1209
+ },
+ {
+ "epoch": 16.810480349344978,
+ "grad_norm": 0.01804095320403576,
+ "learning_rate": 0.0006,
+ "loss": 3.5601816177368164,
+ "step": 1210
+ },
+ {
+ "epoch": 16.824454148471617,
+ "grad_norm": 0.01939644105732441,
+ "learning_rate": 0.0006,
+ "loss": 3.5711722373962402,
+ "step": 1211
+ },
+ {
+ "epoch": 16.83842794759825,
+ "grad_norm": 0.019648978486657143,
+ "learning_rate": 0.0006,
+ "loss": 3.5105032920837402,
+ "step": 1212
+ },
+ {
+ "epoch": 16.85240174672489,
+ "grad_norm": 0.01914234645664692,
+ "learning_rate": 0.0006,
+ "loss": 3.5199899673461914,
+ "step": 1213
+ },
+ {
+ "epoch": 16.86637554585153,
+ "grad_norm": 0.019934657961130142,
+ "learning_rate": 0.0006,
+ "loss": 3.531907320022583,
+ "step": 1214
+ },
+ {
+ "epoch": 16.880349344978168,
+ "grad_norm": 0.019740048795938492,
+ "learning_rate": 0.0006,
+ "loss": 3.4846372604370117,
+ "step": 1215
+ },
+ {
+ "epoch": 16.894323144104803,
+ "grad_norm": 0.020136266946792603,
+ "learning_rate": 0.0006,
+ "loss": 3.5342910289764404,
+ "step": 1216
+ },
+ {
+ "epoch": 16.90829694323144,
+ "grad_norm": 0.021572282537817955,
+ "learning_rate": 0.0006,
+ "loss": 3.5846221446990967,
+ "step": 1217
+ },
+ {
+ "epoch": 16.92227074235808,
+ "grad_norm": 0.01965942606329918,
+ "learning_rate": 0.0006,
+ "loss": 3.489861011505127,
+ "step": 1218
+ },
+ {
+ "epoch": 16.936244541484715,
+ "grad_norm": 0.018763914704322815,
+ "learning_rate": 0.0006,
+ "loss": 3.5294601917266846,
+ "step": 1219
+ },
+ {
+ "epoch": 16.950218340611354,
+ "grad_norm": 0.017964672297239304,
+ "learning_rate": 0.0006,
+ "loss": 3.5389389991760254,
+ "step": 1220
+ },
+ {
+ "epoch": 16.964192139737992,
+ "grad_norm": 0.018288105726242065,
+ "learning_rate": 0.0006,
+ "loss": 3.531959056854248,
+ "step": 1221
+ },
+ {
+ "epoch": 16.978165938864628,
+ "grad_norm": 0.019321706146001816,
+ "learning_rate": 0.0006,
+ "loss": 3.533597469329834,
+ "step": 1222
+ },
+ {
+ "epoch": 16.992139737991266,
+ "grad_norm": 0.019614171236753464,
+ "learning_rate": 0.0006,
+ "loss": 3.5083813667297363,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.020609203726053238,
+ "learning_rate": 0.0006,
+ "loss": 3.580991268157959,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 3.992704153060913,
+ "eval_runtime": 50.2038,
+ "eval_samples_per_second": 48.642,
+ "eval_steps_per_second": 1.534,
+ "step": 1224
+ },
+ {
+ "epoch": 17.01397379912664,
+ "grad_norm": 0.023699766024947166,
+ "learning_rate": 0.0006,
+ "loss": 3.4216837882995605,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027947598253274,
+ "grad_norm": 0.03299031779170036,
+ "learning_rate": 0.0006,
+ "loss": 3.3943543434143066,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041921397379912,
+ "grad_norm": 0.0365300215780735,
+ "learning_rate": 0.0006,
+ "loss": 3.419881820678711,
+ "step": 1227
+ },
+ {
+ "epoch": 17.05589519650655,
+ "grad_norm": 0.037790149450302124,
+ "learning_rate": 0.0006,
+ "loss": 3.397857666015625,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069868995633186,
+ "grad_norm": 0.03478766605257988,
+ "learning_rate": 0.0006,
+ "loss": 3.4057488441467285,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083842794759825,
+ "grad_norm": 0.03660628944635391,
+ "learning_rate": 0.0006,
+ "loss": 3.449805498123169,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097816593886463,
+ "grad_norm": 0.03783934935927391,
+ "learning_rate": 0.0006,
+ "loss": 3.391709804534912,
+ "step": 1231
+ },
+ {
+ "epoch": 17.111790393013102,
+ "grad_norm": 0.03578848019242287,
+ "learning_rate": 0.0006,
+ "loss": 3.3921704292297363,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125764192139737,
+ "grad_norm": 0.04182235524058342,
+ "learning_rate": 0.0006,
+ "loss": 3.406362295150757,
+ "step": 1233
+ },
+ {
+ "epoch": 17.139737991266376,
+ "grad_norm": 0.04345374181866646,
+ "learning_rate": 0.0006,
+ "loss": 3.39174222946167,
+ "step": 1234
+ },
+ {
+ "epoch": 17.153711790393015,
+ "grad_norm": 0.0420818068087101,
+ "learning_rate": 0.0006,
+ "loss": 3.431614398956299,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16768558951965,
+ "grad_norm": 0.045535873621702194,
+ "learning_rate": 0.0006,
+ "loss": 3.4326839447021484,
+ "step": 1236
+ },
+ {
+ "epoch": 17.18165938864629,
+ "grad_norm": 0.05574474856257439,
+ "learning_rate": 0.0006,
+ "loss": 3.4711036682128906,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195633187772927,
+ "grad_norm": 0.057157132774591446,
+ "learning_rate": 0.0006,
+ "loss": 3.4650626182556152,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209606986899562,
+ "grad_norm": 0.053199656307697296,
+ "learning_rate": 0.0006,
+ "loss": 3.4461426734924316,
+ "step": 1239
+ },
+ {
+ "epoch": 17.2235807860262,
+ "grad_norm": 0.054264020174741745,
+ "learning_rate": 0.0006,
+ "loss": 3.4681930541992188,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23755458515284,
+ "grad_norm": 0.05625223368406296,
+ "learning_rate": 0.0006,
+ "loss": 3.4914324283599854,
+ "step": 1241
+ },
+ {
+ "epoch": 17.251528384279474,
+ "grad_norm": 0.061760347336530685,
+ "learning_rate": 0.0006,
+ "loss": 3.525092840194702,
+ "step": 1242
+ },
+ {
+ "epoch": 17.265502183406113,
+ "grad_norm": 0.0628439411520958,
+ "learning_rate": 0.0006,
+ "loss": 3.5061843395233154,
+ "step": 1243
+ },
+ {
+ "epoch": 17.27947598253275,
+ "grad_norm": 0.0659259706735611,
+ "learning_rate": 0.0006,
+ "loss": 3.53128719329834,
+ "step": 1244
+ },
+ {
+ "epoch": 17.29344978165939,
+ "grad_norm": 0.05818862468004227,
+ "learning_rate": 0.0006,
+ "loss": 3.5536415576934814,
+ "step": 1245
+ },
+ {
+ "epoch": 17.307423580786025,
+ "grad_norm": 0.05471836030483246,
+ "learning_rate": 0.0006,
+ "loss": 3.5337672233581543,
+ "step": 1246
+ },
+ {
+ "epoch": 17.321397379912664,
+ "grad_norm": 0.0487399697303772,
+ "learning_rate": 0.0006,
+ "loss": 3.522909641265869,
+ "step": 1247
+ },
+ {
+ "epoch": 17.335371179039303,
+ "grad_norm": 0.05006934702396393,
+ "learning_rate": 0.0006,
+ "loss": 3.5228986740112305,
+ "step": 1248
+ },
+ {
+ "epoch": 17.349344978165938,
+ "grad_norm": 0.047036584466695786,
+ "learning_rate": 0.0006,
+ "loss": 3.582343578338623,
+ "step": 1249
+ },
+ {
+ "epoch": 17.363318777292577,
+ "grad_norm": 0.045836590230464935,
+ "learning_rate": 0.0006,
+ "loss": 3.5376439094543457,
+ "step": 1250
+ },
+ {
+ "epoch": 17.377292576419215,
+ "grad_norm": 0.044237297028303146,
+ "learning_rate": 0.0006,
+ "loss": 3.5435123443603516,
+ "step": 1251
+ },
+ {
+ "epoch": 17.39126637554585,
+ "grad_norm": 0.04441322013735771,
+ "learning_rate": 0.0006,
+ "loss": 3.5400638580322266,
+ "step": 1252
+ },
+ {
+ "epoch": 17.40524017467249,
+ "grad_norm": 0.04533323645591736,
+ "learning_rate": 0.0006,
+ "loss": 3.5287728309631348,
+ "step": 1253
+ },
+ {
+ "epoch": 17.419213973799128,
+ "grad_norm": 0.03689985349774361,
+ "learning_rate": 0.0006,
+ "loss": 3.5161759853363037,
+ "step": 1254
+ },
+ {
+ "epoch": 17.433187772925763,
+ "grad_norm": 0.03836561366915703,
+ "learning_rate": 0.0006,
+ "loss": 3.4899721145629883,
+ "step": 1255
+ },
+ {
+ "epoch": 17.4471615720524,
+ "grad_norm": 0.03594471141695976,
+ "learning_rate": 0.0006,
+ "loss": 3.534101963043213,
+ "step": 1256
+ },
+ {
+ "epoch": 17.46113537117904,
+ "grad_norm": 0.03834489732980728,
+ "learning_rate": 0.0006,
+ "loss": 3.4943580627441406,
+ "step": 1257
+ },
+ {
+ "epoch": 17.475109170305675,
+ "grad_norm": 0.04318688064813614,
+ "learning_rate": 0.0006,
+ "loss": 3.5304384231567383,
+ "step": 1258
+ },
+ {
+ "epoch": 17.489082969432314,
+ "grad_norm": 0.04468952864408493,
+ "learning_rate": 0.0006,
+ "loss": 3.5435900688171387,
+ "step": 1259
+ },
+ {
+ "epoch": 17.503056768558952,
+ "grad_norm": 0.041371092200279236,
+ "learning_rate": 0.0006,
+ "loss": 3.529571056365967,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51703056768559,
+ "grad_norm": 0.03826779127120972,
+ "learning_rate": 0.0006,
+ "loss": 3.5024611949920654,
+ "step": 1261
+ },
+ {
+ "epoch": 17.531004366812226,
+ "grad_norm": 0.030302148312330246,
+ "learning_rate": 0.0006,
+ "loss": 3.5491857528686523,
+ "step": 1262
+ },
+ {
+ "epoch": 17.544978165938865,
+ "grad_norm": 0.02673652581870556,
+ "learning_rate": 0.0006,
+ "loss": 3.498325824737549,
+ "step": 1263
+ },
+ {
+ "epoch": 17.558951965065503,
+ "grad_norm": 0.026035286486148834,
+ "learning_rate": 0.0006,
+ "loss": 3.524242639541626,
+ "step": 1264
+ },
+ {
+ "epoch": 17.57292576419214,
+ "grad_norm": 0.02433512918651104,
+ "learning_rate": 0.0006,
+ "loss": 3.496821880340576,
+ "step": 1265
+ },
+ {
+ "epoch": 17.586899563318777,
+ "grad_norm": 0.023563958704471588,
+ "learning_rate": 0.0006,
+ "loss": 3.4883062839508057,
+ "step": 1266
+ },
+ {
+ "epoch": 17.600873362445416,
+ "grad_norm": 0.0206421110779047,
+ "learning_rate": 0.0006,
+ "loss": 3.519468069076538,
+ "step": 1267
+ },
+ {
+ "epoch": 17.61484716157205,
+ "grad_norm": 0.020854417234659195,
+ "learning_rate": 0.0006,
+ "loss": 3.5546176433563232,
+ "step": 1268
+ },
+ {
+ "epoch": 17.62882096069869,
+ "grad_norm": 0.01948000118136406,
+ "learning_rate": 0.0006,
+ "loss": 3.4945712089538574,
+ "step": 1269
+ },
+ {
+ "epoch": 17.64279475982533,
+ "grad_norm": 0.018670955672860146,
+ "learning_rate": 0.0006,
+ "loss": 3.4944663047790527,
+ "step": 1270
+ },
+ {
+ "epoch": 17.656768558951963,
+ "grad_norm": 0.018675116822123528,
+ "learning_rate": 0.0006,
+ "loss": 3.4906811714172363,
+ "step": 1271
+ },
+ {
+ "epoch": 17.670742358078602,
+ "grad_norm": 0.018198898062109947,
+ "learning_rate": 0.0006,
+ "loss": 3.4814324378967285,
+ "step": 1272
+ },
+ {
+ "epoch": 17.68471615720524,
+ "grad_norm": 0.017625771462917328,
+ "learning_rate": 0.0006,
+ "loss": 3.481903553009033,
+ "step": 1273
+ },
+ {
+ "epoch": 17.69868995633188,
+ "grad_norm": 0.017468655481934547,
+ "learning_rate": 0.0006,
+ "loss": 3.504253625869751,
+ "step": 1274
+ },
+ {
+ "epoch": 17.712663755458514,
+ "grad_norm": 0.017738448455929756,
+ "learning_rate": 0.0006,
+ "loss": 3.4731998443603516,
+ "step": 1275
+ },
+ {
+ "epoch": 17.726637554585153,
+ "grad_norm": 0.01674838177859783,
+ "learning_rate": 0.0006,
+ "loss": 3.501451253890991,
+ "step": 1276
+ },
+ {
+ "epoch": 17.74061135371179,
+ "grad_norm": 0.016940834000706673,
+ "learning_rate": 0.0006,
+ "loss": 3.5022473335266113,
+ "step": 1277
+ },
+ {
+ "epoch": 17.754585152838427,
+ "grad_norm": 0.016655702143907547,
+ "learning_rate": 0.0006,
+ "loss": 3.489267349243164,
+ "step": 1278
+ },
+ {
+ "epoch": 17.768558951965066,
+ "grad_norm": 0.016576141119003296,
+ "learning_rate": 0.0006,
+ "loss": 3.489868402481079,
+ "step": 1279
+ },
+ {
+ "epoch": 17.782532751091704,
+ "grad_norm": 0.015516328625380993,
+ "learning_rate": 0.0006,
+ "loss": 3.4777278900146484,
+ "step": 1280
+ },
+ {
+ "epoch": 17.79650655021834,
+ "grad_norm": 0.01572612300515175,
+ "learning_rate": 0.0006,
+ "loss": 3.4924020767211914,
+ "step": 1281
+ },
+ {
+ "epoch": 17.810480349344978,
+ "grad_norm": 0.01619344763457775,
+ "learning_rate": 0.0006,
+ "loss": 3.4541757106781006,
+ "step": 1282
+ },
+ {
+ "epoch": 17.824454148471617,
+ "grad_norm": 0.016174443066120148,
+ "learning_rate": 0.0006,
+ "loss": 3.496953010559082,
+ "step": 1283
+ },
+ {
+ "epoch": 17.83842794759825,
+ "grad_norm": 0.015538575127720833,
+ "learning_rate": 0.0006,
+ "loss": 3.501938819885254,
+ "step": 1284
+ },
+ {
+ "epoch": 17.85240174672489,
+ "grad_norm": 0.015476577915251255,
+ "learning_rate": 0.0006,
+ "loss": 3.4954936504364014,
+ "step": 1285
+ },
+ {
+ "epoch": 17.86637554585153,
+ "grad_norm": 0.01563846506178379,
+ "learning_rate": 0.0006,
+ "loss": 3.4736757278442383,
+ "step": 1286
+ },
+ {
+ "epoch": 17.880349344978168,
+ "grad_norm": 0.016416197642683983,
+ "learning_rate": 0.0006,
+ "loss": 3.4564414024353027,
+ "step": 1287
+ },
+ {
+ "epoch": 17.894323144104803,
+ "grad_norm": 0.016533056274056435,
+ "learning_rate": 0.0006,
+ "loss": 3.4835453033447266,
+ "step": 1288
+ },
+ {
+ "epoch": 17.90829694323144,
+ "grad_norm": 0.01587281934916973,
+ "learning_rate": 0.0006,
+ "loss": 3.460432529449463,
+ "step": 1289
+ },
+ {
+ "epoch": 17.92227074235808,
+ "grad_norm": 0.01610104739665985,
+ "learning_rate": 0.0006,
+ "loss": 3.4919300079345703,
+ "step": 1290
+ },
+ {
+ "epoch": 17.936244541484715,
+ "grad_norm": 0.01581653021275997,
+ "learning_rate": 0.0006,
+ "loss": 3.4631175994873047,
+ "step": 1291
+ },
+ {
+ "epoch": 17.950218340611354,
+ "grad_norm": 0.015979735180735588,
+ "learning_rate": 0.0006,
+ "loss": 3.4901933670043945,
+ "step": 1292
+ },
+ {
+ "epoch": 17.964192139737992,
+ "grad_norm": 0.01630399376153946,
+ "learning_rate": 0.0006,
+ "loss": 3.4629836082458496,
+ "step": 1293
+ },
+ {
+ "epoch": 17.978165938864628,
+ "grad_norm": 0.017480242997407913,
+ "learning_rate": 0.0006,
+ "loss": 3.4913692474365234,
+ "step": 1294
+ },
+ {
+ "epoch": 17.992139737991266,
+ "grad_norm": 0.016874775290489197,
+ "learning_rate": 0.0006,
+ "loss": 3.4790616035461426,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.01860641874372959,
+ "learning_rate": 0.0006,
+ "loss": 3.451586961746216,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 3.9891297817230225,
+ "eval_runtime": 50.1961,
+ "eval_samples_per_second": 48.649,
+ "eval_steps_per_second": 1.534,
+ "step": 1296
+ },
+ {
+ "epoch": 18.01397379912664,
+ "grad_norm": 0.020353643223643303,
+ "learning_rate": 0.0006,
+ "loss": 3.3365015983581543,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027947598253274,
+ "grad_norm": 0.025348901748657227,
+ "learning_rate": 0.0006,
+ "loss": 3.362994909286499,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041921397379912,
+ "grad_norm": 0.025188535451889038,
+ "learning_rate": 0.0006,
+ "loss": 3.363680362701416,
+ "step": 1299
+ },
+ {
+ "epoch": 18.05589519650655,
+ "grad_norm": 0.022153817117214203,
+ "learning_rate": 0.0006,
+ "loss": 3.3311727046966553,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069868995633186,
+ "grad_norm": 0.023192603141069412,
+ "learning_rate": 0.0006,
+ "loss": 3.313582420349121,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083842794759825,
+ "grad_norm": 0.023841004818677902,
+ "learning_rate": 0.0006,
+ "loss": 3.3787522315979004,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097816593886463,
+ "grad_norm": 0.024539794772863388,
+ "learning_rate": 0.0006,
+ "loss": 3.382267475128174,
+ "step": 1303
+ },
+ {
+ "epoch": 18.111790393013102,
+ "grad_norm": 0.026391029357910156,
+ "learning_rate": 0.0006,
+ "loss": 3.3674709796905518,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125764192139737,
+ "grad_norm": 0.027859404683113098,
+ "learning_rate": 0.0006,
+ "loss": 3.3584036827087402,
+ "step": 1305
+ },
+ {
+ "epoch": 18.139737991266376,
+ "grad_norm": 0.027688005939126015,
+ "learning_rate": 0.0006,
+ "loss": 3.314915657043457,
+ "step": 1306
+ },
+ {
+ "epoch": 18.153711790393015,
+ "grad_norm": 0.026942238211631775,
+ "learning_rate": 0.0006,
+ "loss": 3.387618064880371,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16768558951965,
+ "grad_norm": 0.02890498749911785,
+ "learning_rate": 0.0006,
+ "loss": 3.35286021232605,
+ "step": 1308
+ },
+ {
+ "epoch": 18.18165938864629,
+ "grad_norm": 0.028318168595433235,
+ "learning_rate": 0.0006,
+ "loss": 3.347115993499756,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195633187772927,
+ "grad_norm": 0.02423982135951519,
+ "learning_rate": 0.0006,
+ "loss": 3.365628242492676,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209606986899562,
+ "grad_norm": 0.025620151311159134,
+ "learning_rate": 0.0006,
+ "loss": 3.3887939453125,
+ "step": 1311
+ },
+ {
+ "epoch": 18.2235807860262,
+ "grad_norm": 0.02538205496966839,
+ "learning_rate": 0.0006,
+ "loss": 3.3417105674743652,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23755458515284,
+ "grad_norm": 0.024902652949094772,
+ "learning_rate": 0.0006,
+ "loss": 3.348081111907959,
+ "step": 1313
+ },
+ {
+ "epoch": 18.251528384279474,
+ "grad_norm": 0.024858251214027405,
+ "learning_rate": 0.0006,
+ "loss": 3.3346352577209473,
+ "step": 1314
+ },
+ {
+ "epoch": 18.265502183406113,
+ "grad_norm": 0.02413691021502018,
+ "learning_rate": 0.0006,
+ "loss": 3.373331069946289,
+ "step": 1315
+ },
+ {
+ "epoch": 18.27947598253275,
+ "grad_norm": 0.024673711508512497,
+ "learning_rate": 0.0006,
+ "loss": 3.3532657623291016,
+ "step": 1316
+ },
+ {
+ "epoch": 18.29344978165939,
+ "grad_norm": 0.02378152869641781,
+ "learning_rate": 0.0006,
+ "loss": 3.380765438079834,
+ "step": 1317
+ },
+ {
+ "epoch": 18.307423580786025,
+ "grad_norm": 0.025095898658037186,
+ "learning_rate": 0.0006,
+ "loss": 3.3837740421295166,
+ "step": 1318
+ },
+ {
+ "epoch": 18.321397379912664,
+ "grad_norm": 0.028187017887830734,
+ "learning_rate": 0.0006,
+ "loss": 3.4130377769470215,
+ "step": 1319
+ },
+ {
+ "epoch": 18.335371179039303,
+ "grad_norm": 0.030678752809762955,
+ "learning_rate": 0.0006,
+ "loss": 3.353358745574951,
+ "step": 1320
+ },
+ {
+ "epoch": 18.349344978165938,
+ "grad_norm": 0.03067706525325775,
+ "learning_rate": 0.0006,
+ "loss": 3.386003017425537,
+ "step": 1321
+ },
+ {
+ "epoch": 18.363318777292577,
+ "grad_norm": 0.029064467176795006,
+ "learning_rate": 0.0006,
+ "loss": 3.3915395736694336,
+ "step": 1322
+ },
+ {
+ "epoch": 18.377292576419215,
+ "grad_norm": 0.027225302532315254,
+ "learning_rate": 0.0006,
+ "loss": 3.3875136375427246,
+ "step": 1323
+ },
+ {
+ "epoch": 18.39126637554585,
+ "grad_norm": 0.02669711410999298,
+ "learning_rate": 0.0006,
+ "loss": 3.406268358230591,
+ "step": 1324
+ },
+ {
+ "epoch": 18.40524017467249,
+ "grad_norm": 0.028905952349305153,
+ "learning_rate": 0.0006,
+ "loss": 3.3588786125183105,
+ "step": 1325
+ },
+ {
+ "epoch": 18.419213973799128,
+ "grad_norm": 0.02591577172279358,
+ "learning_rate": 0.0006,
+ "loss": 3.378920078277588,
+ "step": 1326
+ },
+ {
+ "epoch": 18.433187772925763,
+ "grad_norm": 0.02405492030084133,
+ "learning_rate": 0.0006,
+ "loss": 3.4215216636657715,
+ "step": 1327
+ },
+ {
+ "epoch": 18.4471615720524,
+ "grad_norm": 0.02288426086306572,
+ "learning_rate": 0.0006,
+ "loss": 3.4051475524902344,
+ "step": 1328
+ },
+ {
+ "epoch": 18.46113537117904,
+ "grad_norm": 0.02265259623527527,
+ "learning_rate": 0.0006,
+ "loss": 3.376089096069336,
+ "step": 1329
+ },
+ {
+ "epoch": 18.475109170305675,
+ "grad_norm": 0.021498411893844604,
+ "learning_rate": 0.0006,
+ "loss": 3.3922982215881348,
+ "step": 1330
+ },
+ {
+ "epoch": 18.489082969432314,
+ "grad_norm": 0.02283475548028946,
+ "learning_rate": 0.0006,
+ "loss": 3.435965061187744,
+ "step": 1331
+ },
+ {
+ "epoch": 18.503056768558952,
+ "grad_norm": 0.02214580774307251,
+ "learning_rate": 0.0006,
+ "loss": 3.4137468338012695,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51703056768559,
+ "grad_norm": 0.02150345966219902,
+ "learning_rate": 0.0006,
+ "loss": 3.3775486946105957,
+ "step": 1333
+ },
+ {
+ "epoch": 18.531004366812226,
+ "grad_norm": 0.02131151221692562,
+ "learning_rate": 0.0006,
+ "loss": 3.3902227878570557,
+ "step": 1334
+ },
+ {
+ "epoch": 18.544978165938865,
+ "grad_norm": 0.019052445888519287,
+ "learning_rate": 0.0006,
+ "loss": 3.4158318042755127,
+ "step": 1335
+ },
+ {
+ "epoch": 18.558951965065503,
+ "grad_norm": 0.018629150465130806,
+ "learning_rate": 0.0006,
+ "loss": 3.40549898147583,
+ "step": 1336
+ },
+ {
+ "epoch": 18.57292576419214,
+ "grad_norm": 0.019917191937565804,
+ "learning_rate": 0.0006,
+ "loss": 3.3770365715026855,
+ "step": 1337
+ },
+ {
+ "epoch": 18.586899563318777,
+ "grad_norm": 0.01985880360007286,
+ "learning_rate": 0.0006,
+ "loss": 3.393543243408203,
+ "step": 1338
+ },
+ {
+ "epoch": 18.600873362445416,
+ "grad_norm": 0.019536739215254784,
+ "learning_rate": 0.0006,
+ "loss": 3.426811695098877,
+ "step": 1339
+ },
+ {
+ "epoch": 18.61484716157205,
+ "grad_norm": 0.01855909265577793,
+ "learning_rate": 0.0006,
+ "loss": 3.401531219482422,
+ "step": 1340
+ },
+ {
+ "epoch": 18.62882096069869,
+ "grad_norm": 0.018492981791496277,
+ "learning_rate": 0.0006,
+ "loss": 3.4268338680267334,
+ "step": 1341
+ },
+ {
+ "epoch": 18.64279475982533,
+ "grad_norm": 0.0180380679666996,
+ "learning_rate": 0.0006,
+ "loss": 3.4302897453308105,
+ "step": 1342
+ },
+ {
+ "epoch": 18.656768558951963,
+ "grad_norm": 0.017962129786610603,
+ "learning_rate": 0.0006,
+ "loss": 3.396136522293091,
+ "step": 1343
+ },
+ {
+ "epoch": 18.670742358078602,
+ "grad_norm": 0.019102413207292557,
+ "learning_rate": 0.0006,
+ "loss": 3.390157699584961,
+ "step": 1344
+ },
+ {
+ "epoch": 18.68471615720524,
+ "grad_norm": 0.01885206066071987,
+ "learning_rate": 0.0006,
+ "loss": 3.410893440246582,
+ "step": 1345
+ },
+ {
+ "epoch": 18.69868995633188,
+ "grad_norm": 0.018043991178274155,
+ "learning_rate": 0.0006,
+ "loss": 3.3919389247894287,
+ "step": 1346
+ },
+ {
+ "epoch": 18.712663755458514,
+ "grad_norm": 0.01806800253689289,
+ "learning_rate": 0.0006,
+ "loss": 3.43209171295166,
+ "step": 1347
+ },
+ {
+ "epoch": 18.726637554585153,
+ "grad_norm": 0.01855402998626232,
+ "learning_rate": 0.0006,
+ "loss": 3.428830146789551,
+ "step": 1348
+ },
+ {
+ "epoch": 18.74061135371179,
+ "grad_norm": 0.018445072695612907,
+ "learning_rate": 0.0006,
+ "loss": 3.4180264472961426,
+ "step": 1349
+ },
+ {
+ "epoch": 18.754585152838427,
+ "grad_norm": 0.018156694248318672,
+ "learning_rate": 0.0006,
+ "loss": 3.4011521339416504,
+ "step": 1350
+ },
+ {
+ "epoch": 18.768558951965066,
+ "grad_norm": 0.019634190946817398,
+ "learning_rate": 0.0006,
+ "loss": 3.388862371444702,
+ "step": 1351
+ },
+ {
+ "epoch": 18.782532751091704,
+ "grad_norm": 0.01954115554690361,
+ "learning_rate": 0.0006,
+ "loss": 3.4300918579101562,
+ "step": 1352
+ },
+ {
+ "epoch": 18.79650655021834,
+ "grad_norm": 0.01783105544745922,
+ "learning_rate": 0.0006,
+ "loss": 3.3942103385925293,
+ "step": 1353
+ },
+ {
+ "epoch": 18.810480349344978,
+ "grad_norm": 0.017380334436893463,
+ "learning_rate": 0.0006,
+ "loss": 3.4005725383758545,
+ "step": 1354
+ },
+ {
+ "epoch": 18.824454148471617,
+ "grad_norm": 0.01806088164448738,
+ "learning_rate": 0.0006,
+ "loss": 3.4157588481903076,
+ "step": 1355
+ },
+ {
+ "epoch": 18.83842794759825,
+ "grad_norm": 0.018839186057448387,
+ "learning_rate": 0.0006,
+ "loss": 3.40814208984375,
+ "step": 1356
+ },
+ {
+ "epoch": 18.85240174672489,
+ "grad_norm": 0.018662428483366966,
+ "learning_rate": 0.0006,
+ "loss": 3.4516561031341553,
+ "step": 1357
+ },
+ {
+ "epoch": 18.86637554585153,
+ "grad_norm": 0.016893137246370316,
+ "learning_rate": 0.0006,
+ "loss": 3.437650680541992,
+ "step": 1358
+ },
+ {
+ "epoch": 18.880349344978168,
+ "grad_norm": 0.017629794776439667,
+ "learning_rate": 0.0006,
+ "loss": 3.4278972148895264,
+ "step": 1359
+ },
+ {
+ "epoch": 18.894323144104803,
+ "grad_norm": 0.018383143469691277,
+ "learning_rate": 0.0006,
+ "loss": 3.4278743267059326,
+ "step": 1360
+ },
+ {
+ "epoch": 18.90829694323144,
+ "grad_norm": 0.01822691783308983,
+ "learning_rate": 0.0006,
+ "loss": 3.4315247535705566,
+ "step": 1361
+ },
+ {
+ "epoch": 18.92227074235808,
+ "grad_norm": 0.019348058849573135,
+ "learning_rate": 0.0006,
+ "loss": 3.401350498199463,
+ "step": 1362
+ },
+ {
+ "epoch": 18.936244541484715,
+ "grad_norm": 0.01952742226421833,
+ "learning_rate": 0.0006,
+ "loss": 3.378289222717285,
+ "step": 1363
+ },
+ {
+ "epoch": 18.950218340611354,
+ "grad_norm": 0.019068529829382896,
+ "learning_rate": 0.0006,
+ "loss": 3.4088215827941895,
+ "step": 1364
+ },
+ {
+ "epoch": 18.964192139737992,
+ "grad_norm": 0.02002856135368347,
+ "learning_rate": 0.0006,
+ "loss": 3.4396965503692627,
+ "step": 1365
+ },
+ {
+ "epoch": 18.978165938864628,
+ "grad_norm": 0.01839490234851837,
+ "learning_rate": 0.0006,
+ "loss": 3.4167215824127197,
+ "step": 1366
+ },
+ {
+ "epoch": 18.992139737991266,
+ "grad_norm": 0.018450899049639702,
+ "learning_rate": 0.0006,
+ "loss": 3.4458084106445312,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.021764317527413368,
+ "learning_rate": 0.0006,
+ "loss": 3.4413537979125977,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 3.9891514778137207,
+ "eval_runtime": 49.9998,
+ "eval_samples_per_second": 48.84,
+ "eval_steps_per_second": 1.54,
+ "step": 1368
+ },
+ {
+ "epoch": 19.01397379912664,
+ "grad_norm": 0.02277272194623947,
+ "learning_rate": 0.0006,
+ "loss": 3.2692642211914062,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027947598253274,
+ "grad_norm": 0.03352588415145874,
+ "learning_rate": 0.0006,
+ "loss": 3.2701330184936523,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041921397379912,
+ "grad_norm": 0.03873065486550331,
+ "learning_rate": 0.0006,
+ "loss": 3.3169291019439697,
+ "step": 1371
+ },
+ {
+ "epoch": 19.05589519650655,
+ "grad_norm": 0.03804260492324829,
+ "learning_rate": 0.0006,
+ "loss": 3.2720119953155518,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069868995633186,
+ "grad_norm": 0.04382786899805069,
+ "learning_rate": 0.0006,
+ "loss": 3.2789559364318848,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083842794759825,
+ "grad_norm": 0.042553164064884186,
+ "learning_rate": 0.0006,
+ "loss": 3.287041187286377,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097816593886463,
+ "grad_norm": 0.040354058146476746,
+ "learning_rate": 0.0006,
+ "loss": 3.2970733642578125,
+ "step": 1375
+ },
+ {
+ "epoch": 19.111790393013102,
+ "grad_norm": 0.04003302380442619,
+ "learning_rate": 0.0006,
+ "loss": 3.298656940460205,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125764192139737,
+ "grad_norm": 0.04839435964822769,
+ "learning_rate": 0.0006,
+ "loss": 3.3119897842407227,
+ "step": 1377
+ },
+ {
+ "epoch": 19.139737991266376,
+ "grad_norm": 0.04619353264570236,
+ "learning_rate": 0.0006,
+ "loss": 3.323103904724121,
+ "step": 1378
+ },
+ {
+ "epoch": 19.153711790393015,
+ "grad_norm": 0.04889119043946266,
+ "learning_rate": 0.0006,
+ "loss": 3.29386043548584,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16768558951965,
+ "grad_norm": 0.052284516394138336,
+ "learning_rate": 0.0006,
+ "loss": 3.2952120304107666,
+ "step": 1380
+ },
+ {
+ "epoch": 19.18165938864629,
+ "grad_norm": 0.053939417004585266,
+ "learning_rate": 0.0006,
+ "loss": 3.309581756591797,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195633187772927,
+ "grad_norm": 0.04883198067545891,
+ "learning_rate": 0.0006,
+ "loss": 3.3202223777770996,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209606986899562,
+ "grad_norm": 0.04550885036587715,
+ "learning_rate": 0.0006,
+ "loss": 3.3503410816192627,
+ "step": 1383
+ },
+ {
+ "epoch": 19.2235807860262,
+ "grad_norm": 0.04721444472670555,
+ "learning_rate": 0.0006,
+ "loss": 3.3530726432800293,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23755458515284,
+ "grad_norm": 0.051496051251888275,
+ "learning_rate": 0.0006,
+ "loss": 3.333950996398926,
+ "step": 1385
+ },
+ {
+ "epoch": 19.251528384279474,
+ "grad_norm": 0.053854621946811676,
+ "learning_rate": 0.0006,
+ "loss": 3.3520333766937256,
+ "step": 1386
+ },
+ {
+ "epoch": 19.265502183406113,
+ "grad_norm": 0.04623614624142647,
+ "learning_rate": 0.0006,
+ "loss": 3.350588083267212,
+ "step": 1387
+ },
+ {
+ "epoch": 19.27947598253275,
+ "grad_norm": 0.04073309525847435,
+ "learning_rate": 0.0006,
+ "loss": 3.3644251823425293,
+ "step": 1388
+ },
+ {
+ "epoch": 19.29344978165939,
+ "grad_norm": 0.03639872372150421,
+ "learning_rate": 0.0006,
+ "loss": 3.367534875869751,
+ "step": 1389
+ },
+ {
+ "epoch": 19.307423580786025,
+ "grad_norm": 0.036499980837106705,
+ "learning_rate": 0.0006,
+ "loss": 3.3632423877716064,
+ "step": 1390
+ },
+ {
+ "epoch": 19.321397379912664,
+ "grad_norm": 0.0373394750058651,
+ "learning_rate": 0.0006,
+ "loss": 3.3506932258605957,
+ "step": 1391
+ },
+ {
+ "epoch": 19.335371179039303,
+ "grad_norm": 0.04176274687051773,
+ "learning_rate": 0.0006,
+ "loss": 3.3571481704711914,
+ "step": 1392
+ },
+ {
+ "epoch": 19.349344978165938,
+ "grad_norm": 0.04616089537739754,
+ "learning_rate": 0.0006,
+ "loss": 3.359266996383667,
+ "step": 1393
+ },
+ {
+ "epoch": 19.363318777292577,
+ "grad_norm": 0.04692723974585533,
+ "learning_rate": 0.0006,
+ "loss": 3.390904188156128,
+ "step": 1394
+ },
+ {
+ "epoch": 19.377292576419215,
+ "grad_norm": 0.04957121983170509,
+ "learning_rate": 0.0006,
+ "loss": 3.341733932495117,
+ "step": 1395
+ },
+ {
+ "epoch": 19.39126637554585,
+ "grad_norm": 0.0432475246489048,
+ "learning_rate": 0.0006,
+ "loss": 3.2961924076080322,
+ "step": 1396
+ },
+ {
+ "epoch": 19.40524017467249,
+ "grad_norm": 0.041836753487586975,
+ "learning_rate": 0.0006,
+ "loss": 3.3686509132385254,
+ "step": 1397
+ },
+ {
+ "epoch": 19.419213973799128,
+ "grad_norm": 0.03855185955762863,
+ "learning_rate": 0.0006,
+ "loss": 3.3566665649414062,
+ "step": 1398
+ },
+ {
+ "epoch": 19.433187772925763,
+ "grad_norm": 0.034848880022764206,
+ "learning_rate": 0.0006,
+ "loss": 3.374608039855957,
+ "step": 1399
+ },
+ {
+ "epoch": 19.4471615720524,
+ "grad_norm": 0.03131943941116333,
+ "learning_rate": 0.0006,
+ "loss": 3.3618953227996826,
+ "step": 1400
+ },
+ {
+ "epoch": 19.46113537117904,
+ "grad_norm": 0.029629478231072426,
+ "learning_rate": 0.0006,
+ "loss": 3.3952600955963135,
+ "step": 1401
+ },
+ {
+ "epoch": 19.475109170305675,
+ "grad_norm": 0.02885911799967289,
+ "learning_rate": 0.0006,
+ "loss": 3.382490634918213,
+ "step": 1402
+ },
+ {
+ "epoch": 19.489082969432314,
+ "grad_norm": 0.026441723108291626,
+ "learning_rate": 0.0006,
+ "loss": 3.3543779850006104,
+ "step": 1403
+ },
+ {
+ "epoch": 19.503056768558952,
+ "grad_norm": 0.024119269102811813,
+ "learning_rate": 0.0006,
+ "loss": 3.3829503059387207,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51703056768559,
+ "grad_norm": 0.023766381666064262,
+ "learning_rate": 0.0006,
+ "loss": 3.37758731842041,
+ "step": 1405
+ },
+ {
+ "epoch": 19.531004366812226,
+ "grad_norm": 0.02395741641521454,
+ "learning_rate": 0.0006,
+ "loss": 3.4042277336120605,
+ "step": 1406
+ },
+ {
+ "epoch": 19.544978165938865,
+ "grad_norm": 0.023499730974435806,
+ "learning_rate": 0.0006,
+ "loss": 3.3811798095703125,
+ "step": 1407
+ },
+ {
+ "epoch": 19.558951965065503,
+ "grad_norm": 0.021423807367682457,
+ "learning_rate": 0.0006,
+ "loss": 3.3517274856567383,
+ "step": 1408
+ },
+ {
+ "epoch": 19.57292576419214,
+ "grad_norm": 0.02017848752439022,
+ "learning_rate": 0.0006,
+ "loss": 3.369368314743042,
+ "step": 1409
+ },
+ {
+ "epoch": 19.586899563318777,
+ "grad_norm": 0.02168160304427147,
+ "learning_rate": 0.0006,
+ "loss": 3.357361316680908,
+ "step": 1410
+ },
+ {
+ "epoch": 19.600873362445416,
+ "grad_norm": 0.020053956657648087,
+ "learning_rate": 0.0006,
+ "loss": 3.378511667251587,
+ "step": 1411
+ },
+ {
+ "epoch": 19.61484716157205,
+ "grad_norm": 0.018789371475577354,
+ "learning_rate": 0.0006,
+ "loss": 3.386579990386963,
+ "step": 1412
+ },
+ {
+ "epoch": 19.62882096069869,
+ "grad_norm": 0.01985175907611847,
+ "learning_rate": 0.0006,
+ "loss": 3.3903000354766846,
+ "step": 1413
+ },
+ {
+ "epoch": 19.64279475982533,
+ "grad_norm": 0.019878871738910675,
+ "learning_rate": 0.0006,
+ "loss": 3.362997055053711,
+ "step": 1414
+ },
+ {
+ "epoch": 19.656768558951963,
+ "grad_norm": 0.01920200325548649,
+ "learning_rate": 0.0006,
+ "loss": 3.397496461868286,
+ "step": 1415
+ },
+ {
+ "epoch": 19.670742358078602,
+ "grad_norm": 0.019940156489610672,
+ "learning_rate": 0.0006,
+ "loss": 3.375986099243164,
+ "step": 1416
+ },
+ {
+ "epoch": 19.68471615720524,
+ "grad_norm": 0.019822560250759125,
+ "learning_rate": 0.0006,
+ "loss": 3.351943016052246,
+ "step": 1417
+ },
+ {
+ "epoch": 19.69868995633188,
+ "grad_norm": 0.01987987756729126,
+ "learning_rate": 0.0006,
+ "loss": 3.3699135780334473,
+ "step": 1418
+ },
+ {
+ "epoch": 19.712663755458514,
+ "grad_norm": 0.020490208640694618,
+ "learning_rate": 0.0006,
+ "loss": 3.3826851844787598,
+ "step": 1419
+ },
+ {
+ "epoch": 19.726637554585153,
+ "grad_norm": 0.019540539011359215,
+ "learning_rate": 0.0006,
+ "loss": 3.330385208129883,
+ "step": 1420
+ },
+ {
+ "epoch": 19.74061135371179,
+ "grad_norm": 0.018522001802921295,
+ "learning_rate": 0.0006,
+ "loss": 3.3798022270202637,
+ "step": 1421
+ },
+ {
+ "epoch": 19.754585152838427,
+ "grad_norm": 0.019179968163371086,
+ "learning_rate": 0.0006,
+ "loss": 3.352015733718872,
+ "step": 1422
+ },
+ {
+ "epoch": 19.768558951965066,
+ "grad_norm": 0.018380016088485718,
+ "learning_rate": 0.0006,
+ "loss": 3.3417506217956543,
+ "step": 1423
+ },
+ {
+ "epoch": 19.782532751091704,
+ "grad_norm": 0.018539059907197952,
+ "learning_rate": 0.0006,
+ "loss": 3.3680901527404785,
+ "step": 1424
+ },
+ {
+ "epoch": 19.79650655021834,
+ "grad_norm": 0.01938101463019848,
+ "learning_rate": 0.0006,
+ "loss": 3.3972573280334473,
+ "step": 1425
+ },
+ {
+ "epoch": 19.810480349344978,
+ "grad_norm": 0.019287938252091408,
+ "learning_rate": 0.0006,
+ "loss": 3.3635201454162598,
+ "step": 1426
+ },
+ {
+ "epoch": 19.824454148471617,
+ "grad_norm": 0.01918751373887062,
+ "learning_rate": 0.0006,
+ "loss": 3.3594346046447754,
+ "step": 1427
+ },
+ {
+ "epoch": 19.83842794759825,
+ "grad_norm": 0.01843525469303131,
+ "learning_rate": 0.0006,
+ "loss": 3.3794357776641846,
+ "step": 1428
+ },
+ {
+ "epoch": 19.85240174672489,
+ "grad_norm": 0.017499281093478203,
+ "learning_rate": 0.0006,
+ "loss": 3.3725686073303223,
+ "step": 1429
+ },
+ {
+ "epoch": 19.86637554585153,
+ "grad_norm": 0.01804421842098236,
+ "learning_rate": 0.0006,
+ "loss": 3.3510665893554688,
+ "step": 1430
+ },
+ {
+ "epoch": 19.880349344978168,
+ "grad_norm": 0.01854187622666359,
+ "learning_rate": 0.0006,
+ "loss": 3.366323471069336,
+ "step": 1431
+ },
+ {
+ "epoch": 19.894323144104803,
+ "grad_norm": 0.019070899114012718,
+ "learning_rate": 0.0006,
+ "loss": 3.3426618576049805,
+ "step": 1432
+ },
+ {
+ "epoch": 19.90829694323144,
+ "grad_norm": 0.018046852201223373,
+ "learning_rate": 0.0006,
+ "loss": 3.392629623413086,
+ "step": 1433
+ },
+ {
+ "epoch": 19.92227074235808,
+ "grad_norm": 0.017897332087159157,
+ "learning_rate": 0.0006,
+ "loss": 3.384459972381592,
+ "step": 1434
+ },
+ {
+ "epoch": 19.936244541484715,
+ "grad_norm": 0.018831918016076088,
+ "learning_rate": 0.0006,
+ "loss": 3.3787403106689453,
+ "step": 1435
+ },
+ {
+ "epoch": 19.950218340611354,
+ "grad_norm": 0.017684299498796463,
+ "learning_rate": 0.0006,
+ "loss": 3.3839499950408936,
+ "step": 1436
+ },
+ {
+ "epoch": 19.964192139737992,
+ "grad_norm": 0.018664930015802383,
+ "learning_rate": 0.0006,
+ "loss": 3.361309289932251,
+ "step": 1437
+ },
+ {
+ "epoch": 19.978165938864628,
+ "grad_norm": 0.018459675833582878,
+ "learning_rate": 0.0006,
+ "loss": 3.3763248920440674,
+ "step": 1438
+ },
+ {
+ "epoch": 19.992139737991266,
+ "grad_norm": 0.018684620037674904,
+ "learning_rate": 0.0006,
+ "loss": 3.364279270172119,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.02109597623348236,
+ "learning_rate": 0.0006,
+ "loss": 3.3849806785583496,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 3.997159004211426,
+ "eval_runtime": 54.7559,
+ "eval_samples_per_second": 44.598,
+ "eval_steps_per_second": 1.406,
+ "step": 1440
+ },
+ {
+ "epoch": 20.01397379912664,
+ "grad_norm": 0.023242158815264702,
+ "learning_rate": 0.0006,
+ "loss": 3.219148635864258,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027947598253274,
+ "grad_norm": 0.035289909690618515,
+ "learning_rate": 0.0006,
+ "loss": 3.1906566619873047,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041921397379912,
+ "grad_norm": 0.03934298828244209,
+ "learning_rate": 0.0006,
+ "loss": 3.24796199798584,
+ "step": 1443
+ },
+ {
+ "epoch": 20.05589519650655,
+ "grad_norm": 0.03764699772000313,
+ "learning_rate": 0.0006,
+ "loss": 3.258643627166748,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069868995633186,
+ "grad_norm": 0.038128290325403214,
+ "learning_rate": 0.0006,
+ "loss": 3.2360262870788574,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083842794759825,
+ "grad_norm": 0.04228486120700836,
+ "learning_rate": 0.0006,
+ "loss": 3.246365547180176,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097816593886463,
+ "grad_norm": 0.04360193759202957,
+ "learning_rate": 0.0006,
+ "loss": 3.2414700984954834,
+ "step": 1447
+ },
+ {
+ "epoch": 20.111790393013102,
+ "grad_norm": 0.03822943568229675,
+ "learning_rate": 0.0006,
+ "loss": 3.2489700317382812,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125764192139737,
+ "grad_norm": 0.036029502749443054,
+ "learning_rate": 0.0006,
+ "loss": 3.2229957580566406,
+ "step": 1449
+ },
+ {
+ "epoch": 20.139737991266376,
+ "grad_norm": 0.03957182168960571,
+ "learning_rate": 0.0006,
+ "loss": 3.256904125213623,
+ "step": 1450
+ },
+ {
+ "epoch": 20.153711790393015,
+ "grad_norm": 0.039222728461027145,
+ "learning_rate": 0.0006,
+ "loss": 3.268920660018921,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16768558951965,
+ "grad_norm": 0.034906432032585144,
+ "learning_rate": 0.0006,
+ "loss": 3.2575674057006836,
+ "step": 1452
+ },
+ {
+ "epoch": 20.18165938864629,
+ "grad_norm": 0.03401615098118782,
+ "learning_rate": 0.0006,
+ "loss": 3.231116771697998,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195633187772927,
+ "grad_norm": 0.034356508404016495,
+ "learning_rate": 0.0006,
+ "loss": 3.262190580368042,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209606986899562,
+ "grad_norm": 0.03251064196228981,
+ "learning_rate": 0.0006,
+ "loss": 3.2810235023498535,
+ "step": 1455
+ },
+ {
+ "epoch": 20.2235807860262,
+ "grad_norm": 0.03308776021003723,
+ "learning_rate": 0.0006,
+ "loss": 3.2639098167419434,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23755458515284,
+ "grad_norm": 0.03230876103043556,
+ "learning_rate": 0.0006,
+ "loss": 3.2558178901672363,
+ "step": 1457
+ },
+ {
+ "epoch": 20.251528384279474,
+ "grad_norm": 0.03161812946200371,
+ "learning_rate": 0.0006,
+ "loss": 3.291419267654419,
+ "step": 1458
+ },
+ {
+ "epoch": 20.265502183406113,
+ "grad_norm": 0.02916458062827587,
+ "learning_rate": 0.0006,
+ "loss": 3.280852794647217,
+ "step": 1459
+ },
+ {
+ "epoch": 20.27947598253275,
+ "grad_norm": 0.029812375083565712,
+ "learning_rate": 0.0006,
+ "loss": 3.2271876335144043,
+ "step": 1460
+ },
+ {
+ "epoch": 20.29344978165939,
+ "grad_norm": 0.029384229332208633,
+ "learning_rate": 0.0006,
+ "loss": 3.2629804611206055,
+ "step": 1461
+ },
+ {
+ "epoch": 20.307423580786025,
+ "grad_norm": 0.033414218574762344,
+ "learning_rate": 0.0006,
+ "loss": 3.270416498184204,
+ "step": 1462
+ },
+ {
+ "epoch": 20.321397379912664,
+ "grad_norm": 0.03318887576460838,
+ "learning_rate": 0.0006,
+ "loss": 3.272148609161377,
+ "step": 1463
+ },
+ {
+ "epoch": 20.335371179039303,
+ "grad_norm": 0.030193055048584938,
+ "learning_rate": 0.0006,
+ "loss": 3.2646775245666504,
+ "step": 1464
+ },
+ {
+ "epoch": 20.349344978165938,
+ "grad_norm": 0.028252357617020607,
+ "learning_rate": 0.0006,
+ "loss": 3.2772417068481445,
+ "step": 1465
+ },
+ {
+ "epoch": 20.363318777292577,
+ "grad_norm": 0.028565213084220886,
+ "learning_rate": 0.0006,
+ "loss": 3.3179280757904053,
+ "step": 1466
+ },
+ {
+ "epoch": 20.377292576419215,
+ "grad_norm": 0.026722336187958717,
+ "learning_rate": 0.0006,
+ "loss": 3.2810170650482178,
+ "step": 1467
+ },
+ {
+ "epoch": 20.39126637554585,
+ "grad_norm": 0.025114644318819046,
+ "learning_rate": 0.0006,
+ "loss": 3.2686173915863037,
+ "step": 1468
+ },
+ {
+ "epoch": 20.40524017467249,
+ "grad_norm": 0.025851737707853317,
+ "learning_rate": 0.0006,
+ "loss": 3.2975308895111084,
+ "step": 1469
+ },
+ {
+ "epoch": 20.419213973799128,
+ "grad_norm": 0.024468228220939636,
+ "learning_rate": 0.0006,
+ "loss": 3.2880358695983887,
+ "step": 1470
+ },
+ {
+ "epoch": 20.433187772925763,
+ "grad_norm": 0.02360754832625389,
+ "learning_rate": 0.0006,
+ "loss": 3.2768073081970215,
+ "step": 1471
+ },
+ {
+ "epoch": 20.4471615720524,
+ "grad_norm": 0.024596888571977615,
+ "learning_rate": 0.0006,
+ "loss": 3.285207509994507,
+ "step": 1472
+ },
+ {
+ "epoch": 20.46113537117904,
+ "grad_norm": 0.02434864081442356,
+ "learning_rate": 0.0006,
+ "loss": 3.284351110458374,
+ "step": 1473
+ },
+ {
+ "epoch": 20.475109170305675,
+ "grad_norm": 0.023001939058303833,
+ "learning_rate": 0.0006,
+ "loss": 3.2642571926116943,
+ "step": 1474
+ },
+ {
+ "epoch": 20.489082969432314,
+ "grad_norm": 0.022632446140050888,
+ "learning_rate": 0.0006,
+ "loss": 3.32163143157959,
+ "step": 1475
+ },
+ {
+ "epoch": 20.503056768558952,
+ "grad_norm": 0.023113328963518143,
+ "learning_rate": 0.0006,
+ "loss": 3.292109251022339,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51703056768559,
+ "grad_norm": 0.02199697494506836,
+ "learning_rate": 0.0006,
+ "loss": 3.3133938312530518,
+ "step": 1477
+ },
+ {
+ "epoch": 20.531004366812226,
+ "grad_norm": 0.023468362167477608,
+ "learning_rate": 0.0006,
+ "loss": 3.2595276832580566,
+ "step": 1478
+ },
+ {
+ "epoch": 20.544978165938865,
+ "grad_norm": 0.022027716040611267,
+ "learning_rate": 0.0006,
+ "loss": 3.2692484855651855,
+ "step": 1479
+ },
+ {
+ "epoch": 20.558951965065503,
+ "grad_norm": 0.021089443936944008,
+ "learning_rate": 0.0006,
+ "loss": 3.317549467086792,
+ "step": 1480
+ },
+ {
+ "epoch": 20.57292576419214,
+ "grad_norm": 0.020714912563562393,
+ "learning_rate": 0.0006,
+ "loss": 3.2982163429260254,
+ "step": 1481
+ },
+ {
+ "epoch": 20.586899563318777,
+ "grad_norm": 0.021601643413305283,
+ "learning_rate": 0.0006,
+ "loss": 3.303770065307617,
+ "step": 1482
+ },
+ {
+ "epoch": 20.600873362445416,
+ "grad_norm": 0.02164667472243309,
+ "learning_rate": 0.0006,
+ "loss": 3.297548294067383,
+ "step": 1483
+ },
+ {
+ "epoch": 20.61484716157205,
+ "grad_norm": 0.0205276720225811,
+ "learning_rate": 0.0006,
+ "loss": 3.265287399291992,
+ "step": 1484
+ },
+ {
+ "epoch": 20.62882096069869,
+ "grad_norm": 0.020926227793097496,
+ "learning_rate": 0.0006,
+ "loss": 3.3233776092529297,
+ "step": 1485
+ },
+ {
+ "epoch": 20.64279475982533,
+ "grad_norm": 0.020680908113718033,
+ "learning_rate": 0.0006,
+ "loss": 3.299736499786377,
+ "step": 1486
+ },
+ {
+ "epoch": 20.656768558951963,
+ "grad_norm": 0.02010631375014782,
+ "learning_rate": 0.0006,
+ "loss": 3.319195032119751,
+ "step": 1487
+ },
+ {
+ "epoch": 20.670742358078602,
+ "grad_norm": 0.01861870475113392,
+ "learning_rate": 0.0006,
+ "loss": 3.309542179107666,
+ "step": 1488
+ },
+ {
+ "epoch": 20.68471615720524,
+ "grad_norm": 0.019709311425685883,
+ "learning_rate": 0.0006,
+ "loss": 3.2684426307678223,
+ "step": 1489
+ },
+ {
+ "epoch": 20.69868995633188,
+ "grad_norm": 0.019379155710339546,
+ "learning_rate": 0.0006,
+ "loss": 3.3123316764831543,
+ "step": 1490
+ },
+ {
+ "epoch": 20.712663755458514,
+ "grad_norm": 0.018971465528011322,
+ "learning_rate": 0.0006,
+ "loss": 3.3249459266662598,
+ "step": 1491
+ },
+ {
+ "epoch": 20.726637554585153,
+ "grad_norm": 0.01862727664411068,
+ "learning_rate": 0.0006,
+ "loss": 3.2942824363708496,
+ "step": 1492
+ },
+ {
+ "epoch": 20.74061135371179,
+ "grad_norm": 0.01932865008711815,
+ "learning_rate": 0.0006,
+ "loss": 3.3328568935394287,
+ "step": 1493
+ },
+ {
+ "epoch": 20.754585152838427,
+ "grad_norm": 0.019298749044537544,
+ "learning_rate": 0.0006,
+ "loss": 3.2632360458374023,
+ "step": 1494
+ },
+ {
+ "epoch": 20.768558951965066,
+ "grad_norm": 0.018749341368675232,
+ "learning_rate": 0.0006,
+ "loss": 3.320802688598633,
+ "step": 1495
+ },
+ {
+ "epoch": 20.782532751091704,
+ "grad_norm": 0.01888313889503479,
+ "learning_rate": 0.0006,
+ "loss": 3.3290247917175293,
+ "step": 1496
+ },
+ {
+ "epoch": 20.79650655021834,
+ "grad_norm": 0.019536348059773445,
+ "learning_rate": 0.0006,
+ "loss": 3.311213493347168,
+ "step": 1497
+ },
+ {
+ "epoch": 20.810480349344978,
+ "grad_norm": 0.018573017790913582,
+ "learning_rate": 0.0006,
+ "loss": 3.3132004737854004,
+ "step": 1498
+ },
+ {
+ "epoch": 20.824454148471617,
+ "grad_norm": 0.019365103915333748,
+ "learning_rate": 0.0006,
+ "loss": 3.312656879425049,
+ "step": 1499
+ },
+ {
+ "epoch": 20.83842794759825,
+ "grad_norm": 0.021032165735960007,
+ "learning_rate": 0.0006,
+ "loss": 3.330728054046631,
+ "step": 1500
+ },
+ {
+ "epoch": 20.85240174672489,
+ "grad_norm": 0.02062826044857502,
+ "learning_rate": 0.0006,
+ "loss": 3.386507034301758,
+ "step": 1501
+ },
+ {
+ "epoch": 20.86637554585153,
+ "grad_norm": 0.019087517634034157,
+ "learning_rate": 0.0006,
+ "loss": 3.3134851455688477,
+ "step": 1502
+ },
+ {
+ "epoch": 20.880349344978168,
+ "grad_norm": 0.018393544480204582,
+ "learning_rate": 0.0006,
+ "loss": 3.3288557529449463,
+ "step": 1503
+ },
+ {
+ "epoch": 20.894323144104803,
+ "grad_norm": 0.018625570461153984,
+ "learning_rate": 0.0006,
+ "loss": 3.3385863304138184,
+ "step": 1504
+ },
+ {
+ "epoch": 20.90829694323144,
+ "grad_norm": 0.018994612619280815,
+ "learning_rate": 0.0006,
+ "loss": 3.3441519737243652,
+ "step": 1505
+ },
+ {
+ "epoch": 20.92227074235808,
+ "grad_norm": 0.019807450473308563,
+ "learning_rate": 0.0006,
+ "loss": 3.2853572368621826,
+ "step": 1506
+ },
+ {
+ "epoch": 20.936244541484715,
+ "grad_norm": 0.01904045045375824,
+ "learning_rate": 0.0006,
+ "loss": 3.2973103523254395,
+ "step": 1507
+ },
+ {
+ "epoch": 20.950218340611354,
+ "grad_norm": 0.019115809351205826,
+ "learning_rate": 0.0006,
+ "loss": 3.3340232372283936,
+ "step": 1508
+ },
+ {
+ "epoch": 20.964192139737992,
+ "grad_norm": 0.020370563492178917,
+ "learning_rate": 0.0006,
+ "loss": 3.3770620822906494,
+ "step": 1509
+ },
+ {
+ "epoch": 20.978165938864628,
+ "grad_norm": 0.02040398307144642,
+ "learning_rate": 0.0006,
+ "loss": 3.3141350746154785,
+ "step": 1510
+ },
+ {
+ "epoch": 20.992139737991266,
+ "grad_norm": 0.019721226766705513,
+ "learning_rate": 0.0006,
+ "loss": 3.3140838146209717,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.021993499249219894,
+ "learning_rate": 0.0006,
+ "loss": 3.327284574508667,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 4.007121562957764,
+ "eval_runtime": 50.0284,
+ "eval_samples_per_second": 48.812,
+ "eval_steps_per_second": 1.539,
+ "step": 1512
+ },
+ {
+ "epoch": 21.01397379912664,
+ "grad_norm": 0.0266740545630455,
+ "learning_rate": 0.0006,
+ "loss": 3.1542232036590576,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027947598253274,
+ "grad_norm": 0.0431625060737133,
+ "learning_rate": 0.0006,
+ "loss": 3.1733574867248535,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041921397379912,
+ "grad_norm": 0.05062565952539444,
+ "learning_rate": 0.0006,
+ "loss": 3.2326841354370117,
+ "step": 1515
+ },
+ {
+ "epoch": 21.05589519650655,
+ "grad_norm": 0.04447261989116669,
+ "learning_rate": 0.0006,
+ "loss": 3.158965587615967,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069868995633186,
+ "grad_norm": 0.04547872766852379,
+ "learning_rate": 0.0006,
+ "loss": 3.1754844188690186,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083842794759825,
+ "grad_norm": 0.045201778411865234,
+ "learning_rate": 0.0006,
+ "loss": 3.164539337158203,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097816593886463,
+ "grad_norm": 0.04903271794319153,
+ "learning_rate": 0.0006,
+ "loss": 3.223135232925415,
+ "step": 1519
+ },
+ {
+ "epoch": 21.111790393013102,
+ "grad_norm": 0.05277688428759575,
+ "learning_rate": 0.0006,
+ "loss": 3.21925687789917,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125764192139737,
+ "grad_norm": 0.055951476097106934,
+ "learning_rate": 0.0006,
+ "loss": 3.2054057121276855,
+ "step": 1521
+ },
+ {
+ "epoch": 21.139737991266376,
+ "grad_norm": 0.05742252990603447,
+ "learning_rate": 0.0006,
+ "loss": 3.2347140312194824,
+ "step": 1522
+ },
+ {
+ "epoch": 21.153711790393015,
+ "grad_norm": 0.05464409664273262,
+ "learning_rate": 0.0006,
+ "loss": 3.2519783973693848,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16768558951965,
+ "grad_norm": 0.06649098545312881,
+ "learning_rate": 0.0006,
+ "loss": 3.2739510536193848,
+ "step": 1524
+ },
+ {
+ "epoch": 21.18165938864629,
+ "grad_norm": 0.07743308693170547,
+ "learning_rate": 0.0006,
+ "loss": 3.2961807250976562,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195633187772927,
+ "grad_norm": 0.0752289667725563,
+ "learning_rate": 0.0006,
+ "loss": 3.284780740737915,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209606986899562,
+ "grad_norm": 0.06247316300868988,
+ "learning_rate": 0.0006,
+ "loss": 3.253411293029785,
+ "step": 1527
+ },
+ {
+ "epoch": 21.2235807860262,
+ "grad_norm": 0.06856120377779007,
+ "learning_rate": 0.0006,
+ "loss": 3.288010597229004,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23755458515284,
+ "grad_norm": 0.06939002871513367,
+ "learning_rate": 0.0006,
+ "loss": 3.2672412395477295,
+ "step": 1529
+ },
+ {
+ "epoch": 21.251528384279474,
+ "grad_norm": 0.06546786427497864,
+ "learning_rate": 0.0006,
+ "loss": 3.2822303771972656,
+ "step": 1530
+ },
+ {
+ "epoch": 21.265502183406113,
+ "grad_norm": 0.06720232218503952,
+ "learning_rate": 0.0006,
+ "loss": 3.332411289215088,
+ "step": 1531
+ },
+ {
+ "epoch": 21.27947598253275,
+ "grad_norm": 0.061658330261707306,
+ "learning_rate": 0.0006,
+ "loss": 3.2908289432525635,
+ "step": 1532
+ },
+ {
+ "epoch": 21.29344978165939,
+ "grad_norm": 0.07328956574201584,
+ "learning_rate": 0.0006,
+ "loss": 3.3375182151794434,
+ "step": 1533
+ },
+ {
+ "epoch": 21.307423580786025,
+ "grad_norm": 0.06822583079338074,
+ "learning_rate": 0.0006,
+ "loss": 3.3630833625793457,
+ "step": 1534
+ },
+ {
+ "epoch": 21.321397379912664,
+ "grad_norm": 0.060682639479637146,
+ "learning_rate": 0.0006,
+ "loss": 3.3475425243377686,
+ "step": 1535
+ },
+ {
+ "epoch": 21.335371179039303,
+ "grad_norm": 0.05718247592449188,
+ "learning_rate": 0.0006,
+ "loss": 3.351832866668701,
+ "step": 1536
+ },
+ {
+ "epoch": 21.349344978165938,
+ "grad_norm": 0.05781054124236107,
+ "learning_rate": 0.0006,
+ "loss": 3.38287091255188,
+ "step": 1537
+ },
+ {
+ "epoch": 21.363318777292577,
+ "grad_norm": 0.05846734717488289,
+ "learning_rate": 0.0006,
+ "loss": 3.3522510528564453,
+ "step": 1538
+ },
+ {
+ "epoch": 21.377292576419215,
+ "grad_norm": 0.0558689683675766,
+ "learning_rate": 0.0006,
+ "loss": 3.3376541137695312,
+ "step": 1539
+ },
+ {
+ "epoch": 21.39126637554585,
+ "grad_norm": 0.050501998513936996,
+ "learning_rate": 0.0006,
+ "loss": 3.359436511993408,
+ "step": 1540
+ },
+ {
+ "epoch": 21.40524017467249,
+ "grad_norm": 0.04265185445547104,
+ "learning_rate": 0.0006,
+ "loss": 3.3644630908966064,
+ "step": 1541
+ },
+ {
+ "epoch": 21.419213973799128,
+ "grad_norm": 0.038762111216783524,
+ "learning_rate": 0.0006,
+ "loss": 3.347414493560791,
+ "step": 1542
+ },
+ {
+ "epoch": 21.433187772925763,
+ "grad_norm": 0.033920831978321075,
+ "learning_rate": 0.0006,
+ "loss": 3.3242359161376953,
+ "step": 1543
+ },
+ {
+ "epoch": 21.4471615720524,
+ "grad_norm": 0.03363734856247902,
+ "learning_rate": 0.0006,
+ "loss": 3.3375630378723145,
+ "step": 1544
+ },
+ {
+ "epoch": 21.46113537117904,
+ "grad_norm": 0.03235653042793274,
+ "learning_rate": 0.0006,
+ "loss": 3.3372178077697754,
+ "step": 1545
+ },
+ {
+ "epoch": 21.475109170305675,
+ "grad_norm": 0.028865264728665352,
+ "learning_rate": 0.0006,
+ "loss": 3.349198341369629,
+ "step": 1546
+ },
+ {
+ "epoch": 21.489082969432314,
+ "grad_norm": 0.026676205918192863,
+ "learning_rate": 0.0006,
+ "loss": 3.355546474456787,
+ "step": 1547
+ },
+ {
+ "epoch": 21.503056768558952,
+ "grad_norm": 0.023821823298931122,
+ "learning_rate": 0.0006,
+ "loss": 3.303542137145996,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51703056768559,
+ "grad_norm": 0.02385578863322735,
+ "learning_rate": 0.0006,
+ "loss": 3.3081653118133545,
+ "step": 1549
+ },
+ {
+ "epoch": 21.531004366812226,
+ "grad_norm": 0.022704163566231728,
+ "learning_rate": 0.0006,
+ "loss": 3.308283805847168,
+ "step": 1550
+ },
+ {
+ "epoch": 21.544978165938865,
+ "grad_norm": 0.02143189311027527,
+ "learning_rate": 0.0006,
+ "loss": 3.309621810913086,
+ "step": 1551
+ },
+ {
+ "epoch": 21.558951965065503,
+ "grad_norm": 0.020797641947865486,
+ "learning_rate": 0.0006,
+ "loss": 3.314361095428467,
+ "step": 1552
+ },
+ {
+ "epoch": 21.57292576419214,
+ "grad_norm": 0.020197909325361252,
+ "learning_rate": 0.0006,
+ "loss": 3.314574956893921,
+ "step": 1553
+ },
+ {
+ "epoch": 21.586899563318777,
+ "grad_norm": 0.020033083856105804,
+ "learning_rate": 0.0006,
+ "loss": 3.3187432289123535,
+ "step": 1554
+ },
+ {
+ "epoch": 21.600873362445416,
+ "grad_norm": 0.019949860870838165,
+ "learning_rate": 0.0006,
+ "loss": 3.292051315307617,
+ "step": 1555
+ },
+ {
+ "epoch": 21.61484716157205,
+ "grad_norm": 0.019957413896918297,
+ "learning_rate": 0.0006,
+ "loss": 3.305405855178833,
+ "step": 1556
+ },
+ {
+ "epoch": 21.62882096069869,
+ "grad_norm": 0.019971443340182304,
+ "learning_rate": 0.0006,
+ "loss": 3.296830177307129,
+ "step": 1557
+ },
+ {
+ "epoch": 21.64279475982533,
+ "grad_norm": 0.020505597814917564,
+ "learning_rate": 0.0006,
+ "loss": 3.2825589179992676,
+ "step": 1558
+ },
+ {
+ "epoch": 21.656768558951963,
+ "grad_norm": 0.019877616316080093,
+ "learning_rate": 0.0006,
+ "loss": 3.313103199005127,
+ "step": 1559
+ },
+ {
+ "epoch": 21.670742358078602,
+ "grad_norm": 0.020201386883854866,
+ "learning_rate": 0.0006,
+ "loss": 3.235610008239746,
+ "step": 1560
+ },
+ {
+ "epoch": 21.68471615720524,
+ "grad_norm": 0.02024715021252632,
+ "learning_rate": 0.0006,
+ "loss": 3.2557928562164307,
+ "step": 1561
+ },
+ {
+ "epoch": 21.69868995633188,
+ "grad_norm": 0.019592178985476494,
+ "learning_rate": 0.0006,
+ "loss": 3.2867813110351562,
+ "step": 1562
+ },
+ {
+ "epoch": 21.712663755458514,
+ "grad_norm": 0.018611110746860504,
+ "learning_rate": 0.0006,
+ "loss": 3.2807016372680664,
+ "step": 1563
+ },
+ {
+ "epoch": 21.726637554585153,
+ "grad_norm": 0.018972786143422127,
+ "learning_rate": 0.0006,
+ "loss": 3.2985191345214844,
+ "step": 1564
+ },
+ {
+ "epoch": 21.74061135371179,
+ "grad_norm": 0.018826451152563095,
+ "learning_rate": 0.0006,
+ "loss": 3.29825758934021,
+ "step": 1565
+ },
+ {
+ "epoch": 21.754585152838427,
+ "grad_norm": 0.018894566223025322,
+ "learning_rate": 0.0006,
+ "loss": 3.276063919067383,
+ "step": 1566
+ },
+ {
+ "epoch": 21.768558951965066,
+ "grad_norm": 0.01885579153895378,
+ "learning_rate": 0.0006,
+ "loss": 3.2703640460968018,
+ "step": 1567
+ },
+ {
+ "epoch": 21.782532751091704,
+ "grad_norm": 0.018351880833506584,
+ "learning_rate": 0.0006,
+ "loss": 3.2634973526000977,
+ "step": 1568
+ },
+ {
+ "epoch": 21.79650655021834,
+ "grad_norm": 0.018520258367061615,
+ "learning_rate": 0.0006,
+ "loss": 3.2701549530029297,
+ "step": 1569
+ },
+ {
+ "epoch": 21.810480349344978,
+ "grad_norm": 0.018321022391319275,
+ "learning_rate": 0.0006,
+ "loss": 3.2998499870300293,
+ "step": 1570
+ },
+ {
+ "epoch": 21.824454148471617,
+ "grad_norm": 0.018834305927157402,
+ "learning_rate": 0.0006,
+ "loss": 3.2863354682922363,
+ "step": 1571
+ },
+ {
+ "epoch": 21.83842794759825,
+ "grad_norm": 0.019185064360499382,
+ "learning_rate": 0.0006,
+ "loss": 3.286705493927002,
+ "step": 1572
+ },
+ {
+ "epoch": 21.85240174672489,
+ "grad_norm": 0.01889665424823761,
+ "learning_rate": 0.0006,
+ "loss": 3.32741641998291,
+ "step": 1573
+ },
+ {
+ "epoch": 21.86637554585153,
+ "grad_norm": 0.018116198480129242,
+ "learning_rate": 0.0006,
+ "loss": 3.3165807723999023,
+ "step": 1574
+ },
+ {
+ "epoch": 21.880349344978168,
+ "grad_norm": 0.019612092524766922,
+ "learning_rate": 0.0006,
+ "loss": 3.2506771087646484,
+ "step": 1575
+ },
+ {
+ "epoch": 21.894323144104803,
+ "grad_norm": 0.018245317041873932,
+ "learning_rate": 0.0006,
+ "loss": 3.287231922149658,
+ "step": 1576
+ },
+ {
+ "epoch": 21.90829694323144,
+ "grad_norm": 0.01800438202917576,
+ "learning_rate": 0.0006,
+ "loss": 3.323281764984131,
+ "step": 1577
+ },
+ {
+ "epoch": 21.92227074235808,
+ "grad_norm": 0.018265806138515472,
+ "learning_rate": 0.0006,
+ "loss": 3.327335834503174,
+ "step": 1578
+ },
+ {
+ "epoch": 21.936244541484715,
+ "grad_norm": 0.01925564929842949,
+ "learning_rate": 0.0006,
+ "loss": 3.3010969161987305,
+ "step": 1579
+ },
+ {
+ "epoch": 21.950218340611354,
+ "grad_norm": 0.019137129187583923,
+ "learning_rate": 0.0006,
+ "loss": 3.2997634410858154,
+ "step": 1580
+ },
+ {
+ "epoch": 21.964192139737992,
+ "grad_norm": 0.01760365068912506,
+ "learning_rate": 0.0006,
+ "loss": 3.2637267112731934,
+ "step": 1581
+ },
+ {
+ "epoch": 21.978165938864628,
+ "grad_norm": 0.018728850409388542,
+ "learning_rate": 0.0006,
+ "loss": 3.2676243782043457,
+ "step": 1582
+ },
+ {
+ "epoch": 21.992139737991266,
+ "grad_norm": 0.018930058926343918,
+ "learning_rate": 0.0006,
+ "loss": 3.280712604522705,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.021552253514528275,
+ "learning_rate": 0.0006,
+ "loss": 3.297333240509033,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 4.021175384521484,
+ "eval_runtime": 50.1224,
+ "eval_samples_per_second": 48.721,
+ "eval_steps_per_second": 1.536,
+ "step": 1584
+ },
+ {
+ "epoch": 22.01397379912664,
+ "grad_norm": 0.02215493470430374,
+ "learning_rate": 0.0006,
+ "loss": 3.1229772567749023,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027947598253274,
+ "grad_norm": 0.02967856451869011,
+ "learning_rate": 0.0006,
+ "loss": 3.137763738632202,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041921397379912,
+ "grad_norm": 0.02984168380498886,
+ "learning_rate": 0.0006,
+ "loss": 3.1206588745117188,
+ "step": 1587
+ },
+ {
+ "epoch": 22.05589519650655,
+ "grad_norm": 0.029677357524633408,
+ "learning_rate": 0.0006,
+ "loss": 3.1399269104003906,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069868995633186,
+ "grad_norm": 0.03151305764913559,
+ "learning_rate": 0.0006,
+ "loss": 3.1238462924957275,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083842794759825,
+ "grad_norm": 0.033034879714250565,
+ "learning_rate": 0.0006,
+ "loss": 3.0901098251342773,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097816593886463,
+ "grad_norm": 0.03483431041240692,
+ "learning_rate": 0.0006,
+ "loss": 3.141174077987671,
+ "step": 1591
+ },
+ {
+ "epoch": 22.111790393013102,
+ "grad_norm": 0.03549962490797043,
+ "learning_rate": 0.0006,
+ "loss": 3.1501364707946777,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125764192139737,
+ "grad_norm": 0.03203433007001877,
+ "learning_rate": 0.0006,
+ "loss": 3.159137725830078,
+ "step": 1593
+ },
+ {
+ "epoch": 22.139737991266376,
+ "grad_norm": 0.032320212572813034,
+ "learning_rate": 0.0006,
+ "loss": 3.132265329360962,
+ "step": 1594
+ },
+ {
+ "epoch": 22.153711790393015,
+ "grad_norm": 0.034070853143930435,
+ "learning_rate": 0.0006,
+ "loss": 3.1619839668273926,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16768558951965,
+ "grad_norm": 0.03379609435796738,
+ "learning_rate": 0.0006,
+ "loss": 3.1391677856445312,
+ "step": 1596
+ },
+ {
+ "epoch": 22.18165938864629,
+ "grad_norm": 0.02766602858901024,
+ "learning_rate": 0.0006,
+ "loss": 3.134331226348877,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195633187772927,
+ "grad_norm": 0.02805453911423683,
+ "learning_rate": 0.0006,
+ "loss": 3.1561427116394043,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209606986899562,
+ "grad_norm": 0.028059443458914757,
+ "learning_rate": 0.0006,
+ "loss": 3.1427788734436035,
+ "step": 1599
+ },
+ {
+ "epoch": 22.2235807860262,
+ "grad_norm": 0.028307706117630005,
+ "learning_rate": 0.0006,
+ "loss": 3.1559817790985107,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23755458515284,
+ "grad_norm": 0.0279996320605278,
+ "learning_rate": 0.0006,
+ "loss": 3.132871389389038,
+ "step": 1601
+ },
+ {
+ "epoch": 22.251528384279474,
+ "grad_norm": 0.02574557065963745,
+ "learning_rate": 0.0006,
+ "loss": 3.1786751747131348,
+ "step": 1602
+ },
+ {
+ "epoch": 22.265502183406113,
+ "grad_norm": 0.024875380098819733,
+ "learning_rate": 0.0006,
+ "loss": 3.1568856239318848,
+ "step": 1603
+ },
+ {
+ "epoch": 22.27947598253275,
+ "grad_norm": 0.025276372209191322,
+ "learning_rate": 0.0006,
+ "loss": 3.162123203277588,
+ "step": 1604
+ },
+ {
+ "epoch": 22.29344978165939,
+ "grad_norm": 0.024784576147794724,
+ "learning_rate": 0.0006,
+ "loss": 3.1623098850250244,
+ "step": 1605
+ },
+ {
+ "epoch": 22.307423580786025,
+ "grad_norm": 0.0219266377389431,
+ "learning_rate": 0.0006,
+ "loss": 3.193899393081665,
+ "step": 1606
+ },
+ {
+ "epoch": 22.321397379912664,
+ "grad_norm": 0.02260139398276806,
+ "learning_rate": 0.0006,
+ "loss": 3.1366958618164062,
+ "step": 1607
+ },
+ {
+ "epoch": 22.335371179039303,
+ "grad_norm": 0.023162642493844032,
+ "learning_rate": 0.0006,
+ "loss": 3.1931166648864746,
+ "step": 1608
+ },
+ {
+ "epoch": 22.349344978165938,
+ "grad_norm": 0.022873790934681892,
+ "learning_rate": 0.0006,
+ "loss": 3.1660501956939697,
+ "step": 1609
+ },
+ {
+ "epoch": 22.363318777292577,
+ "grad_norm": 0.02431238628923893,
+ "learning_rate": 0.0006,
+ "loss": 3.172982931137085,
+ "step": 1610
+ },
+ {
+ "epoch": 22.377292576419215,
+ "grad_norm": 0.023474128916859627,
+ "learning_rate": 0.0006,
+ "loss": 3.1941604614257812,
+ "step": 1611
+ },
+ {
+ "epoch": 22.39126637554585,
+ "grad_norm": 0.021899253129959106,
+ "learning_rate": 0.0006,
+ "loss": 3.164011240005493,
+ "step": 1612
+ },
+ {
+ "epoch": 22.40524017467249,
+ "grad_norm": 0.023463290184736252,
+ "learning_rate": 0.0006,
+ "loss": 3.181821823120117,
+ "step": 1613
+ },
+ {
+ "epoch": 22.419213973799128,
+ "grad_norm": 0.022636929526925087,
+ "learning_rate": 0.0006,
+ "loss": 3.1651649475097656,
+ "step": 1614
+ },
+ {
+ "epoch": 22.433187772925763,
+ "grad_norm": 0.022014712914824486,
+ "learning_rate": 0.0006,
+ "loss": 3.1782679557800293,
+ "step": 1615
+ },
+ {
+ "epoch": 22.4471615720524,
+ "grad_norm": 0.02165660634636879,
+ "learning_rate": 0.0006,
+ "loss": 3.188546657562256,
+ "step": 1616
+ },
+ {
+ "epoch": 22.46113537117904,
+ "grad_norm": 0.019901631399989128,
+ "learning_rate": 0.0006,
+ "loss": 3.1988091468811035,
+ "step": 1617
+ },
+ {
+ "epoch": 22.475109170305675,
+ "grad_norm": 0.0209745354950428,
+ "learning_rate": 0.0006,
+ "loss": 3.19329833984375,
+ "step": 1618
+ },
+ {
+ "epoch": 22.489082969432314,
+ "grad_norm": 0.021747298538684845,
+ "learning_rate": 0.0006,
+ "loss": 3.2036776542663574,
+ "step": 1619
+ },
+ {
+ "epoch": 22.503056768558952,
+ "grad_norm": 0.019623076543211937,
+ "learning_rate": 0.0006,
+ "loss": 3.1681504249572754,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51703056768559,
+ "grad_norm": 0.020048566162586212,
+ "learning_rate": 0.0006,
+ "loss": 3.1954283714294434,
+ "step": 1621
+ },
+ {
+ "epoch": 22.531004366812226,
+ "grad_norm": 0.021175740286707878,
+ "learning_rate": 0.0006,
+ "loss": 3.189802646636963,
+ "step": 1622
+ },
+ {
+ "epoch": 22.544978165938865,
+ "grad_norm": 0.02099684439599514,
+ "learning_rate": 0.0006,
+ "loss": 3.2179861068725586,
+ "step": 1623
+ },
+ {
+ "epoch": 22.558951965065503,
+ "grad_norm": 0.020709119737148285,
+ "learning_rate": 0.0006,
+ "loss": 3.219874382019043,
+ "step": 1624
+ },
+ {
+ "epoch": 22.57292576419214,
+ "grad_norm": 0.02090434730052948,
+ "learning_rate": 0.0006,
+ "loss": 3.1864824295043945,
+ "step": 1625
+ },
+ {
+ "epoch": 22.586899563318777,
+ "grad_norm": 0.02059161476790905,
+ "learning_rate": 0.0006,
+ "loss": 3.2084670066833496,
+ "step": 1626
+ },
+ {
+ "epoch": 22.600873362445416,
+ "grad_norm": 0.02269027940928936,
+ "learning_rate": 0.0006,
+ "loss": 3.2111763954162598,
+ "step": 1627
+ },
+ {
+ "epoch": 22.61484716157205,
+ "grad_norm": 0.023081645369529724,
+ "learning_rate": 0.0006,
+ "loss": 3.1888933181762695,
+ "step": 1628
+ },
+ {
+ "epoch": 22.62882096069869,
+ "grad_norm": 0.021397452801465988,
+ "learning_rate": 0.0006,
+ "loss": 3.252058982849121,
+ "step": 1629
+ },
+ {
+ "epoch": 22.64279475982533,
+ "grad_norm": 0.021065089851617813,
+ "learning_rate": 0.0006,
+ "loss": 3.2006194591522217,
+ "step": 1630
+ },
+ {
+ "epoch": 22.656768558951963,
+ "grad_norm": 0.022490495815873146,
+ "learning_rate": 0.0006,
+ "loss": 3.229124069213867,
+ "step": 1631
+ },
+ {
+ "epoch": 22.670742358078602,
+ "grad_norm": 0.021817505359649658,
+ "learning_rate": 0.0006,
+ "loss": 3.194119691848755,
+ "step": 1632
+ },
+ {
+ "epoch": 22.68471615720524,
+ "grad_norm": 0.021232811734080315,
+ "learning_rate": 0.0006,
+ "loss": 3.245544910430908,
+ "step": 1633
+ },
+ {
+ "epoch": 22.69868995633188,
+ "grad_norm": 0.023222077637910843,
+ "learning_rate": 0.0006,
+ "loss": 3.279717445373535,
+ "step": 1634
+ },
+ {
+ "epoch": 22.712663755458514,
+ "grad_norm": 0.02224564366042614,
+ "learning_rate": 0.0006,
+ "loss": 3.2494592666625977,
+ "step": 1635
+ },
+ {
+ "epoch": 22.726637554585153,
+ "grad_norm": 0.021308856084942818,
+ "learning_rate": 0.0006,
+ "loss": 3.204773426055908,
+ "step": 1636
+ },
+ {
+ "epoch": 22.74061135371179,
+ "grad_norm": 0.020439520478248596,
+ "learning_rate": 0.0006,
+ "loss": 3.205946683883667,
+ "step": 1637
+ },
+ {
+ "epoch": 22.754585152838427,
+ "grad_norm": 0.020782779902219772,
+ "learning_rate": 0.0006,
+ "loss": 3.239274501800537,
+ "step": 1638
+ },
+ {
+ "epoch": 22.768558951965066,
+ "grad_norm": 0.022062206640839577,
+ "learning_rate": 0.0006,
+ "loss": 3.2261786460876465,
+ "step": 1639
+ },
+ {
+ "epoch": 22.782532751091704,
+ "grad_norm": 0.02113729901611805,
+ "learning_rate": 0.0006,
+ "loss": 3.2691404819488525,
+ "step": 1640
+ },
+ {
+ "epoch": 22.79650655021834,
+ "grad_norm": 0.021274438127875328,
+ "learning_rate": 0.0006,
+ "loss": 3.226609706878662,
+ "step": 1641
+ },
+ {
+ "epoch": 22.810480349344978,
+ "grad_norm": 0.021622309461236,
+ "learning_rate": 0.0006,
+ "loss": 3.2209739685058594,
+ "step": 1642
+ },
+ {
+ "epoch": 22.824454148471617,
+ "grad_norm": 0.0202135369181633,
+ "learning_rate": 0.0006,
+ "loss": 3.1961019039154053,
+ "step": 1643
+ },
+ {
+ "epoch": 22.83842794759825,
+ "grad_norm": 0.020688654854893684,
+ "learning_rate": 0.0006,
+ "loss": 3.2573604583740234,
+ "step": 1644
+ },
+ {
+ "epoch": 22.85240174672489,
+ "grad_norm": 0.021738961338996887,
+ "learning_rate": 0.0006,
+ "loss": 3.2542853355407715,
+ "step": 1645
+ },
+ {
+ "epoch": 22.86637554585153,
+ "grad_norm": 0.0219196118414402,
+ "learning_rate": 0.0006,
+ "loss": 3.252492904663086,
+ "step": 1646
+ },
+ {
+ "epoch": 22.880349344978168,
+ "grad_norm": 0.0218547023832798,
+ "learning_rate": 0.0006,
+ "loss": 3.2702088356018066,
+ "step": 1647
+ },
+ {
+ "epoch": 22.894323144104803,
+ "grad_norm": 0.021791797131299973,
+ "learning_rate": 0.0006,
+ "loss": 3.2743520736694336,
+ "step": 1648
+ },
+ {
+ "epoch": 22.90829694323144,
+ "grad_norm": 0.02209450677037239,
+ "learning_rate": 0.0006,
+ "loss": 3.2271618843078613,
+ "step": 1649
+ },
+ {
+ "epoch": 22.92227074235808,
+ "grad_norm": 0.021461671218276024,
+ "learning_rate": 0.0006,
+ "loss": 3.237719774246216,
+ "step": 1650
+ },
+ {
+ "epoch": 22.936244541484715,
+ "grad_norm": 0.02116190828382969,
+ "learning_rate": 0.0006,
+ "loss": 3.220345973968506,
+ "step": 1651
+ },
+ {
+ "epoch": 22.950218340611354,
+ "grad_norm": 0.021221552044153214,
+ "learning_rate": 0.0006,
+ "loss": 3.270355224609375,
+ "step": 1652
+ },
+ {
+ "epoch": 22.964192139737992,
+ "grad_norm": 0.021926164627075195,
+ "learning_rate": 0.0006,
+ "loss": 3.251894474029541,
+ "step": 1653
+ },
+ {
+ "epoch": 22.978165938864628,
+ "grad_norm": 0.02037062682211399,
+ "learning_rate": 0.0006,
+ "loss": 3.2335145473480225,
+ "step": 1654
+ },
+ {
+ "epoch": 22.992139737991266,
+ "grad_norm": 0.021061841398477554,
+ "learning_rate": 0.0006,
+ "loss": 3.258089065551758,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.023548489436507225,
+ "learning_rate": 0.0006,
+ "loss": 3.211991548538208,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 4.036250591278076,
+ "eval_runtime": 50.0837,
+ "eval_samples_per_second": 48.758,
+ "eval_steps_per_second": 1.537,
+ "step": 1656
+ },
+ {
+ "epoch": 23.01397379912664,
+ "grad_norm": 0.028975404798984528,
+ "learning_rate": 0.0006,
+ "loss": 3.0739121437072754,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027947598253274,
+ "grad_norm": 0.045989733189344406,
+ "learning_rate": 0.0006,
+ "loss": 3.086352825164795,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041921397379912,
+ "grad_norm": 0.054499756544828415,
+ "learning_rate": 0.0006,
+ "loss": 3.0560779571533203,
+ "step": 1659
+ },
+ {
+ "epoch": 23.05589519650655,
+ "grad_norm": 0.05919722840189934,
+ "learning_rate": 0.0006,
+ "loss": 3.0908679962158203,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069868995633186,
+ "grad_norm": 0.05523031949996948,
+ "learning_rate": 0.0006,
+ "loss": 3.143130302429199,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083842794759825,
+ "grad_norm": 0.04946798086166382,
+ "learning_rate": 0.0006,
+ "loss": 3.0894484519958496,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097816593886463,
+ "grad_norm": 0.05096029117703438,
+ "learning_rate": 0.0006,
+ "loss": 3.1163463592529297,
+ "step": 1663
+ },
+ {
+ "epoch": 23.111790393013102,
+ "grad_norm": 0.051004018634557724,
+ "learning_rate": 0.0006,
+ "loss": 3.094862937927246,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125764192139737,
+ "grad_norm": 0.04774824529886246,
+ "learning_rate": 0.0006,
+ "loss": 3.056874990463257,
+ "step": 1665
+ },
+ {
+ "epoch": 23.139737991266376,
+ "grad_norm": 0.04676121845841408,
+ "learning_rate": 0.0006,
+ "loss": 3.1135435104370117,
+ "step": 1666
+ },
+ {
+ "epoch": 23.153711790393015,
+ "grad_norm": 0.04623310640454292,
+ "learning_rate": 0.0006,
+ "loss": 3.0834898948669434,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16768558951965,
+ "grad_norm": 0.04654386639595032,
+ "learning_rate": 0.0006,
+ "loss": 3.1126627922058105,
+ "step": 1668
+ },
+ {
+ "epoch": 23.18165938864629,
+ "grad_norm": 0.05056565999984741,
+ "learning_rate": 0.0006,
+ "loss": 3.1404361724853516,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195633187772927,
+ "grad_norm": 0.04947774112224579,
+ "learning_rate": 0.0006,
+ "loss": 3.0800836086273193,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209606986899562,
+ "grad_norm": 0.05254998058080673,
+ "learning_rate": 0.0006,
+ "loss": 3.1659531593322754,
+ "step": 1671
+ },
+ {
+ "epoch": 23.2235807860262,
+ "grad_norm": 0.05698013678193092,
+ "learning_rate": 0.0006,
+ "loss": 3.124387741088867,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23755458515284,
+ "grad_norm": 0.05885928124189377,
+ "learning_rate": 0.0006,
+ "loss": 3.1883671283721924,
+ "step": 1673
+ },
+ {
+ "epoch": 23.251528384279474,
+ "grad_norm": 0.05118200555443764,
+ "learning_rate": 0.0006,
+ "loss": 3.1102395057678223,
+ "step": 1674
+ },
+ {
+ "epoch": 23.265502183406113,
+ "grad_norm": 0.04967886209487915,
+ "learning_rate": 0.0006,
+ "loss": 3.124696731567383,
+ "step": 1675
+ },
+ {
+ "epoch": 23.27947598253275,
+ "grad_norm": 0.05399557575583458,
+ "learning_rate": 0.0006,
+ "loss": 3.152482032775879,
+ "step": 1676
+ },
+ {
+ "epoch": 23.29344978165939,
+ "grad_norm": 0.04705207049846649,
+ "learning_rate": 0.0006,
+ "loss": 3.1485037803649902,
+ "step": 1677
+ },
+ {
+ "epoch": 23.307423580786025,
+ "grad_norm": 0.045942481607198715,
+ "learning_rate": 0.0006,
+ "loss": 3.149049997329712,
+ "step": 1678
+ },
+ {
+ "epoch": 23.321397379912664,
+ "grad_norm": 0.04364842176437378,
+ "learning_rate": 0.0006,
+ "loss": 3.1753323078155518,
+ "step": 1679
+ },
+ {
+ "epoch": 23.335371179039303,
+ "grad_norm": 0.04357321560382843,
+ "learning_rate": 0.0006,
+ "loss": 3.1530587673187256,
+ "step": 1680
+ },
+ {
+ "epoch": 23.349344978165938,
+ "grad_norm": 0.040299318730831146,
+ "learning_rate": 0.0006,
+ "loss": 3.1689562797546387,
+ "step": 1681
+ },
+ {
+ "epoch": 23.363318777292577,
+ "grad_norm": 0.033832576125860214,
+ "learning_rate": 0.0006,
+ "loss": 3.1539080142974854,
+ "step": 1682
+ },
+ {
+ "epoch": 23.377292576419215,
+ "grad_norm": 0.0333096869289875,
+ "learning_rate": 0.0006,
+ "loss": 3.136540412902832,
+ "step": 1683
+ },
+ {
+ "epoch": 23.39126637554585,
+ "grad_norm": 0.03185306116938591,
+ "learning_rate": 0.0006,
+ "loss": 3.161989450454712,
+ "step": 1684
+ },
+ {
+ "epoch": 23.40524017467249,
+ "grad_norm": 0.030003627762198448,
+ "learning_rate": 0.0006,
+ "loss": 3.1533138751983643,
+ "step": 1685
+ },
+ {
+ "epoch": 23.419213973799128,
+ "grad_norm": 0.028618820011615753,
+ "learning_rate": 0.0006,
+ "loss": 3.185976028442383,
+ "step": 1686
+ },
+ {
+ "epoch": 23.433187772925763,
+ "grad_norm": 0.02691742591559887,
+ "learning_rate": 0.0006,
+ "loss": 3.153627872467041,
+ "step": 1687
+ },
+ {
+ "epoch": 23.4471615720524,
+ "grad_norm": 0.026324588805437088,
+ "learning_rate": 0.0006,
+ "loss": 3.1644554138183594,
+ "step": 1688
+ },
+ {
+ "epoch": 23.46113537117904,
+ "grad_norm": 0.025900371372699738,
+ "learning_rate": 0.0006,
+ "loss": 3.1649692058563232,
+ "step": 1689
+ },
+ {
+ "epoch": 23.475109170305675,
+ "grad_norm": 0.0243719182908535,
+ "learning_rate": 0.0006,
+ "loss": 3.182521343231201,
+ "step": 1690
+ },
+ {
+ "epoch": 23.489082969432314,
+ "grad_norm": 0.022730499505996704,
+ "learning_rate": 0.0006,
+ "loss": 3.1854891777038574,
+ "step": 1691
+ },
+ {
+ "epoch": 23.503056768558952,
+ "grad_norm": 0.02335519716143608,
+ "learning_rate": 0.0006,
+ "loss": 3.151111364364624,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51703056768559,
+ "grad_norm": 0.022645823657512665,
+ "learning_rate": 0.0006,
+ "loss": 3.181077241897583,
+ "step": 1693
+ },
+ {
+ "epoch": 23.531004366812226,
+ "grad_norm": 0.022274266928434372,
+ "learning_rate": 0.0006,
+ "loss": 3.155630111694336,
+ "step": 1694
+ },
+ {
+ "epoch": 23.544978165938865,
+ "grad_norm": 0.02225971594452858,
+ "learning_rate": 0.0006,
+ "loss": 3.20708966255188,
+ "step": 1695
+ },
+ {
+ "epoch": 23.558951965065503,
+ "grad_norm": 0.022145207971334457,
+ "learning_rate": 0.0006,
+ "loss": 3.1944689750671387,
+ "step": 1696
+ },
+ {
+ "epoch": 23.57292576419214,
+ "grad_norm": 0.02143380232155323,
+ "learning_rate": 0.0006,
+ "loss": 3.1928765773773193,
+ "step": 1697
+ },
+ {
+ "epoch": 23.586899563318777,
+ "grad_norm": 0.021410757675766945,
+ "learning_rate": 0.0006,
+ "loss": 3.141218900680542,
+ "step": 1698
+ },
+ {
+ "epoch": 23.600873362445416,
+ "grad_norm": 0.020946916192770004,
+ "learning_rate": 0.0006,
+ "loss": 3.1523003578186035,
+ "step": 1699
+ },
+ {
+ "epoch": 23.61484716157205,
+ "grad_norm": 0.02247041091322899,
+ "learning_rate": 0.0006,
+ "loss": 3.197848320007324,
+ "step": 1700
+ },
+ {
+ "epoch": 23.62882096069869,
+ "grad_norm": 0.02199610322713852,
+ "learning_rate": 0.0006,
+ "loss": 3.146364212036133,
+ "step": 1701
+ },
+ {
+ "epoch": 23.64279475982533,
+ "grad_norm": 0.021192600950598717,
+ "learning_rate": 0.0006,
+ "loss": 3.205726146697998,
+ "step": 1702
+ },
+ {
+ "epoch": 23.656768558951963,
+ "grad_norm": 0.021812601014971733,
+ "learning_rate": 0.0006,
+ "loss": 3.1663761138916016,
+ "step": 1703
+ },
+ {
+ "epoch": 23.670742358078602,
+ "grad_norm": 0.021653084084391594,
+ "learning_rate": 0.0006,
+ "loss": 3.186915397644043,
+ "step": 1704
+ },
+ {
+ "epoch": 23.68471615720524,
+ "grad_norm": 0.02271277830004692,
+ "learning_rate": 0.0006,
+ "loss": 3.1901726722717285,
+ "step": 1705
+ },
+ {
+ "epoch": 23.69868995633188,
+ "grad_norm": 0.022516358643770218,
+ "learning_rate": 0.0006,
+ "loss": 3.1948347091674805,
+ "step": 1706
+ },
+ {
+ "epoch": 23.712663755458514,
+ "grad_norm": 0.021564161404967308,
+ "learning_rate": 0.0006,
+ "loss": 3.18239688873291,
+ "step": 1707
+ },
+ {
+ "epoch": 23.726637554585153,
+ "grad_norm": 0.02193053439259529,
+ "learning_rate": 0.0006,
+ "loss": 3.167478561401367,
+ "step": 1708
+ },
+ {
+ "epoch": 23.74061135371179,
+ "grad_norm": 0.020590802654623985,
+ "learning_rate": 0.0006,
+ "loss": 3.1782495975494385,
+ "step": 1709
+ },
+ {
+ "epoch": 23.754585152838427,
+ "grad_norm": 0.02001943439245224,
+ "learning_rate": 0.0006,
+ "loss": 3.140777111053467,
+ "step": 1710
+ },
+ {
+ "epoch": 23.768558951965066,
+ "grad_norm": 0.02146220952272415,
+ "learning_rate": 0.0006,
+ "loss": 3.196669578552246,
+ "step": 1711
+ },
+ {
+ "epoch": 23.782532751091704,
+ "grad_norm": 0.02064087800681591,
+ "learning_rate": 0.0006,
+ "loss": 3.1968512535095215,
+ "step": 1712
+ },
+ {
+ "epoch": 23.79650655021834,
+ "grad_norm": 0.020168280228972435,
+ "learning_rate": 0.0006,
+ "loss": 3.185011625289917,
+ "step": 1713
+ },
+ {
+ "epoch": 23.810480349344978,
+ "grad_norm": 0.021309854462742805,
+ "learning_rate": 0.0006,
+ "loss": 3.223778247833252,
+ "step": 1714
+ },
+ {
+ "epoch": 23.824454148471617,
+ "grad_norm": 0.021627578884363174,
+ "learning_rate": 0.0006,
+ "loss": 3.2337048053741455,
+ "step": 1715
+ },
+ {
+ "epoch": 23.83842794759825,
+ "grad_norm": 0.022393809631466866,
+ "learning_rate": 0.0006,
+ "loss": 3.1815061569213867,
+ "step": 1716
+ },
+ {
+ "epoch": 23.85240174672489,
+ "grad_norm": 0.021653614938259125,
+ "learning_rate": 0.0006,
+ "loss": 3.2199814319610596,
+ "step": 1717
+ },
+ {
+ "epoch": 23.86637554585153,
+ "grad_norm": 0.021053675562143326,
+ "learning_rate": 0.0006,
+ "loss": 3.2100138664245605,
+ "step": 1718
+ },
+ {
+ "epoch": 23.880349344978168,
+ "grad_norm": 0.02070586569607258,
+ "learning_rate": 0.0006,
+ "loss": 3.169224262237549,
+ "step": 1719
+ },
+ {
+ "epoch": 23.894323144104803,
+ "grad_norm": 0.02080441080033779,
+ "learning_rate": 0.0006,
+ "loss": 3.2199649810791016,
+ "step": 1720
+ },
+ {
+ "epoch": 23.90829694323144,
+ "grad_norm": 0.022092828527092934,
+ "learning_rate": 0.0006,
+ "loss": 3.2059383392333984,
+ "step": 1721
+ },
+ {
+ "epoch": 23.92227074235808,
+ "grad_norm": 0.02031811885535717,
+ "learning_rate": 0.0006,
+ "loss": 3.181447982788086,
+ "step": 1722
+ },
+ {
+ "epoch": 23.936244541484715,
+ "grad_norm": 0.020453795790672302,
+ "learning_rate": 0.0006,
+ "loss": 3.2039992809295654,
+ "step": 1723
+ },
+ {
+ "epoch": 23.950218340611354,
+ "grad_norm": 0.02050524763762951,
+ "learning_rate": 0.0006,
+ "loss": 3.2518773078918457,
+ "step": 1724
+ },
+ {
+ "epoch": 23.964192139737992,
+ "grad_norm": 0.020392276346683502,
+ "learning_rate": 0.0006,
+ "loss": 3.21860408782959,
+ "step": 1725
+ },
+ {
+ "epoch": 23.978165938864628,
+ "grad_norm": 0.02083909884095192,
+ "learning_rate": 0.0006,
+ "loss": 3.2072129249572754,
+ "step": 1726
+ },
+ {
+ "epoch": 23.992139737991266,
+ "grad_norm": 0.020636966452002525,
+ "learning_rate": 0.0006,
+ "loss": 3.1956424713134766,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.02314000204205513,
+ "learning_rate": 0.0006,
+ "loss": 3.1868958473205566,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 4.061861038208008,
+ "eval_runtime": 50.2887,
+ "eval_samples_per_second": 48.56,
+ "eval_steps_per_second": 1.531,
+ "step": 1728
+ },
+ {
+ "epoch": 24.01397379912664,
+ "grad_norm": 0.026494357734918594,
+ "learning_rate": 0.0006,
+ "loss": 3.0170693397521973,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027947598253274,
+ "grad_norm": 0.03457538038492203,
+ "learning_rate": 0.0006,
+ "loss": 3.038365364074707,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041921397379912,
+ "grad_norm": 0.0362137034535408,
+ "learning_rate": 0.0006,
+ "loss": 3.042156219482422,
+ "step": 1731
+ },
+ {
+ "epoch": 24.05589519650655,
+ "grad_norm": 0.0380006767809391,
+ "learning_rate": 0.0006,
+ "loss": 2.9978504180908203,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069868995633186,
+ "grad_norm": 0.039754100143909454,
+ "learning_rate": 0.0006,
+ "loss": 3.0558762550354004,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083842794759825,
+ "grad_norm": 0.04269031062722206,
+ "learning_rate": 0.0006,
+ "loss": 3.0549988746643066,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097816593886463,
+ "grad_norm": 0.04441278055310249,
+ "learning_rate": 0.0006,
+ "loss": 3.0869946479797363,
+ "step": 1735
+ },
+ {
+ "epoch": 24.111790393013102,
+ "grad_norm": 0.040790386497974396,
+ "learning_rate": 0.0006,
+ "loss": 3.0361521244049072,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125764192139737,
+ "grad_norm": 0.03730896860361099,
+ "learning_rate": 0.0006,
+ "loss": 3.046663761138916,
+ "step": 1737
+ },
+ {
+ "epoch": 24.139737991266376,
+ "grad_norm": 0.03982469439506531,
+ "learning_rate": 0.0006,
+ "loss": 3.0173420906066895,
+ "step": 1738
+ },
+ {
+ "epoch": 24.153711790393015,
+ "grad_norm": 0.039260219782590866,
+ "learning_rate": 0.0006,
+ "loss": 3.0473644733428955,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16768558951965,
+ "grad_norm": 0.03755051642656326,
+ "learning_rate": 0.0006,
+ "loss": 3.0663342475891113,
+ "step": 1740
+ },
+ {
+ "epoch": 24.18165938864629,
+ "grad_norm": 0.03793613240122795,
+ "learning_rate": 0.0006,
+ "loss": 3.0489985942840576,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195633187772927,
+ "grad_norm": 0.04197019711136818,
+ "learning_rate": 0.0006,
+ "loss": 3.097670555114746,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209606986899562,
+ "grad_norm": 0.0469660609960556,
+ "learning_rate": 0.0006,
+ "loss": 3.1100730895996094,
+ "step": 1743
+ },
+ {
+ "epoch": 24.2235807860262,
+ "grad_norm": 0.04978584498167038,
+ "learning_rate": 0.0006,
+ "loss": 3.079113006591797,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23755458515284,
+ "grad_norm": 0.04865782707929611,
+ "learning_rate": 0.0006,
+ "loss": 3.0800795555114746,
+ "step": 1745
+ },
+ {
+ "epoch": 24.251528384279474,
+ "grad_norm": 0.04515399411320686,
+ "learning_rate": 0.0006,
+ "loss": 3.0951786041259766,
+ "step": 1746
+ },
+ {
+ "epoch": 24.265502183406113,
+ "grad_norm": 0.05194929614663124,
+ "learning_rate": 0.0006,
+ "loss": 3.0923233032226562,
+ "step": 1747
+ },
+ {
+ "epoch": 24.27947598253275,
+ "grad_norm": 0.05268502235412598,
+ "learning_rate": 0.0006,
+ "loss": 3.0762367248535156,
+ "step": 1748
+ },
+ {
+ "epoch": 24.29344978165939,
+ "grad_norm": 0.04807785153388977,
+ "learning_rate": 0.0006,
+ "loss": 3.0600905418395996,
+ "step": 1749
+ },
+ {
+ "epoch": 24.307423580786025,
+ "grad_norm": 0.049069009721279144,
+ "learning_rate": 0.0006,
+ "loss": 3.119414806365967,
+ "step": 1750
+ },
+ {
+ "epoch": 24.321397379912664,
+ "grad_norm": 0.040332380682229996,
+ "learning_rate": 0.0006,
+ "loss": 3.101262092590332,
+ "step": 1751
+ },
+ {
+ "epoch": 24.335371179039303,
+ "grad_norm": 0.037106387317180634,
+ "learning_rate": 0.0006,
+ "loss": 3.111459732055664,
+ "step": 1752
+ },
+ {
+ "epoch": 24.349344978165938,
+ "grad_norm": 0.04089464247226715,
+ "learning_rate": 0.0006,
+ "loss": 3.078132152557373,
+ "step": 1753
+ },
+ {
+ "epoch": 24.363318777292577,
+ "grad_norm": 0.042072005569934845,
+ "learning_rate": 0.0006,
+ "loss": 3.098802089691162,
+ "step": 1754
+ },
+ {
+ "epoch": 24.377292576419215,
+ "grad_norm": 0.03779057413339615,
+ "learning_rate": 0.0006,
+ "loss": 3.137354850769043,
+ "step": 1755
+ },
+ {
+ "epoch": 24.39126637554585,
+ "grad_norm": 0.037271898239851,
+ "learning_rate": 0.0006,
+ "loss": 3.1019601821899414,
+ "step": 1756
+ },
+ {
+ "epoch": 24.40524017467249,
+ "grad_norm": 0.036236681044101715,
+ "learning_rate": 0.0006,
+ "loss": 3.073394775390625,
+ "step": 1757
+ },
+ {
+ "epoch": 24.419213973799128,
+ "grad_norm": 0.03288481757044792,
+ "learning_rate": 0.0006,
+ "loss": 3.085905075073242,
+ "step": 1758
+ },
+ {
+ "epoch": 24.433187772925763,
+ "grad_norm": 0.030534565448760986,
+ "learning_rate": 0.0006,
+ "loss": 3.1430633068084717,
+ "step": 1759
+ },
+ {
+ "epoch": 24.4471615720524,
+ "grad_norm": 0.030080555006861687,
+ "learning_rate": 0.0006,
+ "loss": 3.084897994995117,
+ "step": 1760
+ },
+ {
+ "epoch": 24.46113537117904,
+ "grad_norm": 0.028177041560411453,
+ "learning_rate": 0.0006,
+ "loss": 3.0981075763702393,
+ "step": 1761
+ },
+ {
+ "epoch": 24.475109170305675,
+ "grad_norm": 0.02868589572608471,
+ "learning_rate": 0.0006,
+ "loss": 3.113759994506836,
+ "step": 1762
+ },
+ {
+ "epoch": 24.489082969432314,
+ "grad_norm": 0.02866324409842491,
+ "learning_rate": 0.0006,
+ "loss": 3.146918773651123,
+ "step": 1763
+ },
+ {
+ "epoch": 24.503056768558952,
+ "grad_norm": 0.032893482595682144,
+ "learning_rate": 0.0006,
+ "loss": 3.16141414642334,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51703056768559,
+ "grad_norm": 0.03186864033341408,
+ "learning_rate": 0.0006,
+ "loss": 3.13303804397583,
+ "step": 1765
+ },
+ {
+ "epoch": 24.531004366812226,
+ "grad_norm": 0.0323340930044651,
+ "learning_rate": 0.0006,
+ "loss": 3.1308135986328125,
+ "step": 1766
+ },
+ {
+ "epoch": 24.544978165938865,
+ "grad_norm": 0.03451741859316826,
+ "learning_rate": 0.0006,
+ "loss": 3.13972806930542,
+ "step": 1767
+ },
+ {
+ "epoch": 24.558951965065503,
+ "grad_norm": 0.03144263103604317,
+ "learning_rate": 0.0006,
+ "loss": 3.1428070068359375,
+ "step": 1768
+ },
+ {
+ "epoch": 24.57292576419214,
+ "grad_norm": 0.02920706383883953,
+ "learning_rate": 0.0006,
+ "loss": 3.1201605796813965,
+ "step": 1769
+ },
+ {
+ "epoch": 24.586899563318777,
+ "grad_norm": 0.028445811942219734,
+ "learning_rate": 0.0006,
+ "loss": 3.144218683242798,
+ "step": 1770
+ },
+ {
+ "epoch": 24.600873362445416,
+ "grad_norm": 0.02665509283542633,
+ "learning_rate": 0.0006,
+ "loss": 3.130509853363037,
+ "step": 1771
+ },
+ {
+ "epoch": 24.61484716157205,
+ "grad_norm": 0.02607566863298416,
+ "learning_rate": 0.0006,
+ "loss": 3.1229686737060547,
+ "step": 1772
+ },
+ {
+ "epoch": 24.62882096069869,
+ "grad_norm": 0.02450554072856903,
+ "learning_rate": 0.0006,
+ "loss": 3.1412901878356934,
+ "step": 1773
+ },
+ {
+ "epoch": 24.64279475982533,
+ "grad_norm": 0.024406673386693,
+ "learning_rate": 0.0006,
+ "loss": 3.1482839584350586,
+ "step": 1774
+ },
+ {
+ "epoch": 24.656768558951963,
+ "grad_norm": 0.02445918507874012,
+ "learning_rate": 0.0006,
+ "loss": 3.1525535583496094,
+ "step": 1775
+ },
+ {
+ "epoch": 24.670742358078602,
+ "grad_norm": 0.024329137057065964,
+ "learning_rate": 0.0006,
+ "loss": 3.1237733364105225,
+ "step": 1776
+ },
+ {
+ "epoch": 24.68471615720524,
+ "grad_norm": 0.026551753282546997,
+ "learning_rate": 0.0006,
+ "loss": 3.168206214904785,
+ "step": 1777
+ },
+ {
+ "epoch": 24.69868995633188,
+ "grad_norm": 0.02526521123945713,
+ "learning_rate": 0.0006,
+ "loss": 3.145684242248535,
+ "step": 1778
+ },
+ {
+ "epoch": 24.712663755458514,
+ "grad_norm": 0.022739525884389877,
+ "learning_rate": 0.0006,
+ "loss": 3.109616756439209,
+ "step": 1779
+ },
+ {
+ "epoch": 24.726637554585153,
+ "grad_norm": 0.02353929914534092,
+ "learning_rate": 0.0006,
+ "loss": 3.1133408546447754,
+ "step": 1780
+ },
+ {
+ "epoch": 24.74061135371179,
+ "grad_norm": 0.024195613339543343,
+ "learning_rate": 0.0006,
+ "loss": 3.1797852516174316,
+ "step": 1781
+ },
+ {
+ "epoch": 24.754585152838427,
+ "grad_norm": 0.023433320224285126,
+ "learning_rate": 0.0006,
+ "loss": 3.1500236988067627,
+ "step": 1782
+ },
+ {
+ "epoch": 24.768558951965066,
+ "grad_norm": 0.023815682157874107,
+ "learning_rate": 0.0006,
+ "loss": 3.1468753814697266,
+ "step": 1783
+ },
+ {
+ "epoch": 24.782532751091704,
+ "grad_norm": 0.023465458303689957,
+ "learning_rate": 0.0006,
+ "loss": 3.1285457611083984,
+ "step": 1784
+ },
+ {
+ "epoch": 24.79650655021834,
+ "grad_norm": 0.023044317960739136,
+ "learning_rate": 0.0006,
+ "loss": 3.152935028076172,
+ "step": 1785
+ },
+ {
+ "epoch": 24.810480349344978,
+ "grad_norm": 0.02268923819065094,
+ "learning_rate": 0.0006,
+ "loss": 3.149824619293213,
+ "step": 1786
+ },
+ {
+ "epoch": 24.824454148471617,
+ "grad_norm": 0.02200215309858322,
+ "learning_rate": 0.0006,
+ "loss": 3.136305570602417,
+ "step": 1787
+ },
+ {
+ "epoch": 24.83842794759825,
+ "grad_norm": 0.021768024191260338,
+ "learning_rate": 0.0006,
+ "loss": 3.1580021381378174,
+ "step": 1788
+ },
+ {
+ "epoch": 24.85240174672489,
+ "grad_norm": 0.02197638899087906,
+ "learning_rate": 0.0006,
+ "loss": 3.167720079421997,
+ "step": 1789
+ },
+ {
+ "epoch": 24.86637554585153,
+ "grad_norm": 0.02179424650967121,
+ "learning_rate": 0.0006,
+ "loss": 3.1844677925109863,
+ "step": 1790
+ },
+ {
+ "epoch": 24.880349344978168,
+ "grad_norm": 0.02222774736583233,
+ "learning_rate": 0.0006,
+ "loss": 3.1534781455993652,
+ "step": 1791
+ },
+ {
+ "epoch": 24.894323144104803,
+ "grad_norm": 0.0211419016122818,
+ "learning_rate": 0.0006,
+ "loss": 3.1624507904052734,
+ "step": 1792
+ },
+ {
+ "epoch": 24.90829694323144,
+ "grad_norm": 0.021679047495126724,
+ "learning_rate": 0.0006,
+ "loss": 3.1692471504211426,
+ "step": 1793
+ },
+ {
+ "epoch": 24.92227074235808,
+ "grad_norm": 0.02098955772817135,
+ "learning_rate": 0.0006,
+ "loss": 3.1197893619537354,
+ "step": 1794
+ },
+ {
+ "epoch": 24.936244541484715,
+ "grad_norm": 0.02041255682706833,
+ "learning_rate": 0.0006,
+ "loss": 3.1489920616149902,
+ "step": 1795
+ },
+ {
+ "epoch": 24.950218340611354,
+ "grad_norm": 0.021229229867458344,
+ "learning_rate": 0.0006,
+ "loss": 3.181349277496338,
+ "step": 1796
+ },
+ {
+ "epoch": 24.964192139737992,
+ "grad_norm": 0.021164825186133385,
+ "learning_rate": 0.0006,
+ "loss": 3.174917221069336,
+ "step": 1797
+ },
+ {
+ "epoch": 24.978165938864628,
+ "grad_norm": 0.021351559087634087,
+ "learning_rate": 0.0006,
+ "loss": 3.1783559322357178,
+ "step": 1798
+ },
+ {
+ "epoch": 24.992139737991266,
+ "grad_norm": 0.020969994366168976,
+ "learning_rate": 0.0006,
+ "loss": 3.193674087524414,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.02423921413719654,
+ "learning_rate": 0.0006,
+ "loss": 3.200575590133667,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 4.083610534667969,
+ "eval_runtime": 49.9782,
+ "eval_samples_per_second": 48.861,
+ "eval_steps_per_second": 1.541,
+ "step": 1800
+ },
+ {
+ "epoch": 25.01397379912664,
+ "grad_norm": 0.02671094425022602,
+ "learning_rate": 0.0006,
+ "loss": 2.9603734016418457,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027947598253274,
+ "grad_norm": 0.04277094826102257,
+ "learning_rate": 0.0006,
+ "loss": 2.97347354888916,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041921397379912,
+ "grad_norm": 0.05197378247976303,
+ "learning_rate": 0.0006,
+ "loss": 2.999575614929199,
+ "step": 1803
+ },
+ {
+ "epoch": 25.05589519650655,
+ "grad_norm": 0.05377629026770592,
+ "learning_rate": 0.0006,
+ "loss": 2.9785799980163574,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069868995633186,
+ "grad_norm": 0.056606143712997437,
+ "learning_rate": 0.0006,
+ "loss": 3.0218558311462402,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083842794759825,
+ "grad_norm": 0.054323576390743256,
+ "learning_rate": 0.0006,
+ "loss": 3.009265899658203,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097816593886463,
+ "grad_norm": 0.05065226927399635,
+ "learning_rate": 0.0006,
+ "loss": 3.033031702041626,
+ "step": 1807
+ },
+ {
+ "epoch": 25.111790393013102,
+ "grad_norm": 0.05075160786509514,
+ "learning_rate": 0.0006,
+ "loss": 3.0429916381835938,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125764192139737,
+ "grad_norm": 0.05267050117254257,
+ "learning_rate": 0.0006,
+ "loss": 3.0145187377929688,
+ "step": 1809
+ },
+ {
+ "epoch": 25.139737991266376,
+ "grad_norm": 0.04282816872000694,
+ "learning_rate": 0.0006,
+ "loss": 3.019191026687622,
+ "step": 1810
+ },
+ {
+ "epoch": 25.153711790393015,
+ "grad_norm": 0.042729251086711884,
+ "learning_rate": 0.0006,
+ "loss": 3.024594783782959,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16768558951965,
+ "grad_norm": 0.04174517095088959,
+ "learning_rate": 0.0006,
+ "loss": 3.021573066711426,
+ "step": 1812
+ },
+ {
+ "epoch": 25.18165938864629,
+ "grad_norm": 0.039621077477931976,
+ "learning_rate": 0.0006,
+ "loss": 3.033224105834961,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195633187772927,
+ "grad_norm": 0.037193190306425095,
+ "learning_rate": 0.0006,
+ "loss": 3.022829532623291,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209606986899562,
+ "grad_norm": 0.03468523919582367,
+ "learning_rate": 0.0006,
+ "loss": 3.016298294067383,
+ "step": 1815
+ },
+ {
+ "epoch": 25.2235807860262,
+ "grad_norm": 0.03721904382109642,
+ "learning_rate": 0.0006,
+ "loss": 2.991225242614746,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23755458515284,
+ "grad_norm": 0.03951790928840637,
+ "learning_rate": 0.0006,
+ "loss": 3.0309948921203613,
+ "step": 1817
+ },
+ {
+ "epoch": 25.251528384279474,
+ "grad_norm": 0.04039984196424484,
+ "learning_rate": 0.0006,
+ "loss": 3.032059669494629,
+ "step": 1818
+ },
+ {
+ "epoch": 25.265502183406113,
+ "grad_norm": 0.041549600660800934,
+ "learning_rate": 0.0006,
+ "loss": 3.041177749633789,
+ "step": 1819
+ },
+ {
+ "epoch": 25.27947598253275,
+ "grad_norm": 0.041605785489082336,
+ "learning_rate": 0.0006,
+ "loss": 3.052733898162842,
+ "step": 1820
+ },
+ {
+ "epoch": 25.29344978165939,
+ "grad_norm": 0.03979694843292236,
+ "learning_rate": 0.0006,
+ "loss": 3.030470371246338,
+ "step": 1821
+ },
+ {
+ "epoch": 25.307423580786025,
+ "grad_norm": 0.038538020104169846,
+ "learning_rate": 0.0006,
+ "loss": 3.0051193237304688,
+ "step": 1822
+ },
+ {
+ "epoch": 25.321397379912664,
+ "grad_norm": 0.035272035747766495,
+ "learning_rate": 0.0006,
+ "loss": 3.0283000469207764,
+ "step": 1823
+ },
+ {
+ "epoch": 25.335371179039303,
+ "grad_norm": 0.03455478698015213,
+ "learning_rate": 0.0006,
+ "loss": 3.070821523666382,
+ "step": 1824
+ },
+ {
+ "epoch": 25.349344978165938,
+ "grad_norm": 0.035375602543354034,
+ "learning_rate": 0.0006,
+ "loss": 3.0163800716400146,
+ "step": 1825
+ },
+ {
+ "epoch": 25.363318777292577,
+ "grad_norm": 0.03162388876080513,
+ "learning_rate": 0.0006,
+ "loss": 3.037997245788574,
+ "step": 1826
+ },
+ {
+ "epoch": 25.377292576419215,
+ "grad_norm": 0.031044775620102882,
+ "learning_rate": 0.0006,
+ "loss": 3.0624966621398926,
+ "step": 1827
+ },
+ {
+ "epoch": 25.39126637554585,
+ "grad_norm": 0.03079981915652752,
+ "learning_rate": 0.0006,
+ "loss": 3.0983829498291016,
+ "step": 1828
+ },
+ {
+ "epoch": 25.40524017467249,
+ "grad_norm": 0.029769832268357277,
+ "learning_rate": 0.0006,
+ "loss": 3.0633068084716797,
+ "step": 1829
+ },
+ {
+ "epoch": 25.419213973799128,
+ "grad_norm": 0.029182543978095055,
+ "learning_rate": 0.0006,
+ "loss": 3.038501501083374,
+ "step": 1830
+ },
+ {
+ "epoch": 25.433187772925763,
+ "grad_norm": 0.02948548085987568,
+ "learning_rate": 0.0006,
+ "loss": 3.074523448944092,
+ "step": 1831
+ },
+ {
+ "epoch": 25.4471615720524,
+ "grad_norm": 0.02877483330667019,
+ "learning_rate": 0.0006,
+ "loss": 3.067094326019287,
+ "step": 1832
+ },
+ {
+ "epoch": 25.46113537117904,
+ "grad_norm": 0.029504863545298576,
+ "learning_rate": 0.0006,
+ "loss": 3.071795701980591,
+ "step": 1833
+ },
+ {
+ "epoch": 25.475109170305675,
+ "grad_norm": 0.030246607959270477,
+ "learning_rate": 0.0006,
+ "loss": 3.0463738441467285,
+ "step": 1834
+ },
+ {
+ "epoch": 25.489082969432314,
+ "grad_norm": 0.03195366635918617,
+ "learning_rate": 0.0006,
+ "loss": 3.1079678535461426,
+ "step": 1835
+ },
+ {
+ "epoch": 25.503056768558952,
+ "grad_norm": 0.0315500870347023,
+ "learning_rate": 0.0006,
+ "loss": 3.074368953704834,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51703056768559,
+ "grad_norm": 0.03132857382297516,
+ "learning_rate": 0.0006,
+ "loss": 3.070516347885132,
+ "step": 1837
+ },
+ {
+ "epoch": 25.531004366812226,
+ "grad_norm": 0.031229723244905472,
+ "learning_rate": 0.0006,
+ "loss": 3.129385471343994,
+ "step": 1838
+ },
+ {
+ "epoch": 25.544978165938865,
+ "grad_norm": 0.027454618364572525,
+ "learning_rate": 0.0006,
+ "loss": 3.0627448558807373,
+ "step": 1839
+ },
+ {
+ "epoch": 25.558951965065503,
+ "grad_norm": 0.028137732297182083,
+ "learning_rate": 0.0006,
+ "loss": 3.109487533569336,
+ "step": 1840
+ },
+ {
+ "epoch": 25.57292576419214,
+ "grad_norm": 0.029513249173760414,
+ "learning_rate": 0.0006,
+ "loss": 3.0803885459899902,
+ "step": 1841
+ },
+ {
+ "epoch": 25.586899563318777,
+ "grad_norm": 0.02965722233057022,
+ "learning_rate": 0.0006,
+ "loss": 3.105023145675659,
+ "step": 1842
+ },
+ {
+ "epoch": 25.600873362445416,
+ "grad_norm": 0.027627428993582726,
+ "learning_rate": 0.0006,
+ "loss": 3.1149749755859375,
+ "step": 1843
+ },
+ {
+ "epoch": 25.61484716157205,
+ "grad_norm": 0.026547718793153763,
+ "learning_rate": 0.0006,
+ "loss": 3.061279058456421,
+ "step": 1844
+ },
+ {
+ "epoch": 25.62882096069869,
+ "grad_norm": 0.025937994942069054,
+ "learning_rate": 0.0006,
+ "loss": 3.106267213821411,
+ "step": 1845
+ },
+ {
+ "epoch": 25.64279475982533,
+ "grad_norm": 0.024786189198493958,
+ "learning_rate": 0.0006,
+ "loss": 3.1162233352661133,
+ "step": 1846
+ },
+ {
+ "epoch": 25.656768558951963,
+ "grad_norm": 0.024458372965455055,
+ "learning_rate": 0.0006,
+ "loss": 3.0887248516082764,
+ "step": 1847
+ },
+ {
+ "epoch": 25.670742358078602,
+ "grad_norm": 0.02396211586892605,
+ "learning_rate": 0.0006,
+ "loss": 3.0862269401550293,
+ "step": 1848
+ },
+ {
+ "epoch": 25.68471615720524,
+ "grad_norm": 0.025120655074715614,
+ "learning_rate": 0.0006,
+ "loss": 3.1100106239318848,
+ "step": 1849
+ },
+ {
+ "epoch": 25.69868995633188,
+ "grad_norm": 0.023946302011609077,
+ "learning_rate": 0.0006,
+ "loss": 3.1287240982055664,
+ "step": 1850
+ },
+ {
+ "epoch": 25.712663755458514,
+ "grad_norm": 0.024584904313087463,
+ "learning_rate": 0.0006,
+ "loss": 3.131906270980835,
+ "step": 1851
+ },
+ {
+ "epoch": 25.726637554585153,
+ "grad_norm": 0.024075916036963463,
+ "learning_rate": 0.0006,
+ "loss": 3.1310033798217773,
+ "step": 1852
+ },
+ {
+ "epoch": 25.74061135371179,
+ "grad_norm": 0.024674106389284134,
+ "learning_rate": 0.0006,
+ "loss": 3.098094940185547,
+ "step": 1853
+ },
+ {
+ "epoch": 25.754585152838427,
+ "grad_norm": 0.02386128157377243,
+ "learning_rate": 0.0006,
+ "loss": 3.13789963722229,
+ "step": 1854
+ },
+ {
+ "epoch": 25.768558951965066,
+ "grad_norm": 0.023464003577828407,
+ "learning_rate": 0.0006,
+ "loss": 3.130636215209961,
+ "step": 1855
+ },
+ {
+ "epoch": 25.782532751091704,
+ "grad_norm": 0.022808177396655083,
+ "learning_rate": 0.0006,
+ "loss": 3.0649960041046143,
+ "step": 1856
+ },
+ {
+ "epoch": 25.79650655021834,
+ "grad_norm": 0.02347465232014656,
+ "learning_rate": 0.0006,
+ "loss": 3.1142053604125977,
+ "step": 1857
+ },
+ {
+ "epoch": 25.810480349344978,
+ "grad_norm": 0.022884836420416832,
+ "learning_rate": 0.0006,
+ "loss": 3.135101795196533,
+ "step": 1858
+ },
+ {
+ "epoch": 25.824454148471617,
+ "grad_norm": 0.022401098161935806,
+ "learning_rate": 0.0006,
+ "loss": 3.1598546504974365,
+ "step": 1859
+ },
+ {
+ "epoch": 25.83842794759825,
+ "grad_norm": 0.024321401491761208,
+ "learning_rate": 0.0006,
+ "loss": 3.1175436973571777,
+ "step": 1860
+ },
+ {
+ "epoch": 25.85240174672489,
+ "grad_norm": 0.0246965941041708,
+ "learning_rate": 0.0006,
+ "loss": 3.103957176208496,
+ "step": 1861
+ },
+ {
+ "epoch": 25.86637554585153,
+ "grad_norm": 0.02330162189900875,
+ "learning_rate": 0.0006,
+ "loss": 3.1311264038085938,
+ "step": 1862
+ },
+ {
+ "epoch": 25.880349344978168,
+ "grad_norm": 0.02354249730706215,
+ "learning_rate": 0.0006,
+ "loss": 3.14554500579834,
+ "step": 1863
+ },
+ {
+ "epoch": 25.894323144104803,
+ "grad_norm": 0.023865245282649994,
+ "learning_rate": 0.0006,
+ "loss": 3.124208927154541,
+ "step": 1864
+ },
+ {
+ "epoch": 25.90829694323144,
+ "grad_norm": 0.023171618580818176,
+ "learning_rate": 0.0006,
+ "loss": 3.1324727535247803,
+ "step": 1865
+ },
+ {
+ "epoch": 25.92227074235808,
+ "grad_norm": 0.023055147379636765,
+ "learning_rate": 0.0006,
+ "loss": 3.141408920288086,
+ "step": 1866
+ },
+ {
+ "epoch": 25.936244541484715,
+ "grad_norm": 0.02303205616772175,
+ "learning_rate": 0.0006,
+ "loss": 3.135986804962158,
+ "step": 1867
+ },
+ {
+ "epoch": 25.950218340611354,
+ "grad_norm": 0.02289523370563984,
+ "learning_rate": 0.0006,
+ "loss": 3.1296586990356445,
+ "step": 1868
+ },
+ {
+ "epoch": 25.964192139737992,
+ "grad_norm": 0.024415697902441025,
+ "learning_rate": 0.0006,
+ "loss": 3.119215726852417,
+ "step": 1869
+ },
+ {
+ "epoch": 25.978165938864628,
+ "grad_norm": 0.024061039090156555,
+ "learning_rate": 0.0006,
+ "loss": 3.096515417098999,
+ "step": 1870
+ },
+ {
+ "epoch": 25.992139737991266,
+ "grad_norm": 0.021828658878803253,
+ "learning_rate": 0.0006,
+ "loss": 3.1706314086914062,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.025072937831282616,
+ "learning_rate": 0.0006,
+ "loss": 3.0891950130462646,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 4.104246616363525,
+ "eval_runtime": 50.0171,
+ "eval_samples_per_second": 48.823,
+ "eval_steps_per_second": 1.539,
+ "step": 1872
+ },
+ {
+ "epoch": 26.01397379912664,
+ "grad_norm": 0.031121261417865753,
+ "learning_rate": 0.0006,
+ "loss": 2.9661660194396973,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027947598253274,
+ "grad_norm": 0.04691348224878311,
+ "learning_rate": 0.0006,
+ "loss": 2.932932138442993,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041921397379912,
+ "grad_norm": 0.054467298090457916,
+ "learning_rate": 0.0006,
+ "loss": 2.9723329544067383,
+ "step": 1875
+ },
+ {
+ "epoch": 26.05589519650655,
+ "grad_norm": 0.055070292204618454,
+ "learning_rate": 0.0006,
+ "loss": 2.941164016723633,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069868995633186,
+ "grad_norm": 0.06226547062397003,
+ "learning_rate": 0.0006,
+ "loss": 2.9275927543640137,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083842794759825,
+ "grad_norm": 0.08149895071983337,
+ "learning_rate": 0.0006,
+ "loss": 2.9974710941314697,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097816593886463,
+ "grad_norm": 0.07903563231229782,
+ "learning_rate": 0.0006,
+ "loss": 3.028019666671753,
+ "step": 1879
+ },
+ {
+ "epoch": 26.111790393013102,
+ "grad_norm": 0.07048483937978745,
+ "learning_rate": 0.0006,
+ "loss": 3.0385470390319824,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125764192139737,
+ "grad_norm": 0.07622414827346802,
+ "learning_rate": 0.0006,
+ "loss": 3.006513833999634,
+ "step": 1881
+ },
+ {
+ "epoch": 26.139737991266376,
+ "grad_norm": 0.06729200482368469,
+ "learning_rate": 0.0006,
+ "loss": 3.042820453643799,
+ "step": 1882
+ },
+ {
+ "epoch": 26.153711790393015,
+ "grad_norm": 0.0560869500041008,
+ "learning_rate": 0.0006,
+ "loss": 3.0113673210144043,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16768558951965,
+ "grad_norm": 0.05453485623002052,
+ "learning_rate": 0.0006,
+ "loss": 3.005843162536621,
+ "step": 1884
+ },
+ {
+ "epoch": 26.18165938864629,
+ "grad_norm": 0.05410083383321762,
+ "learning_rate": 0.0006,
+ "loss": 3.0122809410095215,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195633187772927,
+ "grad_norm": 0.05099239945411682,
+ "learning_rate": 0.0006,
+ "loss": 3.003960132598877,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209606986899562,
+ "grad_norm": 0.054503440856933594,
+ "learning_rate": 0.0006,
+ "loss": 3.0250349044799805,
+ "step": 1887
+ },
+ {
+ "epoch": 26.2235807860262,
+ "grad_norm": 0.06119848042726517,
+ "learning_rate": 0.0006,
+ "loss": 3.013659954071045,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23755458515284,
+ "grad_norm": 0.05560006573796272,
+ "learning_rate": 0.0006,
+ "loss": 3.045351028442383,
+ "step": 1889
+ },
+ {
+ "epoch": 26.251528384279474,
+ "grad_norm": 0.04513552039861679,
+ "learning_rate": 0.0006,
+ "loss": 3.0176339149475098,
+ "step": 1890
+ },
+ {
+ "epoch": 26.265502183406113,
+ "grad_norm": 0.04880162701010704,
+ "learning_rate": 0.0006,
+ "loss": 2.997415065765381,
+ "step": 1891
+ },
+ {
+ "epoch": 26.27947598253275,
+ "grad_norm": 0.04402848333120346,
+ "learning_rate": 0.0006,
+ "loss": 3.035266876220703,
+ "step": 1892
+ },
+ {
+ "epoch": 26.29344978165939,
+ "grad_norm": 0.040773630142211914,
+ "learning_rate": 0.0006,
+ "loss": 3.0323173999786377,
+ "step": 1893
+ },
+ {
+ "epoch": 26.307423580786025,
+ "grad_norm": 0.03853452205657959,
+ "learning_rate": 0.0006,
+ "loss": 3.0291802883148193,
+ "step": 1894
+ },
+ {
+ "epoch": 26.321397379912664,
+ "grad_norm": 0.037200599908828735,
+ "learning_rate": 0.0006,
+ "loss": 3.0359907150268555,
+ "step": 1895
+ },
+ {
+ "epoch": 26.335371179039303,
+ "grad_norm": 0.035764336585998535,
+ "learning_rate": 0.0006,
+ "loss": 3.017059326171875,
+ "step": 1896
+ },
+ {
+ "epoch": 26.349344978165938,
+ "grad_norm": 0.0344136580824852,
+ "learning_rate": 0.0006,
+ "loss": 3.0438151359558105,
+ "step": 1897
+ },
+ {
+ "epoch": 26.363318777292577,
+ "grad_norm": 0.03413735702633858,
+ "learning_rate": 0.0006,
+ "loss": 3.0627403259277344,
+ "step": 1898
+ },
+ {
+ "epoch": 26.377292576419215,
+ "grad_norm": 0.03260914236307144,
+ "learning_rate": 0.0006,
+ "loss": 2.9989752769470215,
+ "step": 1899
+ },
+ {
+ "epoch": 26.39126637554585,
+ "grad_norm": 0.03044072724878788,
+ "learning_rate": 0.0006,
+ "loss": 3.0424299240112305,
+ "step": 1900
+ },
+ {
+ "epoch": 26.40524017467249,
+ "grad_norm": 0.030227871611714363,
+ "learning_rate": 0.0006,
+ "loss": 3.0220985412597656,
+ "step": 1901
+ },
+ {
+ "epoch": 26.419213973799128,
+ "grad_norm": 0.031268492341041565,
+ "learning_rate": 0.0006,
+ "loss": 3.056239128112793,
+ "step": 1902
+ },
+ {
+ "epoch": 26.433187772925763,
+ "grad_norm": 0.028938250616192818,
+ "learning_rate": 0.0006,
+ "loss": 3.017686367034912,
+ "step": 1903
+ },
+ {
+ "epoch": 26.4471615720524,
+ "grad_norm": 0.02674158848822117,
+ "learning_rate": 0.0006,
+ "loss": 3.066281318664551,
+ "step": 1904
+ },
+ {
+ "epoch": 26.46113537117904,
+ "grad_norm": 0.028296295553445816,
+ "learning_rate": 0.0006,
+ "loss": 3.02766752243042,
+ "step": 1905
+ },
+ {
+ "epoch": 26.475109170305675,
+ "grad_norm": 0.03080872818827629,
+ "learning_rate": 0.0006,
+ "loss": 3.059089422225952,
+ "step": 1906
+ },
+ {
+ "epoch": 26.489082969432314,
+ "grad_norm": 0.028370540589094162,
+ "learning_rate": 0.0006,
+ "loss": 3.0661725997924805,
+ "step": 1907
+ },
+ {
+ "epoch": 26.503056768558952,
+ "grad_norm": 0.025940680876374245,
+ "learning_rate": 0.0006,
+ "loss": 3.050424098968506,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51703056768559,
+ "grad_norm": 0.025786688551306725,
+ "learning_rate": 0.0006,
+ "loss": 3.035883665084839,
+ "step": 1909
+ },
+ {
+ "epoch": 26.531004366812226,
+ "grad_norm": 0.025683339685201645,
+ "learning_rate": 0.0006,
+ "loss": 3.057992935180664,
+ "step": 1910
+ },
+ {
+ "epoch": 26.544978165938865,
+ "grad_norm": 0.028027107939124107,
+ "learning_rate": 0.0006,
+ "loss": 3.047372579574585,
+ "step": 1911
+ },
+ {
+ "epoch": 26.558951965065503,
+ "grad_norm": 0.02833317033946514,
+ "learning_rate": 0.0006,
+ "loss": 3.056609630584717,
+ "step": 1912
+ },
+ {
+ "epoch": 26.57292576419214,
+ "grad_norm": 0.028734203428030014,
+ "learning_rate": 0.0006,
+ "loss": 3.08479642868042,
+ "step": 1913
+ },
+ {
+ "epoch": 26.586899563318777,
+ "grad_norm": 0.027691153809428215,
+ "learning_rate": 0.0006,
+ "loss": 3.0392603874206543,
+ "step": 1914
+ },
+ {
+ "epoch": 26.600873362445416,
+ "grad_norm": 0.0263577438890934,
+ "learning_rate": 0.0006,
+ "loss": 3.0504343509674072,
+ "step": 1915
+ },
+ {
+ "epoch": 26.61484716157205,
+ "grad_norm": 0.026692545041441917,
+ "learning_rate": 0.0006,
+ "loss": 3.100642204284668,
+ "step": 1916
+ },
+ {
+ "epoch": 26.62882096069869,
+ "grad_norm": 0.025303112342953682,
+ "learning_rate": 0.0006,
+ "loss": 3.05635929107666,
+ "step": 1917
+ },
+ {
+ "epoch": 26.64279475982533,
+ "grad_norm": 0.024708664044737816,
+ "learning_rate": 0.0006,
+ "loss": 3.059967517852783,
+ "step": 1918
+ },
+ {
+ "epoch": 26.656768558951963,
+ "grad_norm": 0.02639661729335785,
+ "learning_rate": 0.0006,
+ "loss": 3.0737743377685547,
+ "step": 1919
+ },
+ {
+ "epoch": 26.670742358078602,
+ "grad_norm": 0.025596698746085167,
+ "learning_rate": 0.0006,
+ "loss": 3.067931890487671,
+ "step": 1920
+ },
+ {
+ "epoch": 26.68471615720524,
+ "grad_norm": 0.02229447290301323,
+ "learning_rate": 0.0006,
+ "loss": 3.0820088386535645,
+ "step": 1921
+ },
+ {
+ "epoch": 26.69868995633188,
+ "grad_norm": 0.02375129424035549,
+ "learning_rate": 0.0006,
+ "loss": 3.07956862449646,
+ "step": 1922
+ },
+ {
+ "epoch": 26.712663755458514,
+ "grad_norm": 0.02399134822189808,
+ "learning_rate": 0.0006,
+ "loss": 3.061767101287842,
+ "step": 1923
+ },
+ {
+ "epoch": 26.726637554585153,
+ "grad_norm": 0.024671411141753197,
+ "learning_rate": 0.0006,
+ "loss": 3.1015849113464355,
+ "step": 1924
+ },
+ {
+ "epoch": 26.74061135371179,
+ "grad_norm": 0.024321842938661575,
+ "learning_rate": 0.0006,
+ "loss": 3.0476126670837402,
+ "step": 1925
+ },
+ {
+ "epoch": 26.754585152838427,
+ "grad_norm": 0.023859843611717224,
+ "learning_rate": 0.0006,
+ "loss": 3.0923385620117188,
+ "step": 1926
+ },
+ {
+ "epoch": 26.768558951965066,
+ "grad_norm": 0.024472227320075035,
+ "learning_rate": 0.0006,
+ "loss": 3.0999197959899902,
+ "step": 1927
+ },
+ {
+ "epoch": 26.782532751091704,
+ "grad_norm": 0.02513224445283413,
+ "learning_rate": 0.0006,
+ "loss": 3.067659854888916,
+ "step": 1928
+ },
+ {
+ "epoch": 26.79650655021834,
+ "grad_norm": 0.023755615577101707,
+ "learning_rate": 0.0006,
+ "loss": 3.070265293121338,
+ "step": 1929
+ },
+ {
+ "epoch": 26.810480349344978,
+ "grad_norm": 0.023443203419446945,
+ "learning_rate": 0.0006,
+ "loss": 3.0928702354431152,
+ "step": 1930
+ },
+ {
+ "epoch": 26.824454148471617,
+ "grad_norm": 0.024389786645770073,
+ "learning_rate": 0.0006,
+ "loss": 3.039468288421631,
+ "step": 1931
+ },
+ {
+ "epoch": 26.83842794759825,
+ "grad_norm": 0.021939845755696297,
+ "learning_rate": 0.0006,
+ "loss": 3.0597710609436035,
+ "step": 1932
+ },
+ {
+ "epoch": 26.85240174672489,
+ "grad_norm": 0.022113796323537827,
+ "learning_rate": 0.0006,
+ "loss": 3.078843593597412,
+ "step": 1933
+ },
+ {
+ "epoch": 26.86637554585153,
+ "grad_norm": 0.023516526445746422,
+ "learning_rate": 0.0006,
+ "loss": 3.136680841445923,
+ "step": 1934
+ },
+ {
+ "epoch": 26.880349344978168,
+ "grad_norm": 0.023710910230875015,
+ "learning_rate": 0.0006,
+ "loss": 3.103081703186035,
+ "step": 1935
+ },
+ {
+ "epoch": 26.894323144104803,
+ "grad_norm": 0.023430297151207924,
+ "learning_rate": 0.0006,
+ "loss": 3.098705291748047,
+ "step": 1936
+ },
+ {
+ "epoch": 26.90829694323144,
+ "grad_norm": 0.023761266842484474,
+ "learning_rate": 0.0006,
+ "loss": 3.1277971267700195,
+ "step": 1937
+ },
+ {
+ "epoch": 26.92227074235808,
+ "grad_norm": 0.023715797811746597,
+ "learning_rate": 0.0006,
+ "loss": 3.0877621173858643,
+ "step": 1938
+ },
+ {
+ "epoch": 26.936244541484715,
+ "grad_norm": 0.023883594200015068,
+ "learning_rate": 0.0006,
+ "loss": 3.087163209915161,
+ "step": 1939
+ },
+ {
+ "epoch": 26.950218340611354,
+ "grad_norm": 0.022293508052825928,
+ "learning_rate": 0.0006,
+ "loss": 3.086988925933838,
+ "step": 1940
+ },
+ {
+ "epoch": 26.964192139737992,
+ "grad_norm": 0.022041622549295425,
+ "learning_rate": 0.0006,
+ "loss": 3.1225247383117676,
+ "step": 1941
+ },
+ {
+ "epoch": 26.978165938864628,
+ "grad_norm": 0.021637167781591415,
+ "learning_rate": 0.0006,
+ "loss": 3.0737392902374268,
+ "step": 1942
+ },
+ {
+ "epoch": 26.992139737991266,
+ "grad_norm": 0.02192411944270134,
+ "learning_rate": 0.0006,
+ "loss": 3.104888916015625,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.025614608079195023,
+ "learning_rate": 0.0006,
+ "loss": 3.12424898147583,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 4.125223636627197,
+ "eval_runtime": 50.2001,
+ "eval_samples_per_second": 48.645,
+ "eval_steps_per_second": 1.534,
+ "step": 1944
+ },
+ {
+ "epoch": 27.01397379912664,
+ "grad_norm": 0.028453795239329338,
+ "learning_rate": 0.0006,
+ "loss": 2.879258632659912,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027947598253274,
+ "grad_norm": 0.04377718269824982,
+ "learning_rate": 0.0006,
+ "loss": 2.9013819694519043,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041921397379912,
+ "grad_norm": 0.049764763563871384,
+ "learning_rate": 0.0006,
+ "loss": 2.9127326011657715,
+ "step": 1947
+ },
+ {
+ "epoch": 27.05589519650655,
+ "grad_norm": 0.05033150315284729,
+ "learning_rate": 0.0006,
+ "loss": 2.8803203105926514,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069868995633186,
+ "grad_norm": 0.05057684704661369,
+ "learning_rate": 0.0006,
+ "loss": 2.9041876792907715,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083842794759825,
+ "grad_norm": 0.05503581836819649,
+ "learning_rate": 0.0006,
+ "loss": 2.9236111640930176,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097816593886463,
+ "grad_norm": 0.0504646934568882,
+ "learning_rate": 0.0006,
+ "loss": 2.898369789123535,
+ "step": 1951
+ },
+ {
+ "epoch": 27.111790393013102,
+ "grad_norm": 0.05223672091960907,
+ "learning_rate": 0.0006,
+ "loss": 2.922698974609375,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125764192139737,
+ "grad_norm": 0.061617255210876465,
+ "learning_rate": 0.0006,
+ "loss": 2.933682680130005,
+ "step": 1953
+ },
+ {
+ "epoch": 27.139737991266376,
+ "grad_norm": 0.06874233484268188,
+ "learning_rate": 0.0006,
+ "loss": 2.9357151985168457,
+ "step": 1954
+ },
+ {
+ "epoch": 27.153711790393015,
+ "grad_norm": 0.06190113350749016,
+ "learning_rate": 0.0006,
+ "loss": 2.954944610595703,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16768558951965,
+ "grad_norm": 0.05684139207005501,
+ "learning_rate": 0.0006,
+ "loss": 2.9126837253570557,
+ "step": 1956
+ },
+ {
+ "epoch": 27.18165938864629,
+ "grad_norm": 0.06056728586554527,
+ "learning_rate": 0.0006,
+ "loss": 2.9814395904541016,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195633187772927,
+ "grad_norm": 0.056225795298814774,
+ "learning_rate": 0.0006,
+ "loss": 2.991654872894287,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209606986899562,
+ "grad_norm": 0.045878518372774124,
+ "learning_rate": 0.0006,
+ "loss": 3.001042604446411,
+ "step": 1959
+ },
+ {
+ "epoch": 27.2235807860262,
+ "grad_norm": 0.0471920520067215,
+ "learning_rate": 0.0006,
+ "loss": 2.9564008712768555,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23755458515284,
+ "grad_norm": 0.053059689700603485,
+ "learning_rate": 0.0006,
+ "loss": 2.996217727661133,
+ "step": 1961
+ },
+ {
+ "epoch": 27.251528384279474,
+ "grad_norm": 0.0541369765996933,
+ "learning_rate": 0.0006,
+ "loss": 2.9720678329467773,
+ "step": 1962
+ },
+ {
+ "epoch": 27.265502183406113,
+ "grad_norm": 0.047301989048719406,
+ "learning_rate": 0.0006,
+ "loss": 2.9787089824676514,
+ "step": 1963
+ },
+ {
+ "epoch": 27.27947598253275,
+ "grad_norm": 0.046062350273132324,
+ "learning_rate": 0.0006,
+ "loss": 2.9771294593811035,
+ "step": 1964
+ },
+ {
+ "epoch": 27.29344978165939,
+ "grad_norm": 0.05031602457165718,
+ "learning_rate": 0.0006,
+ "loss": 2.9904980659484863,
+ "step": 1965
+ },
+ {
+ "epoch": 27.307423580786025,
+ "grad_norm": 0.049279652535915375,
+ "learning_rate": 0.0006,
+ "loss": 2.994781494140625,
+ "step": 1966
+ },
+ {
+ "epoch": 27.321397379912664,
+ "grad_norm": 0.05007164552807808,
+ "learning_rate": 0.0006,
+ "loss": 3.0293216705322266,
+ "step": 1967
+ },
+ {
+ "epoch": 27.335371179039303,
+ "grad_norm": 0.053599122911691666,
+ "learning_rate": 0.0006,
+ "loss": 2.966653347015381,
+ "step": 1968
+ },
+ {
+ "epoch": 27.349344978165938,
+ "grad_norm": 0.053869765251874924,
+ "learning_rate": 0.0006,
+ "loss": 2.986807107925415,
+ "step": 1969
+ },
+ {
+ "epoch": 27.363318777292577,
+ "grad_norm": 0.049204543232917786,
+ "learning_rate": 0.0006,
+ "loss": 3.035799264907837,
+ "step": 1970
+ },
+ {
+ "epoch": 27.377292576419215,
+ "grad_norm": 0.041741687804460526,
+ "learning_rate": 0.0006,
+ "loss": 3.01177978515625,
+ "step": 1971
+ },
+ {
+ "epoch": 27.39126637554585,
+ "grad_norm": 0.04108894243836403,
+ "learning_rate": 0.0006,
+ "loss": 3.0135087966918945,
+ "step": 1972
+ },
+ {
+ "epoch": 27.40524017467249,
+ "grad_norm": 0.03928737714886665,
+ "learning_rate": 0.0006,
+ "loss": 2.9952547550201416,
+ "step": 1973
+ },
+ {
+ "epoch": 27.419213973799128,
+ "grad_norm": 0.038500797003507614,
+ "learning_rate": 0.0006,
+ "loss": 3.047365188598633,
+ "step": 1974
+ },
+ {
+ "epoch": 27.433187772925763,
+ "grad_norm": 0.03740246221423149,
+ "learning_rate": 0.0006,
+ "loss": 3.033809185028076,
+ "step": 1975
+ },
+ {
+ "epoch": 27.4471615720524,
+ "grad_norm": 0.03386867046356201,
+ "learning_rate": 0.0006,
+ "loss": 3.025137424468994,
+ "step": 1976
+ },
+ {
+ "epoch": 27.46113537117904,
+ "grad_norm": 0.03259620815515518,
+ "learning_rate": 0.0006,
+ "loss": 3.031647205352783,
+ "step": 1977
+ },
+ {
+ "epoch": 27.475109170305675,
+ "grad_norm": 0.03135821223258972,
+ "learning_rate": 0.0006,
+ "loss": 3.038449287414551,
+ "step": 1978
+ },
+ {
+ "epoch": 27.489082969432314,
+ "grad_norm": 0.02891516126692295,
+ "learning_rate": 0.0006,
+ "loss": 3.0067849159240723,
+ "step": 1979
+ },
+ {
+ "epoch": 27.503056768558952,
+ "grad_norm": 0.029571816325187683,
+ "learning_rate": 0.0006,
+ "loss": 3.0450942516326904,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51703056768559,
+ "grad_norm": 0.02915847674012184,
+ "learning_rate": 0.0006,
+ "loss": 3.0238382816314697,
+ "step": 1981
+ },
+ {
+ "epoch": 27.531004366812226,
+ "grad_norm": 0.02730637416243553,
+ "learning_rate": 0.0006,
+ "loss": 2.9970340728759766,
+ "step": 1982
+ },
+ {
+ "epoch": 27.544978165938865,
+ "grad_norm": 0.026363128796219826,
+ "learning_rate": 0.0006,
+ "loss": 3.042269229888916,
+ "step": 1983
+ },
+ {
+ "epoch": 27.558951965065503,
+ "grad_norm": 0.02613256685435772,
+ "learning_rate": 0.0006,
+ "loss": 2.9850640296936035,
+ "step": 1984
+ },
+ {
+ "epoch": 27.57292576419214,
+ "grad_norm": 0.025504328310489655,
+ "learning_rate": 0.0006,
+ "loss": 3.02850341796875,
+ "step": 1985
+ },
+ {
+ "epoch": 27.586899563318777,
+ "grad_norm": 0.025076977908611298,
+ "learning_rate": 0.0006,
+ "loss": 3.022831678390503,
+ "step": 1986
+ },
+ {
+ "epoch": 27.600873362445416,
+ "grad_norm": 0.026498636230826378,
+ "learning_rate": 0.0006,
+ "loss": 3.036193370819092,
+ "step": 1987
+ },
+ {
+ "epoch": 27.61484716157205,
+ "grad_norm": 0.02634165622293949,
+ "learning_rate": 0.0006,
+ "loss": 2.988772392272949,
+ "step": 1988
+ },
+ {
+ "epoch": 27.62882096069869,
+ "grad_norm": 0.02386527881026268,
+ "learning_rate": 0.0006,
+ "loss": 3.0652225017547607,
+ "step": 1989
+ },
+ {
+ "epoch": 27.64279475982533,
+ "grad_norm": 0.025630373507738113,
+ "learning_rate": 0.0006,
+ "loss": 3.025211811065674,
+ "step": 1990
+ },
+ {
+ "epoch": 27.656768558951963,
+ "grad_norm": 0.02564374916255474,
+ "learning_rate": 0.0006,
+ "loss": 3.038477659225464,
+ "step": 1991
+ },
+ {
+ "epoch": 27.670742358078602,
+ "grad_norm": 0.024687733501195908,
+ "learning_rate": 0.0006,
+ "loss": 3.0274953842163086,
+ "step": 1992
+ },
+ {
+ "epoch": 27.68471615720524,
+ "grad_norm": 0.0237992312759161,
+ "learning_rate": 0.0006,
+ "loss": 3.020660638809204,
+ "step": 1993
+ },
+ {
+ "epoch": 27.69868995633188,
+ "grad_norm": 0.024008993059396744,
+ "learning_rate": 0.0006,
+ "loss": 3.0048153400421143,
+ "step": 1994
+ },
+ {
+ "epoch": 27.712663755458514,
+ "grad_norm": 0.024011511355638504,
+ "learning_rate": 0.0006,
+ "loss": 3.028651714324951,
+ "step": 1995
+ },
+ {
+ "epoch": 27.726637554585153,
+ "grad_norm": 0.023767957463860512,
+ "learning_rate": 0.0006,
+ "loss": 3.024357795715332,
+ "step": 1996
+ },
+ {
+ "epoch": 27.74061135371179,
+ "grad_norm": 0.02491922304034233,
+ "learning_rate": 0.0006,
+ "loss": 3.0481948852539062,
+ "step": 1997
+ },
+ {
+ "epoch": 27.754585152838427,
+ "grad_norm": 0.023492073640227318,
+ "learning_rate": 0.0006,
+ "loss": 3.0265281200408936,
+ "step": 1998
+ },
+ {
+ "epoch": 27.768558951965066,
+ "grad_norm": 0.022904539480805397,
+ "learning_rate": 0.0006,
+ "loss": 3.035724401473999,
+ "step": 1999
+ },
+ {
+ "epoch": 27.782532751091704,
+ "grad_norm": 0.02523794211447239,
+ "learning_rate": 0.0006,
+ "loss": 3.0473437309265137,
+ "step": 2000
+ },
+ {
+ "epoch": 27.79650655021834,
+ "grad_norm": 0.02560942806303501,
+ "learning_rate": 0.0006,
+ "loss": 3.031550168991089,
+ "step": 2001
+ },
+ {
+ "epoch": 27.810480349344978,
+ "grad_norm": 0.025517819449305534,
+ "learning_rate": 0.0006,
+ "loss": 3.0686302185058594,
+ "step": 2002
+ },
+ {
+ "epoch": 27.824454148471617,
+ "grad_norm": 0.02572985179722309,
+ "learning_rate": 0.0006,
+ "loss": 3.07204270362854,
+ "step": 2003
+ },
+ {
+ "epoch": 27.83842794759825,
+ "grad_norm": 0.025370420888066292,
+ "learning_rate": 0.0006,
+ "loss": 3.0560848712921143,
+ "step": 2004
+ },
+ {
+ "epoch": 27.85240174672489,
+ "grad_norm": 0.02532627247273922,
+ "learning_rate": 0.0006,
+ "loss": 3.0176045894622803,
+ "step": 2005
+ },
+ {
+ "epoch": 27.86637554585153,
+ "grad_norm": 0.02456071600317955,
+ "learning_rate": 0.0006,
+ "loss": 3.0588455200195312,
+ "step": 2006
+ },
+ {
+ "epoch": 27.880349344978168,
+ "grad_norm": 0.025378121063113213,
+ "learning_rate": 0.0006,
+ "loss": 3.086975574493408,
+ "step": 2007
+ },
+ {
+ "epoch": 27.894323144104803,
+ "grad_norm": 0.024764427915215492,
+ "learning_rate": 0.0006,
+ "loss": 3.0386085510253906,
+ "step": 2008
+ },
+ {
+ "epoch": 27.90829694323144,
+ "grad_norm": 0.024318184703588486,
+ "learning_rate": 0.0006,
+ "loss": 3.0750131607055664,
+ "step": 2009
+ },
+ {
+ "epoch": 27.92227074235808,
+ "grad_norm": 0.023893442004919052,
+ "learning_rate": 0.0006,
+ "loss": 3.0715298652648926,
+ "step": 2010
+ },
+ {
+ "epoch": 27.936244541484715,
+ "grad_norm": 0.023891527205705643,
+ "learning_rate": 0.0006,
+ "loss": 3.063795804977417,
+ "step": 2011
+ },
+ {
+ "epoch": 27.950218340611354,
+ "grad_norm": 0.023563770577311516,
+ "learning_rate": 0.0006,
+ "loss": 3.066619873046875,
+ "step": 2012
+ },
+ {
+ "epoch": 27.964192139737992,
+ "grad_norm": 0.023340724408626556,
+ "learning_rate": 0.0006,
+ "loss": 3.0637826919555664,
+ "step": 2013
+ },
+ {
+ "epoch": 27.978165938864628,
+ "grad_norm": 0.024990880861878395,
+ "learning_rate": 0.0006,
+ "loss": 3.0814566612243652,
+ "step": 2014
+ },
+ {
+ "epoch": 27.992139737991266,
+ "grad_norm": 0.024654274806380272,
+ "learning_rate": 0.0006,
+ "loss": 3.0768063068389893,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.02644839696586132,
+ "learning_rate": 0.0006,
+ "loss": 3.0343258380889893,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 4.1515045166015625,
+ "eval_runtime": 50.2049,
+ "eval_samples_per_second": 48.641,
+ "eval_steps_per_second": 1.534,
+ "step": 2016
+ },
+ {
+ "epoch": 28.01397379912664,
+ "grad_norm": 0.03195852413773537,
+ "learning_rate": 0.0006,
+ "loss": 2.834456443786621,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027947598253274,
+ "grad_norm": 0.0489632710814476,
+ "learning_rate": 0.0006,
+ "loss": 2.864487648010254,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041921397379912,
+ "grad_norm": 0.052848201245069504,
+ "learning_rate": 0.0006,
+ "loss": 2.881183624267578,
+ "step": 2019
+ },
+ {
+ "epoch": 28.05589519650655,
+ "grad_norm": 0.05033821240067482,
+ "learning_rate": 0.0006,
+ "loss": 2.8849921226501465,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069868995633186,
+ "grad_norm": 0.04925774410367012,
+ "learning_rate": 0.0006,
+ "loss": 2.8940699100494385,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083842794759825,
+ "grad_norm": 0.048295699059963226,
+ "learning_rate": 0.0006,
+ "loss": 2.8744611740112305,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097816593886463,
+ "grad_norm": 0.05191510170698166,
+ "learning_rate": 0.0006,
+ "loss": 2.8981003761291504,
+ "step": 2023
+ },
+ {
+ "epoch": 28.111790393013102,
+ "grad_norm": 0.054681845009326935,
+ "learning_rate": 0.0006,
+ "loss": 2.894259452819824,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125764192139737,
+ "grad_norm": 0.05124315246939659,
+ "learning_rate": 0.0006,
+ "loss": 2.8902621269226074,
+ "step": 2025
+ },
+ {
+ "epoch": 28.139737991266376,
+ "grad_norm": 0.05269423872232437,
+ "learning_rate": 0.0006,
+ "loss": 2.9419264793395996,
+ "step": 2026
+ },
+ {
+ "epoch": 28.153711790393015,
+ "grad_norm": 0.052072685211896896,
+ "learning_rate": 0.0006,
+ "loss": 2.8902721405029297,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16768558951965,
+ "grad_norm": 0.04868622496724129,
+ "learning_rate": 0.0006,
+ "loss": 2.9544949531555176,
+ "step": 2028
+ },
+ {
+ "epoch": 28.18165938864629,
+ "grad_norm": 0.04919573664665222,
+ "learning_rate": 0.0006,
+ "loss": 2.9149084091186523,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195633187772927,
+ "grad_norm": 0.05350393056869507,
+ "learning_rate": 0.0006,
+ "loss": 2.9301857948303223,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209606986899562,
+ "grad_norm": 0.06072673574090004,
+ "learning_rate": 0.0006,
+ "loss": 2.937542200088501,
+ "step": 2031
+ },
+ {
+ "epoch": 28.2235807860262,
+ "grad_norm": 0.06678931415081024,
+ "learning_rate": 0.0006,
+ "loss": 2.9437155723571777,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23755458515284,
+ "grad_norm": 0.07136489450931549,
+ "learning_rate": 0.0006,
+ "loss": 2.9720969200134277,
+ "step": 2033
+ },
+ {
+ "epoch": 28.251528384279474,
+ "grad_norm": 0.06340529769659042,
+ "learning_rate": 0.0006,
+ "loss": 2.957184076309204,
+ "step": 2034
+ },
+ {
+ "epoch": 28.265502183406113,
+ "grad_norm": 0.05951949581503868,
+ "learning_rate": 0.0006,
+ "loss": 2.9483275413513184,
+ "step": 2035
+ },
+ {
+ "epoch": 28.27947598253275,
+ "grad_norm": 0.05508637800812721,
+ "learning_rate": 0.0006,
+ "loss": 2.944632053375244,
+ "step": 2036
+ },
+ {
+ "epoch": 28.29344978165939,
+ "grad_norm": 0.04451477900147438,
+ "learning_rate": 0.0006,
+ "loss": 2.9538841247558594,
+ "step": 2037
+ },
+ {
+ "epoch": 28.307423580786025,
+ "grad_norm": 0.04283531755208969,
+ "learning_rate": 0.0006,
+ "loss": 2.942497730255127,
+ "step": 2038
+ },
+ {
+ "epoch": 28.321397379912664,
+ "grad_norm": 0.04256067052483559,
+ "learning_rate": 0.0006,
+ "loss": 2.9589486122131348,
+ "step": 2039
+ },
+ {
+ "epoch": 28.335371179039303,
+ "grad_norm": 0.040724314749240875,
+ "learning_rate": 0.0006,
+ "loss": 2.9297492504119873,
+ "step": 2040
+ },
+ {
+ "epoch": 28.349344978165938,
+ "grad_norm": 0.035998500883579254,
+ "learning_rate": 0.0006,
+ "loss": 2.921250820159912,
+ "step": 2041
+ },
+ {
+ "epoch": 28.363318777292577,
+ "grad_norm": 0.03447495028376579,
+ "learning_rate": 0.0006,
+ "loss": 2.9901719093322754,
+ "step": 2042
+ },
+ {
+ "epoch": 28.377292576419215,
+ "grad_norm": 0.03475875034928322,
+ "learning_rate": 0.0006,
+ "loss": 2.975034236907959,
+ "step": 2043
+ },
+ {
+ "epoch": 28.39126637554585,
+ "grad_norm": 0.035763081163167953,
+ "learning_rate": 0.0006,
+ "loss": 2.9198880195617676,
+ "step": 2044
+ },
+ {
+ "epoch": 28.40524017467249,
+ "grad_norm": 0.03533506393432617,
+ "learning_rate": 0.0006,
+ "loss": 2.954592704772949,
+ "step": 2045
+ },
+ {
+ "epoch": 28.419213973799128,
+ "grad_norm": 0.03279201313853264,
+ "learning_rate": 0.0006,
+ "loss": 2.9453115463256836,
+ "step": 2046
+ },
+ {
+ "epoch": 28.433187772925763,
+ "grad_norm": 0.031335968524217606,
+ "learning_rate": 0.0006,
+ "loss": 2.9707398414611816,
+ "step": 2047
+ },
+ {
+ "epoch": 28.4471615720524,
+ "grad_norm": 0.028612999245524406,
+ "learning_rate": 0.0006,
+ "loss": 2.9935314655303955,
+ "step": 2048
+ },
+ {
+ "epoch": 28.46113537117904,
+ "grad_norm": 0.027722638100385666,
+ "learning_rate": 0.0006,
+ "loss": 2.937558650970459,
+ "step": 2049
+ },
+ {
+ "epoch": 28.475109170305675,
+ "grad_norm": 0.026583192870020866,
+ "learning_rate": 0.0006,
+ "loss": 2.9509410858154297,
+ "step": 2050
+ },
+ {
+ "epoch": 28.489082969432314,
+ "grad_norm": 0.026762869209051132,
+ "learning_rate": 0.0006,
+ "loss": 3.011293888092041,
+ "step": 2051
+ },
+ {
+ "epoch": 28.503056768558952,
+ "grad_norm": 0.027254173532128334,
+ "learning_rate": 0.0006,
+ "loss": 2.9635009765625,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51703056768559,
+ "grad_norm": 0.028218677267432213,
+ "learning_rate": 0.0006,
+ "loss": 2.9973299503326416,
+ "step": 2053
+ },
+ {
+ "epoch": 28.531004366812226,
+ "grad_norm": 0.028099076822400093,
+ "learning_rate": 0.0006,
+ "loss": 2.980783462524414,
+ "step": 2054
+ },
+ {
+ "epoch": 28.544978165938865,
+ "grad_norm": 0.02740541286766529,
+ "learning_rate": 0.0006,
+ "loss": 3.0181171894073486,
+ "step": 2055
+ },
+ {
+ "epoch": 28.558951965065503,
+ "grad_norm": 0.028045643121004105,
+ "learning_rate": 0.0006,
+ "loss": 2.998990774154663,
+ "step": 2056
+ },
+ {
+ "epoch": 28.57292576419214,
+ "grad_norm": 0.026816850528120995,
+ "learning_rate": 0.0006,
+ "loss": 3.0068860054016113,
+ "step": 2057
+ },
+ {
+ "epoch": 28.586899563318777,
+ "grad_norm": 0.025382595136761665,
+ "learning_rate": 0.0006,
+ "loss": 2.9418373107910156,
+ "step": 2058
+ },
+ {
+ "epoch": 28.600873362445416,
+ "grad_norm": 0.026060424745082855,
+ "learning_rate": 0.0006,
+ "loss": 2.936776638031006,
+ "step": 2059
+ },
+ {
+ "epoch": 28.61484716157205,
+ "grad_norm": 0.025853872299194336,
+ "learning_rate": 0.0006,
+ "loss": 3.0203466415405273,
+ "step": 2060
+ },
+ {
+ "epoch": 28.62882096069869,
+ "grad_norm": 0.02508033812046051,
+ "learning_rate": 0.0006,
+ "loss": 2.9945011138916016,
+ "step": 2061
+ },
+ {
+ "epoch": 28.64279475982533,
+ "grad_norm": 0.025970350950956345,
+ "learning_rate": 0.0006,
+ "loss": 2.9931695461273193,
+ "step": 2062
+ },
+ {
+ "epoch": 28.656768558951963,
+ "grad_norm": 0.025476455688476562,
+ "learning_rate": 0.0006,
+ "loss": 2.957230567932129,
+ "step": 2063
+ },
+ {
+ "epoch": 28.670742358078602,
+ "grad_norm": 0.026332074776291847,
+ "learning_rate": 0.0006,
+ "loss": 3.0264182090759277,
+ "step": 2064
+ },
+ {
+ "epoch": 28.68471615720524,
+ "grad_norm": 0.025519322603940964,
+ "learning_rate": 0.0006,
+ "loss": 3.0092458724975586,
+ "step": 2065
+ },
+ {
+ "epoch": 28.69868995633188,
+ "grad_norm": 0.024840593338012695,
+ "learning_rate": 0.0006,
+ "loss": 2.986766815185547,
+ "step": 2066
+ },
+ {
+ "epoch": 28.712663755458514,
+ "grad_norm": 0.02441803738474846,
+ "learning_rate": 0.0006,
+ "loss": 2.9874420166015625,
+ "step": 2067
+ },
+ {
+ "epoch": 28.726637554585153,
+ "grad_norm": 0.02630285918712616,
+ "learning_rate": 0.0006,
+ "loss": 3.0578904151916504,
+ "step": 2068
+ },
+ {
+ "epoch": 28.74061135371179,
+ "grad_norm": 0.026446865871548653,
+ "learning_rate": 0.0006,
+ "loss": 3.0013539791107178,
+ "step": 2069
+ },
+ {
+ "epoch": 28.754585152838427,
+ "grad_norm": 0.02450861781835556,
+ "learning_rate": 0.0006,
+ "loss": 3.0490686893463135,
+ "step": 2070
+ },
+ {
+ "epoch": 28.768558951965066,
+ "grad_norm": 0.02672298066318035,
+ "learning_rate": 0.0006,
+ "loss": 3.020845413208008,
+ "step": 2071
+ },
+ {
+ "epoch": 28.782532751091704,
+ "grad_norm": 0.025726495310664177,
+ "learning_rate": 0.0006,
+ "loss": 3.0180835723876953,
+ "step": 2072
+ },
+ {
+ "epoch": 28.79650655021834,
+ "grad_norm": 0.026580246165394783,
+ "learning_rate": 0.0006,
+ "loss": 2.991779327392578,
+ "step": 2073
+ },
+ {
+ "epoch": 28.810480349344978,
+ "grad_norm": 0.02619314193725586,
+ "learning_rate": 0.0006,
+ "loss": 2.963550329208374,
+ "step": 2074
+ },
+ {
+ "epoch": 28.824454148471617,
+ "grad_norm": 0.02470521256327629,
+ "learning_rate": 0.0006,
+ "loss": 2.9849443435668945,
+ "step": 2075
+ },
+ {
+ "epoch": 28.83842794759825,
+ "grad_norm": 0.02675030194222927,
+ "learning_rate": 0.0006,
+ "loss": 2.996417284011841,
+ "step": 2076
+ },
+ {
+ "epoch": 28.85240174672489,
+ "grad_norm": 0.02626962400972843,
+ "learning_rate": 0.0006,
+ "loss": 3.037600040435791,
+ "step": 2077
+ },
+ {
+ "epoch": 28.86637554585153,
+ "grad_norm": 0.025189539417624474,
+ "learning_rate": 0.0006,
+ "loss": 3.0162289142608643,
+ "step": 2078
+ },
+ {
+ "epoch": 28.880349344978168,
+ "grad_norm": 0.023836355656385422,
+ "learning_rate": 0.0006,
+ "loss": 3.0182363986968994,
+ "step": 2079
+ },
+ {
+ "epoch": 28.894323144104803,
+ "grad_norm": 0.025875985622406006,
+ "learning_rate": 0.0006,
+ "loss": 3.0712671279907227,
+ "step": 2080
+ },
+ {
+ "epoch": 28.90829694323144,
+ "grad_norm": 0.025787588208913803,
+ "learning_rate": 0.0006,
+ "loss": 3.060253858566284,
+ "step": 2081
+ },
+ {
+ "epoch": 28.92227074235808,
+ "grad_norm": 0.025029966607689857,
+ "learning_rate": 0.0006,
+ "loss": 3.0385570526123047,
+ "step": 2082
+ },
+ {
+ "epoch": 28.936244541484715,
+ "grad_norm": 0.024807918816804886,
+ "learning_rate": 0.0006,
+ "loss": 3.030642509460449,
+ "step": 2083
+ },
+ {
+ "epoch": 28.950218340611354,
+ "grad_norm": 0.02444799616932869,
+ "learning_rate": 0.0006,
+ "loss": 3.025789260864258,
+ "step": 2084
+ },
+ {
+ "epoch": 28.964192139737992,
+ "grad_norm": 0.02498369850218296,
+ "learning_rate": 0.0006,
+ "loss": 3.0041980743408203,
+ "step": 2085
+ },
+ {
+ "epoch": 28.978165938864628,
+ "grad_norm": 0.02519051544368267,
+ "learning_rate": 0.0006,
+ "loss": 3.0126523971557617,
+ "step": 2086
+ },
+ {
+ "epoch": 28.992139737991266,
+ "grad_norm": 0.026262952014803886,
+ "learning_rate": 0.0006,
+ "loss": 3.036421775817871,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.028925646096467972,
+ "learning_rate": 0.0006,
+ "loss": 2.9996514320373535,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 4.17269229888916,
+ "eval_runtime": 54.6168,
+ "eval_samples_per_second": 44.711,
+ "eval_steps_per_second": 1.41,
+ "step": 2088
+ },
+ {
+ "epoch": 29.01397379912664,
+ "grad_norm": 0.033029936254024506,
+ "learning_rate": 0.0006,
+ "loss": 2.8362483978271484,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027947598253274,
+ "grad_norm": 0.04538845643401146,
+ "learning_rate": 0.0006,
+ "loss": 2.8311057090759277,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041921397379912,
+ "grad_norm": 0.046482112258672714,
+ "learning_rate": 0.0006,
+ "loss": 2.851710319519043,
+ "step": 2091
+ },
+ {
+ "epoch": 29.05589519650655,
+ "grad_norm": 0.04495995491743088,
+ "learning_rate": 0.0006,
+ "loss": 2.8197240829467773,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069868995633186,
+ "grad_norm": 0.043497391045093536,
+ "learning_rate": 0.0006,
+ "loss": 2.835160255432129,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083842794759825,
+ "grad_norm": 0.042180925607681274,
+ "learning_rate": 0.0006,
+ "loss": 2.814297914505005,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097816593886463,
+ "grad_norm": 0.046564772725105286,
+ "learning_rate": 0.0006,
+ "loss": 2.8432681560516357,
+ "step": 2095
+ },
+ {
+ "epoch": 29.111790393013102,
+ "grad_norm": 0.05109454691410065,
+ "learning_rate": 0.0006,
+ "loss": 2.8209657669067383,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125764192139737,
+ "grad_norm": 0.054633282124996185,
+ "learning_rate": 0.0006,
+ "loss": 2.860410213470459,
+ "step": 2097
+ },
+ {
+ "epoch": 29.139737991266376,
+ "grad_norm": 0.05523914843797684,
+ "learning_rate": 0.0006,
+ "loss": 2.850083827972412,
+ "step": 2098
+ },
+ {
+ "epoch": 29.153711790393015,
+ "grad_norm": 0.055773504078388214,
+ "learning_rate": 0.0006,
+ "loss": 2.8240323066711426,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16768558951965,
+ "grad_norm": 0.054498568177223206,
+ "learning_rate": 0.0006,
+ "loss": 2.8628149032592773,
+ "step": 2100
+ },
+ {
+ "epoch": 29.18165938864629,
+ "grad_norm": 0.053030889481306076,
+ "learning_rate": 0.0006,
+ "loss": 2.8365299701690674,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195633187772927,
+ "grad_norm": 0.05545743182301521,
+ "learning_rate": 0.0006,
+ "loss": 2.884146213531494,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209606986899562,
+ "grad_norm": 0.057719431817531586,
+ "learning_rate": 0.0006,
+ "loss": 2.8857107162475586,
+ "step": 2103
+ },
+ {
+ "epoch": 29.2235807860262,
+ "grad_norm": 0.060189153999090195,
+ "learning_rate": 0.0006,
+ "loss": 2.896878242492676,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23755458515284,
+ "grad_norm": 0.06222223490476608,
+ "learning_rate": 0.0006,
+ "loss": 2.883173704147339,
+ "step": 2105
+ },
+ {
+ "epoch": 29.251528384279474,
+ "grad_norm": 0.06780146062374115,
+ "learning_rate": 0.0006,
+ "loss": 2.926743745803833,
+ "step": 2106
+ },
+ {
+ "epoch": 29.265502183406113,
+ "grad_norm": 0.06533487886190414,
+ "learning_rate": 0.0006,
+ "loss": 2.9010519981384277,
+ "step": 2107
+ },
+ {
+ "epoch": 29.27947598253275,
+ "grad_norm": 0.05744635686278343,
+ "learning_rate": 0.0006,
+ "loss": 2.922598123550415,
+ "step": 2108
+ },
+ {
+ "epoch": 29.29344978165939,
+ "grad_norm": 0.05649896338582039,
+ "learning_rate": 0.0006,
+ "loss": 2.905834674835205,
+ "step": 2109
+ },
+ {
+ "epoch": 29.307423580786025,
+ "grad_norm": 0.06080562621355057,
+ "learning_rate": 0.0006,
+ "loss": 2.92208194732666,
+ "step": 2110
+ },
+ {
+ "epoch": 29.321397379912664,
+ "grad_norm": 0.059314578771591187,
+ "learning_rate": 0.0006,
+ "loss": 2.9546284675598145,
+ "step": 2111
+ },
+ {
+ "epoch": 29.335371179039303,
+ "grad_norm": 0.047971680760383606,
+ "learning_rate": 0.0006,
+ "loss": 2.9306116104125977,
+ "step": 2112
+ },
+ {
+ "epoch": 29.349344978165938,
+ "grad_norm": 0.041513457894325256,
+ "learning_rate": 0.0006,
+ "loss": 2.885359287261963,
+ "step": 2113
+ },
+ {
+ "epoch": 29.363318777292577,
+ "grad_norm": 0.044294606894254684,
+ "learning_rate": 0.0006,
+ "loss": 2.923374652862549,
+ "step": 2114
+ },
+ {
+ "epoch": 29.377292576419215,
+ "grad_norm": 0.0417361743748188,
+ "learning_rate": 0.0006,
+ "loss": 2.88425350189209,
+ "step": 2115
+ },
+ {
+ "epoch": 29.39126637554585,
+ "grad_norm": 0.041468895971775055,
+ "learning_rate": 0.0006,
+ "loss": 2.9643259048461914,
+ "step": 2116
+ },
+ {
+ "epoch": 29.40524017467249,
+ "grad_norm": 0.04073813930153847,
+ "learning_rate": 0.0006,
+ "loss": 2.95505952835083,
+ "step": 2117
+ },
+ {
+ "epoch": 29.419213973799128,
+ "grad_norm": 0.039006855338811874,
+ "learning_rate": 0.0006,
+ "loss": 2.9500551223754883,
+ "step": 2118
+ },
+ {
+ "epoch": 29.433187772925763,
+ "grad_norm": 0.035800445824861526,
+ "learning_rate": 0.0006,
+ "loss": 2.954481601715088,
+ "step": 2119
+ },
+ {
+ "epoch": 29.4471615720524,
+ "grad_norm": 0.03534843400120735,
+ "learning_rate": 0.0006,
+ "loss": 2.949183940887451,
+ "step": 2120
+ },
+ {
+ "epoch": 29.46113537117904,
+ "grad_norm": 0.03376666083931923,
+ "learning_rate": 0.0006,
+ "loss": 2.9482197761535645,
+ "step": 2121
+ },
+ {
+ "epoch": 29.475109170305675,
+ "grad_norm": 0.032544493675231934,
+ "learning_rate": 0.0006,
+ "loss": 2.9613194465637207,
+ "step": 2122
+ },
+ {
+ "epoch": 29.489082969432314,
+ "grad_norm": 0.02941369079053402,
+ "learning_rate": 0.0006,
+ "loss": 2.9054269790649414,
+ "step": 2123
+ },
+ {
+ "epoch": 29.503056768558952,
+ "grad_norm": 0.030306288972496986,
+ "learning_rate": 0.0006,
+ "loss": 2.955117702484131,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51703056768559,
+ "grad_norm": 0.029188739135861397,
+ "learning_rate": 0.0006,
+ "loss": 2.9344658851623535,
+ "step": 2125
+ },
+ {
+ "epoch": 29.531004366812226,
+ "grad_norm": 0.028544921427965164,
+ "learning_rate": 0.0006,
+ "loss": 2.9878439903259277,
+ "step": 2126
+ },
+ {
+ "epoch": 29.544978165938865,
+ "grad_norm": 0.029478471726179123,
+ "learning_rate": 0.0006,
+ "loss": 2.9671640396118164,
+ "step": 2127
+ },
+ {
+ "epoch": 29.558951965065503,
+ "grad_norm": 0.029838059097528458,
+ "learning_rate": 0.0006,
+ "loss": 2.9319276809692383,
+ "step": 2128
+ },
+ {
+ "epoch": 29.57292576419214,
+ "grad_norm": 0.031277935951948166,
+ "learning_rate": 0.0006,
+ "loss": 2.9517064094543457,
+ "step": 2129
+ },
+ {
+ "epoch": 29.586899563318777,
+ "grad_norm": 0.028920911252498627,
+ "learning_rate": 0.0006,
+ "loss": 3.0010836124420166,
+ "step": 2130
+ },
+ {
+ "epoch": 29.600873362445416,
+ "grad_norm": 0.028258386999368668,
+ "learning_rate": 0.0006,
+ "loss": 2.9552881717681885,
+ "step": 2131
+ },
+ {
+ "epoch": 29.61484716157205,
+ "grad_norm": 0.027709737420082092,
+ "learning_rate": 0.0006,
+ "loss": 2.9699630737304688,
+ "step": 2132
+ },
+ {
+ "epoch": 29.62882096069869,
+ "grad_norm": 0.027644682675600052,
+ "learning_rate": 0.0006,
+ "loss": 2.966932535171509,
+ "step": 2133
+ },
+ {
+ "epoch": 29.64279475982533,
+ "grad_norm": 0.026919284835457802,
+ "learning_rate": 0.0006,
+ "loss": 2.9580016136169434,
+ "step": 2134
+ },
+ {
+ "epoch": 29.656768558951963,
+ "grad_norm": 0.025746364146471024,
+ "learning_rate": 0.0006,
+ "loss": 2.9671740531921387,
+ "step": 2135
+ },
+ {
+ "epoch": 29.670742358078602,
+ "grad_norm": 0.026482900604605675,
+ "learning_rate": 0.0006,
+ "loss": 2.9920620918273926,
+ "step": 2136
+ },
+ {
+ "epoch": 29.68471615720524,
+ "grad_norm": 0.028580941259860992,
+ "learning_rate": 0.0006,
+ "loss": 2.998594045639038,
+ "step": 2137
+ },
+ {
+ "epoch": 29.69868995633188,
+ "grad_norm": 0.027317512780427933,
+ "learning_rate": 0.0006,
+ "loss": 2.978580951690674,
+ "step": 2138
+ },
+ {
+ "epoch": 29.712663755458514,
+ "grad_norm": 0.026336928829550743,
+ "learning_rate": 0.0006,
+ "loss": 2.9933362007141113,
+ "step": 2139
+ },
+ {
+ "epoch": 29.726637554585153,
+ "grad_norm": 0.025520015507936478,
+ "learning_rate": 0.0006,
+ "loss": 2.9906885623931885,
+ "step": 2140
+ },
+ {
+ "epoch": 29.74061135371179,
+ "grad_norm": 0.024093175306916237,
+ "learning_rate": 0.0006,
+ "loss": 2.95902419090271,
+ "step": 2141
+ },
+ {
+ "epoch": 29.754585152838427,
+ "grad_norm": 0.024410322308540344,
+ "learning_rate": 0.0006,
+ "loss": 2.96647047996521,
+ "step": 2142
+ },
+ {
+ "epoch": 29.768558951965066,
+ "grad_norm": 0.024991247802972794,
+ "learning_rate": 0.0006,
+ "loss": 2.9643096923828125,
+ "step": 2143
+ },
+ {
+ "epoch": 29.782532751091704,
+ "grad_norm": 0.025067847222089767,
+ "learning_rate": 0.0006,
+ "loss": 3.0112953186035156,
+ "step": 2144
+ },
+ {
+ "epoch": 29.79650655021834,
+ "grad_norm": 0.025362879037857056,
+ "learning_rate": 0.0006,
+ "loss": 2.971529483795166,
+ "step": 2145
+ },
+ {
+ "epoch": 29.810480349344978,
+ "grad_norm": 0.024684470146894455,
+ "learning_rate": 0.0006,
+ "loss": 2.989647388458252,
+ "step": 2146
+ },
+ {
+ "epoch": 29.824454148471617,
+ "grad_norm": 0.02385212853550911,
+ "learning_rate": 0.0006,
+ "loss": 2.977238178253174,
+ "step": 2147
+ },
+ {
+ "epoch": 29.83842794759825,
+ "grad_norm": 0.02527615986764431,
+ "learning_rate": 0.0006,
+ "loss": 2.9751431941986084,
+ "step": 2148
+ },
+ {
+ "epoch": 29.85240174672489,
+ "grad_norm": 0.024217894300818443,
+ "learning_rate": 0.0006,
+ "loss": 2.9607608318328857,
+ "step": 2149
+ },
+ {
+ "epoch": 29.86637554585153,
+ "grad_norm": 0.0244144294410944,
+ "learning_rate": 0.0006,
+ "loss": 3.0002236366271973,
+ "step": 2150
+ },
+ {
+ "epoch": 29.880349344978168,
+ "grad_norm": 0.026171889156103134,
+ "learning_rate": 0.0006,
+ "loss": 2.9608335494995117,
+ "step": 2151
+ },
+ {
+ "epoch": 29.894323144104803,
+ "grad_norm": 0.025675922632217407,
+ "learning_rate": 0.0006,
+ "loss": 3.0153677463531494,
+ "step": 2152
+ },
+ {
+ "epoch": 29.90829694323144,
+ "grad_norm": 0.026269402354955673,
+ "learning_rate": 0.0006,
+ "loss": 2.990961790084839,
+ "step": 2153
+ },
+ {
+ "epoch": 29.92227074235808,
+ "grad_norm": 0.025278599932789803,
+ "learning_rate": 0.0006,
+ "loss": 2.9858884811401367,
+ "step": 2154
+ },
+ {
+ "epoch": 29.936244541484715,
+ "grad_norm": 0.02442092075943947,
+ "learning_rate": 0.0006,
+ "loss": 2.981938123703003,
+ "step": 2155
+ },
+ {
+ "epoch": 29.950218340611354,
+ "grad_norm": 0.025676338002085686,
+ "learning_rate": 0.0006,
+ "loss": 3.007082462310791,
+ "step": 2156
+ },
+ {
+ "epoch": 29.964192139737992,
+ "grad_norm": 0.02556379698216915,
+ "learning_rate": 0.0006,
+ "loss": 3.030315399169922,
+ "step": 2157
+ },
+ {
+ "epoch": 29.978165938864628,
+ "grad_norm": 0.027025923132896423,
+ "learning_rate": 0.0006,
+ "loss": 2.9751744270324707,
+ "step": 2158
+ },
+ {
+ "epoch": 29.992139737991266,
+ "grad_norm": 0.027581017464399338,
+ "learning_rate": 0.0006,
+ "loss": 3.0025429725646973,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.029440129175782204,
+ "learning_rate": 0.0006,
+ "loss": 2.9936294555664062,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 4.204888343811035,
+ "eval_runtime": 49.9747,
+ "eval_samples_per_second": 48.865,
+ "eval_steps_per_second": 1.541,
+ "step": 2160
+ },
+ {
+ "epoch": 30.01397379912664,
+ "grad_norm": 0.03082278184592724,
+ "learning_rate": 0.0006,
+ "loss": 2.790925979614258,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027947598253274,
+ "grad_norm": 0.04583689942955971,
+ "learning_rate": 0.0006,
+ "loss": 2.7823095321655273,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041921397379912,
+ "grad_norm": 0.05001630261540413,
+ "learning_rate": 0.0006,
+ "loss": 2.776362895965576,
+ "step": 2163
+ },
+ {
+ "epoch": 30.05589519650655,
+ "grad_norm": 0.04742066189646721,
+ "learning_rate": 0.0006,
+ "loss": 2.803783893585205,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069868995633186,
+ "grad_norm": 0.048882510513067245,
+ "learning_rate": 0.0006,
+ "loss": 2.8219070434570312,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083842794759825,
+ "grad_norm": 0.05513570457696915,
+ "learning_rate": 0.0006,
+ "loss": 2.833082437515259,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097816593886463,
+ "grad_norm": 0.05891067534685135,
+ "learning_rate": 0.0006,
+ "loss": 2.8083062171936035,
+ "step": 2167
+ },
+ {
+ "epoch": 30.111790393013102,
+ "grad_norm": 0.06333944201469421,
+ "learning_rate": 0.0006,
+ "loss": 2.8162131309509277,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125764192139737,
+ "grad_norm": 0.06515136361122131,
+ "learning_rate": 0.0006,
+ "loss": 2.8343942165374756,
+ "step": 2169
+ },
+ {
+ "epoch": 30.139737991266376,
+ "grad_norm": 0.06689856946468353,
+ "learning_rate": 0.0006,
+ "loss": 2.837913990020752,
+ "step": 2170
+ },
+ {
+ "epoch": 30.153711790393015,
+ "grad_norm": 0.0659976378083229,
+ "learning_rate": 0.0006,
+ "loss": 2.816307306289673,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16768558951965,
+ "grad_norm": 0.05694719776511192,
+ "learning_rate": 0.0006,
+ "loss": 2.815828323364258,
+ "step": 2172
+ },
+ {
+ "epoch": 30.18165938864629,
+ "grad_norm": 0.057003188878297806,
+ "learning_rate": 0.0006,
+ "loss": 2.8621420860290527,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195633187772927,
+ "grad_norm": 0.061041459441185,
+ "learning_rate": 0.0006,
+ "loss": 2.8613672256469727,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209606986899562,
+ "grad_norm": 0.06092670559883118,
+ "learning_rate": 0.0006,
+ "loss": 2.871680498123169,
+ "step": 2175
+ },
+ {
+ "epoch": 30.2235807860262,
+ "grad_norm": 0.06369971483945847,
+ "learning_rate": 0.0006,
+ "loss": 2.8823862075805664,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23755458515284,
+ "grad_norm": 0.06887379288673401,
+ "learning_rate": 0.0006,
+ "loss": 2.869670867919922,
+ "step": 2177
+ },
+ {
+ "epoch": 30.251528384279474,
+ "grad_norm": 0.07047348469495773,
+ "learning_rate": 0.0006,
+ "loss": 2.8879926204681396,
+ "step": 2178
+ },
+ {
+ "epoch": 30.265502183406113,
+ "grad_norm": 0.06639240682125092,
+ "learning_rate": 0.0006,
+ "loss": 2.8918027877807617,
+ "step": 2179
+ },
+ {
+ "epoch": 30.27947598253275,
+ "grad_norm": 0.06433828920125961,
+ "learning_rate": 0.0006,
+ "loss": 2.898557662963867,
+ "step": 2180
+ },
+ {
+ "epoch": 30.29344978165939,
+ "grad_norm": 0.05627095326781273,
+ "learning_rate": 0.0006,
+ "loss": 2.952359199523926,
+ "step": 2181
+ },
+ {
+ "epoch": 30.307423580786025,
+ "grad_norm": 0.052996374666690826,
+ "learning_rate": 0.0006,
+ "loss": 2.8907530307769775,
+ "step": 2182
+ },
+ {
+ "epoch": 30.321397379912664,
+ "grad_norm": 0.05459262803196907,
+ "learning_rate": 0.0006,
+ "loss": 2.920314073562622,
+ "step": 2183
+ },
+ {
+ "epoch": 30.335371179039303,
+ "grad_norm": 0.05082414671778679,
+ "learning_rate": 0.0006,
+ "loss": 2.930004596710205,
+ "step": 2184
+ },
+ {
+ "epoch": 30.349344978165938,
+ "grad_norm": 0.04854968935251236,
+ "learning_rate": 0.0006,
+ "loss": 2.909700632095337,
+ "step": 2185
+ },
+ {
+ "epoch": 30.363318777292577,
+ "grad_norm": 0.046354763209819794,
+ "learning_rate": 0.0006,
+ "loss": 2.8992667198181152,
+ "step": 2186
+ },
+ {
+ "epoch": 30.377292576419215,
+ "grad_norm": 0.04162409156560898,
+ "learning_rate": 0.0006,
+ "loss": 2.8841357231140137,
+ "step": 2187
+ },
+ {
+ "epoch": 30.39126637554585,
+ "grad_norm": 0.0407755970954895,
+ "learning_rate": 0.0006,
+ "loss": 2.8838725090026855,
+ "step": 2188
+ },
+ {
+ "epoch": 30.40524017467249,
+ "grad_norm": 0.04091903567314148,
+ "learning_rate": 0.0006,
+ "loss": 2.9465415477752686,
+ "step": 2189
+ },
+ {
+ "epoch": 30.419213973799128,
+ "grad_norm": 0.037343017756938934,
+ "learning_rate": 0.0006,
+ "loss": 2.9277544021606445,
+ "step": 2190
+ },
+ {
+ "epoch": 30.433187772925763,
+ "grad_norm": 0.03364052250981331,
+ "learning_rate": 0.0006,
+ "loss": 2.9258010387420654,
+ "step": 2191
+ },
+ {
+ "epoch": 30.4471615720524,
+ "grad_norm": 0.033522892743349075,
+ "learning_rate": 0.0006,
+ "loss": 2.894564628601074,
+ "step": 2192
+ },
+ {
+ "epoch": 30.46113537117904,
+ "grad_norm": 0.03192823752760887,
+ "learning_rate": 0.0006,
+ "loss": 2.9259095191955566,
+ "step": 2193
+ },
+ {
+ "epoch": 30.475109170305675,
+ "grad_norm": 0.030643166974186897,
+ "learning_rate": 0.0006,
+ "loss": 2.9532039165496826,
+ "step": 2194
+ },
+ {
+ "epoch": 30.489082969432314,
+ "grad_norm": 0.030904730781912804,
+ "learning_rate": 0.0006,
+ "loss": 2.9105587005615234,
+ "step": 2195
+ },
+ {
+ "epoch": 30.503056768558952,
+ "grad_norm": 0.029073279350996017,
+ "learning_rate": 0.0006,
+ "loss": 2.882645606994629,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51703056768559,
+ "grad_norm": 0.03068859502673149,
+ "learning_rate": 0.0006,
+ "loss": 2.972698211669922,
+ "step": 2197
+ },
+ {
+ "epoch": 30.531004366812226,
+ "grad_norm": 0.030377032235264778,
+ "learning_rate": 0.0006,
+ "loss": 2.903886318206787,
+ "step": 2198
+ },
+ {
+ "epoch": 30.544978165938865,
+ "grad_norm": 0.030634265393018723,
+ "learning_rate": 0.0006,
+ "loss": 2.867248058319092,
+ "step": 2199
+ },
+ {
+ "epoch": 30.558951965065503,
+ "grad_norm": 0.029660150408744812,
+ "learning_rate": 0.0006,
+ "loss": 2.925515651702881,
+ "step": 2200
+ },
+ {
+ "epoch": 30.57292576419214,
+ "grad_norm": 0.029679421335458755,
+ "learning_rate": 0.0006,
+ "loss": 2.9485011100769043,
+ "step": 2201
+ },
+ {
+ "epoch": 30.586899563318777,
+ "grad_norm": 0.029809271916747093,
+ "learning_rate": 0.0006,
+ "loss": 2.9528913497924805,
+ "step": 2202
+ },
+ {
+ "epoch": 30.600873362445416,
+ "grad_norm": 0.028424153104424477,
+ "learning_rate": 0.0006,
+ "loss": 2.92244291305542,
+ "step": 2203
+ },
+ {
+ "epoch": 30.61484716157205,
+ "grad_norm": 0.02718108892440796,
+ "learning_rate": 0.0006,
+ "loss": 2.9047327041625977,
+ "step": 2204
+ },
+ {
+ "epoch": 30.62882096069869,
+ "grad_norm": 0.028654800727963448,
+ "learning_rate": 0.0006,
+ "loss": 2.926530361175537,
+ "step": 2205
+ },
+ {
+ "epoch": 30.64279475982533,
+ "grad_norm": 0.027802037075161934,
+ "learning_rate": 0.0006,
+ "loss": 2.9279685020446777,
+ "step": 2206
+ },
+ {
+ "epoch": 30.656768558951963,
+ "grad_norm": 0.026860002428293228,
+ "learning_rate": 0.0006,
+ "loss": 2.918400287628174,
+ "step": 2207
+ },
+ {
+ "epoch": 30.670742358078602,
+ "grad_norm": 0.026720909401774406,
+ "learning_rate": 0.0006,
+ "loss": 2.907062530517578,
+ "step": 2208
+ },
+ {
+ "epoch": 30.68471615720524,
+ "grad_norm": 0.026722557842731476,
+ "learning_rate": 0.0006,
+ "loss": 2.9302074909210205,
+ "step": 2209
+ },
+ {
+ "epoch": 30.69868995633188,
+ "grad_norm": 0.026495203375816345,
+ "learning_rate": 0.0006,
+ "loss": 2.914985418319702,
+ "step": 2210
+ },
+ {
+ "epoch": 30.712663755458514,
+ "grad_norm": 0.025444738566875458,
+ "learning_rate": 0.0006,
+ "loss": 2.9205482006073,
+ "step": 2211
+ },
+ {
+ "epoch": 30.726637554585153,
+ "grad_norm": 0.02570643275976181,
+ "learning_rate": 0.0006,
+ "loss": 2.9142990112304688,
+ "step": 2212
+ },
+ {
+ "epoch": 30.74061135371179,
+ "grad_norm": 0.025516517460346222,
+ "learning_rate": 0.0006,
+ "loss": 2.9324023723602295,
+ "step": 2213
+ },
+ {
+ "epoch": 30.754585152838427,
+ "grad_norm": 0.02481970377266407,
+ "learning_rate": 0.0006,
+ "loss": 2.9404819011688232,
+ "step": 2214
+ },
+ {
+ "epoch": 30.768558951965066,
+ "grad_norm": 0.024804186075925827,
+ "learning_rate": 0.0006,
+ "loss": 2.9476962089538574,
+ "step": 2215
+ },
+ {
+ "epoch": 30.782532751091704,
+ "grad_norm": 0.02516373060643673,
+ "learning_rate": 0.0006,
+ "loss": 2.9525418281555176,
+ "step": 2216
+ },
+ {
+ "epoch": 30.79650655021834,
+ "grad_norm": 0.02501778118312359,
+ "learning_rate": 0.0006,
+ "loss": 2.953561782836914,
+ "step": 2217
+ },
+ {
+ "epoch": 30.810480349344978,
+ "grad_norm": 0.025414010509848595,
+ "learning_rate": 0.0006,
+ "loss": 2.962048292160034,
+ "step": 2218
+ },
+ {
+ "epoch": 30.824454148471617,
+ "grad_norm": 0.024972591549158096,
+ "learning_rate": 0.0006,
+ "loss": 2.9431703090667725,
+ "step": 2219
+ },
+ {
+ "epoch": 30.83842794759825,
+ "grad_norm": 0.024618400260806084,
+ "learning_rate": 0.0006,
+ "loss": 2.976715087890625,
+ "step": 2220
+ },
+ {
+ "epoch": 30.85240174672489,
+ "grad_norm": 0.025781305506825447,
+ "learning_rate": 0.0006,
+ "loss": 2.9464545249938965,
+ "step": 2221
+ },
+ {
+ "epoch": 30.86637554585153,
+ "grad_norm": 0.025492621585726738,
+ "learning_rate": 0.0006,
+ "loss": 2.9683992862701416,
+ "step": 2222
+ },
+ {
+ "epoch": 30.880349344978168,
+ "grad_norm": 0.024332989007234573,
+ "learning_rate": 0.0006,
+ "loss": 2.936504364013672,
+ "step": 2223
+ },
+ {
+ "epoch": 30.894323144104803,
+ "grad_norm": 0.025873707607388496,
+ "learning_rate": 0.0006,
+ "loss": 2.9819533824920654,
+ "step": 2224
+ },
+ {
+ "epoch": 30.90829694323144,
+ "grad_norm": 0.025367610156536102,
+ "learning_rate": 0.0006,
+ "loss": 2.9434492588043213,
+ "step": 2225
+ },
+ {
+ "epoch": 30.92227074235808,
+ "grad_norm": 0.025719329714775085,
+ "learning_rate": 0.0006,
+ "loss": 2.9492809772491455,
+ "step": 2226
+ },
+ {
+ "epoch": 30.936244541484715,
+ "grad_norm": 0.025365520268678665,
+ "learning_rate": 0.0006,
+ "loss": 2.9604077339172363,
+ "step": 2227
+ },
+ {
+ "epoch": 30.950218340611354,
+ "grad_norm": 0.025556908920407295,
+ "learning_rate": 0.0006,
+ "loss": 2.9890618324279785,
+ "step": 2228
+ },
+ {
+ "epoch": 30.964192139737992,
+ "grad_norm": 0.025892134755849838,
+ "learning_rate": 0.0006,
+ "loss": 3.0024898052215576,
+ "step": 2229
+ },
+ {
+ "epoch": 30.978165938864628,
+ "grad_norm": 0.02661663107573986,
+ "learning_rate": 0.0006,
+ "loss": 2.952683687210083,
+ "step": 2230
+ },
+ {
+ "epoch": 30.992139737991266,
+ "grad_norm": 0.027014167979359627,
+ "learning_rate": 0.0006,
+ "loss": 2.9711644649505615,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.030383866280317307,
+ "learning_rate": 0.0006,
+ "loss": 2.9667253494262695,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 4.229912281036377,
+ "eval_runtime": 50.1223,
+ "eval_samples_per_second": 48.721,
+ "eval_steps_per_second": 1.536,
+ "step": 2232
+ },
+ {
+ "epoch": 31.01397379912664,
+ "grad_norm": 0.03256843239068985,
+ "learning_rate": 0.0006,
+ "loss": 2.7514405250549316,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027947598253274,
+ "grad_norm": 0.047255322337150574,
+ "learning_rate": 0.0006,
+ "loss": 2.74819278717041,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041921397379912,
+ "grad_norm": 0.057098377496004105,
+ "learning_rate": 0.0006,
+ "loss": 2.8072285652160645,
+ "step": 2235
+ },
+ {
+ "epoch": 31.05589519650655,
+ "grad_norm": 0.06089015305042267,
+ "learning_rate": 0.0006,
+ "loss": 2.7930731773376465,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069868995633186,
+ "grad_norm": 0.06132258102297783,
+ "learning_rate": 0.0006,
+ "loss": 2.758162498474121,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083842794759825,
+ "grad_norm": 0.06187787652015686,
+ "learning_rate": 0.0006,
+ "loss": 2.7864990234375,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097816593886463,
+ "grad_norm": 0.06031458452343941,
+ "learning_rate": 0.0006,
+ "loss": 2.7684197425842285,
+ "step": 2239
+ },
+ {
+ "epoch": 31.111790393013102,
+ "grad_norm": 0.06238894909620285,
+ "learning_rate": 0.0006,
+ "loss": 2.7754814624786377,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125764192139737,
+ "grad_norm": 0.062081411480903625,
+ "learning_rate": 0.0006,
+ "loss": 2.790771484375,
+ "step": 2241
+ },
+ {
+ "epoch": 31.139737991266376,
+ "grad_norm": 0.06554440408945084,
+ "learning_rate": 0.0006,
+ "loss": 2.8218588829040527,
+ "step": 2242
+ },
+ {
+ "epoch": 31.153711790393015,
+ "grad_norm": 0.06824780255556107,
+ "learning_rate": 0.0006,
+ "loss": 2.7899062633514404,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16768558951965,
+ "grad_norm": 0.06519690155982971,
+ "learning_rate": 0.0006,
+ "loss": 2.8244035243988037,
+ "step": 2244
+ },
+ {
+ "epoch": 31.18165938864629,
+ "grad_norm": 0.06539556384086609,
+ "learning_rate": 0.0006,
+ "loss": 2.8237123489379883,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195633187772927,
+ "grad_norm": 0.06608626246452332,
+ "learning_rate": 0.0006,
+ "loss": 2.82597017288208,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209606986899562,
+ "grad_norm": 0.0633682906627655,
+ "learning_rate": 0.0006,
+ "loss": 2.854529857635498,
+ "step": 2247
+ },
+ {
+ "epoch": 31.2235807860262,
+ "grad_norm": 0.06378687173128128,
+ "learning_rate": 0.0006,
+ "loss": 2.834493637084961,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23755458515284,
+ "grad_norm": 0.06429384648799896,
+ "learning_rate": 0.0006,
+ "loss": 2.835636854171753,
+ "step": 2249
+ },
+ {
+ "epoch": 31.251528384279474,
+ "grad_norm": 0.06059514731168747,
+ "learning_rate": 0.0006,
+ "loss": 2.8262174129486084,
+ "step": 2250
+ },
+ {
+ "epoch": 31.265502183406113,
+ "grad_norm": 0.05870524421334267,
+ "learning_rate": 0.0006,
+ "loss": 2.8372795581817627,
+ "step": 2251
+ },
+ {
+ "epoch": 31.27947598253275,
+ "grad_norm": 0.05517038330435753,
+ "learning_rate": 0.0006,
+ "loss": 2.8663249015808105,
+ "step": 2252
+ },
+ {
+ "epoch": 31.29344978165939,
+ "grad_norm": 0.05413469672203064,
+ "learning_rate": 0.0006,
+ "loss": 2.88608980178833,
+ "step": 2253
+ },
+ {
+ "epoch": 31.307423580786025,
+ "grad_norm": 0.05486409366130829,
+ "learning_rate": 0.0006,
+ "loss": 2.861100673675537,
+ "step": 2254
+ },
+ {
+ "epoch": 31.321397379912664,
+ "grad_norm": 0.049654968082904816,
+ "learning_rate": 0.0006,
+ "loss": 2.86140775680542,
+ "step": 2255
+ },
+ {
+ "epoch": 31.335371179039303,
+ "grad_norm": 0.041566286236047745,
+ "learning_rate": 0.0006,
+ "loss": 2.8499088287353516,
+ "step": 2256
+ },
+ {
+ "epoch": 31.349344978165938,
+ "grad_norm": 0.03958230838179588,
+ "learning_rate": 0.0006,
+ "loss": 2.8657469749450684,
+ "step": 2257
+ },
+ {
+ "epoch": 31.363318777292577,
+ "grad_norm": 0.039652854204177856,
+ "learning_rate": 0.0006,
+ "loss": 2.877363681793213,
+ "step": 2258
+ },
+ {
+ "epoch": 31.377292576419215,
+ "grad_norm": 0.03760487213730812,
+ "learning_rate": 0.0006,
+ "loss": 2.8804736137390137,
+ "step": 2259
+ },
+ {
+ "epoch": 31.39126637554585,
+ "grad_norm": 0.0382104329764843,
+ "learning_rate": 0.0006,
+ "loss": 2.868318796157837,
+ "step": 2260
+ },
+ {
+ "epoch": 31.40524017467249,
+ "grad_norm": 0.03440074995160103,
+ "learning_rate": 0.0006,
+ "loss": 2.8732798099517822,
+ "step": 2261
+ },
+ {
+ "epoch": 31.419213973799128,
+ "grad_norm": 0.033076152205467224,
+ "learning_rate": 0.0006,
+ "loss": 2.906764030456543,
+ "step": 2262
+ },
+ {
+ "epoch": 31.433187772925763,
+ "grad_norm": 0.032357051968574524,
+ "learning_rate": 0.0006,
+ "loss": 2.9036777019500732,
+ "step": 2263
+ },
+ {
+ "epoch": 31.4471615720524,
+ "grad_norm": 0.03397732973098755,
+ "learning_rate": 0.0006,
+ "loss": 2.877735137939453,
+ "step": 2264
+ },
+ {
+ "epoch": 31.46113537117904,
+ "grad_norm": 0.03163991868495941,
+ "learning_rate": 0.0006,
+ "loss": 2.8931736946105957,
+ "step": 2265
+ },
+ {
+ "epoch": 31.475109170305675,
+ "grad_norm": 0.0300164595246315,
+ "learning_rate": 0.0006,
+ "loss": 2.874295234680176,
+ "step": 2266
+ },
+ {
+ "epoch": 31.489082969432314,
+ "grad_norm": 0.030882105231285095,
+ "learning_rate": 0.0006,
+ "loss": 2.8706257343292236,
+ "step": 2267
+ },
+ {
+ "epoch": 31.503056768558952,
+ "grad_norm": 0.03332842141389847,
+ "learning_rate": 0.0006,
+ "loss": 2.884972095489502,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51703056768559,
+ "grad_norm": 0.03143863379955292,
+ "learning_rate": 0.0006,
+ "loss": 2.8599395751953125,
+ "step": 2269
+ },
+ {
+ "epoch": 31.531004366812226,
+ "grad_norm": 0.029551811516284943,
+ "learning_rate": 0.0006,
+ "loss": 2.8945577144622803,
+ "step": 2270
+ },
+ {
+ "epoch": 31.544978165938865,
+ "grad_norm": 0.030553745105862617,
+ "learning_rate": 0.0006,
+ "loss": 2.8668577671051025,
+ "step": 2271
+ },
+ {
+ "epoch": 31.558951965065503,
+ "grad_norm": 0.030133841559290886,
+ "learning_rate": 0.0006,
+ "loss": 2.8667306900024414,
+ "step": 2272
+ },
+ {
+ "epoch": 31.57292576419214,
+ "grad_norm": 0.0286093782633543,
+ "learning_rate": 0.0006,
+ "loss": 2.8893041610717773,
+ "step": 2273
+ },
+ {
+ "epoch": 31.586899563318777,
+ "grad_norm": 0.028428595513105392,
+ "learning_rate": 0.0006,
+ "loss": 2.9043941497802734,
+ "step": 2274
+ },
+ {
+ "epoch": 31.600873362445416,
+ "grad_norm": 0.028137098997831345,
+ "learning_rate": 0.0006,
+ "loss": 2.8917198181152344,
+ "step": 2275
+ },
+ {
+ "epoch": 31.61484716157205,
+ "grad_norm": 0.02749542146921158,
+ "learning_rate": 0.0006,
+ "loss": 2.8751792907714844,
+ "step": 2276
+ },
+ {
+ "epoch": 31.62882096069869,
+ "grad_norm": 0.027882523834705353,
+ "learning_rate": 0.0006,
+ "loss": 2.875168800354004,
+ "step": 2277
+ },
+ {
+ "epoch": 31.64279475982533,
+ "grad_norm": 0.02791895531117916,
+ "learning_rate": 0.0006,
+ "loss": 2.9148941040039062,
+ "step": 2278
+ },
+ {
+ "epoch": 31.656768558951963,
+ "grad_norm": 0.027536451816558838,
+ "learning_rate": 0.0006,
+ "loss": 2.9327642917633057,
+ "step": 2279
+ },
+ {
+ "epoch": 31.670742358078602,
+ "grad_norm": 0.027606090530753136,
+ "learning_rate": 0.0006,
+ "loss": 2.8927245140075684,
+ "step": 2280
+ },
+ {
+ "epoch": 31.68471615720524,
+ "grad_norm": 0.027958661317825317,
+ "learning_rate": 0.0006,
+ "loss": 2.90574312210083,
+ "step": 2281
+ },
+ {
+ "epoch": 31.69868995633188,
+ "grad_norm": 0.027077173814177513,
+ "learning_rate": 0.0006,
+ "loss": 2.937171459197998,
+ "step": 2282
+ },
+ {
+ "epoch": 31.712663755458514,
+ "grad_norm": 0.027880772948265076,
+ "learning_rate": 0.0006,
+ "loss": 2.9102025032043457,
+ "step": 2283
+ },
+ {
+ "epoch": 31.726637554585153,
+ "grad_norm": 0.028209930285811424,
+ "learning_rate": 0.0006,
+ "loss": 2.9417295455932617,
+ "step": 2284
+ },
+ {
+ "epoch": 31.74061135371179,
+ "grad_norm": 0.02771490439772606,
+ "learning_rate": 0.0006,
+ "loss": 2.923916816711426,
+ "step": 2285
+ },
+ {
+ "epoch": 31.754585152838427,
+ "grad_norm": 0.02741638571023941,
+ "learning_rate": 0.0006,
+ "loss": 2.8878226280212402,
+ "step": 2286
+ },
+ {
+ "epoch": 31.768558951965066,
+ "grad_norm": 0.02630724012851715,
+ "learning_rate": 0.0006,
+ "loss": 2.9191370010375977,
+ "step": 2287
+ },
+ {
+ "epoch": 31.782532751091704,
+ "grad_norm": 0.025788497179746628,
+ "learning_rate": 0.0006,
+ "loss": 2.9376463890075684,
+ "step": 2288
+ },
+ {
+ "epoch": 31.79650655021834,
+ "grad_norm": 0.027125656604766846,
+ "learning_rate": 0.0006,
+ "loss": 2.9007105827331543,
+ "step": 2289
+ },
+ {
+ "epoch": 31.810480349344978,
+ "grad_norm": 0.02757101133465767,
+ "learning_rate": 0.0006,
+ "loss": 2.887821912765503,
+ "step": 2290
+ },
+ {
+ "epoch": 31.824454148471617,
+ "grad_norm": 0.027768995612859726,
+ "learning_rate": 0.0006,
+ "loss": 2.906799793243408,
+ "step": 2291
+ },
+ {
+ "epoch": 31.83842794759825,
+ "grad_norm": 0.027256596833467484,
+ "learning_rate": 0.0006,
+ "loss": 2.931828498840332,
+ "step": 2292
+ },
+ {
+ "epoch": 31.85240174672489,
+ "grad_norm": 0.025560658425092697,
+ "learning_rate": 0.0006,
+ "loss": 2.9481167793273926,
+ "step": 2293
+ },
+ {
+ "epoch": 31.86637554585153,
+ "grad_norm": 0.026807734742760658,
+ "learning_rate": 0.0006,
+ "loss": 2.9222939014434814,
+ "step": 2294
+ },
+ {
+ "epoch": 31.880349344978168,
+ "grad_norm": 0.02557470090687275,
+ "learning_rate": 0.0006,
+ "loss": 2.9439048767089844,
+ "step": 2295
+ },
+ {
+ "epoch": 31.894323144104803,
+ "grad_norm": 0.026537157595157623,
+ "learning_rate": 0.0006,
+ "loss": 2.9390292167663574,
+ "step": 2296
+ },
+ {
+ "epoch": 31.90829694323144,
+ "grad_norm": 0.027184665203094482,
+ "learning_rate": 0.0006,
+ "loss": 2.954176902770996,
+ "step": 2297
+ },
+ {
+ "epoch": 31.92227074235808,
+ "grad_norm": 0.028301499783992767,
+ "learning_rate": 0.0006,
+ "loss": 2.918628692626953,
+ "step": 2298
+ },
+ {
+ "epoch": 31.936244541484715,
+ "grad_norm": 0.028094016015529633,
+ "learning_rate": 0.0006,
+ "loss": 2.964953899383545,
+ "step": 2299
+ },
+ {
+ "epoch": 31.950218340611354,
+ "grad_norm": 0.028538303449749947,
+ "learning_rate": 0.0006,
+ "loss": 2.968601703643799,
+ "step": 2300
+ },
+ {
+ "epoch": 31.964192139737992,
+ "grad_norm": 0.026872891932725906,
+ "learning_rate": 0.0006,
+ "loss": 2.967205047607422,
+ "step": 2301
+ },
+ {
+ "epoch": 31.978165938864628,
+ "grad_norm": 0.02604864165186882,
+ "learning_rate": 0.0006,
+ "loss": 2.964766263961792,
+ "step": 2302
+ },
+ {
+ "epoch": 31.992139737991266,
+ "grad_norm": 0.02906455658376217,
+ "learning_rate": 0.0006,
+ "loss": 2.9137468338012695,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.03300034999847412,
+ "learning_rate": 0.0006,
+ "loss": 2.927333354949951,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 4.2580718994140625,
+ "eval_runtime": 50.1093,
+ "eval_samples_per_second": 48.733,
+ "eval_steps_per_second": 1.537,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01397379912664,
+ "grad_norm": 0.032037410885095596,
+ "learning_rate": 0.0006,
+ "loss": 2.742370128631592,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02794759825328,
+ "grad_norm": 0.04566849023103714,
+ "learning_rate": 0.0006,
+ "loss": 2.7334156036376953,
+ "step": 2306
+ },
+ {
+ "epoch": 32.041921397379916,
+ "grad_norm": 0.051055751740932465,
+ "learning_rate": 0.0006,
+ "loss": 2.711585283279419,
+ "step": 2307
+ },
+ {
+ "epoch": 32.05589519650655,
+ "grad_norm": 0.051270145922899246,
+ "learning_rate": 0.0006,
+ "loss": 2.7437586784362793,
+ "step": 2308
+ },
+ {
+ "epoch": 32.069868995633186,
+ "grad_norm": 0.05252866446971893,
+ "learning_rate": 0.0006,
+ "loss": 2.7164244651794434,
+ "step": 2309
+ },
+ {
+ "epoch": 32.083842794759825,
+ "grad_norm": 0.06172860786318779,
+ "learning_rate": 0.0006,
+ "loss": 2.7258028984069824,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09781659388646,
+ "grad_norm": 0.07105273753404617,
+ "learning_rate": 0.0006,
+ "loss": 2.784562587738037,
+ "step": 2311
+ },
+ {
+ "epoch": 32.1117903930131,
+ "grad_norm": 0.0731290802359581,
+ "learning_rate": 0.0006,
+ "loss": 2.7349305152893066,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12576419213974,
+ "grad_norm": 0.06616552174091339,
+ "learning_rate": 0.0006,
+ "loss": 2.7377257347106934,
+ "step": 2313
+ },
+ {
+ "epoch": 32.13973799126637,
+ "grad_norm": 0.060200285166502,
+ "learning_rate": 0.0006,
+ "loss": 2.7815725803375244,
+ "step": 2314
+ },
+ {
+ "epoch": 32.15371179039301,
+ "grad_norm": 0.06167658045887947,
+ "learning_rate": 0.0006,
+ "loss": 2.7790369987487793,
+ "step": 2315
+ },
+ {
+ "epoch": 32.16768558951965,
+ "grad_norm": 0.056791823357343674,
+ "learning_rate": 0.0006,
+ "loss": 2.7982912063598633,
+ "step": 2316
+ },
+ {
+ "epoch": 32.18165938864629,
+ "grad_norm": 0.051635418087244034,
+ "learning_rate": 0.0006,
+ "loss": 2.795342445373535,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19563318777293,
+ "grad_norm": 0.04736269265413284,
+ "learning_rate": 0.0006,
+ "loss": 2.7246901988983154,
+ "step": 2318
+ },
+ {
+ "epoch": 32.209606986899566,
+ "grad_norm": 0.05233636125922203,
+ "learning_rate": 0.0006,
+ "loss": 2.7580928802490234,
+ "step": 2319
+ },
+ {
+ "epoch": 32.223580786026204,
+ "grad_norm": 0.05724285542964935,
+ "learning_rate": 0.0006,
+ "loss": 2.7991695404052734,
+ "step": 2320
+ },
+ {
+ "epoch": 32.237554585152836,
+ "grad_norm": 0.06089061126112938,
+ "learning_rate": 0.0006,
+ "loss": 2.818295478820801,
+ "step": 2321
+ },
+ {
+ "epoch": 32.251528384279474,
+ "grad_norm": 0.06421101838350296,
+ "learning_rate": 0.0006,
+ "loss": 2.8264989852905273,
+ "step": 2322
+ },
+ {
+ "epoch": 32.26550218340611,
+ "grad_norm": 0.06509649753570557,
+ "learning_rate": 0.0006,
+ "loss": 2.847254753112793,
+ "step": 2323
+ },
+ {
+ "epoch": 32.27947598253275,
+ "grad_norm": 0.06762181967496872,
+ "learning_rate": 0.0006,
+ "loss": 2.7911386489868164,
+ "step": 2324
+ },
+ {
+ "epoch": 32.29344978165939,
+ "grad_norm": 0.06925082206726074,
+ "learning_rate": 0.0006,
+ "loss": 2.7912075519561768,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30742358078603,
+ "grad_norm": 0.060691531747579575,
+ "learning_rate": 0.0006,
+ "loss": 2.8301353454589844,
+ "step": 2326
+ },
+ {
+ "epoch": 32.32139737991266,
+ "grad_norm": 0.05697881057858467,
+ "learning_rate": 0.0006,
+ "loss": 2.7735865116119385,
+ "step": 2327
+ },
+ {
+ "epoch": 32.3353711790393,
+ "grad_norm": 0.04882541298866272,
+ "learning_rate": 0.0006,
+ "loss": 2.8305134773254395,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34934497816594,
+ "grad_norm": 0.05006708949804306,
+ "learning_rate": 0.0006,
+ "loss": 2.8248348236083984,
+ "step": 2329
+ },
+ {
+ "epoch": 32.36331877729258,
+ "grad_norm": 0.05743676424026489,
+ "learning_rate": 0.0006,
+ "loss": 2.821669340133667,
+ "step": 2330
+ },
+ {
+ "epoch": 32.377292576419215,
+ "grad_norm": 0.05322850123047829,
+ "learning_rate": 0.0006,
+ "loss": 2.863438606262207,
+ "step": 2331
+ },
+ {
+ "epoch": 32.391266375545854,
+ "grad_norm": 0.04769251123070717,
+ "learning_rate": 0.0006,
+ "loss": 2.8355751037597656,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40524017467249,
+ "grad_norm": 0.047659195959568024,
+ "learning_rate": 0.0006,
+ "loss": 2.8436594009399414,
+ "step": 2333
+ },
+ {
+ "epoch": 32.419213973799124,
+ "grad_norm": 0.04434720054268837,
+ "learning_rate": 0.0006,
+ "loss": 2.8192641735076904,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43318777292576,
+ "grad_norm": 0.04431871324777603,
+ "learning_rate": 0.0006,
+ "loss": 2.8672127723693848,
+ "step": 2335
+ },
+ {
+ "epoch": 32.4471615720524,
+ "grad_norm": 0.04206263646483421,
+ "learning_rate": 0.0006,
+ "loss": 2.858680486679077,
+ "step": 2336
+ },
+ {
+ "epoch": 32.46113537117904,
+ "grad_norm": 0.03994728997349739,
+ "learning_rate": 0.0006,
+ "loss": 2.88413405418396,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47510917030568,
+ "grad_norm": 0.040253281593322754,
+ "learning_rate": 0.0006,
+ "loss": 2.8301520347595215,
+ "step": 2338
+ },
+ {
+ "epoch": 32.48908296943232,
+ "grad_norm": 0.038392145186662674,
+ "learning_rate": 0.0006,
+ "loss": 2.821742534637451,
+ "step": 2339
+ },
+ {
+ "epoch": 32.50305676855895,
+ "grad_norm": 0.03597316890954971,
+ "learning_rate": 0.0006,
+ "loss": 2.899796485900879,
+ "step": 2340
+ },
+ {
+ "epoch": 32.51703056768559,
+ "grad_norm": 0.035971421748399734,
+ "learning_rate": 0.0006,
+ "loss": 2.8710737228393555,
+ "step": 2341
+ },
+ {
+ "epoch": 32.531004366812226,
+ "grad_norm": 0.035625241696834564,
+ "learning_rate": 0.0006,
+ "loss": 2.8744492530822754,
+ "step": 2342
+ },
+ {
+ "epoch": 32.544978165938865,
+ "grad_norm": 0.03281800076365471,
+ "learning_rate": 0.0006,
+ "loss": 2.8716745376586914,
+ "step": 2343
+ },
+ {
+ "epoch": 32.5589519650655,
+ "grad_norm": 0.031027544289827347,
+ "learning_rate": 0.0006,
+ "loss": 2.8424720764160156,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57292576419214,
+ "grad_norm": 0.03187177702784538,
+ "learning_rate": 0.0006,
+ "loss": 2.8346052169799805,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58689956331878,
+ "grad_norm": 0.03155096247792244,
+ "learning_rate": 0.0006,
+ "loss": 2.8507466316223145,
+ "step": 2346
+ },
+ {
+ "epoch": 32.60087336244541,
+ "grad_norm": 0.03118431754410267,
+ "learning_rate": 0.0006,
+ "loss": 2.902325391769409,
+ "step": 2347
+ },
+ {
+ "epoch": 32.61484716157205,
+ "grad_norm": 0.032406579703092575,
+ "learning_rate": 0.0006,
+ "loss": 2.8646554946899414,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62882096069869,
+ "grad_norm": 0.03170140087604523,
+ "learning_rate": 0.0006,
+ "loss": 2.8921170234680176,
+ "step": 2349
+ },
+ {
+ "epoch": 32.64279475982533,
+ "grad_norm": 0.03082709200680256,
+ "learning_rate": 0.0006,
+ "loss": 2.8608059883117676,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65676855895197,
+ "grad_norm": 0.028605740517377853,
+ "learning_rate": 0.0006,
+ "loss": 2.8731441497802734,
+ "step": 2351
+ },
+ {
+ "epoch": 32.670742358078606,
+ "grad_norm": 0.028392326086759567,
+ "learning_rate": 0.0006,
+ "loss": 2.8904993534088135,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68471615720524,
+ "grad_norm": 0.029447391629219055,
+ "learning_rate": 0.0006,
+ "loss": 2.877455472946167,
+ "step": 2353
+ },
+ {
+ "epoch": 32.698689956331876,
+ "grad_norm": 0.031085917726159096,
+ "learning_rate": 0.0006,
+ "loss": 2.8698372840881348,
+ "step": 2354
+ },
+ {
+ "epoch": 32.712663755458514,
+ "grad_norm": 0.029842285439372063,
+ "learning_rate": 0.0006,
+ "loss": 2.8689470291137695,
+ "step": 2355
+ },
+ {
+ "epoch": 32.72663755458515,
+ "grad_norm": 0.03001115471124649,
+ "learning_rate": 0.0006,
+ "loss": 2.9131507873535156,
+ "step": 2356
+ },
+ {
+ "epoch": 32.74061135371179,
+ "grad_norm": 0.028849447146058083,
+ "learning_rate": 0.0006,
+ "loss": 2.8918845653533936,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75458515283843,
+ "grad_norm": 0.02883053943514824,
+ "learning_rate": 0.0006,
+ "loss": 2.896641731262207,
+ "step": 2358
+ },
+ {
+ "epoch": 32.76855895196506,
+ "grad_norm": 0.029307082295417786,
+ "learning_rate": 0.0006,
+ "loss": 2.9132862091064453,
+ "step": 2359
+ },
+ {
+ "epoch": 32.7825327510917,
+ "grad_norm": 0.027899738401174545,
+ "learning_rate": 0.0006,
+ "loss": 2.9068503379821777,
+ "step": 2360
+ },
+ {
+ "epoch": 32.79650655021834,
+ "grad_norm": 0.026993675157427788,
+ "learning_rate": 0.0006,
+ "loss": 2.884234666824341,
+ "step": 2361
+ },
+ {
+ "epoch": 32.81048034934498,
+ "grad_norm": 0.029380464926362038,
+ "learning_rate": 0.0006,
+ "loss": 2.935711622238159,
+ "step": 2362
+ },
+ {
+ "epoch": 32.82445414847162,
+ "grad_norm": 0.029252734035253525,
+ "learning_rate": 0.0006,
+ "loss": 2.9058709144592285,
+ "step": 2363
+ },
+ {
+ "epoch": 32.838427947598255,
+ "grad_norm": 0.028128111734986305,
+ "learning_rate": 0.0006,
+ "loss": 2.8898634910583496,
+ "step": 2364
+ },
+ {
+ "epoch": 32.852401746724894,
+ "grad_norm": 0.027143409475684166,
+ "learning_rate": 0.0006,
+ "loss": 2.910818576812744,
+ "step": 2365
+ },
+ {
+ "epoch": 32.866375545851525,
+ "grad_norm": 0.027796905487775803,
+ "learning_rate": 0.0006,
+ "loss": 2.902510166168213,
+ "step": 2366
+ },
+ {
+ "epoch": 32.880349344978164,
+ "grad_norm": 0.028360942378640175,
+ "learning_rate": 0.0006,
+ "loss": 2.9564762115478516,
+ "step": 2367
+ },
+ {
+ "epoch": 32.8943231441048,
+ "grad_norm": 0.028355851769447327,
+ "learning_rate": 0.0006,
+ "loss": 2.9333415031433105,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90829694323144,
+ "grad_norm": 0.028441734611988068,
+ "learning_rate": 0.0006,
+ "loss": 2.892359495162964,
+ "step": 2369
+ },
+ {
+ "epoch": 32.92227074235808,
+ "grad_norm": 0.027564451098442078,
+ "learning_rate": 0.0006,
+ "loss": 2.946666717529297,
+ "step": 2370
+ },
+ {
+ "epoch": 32.93624454148472,
+ "grad_norm": 0.02841477282345295,
+ "learning_rate": 0.0006,
+ "loss": 2.9348950386047363,
+ "step": 2371
+ },
+ {
+ "epoch": 32.95021834061135,
+ "grad_norm": 0.029114512726664543,
+ "learning_rate": 0.0006,
+ "loss": 2.9399232864379883,
+ "step": 2372
+ },
+ {
+ "epoch": 32.96419213973799,
+ "grad_norm": 0.027796028181910515,
+ "learning_rate": 0.0006,
+ "loss": 2.9034712314605713,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97816593886463,
+ "grad_norm": 0.027424966916441917,
+ "learning_rate": 0.0006,
+ "loss": 2.9037415981292725,
+ "step": 2374
+ },
+ {
+ "epoch": 32.992139737991266,
+ "grad_norm": 0.026966635137796402,
+ "learning_rate": 0.0006,
+ "loss": 2.9162826538085938,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.031656671315431595,
+ "learning_rate": 0.0006,
+ "loss": 2.923030376434326,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 4.279788970947266,
+ "eval_runtime": 49.948,
+ "eval_samples_per_second": 48.891,
+ "eval_steps_per_second": 1.542,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01397379912664,
+ "grad_norm": 0.033716026693582535,
+ "learning_rate": 0.0006,
+ "loss": 2.6915321350097656,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02794759825328,
+ "grad_norm": 0.04677571356296539,
+ "learning_rate": 0.0006,
+ "loss": 2.6532812118530273,
+ "step": 2378
+ },
+ {
+ "epoch": 33.041921397379916,
+ "grad_norm": 0.05152101069688797,
+ "learning_rate": 0.0006,
+ "loss": 2.6847143173217773,
+ "step": 2379
+ },
+ {
+ "epoch": 33.05589519650655,
+ "grad_norm": 0.05217320844531059,
+ "learning_rate": 0.0006,
+ "loss": 2.6862430572509766,
+ "step": 2380
+ },
+ {
+ "epoch": 33.069868995633186,
+ "grad_norm": 0.050403568893671036,
+ "learning_rate": 0.0006,
+ "loss": 2.719501495361328,
+ "step": 2381
+ },
+ {
+ "epoch": 33.083842794759825,
+ "grad_norm": 0.05084824562072754,
+ "learning_rate": 0.0006,
+ "loss": 2.692394971847534,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09781659388646,
+ "grad_norm": 0.05117104575037956,
+ "learning_rate": 0.0006,
+ "loss": 2.744056224822998,
+ "step": 2383
+ },
+ {
+ "epoch": 33.1117903930131,
+ "grad_norm": 0.04953674226999283,
+ "learning_rate": 0.0006,
+ "loss": 2.7042603492736816,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12576419213974,
+ "grad_norm": 0.04990607127547264,
+ "learning_rate": 0.0006,
+ "loss": 2.710092544555664,
+ "step": 2385
+ },
+ {
+ "epoch": 33.13973799126637,
+ "grad_norm": 0.05052730068564415,
+ "learning_rate": 0.0006,
+ "loss": 2.730630397796631,
+ "step": 2386
+ },
+ {
+ "epoch": 33.15371179039301,
+ "grad_norm": 0.05005491152405739,
+ "learning_rate": 0.0006,
+ "loss": 2.730384349822998,
+ "step": 2387
+ },
+ {
+ "epoch": 33.16768558951965,
+ "grad_norm": 0.04792829975485802,
+ "learning_rate": 0.0006,
+ "loss": 2.7367067337036133,
+ "step": 2388
+ },
+ {
+ "epoch": 33.18165938864629,
+ "grad_norm": 0.050187911838293076,
+ "learning_rate": 0.0006,
+ "loss": 2.7383334636688232,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19563318777293,
+ "grad_norm": 0.05145636200904846,
+ "learning_rate": 0.0006,
+ "loss": 2.7097063064575195,
+ "step": 2390
+ },
+ {
+ "epoch": 33.209606986899566,
+ "grad_norm": 0.050812143832445145,
+ "learning_rate": 0.0006,
+ "loss": 2.734105348587036,
+ "step": 2391
+ },
+ {
+ "epoch": 33.223580786026204,
+ "grad_norm": 0.05062062293291092,
+ "learning_rate": 0.0006,
+ "loss": 2.783468246459961,
+ "step": 2392
+ },
+ {
+ "epoch": 33.237554585152836,
+ "grad_norm": 0.05209152400493622,
+ "learning_rate": 0.0006,
+ "loss": 2.7660093307495117,
+ "step": 2393
+ },
+ {
+ "epoch": 33.251528384279474,
+ "grad_norm": 0.049624551087617874,
+ "learning_rate": 0.0006,
+ "loss": 2.7733097076416016,
+ "step": 2394
+ },
+ {
+ "epoch": 33.26550218340611,
+ "grad_norm": 0.05187871679663658,
+ "learning_rate": 0.0006,
+ "loss": 2.7738423347473145,
+ "step": 2395
+ },
+ {
+ "epoch": 33.27947598253275,
+ "grad_norm": 0.05329177528619766,
+ "learning_rate": 0.0006,
+ "loss": 2.756072998046875,
+ "step": 2396
+ },
+ {
+ "epoch": 33.29344978165939,
+ "grad_norm": 0.05190843343734741,
+ "learning_rate": 0.0006,
+ "loss": 2.7866833209991455,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30742358078603,
+ "grad_norm": 0.04941689595580101,
+ "learning_rate": 0.0006,
+ "loss": 2.7642035484313965,
+ "step": 2398
+ },
+ {
+ "epoch": 33.32139737991266,
+ "grad_norm": 0.04649437963962555,
+ "learning_rate": 0.0006,
+ "loss": 2.78639817237854,
+ "step": 2399
+ },
+ {
+ "epoch": 33.3353711790393,
+ "grad_norm": 0.044044461101293564,
+ "learning_rate": 0.0006,
+ "loss": 2.7860288619995117,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34934497816594,
+ "grad_norm": 0.04321051016449928,
+ "learning_rate": 0.0006,
+ "loss": 2.7772903442382812,
+ "step": 2401
+ },
+ {
+ "epoch": 33.36331877729258,
+ "grad_norm": 0.045066945254802704,
+ "learning_rate": 0.0006,
+ "loss": 2.780142068862915,
+ "step": 2402
+ },
+ {
+ "epoch": 33.377292576419215,
+ "grad_norm": 0.05035722628235817,
+ "learning_rate": 0.0006,
+ "loss": 2.844978094100952,
+ "step": 2403
+ },
+ {
+ "epoch": 33.391266375545854,
+ "grad_norm": 0.047962989658117294,
+ "learning_rate": 0.0006,
+ "loss": 2.790775775909424,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40524017467249,
+ "grad_norm": 0.04262860491871834,
+ "learning_rate": 0.0006,
+ "loss": 2.791409730911255,
+ "step": 2405
+ },
+ {
+ "epoch": 33.419213973799124,
+ "grad_norm": 0.04162844642996788,
+ "learning_rate": 0.0006,
+ "loss": 2.787597179412842,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43318777292576,
+ "grad_norm": 0.04054319113492966,
+ "learning_rate": 0.0006,
+ "loss": 2.8160147666931152,
+ "step": 2407
+ },
+ {
+ "epoch": 33.4471615720524,
+ "grad_norm": 0.039851218461990356,
+ "learning_rate": 0.0006,
+ "loss": 2.8315625190734863,
+ "step": 2408
+ },
+ {
+ "epoch": 33.46113537117904,
+ "grad_norm": 0.037504494190216064,
+ "learning_rate": 0.0006,
+ "loss": 2.8182449340820312,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47510917030568,
+ "grad_norm": 0.034121323376894,
+ "learning_rate": 0.0006,
+ "loss": 2.795137882232666,
+ "step": 2410
+ },
+ {
+ "epoch": 33.48908296943232,
+ "grad_norm": 0.03626429662108421,
+ "learning_rate": 0.0006,
+ "loss": 2.8132519721984863,
+ "step": 2411
+ },
+ {
+ "epoch": 33.50305676855895,
+ "grad_norm": 0.03472466766834259,
+ "learning_rate": 0.0006,
+ "loss": 2.8613948822021484,
+ "step": 2412
+ },
+ {
+ "epoch": 33.51703056768559,
+ "grad_norm": 0.033197011798620224,
+ "learning_rate": 0.0006,
+ "loss": 2.8210697174072266,
+ "step": 2413
+ },
+ {
+ "epoch": 33.531004366812226,
+ "grad_norm": 0.03290683776140213,
+ "learning_rate": 0.0006,
+ "loss": 2.8431336879730225,
+ "step": 2414
+ },
+ {
+ "epoch": 33.544978165938865,
+ "grad_norm": 0.03219873458147049,
+ "learning_rate": 0.0006,
+ "loss": 2.784018039703369,
+ "step": 2415
+ },
+ {
+ "epoch": 33.5589519650655,
+ "grad_norm": 0.03163836523890495,
+ "learning_rate": 0.0006,
+ "loss": 2.8298420906066895,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57292576419214,
+ "grad_norm": 0.030518434941768646,
+ "learning_rate": 0.0006,
+ "loss": 2.821584701538086,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58689956331878,
+ "grad_norm": 0.029640426859259605,
+ "learning_rate": 0.0006,
+ "loss": 2.8617959022521973,
+ "step": 2418
+ },
+ {
+ "epoch": 33.60087336244541,
+ "grad_norm": 0.03000856749713421,
+ "learning_rate": 0.0006,
+ "loss": 2.837906837463379,
+ "step": 2419
+ },
+ {
+ "epoch": 33.61484716157205,
+ "grad_norm": 0.029703237116336823,
+ "learning_rate": 0.0006,
+ "loss": 2.867283344268799,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62882096069869,
+ "grad_norm": 0.029219454154372215,
+ "learning_rate": 0.0006,
+ "loss": 2.8318774700164795,
+ "step": 2421
+ },
+ {
+ "epoch": 33.64279475982533,
+ "grad_norm": 0.029444001615047455,
+ "learning_rate": 0.0006,
+ "loss": 2.8493499755859375,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65676855895197,
+ "grad_norm": 0.030653655529022217,
+ "learning_rate": 0.0006,
+ "loss": 2.8528506755828857,
+ "step": 2423
+ },
+ {
+ "epoch": 33.670742358078606,
+ "grad_norm": 0.031539395451545715,
+ "learning_rate": 0.0006,
+ "loss": 2.8657748699188232,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68471615720524,
+ "grad_norm": 0.030429808422923088,
+ "learning_rate": 0.0006,
+ "loss": 2.8664650917053223,
+ "step": 2425
+ },
+ {
+ "epoch": 33.698689956331876,
+ "grad_norm": 0.029895296320319176,
+ "learning_rate": 0.0006,
+ "loss": 2.809852123260498,
+ "step": 2426
+ },
+ {
+ "epoch": 33.712663755458514,
+ "grad_norm": 0.03146650269627571,
+ "learning_rate": 0.0006,
+ "loss": 2.862276554107666,
+ "step": 2427
+ },
+ {
+ "epoch": 33.72663755458515,
+ "grad_norm": 0.03134695440530777,
+ "learning_rate": 0.0006,
+ "loss": 2.8528666496276855,
+ "step": 2428
+ },
+ {
+ "epoch": 33.74061135371179,
+ "grad_norm": 0.02905678190290928,
+ "learning_rate": 0.0006,
+ "loss": 2.882528781890869,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75458515283843,
+ "grad_norm": 0.027311185374855995,
+ "learning_rate": 0.0006,
+ "loss": 2.831305980682373,
+ "step": 2430
+ },
+ {
+ "epoch": 33.76855895196506,
+ "grad_norm": 0.029073255136609077,
+ "learning_rate": 0.0006,
+ "loss": 2.853543281555176,
+ "step": 2431
+ },
+ {
+ "epoch": 33.7825327510917,
+ "grad_norm": 0.029640158638358116,
+ "learning_rate": 0.0006,
+ "loss": 2.87980318069458,
+ "step": 2432
+ },
+ {
+ "epoch": 33.79650655021834,
+ "grad_norm": 0.02919093891978264,
+ "learning_rate": 0.0006,
+ "loss": 2.865605592727661,
+ "step": 2433
+ },
+ {
+ "epoch": 33.81048034934498,
+ "grad_norm": 0.0279269777238369,
+ "learning_rate": 0.0006,
+ "loss": 2.8410637378692627,
+ "step": 2434
+ },
+ {
+ "epoch": 33.82445414847162,
+ "grad_norm": 0.028659343719482422,
+ "learning_rate": 0.0006,
+ "loss": 2.905547618865967,
+ "step": 2435
+ },
+ {
+ "epoch": 33.838427947598255,
+ "grad_norm": 0.029965637251734734,
+ "learning_rate": 0.0006,
+ "loss": 2.8864023685455322,
+ "step": 2436
+ },
+ {
+ "epoch": 33.852401746724894,
+ "grad_norm": 0.0290619358420372,
+ "learning_rate": 0.0006,
+ "loss": 2.8675897121429443,
+ "step": 2437
+ },
+ {
+ "epoch": 33.866375545851525,
+ "grad_norm": 0.02953960932791233,
+ "learning_rate": 0.0006,
+ "loss": 2.867520332336426,
+ "step": 2438
+ },
+ {
+ "epoch": 33.880349344978164,
+ "grad_norm": 0.027759216725826263,
+ "learning_rate": 0.0006,
+ "loss": 2.8683114051818848,
+ "step": 2439
+ },
+ {
+ "epoch": 33.8943231441048,
+ "grad_norm": 0.029629496857523918,
+ "learning_rate": 0.0006,
+ "loss": 2.8873648643493652,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90829694323144,
+ "grad_norm": 0.030611209571361542,
+ "learning_rate": 0.0006,
+ "loss": 2.8631839752197266,
+ "step": 2441
+ },
+ {
+ "epoch": 33.92227074235808,
+ "grad_norm": 0.029470890760421753,
+ "learning_rate": 0.0006,
+ "loss": 2.911470651626587,
+ "step": 2442
+ },
+ {
+ "epoch": 33.93624454148472,
+ "grad_norm": 0.02960297465324402,
+ "learning_rate": 0.0006,
+ "loss": 2.889380931854248,
+ "step": 2443
+ },
+ {
+ "epoch": 33.95021834061135,
+ "grad_norm": 0.029129860922694206,
+ "learning_rate": 0.0006,
+ "loss": 2.9198157787323,
+ "step": 2444
+ },
+ {
+ "epoch": 33.96419213973799,
+ "grad_norm": 0.029969653114676476,
+ "learning_rate": 0.0006,
+ "loss": 2.8918609619140625,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97816593886463,
+ "grad_norm": 0.030586522072553635,
+ "learning_rate": 0.0006,
+ "loss": 2.873225212097168,
+ "step": 2446
+ },
+ {
+ "epoch": 33.992139737991266,
+ "grad_norm": 0.02921980805695057,
+ "learning_rate": 0.0006,
+ "loss": 2.887167453765869,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.03401815518736839,
+ "learning_rate": 0.0006,
+ "loss": 2.89204740524292,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 4.312065124511719,
+ "eval_runtime": 49.9591,
+ "eval_samples_per_second": 48.88,
+ "eval_steps_per_second": 1.541,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01397379912664,
+ "grad_norm": 0.03744617849588394,
+ "learning_rate": 0.0006,
+ "loss": 2.633880138397217,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02794759825328,
+ "grad_norm": 0.054182395339012146,
+ "learning_rate": 0.0006,
+ "loss": 2.6851818561553955,
+ "step": 2450
+ },
+ {
+ "epoch": 34.041921397379916,
+ "grad_norm": 0.06439153105020523,
+ "learning_rate": 0.0006,
+ "loss": 2.679424524307251,
+ "step": 2451
+ },
+ {
+ "epoch": 34.05589519650655,
+ "grad_norm": 0.06744980812072754,
+ "learning_rate": 0.0006,
+ "loss": 2.687166452407837,
+ "step": 2452
+ },
+ {
+ "epoch": 34.069868995633186,
+ "grad_norm": 0.0673324465751648,
+ "learning_rate": 0.0006,
+ "loss": 2.691007137298584,
+ "step": 2453
+ },
+ {
+ "epoch": 34.083842794759825,
+ "grad_norm": 0.0708099827170372,
+ "learning_rate": 0.0006,
+ "loss": 2.6955928802490234,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09781659388646,
+ "grad_norm": 0.07955297082662582,
+ "learning_rate": 0.0006,
+ "loss": 2.6972296237945557,
+ "step": 2455
+ },
+ {
+ "epoch": 34.1117903930131,
+ "grad_norm": 0.08364879339933395,
+ "learning_rate": 0.0006,
+ "loss": 2.701580762863159,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12576419213974,
+ "grad_norm": 0.07912622392177582,
+ "learning_rate": 0.0006,
+ "loss": 2.7441725730895996,
+ "step": 2457
+ },
+ {
+ "epoch": 34.13973799126637,
+ "grad_norm": 0.0700681209564209,
+ "learning_rate": 0.0006,
+ "loss": 2.713972806930542,
+ "step": 2458
+ },
+ {
+ "epoch": 34.15371179039301,
+ "grad_norm": 0.07052778452634811,
+ "learning_rate": 0.0006,
+ "loss": 2.7288241386413574,
+ "step": 2459
+ },
+ {
+ "epoch": 34.16768558951965,
+ "grad_norm": 0.07464324682950974,
+ "learning_rate": 0.0006,
+ "loss": 2.750864028930664,
+ "step": 2460
+ },
+ {
+ "epoch": 34.18165938864629,
+ "grad_norm": 0.07311835139989853,
+ "learning_rate": 0.0006,
+ "loss": 2.7264657020568848,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19563318777293,
+ "grad_norm": 0.06497597694396973,
+ "learning_rate": 0.0006,
+ "loss": 2.682237148284912,
+ "step": 2462
+ },
+ {
+ "epoch": 34.209606986899566,
+ "grad_norm": 0.05856176093220711,
+ "learning_rate": 0.0006,
+ "loss": 2.7529397010803223,
+ "step": 2463
+ },
+ {
+ "epoch": 34.223580786026204,
+ "grad_norm": 0.061765216290950775,
+ "learning_rate": 0.0006,
+ "loss": 2.7662041187286377,
+ "step": 2464
+ },
+ {
+ "epoch": 34.237554585152836,
+ "grad_norm": 0.0642806887626648,
+ "learning_rate": 0.0006,
+ "loss": 2.7548298835754395,
+ "step": 2465
+ },
+ {
+ "epoch": 34.251528384279474,
+ "grad_norm": 0.06512990593910217,
+ "learning_rate": 0.0006,
+ "loss": 2.7554194927215576,
+ "step": 2466
+ },
+ {
+ "epoch": 34.26550218340611,
+ "grad_norm": 0.0589950829744339,
+ "learning_rate": 0.0006,
+ "loss": 2.769420623779297,
+ "step": 2467
+ },
+ {
+ "epoch": 34.27947598253275,
+ "grad_norm": 0.05657818540930748,
+ "learning_rate": 0.0006,
+ "loss": 2.7650272846221924,
+ "step": 2468
+ },
+ {
+ "epoch": 34.29344978165939,
+ "grad_norm": 0.05322669446468353,
+ "learning_rate": 0.0006,
+ "loss": 2.77347993850708,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30742358078603,
+ "grad_norm": 0.05230143666267395,
+ "learning_rate": 0.0006,
+ "loss": 2.735914468765259,
+ "step": 2470
+ },
+ {
+ "epoch": 34.32139737991266,
+ "grad_norm": 0.05265705659985542,
+ "learning_rate": 0.0006,
+ "loss": 2.7812156677246094,
+ "step": 2471
+ },
+ {
+ "epoch": 34.3353711790393,
+ "grad_norm": 0.05546131730079651,
+ "learning_rate": 0.0006,
+ "loss": 2.7896432876586914,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34934497816594,
+ "grad_norm": 0.05458299443125725,
+ "learning_rate": 0.0006,
+ "loss": 2.819030284881592,
+ "step": 2473
+ },
+ {
+ "epoch": 34.36331877729258,
+ "grad_norm": 0.05159497633576393,
+ "learning_rate": 0.0006,
+ "loss": 2.754566192626953,
+ "step": 2474
+ },
+ {
+ "epoch": 34.377292576419215,
+ "grad_norm": 0.050053127110004425,
+ "learning_rate": 0.0006,
+ "loss": 2.8089818954467773,
+ "step": 2475
+ },
+ {
+ "epoch": 34.391266375545854,
+ "grad_norm": 0.04858779534697533,
+ "learning_rate": 0.0006,
+ "loss": 2.7998061180114746,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40524017467249,
+ "grad_norm": 0.044354405254125595,
+ "learning_rate": 0.0006,
+ "loss": 2.784242630004883,
+ "step": 2477
+ },
+ {
+ "epoch": 34.419213973799124,
+ "grad_norm": 0.04001179337501526,
+ "learning_rate": 0.0006,
+ "loss": 2.783764362335205,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43318777292576,
+ "grad_norm": 0.04385716840624809,
+ "learning_rate": 0.0006,
+ "loss": 2.784696102142334,
+ "step": 2479
+ },
+ {
+ "epoch": 34.4471615720524,
+ "grad_norm": 0.043631598353385925,
+ "learning_rate": 0.0006,
+ "loss": 2.8201065063476562,
+ "step": 2480
+ },
+ {
+ "epoch": 34.46113537117904,
+ "grad_norm": 0.04059017077088356,
+ "learning_rate": 0.0006,
+ "loss": 2.8026556968688965,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47510917030568,
+ "grad_norm": 0.036322809755802155,
+ "learning_rate": 0.0006,
+ "loss": 2.7829108238220215,
+ "step": 2482
+ },
+ {
+ "epoch": 34.48908296943232,
+ "grad_norm": 0.035887353122234344,
+ "learning_rate": 0.0006,
+ "loss": 2.7465004920959473,
+ "step": 2483
+ },
+ {
+ "epoch": 34.50305676855895,
+ "grad_norm": 0.03708780184388161,
+ "learning_rate": 0.0006,
+ "loss": 2.8431384563446045,
+ "step": 2484
+ },
+ {
+ "epoch": 34.51703056768559,
+ "grad_norm": 0.03533044084906578,
+ "learning_rate": 0.0006,
+ "loss": 2.8101470470428467,
+ "step": 2485
+ },
+ {
+ "epoch": 34.531004366812226,
+ "grad_norm": 0.03405928611755371,
+ "learning_rate": 0.0006,
+ "loss": 2.7987847328186035,
+ "step": 2486
+ },
+ {
+ "epoch": 34.544978165938865,
+ "grad_norm": 0.03389867767691612,
+ "learning_rate": 0.0006,
+ "loss": 2.7919681072235107,
+ "step": 2487
+ },
+ {
+ "epoch": 34.5589519650655,
+ "grad_norm": 0.033871643245220184,
+ "learning_rate": 0.0006,
+ "loss": 2.7761473655700684,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57292576419214,
+ "grad_norm": 0.03257331997156143,
+ "learning_rate": 0.0006,
+ "loss": 2.812105894088745,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58689956331878,
+ "grad_norm": 0.03190063685178757,
+ "learning_rate": 0.0006,
+ "loss": 2.8423357009887695,
+ "step": 2490
+ },
+ {
+ "epoch": 34.60087336244541,
+ "grad_norm": 0.031575895845890045,
+ "learning_rate": 0.0006,
+ "loss": 2.7943596839904785,
+ "step": 2491
+ },
+ {
+ "epoch": 34.61484716157205,
+ "grad_norm": 0.03200801834464073,
+ "learning_rate": 0.0006,
+ "loss": 2.8491477966308594,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62882096069869,
+ "grad_norm": 0.030606744810938835,
+ "learning_rate": 0.0006,
+ "loss": 2.813282012939453,
+ "step": 2493
+ },
+ {
+ "epoch": 34.64279475982533,
+ "grad_norm": 0.030069513246417046,
+ "learning_rate": 0.0006,
+ "loss": 2.8009464740753174,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65676855895197,
+ "grad_norm": 0.0297919362783432,
+ "learning_rate": 0.0006,
+ "loss": 2.8645522594451904,
+ "step": 2495
+ },
+ {
+ "epoch": 34.670742358078606,
+ "grad_norm": 0.03045765683054924,
+ "learning_rate": 0.0006,
+ "loss": 2.8353028297424316,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68471615720524,
+ "grad_norm": 0.030040500685572624,
+ "learning_rate": 0.0006,
+ "loss": 2.8319077491760254,
+ "step": 2497
+ },
+ {
+ "epoch": 34.698689956331876,
+ "grad_norm": 0.031257182359695435,
+ "learning_rate": 0.0006,
+ "loss": 2.834317207336426,
+ "step": 2498
+ },
+ {
+ "epoch": 34.712663755458514,
+ "grad_norm": 0.030055133625864983,
+ "learning_rate": 0.0006,
+ "loss": 2.8072402477264404,
+ "step": 2499
+ },
+ {
+ "epoch": 34.72663755458515,
+ "grad_norm": 0.029170751571655273,
+ "learning_rate": 0.0006,
+ "loss": 2.8323609828948975,
+ "step": 2500
+ },
+ {
+ "epoch": 34.74061135371179,
+ "grad_norm": 0.029433568939566612,
+ "learning_rate": 0.0006,
+ "loss": 2.8593740463256836,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75458515283843,
+ "grad_norm": 0.02942809648811817,
+ "learning_rate": 0.0006,
+ "loss": 2.820500373840332,
+ "step": 2502
+ },
+ {
+ "epoch": 34.76855895196506,
+ "grad_norm": 0.029914356768131256,
+ "learning_rate": 0.0006,
+ "loss": 2.834043502807617,
+ "step": 2503
+ },
+ {
+ "epoch": 34.7825327510917,
+ "grad_norm": 0.028835486620664597,
+ "learning_rate": 0.0006,
+ "loss": 2.831223487854004,
+ "step": 2504
+ },
+ {
+ "epoch": 34.79650655021834,
+ "grad_norm": 0.029353221878409386,
+ "learning_rate": 0.0006,
+ "loss": 2.841521739959717,
+ "step": 2505
+ },
+ {
+ "epoch": 34.81048034934498,
+ "grad_norm": 0.028947100043296814,
+ "learning_rate": 0.0006,
+ "loss": 2.831580638885498,
+ "step": 2506
+ },
+ {
+ "epoch": 34.82445414847162,
+ "grad_norm": 0.028323130682110786,
+ "learning_rate": 0.0006,
+ "loss": 2.8628885746002197,
+ "step": 2507
+ },
+ {
+ "epoch": 34.838427947598255,
+ "grad_norm": 0.029734885320067406,
+ "learning_rate": 0.0006,
+ "loss": 2.854740619659424,
+ "step": 2508
+ },
+ {
+ "epoch": 34.852401746724894,
+ "grad_norm": 0.0290104690939188,
+ "learning_rate": 0.0006,
+ "loss": 2.85213041305542,
+ "step": 2509
+ },
+ {
+ "epoch": 34.866375545851525,
+ "grad_norm": 0.029280826449394226,
+ "learning_rate": 0.0006,
+ "loss": 2.857929229736328,
+ "step": 2510
+ },
+ {
+ "epoch": 34.880349344978164,
+ "grad_norm": 0.028648024424910545,
+ "learning_rate": 0.0006,
+ "loss": 2.830528736114502,
+ "step": 2511
+ },
+ {
+ "epoch": 34.8943231441048,
+ "grad_norm": 0.029075585305690765,
+ "learning_rate": 0.0006,
+ "loss": 2.881229877471924,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90829694323144,
+ "grad_norm": 0.028980575501918793,
+ "learning_rate": 0.0006,
+ "loss": 2.868142604827881,
+ "step": 2513
+ },
+ {
+ "epoch": 34.92227074235808,
+ "grad_norm": 0.029943501576781273,
+ "learning_rate": 0.0006,
+ "loss": 2.8303728103637695,
+ "step": 2514
+ },
+ {
+ "epoch": 34.93624454148472,
+ "grad_norm": 0.02938331663608551,
+ "learning_rate": 0.0006,
+ "loss": 2.8427226543426514,
+ "step": 2515
+ },
+ {
+ "epoch": 34.95021834061135,
+ "grad_norm": 0.02868194319307804,
+ "learning_rate": 0.0006,
+ "loss": 2.849410057067871,
+ "step": 2516
+ },
+ {
+ "epoch": 34.96419213973799,
+ "grad_norm": 0.030948800966143608,
+ "learning_rate": 0.0006,
+ "loss": 2.884430170059204,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97816593886463,
+ "grad_norm": 0.030883876606822014,
+ "learning_rate": 0.0006,
+ "loss": 2.8707523345947266,
+ "step": 2518
+ },
+ {
+ "epoch": 34.992139737991266,
+ "grad_norm": 0.03043620102107525,
+ "learning_rate": 0.0006,
+ "loss": 2.851923704147339,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.033082764595746994,
+ "learning_rate": 0.0006,
+ "loss": 2.8447909355163574,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 4.33588171005249,
+ "eval_runtime": 49.934,
+ "eval_samples_per_second": 48.905,
+ "eval_steps_per_second": 1.542,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01397379912664,
+ "grad_norm": 0.036395180970430374,
+ "learning_rate": 0.0006,
+ "loss": 2.6331610679626465,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02794759825328,
+ "grad_norm": 0.053629934787750244,
+ "learning_rate": 0.0006,
+ "loss": 2.6128628253936768,
+ "step": 2522
+ },
+ {
+ "epoch": 35.041921397379916,
+ "grad_norm": 0.054892078042030334,
+ "learning_rate": 0.0006,
+ "loss": 2.6575927734375,
+ "step": 2523
+ },
+ {
+ "epoch": 35.05589519650655,
+ "grad_norm": 0.05470828711986542,
+ "learning_rate": 0.0006,
+ "loss": 2.6456429958343506,
+ "step": 2524
+ },
+ {
+ "epoch": 35.069868995633186,
+ "grad_norm": 0.06473619490861893,
+ "learning_rate": 0.0006,
+ "loss": 2.632046937942505,
+ "step": 2525
+ },
+ {
+ "epoch": 35.083842794759825,
+ "grad_norm": 0.0745120495557785,
+ "learning_rate": 0.0006,
+ "loss": 2.6917338371276855,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09781659388646,
+ "grad_norm": 0.0714118480682373,
+ "learning_rate": 0.0006,
+ "loss": 2.6786327362060547,
+ "step": 2527
+ },
+ {
+ "epoch": 35.1117903930131,
+ "grad_norm": 0.06144334003329277,
+ "learning_rate": 0.0006,
+ "loss": 2.6451380252838135,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12576419213974,
+ "grad_norm": 0.060587771236896515,
+ "learning_rate": 0.0006,
+ "loss": 2.6674041748046875,
+ "step": 2529
+ },
+ {
+ "epoch": 35.13973799126637,
+ "grad_norm": 0.06250529736280441,
+ "learning_rate": 0.0006,
+ "loss": 2.6516387462615967,
+ "step": 2530
+ },
+ {
+ "epoch": 35.15371179039301,
+ "grad_norm": 0.06093739718198776,
+ "learning_rate": 0.0006,
+ "loss": 2.6811413764953613,
+ "step": 2531
+ },
+ {
+ "epoch": 35.16768558951965,
+ "grad_norm": 0.05771986022591591,
+ "learning_rate": 0.0006,
+ "loss": 2.691535711288452,
+ "step": 2532
+ },
+ {
+ "epoch": 35.18165938864629,
+ "grad_norm": 0.05855504050850868,
+ "learning_rate": 0.0006,
+ "loss": 2.665607213973999,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19563318777293,
+ "grad_norm": 0.05824999883770943,
+ "learning_rate": 0.0006,
+ "loss": 2.721041202545166,
+ "step": 2534
+ },
+ {
+ "epoch": 35.209606986899566,
+ "grad_norm": 0.053909532725811005,
+ "learning_rate": 0.0006,
+ "loss": 2.660585403442383,
+ "step": 2535
+ },
+ {
+ "epoch": 35.223580786026204,
+ "grad_norm": 0.055602360516786575,
+ "learning_rate": 0.0006,
+ "loss": 2.6967453956604004,
+ "step": 2536
+ },
+ {
+ "epoch": 35.237554585152836,
+ "grad_norm": 0.0574912391602993,
+ "learning_rate": 0.0006,
+ "loss": 2.7239747047424316,
+ "step": 2537
+ },
+ {
+ "epoch": 35.251528384279474,
+ "grad_norm": 0.054333578795194626,
+ "learning_rate": 0.0006,
+ "loss": 2.6704535484313965,
+ "step": 2538
+ },
+ {
+ "epoch": 35.26550218340611,
+ "grad_norm": 0.05948286131024361,
+ "learning_rate": 0.0006,
+ "loss": 2.720869541168213,
+ "step": 2539
+ },
+ {
+ "epoch": 35.27947598253275,
+ "grad_norm": 0.06190783903002739,
+ "learning_rate": 0.0006,
+ "loss": 2.721590757369995,
+ "step": 2540
+ },
+ {
+ "epoch": 35.29344978165939,
+ "grad_norm": 0.05553191900253296,
+ "learning_rate": 0.0006,
+ "loss": 2.7517542839050293,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30742358078603,
+ "grad_norm": 0.04760485514998436,
+ "learning_rate": 0.0006,
+ "loss": 2.7198104858398438,
+ "step": 2542
+ },
+ {
+ "epoch": 35.32139737991266,
+ "grad_norm": 0.04803032800555229,
+ "learning_rate": 0.0006,
+ "loss": 2.7268385887145996,
+ "step": 2543
+ },
+ {
+ "epoch": 35.3353711790393,
+ "grad_norm": 0.047935858368873596,
+ "learning_rate": 0.0006,
+ "loss": 2.766300678253174,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34934497816594,
+ "grad_norm": 0.043682098388671875,
+ "learning_rate": 0.0006,
+ "loss": 2.735440254211426,
+ "step": 2545
+ },
+ {
+ "epoch": 35.36331877729258,
+ "grad_norm": 0.0460897758603096,
+ "learning_rate": 0.0006,
+ "loss": 2.717315912246704,
+ "step": 2546
+ },
+ {
+ "epoch": 35.377292576419215,
+ "grad_norm": 0.044396013021469116,
+ "learning_rate": 0.0006,
+ "loss": 2.7212257385253906,
+ "step": 2547
+ },
+ {
+ "epoch": 35.391266375545854,
+ "grad_norm": 0.040433261543512344,
+ "learning_rate": 0.0006,
+ "loss": 2.723316192626953,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40524017467249,
+ "grad_norm": 0.041403185576200485,
+ "learning_rate": 0.0006,
+ "loss": 2.759697675704956,
+ "step": 2549
+ },
+ {
+ "epoch": 35.419213973799124,
+ "grad_norm": 0.03993840515613556,
+ "learning_rate": 0.0006,
+ "loss": 2.775761604309082,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43318777292576,
+ "grad_norm": 0.03806636855006218,
+ "learning_rate": 0.0006,
+ "loss": 2.750617027282715,
+ "step": 2551
+ },
+ {
+ "epoch": 35.4471615720524,
+ "grad_norm": 0.03736311197280884,
+ "learning_rate": 0.0006,
+ "loss": 2.7172799110412598,
+ "step": 2552
+ },
+ {
+ "epoch": 35.46113537117904,
+ "grad_norm": 0.036035846918821335,
+ "learning_rate": 0.0006,
+ "loss": 2.759298801422119,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47510917030568,
+ "grad_norm": 0.03488297760486603,
+ "learning_rate": 0.0006,
+ "loss": 2.747471809387207,
+ "step": 2554
+ },
+ {
+ "epoch": 35.48908296943232,
+ "grad_norm": 0.03363402560353279,
+ "learning_rate": 0.0006,
+ "loss": 2.759998083114624,
+ "step": 2555
+ },
+ {
+ "epoch": 35.50305676855895,
+ "grad_norm": 0.03320737183094025,
+ "learning_rate": 0.0006,
+ "loss": 2.7580599784851074,
+ "step": 2556
+ },
+ {
+ "epoch": 35.51703056768559,
+ "grad_norm": 0.03354880213737488,
+ "learning_rate": 0.0006,
+ "loss": 2.7684097290039062,
+ "step": 2557
+ },
+ {
+ "epoch": 35.531004366812226,
+ "grad_norm": 0.03128495812416077,
+ "learning_rate": 0.0006,
+ "loss": 2.7520344257354736,
+ "step": 2558
+ },
+ {
+ "epoch": 35.544978165938865,
+ "grad_norm": 0.031224513426423073,
+ "learning_rate": 0.0006,
+ "loss": 2.770404815673828,
+ "step": 2559
+ },
+ {
+ "epoch": 35.5589519650655,
+ "grad_norm": 0.03233371675014496,
+ "learning_rate": 0.0006,
+ "loss": 2.7809855937957764,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57292576419214,
+ "grad_norm": 0.032018471509218216,
+ "learning_rate": 0.0006,
+ "loss": 2.7970263957977295,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58689956331878,
+ "grad_norm": 0.032062090933322906,
+ "learning_rate": 0.0006,
+ "loss": 2.7884416580200195,
+ "step": 2562
+ },
+ {
+ "epoch": 35.60087336244541,
+ "grad_norm": 0.03408309072256088,
+ "learning_rate": 0.0006,
+ "loss": 2.764061450958252,
+ "step": 2563
+ },
+ {
+ "epoch": 35.61484716157205,
+ "grad_norm": 0.0338619202375412,
+ "learning_rate": 0.0006,
+ "loss": 2.789513111114502,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62882096069869,
+ "grad_norm": 0.03228410705924034,
+ "learning_rate": 0.0006,
+ "loss": 2.8063037395477295,
+ "step": 2565
+ },
+ {
+ "epoch": 35.64279475982533,
+ "grad_norm": 0.03316644951701164,
+ "learning_rate": 0.0006,
+ "loss": 2.7694640159606934,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65676855895197,
+ "grad_norm": 0.033389851450920105,
+ "learning_rate": 0.0006,
+ "loss": 2.7624075412750244,
+ "step": 2567
+ },
+ {
+ "epoch": 35.670742358078606,
+ "grad_norm": 0.03307284414768219,
+ "learning_rate": 0.0006,
+ "loss": 2.785665988922119,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68471615720524,
+ "grad_norm": 0.030986541882157326,
+ "learning_rate": 0.0006,
+ "loss": 2.7866663932800293,
+ "step": 2569
+ },
+ {
+ "epoch": 35.698689956331876,
+ "grad_norm": 0.03094528801739216,
+ "learning_rate": 0.0006,
+ "loss": 2.8076682090759277,
+ "step": 2570
+ },
+ {
+ "epoch": 35.712663755458514,
+ "grad_norm": 0.03171663358807564,
+ "learning_rate": 0.0006,
+ "loss": 2.782132148742676,
+ "step": 2571
+ },
+ {
+ "epoch": 35.72663755458515,
+ "grad_norm": 0.0331517718732357,
+ "learning_rate": 0.0006,
+ "loss": 2.8277947902679443,
+ "step": 2572
+ },
+ {
+ "epoch": 35.74061135371179,
+ "grad_norm": 0.03378507122397423,
+ "learning_rate": 0.0006,
+ "loss": 2.8356106281280518,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75458515283843,
+ "grad_norm": 0.032871708273887634,
+ "learning_rate": 0.0006,
+ "loss": 2.791121244430542,
+ "step": 2574
+ },
+ {
+ "epoch": 35.76855895196506,
+ "grad_norm": 0.0323161855340004,
+ "learning_rate": 0.0006,
+ "loss": 2.8413639068603516,
+ "step": 2575
+ },
+ {
+ "epoch": 35.7825327510917,
+ "grad_norm": 0.030985118821263313,
+ "learning_rate": 0.0006,
+ "loss": 2.8311750888824463,
+ "step": 2576
+ },
+ {
+ "epoch": 35.79650655021834,
+ "grad_norm": 0.03137309476733208,
+ "learning_rate": 0.0006,
+ "loss": 2.8018269538879395,
+ "step": 2577
+ },
+ {
+ "epoch": 35.81048034934498,
+ "grad_norm": 0.0310555137693882,
+ "learning_rate": 0.0006,
+ "loss": 2.828988552093506,
+ "step": 2578
+ },
+ {
+ "epoch": 35.82445414847162,
+ "grad_norm": 0.0319097563624382,
+ "learning_rate": 0.0006,
+ "loss": 2.8161017894744873,
+ "step": 2579
+ },
+ {
+ "epoch": 35.838427947598255,
+ "grad_norm": 0.03197171911597252,
+ "learning_rate": 0.0006,
+ "loss": 2.8399734497070312,
+ "step": 2580
+ },
+ {
+ "epoch": 35.852401746724894,
+ "grad_norm": 0.030828699469566345,
+ "learning_rate": 0.0006,
+ "loss": 2.836793899536133,
+ "step": 2581
+ },
+ {
+ "epoch": 35.866375545851525,
+ "grad_norm": 0.03147060424089432,
+ "learning_rate": 0.0006,
+ "loss": 2.844219923019409,
+ "step": 2582
+ },
+ {
+ "epoch": 35.880349344978164,
+ "grad_norm": 0.02972196415066719,
+ "learning_rate": 0.0006,
+ "loss": 2.817901611328125,
+ "step": 2583
+ },
+ {
+ "epoch": 35.8943231441048,
+ "grad_norm": 0.02843536250293255,
+ "learning_rate": 0.0006,
+ "loss": 2.838104486465454,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90829694323144,
+ "grad_norm": 0.029629549011588097,
+ "learning_rate": 0.0006,
+ "loss": 2.821699857711792,
+ "step": 2585
+ },
+ {
+ "epoch": 35.92227074235808,
+ "grad_norm": 0.02935348078608513,
+ "learning_rate": 0.0006,
+ "loss": 2.8552277088165283,
+ "step": 2586
+ },
+ {
+ "epoch": 35.93624454148472,
+ "grad_norm": 0.029901504516601562,
+ "learning_rate": 0.0006,
+ "loss": 2.8445591926574707,
+ "step": 2587
+ },
+ {
+ "epoch": 35.95021834061135,
+ "grad_norm": 0.029276540502905846,
+ "learning_rate": 0.0006,
+ "loss": 2.8441314697265625,
+ "step": 2588
+ },
+ {
+ "epoch": 35.96419213973799,
+ "grad_norm": 0.029745396226644516,
+ "learning_rate": 0.0006,
+ "loss": 2.896646022796631,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97816593886463,
+ "grad_norm": 0.02929696813225746,
+ "learning_rate": 0.0006,
+ "loss": 2.8974666595458984,
+ "step": 2590
+ },
+ {
+ "epoch": 35.992139737991266,
+ "grad_norm": 0.02984563633799553,
+ "learning_rate": 0.0006,
+ "loss": 2.8272669315338135,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.03494219109416008,
+ "learning_rate": 0.0006,
+ "loss": 2.8428730964660645,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 4.369523525238037,
+ "eval_runtime": 50.0529,
+ "eval_samples_per_second": 48.788,
+ "eval_steps_per_second": 1.538,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01397379912664,
+ "grad_norm": 0.03490602225065231,
+ "learning_rate": 0.0006,
+ "loss": 2.5940639972686768,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02794759825328,
+ "grad_norm": 0.050851449370384216,
+ "learning_rate": 0.0006,
+ "loss": 2.593388557434082,
+ "step": 2594
+ },
+ {
+ "epoch": 36.041921397379916,
+ "grad_norm": 0.060013141483068466,
+ "learning_rate": 0.0006,
+ "loss": 2.6344308853149414,
+ "step": 2595
+ },
+ {
+ "epoch": 36.05589519650655,
+ "grad_norm": 0.06508053094148636,
+ "learning_rate": 0.0006,
+ "loss": 2.6312448978424072,
+ "step": 2596
+ },
+ {
+ "epoch": 36.069868995633186,
+ "grad_norm": 0.06916631013154984,
+ "learning_rate": 0.0006,
+ "loss": 2.600289821624756,
+ "step": 2597
+ },
+ {
+ "epoch": 36.083842794759825,
+ "grad_norm": 0.07091353833675385,
+ "learning_rate": 0.0006,
+ "loss": 2.609846830368042,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09781659388646,
+ "grad_norm": 0.07601680606603622,
+ "learning_rate": 0.0006,
+ "loss": 2.654294490814209,
+ "step": 2599
+ },
+ {
+ "epoch": 36.1117903930131,
+ "grad_norm": 0.07646584510803223,
+ "learning_rate": 0.0006,
+ "loss": 2.6450939178466797,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12576419213974,
+ "grad_norm": 0.07362814247608185,
+ "learning_rate": 0.0006,
+ "loss": 2.659259796142578,
+ "step": 2601
+ },
+ {
+ "epoch": 36.13973799126637,
+ "grad_norm": 0.08164925128221512,
+ "learning_rate": 0.0006,
+ "loss": 2.662081718444824,
+ "step": 2602
+ },
+ {
+ "epoch": 36.15371179039301,
+ "grad_norm": 0.08094824850559235,
+ "learning_rate": 0.0006,
+ "loss": 2.667121410369873,
+ "step": 2603
+ },
+ {
+ "epoch": 36.16768558951965,
+ "grad_norm": 0.07605643570423126,
+ "learning_rate": 0.0006,
+ "loss": 2.6883997917175293,
+ "step": 2604
+ },
+ {
+ "epoch": 36.18165938864629,
+ "grad_norm": 0.06676740944385529,
+ "learning_rate": 0.0006,
+ "loss": 2.663100242614746,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19563318777293,
+ "grad_norm": 0.0635375827550888,
+ "learning_rate": 0.0006,
+ "loss": 2.6472132205963135,
+ "step": 2606
+ },
+ {
+ "epoch": 36.209606986899566,
+ "grad_norm": 0.06065768003463745,
+ "learning_rate": 0.0006,
+ "loss": 2.6462607383728027,
+ "step": 2607
+ },
+ {
+ "epoch": 36.223580786026204,
+ "grad_norm": 0.06379321962594986,
+ "learning_rate": 0.0006,
+ "loss": 2.6894640922546387,
+ "step": 2608
+ },
+ {
+ "epoch": 36.237554585152836,
+ "grad_norm": 0.06459622085094452,
+ "learning_rate": 0.0006,
+ "loss": 2.7406561374664307,
+ "step": 2609
+ },
+ {
+ "epoch": 36.251528384279474,
+ "grad_norm": 0.06207888945937157,
+ "learning_rate": 0.0006,
+ "loss": 2.7089905738830566,
+ "step": 2610
+ },
+ {
+ "epoch": 36.26550218340611,
+ "grad_norm": 0.06348677724599838,
+ "learning_rate": 0.0006,
+ "loss": 2.725884437561035,
+ "step": 2611
+ },
+ {
+ "epoch": 36.27947598253275,
+ "grad_norm": 0.06256353110074997,
+ "learning_rate": 0.0006,
+ "loss": 2.7075743675231934,
+ "step": 2612
+ },
+ {
+ "epoch": 36.29344978165939,
+ "grad_norm": 0.05954873189330101,
+ "learning_rate": 0.0006,
+ "loss": 2.7114720344543457,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30742358078603,
+ "grad_norm": 0.0583999864757061,
+ "learning_rate": 0.0006,
+ "loss": 2.7207398414611816,
+ "step": 2614
+ },
+ {
+ "epoch": 36.32139737991266,
+ "grad_norm": 0.061629343777894974,
+ "learning_rate": 0.0006,
+ "loss": 2.7031898498535156,
+ "step": 2615
+ },
+ {
+ "epoch": 36.3353711790393,
+ "grad_norm": 0.061459898948669434,
+ "learning_rate": 0.0006,
+ "loss": 2.735596179962158,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34934497816594,
+ "grad_norm": 0.053438540548086166,
+ "learning_rate": 0.0006,
+ "loss": 2.7351770401000977,
+ "step": 2617
+ },
+ {
+ "epoch": 36.36331877729258,
+ "grad_norm": 0.04568196460604668,
+ "learning_rate": 0.0006,
+ "loss": 2.7138471603393555,
+ "step": 2618
+ },
+ {
+ "epoch": 36.377292576419215,
+ "grad_norm": 0.04499683529138565,
+ "learning_rate": 0.0006,
+ "loss": 2.730149030685425,
+ "step": 2619
+ },
+ {
+ "epoch": 36.391266375545854,
+ "grad_norm": 0.04277553781867027,
+ "learning_rate": 0.0006,
+ "loss": 2.7424325942993164,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40524017467249,
+ "grad_norm": 0.04207402467727661,
+ "learning_rate": 0.0006,
+ "loss": 2.754441261291504,
+ "step": 2621
+ },
+ {
+ "epoch": 36.419213973799124,
+ "grad_norm": 0.03976842388510704,
+ "learning_rate": 0.0006,
+ "loss": 2.732058048248291,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43318777292576,
+ "grad_norm": 0.03874991834163666,
+ "learning_rate": 0.0006,
+ "loss": 2.7042877674102783,
+ "step": 2623
+ },
+ {
+ "epoch": 36.4471615720524,
+ "grad_norm": 0.03784204646945,
+ "learning_rate": 0.0006,
+ "loss": 2.7523202896118164,
+ "step": 2624
+ },
+ {
+ "epoch": 36.46113537117904,
+ "grad_norm": 0.03787514567375183,
+ "learning_rate": 0.0006,
+ "loss": 2.738129138946533,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47510917030568,
+ "grad_norm": 0.037570249289274216,
+ "learning_rate": 0.0006,
+ "loss": 2.743746757507324,
+ "step": 2626
+ },
+ {
+ "epoch": 36.48908296943232,
+ "grad_norm": 0.035842426121234894,
+ "learning_rate": 0.0006,
+ "loss": 2.7416439056396484,
+ "step": 2627
+ },
+ {
+ "epoch": 36.50305676855895,
+ "grad_norm": 0.034818656742572784,
+ "learning_rate": 0.0006,
+ "loss": 2.7759745121002197,
+ "step": 2628
+ },
+ {
+ "epoch": 36.51703056768559,
+ "grad_norm": 0.034450169652700424,
+ "learning_rate": 0.0006,
+ "loss": 2.736292839050293,
+ "step": 2629
+ },
+ {
+ "epoch": 36.531004366812226,
+ "grad_norm": 0.03515971824526787,
+ "learning_rate": 0.0006,
+ "loss": 2.764486312866211,
+ "step": 2630
+ },
+ {
+ "epoch": 36.544978165938865,
+ "grad_norm": 0.03290434926748276,
+ "learning_rate": 0.0006,
+ "loss": 2.740506410598755,
+ "step": 2631
+ },
+ {
+ "epoch": 36.5589519650655,
+ "grad_norm": 0.03414572775363922,
+ "learning_rate": 0.0006,
+ "loss": 2.751025676727295,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57292576419214,
+ "grad_norm": 0.03288982808589935,
+ "learning_rate": 0.0006,
+ "loss": 2.745819568634033,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58689956331878,
+ "grad_norm": 0.03212651610374451,
+ "learning_rate": 0.0006,
+ "loss": 2.7716150283813477,
+ "step": 2634
+ },
+ {
+ "epoch": 36.60087336244541,
+ "grad_norm": 0.03207395225763321,
+ "learning_rate": 0.0006,
+ "loss": 2.793949604034424,
+ "step": 2635
+ },
+ {
+ "epoch": 36.61484716157205,
+ "grad_norm": 0.033769235014915466,
+ "learning_rate": 0.0006,
+ "loss": 2.769838333129883,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62882096069869,
+ "grad_norm": 0.031914398074150085,
+ "learning_rate": 0.0006,
+ "loss": 2.770416021347046,
+ "step": 2637
+ },
+ {
+ "epoch": 36.64279475982533,
+ "grad_norm": 0.031676363199949265,
+ "learning_rate": 0.0006,
+ "loss": 2.7603726387023926,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65676855895197,
+ "grad_norm": 0.03254379332065582,
+ "learning_rate": 0.0006,
+ "loss": 2.778376340866089,
+ "step": 2639
+ },
+ {
+ "epoch": 36.670742358078606,
+ "grad_norm": 0.03292303532361984,
+ "learning_rate": 0.0006,
+ "loss": 2.7858481407165527,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68471615720524,
+ "grad_norm": 0.03174275904893875,
+ "learning_rate": 0.0006,
+ "loss": 2.742514133453369,
+ "step": 2641
+ },
+ {
+ "epoch": 36.698689956331876,
+ "grad_norm": 0.03137286379933357,
+ "learning_rate": 0.0006,
+ "loss": 2.801379919052124,
+ "step": 2642
+ },
+ {
+ "epoch": 36.712663755458514,
+ "grad_norm": 0.03203504532575607,
+ "learning_rate": 0.0006,
+ "loss": 2.779083251953125,
+ "step": 2643
+ },
+ {
+ "epoch": 36.72663755458515,
+ "grad_norm": 0.03179030492901802,
+ "learning_rate": 0.0006,
+ "loss": 2.771510124206543,
+ "step": 2644
+ },
+ {
+ "epoch": 36.74061135371179,
+ "grad_norm": 0.032224394381046295,
+ "learning_rate": 0.0006,
+ "loss": 2.8102035522460938,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75458515283843,
+ "grad_norm": 0.031711332499980927,
+ "learning_rate": 0.0006,
+ "loss": 2.767608404159546,
+ "step": 2646
+ },
+ {
+ "epoch": 36.76855895196506,
+ "grad_norm": 0.03080599568784237,
+ "learning_rate": 0.0006,
+ "loss": 2.782320499420166,
+ "step": 2647
+ },
+ {
+ "epoch": 36.7825327510917,
+ "grad_norm": 0.030831260606646538,
+ "learning_rate": 0.0006,
+ "loss": 2.7803382873535156,
+ "step": 2648
+ },
+ {
+ "epoch": 36.79650655021834,
+ "grad_norm": 0.031478576362133026,
+ "learning_rate": 0.0006,
+ "loss": 2.8040833473205566,
+ "step": 2649
+ },
+ {
+ "epoch": 36.81048034934498,
+ "grad_norm": 0.03126827999949455,
+ "learning_rate": 0.0006,
+ "loss": 2.8021888732910156,
+ "step": 2650
+ },
+ {
+ "epoch": 36.82445414847162,
+ "grad_norm": 0.031755175441503525,
+ "learning_rate": 0.0006,
+ "loss": 2.8038527965545654,
+ "step": 2651
+ },
+ {
+ "epoch": 36.838427947598255,
+ "grad_norm": 0.030794523656368256,
+ "learning_rate": 0.0006,
+ "loss": 2.8320565223693848,
+ "step": 2652
+ },
+ {
+ "epoch": 36.852401746724894,
+ "grad_norm": 0.031342003494501114,
+ "learning_rate": 0.0006,
+ "loss": 2.8298325538635254,
+ "step": 2653
+ },
+ {
+ "epoch": 36.866375545851525,
+ "grad_norm": 0.03070714697241783,
+ "learning_rate": 0.0006,
+ "loss": 2.8219547271728516,
+ "step": 2654
+ },
+ {
+ "epoch": 36.880349344978164,
+ "grad_norm": 0.03040326200425625,
+ "learning_rate": 0.0006,
+ "loss": 2.8132448196411133,
+ "step": 2655
+ },
+ {
+ "epoch": 36.8943231441048,
+ "grad_norm": 0.02934376150369644,
+ "learning_rate": 0.0006,
+ "loss": 2.811267852783203,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90829694323144,
+ "grad_norm": 0.029699301347136497,
+ "learning_rate": 0.0006,
+ "loss": 2.8061418533325195,
+ "step": 2657
+ },
+ {
+ "epoch": 36.92227074235808,
+ "grad_norm": 0.029918788000941277,
+ "learning_rate": 0.0006,
+ "loss": 2.794674873352051,
+ "step": 2658
+ },
+ {
+ "epoch": 36.93624454148472,
+ "grad_norm": 0.02991834282875061,
+ "learning_rate": 0.0006,
+ "loss": 2.816540241241455,
+ "step": 2659
+ },
+ {
+ "epoch": 36.95021834061135,
+ "grad_norm": 0.03143605217337608,
+ "learning_rate": 0.0006,
+ "loss": 2.8300628662109375,
+ "step": 2660
+ },
+ {
+ "epoch": 36.96419213973799,
+ "grad_norm": 0.031110897660255432,
+ "learning_rate": 0.0006,
+ "loss": 2.8169212341308594,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97816593886463,
+ "grad_norm": 0.029465164989233017,
+ "learning_rate": 0.0006,
+ "loss": 2.8461415767669678,
+ "step": 2662
+ },
+ {
+ "epoch": 36.992139737991266,
+ "grad_norm": 0.030419915914535522,
+ "learning_rate": 0.0006,
+ "loss": 2.7931275367736816,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.035463880747556686,
+ "learning_rate": 0.0006,
+ "loss": 2.8003745079040527,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 4.394656181335449,
+ "eval_runtime": 50.0682,
+ "eval_samples_per_second": 48.773,
+ "eval_steps_per_second": 1.538,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01397379912664,
+ "grad_norm": 0.039373818784952164,
+ "learning_rate": 0.0006,
+ "loss": 2.592010259628296,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02794759825328,
+ "grad_norm": 0.05262094363570213,
+ "learning_rate": 0.0006,
+ "loss": 2.589017391204834,
+ "step": 2666
+ },
+ {
+ "epoch": 37.041921397379916,
+ "grad_norm": 0.05636955797672272,
+ "learning_rate": 0.0006,
+ "loss": 2.561220407485962,
+ "step": 2667
+ },
+ {
+ "epoch": 37.05589519650655,
+ "grad_norm": 0.051275093108415604,
+ "learning_rate": 0.0006,
+ "loss": 2.5869505405426025,
+ "step": 2668
+ },
+ {
+ "epoch": 37.069868995633186,
+ "grad_norm": 0.0468141995370388,
+ "learning_rate": 0.0006,
+ "loss": 2.553292751312256,
+ "step": 2669
+ },
+ {
+ "epoch": 37.083842794759825,
+ "grad_norm": 0.052394118160009384,
+ "learning_rate": 0.0006,
+ "loss": 2.5985684394836426,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09781659388646,
+ "grad_norm": 0.05675945058465004,
+ "learning_rate": 0.0006,
+ "loss": 2.582035779953003,
+ "step": 2671
+ },
+ {
+ "epoch": 37.1117903930131,
+ "grad_norm": 0.06314633041620255,
+ "learning_rate": 0.0006,
+ "loss": 2.580726146697998,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12576419213974,
+ "grad_norm": 0.06775114685297012,
+ "learning_rate": 0.0006,
+ "loss": 2.624112606048584,
+ "step": 2673
+ },
+ {
+ "epoch": 37.13973799126637,
+ "grad_norm": 0.06685114651918411,
+ "learning_rate": 0.0006,
+ "loss": 2.62692928314209,
+ "step": 2674
+ },
+ {
+ "epoch": 37.15371179039301,
+ "grad_norm": 0.06467496603727341,
+ "learning_rate": 0.0006,
+ "loss": 2.6223182678222656,
+ "step": 2675
+ },
+ {
+ "epoch": 37.16768558951965,
+ "grad_norm": 0.06089473515748978,
+ "learning_rate": 0.0006,
+ "loss": 2.5847854614257812,
+ "step": 2676
+ },
+ {
+ "epoch": 37.18165938864629,
+ "grad_norm": 0.07048582285642624,
+ "learning_rate": 0.0006,
+ "loss": 2.638550043106079,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19563318777293,
+ "grad_norm": 0.078424371778965,
+ "learning_rate": 0.0006,
+ "loss": 2.6740827560424805,
+ "step": 2678
+ },
+ {
+ "epoch": 37.209606986899566,
+ "grad_norm": 0.0736483484506607,
+ "learning_rate": 0.0006,
+ "loss": 2.628920078277588,
+ "step": 2679
+ },
+ {
+ "epoch": 37.223580786026204,
+ "grad_norm": 0.07170230895280838,
+ "learning_rate": 0.0006,
+ "loss": 2.6470746994018555,
+ "step": 2680
+ },
+ {
+ "epoch": 37.237554585152836,
+ "grad_norm": 0.07302328944206238,
+ "learning_rate": 0.0006,
+ "loss": 2.668698310852051,
+ "step": 2681
+ },
+ {
+ "epoch": 37.251528384279474,
+ "grad_norm": 0.06811188161373138,
+ "learning_rate": 0.0006,
+ "loss": 2.661168336868286,
+ "step": 2682
+ },
+ {
+ "epoch": 37.26550218340611,
+ "grad_norm": 0.06356747448444366,
+ "learning_rate": 0.0006,
+ "loss": 2.6648004055023193,
+ "step": 2683
+ },
+ {
+ "epoch": 37.27947598253275,
+ "grad_norm": 0.06473492085933685,
+ "learning_rate": 0.0006,
+ "loss": 2.651553153991699,
+ "step": 2684
+ },
+ {
+ "epoch": 37.29344978165939,
+ "grad_norm": 0.06337012350559235,
+ "learning_rate": 0.0006,
+ "loss": 2.709005832672119,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30742358078603,
+ "grad_norm": 0.058579571545124054,
+ "learning_rate": 0.0006,
+ "loss": 2.6779019832611084,
+ "step": 2686
+ },
+ {
+ "epoch": 37.32139737991266,
+ "grad_norm": 0.059343740344047546,
+ "learning_rate": 0.0006,
+ "loss": 2.6886844635009766,
+ "step": 2687
+ },
+ {
+ "epoch": 37.3353711790393,
+ "grad_norm": 0.0641576424241066,
+ "learning_rate": 0.0006,
+ "loss": 2.713414192199707,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34934497816594,
+ "grad_norm": 0.05990339443087578,
+ "learning_rate": 0.0006,
+ "loss": 2.7016336917877197,
+ "step": 2689
+ },
+ {
+ "epoch": 37.36331877729258,
+ "grad_norm": 0.055855415761470795,
+ "learning_rate": 0.0006,
+ "loss": 2.6898298263549805,
+ "step": 2690
+ },
+ {
+ "epoch": 37.377292576419215,
+ "grad_norm": 0.052080344408750534,
+ "learning_rate": 0.0006,
+ "loss": 2.6867756843566895,
+ "step": 2691
+ },
+ {
+ "epoch": 37.391266375545854,
+ "grad_norm": 0.04859146848320961,
+ "learning_rate": 0.0006,
+ "loss": 2.68493390083313,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40524017467249,
+ "grad_norm": 0.04352935776114464,
+ "learning_rate": 0.0006,
+ "loss": 2.6639962196350098,
+ "step": 2693
+ },
+ {
+ "epoch": 37.419213973799124,
+ "grad_norm": 0.04342535510659218,
+ "learning_rate": 0.0006,
+ "loss": 2.735095977783203,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43318777292576,
+ "grad_norm": 0.0410088449716568,
+ "learning_rate": 0.0006,
+ "loss": 2.7232322692871094,
+ "step": 2695
+ },
+ {
+ "epoch": 37.4471615720524,
+ "grad_norm": 0.039221733808517456,
+ "learning_rate": 0.0006,
+ "loss": 2.7050681114196777,
+ "step": 2696
+ },
+ {
+ "epoch": 37.46113537117904,
+ "grad_norm": 0.04178847372531891,
+ "learning_rate": 0.0006,
+ "loss": 2.724748134613037,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47510917030568,
+ "grad_norm": 0.039962198585271835,
+ "learning_rate": 0.0006,
+ "loss": 2.719238758087158,
+ "step": 2698
+ },
+ {
+ "epoch": 37.48908296943232,
+ "grad_norm": 0.03615671768784523,
+ "learning_rate": 0.0006,
+ "loss": 2.713306427001953,
+ "step": 2699
+ },
+ {
+ "epoch": 37.50305676855895,
+ "grad_norm": 0.036234475672245026,
+ "learning_rate": 0.0006,
+ "loss": 2.7221012115478516,
+ "step": 2700
+ },
+ {
+ "epoch": 37.51703056768559,
+ "grad_norm": 0.03482469543814659,
+ "learning_rate": 0.0006,
+ "loss": 2.7185797691345215,
+ "step": 2701
+ },
+ {
+ "epoch": 37.531004366812226,
+ "grad_norm": 0.0354674831032753,
+ "learning_rate": 0.0006,
+ "loss": 2.7420835494995117,
+ "step": 2702
+ },
+ {
+ "epoch": 37.544978165938865,
+ "grad_norm": 0.03426757827401161,
+ "learning_rate": 0.0006,
+ "loss": 2.7190346717834473,
+ "step": 2703
+ },
+ {
+ "epoch": 37.5589519650655,
+ "grad_norm": 0.033486198633909225,
+ "learning_rate": 0.0006,
+ "loss": 2.7215936183929443,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57292576419214,
+ "grad_norm": 0.03335055336356163,
+ "learning_rate": 0.0006,
+ "loss": 2.756931781768799,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58689956331878,
+ "grad_norm": 0.032623328268527985,
+ "learning_rate": 0.0006,
+ "loss": 2.753610849380493,
+ "step": 2706
+ },
+ {
+ "epoch": 37.60087336244541,
+ "grad_norm": 0.032821573317050934,
+ "learning_rate": 0.0006,
+ "loss": 2.7263944149017334,
+ "step": 2707
+ },
+ {
+ "epoch": 37.61484716157205,
+ "grad_norm": 0.0339694619178772,
+ "learning_rate": 0.0006,
+ "loss": 2.7686405181884766,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62882096069869,
+ "grad_norm": 0.03282426670193672,
+ "learning_rate": 0.0006,
+ "loss": 2.747377634048462,
+ "step": 2709
+ },
+ {
+ "epoch": 37.64279475982533,
+ "grad_norm": 0.03218618035316467,
+ "learning_rate": 0.0006,
+ "loss": 2.735844850540161,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65676855895197,
+ "grad_norm": 0.03223560005426407,
+ "learning_rate": 0.0006,
+ "loss": 2.7668800354003906,
+ "step": 2711
+ },
+ {
+ "epoch": 37.670742358078606,
+ "grad_norm": 0.033299706876277924,
+ "learning_rate": 0.0006,
+ "loss": 2.7376902103424072,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68471615720524,
+ "grad_norm": 0.03223729878664017,
+ "learning_rate": 0.0006,
+ "loss": 2.764571189880371,
+ "step": 2713
+ },
+ {
+ "epoch": 37.698689956331876,
+ "grad_norm": 0.03010910004377365,
+ "learning_rate": 0.0006,
+ "loss": 2.807518482208252,
+ "step": 2714
+ },
+ {
+ "epoch": 37.712663755458514,
+ "grad_norm": 0.032127492129802704,
+ "learning_rate": 0.0006,
+ "loss": 2.748624801635742,
+ "step": 2715
+ },
+ {
+ "epoch": 37.72663755458515,
+ "grad_norm": 0.03201155364513397,
+ "learning_rate": 0.0006,
+ "loss": 2.7762606143951416,
+ "step": 2716
+ },
+ {
+ "epoch": 37.74061135371179,
+ "grad_norm": 0.03101099096238613,
+ "learning_rate": 0.0006,
+ "loss": 2.7716212272644043,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75458515283843,
+ "grad_norm": 0.03134670853614807,
+ "learning_rate": 0.0006,
+ "loss": 2.758235216140747,
+ "step": 2718
+ },
+ {
+ "epoch": 37.76855895196506,
+ "grad_norm": 0.03176133707165718,
+ "learning_rate": 0.0006,
+ "loss": 2.766803741455078,
+ "step": 2719
+ },
+ {
+ "epoch": 37.7825327510917,
+ "grad_norm": 0.03252684697508812,
+ "learning_rate": 0.0006,
+ "loss": 2.761983871459961,
+ "step": 2720
+ },
+ {
+ "epoch": 37.79650655021834,
+ "grad_norm": 0.03122265450656414,
+ "learning_rate": 0.0006,
+ "loss": 2.7825980186462402,
+ "step": 2721
+ },
+ {
+ "epoch": 37.81048034934498,
+ "grad_norm": 0.031970955431461334,
+ "learning_rate": 0.0006,
+ "loss": 2.7722127437591553,
+ "step": 2722
+ },
+ {
+ "epoch": 37.82445414847162,
+ "grad_norm": 0.032369960099458694,
+ "learning_rate": 0.0006,
+ "loss": 2.774726390838623,
+ "step": 2723
+ },
+ {
+ "epoch": 37.838427947598255,
+ "grad_norm": 0.030761610716581345,
+ "learning_rate": 0.0006,
+ "loss": 2.792672872543335,
+ "step": 2724
+ },
+ {
+ "epoch": 37.852401746724894,
+ "grad_norm": 0.030011910945177078,
+ "learning_rate": 0.0006,
+ "loss": 2.803577423095703,
+ "step": 2725
+ },
+ {
+ "epoch": 37.866375545851525,
+ "grad_norm": 0.02982843853533268,
+ "learning_rate": 0.0006,
+ "loss": 2.7959346771240234,
+ "step": 2726
+ },
+ {
+ "epoch": 37.880349344978164,
+ "grad_norm": 0.030303213745355606,
+ "learning_rate": 0.0006,
+ "loss": 2.7652835845947266,
+ "step": 2727
+ },
+ {
+ "epoch": 37.8943231441048,
+ "grad_norm": 0.0287516750395298,
+ "learning_rate": 0.0006,
+ "loss": 2.764218807220459,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90829694323144,
+ "grad_norm": 0.029441531747579575,
+ "learning_rate": 0.0006,
+ "loss": 2.779582977294922,
+ "step": 2729
+ },
+ {
+ "epoch": 37.92227074235808,
+ "grad_norm": 0.03061698004603386,
+ "learning_rate": 0.0006,
+ "loss": 2.7803516387939453,
+ "step": 2730
+ },
+ {
+ "epoch": 37.93624454148472,
+ "grad_norm": 0.030252723023295403,
+ "learning_rate": 0.0006,
+ "loss": 2.7625863552093506,
+ "step": 2731
+ },
+ {
+ "epoch": 37.95021834061135,
+ "grad_norm": 0.02976156584918499,
+ "learning_rate": 0.0006,
+ "loss": 2.7869396209716797,
+ "step": 2732
+ },
+ {
+ "epoch": 37.96419213973799,
+ "grad_norm": 0.029136599972844124,
+ "learning_rate": 0.0006,
+ "loss": 2.7765321731567383,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97816593886463,
+ "grad_norm": 0.030161233618855476,
+ "learning_rate": 0.0006,
+ "loss": 2.791417360305786,
+ "step": 2734
+ },
+ {
+ "epoch": 37.992139737991266,
+ "grad_norm": 0.030011065304279327,
+ "learning_rate": 0.0006,
+ "loss": 2.7904176712036133,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.03508797287940979,
+ "learning_rate": 0.0006,
+ "loss": 2.7349987030029297,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 4.422760486602783,
+ "eval_runtime": 53.9373,
+ "eval_samples_per_second": 45.275,
+ "eval_steps_per_second": 1.428,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01397379912664,
+ "grad_norm": 0.03668081387877464,
+ "learning_rate": 0.0006,
+ "loss": 2.53720760345459,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02794759825328,
+ "grad_norm": 0.04997535049915314,
+ "learning_rate": 0.0006,
+ "loss": 2.5344130992889404,
+ "step": 2738
+ },
+ {
+ "epoch": 38.041921397379916,
+ "grad_norm": 0.05997481942176819,
+ "learning_rate": 0.0006,
+ "loss": 2.5450313091278076,
+ "step": 2739
+ },
+ {
+ "epoch": 38.05589519650655,
+ "grad_norm": 0.062439143657684326,
+ "learning_rate": 0.0006,
+ "loss": 2.5441112518310547,
+ "step": 2740
+ },
+ {
+ "epoch": 38.069868995633186,
+ "grad_norm": 0.06186581030488014,
+ "learning_rate": 0.0006,
+ "loss": 2.572591781616211,
+ "step": 2741
+ },
+ {
+ "epoch": 38.083842794759825,
+ "grad_norm": 0.0676693245768547,
+ "learning_rate": 0.0006,
+ "loss": 2.569788932800293,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09781659388646,
+ "grad_norm": 0.06468940526247025,
+ "learning_rate": 0.0006,
+ "loss": 2.5714502334594727,
+ "step": 2743
+ },
+ {
+ "epoch": 38.1117903930131,
+ "grad_norm": 0.055295590311288834,
+ "learning_rate": 0.0006,
+ "loss": 2.58925199508667,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12576419213974,
+ "grad_norm": 0.06001334637403488,
+ "learning_rate": 0.0006,
+ "loss": 2.583470582962036,
+ "step": 2745
+ },
+ {
+ "epoch": 38.13973799126637,
+ "grad_norm": 0.06829231232404709,
+ "learning_rate": 0.0006,
+ "loss": 2.6078848838806152,
+ "step": 2746
+ },
+ {
+ "epoch": 38.15371179039301,
+ "grad_norm": 0.07044653594493866,
+ "learning_rate": 0.0006,
+ "loss": 2.5761101245880127,
+ "step": 2747
+ },
+ {
+ "epoch": 38.16768558951965,
+ "grad_norm": 0.07410730421543121,
+ "learning_rate": 0.0006,
+ "loss": 2.596060276031494,
+ "step": 2748
+ },
+ {
+ "epoch": 38.18165938864629,
+ "grad_norm": 0.07986581325531006,
+ "learning_rate": 0.0006,
+ "loss": 2.617733955383301,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19563318777293,
+ "grad_norm": 0.08090859651565552,
+ "learning_rate": 0.0006,
+ "loss": 2.651851177215576,
+ "step": 2750
+ },
+ {
+ "epoch": 38.209606986899566,
+ "grad_norm": 0.0723685622215271,
+ "learning_rate": 0.0006,
+ "loss": 2.6376562118530273,
+ "step": 2751
+ },
+ {
+ "epoch": 38.223580786026204,
+ "grad_norm": 0.06757329404354095,
+ "learning_rate": 0.0006,
+ "loss": 2.6036531925201416,
+ "step": 2752
+ },
+ {
+ "epoch": 38.237554585152836,
+ "grad_norm": 0.05956781655550003,
+ "learning_rate": 0.0006,
+ "loss": 2.617344379425049,
+ "step": 2753
+ },
+ {
+ "epoch": 38.251528384279474,
+ "grad_norm": 0.05907238647341728,
+ "learning_rate": 0.0006,
+ "loss": 2.6348252296447754,
+ "step": 2754
+ },
+ {
+ "epoch": 38.26550218340611,
+ "grad_norm": 0.0665246993303299,
+ "learning_rate": 0.0006,
+ "loss": 2.6281394958496094,
+ "step": 2755
+ },
+ {
+ "epoch": 38.27947598253275,
+ "grad_norm": 0.06223048269748688,
+ "learning_rate": 0.0006,
+ "loss": 2.6564953327178955,
+ "step": 2756
+ },
+ {
+ "epoch": 38.29344978165939,
+ "grad_norm": 0.06228935718536377,
+ "learning_rate": 0.0006,
+ "loss": 2.646735429763794,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30742358078603,
+ "grad_norm": 0.06451544910669327,
+ "learning_rate": 0.0006,
+ "loss": 2.6907505989074707,
+ "step": 2758
+ },
+ {
+ "epoch": 38.32139737991266,
+ "grad_norm": 0.060543883591890335,
+ "learning_rate": 0.0006,
+ "loss": 2.6545357704162598,
+ "step": 2759
+ },
+ {
+ "epoch": 38.3353711790393,
+ "grad_norm": 0.06213623657822609,
+ "learning_rate": 0.0006,
+ "loss": 2.6602659225463867,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34934497816594,
+ "grad_norm": 0.06142106652259827,
+ "learning_rate": 0.0006,
+ "loss": 2.6603493690490723,
+ "step": 2761
+ },
+ {
+ "epoch": 38.36331877729258,
+ "grad_norm": 0.05699477344751358,
+ "learning_rate": 0.0006,
+ "loss": 2.705566883087158,
+ "step": 2762
+ },
+ {
+ "epoch": 38.377292576419215,
+ "grad_norm": 0.05346331000328064,
+ "learning_rate": 0.0006,
+ "loss": 2.6819496154785156,
+ "step": 2763
+ },
+ {
+ "epoch": 38.391266375545854,
+ "grad_norm": 0.0479198656976223,
+ "learning_rate": 0.0006,
+ "loss": 2.66951847076416,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40524017467249,
+ "grad_norm": 0.045958783477544785,
+ "learning_rate": 0.0006,
+ "loss": 2.6856331825256348,
+ "step": 2765
+ },
+ {
+ "epoch": 38.419213973799124,
+ "grad_norm": 0.04896858334541321,
+ "learning_rate": 0.0006,
+ "loss": 2.7199149131774902,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43318777292576,
+ "grad_norm": 0.047721102833747864,
+ "learning_rate": 0.0006,
+ "loss": 2.6921496391296387,
+ "step": 2767
+ },
+ {
+ "epoch": 38.4471615720524,
+ "grad_norm": 0.04214667156338692,
+ "learning_rate": 0.0006,
+ "loss": 2.6727256774902344,
+ "step": 2768
+ },
+ {
+ "epoch": 38.46113537117904,
+ "grad_norm": 0.039888642728328705,
+ "learning_rate": 0.0006,
+ "loss": 2.713071584701538,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47510917030568,
+ "grad_norm": 0.038344573229551315,
+ "learning_rate": 0.0006,
+ "loss": 2.670497417449951,
+ "step": 2770
+ },
+ {
+ "epoch": 38.48908296943232,
+ "grad_norm": 0.039165955036878586,
+ "learning_rate": 0.0006,
+ "loss": 2.6962404251098633,
+ "step": 2771
+ },
+ {
+ "epoch": 38.50305676855895,
+ "grad_norm": 0.04007214680314064,
+ "learning_rate": 0.0006,
+ "loss": 2.708710193634033,
+ "step": 2772
+ },
+ {
+ "epoch": 38.51703056768559,
+ "grad_norm": 0.03807772323489189,
+ "learning_rate": 0.0006,
+ "loss": 2.6834216117858887,
+ "step": 2773
+ },
+ {
+ "epoch": 38.531004366812226,
+ "grad_norm": 0.03653077036142349,
+ "learning_rate": 0.0006,
+ "loss": 2.7046523094177246,
+ "step": 2774
+ },
+ {
+ "epoch": 38.544978165938865,
+ "grad_norm": 0.03634301573038101,
+ "learning_rate": 0.0006,
+ "loss": 2.740858554840088,
+ "step": 2775
+ },
+ {
+ "epoch": 38.5589519650655,
+ "grad_norm": 0.03424578905105591,
+ "learning_rate": 0.0006,
+ "loss": 2.682713747024536,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57292576419214,
+ "grad_norm": 0.0343807190656662,
+ "learning_rate": 0.0006,
+ "loss": 2.7189817428588867,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58689956331878,
+ "grad_norm": 0.0348835363984108,
+ "learning_rate": 0.0006,
+ "loss": 2.724893569946289,
+ "step": 2778
+ },
+ {
+ "epoch": 38.60087336244541,
+ "grad_norm": 0.03508136048913002,
+ "learning_rate": 0.0006,
+ "loss": 2.73518705368042,
+ "step": 2779
+ },
+ {
+ "epoch": 38.61484716157205,
+ "grad_norm": 0.03429904207587242,
+ "learning_rate": 0.0006,
+ "loss": 2.736717939376831,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62882096069869,
+ "grad_norm": 0.03205183520913124,
+ "learning_rate": 0.0006,
+ "loss": 2.721712589263916,
+ "step": 2781
+ },
+ {
+ "epoch": 38.64279475982533,
+ "grad_norm": 0.03305064141750336,
+ "learning_rate": 0.0006,
+ "loss": 2.6993613243103027,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65676855895197,
+ "grad_norm": 0.035046663135290146,
+ "learning_rate": 0.0006,
+ "loss": 2.7248196601867676,
+ "step": 2783
+ },
+ {
+ "epoch": 38.670742358078606,
+ "grad_norm": 0.03516519442200661,
+ "learning_rate": 0.0006,
+ "loss": 2.7311136722564697,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68471615720524,
+ "grad_norm": 0.03347651660442352,
+ "learning_rate": 0.0006,
+ "loss": 2.72220778465271,
+ "step": 2785
+ },
+ {
+ "epoch": 38.698689956331876,
+ "grad_norm": 0.032616935670375824,
+ "learning_rate": 0.0006,
+ "loss": 2.755411148071289,
+ "step": 2786
+ },
+ {
+ "epoch": 38.712663755458514,
+ "grad_norm": 0.033312223851680756,
+ "learning_rate": 0.0006,
+ "loss": 2.732534885406494,
+ "step": 2787
+ },
+ {
+ "epoch": 38.72663755458515,
+ "grad_norm": 0.033402036875486374,
+ "learning_rate": 0.0006,
+ "loss": 2.7253611087799072,
+ "step": 2788
+ },
+ {
+ "epoch": 38.74061135371179,
+ "grad_norm": 0.03428902477025986,
+ "learning_rate": 0.0006,
+ "loss": 2.7514877319335938,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75458515283843,
+ "grad_norm": 0.032412827014923096,
+ "learning_rate": 0.0006,
+ "loss": 2.7110795974731445,
+ "step": 2790
+ },
+ {
+ "epoch": 38.76855895196506,
+ "grad_norm": 0.03287288919091225,
+ "learning_rate": 0.0006,
+ "loss": 2.7271571159362793,
+ "step": 2791
+ },
+ {
+ "epoch": 38.7825327510917,
+ "grad_norm": 0.032132744789123535,
+ "learning_rate": 0.0006,
+ "loss": 2.7556326389312744,
+ "step": 2792
+ },
+ {
+ "epoch": 38.79650655021834,
+ "grad_norm": 0.03317050263285637,
+ "learning_rate": 0.0006,
+ "loss": 2.7323567867279053,
+ "step": 2793
+ },
+ {
+ "epoch": 38.81048034934498,
+ "grad_norm": 0.032200053334236145,
+ "learning_rate": 0.0006,
+ "loss": 2.7799339294433594,
+ "step": 2794
+ },
+ {
+ "epoch": 38.82445414847162,
+ "grad_norm": 0.03184610605239868,
+ "learning_rate": 0.0006,
+ "loss": 2.749330520629883,
+ "step": 2795
+ },
+ {
+ "epoch": 38.838427947598255,
+ "grad_norm": 0.03251924365758896,
+ "learning_rate": 0.0006,
+ "loss": 2.7194664478302,
+ "step": 2796
+ },
+ {
+ "epoch": 38.852401746724894,
+ "grad_norm": 0.03341902419924736,
+ "learning_rate": 0.0006,
+ "loss": 2.7730190753936768,
+ "step": 2797
+ },
+ {
+ "epoch": 38.866375545851525,
+ "grad_norm": 0.03277548775076866,
+ "learning_rate": 0.0006,
+ "loss": 2.748821258544922,
+ "step": 2798
+ },
+ {
+ "epoch": 38.880349344978164,
+ "grad_norm": 0.033009354025125504,
+ "learning_rate": 0.0006,
+ "loss": 2.7735595703125,
+ "step": 2799
+ },
+ {
+ "epoch": 38.8943231441048,
+ "grad_norm": 0.033856526017189026,
+ "learning_rate": 0.0006,
+ "loss": 2.828324794769287,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90829694323144,
+ "grad_norm": 0.03593005985021591,
+ "learning_rate": 0.0006,
+ "loss": 2.7579283714294434,
+ "step": 2801
+ },
+ {
+ "epoch": 38.92227074235808,
+ "grad_norm": 0.03454919904470444,
+ "learning_rate": 0.0006,
+ "loss": 2.7957282066345215,
+ "step": 2802
+ },
+ {
+ "epoch": 38.93624454148472,
+ "grad_norm": 0.03228568285703659,
+ "learning_rate": 0.0006,
+ "loss": 2.7695181369781494,
+ "step": 2803
+ },
+ {
+ "epoch": 38.95021834061135,
+ "grad_norm": 0.030785217881202698,
+ "learning_rate": 0.0006,
+ "loss": 2.7762393951416016,
+ "step": 2804
+ },
+ {
+ "epoch": 38.96419213973799,
+ "grad_norm": 0.03203628957271576,
+ "learning_rate": 0.0006,
+ "loss": 2.7768611907958984,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97816593886463,
+ "grad_norm": 0.031972482800483704,
+ "learning_rate": 0.0006,
+ "loss": 2.7826151847839355,
+ "step": 2806
+ },
+ {
+ "epoch": 38.992139737991266,
+ "grad_norm": 0.03173843398690224,
+ "learning_rate": 0.0006,
+ "loss": 2.8008720874786377,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.03597976267337799,
+ "learning_rate": 0.0006,
+ "loss": 2.761889934539795,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 4.451672077178955,
+ "eval_runtime": 50.0424,
+ "eval_samples_per_second": 48.799,
+ "eval_steps_per_second": 1.539,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01397379912664,
+ "grad_norm": 0.035917509347200394,
+ "learning_rate": 0.0006,
+ "loss": 2.5109643936157227,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02794759825328,
+ "grad_norm": 0.048883527517318726,
+ "learning_rate": 0.0006,
+ "loss": 2.4966325759887695,
+ "step": 2810
+ },
+ {
+ "epoch": 39.041921397379916,
+ "grad_norm": 0.0520956926047802,
+ "learning_rate": 0.0006,
+ "loss": 2.5114963054656982,
+ "step": 2811
+ },
+ {
+ "epoch": 39.05589519650655,
+ "grad_norm": 0.05243239551782608,
+ "learning_rate": 0.0006,
+ "loss": 2.509138584136963,
+ "step": 2812
+ },
+ {
+ "epoch": 39.069868995633186,
+ "grad_norm": 0.05494685098528862,
+ "learning_rate": 0.0006,
+ "loss": 2.5110630989074707,
+ "step": 2813
+ },
+ {
+ "epoch": 39.083842794759825,
+ "grad_norm": 0.05914803221821785,
+ "learning_rate": 0.0006,
+ "loss": 2.582940101623535,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09781659388646,
+ "grad_norm": 0.06418700516223907,
+ "learning_rate": 0.0006,
+ "loss": 2.549758195877075,
+ "step": 2815
+ },
+ {
+ "epoch": 39.1117903930131,
+ "grad_norm": 0.06571007519960403,
+ "learning_rate": 0.0006,
+ "loss": 2.5406949520111084,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12576419213974,
+ "grad_norm": 0.06867309659719467,
+ "learning_rate": 0.0006,
+ "loss": 2.5541300773620605,
+ "step": 2817
+ },
+ {
+ "epoch": 39.13973799126637,
+ "grad_norm": 0.07403446733951569,
+ "learning_rate": 0.0006,
+ "loss": 2.543792963027954,
+ "step": 2818
+ },
+ {
+ "epoch": 39.15371179039301,
+ "grad_norm": 0.07405679672956467,
+ "learning_rate": 0.0006,
+ "loss": 2.6033244132995605,
+ "step": 2819
+ },
+ {
+ "epoch": 39.16768558951965,
+ "grad_norm": 0.07382416725158691,
+ "learning_rate": 0.0006,
+ "loss": 2.554922580718994,
+ "step": 2820
+ },
+ {
+ "epoch": 39.18165938864629,
+ "grad_norm": 0.07891468703746796,
+ "learning_rate": 0.0006,
+ "loss": 2.540740489959717,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19563318777293,
+ "grad_norm": 0.08196107298135757,
+ "learning_rate": 0.0006,
+ "loss": 2.587352752685547,
+ "step": 2822
+ },
+ {
+ "epoch": 39.209606986899566,
+ "grad_norm": 0.08047913014888763,
+ "learning_rate": 0.0006,
+ "loss": 2.625654935836792,
+ "step": 2823
+ },
+ {
+ "epoch": 39.223580786026204,
+ "grad_norm": 0.0823366791009903,
+ "learning_rate": 0.0006,
+ "loss": 2.6116280555725098,
+ "step": 2824
+ },
+ {
+ "epoch": 39.237554585152836,
+ "grad_norm": 0.0757770836353302,
+ "learning_rate": 0.0006,
+ "loss": 2.6480040550231934,
+ "step": 2825
+ },
+ {
+ "epoch": 39.251528384279474,
+ "grad_norm": 0.06412673741579056,
+ "learning_rate": 0.0006,
+ "loss": 2.630819082260132,
+ "step": 2826
+ },
+ {
+ "epoch": 39.26550218340611,
+ "grad_norm": 0.06720094382762909,
+ "learning_rate": 0.0006,
+ "loss": 2.6194870471954346,
+ "step": 2827
+ },
+ {
+ "epoch": 39.27947598253275,
+ "grad_norm": 0.07029621303081512,
+ "learning_rate": 0.0006,
+ "loss": 2.6223702430725098,
+ "step": 2828
+ },
+ {
+ "epoch": 39.29344978165939,
+ "grad_norm": 0.06339625269174576,
+ "learning_rate": 0.0006,
+ "loss": 2.673099994659424,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30742358078603,
+ "grad_norm": 0.05949276313185692,
+ "learning_rate": 0.0006,
+ "loss": 2.6469547748565674,
+ "step": 2830
+ },
+ {
+ "epoch": 39.32139737991266,
+ "grad_norm": 0.053506240248680115,
+ "learning_rate": 0.0006,
+ "loss": 2.653002977371216,
+ "step": 2831
+ },
+ {
+ "epoch": 39.3353711790393,
+ "grad_norm": 0.05102718994021416,
+ "learning_rate": 0.0006,
+ "loss": 2.6284027099609375,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34934497816594,
+ "grad_norm": 0.05140380188822746,
+ "learning_rate": 0.0006,
+ "loss": 2.6136865615844727,
+ "step": 2833
+ },
+ {
+ "epoch": 39.36331877729258,
+ "grad_norm": 0.05189013481140137,
+ "learning_rate": 0.0006,
+ "loss": 2.624032974243164,
+ "step": 2834
+ },
+ {
+ "epoch": 39.377292576419215,
+ "grad_norm": 0.0518079474568367,
+ "learning_rate": 0.0006,
+ "loss": 2.6563472747802734,
+ "step": 2835
+ },
+ {
+ "epoch": 39.391266375545854,
+ "grad_norm": 0.048856109380722046,
+ "learning_rate": 0.0006,
+ "loss": 2.6669912338256836,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40524017467249,
+ "grad_norm": 0.04633012041449547,
+ "learning_rate": 0.0006,
+ "loss": 2.6586191654205322,
+ "step": 2837
+ },
+ {
+ "epoch": 39.419213973799124,
+ "grad_norm": 0.04814019426703453,
+ "learning_rate": 0.0006,
+ "loss": 2.667342185974121,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43318777292576,
+ "grad_norm": 0.0436280220746994,
+ "learning_rate": 0.0006,
+ "loss": 2.665431499481201,
+ "step": 2839
+ },
+ {
+ "epoch": 39.4471615720524,
+ "grad_norm": 0.041196923702955246,
+ "learning_rate": 0.0006,
+ "loss": 2.6492676734924316,
+ "step": 2840
+ },
+ {
+ "epoch": 39.46113537117904,
+ "grad_norm": 0.0395592525601387,
+ "learning_rate": 0.0006,
+ "loss": 2.6705574989318848,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47510917030568,
+ "grad_norm": 0.0385267548263073,
+ "learning_rate": 0.0006,
+ "loss": 2.6977322101593018,
+ "step": 2842
+ },
+ {
+ "epoch": 39.48908296943232,
+ "grad_norm": 0.039683643728494644,
+ "learning_rate": 0.0006,
+ "loss": 2.7133736610412598,
+ "step": 2843
+ },
+ {
+ "epoch": 39.50305676855895,
+ "grad_norm": 0.038295429199934006,
+ "learning_rate": 0.0006,
+ "loss": 2.6389265060424805,
+ "step": 2844
+ },
+ {
+ "epoch": 39.51703056768559,
+ "grad_norm": 0.040176548063755035,
+ "learning_rate": 0.0006,
+ "loss": 2.698523998260498,
+ "step": 2845
+ },
+ {
+ "epoch": 39.531004366812226,
+ "grad_norm": 0.04064524546265602,
+ "learning_rate": 0.0006,
+ "loss": 2.656214952468872,
+ "step": 2846
+ },
+ {
+ "epoch": 39.544978165938865,
+ "grad_norm": 0.03750603273510933,
+ "learning_rate": 0.0006,
+ "loss": 2.678588628768921,
+ "step": 2847
+ },
+ {
+ "epoch": 39.5589519650655,
+ "grad_norm": 0.035905614495277405,
+ "learning_rate": 0.0006,
+ "loss": 2.704439640045166,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57292576419214,
+ "grad_norm": 0.039338648319244385,
+ "learning_rate": 0.0006,
+ "loss": 2.6884841918945312,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58689956331878,
+ "grad_norm": 0.04038030281662941,
+ "learning_rate": 0.0006,
+ "loss": 2.6797773838043213,
+ "step": 2850
+ },
+ {
+ "epoch": 39.60087336244541,
+ "grad_norm": 0.037040162831544876,
+ "learning_rate": 0.0006,
+ "loss": 2.6956043243408203,
+ "step": 2851
+ },
+ {
+ "epoch": 39.61484716157205,
+ "grad_norm": 0.034921690821647644,
+ "learning_rate": 0.0006,
+ "loss": 2.694153308868408,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62882096069869,
+ "grad_norm": 0.03549359738826752,
+ "learning_rate": 0.0006,
+ "loss": 2.7244749069213867,
+ "step": 2853
+ },
+ {
+ "epoch": 39.64279475982533,
+ "grad_norm": 0.035824477672576904,
+ "learning_rate": 0.0006,
+ "loss": 2.7074999809265137,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65676855895197,
+ "grad_norm": 0.034420810639858246,
+ "learning_rate": 0.0006,
+ "loss": 2.7221333980560303,
+ "step": 2855
+ },
+ {
+ "epoch": 39.670742358078606,
+ "grad_norm": 0.03463764861226082,
+ "learning_rate": 0.0006,
+ "loss": 2.727510929107666,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68471615720524,
+ "grad_norm": 0.03375630080699921,
+ "learning_rate": 0.0006,
+ "loss": 2.669036388397217,
+ "step": 2857
+ },
+ {
+ "epoch": 39.698689956331876,
+ "grad_norm": 0.034777212888002396,
+ "learning_rate": 0.0006,
+ "loss": 2.722949504852295,
+ "step": 2858
+ },
+ {
+ "epoch": 39.712663755458514,
+ "grad_norm": 0.033754393458366394,
+ "learning_rate": 0.0006,
+ "loss": 2.691465139389038,
+ "step": 2859
+ },
+ {
+ "epoch": 39.72663755458515,
+ "grad_norm": 0.03520940989255905,
+ "learning_rate": 0.0006,
+ "loss": 2.699446201324463,
+ "step": 2860
+ },
+ {
+ "epoch": 39.74061135371179,
+ "grad_norm": 0.03567482531070709,
+ "learning_rate": 0.0006,
+ "loss": 2.7141056060791016,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75458515283843,
+ "grad_norm": 0.0348379909992218,
+ "learning_rate": 0.0006,
+ "loss": 2.768491268157959,
+ "step": 2862
+ },
+ {
+ "epoch": 39.76855895196506,
+ "grad_norm": 0.03526907041668892,
+ "learning_rate": 0.0006,
+ "loss": 2.7331318855285645,
+ "step": 2863
+ },
+ {
+ "epoch": 39.7825327510917,
+ "grad_norm": 0.03621441870927811,
+ "learning_rate": 0.0006,
+ "loss": 2.7229490280151367,
+ "step": 2864
+ },
+ {
+ "epoch": 39.79650655021834,
+ "grad_norm": 0.03302044793963432,
+ "learning_rate": 0.0006,
+ "loss": 2.7376222610473633,
+ "step": 2865
+ },
+ {
+ "epoch": 39.81048034934498,
+ "grad_norm": 0.03541046380996704,
+ "learning_rate": 0.0006,
+ "loss": 2.7527167797088623,
+ "step": 2866
+ },
+ {
+ "epoch": 39.82445414847162,
+ "grad_norm": 0.035719070583581924,
+ "learning_rate": 0.0006,
+ "loss": 2.742863178253174,
+ "step": 2867
+ },
+ {
+ "epoch": 39.838427947598255,
+ "grad_norm": 0.03448639065027237,
+ "learning_rate": 0.0006,
+ "loss": 2.699861764907837,
+ "step": 2868
+ },
+ {
+ "epoch": 39.852401746724894,
+ "grad_norm": 0.033144641667604446,
+ "learning_rate": 0.0006,
+ "loss": 2.7319140434265137,
+ "step": 2869
+ },
+ {
+ "epoch": 39.866375545851525,
+ "grad_norm": 0.032493121922016144,
+ "learning_rate": 0.0006,
+ "loss": 2.7466368675231934,
+ "step": 2870
+ },
+ {
+ "epoch": 39.880349344978164,
+ "grad_norm": 0.032590243965387344,
+ "learning_rate": 0.0006,
+ "loss": 2.721978187561035,
+ "step": 2871
+ },
+ {
+ "epoch": 39.8943231441048,
+ "grad_norm": 0.03250930458307266,
+ "learning_rate": 0.0006,
+ "loss": 2.7361791133880615,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90829694323144,
+ "grad_norm": 0.03177327662706375,
+ "learning_rate": 0.0006,
+ "loss": 2.736617088317871,
+ "step": 2873
+ },
+ {
+ "epoch": 39.92227074235808,
+ "grad_norm": 0.03167487680912018,
+ "learning_rate": 0.0006,
+ "loss": 2.74830961227417,
+ "step": 2874
+ },
+ {
+ "epoch": 39.93624454148472,
+ "grad_norm": 0.03139375150203705,
+ "learning_rate": 0.0006,
+ "loss": 2.7477545738220215,
+ "step": 2875
+ },
+ {
+ "epoch": 39.95021834061135,
+ "grad_norm": 0.03216864913702011,
+ "learning_rate": 0.0006,
+ "loss": 2.7286179065704346,
+ "step": 2876
+ },
+ {
+ "epoch": 39.96419213973799,
+ "grad_norm": 0.033048611134290695,
+ "learning_rate": 0.0006,
+ "loss": 2.7587175369262695,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97816593886463,
+ "grad_norm": 0.031695522367954254,
+ "learning_rate": 0.0006,
+ "loss": 2.752018928527832,
+ "step": 2878
+ },
+ {
+ "epoch": 39.992139737991266,
+ "grad_norm": 0.030985886231064796,
+ "learning_rate": 0.0006,
+ "loss": 2.773669719696045,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.036308158189058304,
+ "learning_rate": 0.0006,
+ "loss": 2.7251877784729004,
+ "step": 2880
+ },
+ {
+ "epoch": 40.0,
+ "eval_loss": 4.474143981933594,
+ "eval_runtime": 49.9011,
+ "eval_samples_per_second": 48.937,
+ "eval_steps_per_second": 1.543,
+ "step": 2880
+ },
+ {
+ "epoch": 40.01397379912664,
+ "grad_norm": 0.039337001740932465,
+ "learning_rate": 0.0006,
+ "loss": 2.514352321624756,
+ "step": 2881
+ },
+ {
+ "epoch": 40.02794759825328,
+ "grad_norm": 0.0578283965587616,
+ "learning_rate": 0.0006,
+ "loss": 2.5215506553649902,
+ "step": 2882
+ },
+ {
+ "epoch": 40.041921397379916,
+ "grad_norm": 0.06699222326278687,
+ "learning_rate": 0.0006,
+ "loss": 2.5044867992401123,
+ "step": 2883
+ },
+ {
+ "epoch": 40.05589519650655,
+ "grad_norm": 0.06550704687833786,
+ "learning_rate": 0.0006,
+ "loss": 2.488755941390991,
+ "step": 2884
+ },
+ {
+ "epoch": 40.069868995633186,
+ "grad_norm": 0.06436064094305038,
+ "learning_rate": 0.0006,
+ "loss": 2.5425314903259277,
+ "step": 2885
+ },
+ {
+ "epoch": 40.083842794759825,
+ "grad_norm": 0.07783094793558121,
+ "learning_rate": 0.0006,
+ "loss": 2.5326032638549805,
+ "step": 2886
+ },
+ {
+ "epoch": 40.09781659388646,
+ "grad_norm": 0.08629380166530609,
+ "learning_rate": 0.0006,
+ "loss": 2.5318236351013184,
+ "step": 2887
+ },
+ {
+ "epoch": 40.1117903930131,
+ "grad_norm": 0.08499810099601746,
+ "learning_rate": 0.0006,
+ "loss": 2.544509172439575,
+ "step": 2888
+ },
+ {
+ "epoch": 40.12576419213974,
+ "grad_norm": 0.08014187961816788,
+ "learning_rate": 0.0006,
+ "loss": 2.541004180908203,
+ "step": 2889
+ },
+ {
+ "epoch": 40.13973799126637,
+ "grad_norm": 0.07640037685632706,
+ "learning_rate": 0.0006,
+ "loss": 2.569610118865967,
+ "step": 2890
+ },
+ {
+ "epoch": 40.15371179039301,
+ "grad_norm": 0.07590228319168091,
+ "learning_rate": 0.0006,
+ "loss": 2.610346794128418,
+ "step": 2891
+ },
+ {
+ "epoch": 40.16768558951965,
+ "grad_norm": 0.0713343694806099,
+ "learning_rate": 0.0006,
+ "loss": 2.565481424331665,
+ "step": 2892
+ },
+ {
+ "epoch": 40.18165938864629,
+ "grad_norm": 0.06972482055425644,
+ "learning_rate": 0.0006,
+ "loss": 2.5367839336395264,
+ "step": 2893
+ },
+ {
+ "epoch": 40.19563318777293,
+ "grad_norm": 0.06594175845384598,
+ "learning_rate": 0.0006,
+ "loss": 2.561854839324951,
+ "step": 2894
+ },
+ {
+ "epoch": 40.209606986899566,
+ "grad_norm": 0.06096635013818741,
+ "learning_rate": 0.0006,
+ "loss": 2.5752482414245605,
+ "step": 2895
+ },
+ {
+ "epoch": 40.223580786026204,
+ "grad_norm": 0.06971662491559982,
+ "learning_rate": 0.0006,
+ "loss": 2.5526719093322754,
+ "step": 2896
+ },
+ {
+ "epoch": 40.237554585152836,
+ "grad_norm": 0.07076017558574677,
+ "learning_rate": 0.0006,
+ "loss": 2.5867996215820312,
+ "step": 2897
+ },
+ {
+ "epoch": 40.251528384279474,
+ "grad_norm": 0.0636894702911377,
+ "learning_rate": 0.0006,
+ "loss": 2.5642850399017334,
+ "step": 2898
+ },
+ {
+ "epoch": 40.26550218340611,
+ "grad_norm": 0.06342290341854095,
+ "learning_rate": 0.0006,
+ "loss": 2.594398260116577,
+ "step": 2899
+ },
+ {
+ "epoch": 40.27947598253275,
+ "grad_norm": 0.059829309582710266,
+ "learning_rate": 0.0006,
+ "loss": 2.6322319507598877,
+ "step": 2900
+ },
+ {
+ "epoch": 40.29344978165939,
+ "grad_norm": 0.054255399852991104,
+ "learning_rate": 0.0006,
+ "loss": 2.5863678455352783,
+ "step": 2901
+ },
+ {
+ "epoch": 40.30742358078603,
+ "grad_norm": 0.05746527016162872,
+ "learning_rate": 0.0006,
+ "loss": 2.6030540466308594,
+ "step": 2902
+ },
+ {
+ "epoch": 40.32139737991266,
+ "grad_norm": 0.055593617260456085,
+ "learning_rate": 0.0006,
+ "loss": 2.6012344360351562,
+ "step": 2903
+ },
+ {
+ "epoch": 40.3353711790393,
+ "grad_norm": 0.05329304188489914,
+ "learning_rate": 0.0006,
+ "loss": 2.62961483001709,
+ "step": 2904
+ },
+ {
+ "epoch": 40.34934497816594,
+ "grad_norm": 0.05749393254518509,
+ "learning_rate": 0.0006,
+ "loss": 2.6130566596984863,
+ "step": 2905
+ },
+ {
+ "epoch": 40.36331877729258,
+ "grad_norm": 0.058272067457437515,
+ "learning_rate": 0.0006,
+ "loss": 2.6373796463012695,
+ "step": 2906
+ },
+ {
+ "epoch": 40.377292576419215,
+ "grad_norm": 0.05478287860751152,
+ "learning_rate": 0.0006,
+ "loss": 2.6072428226470947,
+ "step": 2907
+ },
+ {
+ "epoch": 40.391266375545854,
+ "grad_norm": 0.05362486094236374,
+ "learning_rate": 0.0006,
+ "loss": 2.627718448638916,
+ "step": 2908
+ },
+ {
+ "epoch": 40.40524017467249,
+ "grad_norm": 0.048258356750011444,
+ "learning_rate": 0.0006,
+ "loss": 2.6520800590515137,
+ "step": 2909
+ },
+ {
+ "epoch": 40.419213973799124,
+ "grad_norm": 0.04497991502285004,
+ "learning_rate": 0.0006,
+ "loss": 2.6447935104370117,
+ "step": 2910
+ },
+ {
+ "epoch": 40.43318777292576,
+ "grad_norm": 0.04416095092892647,
+ "learning_rate": 0.0006,
+ "loss": 2.647826910018921,
+ "step": 2911
+ },
+ {
+ "epoch": 40.4471615720524,
+ "grad_norm": 0.04513152316212654,
+ "learning_rate": 0.0006,
+ "loss": 2.612380027770996,
+ "step": 2912
+ },
+ {
+ "epoch": 40.46113537117904,
+ "grad_norm": 0.04386728256940842,
+ "learning_rate": 0.0006,
+ "loss": 2.6557984352111816,
+ "step": 2913
+ },
+ {
+ "epoch": 40.47510917030568,
+ "grad_norm": 0.040835894644260406,
+ "learning_rate": 0.0006,
+ "loss": 2.678039073944092,
+ "step": 2914
+ },
+ {
+ "epoch": 40.48908296943232,
+ "grad_norm": 0.03893722593784332,
+ "learning_rate": 0.0006,
+ "loss": 2.6199405193328857,
+ "step": 2915
+ },
+ {
+ "epoch": 40.50305676855895,
+ "grad_norm": 0.037534426897764206,
+ "learning_rate": 0.0006,
+ "loss": 2.645772695541382,
+ "step": 2916
+ },
+ {
+ "epoch": 40.51703056768559,
+ "grad_norm": 0.03901223838329315,
+ "learning_rate": 0.0006,
+ "loss": 2.6730403900146484,
+ "step": 2917
+ },
+ {
+ "epoch": 40.531004366812226,
+ "grad_norm": 0.03872915357351303,
+ "learning_rate": 0.0006,
+ "loss": 2.6446070671081543,
+ "step": 2918
+ },
+ {
+ "epoch": 40.544978165938865,
+ "grad_norm": 0.038637708872556686,
+ "learning_rate": 0.0006,
+ "loss": 2.6479978561401367,
+ "step": 2919
+ },
+ {
+ "epoch": 40.5589519650655,
+ "grad_norm": 0.036958739161491394,
+ "learning_rate": 0.0006,
+ "loss": 2.6752829551696777,
+ "step": 2920
+ },
+ {
+ "epoch": 40.57292576419214,
+ "grad_norm": 0.03570971637964249,
+ "learning_rate": 0.0006,
+ "loss": 2.653032064437866,
+ "step": 2921
+ },
+ {
+ "epoch": 40.58689956331878,
+ "grad_norm": 0.036177560687065125,
+ "learning_rate": 0.0006,
+ "loss": 2.6773481369018555,
+ "step": 2922
+ },
+ {
+ "epoch": 40.60087336244541,
+ "grad_norm": 0.03769815340638161,
+ "learning_rate": 0.0006,
+ "loss": 2.6339635848999023,
+ "step": 2923
+ },
+ {
+ "epoch": 40.61484716157205,
+ "grad_norm": 0.037199243903160095,
+ "learning_rate": 0.0006,
+ "loss": 2.680356025695801,
+ "step": 2924
+ },
+ {
+ "epoch": 40.62882096069869,
+ "grad_norm": 0.03642818331718445,
+ "learning_rate": 0.0006,
+ "loss": 2.675764799118042,
+ "step": 2925
+ },
+ {
+ "epoch": 40.64279475982533,
+ "grad_norm": 0.035731032490730286,
+ "learning_rate": 0.0006,
+ "loss": 2.672274589538574,
+ "step": 2926
+ },
+ {
+ "epoch": 40.65676855895197,
+ "grad_norm": 0.03664281219244003,
+ "learning_rate": 0.0006,
+ "loss": 2.675323486328125,
+ "step": 2927
+ },
+ {
+ "epoch": 40.670742358078606,
+ "grad_norm": 0.03724899888038635,
+ "learning_rate": 0.0006,
+ "loss": 2.7059831619262695,
+ "step": 2928
+ },
+ {
+ "epoch": 40.68471615720524,
+ "grad_norm": 0.03431715816259384,
+ "learning_rate": 0.0006,
+ "loss": 2.6749188899993896,
+ "step": 2929
+ },
+ {
+ "epoch": 40.698689956331876,
+ "grad_norm": 0.03504498302936554,
+ "learning_rate": 0.0006,
+ "loss": 2.7245900630950928,
+ "step": 2930
+ },
+ {
+ "epoch": 40.712663755458514,
+ "grad_norm": 0.03632767125964165,
+ "learning_rate": 0.0006,
+ "loss": 2.6805551052093506,
+ "step": 2931
+ },
+ {
+ "epoch": 40.72663755458515,
+ "grad_norm": 0.0335846021771431,
+ "learning_rate": 0.0006,
+ "loss": 2.7219207286834717,
+ "step": 2932
+ },
+ {
+ "epoch": 40.74061135371179,
+ "grad_norm": 0.033441077917814255,
+ "learning_rate": 0.0006,
+ "loss": 2.6754677295684814,
+ "step": 2933
+ },
+ {
+ "epoch": 40.75458515283843,
+ "grad_norm": 0.034840479493141174,
+ "learning_rate": 0.0006,
+ "loss": 2.679255485534668,
+ "step": 2934
+ },
+ {
+ "epoch": 40.76855895196506,
+ "grad_norm": 0.03573078662157059,
+ "learning_rate": 0.0006,
+ "loss": 2.7130138874053955,
+ "step": 2935
+ },
+ {
+ "epoch": 40.7825327510917,
+ "grad_norm": 0.034926887601614,
+ "learning_rate": 0.0006,
+ "loss": 2.6799659729003906,
+ "step": 2936
+ },
+ {
+ "epoch": 40.79650655021834,
+ "grad_norm": 0.03294713795185089,
+ "learning_rate": 0.0006,
+ "loss": 2.7167084217071533,
+ "step": 2937
+ },
+ {
+ "epoch": 40.81048034934498,
+ "grad_norm": 0.03352857381105423,
+ "learning_rate": 0.0006,
+ "loss": 2.7211174964904785,
+ "step": 2938
+ },
+ {
+ "epoch": 40.82445414847162,
+ "grad_norm": 0.03446228429675102,
+ "learning_rate": 0.0006,
+ "loss": 2.7129034996032715,
+ "step": 2939
+ },
+ {
+ "epoch": 40.838427947598255,
+ "grad_norm": 0.033214204013347626,
+ "learning_rate": 0.0006,
+ "loss": 2.6809608936309814,
+ "step": 2940
+ },
+ {
+ "epoch": 40.852401746724894,
+ "grad_norm": 0.03338344767689705,
+ "learning_rate": 0.0006,
+ "loss": 2.7225375175476074,
+ "step": 2941
+ },
+ {
+ "epoch": 40.866375545851525,
+ "grad_norm": 0.034566860646009445,
+ "learning_rate": 0.0006,
+ "loss": 2.758361339569092,
+ "step": 2942
+ },
+ {
+ "epoch": 40.880349344978164,
+ "grad_norm": 0.03447209671139717,
+ "learning_rate": 0.0006,
+ "loss": 2.7186620235443115,
+ "step": 2943
+ },
+ {
+ "epoch": 40.8943231441048,
+ "grad_norm": 0.03161827102303505,
+ "learning_rate": 0.0006,
+ "loss": 2.735325813293457,
+ "step": 2944
+ },
+ {
+ "epoch": 40.90829694323144,
+ "grad_norm": 0.03281267732381821,
+ "learning_rate": 0.0006,
+ "loss": 2.726142406463623,
+ "step": 2945
+ },
+ {
+ "epoch": 40.92227074235808,
+ "grad_norm": 0.03426361829042435,
+ "learning_rate": 0.0006,
+ "loss": 2.7087631225585938,
+ "step": 2946
+ },
+ {
+ "epoch": 40.93624454148472,
+ "grad_norm": 0.03302868455648422,
+ "learning_rate": 0.0006,
+ "loss": 2.705690860748291,
+ "step": 2947
+ },
+ {
+ "epoch": 40.95021834061135,
+ "grad_norm": 0.032940059900283813,
+ "learning_rate": 0.0006,
+ "loss": 2.7776706218719482,
+ "step": 2948
+ },
+ {
+ "epoch": 40.96419213973799,
+ "grad_norm": 0.03340820595622063,
+ "learning_rate": 0.0006,
+ "loss": 2.7082834243774414,
+ "step": 2949
+ },
+ {
+ "epoch": 40.97816593886463,
+ "grad_norm": 0.0323544442653656,
+ "learning_rate": 0.0006,
+ "loss": 2.7513222694396973,
+ "step": 2950
+ },
+ {
+ "epoch": 40.992139737991266,
+ "grad_norm": 0.032614532858133316,
+ "learning_rate": 0.0006,
+ "loss": 2.7283036708831787,
+ "step": 2951
+ },
+ {
+ "epoch": 41.0,
+ "grad_norm": 0.03670470416545868,
+ "learning_rate": 0.0006,
+ "loss": 2.7127060890197754,
+ "step": 2952
+ },
+ {
+ "epoch": 41.0,
+ "eval_loss": 4.508173942565918,
+ "eval_runtime": 50.2261,
+ "eval_samples_per_second": 48.62,
+ "eval_steps_per_second": 1.533,
+ "step": 2952
+ },
+ {
+ "epoch": 41.01397379912664,
+ "grad_norm": 0.03746651113033295,
+ "learning_rate": 0.0006,
+ "loss": 2.4814019203186035,
+ "step": 2953
+ },
+ {
+ "epoch": 41.02794759825328,
+ "grad_norm": 0.054200317710638046,
+ "learning_rate": 0.0006,
+ "loss": 2.4697980880737305,
+ "step": 2954
+ },
+ {
+ "epoch": 41.041921397379916,
+ "grad_norm": 0.06288814544677734,
+ "learning_rate": 0.0006,
+ "loss": 2.5091521739959717,
+ "step": 2955
+ },
+ {
+ "epoch": 41.05589519650655,
+ "grad_norm": 0.06734023988246918,
+ "learning_rate": 0.0006,
+ "loss": 2.4951586723327637,
+ "step": 2956
+ },
+ {
+ "epoch": 41.069868995633186,
+ "grad_norm": 0.06427191197872162,
+ "learning_rate": 0.0006,
+ "loss": 2.493849039077759,
+ "step": 2957
+ },
+ {
+ "epoch": 41.083842794759825,
+ "grad_norm": 0.06457237899303436,
+ "learning_rate": 0.0006,
+ "loss": 2.48870849609375,
+ "step": 2958
+ },
+ {
+ "epoch": 41.09781659388646,
+ "grad_norm": 0.06964237242937088,
+ "learning_rate": 0.0006,
+ "loss": 2.540151596069336,
+ "step": 2959
+ },
+ {
+ "epoch": 41.1117903930131,
+ "grad_norm": 0.06629417091608047,
+ "learning_rate": 0.0006,
+ "loss": 2.4720113277435303,
+ "step": 2960
+ },
+ {
+ "epoch": 41.12576419213974,
+ "grad_norm": 0.05969119444489479,
+ "learning_rate": 0.0006,
+ "loss": 2.4723451137542725,
+ "step": 2961
+ },
+ {
+ "epoch": 41.13973799126637,
+ "grad_norm": 0.06374634057283401,
+ "learning_rate": 0.0006,
+ "loss": 2.530426025390625,
+ "step": 2962
+ },
+ {
+ "epoch": 41.15371179039301,
+ "grad_norm": 0.07170208543539047,
+ "learning_rate": 0.0006,
+ "loss": 2.5041663646698,
+ "step": 2963
+ },
+ {
+ "epoch": 41.16768558951965,
+ "grad_norm": 0.06941591203212738,
+ "learning_rate": 0.0006,
+ "loss": 2.51432204246521,
+ "step": 2964
+ },
+ {
+ "epoch": 41.18165938864629,
+ "grad_norm": 0.06023700162768364,
+ "learning_rate": 0.0006,
+ "loss": 2.5003089904785156,
+ "step": 2965
+ },
+ {
+ "epoch": 41.19563318777293,
+ "grad_norm": 0.054598093032836914,
+ "learning_rate": 0.0006,
+ "loss": 2.49953556060791,
+ "step": 2966
+ },
+ {
+ "epoch": 41.209606986899566,
+ "grad_norm": 0.05806402489542961,
+ "learning_rate": 0.0006,
+ "loss": 2.5472049713134766,
+ "step": 2967
+ },
+ {
+ "epoch": 41.223580786026204,
+ "grad_norm": 0.06137162446975708,
+ "learning_rate": 0.0006,
+ "loss": 2.5571017265319824,
+ "step": 2968
+ },
+ {
+ "epoch": 41.237554585152836,
+ "grad_norm": 0.06971567124128342,
+ "learning_rate": 0.0006,
+ "loss": 2.591752767562866,
+ "step": 2969
+ },
+ {
+ "epoch": 41.251528384279474,
+ "grad_norm": 0.07225124537944794,
+ "learning_rate": 0.0006,
+ "loss": 2.565896987915039,
+ "step": 2970
+ },
+ {
+ "epoch": 41.26550218340611,
+ "grad_norm": 0.06897974759340286,
+ "learning_rate": 0.0006,
+ "loss": 2.5832743644714355,
+ "step": 2971
+ },
+ {
+ "epoch": 41.27947598253275,
+ "grad_norm": 0.06968700885772705,
+ "learning_rate": 0.0006,
+ "loss": 2.58354115486145,
+ "step": 2972
+ },
+ {
+ "epoch": 41.29344978165939,
+ "grad_norm": 0.06928391754627228,
+ "learning_rate": 0.0006,
+ "loss": 2.5523929595947266,
+ "step": 2973
+ },
+ {
+ "epoch": 41.30742358078603,
+ "grad_norm": 0.06092998385429382,
+ "learning_rate": 0.0006,
+ "loss": 2.5852198600769043,
+ "step": 2974
+ },
+ {
+ "epoch": 41.32139737991266,
+ "grad_norm": 0.05461019277572632,
+ "learning_rate": 0.0006,
+ "loss": 2.5784430503845215,
+ "step": 2975
+ },
+ {
+ "epoch": 41.3353711790393,
+ "grad_norm": 0.059578269720077515,
+ "learning_rate": 0.0006,
+ "loss": 2.5980494022369385,
+ "step": 2976
+ },
+ {
+ "epoch": 41.34934497816594,
+ "grad_norm": 0.05834083631634712,
+ "learning_rate": 0.0006,
+ "loss": 2.602646827697754,
+ "step": 2977
+ },
+ {
+ "epoch": 41.36331877729258,
+ "grad_norm": 0.05291537567973137,
+ "learning_rate": 0.0006,
+ "loss": 2.557065486907959,
+ "step": 2978
+ },
+ {
+ "epoch": 41.377292576419215,
+ "grad_norm": 0.050251904875040054,
+ "learning_rate": 0.0006,
+ "loss": 2.6000962257385254,
+ "step": 2979
+ },
+ {
+ "epoch": 41.391266375545854,
+ "grad_norm": 0.051875483244657516,
+ "learning_rate": 0.0006,
+ "loss": 2.582411766052246,
+ "step": 2980
+ },
+ {
+ "epoch": 41.40524017467249,
+ "grad_norm": 0.05478638410568237,
+ "learning_rate": 0.0006,
+ "loss": 2.5964908599853516,
+ "step": 2981
+ },
+ {
+ "epoch": 41.419213973799124,
+ "grad_norm": 0.05316122993826866,
+ "learning_rate": 0.0006,
+ "loss": 2.6215295791625977,
+ "step": 2982
+ },
+ {
+ "epoch": 41.43318777292576,
+ "grad_norm": 0.050784602761268616,
+ "learning_rate": 0.0006,
+ "loss": 2.628396987915039,
+ "step": 2983
+ },
+ {
+ "epoch": 41.4471615720524,
+ "grad_norm": 0.04980757087469101,
+ "learning_rate": 0.0006,
+ "loss": 2.598594903945923,
+ "step": 2984
+ },
+ {
+ "epoch": 41.46113537117904,
+ "grad_norm": 0.04802572727203369,
+ "learning_rate": 0.0006,
+ "loss": 2.632929801940918,
+ "step": 2985
+ },
+ {
+ "epoch": 41.47510917030568,
+ "grad_norm": 0.046256471425294876,
+ "learning_rate": 0.0006,
+ "loss": 2.647948980331421,
+ "step": 2986
+ },
+ {
+ "epoch": 41.48908296943232,
+ "grad_norm": 0.04124723747372627,
+ "learning_rate": 0.0006,
+ "loss": 2.6318936347961426,
+ "step": 2987
+ },
+ {
+ "epoch": 41.50305676855895,
+ "grad_norm": 0.04096651077270508,
+ "learning_rate": 0.0006,
+ "loss": 2.6342906951904297,
+ "step": 2988
+ },
+ {
+ "epoch": 41.51703056768559,
+ "grad_norm": 0.04245220124721527,
+ "learning_rate": 0.0006,
+ "loss": 2.611931800842285,
+ "step": 2989
+ },
+ {
+ "epoch": 41.531004366812226,
+ "grad_norm": 0.041183747351169586,
+ "learning_rate": 0.0006,
+ "loss": 2.649632453918457,
+ "step": 2990
+ },
+ {
+ "epoch": 41.544978165938865,
+ "grad_norm": 0.03992500156164169,
+ "learning_rate": 0.0006,
+ "loss": 2.6692309379577637,
+ "step": 2991
+ },
+ {
+ "epoch": 41.5589519650655,
+ "grad_norm": 0.037352435290813446,
+ "learning_rate": 0.0006,
+ "loss": 2.641296863555908,
+ "step": 2992
+ },
+ {
+ "epoch": 41.57292576419214,
+ "grad_norm": 0.03561893850564957,
+ "learning_rate": 0.0006,
+ "loss": 2.6621932983398438,
+ "step": 2993
+ },
+ {
+ "epoch": 41.58689956331878,
+ "grad_norm": 0.03681188076734543,
+ "learning_rate": 0.0006,
+ "loss": 2.655366897583008,
+ "step": 2994
+ },
+ {
+ "epoch": 41.60087336244541,
+ "grad_norm": 0.03648288920521736,
+ "learning_rate": 0.0006,
+ "loss": 2.648235321044922,
+ "step": 2995
+ },
+ {
+ "epoch": 41.61484716157205,
+ "grad_norm": 0.03450721874833107,
+ "learning_rate": 0.0006,
+ "loss": 2.6067535877227783,
+ "step": 2996
+ },
+ {
+ "epoch": 41.62882096069869,
+ "grad_norm": 0.03514327108860016,
+ "learning_rate": 0.0006,
+ "loss": 2.6524481773376465,
+ "step": 2997
+ },
+ {
+ "epoch": 41.64279475982533,
+ "grad_norm": 0.035532090812921524,
+ "learning_rate": 0.0006,
+ "loss": 2.661794662475586,
+ "step": 2998
+ },
+ {
+ "epoch": 41.65676855895197,
+ "grad_norm": 0.03596893325448036,
+ "learning_rate": 0.0006,
+ "loss": 2.6547136306762695,
+ "step": 2999
+ },
+ {
+ "epoch": 41.670742358078606,
+ "grad_norm": 0.03504801541566849,
+ "learning_rate": 0.0006,
+ "loss": 2.6949620246887207,
+ "step": 3000
+ },
+ {
+ "epoch": 41.68471615720524,
+ "grad_norm": 0.03513277322053909,
+ "learning_rate": 0.0006,
+ "loss": 2.669483184814453,
+ "step": 3001
+ },
+ {
+ "epoch": 41.698689956331876,
+ "grad_norm": 0.034047797322273254,
+ "learning_rate": 0.0006,
+ "loss": 2.6670925617218018,
+ "step": 3002
+ },
+ {
+ "epoch": 41.712663755458514,
+ "grad_norm": 0.03440465033054352,
+ "learning_rate": 0.0006,
+ "loss": 2.6995179653167725,
+ "step": 3003
+ },
+ {
+ "epoch": 41.72663755458515,
+ "grad_norm": 0.03386697918176651,
+ "learning_rate": 0.0006,
+ "loss": 2.6748435497283936,
+ "step": 3004
+ },
+ {
+ "epoch": 41.74061135371179,
+ "grad_norm": 0.03427353873848915,
+ "learning_rate": 0.0006,
+ "loss": 2.687830924987793,
+ "step": 3005
+ },
+ {
+ "epoch": 41.75458515283843,
+ "grad_norm": 0.034239862114191055,
+ "learning_rate": 0.0006,
+ "loss": 2.655815601348877,
+ "step": 3006
+ },
+ {
+ "epoch": 41.76855895196506,
+ "grad_norm": 0.03303586691617966,
+ "learning_rate": 0.0006,
+ "loss": 2.669964075088501,
+ "step": 3007
+ },
+ {
+ "epoch": 41.7825327510917,
+ "grad_norm": 0.03340915963053703,
+ "learning_rate": 0.0006,
+ "loss": 2.6928677558898926,
+ "step": 3008
+ },
+ {
+ "epoch": 41.79650655021834,
+ "grad_norm": 0.03367476165294647,
+ "learning_rate": 0.0006,
+ "loss": 2.7179598808288574,
+ "step": 3009
+ },
+ {
+ "epoch": 41.81048034934498,
+ "grad_norm": 0.03302138298749924,
+ "learning_rate": 0.0006,
+ "loss": 2.6798248291015625,
+ "step": 3010
+ },
+ {
+ "epoch": 41.82445414847162,
+ "grad_norm": 0.033954862505197525,
+ "learning_rate": 0.0006,
+ "loss": 2.6973462104797363,
+ "step": 3011
+ },
+ {
+ "epoch": 41.838427947598255,
+ "grad_norm": 0.033157311379909515,
+ "learning_rate": 0.0006,
+ "loss": 2.6747636795043945,
+ "step": 3012
+ },
+ {
+ "epoch": 41.852401746724894,
+ "grad_norm": 0.033011890947818756,
+ "learning_rate": 0.0006,
+ "loss": 2.686279535293579,
+ "step": 3013
+ },
+ {
+ "epoch": 41.866375545851525,
+ "grad_norm": 0.032952625304460526,
+ "learning_rate": 0.0006,
+ "loss": 2.6770482063293457,
+ "step": 3014
+ },
+ {
+ "epoch": 41.880349344978164,
+ "grad_norm": 0.03311127424240112,
+ "learning_rate": 0.0006,
+ "loss": 2.6875858306884766,
+ "step": 3015
+ },
+ {
+ "epoch": 41.8943231441048,
+ "grad_norm": 0.03227787837386131,
+ "learning_rate": 0.0006,
+ "loss": 2.7145700454711914,
+ "step": 3016
+ },
+ {
+ "epoch": 41.90829694323144,
+ "grad_norm": 0.03321456536650658,
+ "learning_rate": 0.0006,
+ "loss": 2.673895835876465,
+ "step": 3017
+ },
+ {
+ "epoch": 41.92227074235808,
+ "grad_norm": 0.03320823982357979,
+ "learning_rate": 0.0006,
+ "loss": 2.7287275791168213,
+ "step": 3018
+ },
+ {
+ "epoch": 41.93624454148472,
+ "grad_norm": 0.03459212929010391,
+ "learning_rate": 0.0006,
+ "loss": 2.735105514526367,
+ "step": 3019
+ },
+ {
+ "epoch": 41.95021834061135,
+ "grad_norm": 0.03409607708454132,
+ "learning_rate": 0.0006,
+ "loss": 2.718269109725952,
+ "step": 3020
+ },
+ {
+ "epoch": 41.96419213973799,
+ "grad_norm": 0.031720004975795746,
+ "learning_rate": 0.0006,
+ "loss": 2.7110891342163086,
+ "step": 3021
+ },
+ {
+ "epoch": 41.97816593886463,
+ "grad_norm": 0.032923273742198944,
+ "learning_rate": 0.0006,
+ "loss": 2.6825613975524902,
+ "step": 3022
+ },
+ {
+ "epoch": 41.992139737991266,
+ "grad_norm": 0.033411912620067596,
+ "learning_rate": 0.0006,
+ "loss": 2.7118630409240723,
+ "step": 3023
+ },
+ {
+ "epoch": 42.0,
+ "grad_norm": 0.03869323059916496,
+ "learning_rate": 0.0006,
+ "loss": 2.6891462802886963,
+ "step": 3024
+ },
+ {
+ "epoch": 42.0,
+ "eval_loss": 4.533603668212891,
+ "eval_runtime": 50.3169,
+ "eval_samples_per_second": 48.532,
+ "eval_steps_per_second": 1.53,
+ "step": 3024
+ },
+ {
+ "epoch": 42.01397379912664,
+ "grad_norm": 0.039055779576301575,
+ "learning_rate": 0.0006,
+ "loss": 2.5039710998535156,
+ "step": 3025
+ },
+ {
+ "epoch": 42.02794759825328,
+ "grad_norm": 0.052520107477903366,
+ "learning_rate": 0.0006,
+ "loss": 2.462716579437256,
+ "step": 3026
+ },
+ {
+ "epoch": 42.041921397379916,
+ "grad_norm": 0.058227334171533585,
+ "learning_rate": 0.0006,
+ "loss": 2.477053642272949,
+ "step": 3027
+ },
+ {
+ "epoch": 42.05589519650655,
+ "grad_norm": 0.06221282109618187,
+ "learning_rate": 0.0006,
+ "loss": 2.4450716972351074,
+ "step": 3028
+ },
+ {
+ "epoch": 42.069868995633186,
+ "grad_norm": 0.06616507470607758,
+ "learning_rate": 0.0006,
+ "loss": 2.4570517539978027,
+ "step": 3029
+ },
+ {
+ "epoch": 42.083842794759825,
+ "grad_norm": 0.07041152566671371,
+ "learning_rate": 0.0006,
+ "loss": 2.470550060272217,
+ "step": 3030
+ },
+ {
+ "epoch": 42.09781659388646,
+ "grad_norm": 0.0759936049580574,
+ "learning_rate": 0.0006,
+ "loss": 2.4792351722717285,
+ "step": 3031
+ },
+ {
+ "epoch": 42.1117903930131,
+ "grad_norm": 0.07650945335626602,
+ "learning_rate": 0.0006,
+ "loss": 2.506289482116699,
+ "step": 3032
+ },
+ {
+ "epoch": 42.12576419213974,
+ "grad_norm": 0.07527980953454971,
+ "learning_rate": 0.0006,
+ "loss": 2.4983952045440674,
+ "step": 3033
+ },
+ {
+ "epoch": 42.13973799126637,
+ "grad_norm": 0.07372308522462845,
+ "learning_rate": 0.0006,
+ "loss": 2.488091230392456,
+ "step": 3034
+ },
+ {
+ "epoch": 42.15371179039301,
+ "grad_norm": 0.06859748810529709,
+ "learning_rate": 0.0006,
+ "loss": 2.4849133491516113,
+ "step": 3035
+ },
+ {
+ "epoch": 42.16768558951965,
+ "grad_norm": 0.07006996870040894,
+ "learning_rate": 0.0006,
+ "loss": 2.5095486640930176,
+ "step": 3036
+ },
+ {
+ "epoch": 42.18165938864629,
+ "grad_norm": 0.07903590798377991,
+ "learning_rate": 0.0006,
+ "loss": 2.5036849975585938,
+ "step": 3037
+ },
+ {
+ "epoch": 42.19563318777293,
+ "grad_norm": 0.08817902207374573,
+ "learning_rate": 0.0006,
+ "loss": 2.5240135192871094,
+ "step": 3038
+ },
+ {
+ "epoch": 42.209606986899566,
+ "grad_norm": 0.09336652606725693,
+ "learning_rate": 0.0006,
+ "loss": 2.5357613563537598,
+ "step": 3039
+ },
+ {
+ "epoch": 42.223580786026204,
+ "grad_norm": 0.08338862657546997,
+ "learning_rate": 0.0006,
+ "loss": 2.539161443710327,
+ "step": 3040
+ },
+ {
+ "epoch": 42.237554585152836,
+ "grad_norm": 0.06879600882530212,
+ "learning_rate": 0.0006,
+ "loss": 2.507911205291748,
+ "step": 3041
+ },
+ {
+ "epoch": 42.251528384279474,
+ "grad_norm": 0.0669286772608757,
+ "learning_rate": 0.0006,
+ "loss": 2.514423370361328,
+ "step": 3042
+ },
+ {
+ "epoch": 42.26550218340611,
+ "grad_norm": 0.061652153730392456,
+ "learning_rate": 0.0006,
+ "loss": 2.532485008239746,
+ "step": 3043
+ },
+ {
+ "epoch": 42.27947598253275,
+ "grad_norm": 0.056599609553813934,
+ "learning_rate": 0.0006,
+ "loss": 2.5467514991760254,
+ "step": 3044
+ },
+ {
+ "epoch": 42.29344978165939,
+ "grad_norm": 0.06113262474536896,
+ "learning_rate": 0.0006,
+ "loss": 2.5644102096557617,
+ "step": 3045
+ },
+ {
+ "epoch": 42.30742358078603,
+ "grad_norm": 0.06744182854890823,
+ "learning_rate": 0.0006,
+ "loss": 2.575010299682617,
+ "step": 3046
+ },
+ {
+ "epoch": 42.32139737991266,
+ "grad_norm": 0.06519673764705658,
+ "learning_rate": 0.0006,
+ "loss": 2.5722289085388184,
+ "step": 3047
+ },
+ {
+ "epoch": 42.3353711790393,
+ "grad_norm": 0.06317145377397537,
+ "learning_rate": 0.0006,
+ "loss": 2.5724639892578125,
+ "step": 3048
+ },
+ {
+ "epoch": 42.34934497816594,
+ "grad_norm": 0.05925135314464569,
+ "learning_rate": 0.0006,
+ "loss": 2.566068172454834,
+ "step": 3049
+ },
+ {
+ "epoch": 42.36331877729258,
+ "grad_norm": 0.05837476998567581,
+ "learning_rate": 0.0006,
+ "loss": 2.5841143131256104,
+ "step": 3050
+ },
+ {
+ "epoch": 42.377292576419215,
+ "grad_norm": 0.054796624928712845,
+ "learning_rate": 0.0006,
+ "loss": 2.6088240146636963,
+ "step": 3051
+ },
+ {
+ "epoch": 42.391266375545854,
+ "grad_norm": 0.05314824357628822,
+ "learning_rate": 0.0006,
+ "loss": 2.608184337615967,
+ "step": 3052
+ },
+ {
+ "epoch": 42.40524017467249,
+ "grad_norm": 0.05028757452964783,
+ "learning_rate": 0.0006,
+ "loss": 2.602792501449585,
+ "step": 3053
+ },
+ {
+ "epoch": 42.419213973799124,
+ "grad_norm": 0.05145784094929695,
+ "learning_rate": 0.0006,
+ "loss": 2.591215133666992,
+ "step": 3054
+ },
+ {
+ "epoch": 42.43318777292576,
+ "grad_norm": 0.050456155091524124,
+ "learning_rate": 0.0006,
+ "loss": 2.578303813934326,
+ "step": 3055
+ },
+ {
+ "epoch": 42.4471615720524,
+ "grad_norm": 0.04676664620637894,
+ "learning_rate": 0.0006,
+ "loss": 2.6015772819519043,
+ "step": 3056
+ },
+ {
+ "epoch": 42.46113537117904,
+ "grad_norm": 0.04779385030269623,
+ "learning_rate": 0.0006,
+ "loss": 2.6344552040100098,
+ "step": 3057
+ },
+ {
+ "epoch": 42.47510917030568,
+ "grad_norm": 0.04689611494541168,
+ "learning_rate": 0.0006,
+ "loss": 2.5751309394836426,
+ "step": 3058
+ },
+ {
+ "epoch": 42.48908296943232,
+ "grad_norm": 0.04553738981485367,
+ "learning_rate": 0.0006,
+ "loss": 2.5387766361236572,
+ "step": 3059
+ },
+ {
+ "epoch": 42.50305676855895,
+ "grad_norm": 0.043393444269895554,
+ "learning_rate": 0.0006,
+ "loss": 2.5929782390594482,
+ "step": 3060
+ },
+ {
+ "epoch": 42.51703056768559,
+ "grad_norm": 0.04091055691242218,
+ "learning_rate": 0.0006,
+ "loss": 2.5865015983581543,
+ "step": 3061
+ },
+ {
+ "epoch": 42.531004366812226,
+ "grad_norm": 0.040986157953739166,
+ "learning_rate": 0.0006,
+ "loss": 2.5849504470825195,
+ "step": 3062
+ },
+ {
+ "epoch": 42.544978165938865,
+ "grad_norm": 0.0396786630153656,
+ "learning_rate": 0.0006,
+ "loss": 2.6373119354248047,
+ "step": 3063
+ },
+ {
+ "epoch": 42.5589519650655,
+ "grad_norm": 0.03911421447992325,
+ "learning_rate": 0.0006,
+ "loss": 2.629985809326172,
+ "step": 3064
+ },
+ {
+ "epoch": 42.57292576419214,
+ "grad_norm": 0.03813336789608002,
+ "learning_rate": 0.0006,
+ "loss": 2.621062755584717,
+ "step": 3065
+ },
+ {
+ "epoch": 42.58689956331878,
+ "grad_norm": 0.03617129847407341,
+ "learning_rate": 0.0006,
+ "loss": 2.616161823272705,
+ "step": 3066
+ },
+ {
+ "epoch": 42.60087336244541,
+ "grad_norm": 0.03905786573886871,
+ "learning_rate": 0.0006,
+ "loss": 2.643871784210205,
+ "step": 3067
+ },
+ {
+ "epoch": 42.61484716157205,
+ "grad_norm": 0.03813883289694786,
+ "learning_rate": 0.0006,
+ "loss": 2.6352767944335938,
+ "step": 3068
+ },
+ {
+ "epoch": 42.62882096069869,
+ "grad_norm": 0.03774777427315712,
+ "learning_rate": 0.0006,
+ "loss": 2.6713361740112305,
+ "step": 3069
+ },
+ {
+ "epoch": 42.64279475982533,
+ "grad_norm": 0.03608370199799538,
+ "learning_rate": 0.0006,
+ "loss": 2.661457061767578,
+ "step": 3070
+ },
+ {
+ "epoch": 42.65676855895197,
+ "grad_norm": 0.03751992806792259,
+ "learning_rate": 0.0006,
+ "loss": 2.6212592124938965,
+ "step": 3071
+ },
+ {
+ "epoch": 42.670742358078606,
+ "grad_norm": 0.036885008215904236,
+ "learning_rate": 0.0006,
+ "loss": 2.6710402965545654,
+ "step": 3072
+ },
+ {
+ "epoch": 42.68471615720524,
+ "grad_norm": 0.03548501431941986,
+ "learning_rate": 0.0006,
+ "loss": 2.6712498664855957,
+ "step": 3073
+ },
+ {
+ "epoch": 42.698689956331876,
+ "grad_norm": 0.035861410200595856,
+ "learning_rate": 0.0006,
+ "loss": 2.6542186737060547,
+ "step": 3074
+ },
+ {
+ "epoch": 42.712663755458514,
+ "grad_norm": 0.033946141600608826,
+ "learning_rate": 0.0006,
+ "loss": 2.6522037982940674,
+ "step": 3075
+ },
+ {
+ "epoch": 42.72663755458515,
+ "grad_norm": 0.03576039895415306,
+ "learning_rate": 0.0006,
+ "loss": 2.6726837158203125,
+ "step": 3076
+ },
+ {
+ "epoch": 42.74061135371179,
+ "grad_norm": 0.036935970187187195,
+ "learning_rate": 0.0006,
+ "loss": 2.6788535118103027,
+ "step": 3077
+ },
+ {
+ "epoch": 42.75458515283843,
+ "grad_norm": 0.03468472138047218,
+ "learning_rate": 0.0006,
+ "loss": 2.6404237747192383,
+ "step": 3078
+ },
+ {
+ "epoch": 42.76855895196506,
+ "grad_norm": 0.0341462567448616,
+ "learning_rate": 0.0006,
+ "loss": 2.6670050621032715,
+ "step": 3079
+ },
+ {
+ "epoch": 42.7825327510917,
+ "grad_norm": 0.03578699752688408,
+ "learning_rate": 0.0006,
+ "loss": 2.6439907550811768,
+ "step": 3080
+ },
+ {
+ "epoch": 42.79650655021834,
+ "grad_norm": 0.03652707859873772,
+ "learning_rate": 0.0006,
+ "loss": 2.6720101833343506,
+ "step": 3081
+ },
+ {
+ "epoch": 42.81048034934498,
+ "grad_norm": 0.03481908142566681,
+ "learning_rate": 0.0006,
+ "loss": 2.675555467605591,
+ "step": 3082
+ },
+ {
+ "epoch": 42.82445414847162,
+ "grad_norm": 0.03538025543093681,
+ "learning_rate": 0.0006,
+ "loss": 2.65213680267334,
+ "step": 3083
+ },
+ {
+ "epoch": 42.838427947598255,
+ "grad_norm": 0.034426379948854446,
+ "learning_rate": 0.0006,
+ "loss": 2.6370458602905273,
+ "step": 3084
+ },
+ {
+ "epoch": 42.852401746724894,
+ "grad_norm": 0.035427920520305634,
+ "learning_rate": 0.0006,
+ "loss": 2.678520679473877,
+ "step": 3085
+ },
+ {
+ "epoch": 42.866375545851525,
+ "grad_norm": 0.034902121871709824,
+ "learning_rate": 0.0006,
+ "loss": 2.6570701599121094,
+ "step": 3086
+ },
+ {
+ "epoch": 42.880349344978164,
+ "grad_norm": 0.0353839248418808,
+ "learning_rate": 0.0006,
+ "loss": 2.6869828701019287,
+ "step": 3087
+ },
+ {
+ "epoch": 42.8943231441048,
+ "grad_norm": 0.03405144438147545,
+ "learning_rate": 0.0006,
+ "loss": 2.698706865310669,
+ "step": 3088
+ },
+ {
+ "epoch": 42.90829694323144,
+ "grad_norm": 0.033478010445833206,
+ "learning_rate": 0.0006,
+ "loss": 2.669114351272583,
+ "step": 3089
+ },
+ {
+ "epoch": 42.92227074235808,
+ "grad_norm": 0.0346604660153389,
+ "learning_rate": 0.0006,
+ "loss": 2.7061116695404053,
+ "step": 3090
+ },
+ {
+ "epoch": 42.93624454148472,
+ "grad_norm": 0.03334188461303711,
+ "learning_rate": 0.0006,
+ "loss": 2.706364154815674,
+ "step": 3091
+ },
+ {
+ "epoch": 42.95021834061135,
+ "grad_norm": 0.032201964408159256,
+ "learning_rate": 0.0006,
+ "loss": 2.6762053966522217,
+ "step": 3092
+ },
+ {
+ "epoch": 42.96419213973799,
+ "grad_norm": 0.033559318631887436,
+ "learning_rate": 0.0006,
+ "loss": 2.6897826194763184,
+ "step": 3093
+ },
+ {
+ "epoch": 42.97816593886463,
+ "grad_norm": 0.033161524683237076,
+ "learning_rate": 0.0006,
+ "loss": 2.6918983459472656,
+ "step": 3094
+ },
+ {
+ "epoch": 42.992139737991266,
+ "grad_norm": 0.03354569524526596,
+ "learning_rate": 0.0006,
+ "loss": 2.7026150226593018,
+ "step": 3095
+ },
+ {
+ "epoch": 43.0,
+ "grad_norm": 0.037834350019693375,
+ "learning_rate": 0.0006,
+ "loss": 2.7188563346862793,
+ "step": 3096
+ },
+ {
+ "epoch": 43.0,
+ "eval_loss": 4.551867961883545,
+ "eval_runtime": 50.1252,
+ "eval_samples_per_second": 48.718,
+ "eval_steps_per_second": 1.536,
+ "step": 3096
+ },
+ {
+ "epoch": 43.01397379912664,
+ "grad_norm": 0.039894044399261475,
+ "learning_rate": 0.0006,
+ "loss": 2.4054040908813477,
+ "step": 3097
+ },
+ {
+ "epoch": 43.02794759825328,
+ "grad_norm": 0.0556144081056118,
+ "learning_rate": 0.0006,
+ "loss": 2.434190273284912,
+ "step": 3098
+ },
+ {
+ "epoch": 43.041921397379916,
+ "grad_norm": 0.06012912467122078,
+ "learning_rate": 0.0006,
+ "loss": 2.458591938018799,
+ "step": 3099
+ },
+ {
+ "epoch": 43.05589519650655,
+ "grad_norm": 0.06086045131087303,
+ "learning_rate": 0.0006,
+ "loss": 2.443781852722168,
+ "step": 3100
+ },
+ {
+ "epoch": 43.069868995633186,
+ "grad_norm": 0.06091619282960892,
+ "learning_rate": 0.0006,
+ "loss": 2.4393179416656494,
+ "step": 3101
+ },
+ {
+ "epoch": 43.083842794759825,
+ "grad_norm": 0.07029589265584946,
+ "learning_rate": 0.0006,
+ "loss": 2.4653985500335693,
+ "step": 3102
+ },
+ {
+ "epoch": 43.09781659388646,
+ "grad_norm": 0.08059313148260117,
+ "learning_rate": 0.0006,
+ "loss": 2.4899373054504395,
+ "step": 3103
+ },
+ {
+ "epoch": 43.1117903930131,
+ "grad_norm": 0.08094831556081772,
+ "learning_rate": 0.0006,
+ "loss": 2.4630067348480225,
+ "step": 3104
+ },
+ {
+ "epoch": 43.12576419213974,
+ "grad_norm": 0.07868043333292007,
+ "learning_rate": 0.0006,
+ "loss": 2.4484105110168457,
+ "step": 3105
+ },
+ {
+ "epoch": 43.13973799126637,
+ "grad_norm": 0.07610005140304565,
+ "learning_rate": 0.0006,
+ "loss": 2.4880459308624268,
+ "step": 3106
+ },
+ {
+ "epoch": 43.15371179039301,
+ "grad_norm": 0.07098852843046188,
+ "learning_rate": 0.0006,
+ "loss": 2.46286678314209,
+ "step": 3107
+ },
+ {
+ "epoch": 43.16768558951965,
+ "grad_norm": 0.07232986390590668,
+ "learning_rate": 0.0006,
+ "loss": 2.476626396179199,
+ "step": 3108
+ },
+ {
+ "epoch": 43.18165938864629,
+ "grad_norm": 0.07110542058944702,
+ "learning_rate": 0.0006,
+ "loss": 2.529035806655884,
+ "step": 3109
+ },
+ {
+ "epoch": 43.19563318777293,
+ "grad_norm": 0.07055077701807022,
+ "learning_rate": 0.0006,
+ "loss": 2.518265724182129,
+ "step": 3110
+ },
+ {
+ "epoch": 43.209606986899566,
+ "grad_norm": 0.07104186713695526,
+ "learning_rate": 0.0006,
+ "loss": 2.483802318572998,
+ "step": 3111
+ },
+ {
+ "epoch": 43.223580786026204,
+ "grad_norm": 0.07302606105804443,
+ "learning_rate": 0.0006,
+ "loss": 2.5399117469787598,
+ "step": 3112
+ },
+ {
+ "epoch": 43.237554585152836,
+ "grad_norm": 0.07185189425945282,
+ "learning_rate": 0.0006,
+ "loss": 2.54400897026062,
+ "step": 3113
+ },
+ {
+ "epoch": 43.251528384279474,
+ "grad_norm": 0.06465277820825577,
+ "learning_rate": 0.0006,
+ "loss": 2.529027223587036,
+ "step": 3114
+ },
+ {
+ "epoch": 43.26550218340611,
+ "grad_norm": 0.06251437962055206,
+ "learning_rate": 0.0006,
+ "loss": 2.5403528213500977,
+ "step": 3115
+ },
+ {
+ "epoch": 43.27947598253275,
+ "grad_norm": 0.06332837790250778,
+ "learning_rate": 0.0006,
+ "loss": 2.526170253753662,
+ "step": 3116
+ },
+ {
+ "epoch": 43.29344978165939,
+ "grad_norm": 0.06325972825288773,
+ "learning_rate": 0.0006,
+ "loss": 2.5278429985046387,
+ "step": 3117
+ },
+ {
+ "epoch": 43.30742358078603,
+ "grad_norm": 0.06548318266868591,
+ "learning_rate": 0.0006,
+ "loss": 2.55181622505188,
+ "step": 3118
+ },
+ {
+ "epoch": 43.32139737991266,
+ "grad_norm": 0.06045873090624809,
+ "learning_rate": 0.0006,
+ "loss": 2.508786201477051,
+ "step": 3119
+ },
+ {
+ "epoch": 43.3353711790393,
+ "grad_norm": 0.059493113309144974,
+ "learning_rate": 0.0006,
+ "loss": 2.558365821838379,
+ "step": 3120
+ },
+ {
+ "epoch": 43.34934497816594,
+ "grad_norm": 0.0564209446310997,
+ "learning_rate": 0.0006,
+ "loss": 2.5639777183532715,
+ "step": 3121
+ },
+ {
+ "epoch": 43.36331877729258,
+ "grad_norm": 0.05593051016330719,
+ "learning_rate": 0.0006,
+ "loss": 2.5792932510375977,
+ "step": 3122
+ },
+ {
+ "epoch": 43.377292576419215,
+ "grad_norm": 0.05426349490880966,
+ "learning_rate": 0.0006,
+ "loss": 2.578277587890625,
+ "step": 3123
+ },
+ {
+ "epoch": 43.391266375545854,
+ "grad_norm": 0.05218787491321564,
+ "learning_rate": 0.0006,
+ "loss": 2.5250115394592285,
+ "step": 3124
+ },
+ {
+ "epoch": 43.40524017467249,
+ "grad_norm": 0.04864683002233505,
+ "learning_rate": 0.0006,
+ "loss": 2.561724901199341,
+ "step": 3125
+ },
+ {
+ "epoch": 43.419213973799124,
+ "grad_norm": 0.04763657972216606,
+ "learning_rate": 0.0006,
+ "loss": 2.598081350326538,
+ "step": 3126
+ },
+ {
+ "epoch": 43.43318777292576,
+ "grad_norm": 0.047468241304159164,
+ "learning_rate": 0.0006,
+ "loss": 2.582240343093872,
+ "step": 3127
+ },
+ {
+ "epoch": 43.4471615720524,
+ "grad_norm": 0.046475861221551895,
+ "learning_rate": 0.0006,
+ "loss": 2.5932564735412598,
+ "step": 3128
+ },
+ {
+ "epoch": 43.46113537117904,
+ "grad_norm": 0.047135964035987854,
+ "learning_rate": 0.0006,
+ "loss": 2.5604312419891357,
+ "step": 3129
+ },
+ {
+ "epoch": 43.47510917030568,
+ "grad_norm": 0.0423005111515522,
+ "learning_rate": 0.0006,
+ "loss": 2.559349536895752,
+ "step": 3130
+ },
+ {
+ "epoch": 43.48908296943232,
+ "grad_norm": 0.04360322654247284,
+ "learning_rate": 0.0006,
+ "loss": 2.578221559524536,
+ "step": 3131
+ },
+ {
+ "epoch": 43.50305676855895,
+ "grad_norm": 0.04468272626399994,
+ "learning_rate": 0.0006,
+ "loss": 2.605259418487549,
+ "step": 3132
+ },
+ {
+ "epoch": 43.51703056768559,
+ "grad_norm": 0.043453149497509,
+ "learning_rate": 0.0006,
+ "loss": 2.584420919418335,
+ "step": 3133
+ },
+ {
+ "epoch": 43.531004366812226,
+ "grad_norm": 0.04170256480574608,
+ "learning_rate": 0.0006,
+ "loss": 2.6173574924468994,
+ "step": 3134
+ },
+ {
+ "epoch": 43.544978165938865,
+ "grad_norm": 0.041505344212055206,
+ "learning_rate": 0.0006,
+ "loss": 2.5952024459838867,
+ "step": 3135
+ },
+ {
+ "epoch": 43.5589519650655,
+ "grad_norm": 0.03797348961234093,
+ "learning_rate": 0.0006,
+ "loss": 2.6145734786987305,
+ "step": 3136
+ },
+ {
+ "epoch": 43.57292576419214,
+ "grad_norm": 0.038926657289266586,
+ "learning_rate": 0.0006,
+ "loss": 2.6303224563598633,
+ "step": 3137
+ },
+ {
+ "epoch": 43.58689956331878,
+ "grad_norm": 0.04031370207667351,
+ "learning_rate": 0.0006,
+ "loss": 2.59706711769104,
+ "step": 3138
+ },
+ {
+ "epoch": 43.60087336244541,
+ "grad_norm": 0.03780565410852432,
+ "learning_rate": 0.0006,
+ "loss": 2.6325907707214355,
+ "step": 3139
+ },
+ {
+ "epoch": 43.61484716157205,
+ "grad_norm": 0.03980429843068123,
+ "learning_rate": 0.0006,
+ "loss": 2.6041979789733887,
+ "step": 3140
+ },
+ {
+ "epoch": 43.62882096069869,
+ "grad_norm": 0.04150824621319771,
+ "learning_rate": 0.0006,
+ "loss": 2.6184306144714355,
+ "step": 3141
+ },
+ {
+ "epoch": 43.64279475982533,
+ "grad_norm": 0.03963693976402283,
+ "learning_rate": 0.0006,
+ "loss": 2.613598346710205,
+ "step": 3142
+ },
+ {
+ "epoch": 43.65676855895197,
+ "grad_norm": 0.03586544841527939,
+ "learning_rate": 0.0006,
+ "loss": 2.6322641372680664,
+ "step": 3143
+ },
+ {
+ "epoch": 43.670742358078606,
+ "grad_norm": 0.03535877540707588,
+ "learning_rate": 0.0006,
+ "loss": 2.633875608444214,
+ "step": 3144
+ },
+ {
+ "epoch": 43.68471615720524,
+ "grad_norm": 0.03778599575161934,
+ "learning_rate": 0.0006,
+ "loss": 2.622668743133545,
+ "step": 3145
+ },
+ {
+ "epoch": 43.698689956331876,
+ "grad_norm": 0.03664970397949219,
+ "learning_rate": 0.0006,
+ "loss": 2.6412525177001953,
+ "step": 3146
+ },
+ {
+ "epoch": 43.712663755458514,
+ "grad_norm": 0.0350605733692646,
+ "learning_rate": 0.0006,
+ "loss": 2.6174161434173584,
+ "step": 3147
+ },
+ {
+ "epoch": 43.72663755458515,
+ "grad_norm": 0.03612935170531273,
+ "learning_rate": 0.0006,
+ "loss": 2.6528100967407227,
+ "step": 3148
+ },
+ {
+ "epoch": 43.74061135371179,
+ "grad_norm": 0.03577341139316559,
+ "learning_rate": 0.0006,
+ "loss": 2.625124931335449,
+ "step": 3149
+ },
+ {
+ "epoch": 43.75458515283843,
+ "grad_norm": 0.03630969673395157,
+ "learning_rate": 0.0006,
+ "loss": 2.6396608352661133,
+ "step": 3150
+ },
+ {
+ "epoch": 43.76855895196506,
+ "grad_norm": 0.03708301857113838,
+ "learning_rate": 0.0006,
+ "loss": 2.634946584701538,
+ "step": 3151
+ },
+ {
+ "epoch": 43.7825327510917,
+ "grad_norm": 0.03584316000342369,
+ "learning_rate": 0.0006,
+ "loss": 2.6711108684539795,
+ "step": 3152
+ },
+ {
+ "epoch": 43.79650655021834,
+ "grad_norm": 0.03631407395005226,
+ "learning_rate": 0.0006,
+ "loss": 2.6760013103485107,
+ "step": 3153
+ },
+ {
+ "epoch": 43.81048034934498,
+ "grad_norm": 0.034824665635824203,
+ "learning_rate": 0.0006,
+ "loss": 2.648905038833618,
+ "step": 3154
+ },
+ {
+ "epoch": 43.82445414847162,
+ "grad_norm": 0.03596187382936478,
+ "learning_rate": 0.0006,
+ "loss": 2.6340579986572266,
+ "step": 3155
+ },
+ {
+ "epoch": 43.838427947598255,
+ "grad_norm": 0.03648270666599274,
+ "learning_rate": 0.0006,
+ "loss": 2.658421516418457,
+ "step": 3156
+ },
+ {
+ "epoch": 43.852401746724894,
+ "grad_norm": 0.03374706581234932,
+ "learning_rate": 0.0006,
+ "loss": 2.6651556491851807,
+ "step": 3157
+ },
+ {
+ "epoch": 43.866375545851525,
+ "grad_norm": 0.03548721969127655,
+ "learning_rate": 0.0006,
+ "loss": 2.6552627086639404,
+ "step": 3158
+ },
+ {
+ "epoch": 43.880349344978164,
+ "grad_norm": 0.03659737855195999,
+ "learning_rate": 0.0006,
+ "loss": 2.660137176513672,
+ "step": 3159
+ },
+ {
+ "epoch": 43.8943231441048,
+ "grad_norm": 0.03530234470963478,
+ "learning_rate": 0.0006,
+ "loss": 2.637637138366699,
+ "step": 3160
+ },
+ {
+ "epoch": 43.90829694323144,
+ "grad_norm": 0.03411990776658058,
+ "learning_rate": 0.0006,
+ "loss": 2.639763355255127,
+ "step": 3161
+ },
+ {
+ "epoch": 43.92227074235808,
+ "grad_norm": 0.03414890915155411,
+ "learning_rate": 0.0006,
+ "loss": 2.620924949645996,
+ "step": 3162
+ },
+ {
+ "epoch": 43.93624454148472,
+ "grad_norm": 0.03575901687145233,
+ "learning_rate": 0.0006,
+ "loss": 2.61818265914917,
+ "step": 3163
+ },
+ {
+ "epoch": 43.95021834061135,
+ "grad_norm": 0.033907290548086166,
+ "learning_rate": 0.0006,
+ "loss": 2.6804091930389404,
+ "step": 3164
+ },
+ {
+ "epoch": 43.96419213973799,
+ "grad_norm": 0.034784093499183655,
+ "learning_rate": 0.0006,
+ "loss": 2.664044141769409,
+ "step": 3165
+ },
+ {
+ "epoch": 43.97816593886463,
+ "grad_norm": 0.03513629734516144,
+ "learning_rate": 0.0006,
+ "loss": 2.665102005004883,
+ "step": 3166
+ },
+ {
+ "epoch": 43.992139737991266,
+ "grad_norm": 0.03519217669963837,
+ "learning_rate": 0.0006,
+ "loss": 2.6723098754882812,
+ "step": 3167
+ },
+ {
+ "epoch": 44.0,
+ "grad_norm": 0.039666421711444855,
+ "learning_rate": 0.0006,
+ "loss": 2.71716046333313,
+ "step": 3168
+ },
+ {
+ "epoch": 44.0,
+ "eval_loss": 4.5813307762146,
+ "eval_runtime": 54.441,
+ "eval_samples_per_second": 44.856,
+ "eval_steps_per_second": 1.414,
+ "step": 3168
+ },
+ {
+ "epoch": 44.01397379912664,
+ "grad_norm": 0.039331790059804916,
+ "learning_rate": 0.0006,
+ "loss": 2.3901710510253906,
+ "step": 3169
+ },
+ {
+ "epoch": 44.02794759825328,
+ "grad_norm": 0.05411116033792496,
+ "learning_rate": 0.0006,
+ "loss": 2.44466495513916,
+ "step": 3170
+ },
+ {
+ "epoch": 44.041921397379916,
+ "grad_norm": 0.05987037718296051,
+ "learning_rate": 0.0006,
+ "loss": 2.4077227115631104,
+ "step": 3171
+ },
+ {
+ "epoch": 44.05589519650655,
+ "grad_norm": 0.06380907446146011,
+ "learning_rate": 0.0006,
+ "loss": 2.442009925842285,
+ "step": 3172
+ },
+ {
+ "epoch": 44.069868995633186,
+ "grad_norm": 0.0651869922876358,
+ "learning_rate": 0.0006,
+ "loss": 2.3962411880493164,
+ "step": 3173
+ },
+ {
+ "epoch": 44.083842794759825,
+ "grad_norm": 0.07043886929750443,
+ "learning_rate": 0.0006,
+ "loss": 2.437635660171509,
+ "step": 3174
+ },
+ {
+ "epoch": 44.09781659388646,
+ "grad_norm": 0.07482526451349258,
+ "learning_rate": 0.0006,
+ "loss": 2.454097032546997,
+ "step": 3175
+ },
+ {
+ "epoch": 44.1117903930131,
+ "grad_norm": 0.07368145883083344,
+ "learning_rate": 0.0006,
+ "loss": 2.44191575050354,
+ "step": 3176
+ },
+ {
+ "epoch": 44.12576419213974,
+ "grad_norm": 0.07219808548688889,
+ "learning_rate": 0.0006,
+ "loss": 2.477715492248535,
+ "step": 3177
+ },
+ {
+ "epoch": 44.13973799126637,
+ "grad_norm": 0.06787604838609695,
+ "learning_rate": 0.0006,
+ "loss": 2.4774646759033203,
+ "step": 3178
+ },
+ {
+ "epoch": 44.15371179039301,
+ "grad_norm": 0.058558497577905655,
+ "learning_rate": 0.0006,
+ "loss": 2.4713292121887207,
+ "step": 3179
+ },
+ {
+ "epoch": 44.16768558951965,
+ "grad_norm": 0.056441739201545715,
+ "learning_rate": 0.0006,
+ "loss": 2.435551643371582,
+ "step": 3180
+ },
+ {
+ "epoch": 44.18165938864629,
+ "grad_norm": 0.05752360448241234,
+ "learning_rate": 0.0006,
+ "loss": 2.467848300933838,
+ "step": 3181
+ },
+ {
+ "epoch": 44.19563318777293,
+ "grad_norm": 0.05480615049600601,
+ "learning_rate": 0.0006,
+ "loss": 2.450211524963379,
+ "step": 3182
+ },
+ {
+ "epoch": 44.209606986899566,
+ "grad_norm": 0.058033570647239685,
+ "learning_rate": 0.0006,
+ "loss": 2.4664998054504395,
+ "step": 3183
+ },
+ {
+ "epoch": 44.223580786026204,
+ "grad_norm": 0.06683015078306198,
+ "learning_rate": 0.0006,
+ "loss": 2.4486424922943115,
+ "step": 3184
+ },
+ {
+ "epoch": 44.237554585152836,
+ "grad_norm": 0.07018277794122696,
+ "learning_rate": 0.0006,
+ "loss": 2.485224723815918,
+ "step": 3185
+ },
+ {
+ "epoch": 44.251528384279474,
+ "grad_norm": 0.07178860902786255,
+ "learning_rate": 0.0006,
+ "loss": 2.5386805534362793,
+ "step": 3186
+ },
+ {
+ "epoch": 44.26550218340611,
+ "grad_norm": 0.07218033075332642,
+ "learning_rate": 0.0006,
+ "loss": 2.5018200874328613,
+ "step": 3187
+ },
+ {
+ "epoch": 44.27947598253275,
+ "grad_norm": 0.06924473494291306,
+ "learning_rate": 0.0006,
+ "loss": 2.4995083808898926,
+ "step": 3188
+ },
+ {
+ "epoch": 44.29344978165939,
+ "grad_norm": 0.05837813764810562,
+ "learning_rate": 0.0006,
+ "loss": 2.5062248706817627,
+ "step": 3189
+ },
+ {
+ "epoch": 44.30742358078603,
+ "grad_norm": 0.058064766228199005,
+ "learning_rate": 0.0006,
+ "loss": 2.4953861236572266,
+ "step": 3190
+ },
+ {
+ "epoch": 44.32139737991266,
+ "grad_norm": 0.06594701111316681,
+ "learning_rate": 0.0006,
+ "loss": 2.5327587127685547,
+ "step": 3191
+ },
+ {
+ "epoch": 44.3353711790393,
+ "grad_norm": 0.06670266389846802,
+ "learning_rate": 0.0006,
+ "loss": 2.5376901626586914,
+ "step": 3192
+ },
+ {
+ "epoch": 44.34934497816594,
+ "grad_norm": 0.06714925169944763,
+ "learning_rate": 0.0006,
+ "loss": 2.5229666233062744,
+ "step": 3193
+ },
+ {
+ "epoch": 44.36331877729258,
+ "grad_norm": 0.06601539999246597,
+ "learning_rate": 0.0006,
+ "loss": 2.5745208263397217,
+ "step": 3194
+ },
+ {
+ "epoch": 44.377292576419215,
+ "grad_norm": 0.05972324684262276,
+ "learning_rate": 0.0006,
+ "loss": 2.5657095909118652,
+ "step": 3195
+ },
+ {
+ "epoch": 44.391266375545854,
+ "grad_norm": 0.05763658881187439,
+ "learning_rate": 0.0006,
+ "loss": 2.491349220275879,
+ "step": 3196
+ },
+ {
+ "epoch": 44.40524017467249,
+ "grad_norm": 0.058750350028276443,
+ "learning_rate": 0.0006,
+ "loss": 2.4997429847717285,
+ "step": 3197
+ },
+ {
+ "epoch": 44.419213973799124,
+ "grad_norm": 0.058132488280534744,
+ "learning_rate": 0.0006,
+ "loss": 2.548736095428467,
+ "step": 3198
+ },
+ {
+ "epoch": 44.43318777292576,
+ "grad_norm": 0.05674244835972786,
+ "learning_rate": 0.0006,
+ "loss": 2.5280601978302,
+ "step": 3199
+ },
+ {
+ "epoch": 44.4471615720524,
+ "grad_norm": 0.053632549941539764,
+ "learning_rate": 0.0006,
+ "loss": 2.553617000579834,
+ "step": 3200
+ },
+ {
+ "epoch": 44.46113537117904,
+ "grad_norm": 0.04617946594953537,
+ "learning_rate": 0.0006,
+ "loss": 2.5816709995269775,
+ "step": 3201
+ },
+ {
+ "epoch": 44.47510917030568,
+ "grad_norm": 0.043780263513326645,
+ "learning_rate": 0.0006,
+ "loss": 2.577531337738037,
+ "step": 3202
+ },
+ {
+ "epoch": 44.48908296943232,
+ "grad_norm": 0.04082828760147095,
+ "learning_rate": 0.0006,
+ "loss": 2.5517544746398926,
+ "step": 3203
+ },
+ {
+ "epoch": 44.50305676855895,
+ "grad_norm": 0.04695146158337593,
+ "learning_rate": 0.0006,
+ "loss": 2.619779586791992,
+ "step": 3204
+ },
+ {
+ "epoch": 44.51703056768559,
+ "grad_norm": 0.045555293560028076,
+ "learning_rate": 0.0006,
+ "loss": 2.587749719619751,
+ "step": 3205
+ },
+ {
+ "epoch": 44.531004366812226,
+ "grad_norm": 0.042370736598968506,
+ "learning_rate": 0.0006,
+ "loss": 2.5899648666381836,
+ "step": 3206
+ },
+ {
+ "epoch": 44.544978165938865,
+ "grad_norm": 0.041646722704172134,
+ "learning_rate": 0.0006,
+ "loss": 2.5843143463134766,
+ "step": 3207
+ },
+ {
+ "epoch": 44.5589519650655,
+ "grad_norm": 0.03952941298484802,
+ "learning_rate": 0.0006,
+ "loss": 2.581390380859375,
+ "step": 3208
+ },
+ {
+ "epoch": 44.57292576419214,
+ "grad_norm": 0.03865276649594307,
+ "learning_rate": 0.0006,
+ "loss": 2.5838258266448975,
+ "step": 3209
+ },
+ {
+ "epoch": 44.58689956331878,
+ "grad_norm": 0.03863168880343437,
+ "learning_rate": 0.0006,
+ "loss": 2.585869312286377,
+ "step": 3210
+ },
+ {
+ "epoch": 44.60087336244541,
+ "grad_norm": 0.03916747868061066,
+ "learning_rate": 0.0006,
+ "loss": 2.597865104675293,
+ "step": 3211
+ },
+ {
+ "epoch": 44.61484716157205,
+ "grad_norm": 0.03860041871666908,
+ "learning_rate": 0.0006,
+ "loss": 2.5577869415283203,
+ "step": 3212
+ },
+ {
+ "epoch": 44.62882096069869,
+ "grad_norm": 0.037900179624557495,
+ "learning_rate": 0.0006,
+ "loss": 2.580699920654297,
+ "step": 3213
+ },
+ {
+ "epoch": 44.64279475982533,
+ "grad_norm": 0.03962555155158043,
+ "learning_rate": 0.0006,
+ "loss": 2.636986255645752,
+ "step": 3214
+ },
+ {
+ "epoch": 44.65676855895197,
+ "grad_norm": 0.03885175287723541,
+ "learning_rate": 0.0006,
+ "loss": 2.6034324169158936,
+ "step": 3215
+ },
+ {
+ "epoch": 44.670742358078606,
+ "grad_norm": 0.03927305340766907,
+ "learning_rate": 0.0006,
+ "loss": 2.609377861022949,
+ "step": 3216
+ },
+ {
+ "epoch": 44.68471615720524,
+ "grad_norm": 0.03865079581737518,
+ "learning_rate": 0.0006,
+ "loss": 2.5959830284118652,
+ "step": 3217
+ },
+ {
+ "epoch": 44.698689956331876,
+ "grad_norm": 0.03827716037631035,
+ "learning_rate": 0.0006,
+ "loss": 2.628967761993408,
+ "step": 3218
+ },
+ {
+ "epoch": 44.712663755458514,
+ "grad_norm": 0.03955534100532532,
+ "learning_rate": 0.0006,
+ "loss": 2.5850605964660645,
+ "step": 3219
+ },
+ {
+ "epoch": 44.72663755458515,
+ "grad_norm": 0.038406338542699814,
+ "learning_rate": 0.0006,
+ "loss": 2.628791570663452,
+ "step": 3220
+ },
+ {
+ "epoch": 44.74061135371179,
+ "grad_norm": 0.03848153352737427,
+ "learning_rate": 0.0006,
+ "loss": 2.6288108825683594,
+ "step": 3221
+ },
+ {
+ "epoch": 44.75458515283843,
+ "grad_norm": 0.03772028908133507,
+ "learning_rate": 0.0006,
+ "loss": 2.609067916870117,
+ "step": 3222
+ },
+ {
+ "epoch": 44.76855895196506,
+ "grad_norm": 0.03625430539250374,
+ "learning_rate": 0.0006,
+ "loss": 2.635019540786743,
+ "step": 3223
+ },
+ {
+ "epoch": 44.7825327510917,
+ "grad_norm": 0.0383269302546978,
+ "learning_rate": 0.0006,
+ "loss": 2.6121182441711426,
+ "step": 3224
+ },
+ {
+ "epoch": 44.79650655021834,
+ "grad_norm": 0.03871947526931763,
+ "learning_rate": 0.0006,
+ "loss": 2.638749599456787,
+ "step": 3225
+ },
+ {
+ "epoch": 44.81048034934498,
+ "grad_norm": 0.03679358586668968,
+ "learning_rate": 0.0006,
+ "loss": 2.6222660541534424,
+ "step": 3226
+ },
+ {
+ "epoch": 44.82445414847162,
+ "grad_norm": 0.036158837378025055,
+ "learning_rate": 0.0006,
+ "loss": 2.631132125854492,
+ "step": 3227
+ },
+ {
+ "epoch": 44.838427947598255,
+ "grad_norm": 0.036070339381694794,
+ "learning_rate": 0.0006,
+ "loss": 2.6139631271362305,
+ "step": 3228
+ },
+ {
+ "epoch": 44.852401746724894,
+ "grad_norm": 0.03578571230173111,
+ "learning_rate": 0.0006,
+ "loss": 2.6763968467712402,
+ "step": 3229
+ },
+ {
+ "epoch": 44.866375545851525,
+ "grad_norm": 0.03629235550761223,
+ "learning_rate": 0.0006,
+ "loss": 2.610201358795166,
+ "step": 3230
+ },
+ {
+ "epoch": 44.880349344978164,
+ "grad_norm": 0.03521077707409859,
+ "learning_rate": 0.0006,
+ "loss": 2.617300271987915,
+ "step": 3231
+ },
+ {
+ "epoch": 44.8943231441048,
+ "grad_norm": 0.03449288755655289,
+ "learning_rate": 0.0006,
+ "loss": 2.6529922485351562,
+ "step": 3232
+ },
+ {
+ "epoch": 44.90829694323144,
+ "grad_norm": 0.034105561673641205,
+ "learning_rate": 0.0006,
+ "loss": 2.657431125640869,
+ "step": 3233
+ },
+ {
+ "epoch": 44.92227074235808,
+ "grad_norm": 0.035542141646146774,
+ "learning_rate": 0.0006,
+ "loss": 2.6559646129608154,
+ "step": 3234
+ },
+ {
+ "epoch": 44.93624454148472,
+ "grad_norm": 0.036316659301519394,
+ "learning_rate": 0.0006,
+ "loss": 2.617659568786621,
+ "step": 3235
+ },
+ {
+ "epoch": 44.95021834061135,
+ "grad_norm": 0.03466450423002243,
+ "learning_rate": 0.0006,
+ "loss": 2.625791072845459,
+ "step": 3236
+ },
+ {
+ "epoch": 44.96419213973799,
+ "grad_norm": 0.034643229097127914,
+ "learning_rate": 0.0006,
+ "loss": 2.617854595184326,
+ "step": 3237
+ },
+ {
+ "epoch": 44.97816593886463,
+ "grad_norm": 0.036251697689294815,
+ "learning_rate": 0.0006,
+ "loss": 2.617257833480835,
+ "step": 3238
+ },
+ {
+ "epoch": 44.992139737991266,
+ "grad_norm": 0.035136230289936066,
+ "learning_rate": 0.0006,
+ "loss": 2.675013542175293,
+ "step": 3239
+ },
+ {
+ "epoch": 45.0,
+ "grad_norm": 0.04073465242981911,
+ "learning_rate": 0.0006,
+ "loss": 2.6605868339538574,
+ "step": 3240
+ },
+ {
+ "epoch": 45.0,
+ "eval_loss": 4.614309787750244,
+ "eval_runtime": 49.7833,
+ "eval_samples_per_second": 49.053,
+ "eval_steps_per_second": 1.547,
+ "step": 3240
+ },
+ {
+ "epoch": 45.01397379912664,
+ "grad_norm": 0.03985455259680748,
+ "learning_rate": 0.0006,
+ "loss": 2.3865480422973633,
+ "step": 3241
+ },
+ {
+ "epoch": 45.02794759825328,
+ "grad_norm": 0.051160749047994614,
+ "learning_rate": 0.0006,
+ "loss": 2.3812155723571777,
+ "step": 3242
+ },
+ {
+ "epoch": 45.041921397379916,
+ "grad_norm": 0.05799068138003349,
+ "learning_rate": 0.0006,
+ "loss": 2.4088215827941895,
+ "step": 3243
+ },
+ {
+ "epoch": 45.05589519650655,
+ "grad_norm": 0.059267375618219376,
+ "learning_rate": 0.0006,
+ "loss": 2.400707244873047,
+ "step": 3244
+ },
+ {
+ "epoch": 45.069868995633186,
+ "grad_norm": 0.05862610414624214,
+ "learning_rate": 0.0006,
+ "loss": 2.3950424194335938,
+ "step": 3245
+ },
+ {
+ "epoch": 45.083842794759825,
+ "grad_norm": 0.061421699821949005,
+ "learning_rate": 0.0006,
+ "loss": 2.3738255500793457,
+ "step": 3246
+ },
+ {
+ "epoch": 45.09781659388646,
+ "grad_norm": 0.06503652036190033,
+ "learning_rate": 0.0006,
+ "loss": 2.4018592834472656,
+ "step": 3247
+ },
+ {
+ "epoch": 45.1117903930131,
+ "grad_norm": 0.0690276026725769,
+ "learning_rate": 0.0006,
+ "loss": 2.4004409313201904,
+ "step": 3248
+ },
+ {
+ "epoch": 45.12576419213974,
+ "grad_norm": 0.0700206533074379,
+ "learning_rate": 0.0006,
+ "loss": 2.40523624420166,
+ "step": 3249
+ },
+ {
+ "epoch": 45.13973799126637,
+ "grad_norm": 0.07173328101634979,
+ "learning_rate": 0.0006,
+ "loss": 2.446235179901123,
+ "step": 3250
+ },
+ {
+ "epoch": 45.15371179039301,
+ "grad_norm": 0.07208269089460373,
+ "learning_rate": 0.0006,
+ "loss": 2.4281702041625977,
+ "step": 3251
+ },
+ {
+ "epoch": 45.16768558951965,
+ "grad_norm": 0.07383651286363602,
+ "learning_rate": 0.0006,
+ "loss": 2.4433517456054688,
+ "step": 3252
+ },
+ {
+ "epoch": 45.18165938864629,
+ "grad_norm": 0.0799521878361702,
+ "learning_rate": 0.0006,
+ "loss": 2.440265417098999,
+ "step": 3253
+ },
+ {
+ "epoch": 45.19563318777293,
+ "grad_norm": 0.0850508064031601,
+ "learning_rate": 0.0006,
+ "loss": 2.4895005226135254,
+ "step": 3254
+ },
+ {
+ "epoch": 45.209606986899566,
+ "grad_norm": 0.08394865691661835,
+ "learning_rate": 0.0006,
+ "loss": 2.511241912841797,
+ "step": 3255
+ },
+ {
+ "epoch": 45.223580786026204,
+ "grad_norm": 0.07942540943622589,
+ "learning_rate": 0.0006,
+ "loss": 2.5229930877685547,
+ "step": 3256
+ },
+ {
+ "epoch": 45.237554585152836,
+ "grad_norm": 0.07540111988782883,
+ "learning_rate": 0.0006,
+ "loss": 2.473567485809326,
+ "step": 3257
+ },
+ {
+ "epoch": 45.251528384279474,
+ "grad_norm": 0.08531512320041656,
+ "learning_rate": 0.0006,
+ "loss": 2.4645495414733887,
+ "step": 3258
+ },
+ {
+ "epoch": 45.26550218340611,
+ "grad_norm": 0.08874223381280899,
+ "learning_rate": 0.0006,
+ "loss": 2.5185866355895996,
+ "step": 3259
+ },
+ {
+ "epoch": 45.27947598253275,
+ "grad_norm": 0.08481086790561676,
+ "learning_rate": 0.0006,
+ "loss": 2.5101475715637207,
+ "step": 3260
+ },
+ {
+ "epoch": 45.29344978165939,
+ "grad_norm": 0.0805342048406601,
+ "learning_rate": 0.0006,
+ "loss": 2.5579781532287598,
+ "step": 3261
+ },
+ {
+ "epoch": 45.30742358078603,
+ "grad_norm": 0.0763886570930481,
+ "learning_rate": 0.0006,
+ "loss": 2.516608715057373,
+ "step": 3262
+ },
+ {
+ "epoch": 45.32139737991266,
+ "grad_norm": 0.07845117896795273,
+ "learning_rate": 0.0006,
+ "loss": 2.543731212615967,
+ "step": 3263
+ },
+ {
+ "epoch": 45.3353711790393,
+ "grad_norm": 0.07602215558290482,
+ "learning_rate": 0.0006,
+ "loss": 2.5423316955566406,
+ "step": 3264
+ },
+ {
+ "epoch": 45.34934497816594,
+ "grad_norm": 0.07077326625585556,
+ "learning_rate": 0.0006,
+ "loss": 2.5555238723754883,
+ "step": 3265
+ },
+ {
+ "epoch": 45.36331877729258,
+ "grad_norm": 0.06848862767219543,
+ "learning_rate": 0.0006,
+ "loss": 2.5632004737854004,
+ "step": 3266
+ },
+ {
+ "epoch": 45.377292576419215,
+ "grad_norm": 0.06643538922071457,
+ "learning_rate": 0.0006,
+ "loss": 2.5745129585266113,
+ "step": 3267
+ },
+ {
+ "epoch": 45.391266375545854,
+ "grad_norm": 0.0647028237581253,
+ "learning_rate": 0.0006,
+ "loss": 2.533900737762451,
+ "step": 3268
+ },
+ {
+ "epoch": 45.40524017467249,
+ "grad_norm": 0.06397970765829086,
+ "learning_rate": 0.0006,
+ "loss": 2.528153896331787,
+ "step": 3269
+ },
+ {
+ "epoch": 45.419213973799124,
+ "grad_norm": 0.05750779062509537,
+ "learning_rate": 0.0006,
+ "loss": 2.5324106216430664,
+ "step": 3270
+ },
+ {
+ "epoch": 45.43318777292576,
+ "grad_norm": 0.05236313119530678,
+ "learning_rate": 0.0006,
+ "loss": 2.536961078643799,
+ "step": 3271
+ },
+ {
+ "epoch": 45.4471615720524,
+ "grad_norm": 0.05163221433758736,
+ "learning_rate": 0.0006,
+ "loss": 2.5597963333129883,
+ "step": 3272
+ },
+ {
+ "epoch": 45.46113537117904,
+ "grad_norm": 0.04967135190963745,
+ "learning_rate": 0.0006,
+ "loss": 2.580857753753662,
+ "step": 3273
+ },
+ {
+ "epoch": 45.47510917030568,
+ "grad_norm": 0.047002311795949936,
+ "learning_rate": 0.0006,
+ "loss": 2.5562744140625,
+ "step": 3274
+ },
+ {
+ "epoch": 45.48908296943232,
+ "grad_norm": 0.04272281005978584,
+ "learning_rate": 0.0006,
+ "loss": 2.5451338291168213,
+ "step": 3275
+ },
+ {
+ "epoch": 45.50305676855895,
+ "grad_norm": 0.04319772496819496,
+ "learning_rate": 0.0006,
+ "loss": 2.5503790378570557,
+ "step": 3276
+ },
+ {
+ "epoch": 45.51703056768559,
+ "grad_norm": 0.04304161295294762,
+ "learning_rate": 0.0006,
+ "loss": 2.595141649246216,
+ "step": 3277
+ },
+ {
+ "epoch": 45.531004366812226,
+ "grad_norm": 0.04255359247326851,
+ "learning_rate": 0.0006,
+ "loss": 2.5752673149108887,
+ "step": 3278
+ },
+ {
+ "epoch": 45.544978165938865,
+ "grad_norm": 0.045070186257362366,
+ "learning_rate": 0.0006,
+ "loss": 2.5611419677734375,
+ "step": 3279
+ },
+ {
+ "epoch": 45.5589519650655,
+ "grad_norm": 0.04312760755419731,
+ "learning_rate": 0.0006,
+ "loss": 2.5938148498535156,
+ "step": 3280
+ },
+ {
+ "epoch": 45.57292576419214,
+ "grad_norm": 0.04051559790968895,
+ "learning_rate": 0.0006,
+ "loss": 2.5709280967712402,
+ "step": 3281
+ },
+ {
+ "epoch": 45.58689956331878,
+ "grad_norm": 0.04350715130567551,
+ "learning_rate": 0.0006,
+ "loss": 2.561767339706421,
+ "step": 3282
+ },
+ {
+ "epoch": 45.60087336244541,
+ "grad_norm": 0.04092525690793991,
+ "learning_rate": 0.0006,
+ "loss": 2.584102153778076,
+ "step": 3283
+ },
+ {
+ "epoch": 45.61484716157205,
+ "grad_norm": 0.037548284977674484,
+ "learning_rate": 0.0006,
+ "loss": 2.5989112854003906,
+ "step": 3284
+ },
+ {
+ "epoch": 45.62882096069869,
+ "grad_norm": 0.03848148137331009,
+ "learning_rate": 0.0006,
+ "loss": 2.5750484466552734,
+ "step": 3285
+ },
+ {
+ "epoch": 45.64279475982533,
+ "grad_norm": 0.04000328481197357,
+ "learning_rate": 0.0006,
+ "loss": 2.5580906867980957,
+ "step": 3286
+ },
+ {
+ "epoch": 45.65676855895197,
+ "grad_norm": 0.041443999856710434,
+ "learning_rate": 0.0006,
+ "loss": 2.5706706047058105,
+ "step": 3287
+ },
+ {
+ "epoch": 45.670742358078606,
+ "grad_norm": 0.041288670152425766,
+ "learning_rate": 0.0006,
+ "loss": 2.6007578372955322,
+ "step": 3288
+ },
+ {
+ "epoch": 45.68471615720524,
+ "grad_norm": 0.03893401846289635,
+ "learning_rate": 0.0006,
+ "loss": 2.6000924110412598,
+ "step": 3289
+ },
+ {
+ "epoch": 45.698689956331876,
+ "grad_norm": 0.03771728277206421,
+ "learning_rate": 0.0006,
+ "loss": 2.605865478515625,
+ "step": 3290
+ },
+ {
+ "epoch": 45.712663755458514,
+ "grad_norm": 0.03866644576191902,
+ "learning_rate": 0.0006,
+ "loss": 2.6287505626678467,
+ "step": 3291
+ },
+ {
+ "epoch": 45.72663755458515,
+ "grad_norm": 0.03892580047249794,
+ "learning_rate": 0.0006,
+ "loss": 2.588181495666504,
+ "step": 3292
+ },
+ {
+ "epoch": 45.74061135371179,
+ "grad_norm": 0.03869016468524933,
+ "learning_rate": 0.0006,
+ "loss": 2.6020495891571045,
+ "step": 3293
+ },
+ {
+ "epoch": 45.75458515283843,
+ "grad_norm": 0.03790878504514694,
+ "learning_rate": 0.0006,
+ "loss": 2.6068239212036133,
+ "step": 3294
+ },
+ {
+ "epoch": 45.76855895196506,
+ "grad_norm": 0.03818525746464729,
+ "learning_rate": 0.0006,
+ "loss": 2.5602381229400635,
+ "step": 3295
+ },
+ {
+ "epoch": 45.7825327510917,
+ "grad_norm": 0.03760632872581482,
+ "learning_rate": 0.0006,
+ "loss": 2.610762119293213,
+ "step": 3296
+ },
+ {
+ "epoch": 45.79650655021834,
+ "grad_norm": 0.035452380776405334,
+ "learning_rate": 0.0006,
+ "loss": 2.5914411544799805,
+ "step": 3297
+ },
+ {
+ "epoch": 45.81048034934498,
+ "grad_norm": 0.03658442571759224,
+ "learning_rate": 0.0006,
+ "loss": 2.6195242404937744,
+ "step": 3298
+ },
+ {
+ "epoch": 45.82445414847162,
+ "grad_norm": 0.036995094269514084,
+ "learning_rate": 0.0006,
+ "loss": 2.624915838241577,
+ "step": 3299
+ },
+ {
+ "epoch": 45.838427947598255,
+ "grad_norm": 0.03662903979420662,
+ "learning_rate": 0.0006,
+ "loss": 2.590386390686035,
+ "step": 3300
+ },
+ {
+ "epoch": 45.852401746724894,
+ "grad_norm": 0.03610498085618019,
+ "learning_rate": 0.0006,
+ "loss": 2.617732048034668,
+ "step": 3301
+ },
+ {
+ "epoch": 45.866375545851525,
+ "grad_norm": 0.03720598295331001,
+ "learning_rate": 0.0006,
+ "loss": 2.63226318359375,
+ "step": 3302
+ },
+ {
+ "epoch": 45.880349344978164,
+ "grad_norm": 0.03502688184380531,
+ "learning_rate": 0.0006,
+ "loss": 2.6014404296875,
+ "step": 3303
+ },
+ {
+ "epoch": 45.8943231441048,
+ "grad_norm": 0.03697624430060387,
+ "learning_rate": 0.0006,
+ "loss": 2.6777687072753906,
+ "step": 3304
+ },
+ {
+ "epoch": 45.90829694323144,
+ "grad_norm": 0.03777073696255684,
+ "learning_rate": 0.0006,
+ "loss": 2.605827808380127,
+ "step": 3305
+ },
+ {
+ "epoch": 45.92227074235808,
+ "grad_norm": 0.03591890633106232,
+ "learning_rate": 0.0006,
+ "loss": 2.6305527687072754,
+ "step": 3306
+ },
+ {
+ "epoch": 45.93624454148472,
+ "grad_norm": 0.03455253317952156,
+ "learning_rate": 0.0006,
+ "loss": 2.6070218086242676,
+ "step": 3307
+ },
+ {
+ "epoch": 45.95021834061135,
+ "grad_norm": 0.035626377910375595,
+ "learning_rate": 0.0006,
+ "loss": 2.6058530807495117,
+ "step": 3308
+ },
+ {
+ "epoch": 45.96419213973799,
+ "grad_norm": 0.036215439438819885,
+ "learning_rate": 0.0006,
+ "loss": 2.681748867034912,
+ "step": 3309
+ },
+ {
+ "epoch": 45.97816593886463,
+ "grad_norm": 0.03568284586071968,
+ "learning_rate": 0.0006,
+ "loss": 2.6220178604125977,
+ "step": 3310
+ },
+ {
+ "epoch": 45.992139737991266,
+ "grad_norm": 0.03440044820308685,
+ "learning_rate": 0.0006,
+ "loss": 2.6253161430358887,
+ "step": 3311
+ },
+ {
+ "epoch": 46.0,
+ "grad_norm": 0.04038034379482269,
+ "learning_rate": 0.0006,
+ "loss": 2.6338181495666504,
+ "step": 3312
+ },
+ {
+ "epoch": 46.0,
+ "eval_loss": 4.640748023986816,
+ "eval_runtime": 50.2766,
+ "eval_samples_per_second": 48.571,
+ "eval_steps_per_second": 1.532,
+ "step": 3312
+ },
+ {
+ "epoch": 46.01397379912664,
+ "grad_norm": 0.04147067293524742,
+ "learning_rate": 0.0006,
+ "loss": 2.3445096015930176,
+ "step": 3313
+ },
+ {
+ "epoch": 46.02794759825328,
+ "grad_norm": 0.052792396396398544,
+ "learning_rate": 0.0006,
+ "loss": 2.3865180015563965,
+ "step": 3314
+ },
+ {
+ "epoch": 46.041921397379916,
+ "grad_norm": 0.05979691818356514,
+ "learning_rate": 0.0006,
+ "loss": 2.358114242553711,
+ "step": 3315
+ },
+ {
+ "epoch": 46.05589519650655,
+ "grad_norm": 0.06617704033851624,
+ "learning_rate": 0.0006,
+ "loss": 2.3838281631469727,
+ "step": 3316
+ },
+ {
+ "epoch": 46.069868995633186,
+ "grad_norm": 0.06662881374359131,
+ "learning_rate": 0.0006,
+ "loss": 2.3968448638916016,
+ "step": 3317
+ },
+ {
+ "epoch": 46.083842794759825,
+ "grad_norm": 0.06502354890108109,
+ "learning_rate": 0.0006,
+ "loss": 2.40556001663208,
+ "step": 3318
+ },
+ {
+ "epoch": 46.09781659388646,
+ "grad_norm": 0.06550145149230957,
+ "learning_rate": 0.0006,
+ "loss": 2.392965793609619,
+ "step": 3319
+ },
+ {
+ "epoch": 46.1117903930131,
+ "grad_norm": 0.06693404912948608,
+ "learning_rate": 0.0006,
+ "loss": 2.3891148567199707,
+ "step": 3320
+ },
+ {
+ "epoch": 46.12576419213974,
+ "grad_norm": 0.06658047437667847,
+ "learning_rate": 0.0006,
+ "loss": 2.359720230102539,
+ "step": 3321
+ },
+ {
+ "epoch": 46.13973799126637,
+ "grad_norm": 0.06882144510746002,
+ "learning_rate": 0.0006,
+ "loss": 2.434069871902466,
+ "step": 3322
+ },
+ {
+ "epoch": 46.15371179039301,
+ "grad_norm": 0.07443241029977798,
+ "learning_rate": 0.0006,
+ "loss": 2.4304895401000977,
+ "step": 3323
+ },
+ {
+ "epoch": 46.16768558951965,
+ "grad_norm": 0.0776788592338562,
+ "learning_rate": 0.0006,
+ "loss": 2.4156157970428467,
+ "step": 3324
+ },
+ {
+ "epoch": 46.18165938864629,
+ "grad_norm": 0.07954694330692291,
+ "learning_rate": 0.0006,
+ "loss": 2.417397975921631,
+ "step": 3325
+ },
+ {
+ "epoch": 46.19563318777293,
+ "grad_norm": 0.08293487876653671,
+ "learning_rate": 0.0006,
+ "loss": 2.429408073425293,
+ "step": 3326
+ },
+ {
+ "epoch": 46.209606986899566,
+ "grad_norm": 0.0763302743434906,
+ "learning_rate": 0.0006,
+ "loss": 2.445566177368164,
+ "step": 3327
+ },
+ {
+ "epoch": 46.223580786026204,
+ "grad_norm": 0.07126040011644363,
+ "learning_rate": 0.0006,
+ "loss": 2.461667060852051,
+ "step": 3328
+ },
+ {
+ "epoch": 46.237554585152836,
+ "grad_norm": 0.06832936406135559,
+ "learning_rate": 0.0006,
+ "loss": 2.446214437484741,
+ "step": 3329
+ },
+ {
+ "epoch": 46.251528384279474,
+ "grad_norm": 0.07051345705986023,
+ "learning_rate": 0.0006,
+ "loss": 2.4561588764190674,
+ "step": 3330
+ },
+ {
+ "epoch": 46.26550218340611,
+ "grad_norm": 0.07150062918663025,
+ "learning_rate": 0.0006,
+ "loss": 2.4346251487731934,
+ "step": 3331
+ },
+ {
+ "epoch": 46.27947598253275,
+ "grad_norm": 0.06901846081018448,
+ "learning_rate": 0.0006,
+ "loss": 2.4664063453674316,
+ "step": 3332
+ },
+ {
+ "epoch": 46.29344978165939,
+ "grad_norm": 0.06464888900518417,
+ "learning_rate": 0.0006,
+ "loss": 2.479429244995117,
+ "step": 3333
+ },
+ {
+ "epoch": 46.30742358078603,
+ "grad_norm": 0.0631357952952385,
+ "learning_rate": 0.0006,
+ "loss": 2.456766128540039,
+ "step": 3334
+ },
+ {
+ "epoch": 46.32139737991266,
+ "grad_norm": 0.05555475503206253,
+ "learning_rate": 0.0006,
+ "loss": 2.4952847957611084,
+ "step": 3335
+ },
+ {
+ "epoch": 46.3353711790393,
+ "grad_norm": 0.05767923593521118,
+ "learning_rate": 0.0006,
+ "loss": 2.4611704349517822,
+ "step": 3336
+ },
+ {
+ "epoch": 46.34934497816594,
+ "grad_norm": 0.05727697163820267,
+ "learning_rate": 0.0006,
+ "loss": 2.5054702758789062,
+ "step": 3337
+ },
+ {
+ "epoch": 46.36331877729258,
+ "grad_norm": 0.054666321724653244,
+ "learning_rate": 0.0006,
+ "loss": 2.5072391033172607,
+ "step": 3338
+ },
+ {
+ "epoch": 46.377292576419215,
+ "grad_norm": 0.052699945867061615,
+ "learning_rate": 0.0006,
+ "loss": 2.505368232727051,
+ "step": 3339
+ },
+ {
+ "epoch": 46.391266375545854,
+ "grad_norm": 0.050418730825185776,
+ "learning_rate": 0.0006,
+ "loss": 2.5196220874786377,
+ "step": 3340
+ },
+ {
+ "epoch": 46.40524017467249,
+ "grad_norm": 0.05074869468808174,
+ "learning_rate": 0.0006,
+ "loss": 2.5125131607055664,
+ "step": 3341
+ },
+ {
+ "epoch": 46.419213973799124,
+ "grad_norm": 0.05151717737317085,
+ "learning_rate": 0.0006,
+ "loss": 2.496579647064209,
+ "step": 3342
+ },
+ {
+ "epoch": 46.43318777292576,
+ "grad_norm": 0.052027735859155655,
+ "learning_rate": 0.0006,
+ "loss": 2.5162501335144043,
+ "step": 3343
+ },
+ {
+ "epoch": 46.4471615720524,
+ "grad_norm": 0.048393700271844864,
+ "learning_rate": 0.0006,
+ "loss": 2.4796924591064453,
+ "step": 3344
+ },
+ {
+ "epoch": 46.46113537117904,
+ "grad_norm": 0.04557279869914055,
+ "learning_rate": 0.0006,
+ "loss": 2.51417875289917,
+ "step": 3345
+ },
+ {
+ "epoch": 46.47510917030568,
+ "grad_norm": 0.04405274987220764,
+ "learning_rate": 0.0006,
+ "loss": 2.5236806869506836,
+ "step": 3346
+ },
+ {
+ "epoch": 46.48908296943232,
+ "grad_norm": 0.040621064603328705,
+ "learning_rate": 0.0006,
+ "loss": 2.5376524925231934,
+ "step": 3347
+ },
+ {
+ "epoch": 46.50305676855895,
+ "grad_norm": 0.042281948029994965,
+ "learning_rate": 0.0006,
+ "loss": 2.519482135772705,
+ "step": 3348
+ },
+ {
+ "epoch": 46.51703056768559,
+ "grad_norm": 0.04140289127826691,
+ "learning_rate": 0.0006,
+ "loss": 2.532949686050415,
+ "step": 3349
+ },
+ {
+ "epoch": 46.531004366812226,
+ "grad_norm": 0.041364945471286774,
+ "learning_rate": 0.0006,
+ "loss": 2.53959321975708,
+ "step": 3350
+ },
+ {
+ "epoch": 46.544978165938865,
+ "grad_norm": 0.03883061558008194,
+ "learning_rate": 0.0006,
+ "loss": 2.5145130157470703,
+ "step": 3351
+ },
+ {
+ "epoch": 46.5589519650655,
+ "grad_norm": 0.039643533527851105,
+ "learning_rate": 0.0006,
+ "loss": 2.5579514503479004,
+ "step": 3352
+ },
+ {
+ "epoch": 46.57292576419214,
+ "grad_norm": 0.0404350571334362,
+ "learning_rate": 0.0006,
+ "loss": 2.5273094177246094,
+ "step": 3353
+ },
+ {
+ "epoch": 46.58689956331878,
+ "grad_norm": 0.04078465327620506,
+ "learning_rate": 0.0006,
+ "loss": 2.5634474754333496,
+ "step": 3354
+ },
+ {
+ "epoch": 46.60087336244541,
+ "grad_norm": 0.03884636610746384,
+ "learning_rate": 0.0006,
+ "loss": 2.570194959640503,
+ "step": 3355
+ },
+ {
+ "epoch": 46.61484716157205,
+ "grad_norm": 0.03865162655711174,
+ "learning_rate": 0.0006,
+ "loss": 2.537311553955078,
+ "step": 3356
+ },
+ {
+ "epoch": 46.62882096069869,
+ "grad_norm": 0.03973640128970146,
+ "learning_rate": 0.0006,
+ "loss": 2.550292491912842,
+ "step": 3357
+ },
+ {
+ "epoch": 46.64279475982533,
+ "grad_norm": 0.038686949759721756,
+ "learning_rate": 0.0006,
+ "loss": 2.5503194332122803,
+ "step": 3358
+ },
+ {
+ "epoch": 46.65676855895197,
+ "grad_norm": 0.03880996257066727,
+ "learning_rate": 0.0006,
+ "loss": 2.5824084281921387,
+ "step": 3359
+ },
+ {
+ "epoch": 46.670742358078606,
+ "grad_norm": 0.03958257660269737,
+ "learning_rate": 0.0006,
+ "loss": 2.5469751358032227,
+ "step": 3360
+ },
+ {
+ "epoch": 46.68471615720524,
+ "grad_norm": 0.038118112832307816,
+ "learning_rate": 0.0006,
+ "loss": 2.5517940521240234,
+ "step": 3361
+ },
+ {
+ "epoch": 46.698689956331876,
+ "grad_norm": 0.035595912486314774,
+ "learning_rate": 0.0006,
+ "loss": 2.5737037658691406,
+ "step": 3362
+ },
+ {
+ "epoch": 46.712663755458514,
+ "grad_norm": 0.03834931552410126,
+ "learning_rate": 0.0006,
+ "loss": 2.6038551330566406,
+ "step": 3363
+ },
+ {
+ "epoch": 46.72663755458515,
+ "grad_norm": 0.03874420002102852,
+ "learning_rate": 0.0006,
+ "loss": 2.5862350463867188,
+ "step": 3364
+ },
+ {
+ "epoch": 46.74061135371179,
+ "grad_norm": 0.03871268406510353,
+ "learning_rate": 0.0006,
+ "loss": 2.609065532684326,
+ "step": 3365
+ },
+ {
+ "epoch": 46.75458515283843,
+ "grad_norm": 0.0362783782184124,
+ "learning_rate": 0.0006,
+ "loss": 2.593834400177002,
+ "step": 3366
+ },
+ {
+ "epoch": 46.76855895196506,
+ "grad_norm": 0.03616306185722351,
+ "learning_rate": 0.0006,
+ "loss": 2.567072629928589,
+ "step": 3367
+ },
+ {
+ "epoch": 46.7825327510917,
+ "grad_norm": 0.03904185816645622,
+ "learning_rate": 0.0006,
+ "loss": 2.5921647548675537,
+ "step": 3368
+ },
+ {
+ "epoch": 46.79650655021834,
+ "grad_norm": 0.03759470582008362,
+ "learning_rate": 0.0006,
+ "loss": 2.569577932357788,
+ "step": 3369
+ },
+ {
+ "epoch": 46.81048034934498,
+ "grad_norm": 0.03696165606379509,
+ "learning_rate": 0.0006,
+ "loss": 2.5933995246887207,
+ "step": 3370
+ },
+ {
+ "epoch": 46.82445414847162,
+ "grad_norm": 0.03638516739010811,
+ "learning_rate": 0.0006,
+ "loss": 2.5925240516662598,
+ "step": 3371
+ },
+ {
+ "epoch": 46.838427947598255,
+ "grad_norm": 0.03527964651584625,
+ "learning_rate": 0.0006,
+ "loss": 2.5907974243164062,
+ "step": 3372
+ },
+ {
+ "epoch": 46.852401746724894,
+ "grad_norm": 0.036516234278678894,
+ "learning_rate": 0.0006,
+ "loss": 2.574549436569214,
+ "step": 3373
+ },
+ {
+ "epoch": 46.866375545851525,
+ "grad_norm": 0.03817344829440117,
+ "learning_rate": 0.0006,
+ "loss": 2.5897974967956543,
+ "step": 3374
+ },
+ {
+ "epoch": 46.880349344978164,
+ "grad_norm": 0.037899427115917206,
+ "learning_rate": 0.0006,
+ "loss": 2.6116461753845215,
+ "step": 3375
+ },
+ {
+ "epoch": 46.8943231441048,
+ "grad_norm": 0.03626516833901405,
+ "learning_rate": 0.0006,
+ "loss": 2.6056902408599854,
+ "step": 3376
+ },
+ {
+ "epoch": 46.90829694323144,
+ "grad_norm": 0.03573780134320259,
+ "learning_rate": 0.0006,
+ "loss": 2.6059036254882812,
+ "step": 3377
+ },
+ {
+ "epoch": 46.92227074235808,
+ "grad_norm": 0.036475539207458496,
+ "learning_rate": 0.0006,
+ "loss": 2.6253769397735596,
+ "step": 3378
+ },
+ {
+ "epoch": 46.93624454148472,
+ "grad_norm": 0.03734806180000305,
+ "learning_rate": 0.0006,
+ "loss": 2.605661392211914,
+ "step": 3379
+ },
+ {
+ "epoch": 46.95021834061135,
+ "grad_norm": 0.038149505853652954,
+ "learning_rate": 0.0006,
+ "loss": 2.6486663818359375,
+ "step": 3380
+ },
+ {
+ "epoch": 46.96419213973799,
+ "grad_norm": 0.03873435780405998,
+ "learning_rate": 0.0006,
+ "loss": 2.659419536590576,
+ "step": 3381
+ },
+ {
+ "epoch": 46.97816593886463,
+ "grad_norm": 0.03887328505516052,
+ "learning_rate": 0.0006,
+ "loss": 2.601287841796875,
+ "step": 3382
+ },
+ {
+ "epoch": 46.992139737991266,
+ "grad_norm": 0.03900836408138275,
+ "learning_rate": 0.0006,
+ "loss": 2.6525306701660156,
+ "step": 3383
+ },
+ {
+ "epoch": 47.0,
+ "grad_norm": 0.042609862983226776,
+ "learning_rate": 0.0006,
+ "loss": 2.6331865787506104,
+ "step": 3384
+ },
+ {
+ "epoch": 47.0,
+ "eval_loss": 4.655383586883545,
+ "eval_runtime": 49.9843,
+ "eval_samples_per_second": 48.855,
+ "eval_steps_per_second": 1.54,
+ "step": 3384
+ },
+ {
+ "epoch": 47.01397379912664,
+ "grad_norm": 0.04098411649465561,
+ "learning_rate": 0.0006,
+ "loss": 2.3346266746520996,
+ "step": 3385
+ },
+ {
+ "epoch": 47.02794759825328,
+ "grad_norm": 0.055370185524225235,
+ "learning_rate": 0.0006,
+ "loss": 2.3474984169006348,
+ "step": 3386
+ },
+ {
+ "epoch": 47.041921397379916,
+ "grad_norm": 0.058740388602018356,
+ "learning_rate": 0.0006,
+ "loss": 2.3569555282592773,
+ "step": 3387
+ },
+ {
+ "epoch": 47.05589519650655,
+ "grad_norm": 0.062202394008636475,
+ "learning_rate": 0.0006,
+ "loss": 2.358663558959961,
+ "step": 3388
+ },
+ {
+ "epoch": 47.069868995633186,
+ "grad_norm": 0.06391934305429459,
+ "learning_rate": 0.0006,
+ "loss": 2.3860864639282227,
+ "step": 3389
+ },
+ {
+ "epoch": 47.083842794759825,
+ "grad_norm": 0.06732827425003052,
+ "learning_rate": 0.0006,
+ "loss": 2.3758063316345215,
+ "step": 3390
+ },
+ {
+ "epoch": 47.09781659388646,
+ "grad_norm": 0.0720440074801445,
+ "learning_rate": 0.0006,
+ "loss": 2.390413284301758,
+ "step": 3391
+ },
+ {
+ "epoch": 47.1117903930131,
+ "grad_norm": 0.07364333420991898,
+ "learning_rate": 0.0006,
+ "loss": 2.377763032913208,
+ "step": 3392
+ },
+ {
+ "epoch": 47.12576419213974,
+ "grad_norm": 0.07458307594060898,
+ "learning_rate": 0.0006,
+ "loss": 2.3758955001831055,
+ "step": 3393
+ },
+ {
+ "epoch": 47.13973799126637,
+ "grad_norm": 0.0745002031326294,
+ "learning_rate": 0.0006,
+ "loss": 2.4070072174072266,
+ "step": 3394
+ },
+ {
+ "epoch": 47.15371179039301,
+ "grad_norm": 0.0790550708770752,
+ "learning_rate": 0.0006,
+ "loss": 2.4260056018829346,
+ "step": 3395
+ },
+ {
+ "epoch": 47.16768558951965,
+ "grad_norm": 0.08600666373968124,
+ "learning_rate": 0.0006,
+ "loss": 2.411674976348877,
+ "step": 3396
+ },
+ {
+ "epoch": 47.18165938864629,
+ "grad_norm": 0.08657384663820267,
+ "learning_rate": 0.0006,
+ "loss": 2.4424896240234375,
+ "step": 3397
+ },
+ {
+ "epoch": 47.19563318777293,
+ "grad_norm": 0.08670444041490555,
+ "learning_rate": 0.0006,
+ "loss": 2.4260334968566895,
+ "step": 3398
+ },
+ {
+ "epoch": 47.209606986899566,
+ "grad_norm": 0.09198155999183655,
+ "learning_rate": 0.0006,
+ "loss": 2.434703826904297,
+ "step": 3399
+ },
+ {
+ "epoch": 47.223580786026204,
+ "grad_norm": 0.09385871887207031,
+ "learning_rate": 0.0006,
+ "loss": 2.4615845680236816,
+ "step": 3400
+ },
+ {
+ "epoch": 47.237554585152836,
+ "grad_norm": 0.09133771806955338,
+ "learning_rate": 0.0006,
+ "loss": 2.483883857727051,
+ "step": 3401
+ },
+ {
+ "epoch": 47.251528384279474,
+ "grad_norm": 0.08325739204883575,
+ "learning_rate": 0.0006,
+ "loss": 2.478515148162842,
+ "step": 3402
+ },
+ {
+ "epoch": 47.26550218340611,
+ "grad_norm": 0.07875145226716995,
+ "learning_rate": 0.0006,
+ "loss": 2.464359760284424,
+ "step": 3403
+ },
+ {
+ "epoch": 47.27947598253275,
+ "grad_norm": 0.07889431715011597,
+ "learning_rate": 0.0006,
+ "loss": 2.4470272064208984,
+ "step": 3404
+ },
+ {
+ "epoch": 47.29344978165939,
+ "grad_norm": 0.0791180357336998,
+ "learning_rate": 0.0006,
+ "loss": 2.481464385986328,
+ "step": 3405
+ },
+ {
+ "epoch": 47.30742358078603,
+ "grad_norm": 0.07258966565132141,
+ "learning_rate": 0.0006,
+ "loss": 2.4701497554779053,
+ "step": 3406
+ },
+ {
+ "epoch": 47.32139737991266,
+ "grad_norm": 0.06553063541650772,
+ "learning_rate": 0.0006,
+ "loss": 2.4714996814727783,
+ "step": 3407
+ },
+ {
+ "epoch": 47.3353711790393,
+ "grad_norm": 0.06434239447116852,
+ "learning_rate": 0.0006,
+ "loss": 2.460735559463501,
+ "step": 3408
+ },
+ {
+ "epoch": 47.34934497816594,
+ "grad_norm": 0.06813770532608032,
+ "learning_rate": 0.0006,
+ "loss": 2.5106520652770996,
+ "step": 3409
+ },
+ {
+ "epoch": 47.36331877729258,
+ "grad_norm": 0.0652446299791336,
+ "learning_rate": 0.0006,
+ "loss": 2.4732515811920166,
+ "step": 3410
+ },
+ {
+ "epoch": 47.377292576419215,
+ "grad_norm": 0.05456502363085747,
+ "learning_rate": 0.0006,
+ "loss": 2.490821361541748,
+ "step": 3411
+ },
+ {
+ "epoch": 47.391266375545854,
+ "grad_norm": 0.053752582520246506,
+ "learning_rate": 0.0006,
+ "loss": 2.4854462146759033,
+ "step": 3412
+ },
+ {
+ "epoch": 47.40524017467249,
+ "grad_norm": 0.053789172321558,
+ "learning_rate": 0.0006,
+ "loss": 2.475651741027832,
+ "step": 3413
+ },
+ {
+ "epoch": 47.419213973799124,
+ "grad_norm": 0.050882283598184586,
+ "learning_rate": 0.0006,
+ "loss": 2.5394387245178223,
+ "step": 3414
+ },
+ {
+ "epoch": 47.43318777292576,
+ "grad_norm": 0.04800841584801674,
+ "learning_rate": 0.0006,
+ "loss": 2.5125808715820312,
+ "step": 3415
+ },
+ {
+ "epoch": 47.4471615720524,
+ "grad_norm": 0.046234145760536194,
+ "learning_rate": 0.0006,
+ "loss": 2.507746696472168,
+ "step": 3416
+ },
+ {
+ "epoch": 47.46113537117904,
+ "grad_norm": 0.04797626659274101,
+ "learning_rate": 0.0006,
+ "loss": 2.507429599761963,
+ "step": 3417
+ },
+ {
+ "epoch": 47.47510917030568,
+ "grad_norm": 0.04505657032132149,
+ "learning_rate": 0.0006,
+ "loss": 2.4820728302001953,
+ "step": 3418
+ },
+ {
+ "epoch": 47.48908296943232,
+ "grad_norm": 0.043497052043676376,
+ "learning_rate": 0.0006,
+ "loss": 2.497286796569824,
+ "step": 3419
+ },
+ {
+ "epoch": 47.50305676855895,
+ "grad_norm": 0.043512530624866486,
+ "learning_rate": 0.0006,
+ "loss": 2.5131869316101074,
+ "step": 3420
+ },
+ {
+ "epoch": 47.51703056768559,
+ "grad_norm": 0.04304349049925804,
+ "learning_rate": 0.0006,
+ "loss": 2.480727195739746,
+ "step": 3421
+ },
+ {
+ "epoch": 47.531004366812226,
+ "grad_norm": 0.0438346266746521,
+ "learning_rate": 0.0006,
+ "loss": 2.5394272804260254,
+ "step": 3422
+ },
+ {
+ "epoch": 47.544978165938865,
+ "grad_norm": 0.04258699715137482,
+ "learning_rate": 0.0006,
+ "loss": 2.561876058578491,
+ "step": 3423
+ },
+ {
+ "epoch": 47.5589519650655,
+ "grad_norm": 0.04007282108068466,
+ "learning_rate": 0.0006,
+ "loss": 2.5318450927734375,
+ "step": 3424
+ },
+ {
+ "epoch": 47.57292576419214,
+ "grad_norm": 0.041057754307985306,
+ "learning_rate": 0.0006,
+ "loss": 2.5480198860168457,
+ "step": 3425
+ },
+ {
+ "epoch": 47.58689956331878,
+ "grad_norm": 0.04193456098437309,
+ "learning_rate": 0.0006,
+ "loss": 2.5483717918395996,
+ "step": 3426
+ },
+ {
+ "epoch": 47.60087336244541,
+ "grad_norm": 0.04196369647979736,
+ "learning_rate": 0.0006,
+ "loss": 2.5457968711853027,
+ "step": 3427
+ },
+ {
+ "epoch": 47.61484716157205,
+ "grad_norm": 0.04163368046283722,
+ "learning_rate": 0.0006,
+ "loss": 2.549682140350342,
+ "step": 3428
+ },
+ {
+ "epoch": 47.62882096069869,
+ "grad_norm": 0.04172227159142494,
+ "learning_rate": 0.0006,
+ "loss": 2.5421512126922607,
+ "step": 3429
+ },
+ {
+ "epoch": 47.64279475982533,
+ "grad_norm": 0.040164344012737274,
+ "learning_rate": 0.0006,
+ "loss": 2.56298565864563,
+ "step": 3430
+ },
+ {
+ "epoch": 47.65676855895197,
+ "grad_norm": 0.041952040046453476,
+ "learning_rate": 0.0006,
+ "loss": 2.5648794174194336,
+ "step": 3431
+ },
+ {
+ "epoch": 47.670742358078606,
+ "grad_norm": 0.04242457449436188,
+ "learning_rate": 0.0006,
+ "loss": 2.5249321460723877,
+ "step": 3432
+ },
+ {
+ "epoch": 47.68471615720524,
+ "grad_norm": 0.04022243991494179,
+ "learning_rate": 0.0006,
+ "loss": 2.550351619720459,
+ "step": 3433
+ },
+ {
+ "epoch": 47.698689956331876,
+ "grad_norm": 0.03953867405653,
+ "learning_rate": 0.0006,
+ "loss": 2.5574653148651123,
+ "step": 3434
+ },
+ {
+ "epoch": 47.712663755458514,
+ "grad_norm": 0.03916799649596214,
+ "learning_rate": 0.0006,
+ "loss": 2.5504047870635986,
+ "step": 3435
+ },
+ {
+ "epoch": 47.72663755458515,
+ "grad_norm": 0.03886726498603821,
+ "learning_rate": 0.0006,
+ "loss": 2.5592994689941406,
+ "step": 3436
+ },
+ {
+ "epoch": 47.74061135371179,
+ "grad_norm": 0.03798684477806091,
+ "learning_rate": 0.0006,
+ "loss": 2.5356991291046143,
+ "step": 3437
+ },
+ {
+ "epoch": 47.75458515283843,
+ "grad_norm": 0.03830137848854065,
+ "learning_rate": 0.0006,
+ "loss": 2.5314788818359375,
+ "step": 3438
+ },
+ {
+ "epoch": 47.76855895196506,
+ "grad_norm": 0.03806394338607788,
+ "learning_rate": 0.0006,
+ "loss": 2.5564026832580566,
+ "step": 3439
+ },
+ {
+ "epoch": 47.7825327510917,
+ "grad_norm": 0.03770998865365982,
+ "learning_rate": 0.0006,
+ "loss": 2.571133613586426,
+ "step": 3440
+ },
+ {
+ "epoch": 47.79650655021834,
+ "grad_norm": 0.03824618086218834,
+ "learning_rate": 0.0006,
+ "loss": 2.5675506591796875,
+ "step": 3441
+ },
+ {
+ "epoch": 47.81048034934498,
+ "grad_norm": 0.03814695402979851,
+ "learning_rate": 0.0006,
+ "loss": 2.564696788787842,
+ "step": 3442
+ },
+ {
+ "epoch": 47.82445414847162,
+ "grad_norm": 0.03723139315843582,
+ "learning_rate": 0.0006,
+ "loss": 2.5654220581054688,
+ "step": 3443
+ },
+ {
+ "epoch": 47.838427947598255,
+ "grad_norm": 0.036969564855098724,
+ "learning_rate": 0.0006,
+ "loss": 2.591536045074463,
+ "step": 3444
+ },
+ {
+ "epoch": 47.852401746724894,
+ "grad_norm": 0.03765752166509628,
+ "learning_rate": 0.0006,
+ "loss": 2.5955207347869873,
+ "step": 3445
+ },
+ {
+ "epoch": 47.866375545851525,
+ "grad_norm": 0.03813501074910164,
+ "learning_rate": 0.0006,
+ "loss": 2.5751233100891113,
+ "step": 3446
+ },
+ {
+ "epoch": 47.880349344978164,
+ "grad_norm": 0.038505494594573975,
+ "learning_rate": 0.0006,
+ "loss": 2.58059024810791,
+ "step": 3447
+ },
+ {
+ "epoch": 47.8943231441048,
+ "grad_norm": 0.03663766384124756,
+ "learning_rate": 0.0006,
+ "loss": 2.556299924850464,
+ "step": 3448
+ },
+ {
+ "epoch": 47.90829694323144,
+ "grad_norm": 0.03811891749501228,
+ "learning_rate": 0.0006,
+ "loss": 2.5983290672302246,
+ "step": 3449
+ },
+ {
+ "epoch": 47.92227074235808,
+ "grad_norm": 0.03735865280032158,
+ "learning_rate": 0.0006,
+ "loss": 2.578305244445801,
+ "step": 3450
+ },
+ {
+ "epoch": 47.93624454148472,
+ "grad_norm": 0.03734763711690903,
+ "learning_rate": 0.0006,
+ "loss": 2.58099365234375,
+ "step": 3451
+ },
+ {
+ "epoch": 47.95021834061135,
+ "grad_norm": 0.03787770867347717,
+ "learning_rate": 0.0006,
+ "loss": 2.6010184288024902,
+ "step": 3452
+ },
+ {
+ "epoch": 47.96419213973799,
+ "grad_norm": 0.037494633346796036,
+ "learning_rate": 0.0006,
+ "loss": 2.619872570037842,
+ "step": 3453
+ },
+ {
+ "epoch": 47.97816593886463,
+ "grad_norm": 0.03581016883254051,
+ "learning_rate": 0.0006,
+ "loss": 2.569575786590576,
+ "step": 3454
+ },
+ {
+ "epoch": 47.992139737991266,
+ "grad_norm": 0.0365932397544384,
+ "learning_rate": 0.0006,
+ "loss": 2.596858024597168,
+ "step": 3455
+ },
+ {
+ "epoch": 48.0,
+ "grad_norm": 0.041370097547769547,
+ "learning_rate": 0.0006,
+ "loss": 2.5878825187683105,
+ "step": 3456
+ },
+ {
+ "epoch": 48.0,
+ "eval_loss": 4.685170650482178,
+ "eval_runtime": 54.6962,
+ "eval_samples_per_second": 44.647,
+ "eval_steps_per_second": 1.408,
+ "step": 3456
+ },
+ {
+ "epoch": 48.01397379912664,
+ "grad_norm": 0.0416080579161644,
+ "learning_rate": 0.0006,
+ "loss": 2.2806217670440674,
+ "step": 3457
+ },
+ {
+ "epoch": 48.02794759825328,
+ "grad_norm": 0.05322199687361717,
+ "learning_rate": 0.0006,
+ "loss": 2.3298234939575195,
+ "step": 3458
+ },
+ {
+ "epoch": 48.041921397379916,
+ "grad_norm": 0.05991455912590027,
+ "learning_rate": 0.0006,
+ "loss": 2.3562302589416504,
+ "step": 3459
+ },
+ {
+ "epoch": 48.05589519650655,
+ "grad_norm": 0.06594616919755936,
+ "learning_rate": 0.0006,
+ "loss": 2.3599319458007812,
+ "step": 3460
+ },
+ {
+ "epoch": 48.069868995633186,
+ "grad_norm": 0.07071542739868164,
+ "learning_rate": 0.0006,
+ "loss": 2.3636932373046875,
+ "step": 3461
+ },
+ {
+ "epoch": 48.083842794759825,
+ "grad_norm": 0.07935461401939392,
+ "learning_rate": 0.0006,
+ "loss": 2.3353776931762695,
+ "step": 3462
+ },
+ {
+ "epoch": 48.09781659388646,
+ "grad_norm": 0.08013106882572174,
+ "learning_rate": 0.0006,
+ "loss": 2.3619937896728516,
+ "step": 3463
+ },
+ {
+ "epoch": 48.1117903930131,
+ "grad_norm": 0.07660064846277237,
+ "learning_rate": 0.0006,
+ "loss": 2.359711170196533,
+ "step": 3464
+ },
+ {
+ "epoch": 48.12576419213974,
+ "grad_norm": 0.07418673485517502,
+ "learning_rate": 0.0006,
+ "loss": 2.371979236602783,
+ "step": 3465
+ },
+ {
+ "epoch": 48.13973799126637,
+ "grad_norm": 0.07141897827386856,
+ "learning_rate": 0.0006,
+ "loss": 2.4365363121032715,
+ "step": 3466
+ },
+ {
+ "epoch": 48.15371179039301,
+ "grad_norm": 0.07358282059431076,
+ "learning_rate": 0.0006,
+ "loss": 2.3885858058929443,
+ "step": 3467
+ },
+ {
+ "epoch": 48.16768558951965,
+ "grad_norm": 0.07438173145055771,
+ "learning_rate": 0.0006,
+ "loss": 2.400908946990967,
+ "step": 3468
+ },
+ {
+ "epoch": 48.18165938864629,
+ "grad_norm": 0.0722062736749649,
+ "learning_rate": 0.0006,
+ "loss": 2.402834415435791,
+ "step": 3469
+ },
+ {
+ "epoch": 48.19563318777293,
+ "grad_norm": 0.0724518820643425,
+ "learning_rate": 0.0006,
+ "loss": 2.438591957092285,
+ "step": 3470
+ },
+ {
+ "epoch": 48.209606986899566,
+ "grad_norm": 0.07662852108478546,
+ "learning_rate": 0.0006,
+ "loss": 2.403655529022217,
+ "step": 3471
+ },
+ {
+ "epoch": 48.223580786026204,
+ "grad_norm": 0.07317197322845459,
+ "learning_rate": 0.0006,
+ "loss": 2.4278862476348877,
+ "step": 3472
+ },
+ {
+ "epoch": 48.237554585152836,
+ "grad_norm": 0.07075364887714386,
+ "learning_rate": 0.0006,
+ "loss": 2.4499733448028564,
+ "step": 3473
+ },
+ {
+ "epoch": 48.251528384279474,
+ "grad_norm": 0.06807368993759155,
+ "learning_rate": 0.0006,
+ "loss": 2.4092767238616943,
+ "step": 3474
+ },
+ {
+ "epoch": 48.26550218340611,
+ "grad_norm": 0.06330128759145737,
+ "learning_rate": 0.0006,
+ "loss": 2.4306247234344482,
+ "step": 3475
+ },
+ {
+ "epoch": 48.27947598253275,
+ "grad_norm": 0.06861737370491028,
+ "learning_rate": 0.0006,
+ "loss": 2.466233968734741,
+ "step": 3476
+ },
+ {
+ "epoch": 48.29344978165939,
+ "grad_norm": 0.0730956643819809,
+ "learning_rate": 0.0006,
+ "loss": 2.4407382011413574,
+ "step": 3477
+ },
+ {
+ "epoch": 48.30742358078603,
+ "grad_norm": 0.07647013664245605,
+ "learning_rate": 0.0006,
+ "loss": 2.442230224609375,
+ "step": 3478
+ },
+ {
+ "epoch": 48.32139737991266,
+ "grad_norm": 0.07516854256391525,
+ "learning_rate": 0.0006,
+ "loss": 2.423353910446167,
+ "step": 3479
+ },
+ {
+ "epoch": 48.3353711790393,
+ "grad_norm": 0.07211317121982574,
+ "learning_rate": 0.0006,
+ "loss": 2.457458019256592,
+ "step": 3480
+ },
+ {
+ "epoch": 48.34934497816594,
+ "grad_norm": 0.06762104481458664,
+ "learning_rate": 0.0006,
+ "loss": 2.4475035667419434,
+ "step": 3481
+ },
+ {
+ "epoch": 48.36331877729258,
+ "grad_norm": 0.05996783822774887,
+ "learning_rate": 0.0006,
+ "loss": 2.449408531188965,
+ "step": 3482
+ },
+ {
+ "epoch": 48.377292576419215,
+ "grad_norm": 0.05896502733230591,
+ "learning_rate": 0.0006,
+ "loss": 2.4284706115722656,
+ "step": 3483
+ },
+ {
+ "epoch": 48.391266375545854,
+ "grad_norm": 0.05865878984332085,
+ "learning_rate": 0.0006,
+ "loss": 2.435271978378296,
+ "step": 3484
+ },
+ {
+ "epoch": 48.40524017467249,
+ "grad_norm": 0.055605679750442505,
+ "learning_rate": 0.0006,
+ "loss": 2.4857187271118164,
+ "step": 3485
+ },
+ {
+ "epoch": 48.419213973799124,
+ "grad_norm": 0.055588994175195694,
+ "learning_rate": 0.0006,
+ "loss": 2.4857540130615234,
+ "step": 3486
+ },
+ {
+ "epoch": 48.43318777292576,
+ "grad_norm": 0.051601093262434006,
+ "learning_rate": 0.0006,
+ "loss": 2.481954574584961,
+ "step": 3487
+ },
+ {
+ "epoch": 48.4471615720524,
+ "grad_norm": 0.05077706277370453,
+ "learning_rate": 0.0006,
+ "loss": 2.4801037311553955,
+ "step": 3488
+ },
+ {
+ "epoch": 48.46113537117904,
+ "grad_norm": 0.04847648739814758,
+ "learning_rate": 0.0006,
+ "loss": 2.487722635269165,
+ "step": 3489
+ },
+ {
+ "epoch": 48.47510917030568,
+ "grad_norm": 0.051175881177186966,
+ "learning_rate": 0.0006,
+ "loss": 2.506425380706787,
+ "step": 3490
+ },
+ {
+ "epoch": 48.48908296943232,
+ "grad_norm": 0.0478319451212883,
+ "learning_rate": 0.0006,
+ "loss": 2.4647927284240723,
+ "step": 3491
+ },
+ {
+ "epoch": 48.50305676855895,
+ "grad_norm": 0.04687823727726936,
+ "learning_rate": 0.0006,
+ "loss": 2.5360779762268066,
+ "step": 3492
+ },
+ {
+ "epoch": 48.51703056768559,
+ "grad_norm": 0.04438488185405731,
+ "learning_rate": 0.0006,
+ "loss": 2.5270864963531494,
+ "step": 3493
+ },
+ {
+ "epoch": 48.531004366812226,
+ "grad_norm": 0.0462941899895668,
+ "learning_rate": 0.0006,
+ "loss": 2.4856317043304443,
+ "step": 3494
+ },
+ {
+ "epoch": 48.544978165938865,
+ "grad_norm": 0.043964970856904984,
+ "learning_rate": 0.0006,
+ "loss": 2.525442123413086,
+ "step": 3495
+ },
+ {
+ "epoch": 48.5589519650655,
+ "grad_norm": 0.04106118902564049,
+ "learning_rate": 0.0006,
+ "loss": 2.504249095916748,
+ "step": 3496
+ },
+ {
+ "epoch": 48.57292576419214,
+ "grad_norm": 0.042564310133457184,
+ "learning_rate": 0.0006,
+ "loss": 2.5318069458007812,
+ "step": 3497
+ },
+ {
+ "epoch": 48.58689956331878,
+ "grad_norm": 0.04405428096652031,
+ "learning_rate": 0.0006,
+ "loss": 2.511110782623291,
+ "step": 3498
+ },
+ {
+ "epoch": 48.60087336244541,
+ "grad_norm": 0.04254072159528732,
+ "learning_rate": 0.0006,
+ "loss": 2.481353998184204,
+ "step": 3499
+ },
+ {
+ "epoch": 48.61484716157205,
+ "grad_norm": 0.0427786186337471,
+ "learning_rate": 0.0006,
+ "loss": 2.512143611907959,
+ "step": 3500
+ },
+ {
+ "epoch": 48.62882096069869,
+ "grad_norm": 0.04150917008519173,
+ "learning_rate": 0.0006,
+ "loss": 2.4891762733459473,
+ "step": 3501
+ },
+ {
+ "epoch": 48.64279475982533,
+ "grad_norm": 0.04326722025871277,
+ "learning_rate": 0.0006,
+ "loss": 2.5532541275024414,
+ "step": 3502
+ },
+ {
+ "epoch": 48.65676855895197,
+ "grad_norm": 0.04207590967416763,
+ "learning_rate": 0.0006,
+ "loss": 2.5160255432128906,
+ "step": 3503
+ },
+ {
+ "epoch": 48.670742358078606,
+ "grad_norm": 0.04072630777955055,
+ "learning_rate": 0.0006,
+ "loss": 2.5517776012420654,
+ "step": 3504
+ },
+ {
+ "epoch": 48.68471615720524,
+ "grad_norm": 0.039107318967580795,
+ "learning_rate": 0.0006,
+ "loss": 2.5403547286987305,
+ "step": 3505
+ },
+ {
+ "epoch": 48.698689956331876,
+ "grad_norm": 0.039623409509658813,
+ "learning_rate": 0.0006,
+ "loss": 2.5422558784484863,
+ "step": 3506
+ },
+ {
+ "epoch": 48.712663755458514,
+ "grad_norm": 0.040803007781505585,
+ "learning_rate": 0.0006,
+ "loss": 2.5428831577301025,
+ "step": 3507
+ },
+ {
+ "epoch": 48.72663755458515,
+ "grad_norm": 0.03902186080813408,
+ "learning_rate": 0.0006,
+ "loss": 2.5536742210388184,
+ "step": 3508
+ },
+ {
+ "epoch": 48.74061135371179,
+ "grad_norm": 0.038808424025774,
+ "learning_rate": 0.0006,
+ "loss": 2.5836520195007324,
+ "step": 3509
+ },
+ {
+ "epoch": 48.75458515283843,
+ "grad_norm": 0.04138875752687454,
+ "learning_rate": 0.0006,
+ "loss": 2.57257080078125,
+ "step": 3510
+ },
+ {
+ "epoch": 48.76855895196506,
+ "grad_norm": 0.040627799928188324,
+ "learning_rate": 0.0006,
+ "loss": 2.5357236862182617,
+ "step": 3511
+ },
+ {
+ "epoch": 48.7825327510917,
+ "grad_norm": 0.03885788843035698,
+ "learning_rate": 0.0006,
+ "loss": 2.5279979705810547,
+ "step": 3512
+ },
+ {
+ "epoch": 48.79650655021834,
+ "grad_norm": 0.03777316212654114,
+ "learning_rate": 0.0006,
+ "loss": 2.5574088096618652,
+ "step": 3513
+ },
+ {
+ "epoch": 48.81048034934498,
+ "grad_norm": 0.0401822105050087,
+ "learning_rate": 0.0006,
+ "loss": 2.5748074054718018,
+ "step": 3514
+ },
+ {
+ "epoch": 48.82445414847162,
+ "grad_norm": 0.039489053189754486,
+ "learning_rate": 0.0006,
+ "loss": 2.5515849590301514,
+ "step": 3515
+ },
+ {
+ "epoch": 48.838427947598255,
+ "grad_norm": 0.03825156390666962,
+ "learning_rate": 0.0006,
+ "loss": 2.5707497596740723,
+ "step": 3516
+ },
+ {
+ "epoch": 48.852401746724894,
+ "grad_norm": 0.039769548922777176,
+ "learning_rate": 0.0006,
+ "loss": 2.5804600715637207,
+ "step": 3517
+ },
+ {
+ "epoch": 48.866375545851525,
+ "grad_norm": 0.037522513419389725,
+ "learning_rate": 0.0006,
+ "loss": 2.5533080101013184,
+ "step": 3518
+ },
+ {
+ "epoch": 48.880349344978164,
+ "grad_norm": 0.037051811814308167,
+ "learning_rate": 0.0006,
+ "loss": 2.5684657096862793,
+ "step": 3519
+ },
+ {
+ "epoch": 48.8943231441048,
+ "grad_norm": 0.03708256036043167,
+ "learning_rate": 0.0006,
+ "loss": 2.5416276454925537,
+ "step": 3520
+ },
+ {
+ "epoch": 48.90829694323144,
+ "grad_norm": 0.03648844361305237,
+ "learning_rate": 0.0006,
+ "loss": 2.590322256088257,
+ "step": 3521
+ },
+ {
+ "epoch": 48.92227074235808,
+ "grad_norm": 0.03529247269034386,
+ "learning_rate": 0.0006,
+ "loss": 2.5715677738189697,
+ "step": 3522
+ },
+ {
+ "epoch": 48.93624454148472,
+ "grad_norm": 0.03779376298189163,
+ "learning_rate": 0.0006,
+ "loss": 2.558824062347412,
+ "step": 3523
+ },
+ {
+ "epoch": 48.95021834061135,
+ "grad_norm": 0.03815107420086861,
+ "learning_rate": 0.0006,
+ "loss": 2.5608224868774414,
+ "step": 3524
+ },
+ {
+ "epoch": 48.96419213973799,
+ "grad_norm": 0.03636827692389488,
+ "learning_rate": 0.0006,
+ "loss": 2.5728330612182617,
+ "step": 3525
+ },
+ {
+ "epoch": 48.97816593886463,
+ "grad_norm": 0.03702937439084053,
+ "learning_rate": 0.0006,
+ "loss": 2.583949327468872,
+ "step": 3526
+ },
+ {
+ "epoch": 48.992139737991266,
+ "grad_norm": 0.038304753601551056,
+ "learning_rate": 0.0006,
+ "loss": 2.566709041595459,
+ "step": 3527
+ },
+ {
+ "epoch": 49.0,
+ "grad_norm": 0.04233432561159134,
+ "learning_rate": 0.0006,
+ "loss": 2.579421043395996,
+ "step": 3528
+ },
+ {
+ "epoch": 49.0,
+ "eval_loss": 4.707783222198486,
+ "eval_runtime": 63.8011,
+ "eval_samples_per_second": 38.275,
+ "eval_steps_per_second": 1.207,
+ "step": 3528
+ },
+ {
+ "epoch": 49.01397379912664,
+ "grad_norm": 0.04445822909474373,
+ "learning_rate": 0.0006,
+ "loss": 2.3368184566497803,
+ "step": 3529
+ },
+ {
+ "epoch": 49.02794759825328,
+ "grad_norm": 0.06053600087761879,
+ "learning_rate": 0.0006,
+ "loss": 2.3000853061676025,
+ "step": 3530
+ },
+ {
+ "epoch": 49.041921397379916,
+ "grad_norm": 0.06408452242612839,
+ "learning_rate": 0.0006,
+ "loss": 2.3449246883392334,
+ "step": 3531
+ },
+ {
+ "epoch": 49.05589519650655,
+ "grad_norm": 0.062226079404354095,
+ "learning_rate": 0.0006,
+ "loss": 2.3093197345733643,
+ "step": 3532
+ },
+ {
+ "epoch": 49.069868995633186,
+ "grad_norm": 0.06348929554224014,
+ "learning_rate": 0.0006,
+ "loss": 2.3355181217193604,
+ "step": 3533
+ },
+ {
+ "epoch": 49.083842794759825,
+ "grad_norm": 0.06682838499546051,
+ "learning_rate": 0.0006,
+ "loss": 2.336019515991211,
+ "step": 3534
+ },
+ {
+ "epoch": 49.09781659388646,
+ "grad_norm": 0.06584014743566513,
+ "learning_rate": 0.0006,
+ "loss": 2.328767776489258,
+ "step": 3535
+ },
+ {
+ "epoch": 49.1117903930131,
+ "grad_norm": 0.06417305022478104,
+ "learning_rate": 0.0006,
+ "loss": 2.345180034637451,
+ "step": 3536
+ },
+ {
+ "epoch": 49.12576419213974,
+ "grad_norm": 0.06693793088197708,
+ "learning_rate": 0.0006,
+ "loss": 2.3505005836486816,
+ "step": 3537
+ },
+ {
+ "epoch": 49.13973799126637,
+ "grad_norm": 0.07329608500003815,
+ "learning_rate": 0.0006,
+ "loss": 2.3560781478881836,
+ "step": 3538
+ },
+ {
+ "epoch": 49.15371179039301,
+ "grad_norm": 0.07840871810913086,
+ "learning_rate": 0.0006,
+ "loss": 2.3761446475982666,
+ "step": 3539
+ },
+ {
+ "epoch": 49.16768558951965,
+ "grad_norm": 0.081304632127285,
+ "learning_rate": 0.0006,
+ "loss": 2.352071762084961,
+ "step": 3540
+ },
+ {
+ "epoch": 49.18165938864629,
+ "grad_norm": 0.08186176419258118,
+ "learning_rate": 0.0006,
+ "loss": 2.3464274406433105,
+ "step": 3541
+ },
+ {
+ "epoch": 49.19563318777293,
+ "grad_norm": 0.07734493911266327,
+ "learning_rate": 0.0006,
+ "loss": 2.4023871421813965,
+ "step": 3542
+ },
+ {
+ "epoch": 49.209606986899566,
+ "grad_norm": 0.07607711106538773,
+ "learning_rate": 0.0006,
+ "loss": 2.3983752727508545,
+ "step": 3543
+ },
+ {
+ "epoch": 49.223580786026204,
+ "grad_norm": 0.07633908838033676,
+ "learning_rate": 0.0006,
+ "loss": 2.403359889984131,
+ "step": 3544
+ },
+ {
+ "epoch": 49.237554585152836,
+ "grad_norm": 0.07449200749397278,
+ "learning_rate": 0.0006,
+ "loss": 2.3805370330810547,
+ "step": 3545
+ },
+ {
+ "epoch": 49.251528384279474,
+ "grad_norm": 0.07453936338424683,
+ "learning_rate": 0.0006,
+ "loss": 2.4026613235473633,
+ "step": 3546
+ },
+ {
+ "epoch": 49.26550218340611,
+ "grad_norm": 0.07822432368993759,
+ "learning_rate": 0.0006,
+ "loss": 2.430838108062744,
+ "step": 3547
+ },
+ {
+ "epoch": 49.27947598253275,
+ "grad_norm": 0.07885267585515976,
+ "learning_rate": 0.0006,
+ "loss": 2.404007911682129,
+ "step": 3548
+ },
+ {
+ "epoch": 49.29344978165939,
+ "grad_norm": 0.07550351321697235,
+ "learning_rate": 0.0006,
+ "loss": 2.4216198921203613,
+ "step": 3549
+ },
+ {
+ "epoch": 49.30742358078603,
+ "grad_norm": 0.07021298259496689,
+ "learning_rate": 0.0006,
+ "loss": 2.410244941711426,
+ "step": 3550
+ },
+ {
+ "epoch": 49.32139737991266,
+ "grad_norm": 0.06511950492858887,
+ "learning_rate": 0.0006,
+ "loss": 2.4164299964904785,
+ "step": 3551
+ },
+ {
+ "epoch": 49.3353711790393,
+ "grad_norm": 0.06700337678194046,
+ "learning_rate": 0.0006,
+ "loss": 2.400719165802002,
+ "step": 3552
+ },
+ {
+ "epoch": 49.34934497816594,
+ "grad_norm": 0.06099636107683182,
+ "learning_rate": 0.0006,
+ "loss": 2.429642915725708,
+ "step": 3553
+ },
+ {
+ "epoch": 49.36331877729258,
+ "grad_norm": 0.05902580916881561,
+ "learning_rate": 0.0006,
+ "loss": 2.449646472930908,
+ "step": 3554
+ },
+ {
+ "epoch": 49.377292576419215,
+ "grad_norm": 0.06104956194758415,
+ "learning_rate": 0.0006,
+ "loss": 2.429291248321533,
+ "step": 3555
+ },
+ {
+ "epoch": 49.391266375545854,
+ "grad_norm": 0.059819530695676804,
+ "learning_rate": 0.0006,
+ "loss": 2.4604249000549316,
+ "step": 3556
+ },
+ {
+ "epoch": 49.40524017467249,
+ "grad_norm": 0.05730583891272545,
+ "learning_rate": 0.0006,
+ "loss": 2.5027692317962646,
+ "step": 3557
+ },
+ {
+ "epoch": 49.419213973799124,
+ "grad_norm": 0.05585183575749397,
+ "learning_rate": 0.0006,
+ "loss": 2.428546905517578,
+ "step": 3558
+ },
+ {
+ "epoch": 49.43318777292576,
+ "grad_norm": 0.05955706164240837,
+ "learning_rate": 0.0006,
+ "loss": 2.476571559906006,
+ "step": 3559
+ },
+ {
+ "epoch": 49.4471615720524,
+ "grad_norm": 0.05869297310709953,
+ "learning_rate": 0.0006,
+ "loss": 2.474517822265625,
+ "step": 3560
+ },
+ {
+ "epoch": 49.46113537117904,
+ "grad_norm": 0.06055540218949318,
+ "learning_rate": 0.0006,
+ "loss": 2.4937939643859863,
+ "step": 3561
+ },
+ {
+ "epoch": 49.47510917030568,
+ "grad_norm": 0.05900418385863304,
+ "learning_rate": 0.0006,
+ "loss": 2.480724334716797,
+ "step": 3562
+ },
+ {
+ "epoch": 49.48908296943232,
+ "grad_norm": 0.051440633833408356,
+ "learning_rate": 0.0006,
+ "loss": 2.463834762573242,
+ "step": 3563
+ },
+ {
+ "epoch": 49.50305676855895,
+ "grad_norm": 0.04718296229839325,
+ "learning_rate": 0.0006,
+ "loss": 2.49532151222229,
+ "step": 3564
+ },
+ {
+ "epoch": 49.51703056768559,
+ "grad_norm": 0.04986805096268654,
+ "learning_rate": 0.0006,
+ "loss": 2.4672813415527344,
+ "step": 3565
+ },
+ {
+ "epoch": 49.531004366812226,
+ "grad_norm": 0.04920569807291031,
+ "learning_rate": 0.0006,
+ "loss": 2.4880571365356445,
+ "step": 3566
+ },
+ {
+ "epoch": 49.544978165938865,
+ "grad_norm": 0.05014759302139282,
+ "learning_rate": 0.0006,
+ "loss": 2.4849579334259033,
+ "step": 3567
+ },
+ {
+ "epoch": 49.5589519650655,
+ "grad_norm": 0.04543435201048851,
+ "learning_rate": 0.0006,
+ "loss": 2.4935083389282227,
+ "step": 3568
+ },
+ {
+ "epoch": 49.57292576419214,
+ "grad_norm": 0.04302320256829262,
+ "learning_rate": 0.0006,
+ "loss": 2.477299213409424,
+ "step": 3569
+ },
+ {
+ "epoch": 49.58689956331878,
+ "grad_norm": 0.0461658351123333,
+ "learning_rate": 0.0006,
+ "loss": 2.479825735092163,
+ "step": 3570
+ },
+ {
+ "epoch": 49.60087336244541,
+ "grad_norm": 0.04293445125222206,
+ "learning_rate": 0.0006,
+ "loss": 2.485955238342285,
+ "step": 3571
+ },
+ {
+ "epoch": 49.61484716157205,
+ "grad_norm": 0.04327177628874779,
+ "learning_rate": 0.0006,
+ "loss": 2.5380687713623047,
+ "step": 3572
+ },
+ {
+ "epoch": 49.62882096069869,
+ "grad_norm": 0.045529719442129135,
+ "learning_rate": 0.0006,
+ "loss": 2.506378650665283,
+ "step": 3573
+ },
+ {
+ "epoch": 49.64279475982533,
+ "grad_norm": 0.04377258941531181,
+ "learning_rate": 0.0006,
+ "loss": 2.508305788040161,
+ "step": 3574
+ },
+ {
+ "epoch": 49.65676855895197,
+ "grad_norm": 0.04337198659777641,
+ "learning_rate": 0.0006,
+ "loss": 2.5062928199768066,
+ "step": 3575
+ },
+ {
+ "epoch": 49.670742358078606,
+ "grad_norm": 0.04367544502019882,
+ "learning_rate": 0.0006,
+ "loss": 2.5241098403930664,
+ "step": 3576
+ },
+ {
+ "epoch": 49.68471615720524,
+ "grad_norm": 0.042158093303442,
+ "learning_rate": 0.0006,
+ "loss": 2.5085954666137695,
+ "step": 3577
+ },
+ {
+ "epoch": 49.698689956331876,
+ "grad_norm": 0.04114590585231781,
+ "learning_rate": 0.0006,
+ "loss": 2.5382909774780273,
+ "step": 3578
+ },
+ {
+ "epoch": 49.712663755458514,
+ "grad_norm": 0.04045982286334038,
+ "learning_rate": 0.0006,
+ "loss": 2.5334248542785645,
+ "step": 3579
+ },
+ {
+ "epoch": 49.72663755458515,
+ "grad_norm": 0.04306519404053688,
+ "learning_rate": 0.0006,
+ "loss": 2.538691997528076,
+ "step": 3580
+ },
+ {
+ "epoch": 49.74061135371179,
+ "grad_norm": 0.04211534187197685,
+ "learning_rate": 0.0006,
+ "loss": 2.5546915531158447,
+ "step": 3581
+ },
+ {
+ "epoch": 49.75458515283843,
+ "grad_norm": 0.039703842252492905,
+ "learning_rate": 0.0006,
+ "loss": 2.5116872787475586,
+ "step": 3582
+ },
+ {
+ "epoch": 49.76855895196506,
+ "grad_norm": 0.03895648196339607,
+ "learning_rate": 0.0006,
+ "loss": 2.53383731842041,
+ "step": 3583
+ },
+ {
+ "epoch": 49.7825327510917,
+ "grad_norm": 0.04023134708404541,
+ "learning_rate": 0.0006,
+ "loss": 2.5245113372802734,
+ "step": 3584
+ },
+ {
+ "epoch": 49.79650655021834,
+ "grad_norm": 0.043185245245695114,
+ "learning_rate": 0.0006,
+ "loss": 2.5781919956207275,
+ "step": 3585
+ },
+ {
+ "epoch": 49.81048034934498,
+ "grad_norm": 0.04389204457402229,
+ "learning_rate": 0.0006,
+ "loss": 2.5575881004333496,
+ "step": 3586
+ },
+ {
+ "epoch": 49.82445414847162,
+ "grad_norm": 0.04059178754687309,
+ "learning_rate": 0.0006,
+ "loss": 2.5233912467956543,
+ "step": 3587
+ },
+ {
+ "epoch": 49.838427947598255,
+ "grad_norm": 0.040480129420757294,
+ "learning_rate": 0.0006,
+ "loss": 2.55698823928833,
+ "step": 3588
+ },
+ {
+ "epoch": 49.852401746724894,
+ "grad_norm": 0.04247495159506798,
+ "learning_rate": 0.0006,
+ "loss": 2.582383394241333,
+ "step": 3589
+ },
+ {
+ "epoch": 49.866375545851525,
+ "grad_norm": 0.041700348258018494,
+ "learning_rate": 0.0006,
+ "loss": 2.56081485748291,
+ "step": 3590
+ },
+ {
+ "epoch": 49.880349344978164,
+ "grad_norm": 0.04241231456398964,
+ "learning_rate": 0.0006,
+ "loss": 2.5789737701416016,
+ "step": 3591
+ },
+ {
+ "epoch": 49.8943231441048,
+ "grad_norm": 0.03980433568358421,
+ "learning_rate": 0.0006,
+ "loss": 2.54821515083313,
+ "step": 3592
+ },
+ {
+ "epoch": 49.90829694323144,
+ "grad_norm": 0.038496233522892,
+ "learning_rate": 0.0006,
+ "loss": 2.5453336238861084,
+ "step": 3593
+ },
+ {
+ "epoch": 49.92227074235808,
+ "grad_norm": 0.03895699977874756,
+ "learning_rate": 0.0006,
+ "loss": 2.5671629905700684,
+ "step": 3594
+ },
+ {
+ "epoch": 49.93624454148472,
+ "grad_norm": 0.038945574313402176,
+ "learning_rate": 0.0006,
+ "loss": 2.572582721710205,
+ "step": 3595
+ },
+ {
+ "epoch": 49.95021834061135,
+ "grad_norm": 0.04174297675490379,
+ "learning_rate": 0.0006,
+ "loss": 2.564343214035034,
+ "step": 3596
+ },
+ {
+ "epoch": 49.96419213973799,
+ "grad_norm": 0.04137560725212097,
+ "learning_rate": 0.0006,
+ "loss": 2.5566015243530273,
+ "step": 3597
+ },
+ {
+ "epoch": 49.97816593886463,
+ "grad_norm": 0.0385521799325943,
+ "learning_rate": 0.0006,
+ "loss": 2.555807113647461,
+ "step": 3598
+ },
+ {
+ "epoch": 49.992139737991266,
+ "grad_norm": 0.03942764550447464,
+ "learning_rate": 0.0006,
+ "loss": 2.566926956176758,
+ "step": 3599
+ },
+ {
+ "epoch": 50.0,
+ "grad_norm": 0.04576386883854866,
+ "learning_rate": 0.0006,
+ "loss": 2.589557647705078,
+ "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-constantlr/checkpoint-3600/training_args.bin b/runs/baseline-constantlr/checkpoint-3600/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..902eed46d9e02245694ec118af9efec9cd359ff6
--- /dev/null
+++ b/runs/baseline-constantlr/checkpoint-3600/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f8a755363e28cfde742d3e37ba600ce14b5716157c9823f5cadd1b47464c7fc2
+size 5201
diff --git a/runs/baseline-constantlr/checkpoint-72/chat_template.jinja b/runs/baseline-constantlr/checkpoint-72/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-72/config.json b/runs/baseline-constantlr/checkpoint-72/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-72/generation_config.json b/runs/baseline-constantlr/checkpoint-72/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-72/model.safetensors b/runs/baseline-constantlr/checkpoint-72/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..30e72805605310e97c50533812d475f20f5d139c
--- /dev/null
+++ b/runs/baseline-constantlr/checkpoint-72/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2d7d54c83c4fc3e640fe285461dbfcc3a87332a26d134bd846a70654e0ec3be9
+size 583356232
diff --git a/runs/baseline-constantlr/checkpoint-72/optimizer.pt b/runs/baseline-constantlr/checkpoint-72/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..a12efc87723fde854728f72317ca8ecf4b7f2b1f
--- /dev/null
+++ b/runs/baseline-constantlr/checkpoint-72/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:136eb90841f95f280120d32e30c4d2f0df3fc564bc523c10193398ecc6557605
+size 1166825803
diff --git a/runs/baseline-constantlr/checkpoint-72/rng_state_0.pth b/runs/baseline-constantlr/checkpoint-72/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..3fc68e18ddaf65dfbdec55893d9a925ff5e43a18
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-72/rng_state_1.pth b/runs/baseline-constantlr/checkpoint-72/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..79d9de29ae34b3b0c10ea8ba0348aeafb0c12226
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-72/scheduler.pt b/runs/baseline-constantlr/checkpoint-72/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..b3af158e6a18004b03a150114c32a235df6d16a0
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-72/tokenizer.json b/runs/baseline-constantlr/checkpoint-72/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-72/tokenizer_config.json b/runs/baseline-constantlr/checkpoint-72/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-72/trainer_state.json b/runs/baseline-constantlr/checkpoint-72/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..c7a273f1c0f88f2c6e1fe1e3177007aaa5a33887
--- /dev/null
+++ b/runs/baseline-constantlr/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.13303375244140625,
+ "learning_rate": 0.0,
+ "loss": 12.018817901611328,
+ "step": 1
+ },
+ {
+ "epoch": 0.02794759825327511,
+ "grad_norm": 0.13390742242336273,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.021883964538574,
+ "step": 2
+ },
+ {
+ "epoch": 0.04192139737991266,
+ "grad_norm": 0.13340722024440765,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.986108779907227,
+ "step": 3
+ },
+ {
+ "epoch": 0.05589519650655022,
+ "grad_norm": 0.13777263462543488,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.926837921142578,
+ "step": 4
+ },
+ {
+ "epoch": 0.06986899563318777,
+ "grad_norm": 0.14294272661209106,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.845431327819824,
+ "step": 5
+ },
+ {
+ "epoch": 0.08384279475982533,
+ "grad_norm": 0.15314988791942596,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.736921310424805,
+ "step": 6
+ },
+ {
+ "epoch": 0.09781659388646288,
+ "grad_norm": 0.14554648101329803,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.615877151489258,
+ "step": 7
+ },
+ {
+ "epoch": 0.11179039301310044,
+ "grad_norm": 0.1252845823764801,
+ "learning_rate": 4.2e-05,
+ "loss": 11.501619338989258,
+ "step": 8
+ },
+ {
+ "epoch": 0.125764192139738,
+ "grad_norm": 0.11403433233499527,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.396705627441406,
+ "step": 9
+ },
+ {
+ "epoch": 0.13973799126637554,
+ "grad_norm": 0.10996542125940323,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.31666374206543,
+ "step": 10
+ },
+ {
+ "epoch": 0.1537117903930131,
+ "grad_norm": 0.10755623877048492,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.252704620361328,
+ "step": 11
+ },
+ {
+ "epoch": 0.16768558951965065,
+ "grad_norm": 0.10700664669275284,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.194284439086914,
+ "step": 12
+ },
+ {
+ "epoch": 0.18165938864628822,
+ "grad_norm": 0.10606497526168823,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.14437198638916,
+ "step": 13
+ },
+ {
+ "epoch": 0.19563318777292577,
+ "grad_norm": 0.10551681369543076,
+ "learning_rate": 7.8e-05,
+ "loss": 11.096858024597168,
+ "step": 14
+ },
+ {
+ "epoch": 0.2096069868995633,
+ "grad_norm": 0.10573510080575943,
+ "learning_rate": 8.4e-05,
+ "loss": 11.047990798950195,
+ "step": 15
+ },
+ {
+ "epoch": 0.22358078602620088,
+ "grad_norm": 0.10572560131549835,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 11.000219345092773,
+ "step": 16
+ },
+ {
+ "epoch": 0.23755458515283842,
+ "grad_norm": 0.10625051707029343,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.93830680847168,
+ "step": 17
+ },
+ {
+ "epoch": 0.251528384279476,
+ "grad_norm": 0.10565247386693954,
+ "learning_rate": 0.000102,
+ "loss": 10.88237190246582,
+ "step": 18
+ },
+ {
+ "epoch": 0.26550218340611353,
+ "grad_norm": 0.10570791363716125,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.81382942199707,
+ "step": 19
+ },
+ {
+ "epoch": 0.2794759825327511,
+ "grad_norm": 0.10585319995880127,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.742864608764648,
+ "step": 20
+ },
+ {
+ "epoch": 0.2934497816593886,
+ "grad_norm": 0.10421311110258102,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.675719261169434,
+ "step": 21
+ },
+ {
+ "epoch": 0.3074235807860262,
+ "grad_norm": 0.10436785966157913,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.589548110961914,
+ "step": 22
+ },
+ {
+ "epoch": 0.32139737991266376,
+ "grad_norm": 0.10463878512382507,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.504261016845703,
+ "step": 23
+ },
+ {
+ "epoch": 0.3353711790393013,
+ "grad_norm": 0.104142926633358,
+ "learning_rate": 0.000138,
+ "loss": 10.41696548461914,
+ "step": 24
+ },
+ {
+ "epoch": 0.34934497816593885,
+ "grad_norm": 0.1037549152970314,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.327609062194824,
+ "step": 25
+ },
+ {
+ "epoch": 0.36331877729257644,
+ "grad_norm": 0.10464346408843994,
+ "learning_rate": 0.00015,
+ "loss": 10.226776123046875,
+ "step": 26
+ },
+ {
+ "epoch": 0.377292576419214,
+ "grad_norm": 0.10289040952920914,
+ "learning_rate": 0.000156,
+ "loss": 10.142925262451172,
+ "step": 27
+ },
+ {
+ "epoch": 0.39126637554585153,
+ "grad_norm": 0.10476566106081009,
+ "learning_rate": 0.000162,
+ "loss": 10.032388687133789,
+ "step": 28
+ },
+ {
+ "epoch": 0.4052401746724891,
+ "grad_norm": 0.10285190492868423,
+ "learning_rate": 0.000168,
+ "loss": 9.944738388061523,
+ "step": 29
+ },
+ {
+ "epoch": 0.4192139737991266,
+ "grad_norm": 0.10330761969089508,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.832511901855469,
+ "step": 30
+ },
+ {
+ "epoch": 0.4331877729257642,
+ "grad_norm": 0.10190961509943008,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.742905616760254,
+ "step": 31
+ },
+ {
+ "epoch": 0.44716157205240176,
+ "grad_norm": 0.10172155499458313,
+ "learning_rate": 0.000186,
+ "loss": 9.634834289550781,
+ "step": 32
+ },
+ {
+ "epoch": 0.4611353711790393,
+ "grad_norm": 0.10067209601402283,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.522916793823242,
+ "step": 33
+ },
+ {
+ "epoch": 0.47510917030567684,
+ "grad_norm": 0.10058761388063431,
+ "learning_rate": 0.000198,
+ "loss": 9.416927337646484,
+ "step": 34
+ },
+ {
+ "epoch": 0.4890829694323144,
+ "grad_norm": 0.0981091558933258,
+ "learning_rate": 0.000204,
+ "loss": 9.32928466796875,
+ "step": 35
+ },
+ {
+ "epoch": 0.503056768558952,
+ "grad_norm": 0.09739134460687637,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.215356826782227,
+ "step": 36
+ },
+ {
+ "epoch": 0.5170305676855895,
+ "grad_norm": 0.0969916582107544,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.101107597351074,
+ "step": 37
+ },
+ {
+ "epoch": 0.5310043668122271,
+ "grad_norm": 0.0959910973906517,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.998035430908203,
+ "step": 38
+ },
+ {
+ "epoch": 0.5449781659388646,
+ "grad_norm": 0.09558682143688202,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.89165210723877,
+ "step": 39
+ },
+ {
+ "epoch": 0.5589519650655022,
+ "grad_norm": 0.09313725680112839,
+ "learning_rate": 0.000234,
+ "loss": 8.806523323059082,
+ "step": 40
+ },
+ {
+ "epoch": 0.5729257641921397,
+ "grad_norm": 0.09075582772493362,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.71815299987793,
+ "step": 41
+ },
+ {
+ "epoch": 0.5868995633187772,
+ "grad_norm": 0.08912578970193863,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.617330551147461,
+ "step": 42
+ },
+ {
+ "epoch": 0.6008733624454149,
+ "grad_norm": 0.08745060116052628,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.511157989501953,
+ "step": 43
+ },
+ {
+ "epoch": 0.6148471615720524,
+ "grad_norm": 0.08254463970661163,
+ "learning_rate": 0.000258,
+ "loss": 8.458954811096191,
+ "step": 44
+ },
+ {
+ "epoch": 0.62882096069869,
+ "grad_norm": 0.0795406699180603,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.37498664855957,
+ "step": 45
+ },
+ {
+ "epoch": 0.6427947598253275,
+ "grad_norm": 0.07730695605278015,
+ "learning_rate": 0.00027,
+ "loss": 8.293156623840332,
+ "step": 46
+ },
+ {
+ "epoch": 0.6567685589519651,
+ "grad_norm": 0.07404499500989914,
+ "learning_rate": 0.000276,
+ "loss": 8.200754165649414,
+ "step": 47
+ },
+ {
+ "epoch": 0.6707423580786026,
+ "grad_norm": 0.07091354578733444,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.114692687988281,
+ "step": 48
+ },
+ {
+ "epoch": 0.6847161572052402,
+ "grad_norm": 0.06816772371530533,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.060348510742188,
+ "step": 49
+ },
+ {
+ "epoch": 0.6986899563318777,
+ "grad_norm": 0.0605427622795105,
+ "learning_rate": 0.000294,
+ "loss": 7.991006851196289,
+ "step": 50
+ },
+ {
+ "epoch": 0.7126637554585152,
+ "grad_norm": 0.05635255202651024,
+ "learning_rate": 0.0003,
+ "loss": 7.945850372314453,
+ "step": 51
+ },
+ {
+ "epoch": 0.7266375545851529,
+ "grad_norm": 0.05419522523880005,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.895726203918457,
+ "step": 52
+ },
+ {
+ "epoch": 0.7406113537117904,
+ "grad_norm": 0.06724901497364044,
+ "learning_rate": 0.000312,
+ "loss": 7.839101791381836,
+ "step": 53
+ },
+ {
+ "epoch": 0.754585152838428,
+ "grad_norm": 0.12858672440052032,
+ "learning_rate": 0.000318,
+ "loss": 7.840076446533203,
+ "step": 54
+ },
+ {
+ "epoch": 0.7685589519650655,
+ "grad_norm": 0.05087178573012352,
+ "learning_rate": 0.000324,
+ "loss": 7.77433967590332,
+ "step": 55
+ },
+ {
+ "epoch": 0.7825327510917031,
+ "grad_norm": 0.0458969883620739,
+ "learning_rate": 0.00033,
+ "loss": 7.747459411621094,
+ "step": 56
+ },
+ {
+ "epoch": 0.7965065502183406,
+ "grad_norm": 0.03214738890528679,
+ "learning_rate": 0.000336,
+ "loss": 7.735766410827637,
+ "step": 57
+ },
+ {
+ "epoch": 0.8104803493449781,
+ "grad_norm": 0.022700699046254158,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.716371059417725,
+ "step": 58
+ },
+ {
+ "epoch": 0.8244541484716157,
+ "grad_norm": 0.02415020391345024,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.700209140777588,
+ "step": 59
+ },
+ {
+ "epoch": 0.8384279475982532,
+ "grad_norm": 0.021143650636076927,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.687976360321045,
+ "step": 60
+ },
+ {
+ "epoch": 0.8524017467248908,
+ "grad_norm": 0.019051192328333855,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.640708923339844,
+ "step": 61
+ },
+ {
+ "epoch": 0.8663755458515284,
+ "grad_norm": 0.02110682614147663,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.6529130935668945,
+ "step": 62
+ },
+ {
+ "epoch": 0.880349344978166,
+ "grad_norm": 0.024010686203837395,
+ "learning_rate": 0.000372,
+ "loss": 7.645641326904297,
+ "step": 63
+ },
+ {
+ "epoch": 0.8943231441048035,
+ "grad_norm": 0.02591090090572834,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.626849174499512,
+ "step": 64
+ },
+ {
+ "epoch": 0.9082969432314411,
+ "grad_norm": 0.02841993235051632,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.633922576904297,
+ "step": 65
+ },
+ {
+ "epoch": 0.9222707423580786,
+ "grad_norm": 0.02565363608300686,
+ "learning_rate": 0.00039,
+ "loss": 7.6236772537231445,
+ "step": 66
+ },
+ {
+ "epoch": 0.9362445414847161,
+ "grad_norm": 0.020100994035601616,
+ "learning_rate": 0.000396,
+ "loss": 7.602252006530762,
+ "step": 67
+ },
+ {
+ "epoch": 0.9502183406113537,
+ "grad_norm": 0.017415935173630714,
+ "learning_rate": 0.000402,
+ "loss": 7.574195861816406,
+ "step": 68
+ },
+ {
+ "epoch": 0.9641921397379912,
+ "grad_norm": 0.01630476303398609,
+ "learning_rate": 0.000408,
+ "loss": 7.578503131866455,
+ "step": 69
+ },
+ {
+ "epoch": 0.9781659388646288,
+ "grad_norm": 0.015402277931571007,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.54685115814209,
+ "step": 70
+ },
+ {
+ "epoch": 0.9921397379912664,
+ "grad_norm": 0.01438985951244831,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.546932220458984,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.016883183270692825,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.555042266845703,
+ "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-constantlr/checkpoint-72/training_args.bin b/runs/baseline-constantlr/checkpoint-72/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..902eed46d9e02245694ec118af9efec9cd359ff6
--- /dev/null
+++ b/runs/baseline-constantlr/checkpoint-72/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f8a755363e28cfde742d3e37ba600ce14b5716157c9823f5cadd1b47464c7fc2
+size 5201
diff --git a/runs/baseline-constantlr/checkpoint-720/chat_template.jinja b/runs/baseline-constantlr/checkpoint-720/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-720/config.json b/runs/baseline-constantlr/checkpoint-720/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-720/generation_config.json b/runs/baseline-constantlr/checkpoint-720/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-720/model.safetensors b/runs/baseline-constantlr/checkpoint-720/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..6ae148b32155d6715c15d120e2fc80eff37bf880
--- /dev/null
+++ b/runs/baseline-constantlr/checkpoint-720/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:490d06b5f8e486986528da93671574a5dbcb001dd64318f3e37ee79808f30302
+size 583356232
diff --git a/runs/baseline-constantlr/checkpoint-720/optimizer.pt b/runs/baseline-constantlr/checkpoint-720/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..92e4979066c83b230ef718a5e76d96b1ef32b810
--- /dev/null
+++ b/runs/baseline-constantlr/checkpoint-720/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d3be1bb8645081003225cbe9bdbe2cf5bd06bc4c608f7be77e8add348a419186
+size 1166825803
diff --git a/runs/baseline-constantlr/checkpoint-720/rng_state_0.pth b/runs/baseline-constantlr/checkpoint-720/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..64991ceae73e5d3389476a9b448c3cda96f73b10
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-720/rng_state_1.pth b/runs/baseline-constantlr/checkpoint-720/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..fee3b6b64b847dcce05678311e2696b568d3185a
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-720/scheduler.pt b/runs/baseline-constantlr/checkpoint-720/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..064776c8200f8e2b7e0a5f9d35defae61c09197b
--- /dev/null
+++ b/runs/baseline-constantlr/checkpoint-720/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:21317e117d2d2fd6fd759ea534232744124624e2aab4bf869155094da12f3394
+size 1465
diff --git a/runs/baseline-constantlr/checkpoint-720/tokenizer.json b/runs/baseline-constantlr/checkpoint-720/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-720/tokenizer_config.json b/runs/baseline-constantlr/checkpoint-720/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/baseline-constantlr/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-constantlr/checkpoint-720/trainer_state.json b/runs/baseline-constantlr/checkpoint-720/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..96e852555e7e980e16ac009b6a9fe9c36ccd68e8
--- /dev/null
+++ b/runs/baseline-constantlr/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.13303375244140625,
+ "learning_rate": 0.0,
+ "loss": 12.018817901611328,
+ "step": 1
+ },
+ {
+ "epoch": 0.02794759825327511,
+ "grad_norm": 0.13390742242336273,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 12.021883964538574,
+ "step": 2
+ },
+ {
+ "epoch": 0.04192139737991266,
+ "grad_norm": 0.13340722024440765,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 11.986108779907227,
+ "step": 3
+ },
+ {
+ "epoch": 0.05589519650655022,
+ "grad_norm": 0.13777263462543488,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 11.926837921142578,
+ "step": 4
+ },
+ {
+ "epoch": 0.06986899563318777,
+ "grad_norm": 0.14294272661209106,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 11.845431327819824,
+ "step": 5
+ },
+ {
+ "epoch": 0.08384279475982533,
+ "grad_norm": 0.15314988791942596,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 11.736921310424805,
+ "step": 6
+ },
+ {
+ "epoch": 0.09781659388646288,
+ "grad_norm": 0.14554648101329803,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 11.615877151489258,
+ "step": 7
+ },
+ {
+ "epoch": 0.11179039301310044,
+ "grad_norm": 0.1252845823764801,
+ "learning_rate": 4.2e-05,
+ "loss": 11.501619338989258,
+ "step": 8
+ },
+ {
+ "epoch": 0.125764192139738,
+ "grad_norm": 0.11403433233499527,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 11.396705627441406,
+ "step": 9
+ },
+ {
+ "epoch": 0.13973799126637554,
+ "grad_norm": 0.10996542125940323,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 11.31666374206543,
+ "step": 10
+ },
+ {
+ "epoch": 0.1537117903930131,
+ "grad_norm": 0.10755623877048492,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 11.252704620361328,
+ "step": 11
+ },
+ {
+ "epoch": 0.16768558951965065,
+ "grad_norm": 0.10700664669275284,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 11.194284439086914,
+ "step": 12
+ },
+ {
+ "epoch": 0.18165938864628822,
+ "grad_norm": 0.10606497526168823,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 11.14437198638916,
+ "step": 13
+ },
+ {
+ "epoch": 0.19563318777292577,
+ "grad_norm": 0.10551681369543076,
+ "learning_rate": 7.8e-05,
+ "loss": 11.096858024597168,
+ "step": 14
+ },
+ {
+ "epoch": 0.2096069868995633,
+ "grad_norm": 0.10573510080575943,
+ "learning_rate": 8.4e-05,
+ "loss": 11.047990798950195,
+ "step": 15
+ },
+ {
+ "epoch": 0.22358078602620088,
+ "grad_norm": 0.10572560131549835,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 11.000219345092773,
+ "step": 16
+ },
+ {
+ "epoch": 0.23755458515283842,
+ "grad_norm": 0.10625051707029343,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 10.93830680847168,
+ "step": 17
+ },
+ {
+ "epoch": 0.251528384279476,
+ "grad_norm": 0.10565247386693954,
+ "learning_rate": 0.000102,
+ "loss": 10.88237190246582,
+ "step": 18
+ },
+ {
+ "epoch": 0.26550218340611353,
+ "grad_norm": 0.10570791363716125,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 10.81382942199707,
+ "step": 19
+ },
+ {
+ "epoch": 0.2794759825327511,
+ "grad_norm": 0.10585319995880127,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 10.742864608764648,
+ "step": 20
+ },
+ {
+ "epoch": 0.2934497816593886,
+ "grad_norm": 0.10421311110258102,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 10.675719261169434,
+ "step": 21
+ },
+ {
+ "epoch": 0.3074235807860262,
+ "grad_norm": 0.10436785966157913,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 10.589548110961914,
+ "step": 22
+ },
+ {
+ "epoch": 0.32139737991266376,
+ "grad_norm": 0.10463878512382507,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 10.504261016845703,
+ "step": 23
+ },
+ {
+ "epoch": 0.3353711790393013,
+ "grad_norm": 0.104142926633358,
+ "learning_rate": 0.000138,
+ "loss": 10.41696548461914,
+ "step": 24
+ },
+ {
+ "epoch": 0.34934497816593885,
+ "grad_norm": 0.1037549152970314,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 10.327609062194824,
+ "step": 25
+ },
+ {
+ "epoch": 0.36331877729257644,
+ "grad_norm": 0.10464346408843994,
+ "learning_rate": 0.00015,
+ "loss": 10.226776123046875,
+ "step": 26
+ },
+ {
+ "epoch": 0.377292576419214,
+ "grad_norm": 0.10289040952920914,
+ "learning_rate": 0.000156,
+ "loss": 10.142925262451172,
+ "step": 27
+ },
+ {
+ "epoch": 0.39126637554585153,
+ "grad_norm": 0.10476566106081009,
+ "learning_rate": 0.000162,
+ "loss": 10.032388687133789,
+ "step": 28
+ },
+ {
+ "epoch": 0.4052401746724891,
+ "grad_norm": 0.10285190492868423,
+ "learning_rate": 0.000168,
+ "loss": 9.944738388061523,
+ "step": 29
+ },
+ {
+ "epoch": 0.4192139737991266,
+ "grad_norm": 0.10330761969089508,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 9.832511901855469,
+ "step": 30
+ },
+ {
+ "epoch": 0.4331877729257642,
+ "grad_norm": 0.10190961509943008,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 9.742905616760254,
+ "step": 31
+ },
+ {
+ "epoch": 0.44716157205240176,
+ "grad_norm": 0.10172155499458313,
+ "learning_rate": 0.000186,
+ "loss": 9.634834289550781,
+ "step": 32
+ },
+ {
+ "epoch": 0.4611353711790393,
+ "grad_norm": 0.10067209601402283,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 9.522916793823242,
+ "step": 33
+ },
+ {
+ "epoch": 0.47510917030567684,
+ "grad_norm": 0.10058761388063431,
+ "learning_rate": 0.000198,
+ "loss": 9.416927337646484,
+ "step": 34
+ },
+ {
+ "epoch": 0.4890829694323144,
+ "grad_norm": 0.0981091558933258,
+ "learning_rate": 0.000204,
+ "loss": 9.32928466796875,
+ "step": 35
+ },
+ {
+ "epoch": 0.503056768558952,
+ "grad_norm": 0.09739134460687637,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 9.215356826782227,
+ "step": 36
+ },
+ {
+ "epoch": 0.5170305676855895,
+ "grad_norm": 0.0969916582107544,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 9.101107597351074,
+ "step": 37
+ },
+ {
+ "epoch": 0.5310043668122271,
+ "grad_norm": 0.0959910973906517,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 8.998035430908203,
+ "step": 38
+ },
+ {
+ "epoch": 0.5449781659388646,
+ "grad_norm": 0.09558682143688202,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 8.89165210723877,
+ "step": 39
+ },
+ {
+ "epoch": 0.5589519650655022,
+ "grad_norm": 0.09313725680112839,
+ "learning_rate": 0.000234,
+ "loss": 8.806523323059082,
+ "step": 40
+ },
+ {
+ "epoch": 0.5729257641921397,
+ "grad_norm": 0.09075582772493362,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 8.71815299987793,
+ "step": 41
+ },
+ {
+ "epoch": 0.5868995633187772,
+ "grad_norm": 0.08912578970193863,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 8.617330551147461,
+ "step": 42
+ },
+ {
+ "epoch": 0.6008733624454149,
+ "grad_norm": 0.08745060116052628,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 8.511157989501953,
+ "step": 43
+ },
+ {
+ "epoch": 0.6148471615720524,
+ "grad_norm": 0.08254463970661163,
+ "learning_rate": 0.000258,
+ "loss": 8.458954811096191,
+ "step": 44
+ },
+ {
+ "epoch": 0.62882096069869,
+ "grad_norm": 0.0795406699180603,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 8.37498664855957,
+ "step": 45
+ },
+ {
+ "epoch": 0.6427947598253275,
+ "grad_norm": 0.07730695605278015,
+ "learning_rate": 0.00027,
+ "loss": 8.293156623840332,
+ "step": 46
+ },
+ {
+ "epoch": 0.6567685589519651,
+ "grad_norm": 0.07404499500989914,
+ "learning_rate": 0.000276,
+ "loss": 8.200754165649414,
+ "step": 47
+ },
+ {
+ "epoch": 0.6707423580786026,
+ "grad_norm": 0.07091354578733444,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 8.114692687988281,
+ "step": 48
+ },
+ {
+ "epoch": 0.6847161572052402,
+ "grad_norm": 0.06816772371530533,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 8.060348510742188,
+ "step": 49
+ },
+ {
+ "epoch": 0.6986899563318777,
+ "grad_norm": 0.0605427622795105,
+ "learning_rate": 0.000294,
+ "loss": 7.991006851196289,
+ "step": 50
+ },
+ {
+ "epoch": 0.7126637554585152,
+ "grad_norm": 0.05635255202651024,
+ "learning_rate": 0.0003,
+ "loss": 7.945850372314453,
+ "step": 51
+ },
+ {
+ "epoch": 0.7266375545851529,
+ "grad_norm": 0.05419522523880005,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 7.895726203918457,
+ "step": 52
+ },
+ {
+ "epoch": 0.7406113537117904,
+ "grad_norm": 0.06724901497364044,
+ "learning_rate": 0.000312,
+ "loss": 7.839101791381836,
+ "step": 53
+ },
+ {
+ "epoch": 0.754585152838428,
+ "grad_norm": 0.12858672440052032,
+ "learning_rate": 0.000318,
+ "loss": 7.840076446533203,
+ "step": 54
+ },
+ {
+ "epoch": 0.7685589519650655,
+ "grad_norm": 0.05087178573012352,
+ "learning_rate": 0.000324,
+ "loss": 7.77433967590332,
+ "step": 55
+ },
+ {
+ "epoch": 0.7825327510917031,
+ "grad_norm": 0.0458969883620739,
+ "learning_rate": 0.00033,
+ "loss": 7.747459411621094,
+ "step": 56
+ },
+ {
+ "epoch": 0.7965065502183406,
+ "grad_norm": 0.03214738890528679,
+ "learning_rate": 0.000336,
+ "loss": 7.735766410827637,
+ "step": 57
+ },
+ {
+ "epoch": 0.8104803493449781,
+ "grad_norm": 0.022700699046254158,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 7.716371059417725,
+ "step": 58
+ },
+ {
+ "epoch": 0.8244541484716157,
+ "grad_norm": 0.02415020391345024,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 7.700209140777588,
+ "step": 59
+ },
+ {
+ "epoch": 0.8384279475982532,
+ "grad_norm": 0.021143650636076927,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 7.687976360321045,
+ "step": 60
+ },
+ {
+ "epoch": 0.8524017467248908,
+ "grad_norm": 0.019051192328333855,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 7.640708923339844,
+ "step": 61
+ },
+ {
+ "epoch": 0.8663755458515284,
+ "grad_norm": 0.02110682614147663,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 7.6529130935668945,
+ "step": 62
+ },
+ {
+ "epoch": 0.880349344978166,
+ "grad_norm": 0.024010686203837395,
+ "learning_rate": 0.000372,
+ "loss": 7.645641326904297,
+ "step": 63
+ },
+ {
+ "epoch": 0.8943231441048035,
+ "grad_norm": 0.02591090090572834,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 7.626849174499512,
+ "step": 64
+ },
+ {
+ "epoch": 0.9082969432314411,
+ "grad_norm": 0.02841993235051632,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 7.633922576904297,
+ "step": 65
+ },
+ {
+ "epoch": 0.9222707423580786,
+ "grad_norm": 0.02565363608300686,
+ "learning_rate": 0.00039,
+ "loss": 7.6236772537231445,
+ "step": 66
+ },
+ {
+ "epoch": 0.9362445414847161,
+ "grad_norm": 0.020100994035601616,
+ "learning_rate": 0.000396,
+ "loss": 7.602252006530762,
+ "step": 67
+ },
+ {
+ "epoch": 0.9502183406113537,
+ "grad_norm": 0.017415935173630714,
+ "learning_rate": 0.000402,
+ "loss": 7.574195861816406,
+ "step": 68
+ },
+ {
+ "epoch": 0.9641921397379912,
+ "grad_norm": 0.01630476303398609,
+ "learning_rate": 0.000408,
+ "loss": 7.578503131866455,
+ "step": 69
+ },
+ {
+ "epoch": 0.9781659388646288,
+ "grad_norm": 0.015402277931571007,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 7.54685115814209,
+ "step": 70
+ },
+ {
+ "epoch": 0.9921397379912664,
+ "grad_norm": 0.01438985951244831,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 7.546932220458984,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.016883183270692825,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 7.555042266845703,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 7.549549579620361,
+ "eval_runtime": 54.3422,
+ "eval_samples_per_second": 44.937,
+ "eval_steps_per_second": 1.417,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139737991266375,
+ "grad_norm": 0.01215015072375536,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 7.534733295440674,
+ "step": 73
+ },
+ {
+ "epoch": 1.027947598253275,
+ "grad_norm": 0.01328246109187603,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 7.543649196624756,
+ "step": 74
+ },
+ {
+ "epoch": 1.0419213973799126,
+ "grad_norm": 0.012859524227678776,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 7.50216817855835,
+ "step": 75
+ },
+ {
+ "epoch": 1.0558951965065502,
+ "grad_norm": 0.011157970875501633,
+ "learning_rate": 0.00045,
+ "loss": 7.508391857147217,
+ "step": 76
+ },
+ {
+ "epoch": 1.0698689956331877,
+ "grad_norm": 0.012834188528358936,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 7.4759087562561035,
+ "step": 77
+ },
+ {
+ "epoch": 1.0838427947598253,
+ "grad_norm": 0.013627874664962292,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 7.45142936706543,
+ "step": 78
+ },
+ {
+ "epoch": 1.0978165938864628,
+ "grad_norm": 0.01641070283949375,
+ "learning_rate": 0.000468,
+ "loss": 7.492819786071777,
+ "step": 79
+ },
+ {
+ "epoch": 1.1117903930131003,
+ "grad_norm": 0.025136210024356842,
+ "learning_rate": 0.000474,
+ "loss": 7.474215507507324,
+ "step": 80
+ },
+ {
+ "epoch": 1.125764192139738,
+ "grad_norm": 0.03659580647945404,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 7.475737571716309,
+ "step": 81
+ },
+ {
+ "epoch": 1.1397379912663754,
+ "grad_norm": 0.04370221868157387,
+ "learning_rate": 0.000486,
+ "loss": 7.453543663024902,
+ "step": 82
+ },
+ {
+ "epoch": 1.1537117903930132,
+ "grad_norm": 0.02917138673365116,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 7.424599647521973,
+ "step": 83
+ },
+ {
+ "epoch": 1.1676855895196507,
+ "grad_norm": 0.015414979308843613,
+ "learning_rate": 0.000498,
+ "loss": 7.388550758361816,
+ "step": 84
+ },
+ {
+ "epoch": 1.1816593886462883,
+ "grad_norm": 0.029156062752008438,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 7.379591941833496,
+ "step": 85
+ },
+ {
+ "epoch": 1.1956331877729258,
+ "grad_norm": 0.014958011917769909,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 7.372748374938965,
+ "step": 86
+ },
+ {
+ "epoch": 1.2096069868995634,
+ "grad_norm": 0.021887343376874924,
+ "learning_rate": 0.000516,
+ "loss": 7.3589630126953125,
+ "step": 87
+ },
+ {
+ "epoch": 1.223580786026201,
+ "grad_norm": 0.02962890826165676,
+ "learning_rate": 0.000522,
+ "loss": 7.373016357421875,
+ "step": 88
+ },
+ {
+ "epoch": 1.2375545851528384,
+ "grad_norm": 0.031032968312501907,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 7.3282928466796875,
+ "step": 89
+ },
+ {
+ "epoch": 1.251528384279476,
+ "grad_norm": 0.027690274640917778,
+ "learning_rate": 0.000534,
+ "loss": 7.320304870605469,
+ "step": 90
+ },
+ {
+ "epoch": 1.2655021834061135,
+ "grad_norm": 0.022552549839019775,
+ "learning_rate": 0.00054,
+ "loss": 7.3051300048828125,
+ "step": 91
+ },
+ {
+ "epoch": 1.279475982532751,
+ "grad_norm": 0.04130178689956665,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 7.284594535827637,
+ "step": 92
+ },
+ {
+ "epoch": 1.2934497816593886,
+ "grad_norm": 0.05043136328458786,
+ "learning_rate": 0.000552,
+ "loss": 7.286007881164551,
+ "step": 93
+ },
+ {
+ "epoch": 1.3074235807860262,
+ "grad_norm": 0.04574465751647949,
+ "learning_rate": 0.000558,
+ "loss": 7.22679328918457,
+ "step": 94
+ },
+ {
+ "epoch": 1.3213973799126637,
+ "grad_norm": 0.03277682512998581,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 7.229741096496582,
+ "step": 95
+ },
+ {
+ "epoch": 1.3353711790393012,
+ "grad_norm": 0.022675029933452606,
+ "learning_rate": 0.00057,
+ "loss": 7.241637706756592,
+ "step": 96
+ },
+ {
+ "epoch": 1.3493449781659388,
+ "grad_norm": 0.03889699652791023,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 7.193673133850098,
+ "step": 97
+ },
+ {
+ "epoch": 1.3633187772925766,
+ "grad_norm": 0.029434625059366226,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 7.1953840255737305,
+ "step": 98
+ },
+ {
+ "epoch": 1.3772925764192139,
+ "grad_norm": 0.02118326723575592,
+ "learning_rate": 0.000588,
+ "loss": 7.178635597229004,
+ "step": 99
+ },
+ {
+ "epoch": 1.3912663755458516,
+ "grad_norm": 0.02966528758406639,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 7.151487350463867,
+ "step": 100
+ },
+ {
+ "epoch": 1.405240174672489,
+ "grad_norm": 0.0450727716088295,
+ "learning_rate": 0.0006,
+ "loss": 7.144834995269775,
+ "step": 101
+ },
+ {
+ "epoch": 1.4192139737991267,
+ "grad_norm": 0.08898167312145233,
+ "learning_rate": 0.0006,
+ "loss": 7.180665969848633,
+ "step": 102
+ },
+ {
+ "epoch": 1.4331877729257643,
+ "grad_norm": 0.10679084807634354,
+ "learning_rate": 0.0006,
+ "loss": 7.233458518981934,
+ "step": 103
+ },
+ {
+ "epoch": 1.4471615720524018,
+ "grad_norm": 0.04746336117386818,
+ "learning_rate": 0.0006,
+ "loss": 7.167373180389404,
+ "step": 104
+ },
+ {
+ "epoch": 1.4611353711790394,
+ "grad_norm": 0.06380590051412582,
+ "learning_rate": 0.0006,
+ "loss": 7.189356803894043,
+ "step": 105
+ },
+ {
+ "epoch": 1.475109170305677,
+ "grad_norm": 0.039717014878988266,
+ "learning_rate": 0.0006,
+ "loss": 7.096653938293457,
+ "step": 106
+ },
+ {
+ "epoch": 1.4890829694323144,
+ "grad_norm": 0.06762711703777313,
+ "learning_rate": 0.0006,
+ "loss": 7.127993583679199,
+ "step": 107
+ },
+ {
+ "epoch": 1.503056768558952,
+ "grad_norm": 0.05134489759802818,
+ "learning_rate": 0.0006,
+ "loss": 7.072257995605469,
+ "step": 108
+ },
+ {
+ "epoch": 1.5170305676855895,
+ "grad_norm": 0.062314722687006,
+ "learning_rate": 0.0006,
+ "loss": 7.073700904846191,
+ "step": 109
+ },
+ {
+ "epoch": 1.531004366812227,
+ "grad_norm": 0.03607739135622978,
+ "learning_rate": 0.0006,
+ "loss": 7.051465034484863,
+ "step": 110
+ },
+ {
+ "epoch": 1.5449781659388646,
+ "grad_norm": 0.04546204209327698,
+ "learning_rate": 0.0006,
+ "loss": 7.049814224243164,
+ "step": 111
+ },
+ {
+ "epoch": 1.5589519650655022,
+ "grad_norm": 0.0319792665541172,
+ "learning_rate": 0.0006,
+ "loss": 7.0164875984191895,
+ "step": 112
+ },
+ {
+ "epoch": 1.5729257641921397,
+ "grad_norm": 0.04590746760368347,
+ "learning_rate": 0.0006,
+ "loss": 7.001565456390381,
+ "step": 113
+ },
+ {
+ "epoch": 1.5868995633187772,
+ "grad_norm": 0.031896382570266724,
+ "learning_rate": 0.0006,
+ "loss": 6.994606018066406,
+ "step": 114
+ },
+ {
+ "epoch": 1.600873362445415,
+ "grad_norm": 0.021410338580608368,
+ "learning_rate": 0.0006,
+ "loss": 6.947071075439453,
+ "step": 115
+ },
+ {
+ "epoch": 1.6148471615720523,
+ "grad_norm": 0.030063210055232048,
+ "learning_rate": 0.0006,
+ "loss": 6.979219913482666,
+ "step": 116
+ },
+ {
+ "epoch": 1.62882096069869,
+ "grad_norm": 0.02234027162194252,
+ "learning_rate": 0.0006,
+ "loss": 6.929020881652832,
+ "step": 117
+ },
+ {
+ "epoch": 1.6427947598253274,
+ "grad_norm": 0.025586063042283058,
+ "learning_rate": 0.0006,
+ "loss": 6.9200663566589355,
+ "step": 118
+ },
+ {
+ "epoch": 1.6567685589519652,
+ "grad_norm": 0.022098371759057045,
+ "learning_rate": 0.0006,
+ "loss": 6.899832248687744,
+ "step": 119
+ },
+ {
+ "epoch": 1.6707423580786025,
+ "grad_norm": 0.019238410517573357,
+ "learning_rate": 0.0006,
+ "loss": 6.8586015701293945,
+ "step": 120
+ },
+ {
+ "epoch": 1.6847161572052403,
+ "grad_norm": 0.024153294041752815,
+ "learning_rate": 0.0006,
+ "loss": 6.867973327636719,
+ "step": 121
+ },
+ {
+ "epoch": 1.6986899563318776,
+ "grad_norm": 0.01690024696290493,
+ "learning_rate": 0.0006,
+ "loss": 6.878490447998047,
+ "step": 122
+ },
+ {
+ "epoch": 1.7126637554585153,
+ "grad_norm": 0.02171619050204754,
+ "learning_rate": 0.0006,
+ "loss": 6.853621959686279,
+ "step": 123
+ },
+ {
+ "epoch": 1.726637554585153,
+ "grad_norm": 0.020535755902528763,
+ "learning_rate": 0.0006,
+ "loss": 6.852185249328613,
+ "step": 124
+ },
+ {
+ "epoch": 1.7406113537117904,
+ "grad_norm": 0.015457311645150185,
+ "learning_rate": 0.0006,
+ "loss": 6.826596260070801,
+ "step": 125
+ },
+ {
+ "epoch": 1.754585152838428,
+ "grad_norm": 0.017492085695266724,
+ "learning_rate": 0.0006,
+ "loss": 6.842765808105469,
+ "step": 126
+ },
+ {
+ "epoch": 1.7685589519650655,
+ "grad_norm": 0.014785612002015114,
+ "learning_rate": 0.0006,
+ "loss": 6.849224090576172,
+ "step": 127
+ },
+ {
+ "epoch": 1.782532751091703,
+ "grad_norm": 0.017512250691652298,
+ "learning_rate": 0.0006,
+ "loss": 6.824787139892578,
+ "step": 128
+ },
+ {
+ "epoch": 1.7965065502183406,
+ "grad_norm": 0.01895114593207836,
+ "learning_rate": 0.0006,
+ "loss": 6.801428318023682,
+ "step": 129
+ },
+ {
+ "epoch": 1.8104803493449781,
+ "grad_norm": 0.015728816390037537,
+ "learning_rate": 0.0006,
+ "loss": 6.801990985870361,
+ "step": 130
+ },
+ {
+ "epoch": 1.8244541484716157,
+ "grad_norm": 0.014321585185825825,
+ "learning_rate": 0.0006,
+ "loss": 6.793122291564941,
+ "step": 131
+ },
+ {
+ "epoch": 1.8384279475982532,
+ "grad_norm": 0.016692014411091805,
+ "learning_rate": 0.0006,
+ "loss": 6.74687385559082,
+ "step": 132
+ },
+ {
+ "epoch": 1.8524017467248908,
+ "grad_norm": 0.016697920858860016,
+ "learning_rate": 0.0006,
+ "loss": 6.75140380859375,
+ "step": 133
+ },
+ {
+ "epoch": 1.8663755458515285,
+ "grad_norm": 0.014954701997339725,
+ "learning_rate": 0.0006,
+ "loss": 6.746084213256836,
+ "step": 134
+ },
+ {
+ "epoch": 1.8803493449781659,
+ "grad_norm": 0.013010316528379917,
+ "learning_rate": 0.0006,
+ "loss": 6.725405693054199,
+ "step": 135
+ },
+ {
+ "epoch": 1.8943231441048036,
+ "grad_norm": 0.011892660520970821,
+ "learning_rate": 0.0006,
+ "loss": 6.718758583068848,
+ "step": 136
+ },
+ {
+ "epoch": 1.908296943231441,
+ "grad_norm": 0.012127497233450413,
+ "learning_rate": 0.0006,
+ "loss": 6.708139419555664,
+ "step": 137
+ },
+ {
+ "epoch": 1.9222707423580787,
+ "grad_norm": 0.015417213551700115,
+ "learning_rate": 0.0006,
+ "loss": 6.705748558044434,
+ "step": 138
+ },
+ {
+ "epoch": 1.936244541484716,
+ "grad_norm": 0.03063729591667652,
+ "learning_rate": 0.0006,
+ "loss": 6.691249847412109,
+ "step": 139
+ },
+ {
+ "epoch": 1.9502183406113538,
+ "grad_norm": 0.07376791536808014,
+ "learning_rate": 0.0006,
+ "loss": 6.71767520904541,
+ "step": 140
+ },
+ {
+ "epoch": 1.9641921397379911,
+ "grad_norm": 0.14157423377037048,
+ "learning_rate": 0.0006,
+ "loss": 6.787544250488281,
+ "step": 141
+ },
+ {
+ "epoch": 1.9781659388646289,
+ "grad_norm": 0.09186933934688568,
+ "learning_rate": 0.0006,
+ "loss": 6.73362398147583,
+ "step": 142
+ },
+ {
+ "epoch": 1.9921397379912664,
+ "grad_norm": 0.06612848490476608,
+ "learning_rate": 0.0006,
+ "loss": 6.719516754150391,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.048072297126054764,
+ "learning_rate": 0.0006,
+ "loss": 6.666120529174805,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 6.7162394523620605,
+ "eval_runtime": 50.5907,
+ "eval_samples_per_second": 48.27,
+ "eval_steps_per_second": 1.522,
+ "step": 144
+ },
+ {
+ "epoch": 2.0139737991266378,
+ "grad_norm": 0.03777749463915825,
+ "learning_rate": 0.0006,
+ "loss": 6.686484336853027,
+ "step": 145
+ },
+ {
+ "epoch": 2.027947598253275,
+ "grad_norm": 0.04378646984696388,
+ "learning_rate": 0.0006,
+ "loss": 6.679071426391602,
+ "step": 146
+ },
+ {
+ "epoch": 2.041921397379913,
+ "grad_norm": 0.027715124189853668,
+ "learning_rate": 0.0006,
+ "loss": 6.6776323318481445,
+ "step": 147
+ },
+ {
+ "epoch": 2.05589519650655,
+ "grad_norm": 0.03411925211548805,
+ "learning_rate": 0.0006,
+ "loss": 6.643917083740234,
+ "step": 148
+ },
+ {
+ "epoch": 2.069868995633188,
+ "grad_norm": 0.034444212913513184,
+ "learning_rate": 0.0006,
+ "loss": 6.67141056060791,
+ "step": 149
+ },
+ {
+ "epoch": 2.0838427947598253,
+ "grad_norm": 0.0387650802731514,
+ "learning_rate": 0.0006,
+ "loss": 6.65234375,
+ "step": 150
+ },
+ {
+ "epoch": 2.097816593886463,
+ "grad_norm": 0.03921861574053764,
+ "learning_rate": 0.0006,
+ "loss": 6.624712944030762,
+ "step": 151
+ },
+ {
+ "epoch": 2.1117903930131003,
+ "grad_norm": 0.02531580813229084,
+ "learning_rate": 0.0006,
+ "loss": 6.617608547210693,
+ "step": 152
+ },
+ {
+ "epoch": 2.125764192139738,
+ "grad_norm": 0.03220974653959274,
+ "learning_rate": 0.0006,
+ "loss": 6.587964057922363,
+ "step": 153
+ },
+ {
+ "epoch": 2.1397379912663754,
+ "grad_norm": 0.03923291340470314,
+ "learning_rate": 0.0006,
+ "loss": 6.588845252990723,
+ "step": 154
+ },
+ {
+ "epoch": 2.153711790393013,
+ "grad_norm": 0.028337281197309494,
+ "learning_rate": 0.0006,
+ "loss": 6.5807952880859375,
+ "step": 155
+ },
+ {
+ "epoch": 2.1676855895196505,
+ "grad_norm": 0.01873156800866127,
+ "learning_rate": 0.0006,
+ "loss": 6.560453414916992,
+ "step": 156
+ },
+ {
+ "epoch": 2.1816593886462883,
+ "grad_norm": 0.027509493753314018,
+ "learning_rate": 0.0006,
+ "loss": 6.5615363121032715,
+ "step": 157
+ },
+ {
+ "epoch": 2.1956331877729256,
+ "grad_norm": 0.025428347289562225,
+ "learning_rate": 0.0006,
+ "loss": 6.5283966064453125,
+ "step": 158
+ },
+ {
+ "epoch": 2.2096069868995634,
+ "grad_norm": 0.02118629403412342,
+ "learning_rate": 0.0006,
+ "loss": 6.526224136352539,
+ "step": 159
+ },
+ {
+ "epoch": 2.2235807860262007,
+ "grad_norm": 0.03233652561903,
+ "learning_rate": 0.0006,
+ "loss": 6.536041259765625,
+ "step": 160
+ },
+ {
+ "epoch": 2.2375545851528384,
+ "grad_norm": 0.04605546221137047,
+ "learning_rate": 0.0006,
+ "loss": 6.537662029266357,
+ "step": 161
+ },
+ {
+ "epoch": 2.251528384279476,
+ "grad_norm": 0.05192062631249428,
+ "learning_rate": 0.0006,
+ "loss": 6.551901817321777,
+ "step": 162
+ },
+ {
+ "epoch": 2.2655021834061135,
+ "grad_norm": 0.042231615632772446,
+ "learning_rate": 0.0006,
+ "loss": 6.511076927185059,
+ "step": 163
+ },
+ {
+ "epoch": 2.279475982532751,
+ "grad_norm": 0.04085887596011162,
+ "learning_rate": 0.0006,
+ "loss": 6.503472328186035,
+ "step": 164
+ },
+ {
+ "epoch": 2.2934497816593886,
+ "grad_norm": 0.031182587146759033,
+ "learning_rate": 0.0006,
+ "loss": 6.504403591156006,
+ "step": 165
+ },
+ {
+ "epoch": 2.3074235807860264,
+ "grad_norm": 0.032555561512708664,
+ "learning_rate": 0.0006,
+ "loss": 6.4552764892578125,
+ "step": 166
+ },
+ {
+ "epoch": 2.3213973799126637,
+ "grad_norm": 0.04939635097980499,
+ "learning_rate": 0.0006,
+ "loss": 6.495351791381836,
+ "step": 167
+ },
+ {
+ "epoch": 2.3353711790393015,
+ "grad_norm": 0.037503793835639954,
+ "learning_rate": 0.0006,
+ "loss": 6.4742560386657715,
+ "step": 168
+ },
+ {
+ "epoch": 2.349344978165939,
+ "grad_norm": 0.02366613782942295,
+ "learning_rate": 0.0006,
+ "loss": 6.478525161743164,
+ "step": 169
+ },
+ {
+ "epoch": 2.3633187772925766,
+ "grad_norm": 0.022314894944429398,
+ "learning_rate": 0.0006,
+ "loss": 6.414134979248047,
+ "step": 170
+ },
+ {
+ "epoch": 2.377292576419214,
+ "grad_norm": 0.030494702979922295,
+ "learning_rate": 0.0006,
+ "loss": 6.444867134094238,
+ "step": 171
+ },
+ {
+ "epoch": 2.3912663755458516,
+ "grad_norm": 0.04064486175775528,
+ "learning_rate": 0.0006,
+ "loss": 6.417036056518555,
+ "step": 172
+ },
+ {
+ "epoch": 2.405240174672489,
+ "grad_norm": 0.03061651438474655,
+ "learning_rate": 0.0006,
+ "loss": 6.423735618591309,
+ "step": 173
+ },
+ {
+ "epoch": 2.4192139737991267,
+ "grad_norm": 0.02046056278049946,
+ "learning_rate": 0.0006,
+ "loss": 6.419736862182617,
+ "step": 174
+ },
+ {
+ "epoch": 2.433187772925764,
+ "grad_norm": 0.02530163712799549,
+ "learning_rate": 0.0006,
+ "loss": 6.399930953979492,
+ "step": 175
+ },
+ {
+ "epoch": 2.447161572052402,
+ "grad_norm": 0.03588842228055,
+ "learning_rate": 0.0006,
+ "loss": 6.418618202209473,
+ "step": 176
+ },
+ {
+ "epoch": 2.461135371179039,
+ "grad_norm": 0.04048234224319458,
+ "learning_rate": 0.0006,
+ "loss": 6.390285491943359,
+ "step": 177
+ },
+ {
+ "epoch": 2.475109170305677,
+ "grad_norm": 0.039080191403627396,
+ "learning_rate": 0.0006,
+ "loss": 6.3688530921936035,
+ "step": 178
+ },
+ {
+ "epoch": 2.489082969432314,
+ "grad_norm": 0.029000122100114822,
+ "learning_rate": 0.0006,
+ "loss": 6.369181156158447,
+ "step": 179
+ },
+ {
+ "epoch": 2.503056768558952,
+ "grad_norm": 0.01609761081635952,
+ "learning_rate": 0.0006,
+ "loss": 6.359917640686035,
+ "step": 180
+ },
+ {
+ "epoch": 2.5170305676855893,
+ "grad_norm": 0.02305005118250847,
+ "learning_rate": 0.0006,
+ "loss": 6.347358226776123,
+ "step": 181
+ },
+ {
+ "epoch": 2.531004366812227,
+ "grad_norm": 0.03316781297326088,
+ "learning_rate": 0.0006,
+ "loss": 6.36626672744751,
+ "step": 182
+ },
+ {
+ "epoch": 2.544978165938865,
+ "grad_norm": 0.05111207440495491,
+ "learning_rate": 0.0006,
+ "loss": 6.380453109741211,
+ "step": 183
+ },
+ {
+ "epoch": 2.558951965065502,
+ "grad_norm": 0.062241602689027786,
+ "learning_rate": 0.0006,
+ "loss": 6.353237152099609,
+ "step": 184
+ },
+ {
+ "epoch": 2.5729257641921395,
+ "grad_norm": 0.060149725526571274,
+ "learning_rate": 0.0006,
+ "loss": 6.358938694000244,
+ "step": 185
+ },
+ {
+ "epoch": 2.5868995633187772,
+ "grad_norm": 0.04228121414780617,
+ "learning_rate": 0.0006,
+ "loss": 6.310116767883301,
+ "step": 186
+ },
+ {
+ "epoch": 2.600873362445415,
+ "grad_norm": 0.019458215683698654,
+ "learning_rate": 0.0006,
+ "loss": 6.284702777862549,
+ "step": 187
+ },
+ {
+ "epoch": 2.6148471615720523,
+ "grad_norm": 0.0342358835041523,
+ "learning_rate": 0.0006,
+ "loss": 6.316659927368164,
+ "step": 188
+ },
+ {
+ "epoch": 2.62882096069869,
+ "grad_norm": 0.04139583557844162,
+ "learning_rate": 0.0006,
+ "loss": 6.301124572753906,
+ "step": 189
+ },
+ {
+ "epoch": 2.6427947598253274,
+ "grad_norm": 0.028264787048101425,
+ "learning_rate": 0.0006,
+ "loss": 6.298510551452637,
+ "step": 190
+ },
+ {
+ "epoch": 2.656768558951965,
+ "grad_norm": 0.023622136563062668,
+ "learning_rate": 0.0006,
+ "loss": 6.2571210861206055,
+ "step": 191
+ },
+ {
+ "epoch": 2.6707423580786025,
+ "grad_norm": 0.039508845657110214,
+ "learning_rate": 0.0006,
+ "loss": 6.267218589782715,
+ "step": 192
+ },
+ {
+ "epoch": 2.6847161572052403,
+ "grad_norm": 0.043358899652957916,
+ "learning_rate": 0.0006,
+ "loss": 6.279658794403076,
+ "step": 193
+ },
+ {
+ "epoch": 2.6986899563318776,
+ "grad_norm": 0.04134640842676163,
+ "learning_rate": 0.0006,
+ "loss": 6.277159214019775,
+ "step": 194
+ },
+ {
+ "epoch": 2.7126637554585153,
+ "grad_norm": 0.05406952276825905,
+ "learning_rate": 0.0006,
+ "loss": 6.295559883117676,
+ "step": 195
+ },
+ {
+ "epoch": 2.726637554585153,
+ "grad_norm": 0.04557774215936661,
+ "learning_rate": 0.0006,
+ "loss": 6.260174751281738,
+ "step": 196
+ },
+ {
+ "epoch": 2.7406113537117904,
+ "grad_norm": 0.04542337730526924,
+ "learning_rate": 0.0006,
+ "loss": 6.244534492492676,
+ "step": 197
+ },
+ {
+ "epoch": 2.7545851528384278,
+ "grad_norm": 0.06924881041049957,
+ "learning_rate": 0.0006,
+ "loss": 6.2060723304748535,
+ "step": 198
+ },
+ {
+ "epoch": 2.7685589519650655,
+ "grad_norm": 0.06679725646972656,
+ "learning_rate": 0.0006,
+ "loss": 6.259133815765381,
+ "step": 199
+ },
+ {
+ "epoch": 2.7825327510917033,
+ "grad_norm": 0.05039471387863159,
+ "learning_rate": 0.0006,
+ "loss": 6.239280700683594,
+ "step": 200
+ },
+ {
+ "epoch": 2.7965065502183406,
+ "grad_norm": 0.05935394763946533,
+ "learning_rate": 0.0006,
+ "loss": 6.242481231689453,
+ "step": 201
+ },
+ {
+ "epoch": 2.810480349344978,
+ "grad_norm": 0.0486418716609478,
+ "learning_rate": 0.0006,
+ "loss": 6.239593505859375,
+ "step": 202
+ },
+ {
+ "epoch": 2.8244541484716157,
+ "grad_norm": 0.05010748282074928,
+ "learning_rate": 0.0006,
+ "loss": 6.2328948974609375,
+ "step": 203
+ },
+ {
+ "epoch": 2.8384279475982535,
+ "grad_norm": 0.03444438800215721,
+ "learning_rate": 0.0006,
+ "loss": 6.200089454650879,
+ "step": 204
+ },
+ {
+ "epoch": 2.8524017467248908,
+ "grad_norm": 0.043253373354673386,
+ "learning_rate": 0.0006,
+ "loss": 6.2089433670043945,
+ "step": 205
+ },
+ {
+ "epoch": 2.8663755458515285,
+ "grad_norm": 0.047505684196949005,
+ "learning_rate": 0.0006,
+ "loss": 6.220322608947754,
+ "step": 206
+ },
+ {
+ "epoch": 2.880349344978166,
+ "grad_norm": 0.04393792524933815,
+ "learning_rate": 0.0006,
+ "loss": 6.178770542144775,
+ "step": 207
+ },
+ {
+ "epoch": 2.8943231441048036,
+ "grad_norm": 0.04025835916399956,
+ "learning_rate": 0.0006,
+ "loss": 6.160248756408691,
+ "step": 208
+ },
+ {
+ "epoch": 2.908296943231441,
+ "grad_norm": 0.03877986595034599,
+ "learning_rate": 0.0006,
+ "loss": 6.164917945861816,
+ "step": 209
+ },
+ {
+ "epoch": 2.9222707423580787,
+ "grad_norm": 0.03666771203279495,
+ "learning_rate": 0.0006,
+ "loss": 6.172199249267578,
+ "step": 210
+ },
+ {
+ "epoch": 2.936244541484716,
+ "grad_norm": 0.028036516159772873,
+ "learning_rate": 0.0006,
+ "loss": 6.179510116577148,
+ "step": 211
+ },
+ {
+ "epoch": 2.950218340611354,
+ "grad_norm": 0.021492617204785347,
+ "learning_rate": 0.0006,
+ "loss": 6.1275153160095215,
+ "step": 212
+ },
+ {
+ "epoch": 2.964192139737991,
+ "grad_norm": 0.026816558092832565,
+ "learning_rate": 0.0006,
+ "loss": 6.131775856018066,
+ "step": 213
+ },
+ {
+ "epoch": 2.978165938864629,
+ "grad_norm": 0.03757898136973381,
+ "learning_rate": 0.0006,
+ "loss": 6.135777473449707,
+ "step": 214
+ },
+ {
+ "epoch": 2.992139737991266,
+ "grad_norm": 0.06036437302827835,
+ "learning_rate": 0.0006,
+ "loss": 6.146076202392578,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.09846952557563782,
+ "learning_rate": 0.0006,
+ "loss": 6.218435287475586,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 6.23890495300293,
+ "eval_runtime": 50.6822,
+ "eval_samples_per_second": 48.183,
+ "eval_steps_per_second": 1.519,
+ "step": 216
+ },
+ {
+ "epoch": 3.0139737991266378,
+ "grad_norm": 0.10463741421699524,
+ "learning_rate": 0.0006,
+ "loss": 6.197120666503906,
+ "step": 217
+ },
+ {
+ "epoch": 3.027947598253275,
+ "grad_norm": 0.10212419927120209,
+ "learning_rate": 0.0006,
+ "loss": 6.178340911865234,
+ "step": 218
+ },
+ {
+ "epoch": 3.041921397379913,
+ "grad_norm": 0.08038751780986786,
+ "learning_rate": 0.0006,
+ "loss": 6.217406749725342,
+ "step": 219
+ },
+ {
+ "epoch": 3.05589519650655,
+ "grad_norm": 0.04787508398294449,
+ "learning_rate": 0.0006,
+ "loss": 6.155381679534912,
+ "step": 220
+ },
+ {
+ "epoch": 3.069868995633188,
+ "grad_norm": 0.06880322843790054,
+ "learning_rate": 0.0006,
+ "loss": 6.121614933013916,
+ "step": 221
+ },
+ {
+ "epoch": 3.0838427947598253,
+ "grad_norm": 0.03749438002705574,
+ "learning_rate": 0.0006,
+ "loss": 6.120484352111816,
+ "step": 222
+ },
+ {
+ "epoch": 3.097816593886463,
+ "grad_norm": 0.03875046223402023,
+ "learning_rate": 0.0006,
+ "loss": 6.12362003326416,
+ "step": 223
+ },
+ {
+ "epoch": 3.1117903930131003,
+ "grad_norm": 0.030663209035992622,
+ "learning_rate": 0.0006,
+ "loss": 6.1111063957214355,
+ "step": 224
+ },
+ {
+ "epoch": 3.125764192139738,
+ "grad_norm": 0.029520904645323753,
+ "learning_rate": 0.0006,
+ "loss": 6.130336761474609,
+ "step": 225
+ },
+ {
+ "epoch": 3.1397379912663754,
+ "grad_norm": 0.02854953519999981,
+ "learning_rate": 0.0006,
+ "loss": 6.086193084716797,
+ "step": 226
+ },
+ {
+ "epoch": 3.153711790393013,
+ "grad_norm": 0.027147898450493813,
+ "learning_rate": 0.0006,
+ "loss": 6.066827774047852,
+ "step": 227
+ },
+ {
+ "epoch": 3.1676855895196505,
+ "grad_norm": 0.025577887892723083,
+ "learning_rate": 0.0006,
+ "loss": 6.070775032043457,
+ "step": 228
+ },
+ {
+ "epoch": 3.1816593886462883,
+ "grad_norm": 0.026318276301026344,
+ "learning_rate": 0.0006,
+ "loss": 6.064469814300537,
+ "step": 229
+ },
+ {
+ "epoch": 3.1956331877729256,
+ "grad_norm": 0.02595221996307373,
+ "learning_rate": 0.0006,
+ "loss": 6.066489219665527,
+ "step": 230
+ },
+ {
+ "epoch": 3.2096069868995634,
+ "grad_norm": 0.0248890221118927,
+ "learning_rate": 0.0006,
+ "loss": 6.032470703125,
+ "step": 231
+ },
+ {
+ "epoch": 3.2235807860262007,
+ "grad_norm": 0.017041699960827827,
+ "learning_rate": 0.0006,
+ "loss": 6.056160926818848,
+ "step": 232
+ },
+ {
+ "epoch": 3.2375545851528384,
+ "grad_norm": 0.020971592515707016,
+ "learning_rate": 0.0006,
+ "loss": 6.024506568908691,
+ "step": 233
+ },
+ {
+ "epoch": 3.251528384279476,
+ "grad_norm": 0.01897028088569641,
+ "learning_rate": 0.0006,
+ "loss": 6.035656929016113,
+ "step": 234
+ },
+ {
+ "epoch": 3.2655021834061135,
+ "grad_norm": 0.027151981368660927,
+ "learning_rate": 0.0006,
+ "loss": 6.026547431945801,
+ "step": 235
+ },
+ {
+ "epoch": 3.279475982532751,
+ "grad_norm": 0.029453502967953682,
+ "learning_rate": 0.0006,
+ "loss": 5.981723785400391,
+ "step": 236
+ },
+ {
+ "epoch": 3.2934497816593886,
+ "grad_norm": 0.027771083638072014,
+ "learning_rate": 0.0006,
+ "loss": 6.019796371459961,
+ "step": 237
+ },
+ {
+ "epoch": 3.3074235807860264,
+ "grad_norm": 0.02605084516108036,
+ "learning_rate": 0.0006,
+ "loss": 5.984506607055664,
+ "step": 238
+ },
+ {
+ "epoch": 3.3213973799126637,
+ "grad_norm": 0.022903922945261,
+ "learning_rate": 0.0006,
+ "loss": 6.023873805999756,
+ "step": 239
+ },
+ {
+ "epoch": 3.3353711790393015,
+ "grad_norm": 0.01976492442190647,
+ "learning_rate": 0.0006,
+ "loss": 6.009030342102051,
+ "step": 240
+ },
+ {
+ "epoch": 3.349344978165939,
+ "grad_norm": 0.018872970715165138,
+ "learning_rate": 0.0006,
+ "loss": 5.970742702484131,
+ "step": 241
+ },
+ {
+ "epoch": 3.3633187772925766,
+ "grad_norm": 0.017447829246520996,
+ "learning_rate": 0.0006,
+ "loss": 5.968851089477539,
+ "step": 242
+ },
+ {
+ "epoch": 3.377292576419214,
+ "grad_norm": 0.025419825688004494,
+ "learning_rate": 0.0006,
+ "loss": 5.956470489501953,
+ "step": 243
+ },
+ {
+ "epoch": 3.3912663755458516,
+ "grad_norm": 0.03654123470187187,
+ "learning_rate": 0.0006,
+ "loss": 5.94770622253418,
+ "step": 244
+ },
+ {
+ "epoch": 3.405240174672489,
+ "grad_norm": 0.05607098713517189,
+ "learning_rate": 0.0006,
+ "loss": 6.008593559265137,
+ "step": 245
+ },
+ {
+ "epoch": 3.4192139737991267,
+ "grad_norm": 0.07973720878362656,
+ "learning_rate": 0.0006,
+ "loss": 5.9966888427734375,
+ "step": 246
+ },
+ {
+ "epoch": 3.433187772925764,
+ "grad_norm": 0.10906023532152176,
+ "learning_rate": 0.0006,
+ "loss": 6.054642200469971,
+ "step": 247
+ },
+ {
+ "epoch": 3.447161572052402,
+ "grad_norm": 0.09792660176753998,
+ "learning_rate": 0.0006,
+ "loss": 6.067026138305664,
+ "step": 248
+ },
+ {
+ "epoch": 3.461135371179039,
+ "grad_norm": 0.07395700365304947,
+ "learning_rate": 0.0006,
+ "loss": 6.01310920715332,
+ "step": 249
+ },
+ {
+ "epoch": 3.475109170305677,
+ "grad_norm": 0.10172071307897568,
+ "learning_rate": 0.0006,
+ "loss": 6.048509120941162,
+ "step": 250
+ },
+ {
+ "epoch": 3.489082969432314,
+ "grad_norm": 0.0717678815126419,
+ "learning_rate": 0.0006,
+ "loss": 6.055008888244629,
+ "step": 251
+ },
+ {
+ "epoch": 3.503056768558952,
+ "grad_norm": 0.06398089975118637,
+ "learning_rate": 0.0006,
+ "loss": 5.9677276611328125,
+ "step": 252
+ },
+ {
+ "epoch": 3.5170305676855893,
+ "grad_norm": 0.0643860474228859,
+ "learning_rate": 0.0006,
+ "loss": 5.957507133483887,
+ "step": 253
+ },
+ {
+ "epoch": 3.531004366812227,
+ "grad_norm": 0.03472325950860977,
+ "learning_rate": 0.0006,
+ "loss": 5.952362060546875,
+ "step": 254
+ },
+ {
+ "epoch": 3.544978165938865,
+ "grad_norm": 0.03918307647109032,
+ "learning_rate": 0.0006,
+ "loss": 5.957100868225098,
+ "step": 255
+ },
+ {
+ "epoch": 3.558951965065502,
+ "grad_norm": 0.03519073501229286,
+ "learning_rate": 0.0006,
+ "loss": 5.97830867767334,
+ "step": 256
+ },
+ {
+ "epoch": 3.5729257641921395,
+ "grad_norm": 0.03435497358441353,
+ "learning_rate": 0.0006,
+ "loss": 5.93912410736084,
+ "step": 257
+ },
+ {
+ "epoch": 3.5868995633187772,
+ "grad_norm": 0.026064487174153328,
+ "learning_rate": 0.0006,
+ "loss": 5.91353702545166,
+ "step": 258
+ },
+ {
+ "epoch": 3.600873362445415,
+ "grad_norm": 0.03159152343869209,
+ "learning_rate": 0.0006,
+ "loss": 5.913291931152344,
+ "step": 259
+ },
+ {
+ "epoch": 3.6148471615720523,
+ "grad_norm": 0.02195592038333416,
+ "learning_rate": 0.0006,
+ "loss": 5.906322479248047,
+ "step": 260
+ },
+ {
+ "epoch": 3.62882096069869,
+ "grad_norm": 0.020358966663479805,
+ "learning_rate": 0.0006,
+ "loss": 5.891860008239746,
+ "step": 261
+ },
+ {
+ "epoch": 3.6427947598253274,
+ "grad_norm": 0.01964488998055458,
+ "learning_rate": 0.0006,
+ "loss": 5.881132125854492,
+ "step": 262
+ },
+ {
+ "epoch": 3.656768558951965,
+ "grad_norm": 0.022447235882282257,
+ "learning_rate": 0.0006,
+ "loss": 5.8846940994262695,
+ "step": 263
+ },
+ {
+ "epoch": 3.6707423580786025,
+ "grad_norm": 0.018359875306487083,
+ "learning_rate": 0.0006,
+ "loss": 5.8861188888549805,
+ "step": 264
+ },
+ {
+ "epoch": 3.6847161572052403,
+ "grad_norm": 0.018481185659766197,
+ "learning_rate": 0.0006,
+ "loss": 5.874635696411133,
+ "step": 265
+ },
+ {
+ "epoch": 3.6986899563318776,
+ "grad_norm": 0.016943952068686485,
+ "learning_rate": 0.0006,
+ "loss": 5.8380126953125,
+ "step": 266
+ },
+ {
+ "epoch": 3.7126637554585153,
+ "grad_norm": 0.016593772917985916,
+ "learning_rate": 0.0006,
+ "loss": 5.855746269226074,
+ "step": 267
+ },
+ {
+ "epoch": 3.726637554585153,
+ "grad_norm": 0.018204636871814728,
+ "learning_rate": 0.0006,
+ "loss": 5.873927116394043,
+ "step": 268
+ },
+ {
+ "epoch": 3.7406113537117904,
+ "grad_norm": 0.017277248203754425,
+ "learning_rate": 0.0006,
+ "loss": 5.855231285095215,
+ "step": 269
+ },
+ {
+ "epoch": 3.7545851528384278,
+ "grad_norm": 0.01717568188905716,
+ "learning_rate": 0.0006,
+ "loss": 5.847787857055664,
+ "step": 270
+ },
+ {
+ "epoch": 3.7685589519650655,
+ "grad_norm": 0.01537331473082304,
+ "learning_rate": 0.0006,
+ "loss": 5.852605819702148,
+ "step": 271
+ },
+ {
+ "epoch": 3.7825327510917033,
+ "grad_norm": 0.01504798699170351,
+ "learning_rate": 0.0006,
+ "loss": 5.825901031494141,
+ "step": 272
+ },
+ {
+ "epoch": 3.7965065502183406,
+ "grad_norm": 0.023221664130687714,
+ "learning_rate": 0.0006,
+ "loss": 5.812404155731201,
+ "step": 273
+ },
+ {
+ "epoch": 3.810480349344978,
+ "grad_norm": 0.0397733673453331,
+ "learning_rate": 0.0006,
+ "loss": 5.804308891296387,
+ "step": 274
+ },
+ {
+ "epoch": 3.8244541484716157,
+ "grad_norm": 0.05233687534928322,
+ "learning_rate": 0.0006,
+ "loss": 5.788049697875977,
+ "step": 275
+ },
+ {
+ "epoch": 3.8384279475982535,
+ "grad_norm": 0.05563921108841896,
+ "learning_rate": 0.0006,
+ "loss": 5.811939239501953,
+ "step": 276
+ },
+ {
+ "epoch": 3.8524017467248908,
+ "grad_norm": 0.0501336008310318,
+ "learning_rate": 0.0006,
+ "loss": 5.810712814331055,
+ "step": 277
+ },
+ {
+ "epoch": 3.8663755458515285,
+ "grad_norm": 0.07601612061262131,
+ "learning_rate": 0.0006,
+ "loss": 5.846009254455566,
+ "step": 278
+ },
+ {
+ "epoch": 3.880349344978166,
+ "grad_norm": 0.07927536964416504,
+ "learning_rate": 0.0006,
+ "loss": 5.846945285797119,
+ "step": 279
+ },
+ {
+ "epoch": 3.8943231441048036,
+ "grad_norm": 0.05778975039720535,
+ "learning_rate": 0.0006,
+ "loss": 5.8009209632873535,
+ "step": 280
+ },
+ {
+ "epoch": 3.908296943231441,
+ "grad_norm": 0.06650745123624802,
+ "learning_rate": 0.0006,
+ "loss": 5.825387001037598,
+ "step": 281
+ },
+ {
+ "epoch": 3.9222707423580787,
+ "grad_norm": 0.05610830709338188,
+ "learning_rate": 0.0006,
+ "loss": 5.854207992553711,
+ "step": 282
+ },
+ {
+ "epoch": 3.936244541484716,
+ "grad_norm": 0.03054177202284336,
+ "learning_rate": 0.0006,
+ "loss": 5.8229875564575195,
+ "step": 283
+ },
+ {
+ "epoch": 3.950218340611354,
+ "grad_norm": 0.03929241746664047,
+ "learning_rate": 0.0006,
+ "loss": 5.8026041984558105,
+ "step": 284
+ },
+ {
+ "epoch": 3.964192139737991,
+ "grad_norm": 0.03007139079272747,
+ "learning_rate": 0.0006,
+ "loss": 5.7833709716796875,
+ "step": 285
+ },
+ {
+ "epoch": 3.978165938864629,
+ "grad_norm": 0.03231097757816315,
+ "learning_rate": 0.0006,
+ "loss": 5.7852091789245605,
+ "step": 286
+ },
+ {
+ "epoch": 3.992139737991266,
+ "grad_norm": 0.02939445711672306,
+ "learning_rate": 0.0006,
+ "loss": 5.753163814544678,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.02993260696530342,
+ "learning_rate": 0.0006,
+ "loss": 5.762526512145996,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 5.799882888793945,
+ "eval_runtime": 50.8936,
+ "eval_samples_per_second": 47.982,
+ "eval_steps_per_second": 1.513,
+ "step": 288
+ },
+ {
+ "epoch": 4.013973799126638,
+ "grad_norm": 0.025836583226919174,
+ "learning_rate": 0.0006,
+ "loss": 5.74060583114624,
+ "step": 289
+ },
+ {
+ "epoch": 4.0279475982532755,
+ "grad_norm": 0.02240375429391861,
+ "learning_rate": 0.0006,
+ "loss": 5.744357109069824,
+ "step": 290
+ },
+ {
+ "epoch": 4.041921397379912,
+ "grad_norm": 0.019645314663648605,
+ "learning_rate": 0.0006,
+ "loss": 5.714840412139893,
+ "step": 291
+ },
+ {
+ "epoch": 4.05589519650655,
+ "grad_norm": 0.01903143897652626,
+ "learning_rate": 0.0006,
+ "loss": 5.749794006347656,
+ "step": 292
+ },
+ {
+ "epoch": 4.069868995633188,
+ "grad_norm": 0.020970258861780167,
+ "learning_rate": 0.0006,
+ "loss": 5.684886932373047,
+ "step": 293
+ },
+ {
+ "epoch": 4.083842794759826,
+ "grad_norm": 0.022254586219787598,
+ "learning_rate": 0.0006,
+ "loss": 5.690360069274902,
+ "step": 294
+ },
+ {
+ "epoch": 4.097816593886463,
+ "grad_norm": 0.024622811004519463,
+ "learning_rate": 0.0006,
+ "loss": 5.7078962326049805,
+ "step": 295
+ },
+ {
+ "epoch": 4.1117903930131,
+ "grad_norm": 0.023592552170157433,
+ "learning_rate": 0.0006,
+ "loss": 5.7039971351623535,
+ "step": 296
+ },
+ {
+ "epoch": 4.125764192139738,
+ "grad_norm": 0.02667587623000145,
+ "learning_rate": 0.0006,
+ "loss": 5.677852630615234,
+ "step": 297
+ },
+ {
+ "epoch": 4.139737991266376,
+ "grad_norm": 0.03330948203802109,
+ "learning_rate": 0.0006,
+ "loss": 5.688773155212402,
+ "step": 298
+ },
+ {
+ "epoch": 4.153711790393013,
+ "grad_norm": 0.045157793909311295,
+ "learning_rate": 0.0006,
+ "loss": 5.675937652587891,
+ "step": 299
+ },
+ {
+ "epoch": 4.1676855895196505,
+ "grad_norm": 0.07034408301115036,
+ "learning_rate": 0.0006,
+ "loss": 5.687074661254883,
+ "step": 300
+ },
+ {
+ "epoch": 4.181659388646288,
+ "grad_norm": 0.10193091630935669,
+ "learning_rate": 0.0006,
+ "loss": 5.748222351074219,
+ "step": 301
+ },
+ {
+ "epoch": 4.195633187772926,
+ "grad_norm": 0.09606931358575821,
+ "learning_rate": 0.0006,
+ "loss": 5.767232894897461,
+ "step": 302
+ },
+ {
+ "epoch": 4.209606986899563,
+ "grad_norm": 0.05994758382439613,
+ "learning_rate": 0.0006,
+ "loss": 5.723153114318848,
+ "step": 303
+ },
+ {
+ "epoch": 4.223580786026201,
+ "grad_norm": 0.045849986374378204,
+ "learning_rate": 0.0006,
+ "loss": 5.7005815505981445,
+ "step": 304
+ },
+ {
+ "epoch": 4.2375545851528384,
+ "grad_norm": 0.04177941009402275,
+ "learning_rate": 0.0006,
+ "loss": 5.679755210876465,
+ "step": 305
+ },
+ {
+ "epoch": 4.251528384279476,
+ "grad_norm": 0.03307238593697548,
+ "learning_rate": 0.0006,
+ "loss": 5.677393913269043,
+ "step": 306
+ },
+ {
+ "epoch": 4.265502183406113,
+ "grad_norm": 0.04340110346674919,
+ "learning_rate": 0.0006,
+ "loss": 5.702075004577637,
+ "step": 307
+ },
+ {
+ "epoch": 4.279475982532751,
+ "grad_norm": 0.04797970876097679,
+ "learning_rate": 0.0006,
+ "loss": 5.650345802307129,
+ "step": 308
+ },
+ {
+ "epoch": 4.293449781659389,
+ "grad_norm": 0.04946571961045265,
+ "learning_rate": 0.0006,
+ "loss": 5.675044059753418,
+ "step": 309
+ },
+ {
+ "epoch": 4.307423580786026,
+ "grad_norm": 0.03254636004567146,
+ "learning_rate": 0.0006,
+ "loss": 5.622986793518066,
+ "step": 310
+ },
+ {
+ "epoch": 4.321397379912664,
+ "grad_norm": 0.032069381326436996,
+ "learning_rate": 0.0006,
+ "loss": 5.629563331604004,
+ "step": 311
+ },
+ {
+ "epoch": 4.335371179039301,
+ "grad_norm": 0.033597469329833984,
+ "learning_rate": 0.0006,
+ "loss": 5.612854480743408,
+ "step": 312
+ },
+ {
+ "epoch": 4.349344978165939,
+ "grad_norm": 0.02717825584113598,
+ "learning_rate": 0.0006,
+ "loss": 5.652135372161865,
+ "step": 313
+ },
+ {
+ "epoch": 4.3633187772925766,
+ "grad_norm": 0.03312784433364868,
+ "learning_rate": 0.0006,
+ "loss": 5.649629592895508,
+ "step": 314
+ },
+ {
+ "epoch": 4.377292576419214,
+ "grad_norm": 0.03037389926612377,
+ "learning_rate": 0.0006,
+ "loss": 5.6194305419921875,
+ "step": 315
+ },
+ {
+ "epoch": 4.391266375545851,
+ "grad_norm": 0.03778672590851784,
+ "learning_rate": 0.0006,
+ "loss": 5.641755104064941,
+ "step": 316
+ },
+ {
+ "epoch": 4.405240174672489,
+ "grad_norm": 0.053473301231861115,
+ "learning_rate": 0.0006,
+ "loss": 5.621832847595215,
+ "step": 317
+ },
+ {
+ "epoch": 4.419213973799127,
+ "grad_norm": 0.06915664672851562,
+ "learning_rate": 0.0006,
+ "loss": 5.601483345031738,
+ "step": 318
+ },
+ {
+ "epoch": 4.4331877729257645,
+ "grad_norm": 0.06667220592498779,
+ "learning_rate": 0.0006,
+ "loss": 5.642349720001221,
+ "step": 319
+ },
+ {
+ "epoch": 4.447161572052401,
+ "grad_norm": 0.037290167063474655,
+ "learning_rate": 0.0006,
+ "loss": 5.604238510131836,
+ "step": 320
+ },
+ {
+ "epoch": 4.461135371179039,
+ "grad_norm": 0.04003678262233734,
+ "learning_rate": 0.0006,
+ "loss": 5.593315601348877,
+ "step": 321
+ },
+ {
+ "epoch": 4.475109170305677,
+ "grad_norm": 0.028076812624931335,
+ "learning_rate": 0.0006,
+ "loss": 5.566408157348633,
+ "step": 322
+ },
+ {
+ "epoch": 4.489082969432315,
+ "grad_norm": 0.031247343868017197,
+ "learning_rate": 0.0006,
+ "loss": 5.6215410232543945,
+ "step": 323
+ },
+ {
+ "epoch": 4.503056768558952,
+ "grad_norm": 0.02864190936088562,
+ "learning_rate": 0.0006,
+ "loss": 5.583666801452637,
+ "step": 324
+ },
+ {
+ "epoch": 4.517030567685589,
+ "grad_norm": 0.03396870568394661,
+ "learning_rate": 0.0006,
+ "loss": 5.568394184112549,
+ "step": 325
+ },
+ {
+ "epoch": 4.531004366812227,
+ "grad_norm": 0.03053557313978672,
+ "learning_rate": 0.0006,
+ "loss": 5.5704755783081055,
+ "step": 326
+ },
+ {
+ "epoch": 4.544978165938865,
+ "grad_norm": 0.039402369409799576,
+ "learning_rate": 0.0006,
+ "loss": 5.529522895812988,
+ "step": 327
+ },
+ {
+ "epoch": 4.558951965065502,
+ "grad_norm": 0.039162520319223404,
+ "learning_rate": 0.0006,
+ "loss": 5.565547466278076,
+ "step": 328
+ },
+ {
+ "epoch": 4.5729257641921395,
+ "grad_norm": 0.03071208856999874,
+ "learning_rate": 0.0006,
+ "loss": 5.551553726196289,
+ "step": 329
+ },
+ {
+ "epoch": 4.586899563318777,
+ "grad_norm": 0.0320625938475132,
+ "learning_rate": 0.0006,
+ "loss": 5.535126686096191,
+ "step": 330
+ },
+ {
+ "epoch": 4.600873362445415,
+ "grad_norm": 0.03700695186853409,
+ "learning_rate": 0.0006,
+ "loss": 5.560665130615234,
+ "step": 331
+ },
+ {
+ "epoch": 4.614847161572053,
+ "grad_norm": 0.0327119417488575,
+ "learning_rate": 0.0006,
+ "loss": 5.528924465179443,
+ "step": 332
+ },
+ {
+ "epoch": 4.62882096069869,
+ "grad_norm": 0.028552839532494545,
+ "learning_rate": 0.0006,
+ "loss": 5.520917892456055,
+ "step": 333
+ },
+ {
+ "epoch": 4.642794759825327,
+ "grad_norm": 0.029750585556030273,
+ "learning_rate": 0.0006,
+ "loss": 5.512092113494873,
+ "step": 334
+ },
+ {
+ "epoch": 4.656768558951965,
+ "grad_norm": 0.03556099906563759,
+ "learning_rate": 0.0006,
+ "loss": 5.500020503997803,
+ "step": 335
+ },
+ {
+ "epoch": 4.670742358078603,
+ "grad_norm": 0.03819836303591728,
+ "learning_rate": 0.0006,
+ "loss": 5.523126602172852,
+ "step": 336
+ },
+ {
+ "epoch": 4.68471615720524,
+ "grad_norm": 0.038457129150629044,
+ "learning_rate": 0.0006,
+ "loss": 5.497986316680908,
+ "step": 337
+ },
+ {
+ "epoch": 4.698689956331878,
+ "grad_norm": 0.049066998064517975,
+ "learning_rate": 0.0006,
+ "loss": 5.481566429138184,
+ "step": 338
+ },
+ {
+ "epoch": 4.712663755458515,
+ "grad_norm": 0.06208881363272667,
+ "learning_rate": 0.0006,
+ "loss": 5.5200581550598145,
+ "step": 339
+ },
+ {
+ "epoch": 4.726637554585153,
+ "grad_norm": 0.04952879622578621,
+ "learning_rate": 0.0006,
+ "loss": 5.528044700622559,
+ "step": 340
+ },
+ {
+ "epoch": 4.74061135371179,
+ "grad_norm": 0.046794820576906204,
+ "learning_rate": 0.0006,
+ "loss": 5.4694437980651855,
+ "step": 341
+ },
+ {
+ "epoch": 4.754585152838428,
+ "grad_norm": 0.05241665989160538,
+ "learning_rate": 0.0006,
+ "loss": 5.5203752517700195,
+ "step": 342
+ },
+ {
+ "epoch": 4.7685589519650655,
+ "grad_norm": 0.029848996549844742,
+ "learning_rate": 0.0006,
+ "loss": 5.484467506408691,
+ "step": 343
+ },
+ {
+ "epoch": 4.782532751091703,
+ "grad_norm": 0.035734955221414566,
+ "learning_rate": 0.0006,
+ "loss": 5.4982075691223145,
+ "step": 344
+ },
+ {
+ "epoch": 4.796506550218341,
+ "grad_norm": 0.03326781094074249,
+ "learning_rate": 0.0006,
+ "loss": 5.4673380851745605,
+ "step": 345
+ },
+ {
+ "epoch": 4.810480349344978,
+ "grad_norm": 0.02851971797645092,
+ "learning_rate": 0.0006,
+ "loss": 5.466347694396973,
+ "step": 346
+ },
+ {
+ "epoch": 4.824454148471616,
+ "grad_norm": 0.02881411463022232,
+ "learning_rate": 0.0006,
+ "loss": 5.4748992919921875,
+ "step": 347
+ },
+ {
+ "epoch": 4.8384279475982535,
+ "grad_norm": 0.037079520523548126,
+ "learning_rate": 0.0006,
+ "loss": 5.430629730224609,
+ "step": 348
+ },
+ {
+ "epoch": 4.85240174672489,
+ "grad_norm": 0.06697188317775726,
+ "learning_rate": 0.0006,
+ "loss": 5.48007869720459,
+ "step": 349
+ },
+ {
+ "epoch": 4.866375545851528,
+ "grad_norm": 0.08443532884120941,
+ "learning_rate": 0.0006,
+ "loss": 5.519370079040527,
+ "step": 350
+ },
+ {
+ "epoch": 4.880349344978166,
+ "grad_norm": 0.0594899021089077,
+ "learning_rate": 0.0006,
+ "loss": 5.502467155456543,
+ "step": 351
+ },
+ {
+ "epoch": 4.894323144104804,
+ "grad_norm": 0.045731619000434875,
+ "learning_rate": 0.0006,
+ "loss": 5.48048210144043,
+ "step": 352
+ },
+ {
+ "epoch": 4.908296943231441,
+ "grad_norm": 0.02911028079688549,
+ "learning_rate": 0.0006,
+ "loss": 5.45798921585083,
+ "step": 353
+ },
+ {
+ "epoch": 4.922270742358078,
+ "grad_norm": 0.03407920524477959,
+ "learning_rate": 0.0006,
+ "loss": 5.452054977416992,
+ "step": 354
+ },
+ {
+ "epoch": 4.936244541484716,
+ "grad_norm": 0.030616968870162964,
+ "learning_rate": 0.0006,
+ "loss": 5.416000843048096,
+ "step": 355
+ },
+ {
+ "epoch": 4.950218340611354,
+ "grad_norm": 0.036123789846897125,
+ "learning_rate": 0.0006,
+ "loss": 5.448460102081299,
+ "step": 356
+ },
+ {
+ "epoch": 4.964192139737992,
+ "grad_norm": 0.03511728718876839,
+ "learning_rate": 0.0006,
+ "loss": 5.4388580322265625,
+ "step": 357
+ },
+ {
+ "epoch": 4.978165938864628,
+ "grad_norm": 0.032399944961071014,
+ "learning_rate": 0.0006,
+ "loss": 5.439154624938965,
+ "step": 358
+ },
+ {
+ "epoch": 4.992139737991266,
+ "grad_norm": 0.030734507367014885,
+ "learning_rate": 0.0006,
+ "loss": 5.394845485687256,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.036368995904922485,
+ "learning_rate": 0.0006,
+ "loss": 5.4285783767700195,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 5.480083465576172,
+ "eval_runtime": 50.4055,
+ "eval_samples_per_second": 48.447,
+ "eval_steps_per_second": 1.528,
+ "step": 360
+ },
+ {
+ "epoch": 5.013973799126638,
+ "grad_norm": 0.04241528734564781,
+ "learning_rate": 0.0006,
+ "loss": 5.381251335144043,
+ "step": 361
+ },
+ {
+ "epoch": 5.0279475982532755,
+ "grad_norm": 0.03248775005340576,
+ "learning_rate": 0.0006,
+ "loss": 5.37385892868042,
+ "step": 362
+ },
+ {
+ "epoch": 5.041921397379912,
+ "grad_norm": 0.034749697893857956,
+ "learning_rate": 0.0006,
+ "loss": 5.376180648803711,
+ "step": 363
+ },
+ {
+ "epoch": 5.05589519650655,
+ "grad_norm": 0.03606852516531944,
+ "learning_rate": 0.0006,
+ "loss": 5.374990940093994,
+ "step": 364
+ },
+ {
+ "epoch": 5.069868995633188,
+ "grad_norm": 0.037298817187547684,
+ "learning_rate": 0.0006,
+ "loss": 5.387371063232422,
+ "step": 365
+ },
+ {
+ "epoch": 5.083842794759826,
+ "grad_norm": 0.04082327336072922,
+ "learning_rate": 0.0006,
+ "loss": 5.389516830444336,
+ "step": 366
+ },
+ {
+ "epoch": 5.097816593886463,
+ "grad_norm": 0.04895859211683273,
+ "learning_rate": 0.0006,
+ "loss": 5.3711090087890625,
+ "step": 367
+ },
+ {
+ "epoch": 5.1117903930131,
+ "grad_norm": 0.050905536860227585,
+ "learning_rate": 0.0006,
+ "loss": 5.351629257202148,
+ "step": 368
+ },
+ {
+ "epoch": 5.125764192139738,
+ "grad_norm": 0.04349025338888168,
+ "learning_rate": 0.0006,
+ "loss": 5.348860263824463,
+ "step": 369
+ },
+ {
+ "epoch": 5.139737991266376,
+ "grad_norm": 0.04351300373673439,
+ "learning_rate": 0.0006,
+ "loss": 5.351939678192139,
+ "step": 370
+ },
+ {
+ "epoch": 5.153711790393013,
+ "grad_norm": 0.03227587044239044,
+ "learning_rate": 0.0006,
+ "loss": 5.345745086669922,
+ "step": 371
+ },
+ {
+ "epoch": 5.1676855895196505,
+ "grad_norm": 0.04331260547041893,
+ "learning_rate": 0.0006,
+ "loss": 5.316384315490723,
+ "step": 372
+ },
+ {
+ "epoch": 5.181659388646288,
+ "grad_norm": 0.0464855432510376,
+ "learning_rate": 0.0006,
+ "loss": 5.343276023864746,
+ "step": 373
+ },
+ {
+ "epoch": 5.195633187772926,
+ "grad_norm": 0.05008427053689957,
+ "learning_rate": 0.0006,
+ "loss": 5.369993209838867,
+ "step": 374
+ },
+ {
+ "epoch": 5.209606986899563,
+ "grad_norm": 0.04762439802289009,
+ "learning_rate": 0.0006,
+ "loss": 5.3458051681518555,
+ "step": 375
+ },
+ {
+ "epoch": 5.223580786026201,
+ "grad_norm": 0.04650581255555153,
+ "learning_rate": 0.0006,
+ "loss": 5.352739334106445,
+ "step": 376
+ },
+ {
+ "epoch": 5.2375545851528384,
+ "grad_norm": 0.04960601031780243,
+ "learning_rate": 0.0006,
+ "loss": 5.327419757843018,
+ "step": 377
+ },
+ {
+ "epoch": 5.251528384279476,
+ "grad_norm": 0.04186132177710533,
+ "learning_rate": 0.0006,
+ "loss": 5.319878578186035,
+ "step": 378
+ },
+ {
+ "epoch": 5.265502183406113,
+ "grad_norm": 0.0390714667737484,
+ "learning_rate": 0.0006,
+ "loss": 5.344437599182129,
+ "step": 379
+ },
+ {
+ "epoch": 5.279475982532751,
+ "grad_norm": 0.03270866721868515,
+ "learning_rate": 0.0006,
+ "loss": 5.313382148742676,
+ "step": 380
+ },
+ {
+ "epoch": 5.293449781659389,
+ "grad_norm": 0.031864266842603683,
+ "learning_rate": 0.0006,
+ "loss": 5.326592922210693,
+ "step": 381
+ },
+ {
+ "epoch": 5.307423580786026,
+ "grad_norm": 0.026960339397192,
+ "learning_rate": 0.0006,
+ "loss": 5.286443710327148,
+ "step": 382
+ },
+ {
+ "epoch": 5.321397379912664,
+ "grad_norm": 0.023257168009877205,
+ "learning_rate": 0.0006,
+ "loss": 5.291154384613037,
+ "step": 383
+ },
+ {
+ "epoch": 5.335371179039301,
+ "grad_norm": 0.024317380040884018,
+ "learning_rate": 0.0006,
+ "loss": 5.30286979675293,
+ "step": 384
+ },
+ {
+ "epoch": 5.349344978165939,
+ "grad_norm": 0.022621065378189087,
+ "learning_rate": 0.0006,
+ "loss": 5.315716743469238,
+ "step": 385
+ },
+ {
+ "epoch": 5.3633187772925766,
+ "grad_norm": 0.023142270743846893,
+ "learning_rate": 0.0006,
+ "loss": 5.30342960357666,
+ "step": 386
+ },
+ {
+ "epoch": 5.377292576419214,
+ "grad_norm": 0.023623041808605194,
+ "learning_rate": 0.0006,
+ "loss": 5.250846862792969,
+ "step": 387
+ },
+ {
+ "epoch": 5.391266375545851,
+ "grad_norm": 0.02163100801408291,
+ "learning_rate": 0.0006,
+ "loss": 5.239641189575195,
+ "step": 388
+ },
+ {
+ "epoch": 5.405240174672489,
+ "grad_norm": 0.02896741032600403,
+ "learning_rate": 0.0006,
+ "loss": 5.2592010498046875,
+ "step": 389
+ },
+ {
+ "epoch": 5.419213973799127,
+ "grad_norm": 0.03766395151615143,
+ "learning_rate": 0.0006,
+ "loss": 5.253421783447266,
+ "step": 390
+ },
+ {
+ "epoch": 5.4331877729257645,
+ "grad_norm": 0.04409803822636604,
+ "learning_rate": 0.0006,
+ "loss": 5.271892070770264,
+ "step": 391
+ },
+ {
+ "epoch": 5.447161572052401,
+ "grad_norm": 0.040245357900857925,
+ "learning_rate": 0.0006,
+ "loss": 5.259224891662598,
+ "step": 392
+ },
+ {
+ "epoch": 5.461135371179039,
+ "grad_norm": 0.04515395313501358,
+ "learning_rate": 0.0006,
+ "loss": 5.236300468444824,
+ "step": 393
+ },
+ {
+ "epoch": 5.475109170305677,
+ "grad_norm": 0.060296714305877686,
+ "learning_rate": 0.0006,
+ "loss": 5.265594959259033,
+ "step": 394
+ },
+ {
+ "epoch": 5.489082969432315,
+ "grad_norm": 0.05405225604772568,
+ "learning_rate": 0.0006,
+ "loss": 5.262340545654297,
+ "step": 395
+ },
+ {
+ "epoch": 5.503056768558952,
+ "grad_norm": 0.0568138062953949,
+ "learning_rate": 0.0006,
+ "loss": 5.239948749542236,
+ "step": 396
+ },
+ {
+ "epoch": 5.517030567685589,
+ "grad_norm": 0.059859342873096466,
+ "learning_rate": 0.0006,
+ "loss": 5.189077854156494,
+ "step": 397
+ },
+ {
+ "epoch": 5.531004366812227,
+ "grad_norm": 0.053871408104896545,
+ "learning_rate": 0.0006,
+ "loss": 5.270648956298828,
+ "step": 398
+ },
+ {
+ "epoch": 5.544978165938865,
+ "grad_norm": 0.06081297993659973,
+ "learning_rate": 0.0006,
+ "loss": 5.314695835113525,
+ "step": 399
+ },
+ {
+ "epoch": 5.558951965065502,
+ "grad_norm": 0.0646715834736824,
+ "learning_rate": 0.0006,
+ "loss": 5.286482810974121,
+ "step": 400
+ },
+ {
+ "epoch": 5.5729257641921395,
+ "grad_norm": 0.05934286117553711,
+ "learning_rate": 0.0006,
+ "loss": 5.247529983520508,
+ "step": 401
+ },
+ {
+ "epoch": 5.586899563318777,
+ "grad_norm": 0.05270497500896454,
+ "learning_rate": 0.0006,
+ "loss": 5.213264465332031,
+ "step": 402
+ },
+ {
+ "epoch": 5.600873362445415,
+ "grad_norm": 0.03454767167568207,
+ "learning_rate": 0.0006,
+ "loss": 5.234180450439453,
+ "step": 403
+ },
+ {
+ "epoch": 5.614847161572053,
+ "grad_norm": 0.04350962117314339,
+ "learning_rate": 0.0006,
+ "loss": 5.2320332527160645,
+ "step": 404
+ },
+ {
+ "epoch": 5.62882096069869,
+ "grad_norm": 0.04721181467175484,
+ "learning_rate": 0.0006,
+ "loss": 5.228950023651123,
+ "step": 405
+ },
+ {
+ "epoch": 5.642794759825327,
+ "grad_norm": 0.03711158409714699,
+ "learning_rate": 0.0006,
+ "loss": 5.234259605407715,
+ "step": 406
+ },
+ {
+ "epoch": 5.656768558951965,
+ "grad_norm": 0.029691185802221298,
+ "learning_rate": 0.0006,
+ "loss": 5.183767795562744,
+ "step": 407
+ },
+ {
+ "epoch": 5.670742358078603,
+ "grad_norm": 0.03253520280122757,
+ "learning_rate": 0.0006,
+ "loss": 5.224790573120117,
+ "step": 408
+ },
+ {
+ "epoch": 5.68471615720524,
+ "grad_norm": 0.026891207322478294,
+ "learning_rate": 0.0006,
+ "loss": 5.219671249389648,
+ "step": 409
+ },
+ {
+ "epoch": 5.698689956331878,
+ "grad_norm": 0.024443313479423523,
+ "learning_rate": 0.0006,
+ "loss": 5.177947044372559,
+ "step": 410
+ },
+ {
+ "epoch": 5.712663755458515,
+ "grad_norm": 0.024358445778489113,
+ "learning_rate": 0.0006,
+ "loss": 5.184648513793945,
+ "step": 411
+ },
+ {
+ "epoch": 5.726637554585153,
+ "grad_norm": 0.038056857883930206,
+ "learning_rate": 0.0006,
+ "loss": 5.213315010070801,
+ "step": 412
+ },
+ {
+ "epoch": 5.74061135371179,
+ "grad_norm": 0.05382931977510452,
+ "learning_rate": 0.0006,
+ "loss": 5.188442230224609,
+ "step": 413
+ },
+ {
+ "epoch": 5.754585152838428,
+ "grad_norm": 0.04695626348257065,
+ "learning_rate": 0.0006,
+ "loss": 5.214473724365234,
+ "step": 414
+ },
+ {
+ "epoch": 5.7685589519650655,
+ "grad_norm": 0.03373295068740845,
+ "learning_rate": 0.0006,
+ "loss": 5.187349319458008,
+ "step": 415
+ },
+ {
+ "epoch": 5.782532751091703,
+ "grad_norm": 0.04209282621741295,
+ "learning_rate": 0.0006,
+ "loss": 5.215581893920898,
+ "step": 416
+ },
+ {
+ "epoch": 5.796506550218341,
+ "grad_norm": 0.036461904644966125,
+ "learning_rate": 0.0006,
+ "loss": 5.148530006408691,
+ "step": 417
+ },
+ {
+ "epoch": 5.810480349344978,
+ "grad_norm": 0.02530442364513874,
+ "learning_rate": 0.0006,
+ "loss": 5.143393039703369,
+ "step": 418
+ },
+ {
+ "epoch": 5.824454148471616,
+ "grad_norm": 0.02545030415058136,
+ "learning_rate": 0.0006,
+ "loss": 5.167602062225342,
+ "step": 419
+ },
+ {
+ "epoch": 5.8384279475982535,
+ "grad_norm": 0.024862848222255707,
+ "learning_rate": 0.0006,
+ "loss": 5.133827209472656,
+ "step": 420
+ },
+ {
+ "epoch": 5.85240174672489,
+ "grad_norm": 0.0243727695196867,
+ "learning_rate": 0.0006,
+ "loss": 5.196236610412598,
+ "step": 421
+ },
+ {
+ "epoch": 5.866375545851528,
+ "grad_norm": 0.031052641570568085,
+ "learning_rate": 0.0006,
+ "loss": 5.163963317871094,
+ "step": 422
+ },
+ {
+ "epoch": 5.880349344978166,
+ "grad_norm": 0.03085985779762268,
+ "learning_rate": 0.0006,
+ "loss": 5.133022308349609,
+ "step": 423
+ },
+ {
+ "epoch": 5.894323144104804,
+ "grad_norm": 0.026254380121827126,
+ "learning_rate": 0.0006,
+ "loss": 5.126164436340332,
+ "step": 424
+ },
+ {
+ "epoch": 5.908296943231441,
+ "grad_norm": 0.02083180658519268,
+ "learning_rate": 0.0006,
+ "loss": 5.102797508239746,
+ "step": 425
+ },
+ {
+ "epoch": 5.922270742358078,
+ "grad_norm": 0.02210022322833538,
+ "learning_rate": 0.0006,
+ "loss": 5.079900741577148,
+ "step": 426
+ },
+ {
+ "epoch": 5.936244541484716,
+ "grad_norm": 0.024237696081399918,
+ "learning_rate": 0.0006,
+ "loss": 5.131382942199707,
+ "step": 427
+ },
+ {
+ "epoch": 5.950218340611354,
+ "grad_norm": 0.03174173831939697,
+ "learning_rate": 0.0006,
+ "loss": 5.12271785736084,
+ "step": 428
+ },
+ {
+ "epoch": 5.964192139737992,
+ "grad_norm": 0.035321734845638275,
+ "learning_rate": 0.0006,
+ "loss": 5.096363067626953,
+ "step": 429
+ },
+ {
+ "epoch": 5.978165938864628,
+ "grad_norm": 0.03945434093475342,
+ "learning_rate": 0.0006,
+ "loss": 5.104191780090332,
+ "step": 430
+ },
+ {
+ "epoch": 5.992139737991266,
+ "grad_norm": 0.03119991160929203,
+ "learning_rate": 0.0006,
+ "loss": 5.088006973266602,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.025646768510341644,
+ "learning_rate": 0.0006,
+ "loss": 5.060527801513672,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 5.1733880043029785,
+ "eval_runtime": 49.9632,
+ "eval_samples_per_second": 48.876,
+ "eval_steps_per_second": 1.541,
+ "step": 432
+ },
+ {
+ "epoch": 6.013973799126638,
+ "grad_norm": 0.04027649387717247,
+ "learning_rate": 0.0006,
+ "loss": 5.070117473602295,
+ "step": 433
+ },
+ {
+ "epoch": 6.0279475982532755,
+ "grad_norm": 0.04872274026274681,
+ "learning_rate": 0.0006,
+ "loss": 5.076330184936523,
+ "step": 434
+ },
+ {
+ "epoch": 6.041921397379912,
+ "grad_norm": 0.044163160026073456,
+ "learning_rate": 0.0006,
+ "loss": 5.079638481140137,
+ "step": 435
+ },
+ {
+ "epoch": 6.05589519650655,
+ "grad_norm": 0.051925189793109894,
+ "learning_rate": 0.0006,
+ "loss": 5.077970027923584,
+ "step": 436
+ },
+ {
+ "epoch": 6.069868995633188,
+ "grad_norm": 0.06317602097988129,
+ "learning_rate": 0.0006,
+ "loss": 5.077326774597168,
+ "step": 437
+ },
+ {
+ "epoch": 6.083842794759826,
+ "grad_norm": 0.05190538242459297,
+ "learning_rate": 0.0006,
+ "loss": 5.078523635864258,
+ "step": 438
+ },
+ {
+ "epoch": 6.097816593886463,
+ "grad_norm": 0.054743602871894836,
+ "learning_rate": 0.0006,
+ "loss": 5.041546821594238,
+ "step": 439
+ },
+ {
+ "epoch": 6.1117903930131,
+ "grad_norm": 0.0473523885011673,
+ "learning_rate": 0.0006,
+ "loss": 5.055340766906738,
+ "step": 440
+ },
+ {
+ "epoch": 6.125764192139738,
+ "grad_norm": 0.04575403407216072,
+ "learning_rate": 0.0006,
+ "loss": 5.078280925750732,
+ "step": 441
+ },
+ {
+ "epoch": 6.139737991266376,
+ "grad_norm": 0.04004313051700592,
+ "learning_rate": 0.0006,
+ "loss": 5.0551252365112305,
+ "step": 442
+ },
+ {
+ "epoch": 6.153711790393013,
+ "grad_norm": 0.04324577748775482,
+ "learning_rate": 0.0006,
+ "loss": 5.052831649780273,
+ "step": 443
+ },
+ {
+ "epoch": 6.1676855895196505,
+ "grad_norm": 0.05479790270328522,
+ "learning_rate": 0.0006,
+ "loss": 5.075335502624512,
+ "step": 444
+ },
+ {
+ "epoch": 6.181659388646288,
+ "grad_norm": 0.05768252909183502,
+ "learning_rate": 0.0006,
+ "loss": 5.076082706451416,
+ "step": 445
+ },
+ {
+ "epoch": 6.195633187772926,
+ "grad_norm": 0.05240596458315849,
+ "learning_rate": 0.0006,
+ "loss": 5.058586120605469,
+ "step": 446
+ },
+ {
+ "epoch": 6.209606986899563,
+ "grad_norm": 0.0645335391163826,
+ "learning_rate": 0.0006,
+ "loss": 5.069242477416992,
+ "step": 447
+ },
+ {
+ "epoch": 6.223580786026201,
+ "grad_norm": 0.07776601612567902,
+ "learning_rate": 0.0006,
+ "loss": 5.100368499755859,
+ "step": 448
+ },
+ {
+ "epoch": 6.2375545851528384,
+ "grad_norm": 0.08278049528598785,
+ "learning_rate": 0.0006,
+ "loss": 5.109698295593262,
+ "step": 449
+ },
+ {
+ "epoch": 6.251528384279476,
+ "grad_norm": 0.07187525182962418,
+ "learning_rate": 0.0006,
+ "loss": 5.08582878112793,
+ "step": 450
+ },
+ {
+ "epoch": 6.265502183406113,
+ "grad_norm": 0.07394885271787643,
+ "learning_rate": 0.0006,
+ "loss": 5.06748628616333,
+ "step": 451
+ },
+ {
+ "epoch": 6.279475982532751,
+ "grad_norm": 0.06124480068683624,
+ "learning_rate": 0.0006,
+ "loss": 5.116754531860352,
+ "step": 452
+ },
+ {
+ "epoch": 6.293449781659389,
+ "grad_norm": 0.04062265530228615,
+ "learning_rate": 0.0006,
+ "loss": 5.04876184463501,
+ "step": 453
+ },
+ {
+ "epoch": 6.307423580786026,
+ "grad_norm": 0.04309544339776039,
+ "learning_rate": 0.0006,
+ "loss": 5.038376331329346,
+ "step": 454
+ },
+ {
+ "epoch": 6.321397379912664,
+ "grad_norm": 0.041932251304388046,
+ "learning_rate": 0.0006,
+ "loss": 5.071001052856445,
+ "step": 455
+ },
+ {
+ "epoch": 6.335371179039301,
+ "grad_norm": 0.033776845782995224,
+ "learning_rate": 0.0006,
+ "loss": 5.006098747253418,
+ "step": 456
+ },
+ {
+ "epoch": 6.349344978165939,
+ "grad_norm": 0.034641820937395096,
+ "learning_rate": 0.0006,
+ "loss": 4.992915153503418,
+ "step": 457
+ },
+ {
+ "epoch": 6.3633187772925766,
+ "grad_norm": 0.023475229740142822,
+ "learning_rate": 0.0006,
+ "loss": 5.044340133666992,
+ "step": 458
+ },
+ {
+ "epoch": 6.377292576419214,
+ "grad_norm": 0.02673504501581192,
+ "learning_rate": 0.0006,
+ "loss": 4.998212814331055,
+ "step": 459
+ },
+ {
+ "epoch": 6.391266375545851,
+ "grad_norm": 0.02482164464890957,
+ "learning_rate": 0.0006,
+ "loss": 5.010951042175293,
+ "step": 460
+ },
+ {
+ "epoch": 6.405240174672489,
+ "grad_norm": 0.022635847330093384,
+ "learning_rate": 0.0006,
+ "loss": 4.977993965148926,
+ "step": 461
+ },
+ {
+ "epoch": 6.419213973799127,
+ "grad_norm": 0.023006808012723923,
+ "learning_rate": 0.0006,
+ "loss": 4.947575569152832,
+ "step": 462
+ },
+ {
+ "epoch": 6.4331877729257645,
+ "grad_norm": 0.02624397724866867,
+ "learning_rate": 0.0006,
+ "loss": 4.977143287658691,
+ "step": 463
+ },
+ {
+ "epoch": 6.447161572052401,
+ "grad_norm": 0.03280187025666237,
+ "learning_rate": 0.0006,
+ "loss": 4.941946029663086,
+ "step": 464
+ },
+ {
+ "epoch": 6.461135371179039,
+ "grad_norm": 0.04020314663648605,
+ "learning_rate": 0.0006,
+ "loss": 4.947107315063477,
+ "step": 465
+ },
+ {
+ "epoch": 6.475109170305677,
+ "grad_norm": 0.037292513996362686,
+ "learning_rate": 0.0006,
+ "loss": 4.940674781799316,
+ "step": 466
+ },
+ {
+ "epoch": 6.489082969432315,
+ "grad_norm": 0.03219081461429596,
+ "learning_rate": 0.0006,
+ "loss": 4.945491790771484,
+ "step": 467
+ },
+ {
+ "epoch": 6.503056768558952,
+ "grad_norm": 0.034181494265794754,
+ "learning_rate": 0.0006,
+ "loss": 4.948554039001465,
+ "step": 468
+ },
+ {
+ "epoch": 6.517030567685589,
+ "grad_norm": 0.03098447248339653,
+ "learning_rate": 0.0006,
+ "loss": 4.923150062561035,
+ "step": 469
+ },
+ {
+ "epoch": 6.531004366812227,
+ "grad_norm": 0.026002254337072372,
+ "learning_rate": 0.0006,
+ "loss": 4.9629106521606445,
+ "step": 470
+ },
+ {
+ "epoch": 6.544978165938865,
+ "grad_norm": 0.02463129162788391,
+ "learning_rate": 0.0006,
+ "loss": 4.9400787353515625,
+ "step": 471
+ },
+ {
+ "epoch": 6.558951965065502,
+ "grad_norm": 0.025506779551506042,
+ "learning_rate": 0.0006,
+ "loss": 4.945688247680664,
+ "step": 472
+ },
+ {
+ "epoch": 6.5729257641921395,
+ "grad_norm": 0.021885665133595467,
+ "learning_rate": 0.0006,
+ "loss": 4.893912315368652,
+ "step": 473
+ },
+ {
+ "epoch": 6.586899563318777,
+ "grad_norm": 0.023528503254055977,
+ "learning_rate": 0.0006,
+ "loss": 4.948110580444336,
+ "step": 474
+ },
+ {
+ "epoch": 6.600873362445415,
+ "grad_norm": 0.02838003821671009,
+ "learning_rate": 0.0006,
+ "loss": 4.919154167175293,
+ "step": 475
+ },
+ {
+ "epoch": 6.614847161572053,
+ "grad_norm": 0.028782688081264496,
+ "learning_rate": 0.0006,
+ "loss": 4.89210319519043,
+ "step": 476
+ },
+ {
+ "epoch": 6.62882096069869,
+ "grad_norm": 0.02549571916460991,
+ "learning_rate": 0.0006,
+ "loss": 4.903683185577393,
+ "step": 477
+ },
+ {
+ "epoch": 6.642794759825327,
+ "grad_norm": 0.030100561678409576,
+ "learning_rate": 0.0006,
+ "loss": 4.907907485961914,
+ "step": 478
+ },
+ {
+ "epoch": 6.656768558951965,
+ "grad_norm": 0.03853096067905426,
+ "learning_rate": 0.0006,
+ "loss": 4.916140556335449,
+ "step": 479
+ },
+ {
+ "epoch": 6.670742358078603,
+ "grad_norm": 0.0367201492190361,
+ "learning_rate": 0.0006,
+ "loss": 4.882139205932617,
+ "step": 480
+ },
+ {
+ "epoch": 6.68471615720524,
+ "grad_norm": 0.034214165061712265,
+ "learning_rate": 0.0006,
+ "loss": 4.883127212524414,
+ "step": 481
+ },
+ {
+ "epoch": 6.698689956331878,
+ "grad_norm": 0.03360319137573242,
+ "learning_rate": 0.0006,
+ "loss": 4.903620719909668,
+ "step": 482
+ },
+ {
+ "epoch": 6.712663755458515,
+ "grad_norm": 0.027687804773449898,
+ "learning_rate": 0.0006,
+ "loss": 4.874878883361816,
+ "step": 483
+ },
+ {
+ "epoch": 6.726637554585153,
+ "grad_norm": 0.028244799003005028,
+ "learning_rate": 0.0006,
+ "loss": 4.877007961273193,
+ "step": 484
+ },
+ {
+ "epoch": 6.74061135371179,
+ "grad_norm": 0.027868567034602165,
+ "learning_rate": 0.0006,
+ "loss": 4.893726348876953,
+ "step": 485
+ },
+ {
+ "epoch": 6.754585152838428,
+ "grad_norm": 0.036026086658239365,
+ "learning_rate": 0.0006,
+ "loss": 4.899372577667236,
+ "step": 486
+ },
+ {
+ "epoch": 6.7685589519650655,
+ "grad_norm": 0.03497552126646042,
+ "learning_rate": 0.0006,
+ "loss": 4.8735671043396,
+ "step": 487
+ },
+ {
+ "epoch": 6.782532751091703,
+ "grad_norm": 0.027166219428181648,
+ "learning_rate": 0.0006,
+ "loss": 4.848074913024902,
+ "step": 488
+ },
+ {
+ "epoch": 6.796506550218341,
+ "grad_norm": 0.029360221698880196,
+ "learning_rate": 0.0006,
+ "loss": 4.821354389190674,
+ "step": 489
+ },
+ {
+ "epoch": 6.810480349344978,
+ "grad_norm": 0.030428793281316757,
+ "learning_rate": 0.0006,
+ "loss": 4.857872009277344,
+ "step": 490
+ },
+ {
+ "epoch": 6.824454148471616,
+ "grad_norm": 0.033143963664770126,
+ "learning_rate": 0.0006,
+ "loss": 4.8857526779174805,
+ "step": 491
+ },
+ {
+ "epoch": 6.8384279475982535,
+ "grad_norm": 0.03193509578704834,
+ "learning_rate": 0.0006,
+ "loss": 4.841046333312988,
+ "step": 492
+ },
+ {
+ "epoch": 6.85240174672489,
+ "grad_norm": 0.034551024436950684,
+ "learning_rate": 0.0006,
+ "loss": 4.857826232910156,
+ "step": 493
+ },
+ {
+ "epoch": 6.866375545851528,
+ "grad_norm": 0.04612463712692261,
+ "learning_rate": 0.0006,
+ "loss": 4.880589485168457,
+ "step": 494
+ },
+ {
+ "epoch": 6.880349344978166,
+ "grad_norm": 0.04604615643620491,
+ "learning_rate": 0.0006,
+ "loss": 4.836089134216309,
+ "step": 495
+ },
+ {
+ "epoch": 6.894323144104804,
+ "grad_norm": 0.04121214151382446,
+ "learning_rate": 0.0006,
+ "loss": 4.859458923339844,
+ "step": 496
+ },
+ {
+ "epoch": 6.908296943231441,
+ "grad_norm": 0.03569377213716507,
+ "learning_rate": 0.0006,
+ "loss": 4.846658706665039,
+ "step": 497
+ },
+ {
+ "epoch": 6.922270742358078,
+ "grad_norm": 0.03878311067819595,
+ "learning_rate": 0.0006,
+ "loss": 4.828747749328613,
+ "step": 498
+ },
+ {
+ "epoch": 6.936244541484716,
+ "grad_norm": 0.0379655621945858,
+ "learning_rate": 0.0006,
+ "loss": 4.7911152839660645,
+ "step": 499
+ },
+ {
+ "epoch": 6.950218340611354,
+ "grad_norm": 0.03329150751233101,
+ "learning_rate": 0.0006,
+ "loss": 4.8190741539001465,
+ "step": 500
+ },
+ {
+ "epoch": 6.964192139737992,
+ "grad_norm": 0.0386258140206337,
+ "learning_rate": 0.0006,
+ "loss": 4.826594352722168,
+ "step": 501
+ },
+ {
+ "epoch": 6.978165938864628,
+ "grad_norm": 0.043440066277980804,
+ "learning_rate": 0.0006,
+ "loss": 4.868552207946777,
+ "step": 502
+ },
+ {
+ "epoch": 6.992139737991266,
+ "grad_norm": 0.039522934705019,
+ "learning_rate": 0.0006,
+ "loss": 4.766866683959961,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.038620468229055405,
+ "learning_rate": 0.0006,
+ "loss": 4.828839302062988,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 4.907761573791504,
+ "eval_runtime": 49.951,
+ "eval_samples_per_second": 48.888,
+ "eval_steps_per_second": 1.542,
+ "step": 504
+ },
+ {
+ "epoch": 7.013973799126638,
+ "grad_norm": 0.040495287626981735,
+ "learning_rate": 0.0006,
+ "loss": 4.755504608154297,
+ "step": 505
+ },
+ {
+ "epoch": 7.0279475982532755,
+ "grad_norm": 0.04684276506304741,
+ "learning_rate": 0.0006,
+ "loss": 4.79603385925293,
+ "step": 506
+ },
+ {
+ "epoch": 7.041921397379912,
+ "grad_norm": 0.057431042194366455,
+ "learning_rate": 0.0006,
+ "loss": 4.798529148101807,
+ "step": 507
+ },
+ {
+ "epoch": 7.05589519650655,
+ "grad_norm": 0.06289757043123245,
+ "learning_rate": 0.0006,
+ "loss": 4.819248199462891,
+ "step": 508
+ },
+ {
+ "epoch": 7.069868995633188,
+ "grad_norm": 0.07083664834499359,
+ "learning_rate": 0.0006,
+ "loss": 4.803141117095947,
+ "step": 509
+ },
+ {
+ "epoch": 7.083842794759826,
+ "grad_norm": 0.06081623584032059,
+ "learning_rate": 0.0006,
+ "loss": 4.743819236755371,
+ "step": 510
+ },
+ {
+ "epoch": 7.097816593886463,
+ "grad_norm": 0.05454877391457558,
+ "learning_rate": 0.0006,
+ "loss": 4.854677200317383,
+ "step": 511
+ },
+ {
+ "epoch": 7.1117903930131,
+ "grad_norm": 0.05157916992902756,
+ "learning_rate": 0.0006,
+ "loss": 4.797488212585449,
+ "step": 512
+ },
+ {
+ "epoch": 7.125764192139738,
+ "grad_norm": 0.04780645668506622,
+ "learning_rate": 0.0006,
+ "loss": 4.824231147766113,
+ "step": 513
+ },
+ {
+ "epoch": 7.139737991266376,
+ "grad_norm": 0.058745913207530975,
+ "learning_rate": 0.0006,
+ "loss": 4.79942512512207,
+ "step": 514
+ },
+ {
+ "epoch": 7.153711790393013,
+ "grad_norm": 0.07210857421159744,
+ "learning_rate": 0.0006,
+ "loss": 4.857621192932129,
+ "step": 515
+ },
+ {
+ "epoch": 7.1676855895196505,
+ "grad_norm": 0.0681944340467453,
+ "learning_rate": 0.0006,
+ "loss": 4.798557281494141,
+ "step": 516
+ },
+ {
+ "epoch": 7.181659388646288,
+ "grad_norm": 0.06716784089803696,
+ "learning_rate": 0.0006,
+ "loss": 4.81382942199707,
+ "step": 517
+ },
+ {
+ "epoch": 7.195633187772926,
+ "grad_norm": 0.0700073093175888,
+ "learning_rate": 0.0006,
+ "loss": 4.811261177062988,
+ "step": 518
+ },
+ {
+ "epoch": 7.209606986899563,
+ "grad_norm": 0.05830753222107887,
+ "learning_rate": 0.0006,
+ "loss": 4.818418025970459,
+ "step": 519
+ },
+ {
+ "epoch": 7.223580786026201,
+ "grad_norm": 0.06053008884191513,
+ "learning_rate": 0.0006,
+ "loss": 4.830060005187988,
+ "step": 520
+ },
+ {
+ "epoch": 7.2375545851528384,
+ "grad_norm": 0.04992729425430298,
+ "learning_rate": 0.0006,
+ "loss": 4.820477485656738,
+ "step": 521
+ },
+ {
+ "epoch": 7.251528384279476,
+ "grad_norm": 0.03906334191560745,
+ "learning_rate": 0.0006,
+ "loss": 4.776924133300781,
+ "step": 522
+ },
+ {
+ "epoch": 7.265502183406113,
+ "grad_norm": 0.041200339794158936,
+ "learning_rate": 0.0006,
+ "loss": 4.795502662658691,
+ "step": 523
+ },
+ {
+ "epoch": 7.279475982532751,
+ "grad_norm": 0.03866710141301155,
+ "learning_rate": 0.0006,
+ "loss": 4.748326778411865,
+ "step": 524
+ },
+ {
+ "epoch": 7.293449781659389,
+ "grad_norm": 0.03892578184604645,
+ "learning_rate": 0.0006,
+ "loss": 4.731060028076172,
+ "step": 525
+ },
+ {
+ "epoch": 7.307423580786026,
+ "grad_norm": 0.034929852932691574,
+ "learning_rate": 0.0006,
+ "loss": 4.769538879394531,
+ "step": 526
+ },
+ {
+ "epoch": 7.321397379912664,
+ "grad_norm": 0.03499983623623848,
+ "learning_rate": 0.0006,
+ "loss": 4.750111103057861,
+ "step": 527
+ },
+ {
+ "epoch": 7.335371179039301,
+ "grad_norm": 0.023694142699241638,
+ "learning_rate": 0.0006,
+ "loss": 4.741044998168945,
+ "step": 528
+ },
+ {
+ "epoch": 7.349344978165939,
+ "grad_norm": 0.02783721685409546,
+ "learning_rate": 0.0006,
+ "loss": 4.733529090881348,
+ "step": 529
+ },
+ {
+ "epoch": 7.3633187772925766,
+ "grad_norm": 0.022906454280018806,
+ "learning_rate": 0.0006,
+ "loss": 4.713002681732178,
+ "step": 530
+ },
+ {
+ "epoch": 7.377292576419214,
+ "grad_norm": 0.020011693239212036,
+ "learning_rate": 0.0006,
+ "loss": 4.6840620040893555,
+ "step": 531
+ },
+ {
+ "epoch": 7.391266375545851,
+ "grad_norm": 0.019985370337963104,
+ "learning_rate": 0.0006,
+ "loss": 4.695000171661377,
+ "step": 532
+ },
+ {
+ "epoch": 7.405240174672489,
+ "grad_norm": 0.019822653383016586,
+ "learning_rate": 0.0006,
+ "loss": 4.709036350250244,
+ "step": 533
+ },
+ {
+ "epoch": 7.419213973799127,
+ "grad_norm": 0.020615894347429276,
+ "learning_rate": 0.0006,
+ "loss": 4.679416656494141,
+ "step": 534
+ },
+ {
+ "epoch": 7.4331877729257645,
+ "grad_norm": 0.01958257146179676,
+ "learning_rate": 0.0006,
+ "loss": 4.704957008361816,
+ "step": 535
+ },
+ {
+ "epoch": 7.447161572052401,
+ "grad_norm": 0.02040509134531021,
+ "learning_rate": 0.0006,
+ "loss": 4.651505470275879,
+ "step": 536
+ },
+ {
+ "epoch": 7.461135371179039,
+ "grad_norm": 0.01626836135983467,
+ "learning_rate": 0.0006,
+ "loss": 4.694278240203857,
+ "step": 537
+ },
+ {
+ "epoch": 7.475109170305677,
+ "grad_norm": 0.01660163700580597,
+ "learning_rate": 0.0006,
+ "loss": 4.662658214569092,
+ "step": 538
+ },
+ {
+ "epoch": 7.489082969432315,
+ "grad_norm": 0.016483576968312263,
+ "learning_rate": 0.0006,
+ "loss": 4.695555686950684,
+ "step": 539
+ },
+ {
+ "epoch": 7.503056768558952,
+ "grad_norm": 0.018176909536123276,
+ "learning_rate": 0.0006,
+ "loss": 4.646458625793457,
+ "step": 540
+ },
+ {
+ "epoch": 7.517030567685589,
+ "grad_norm": 0.018314503133296967,
+ "learning_rate": 0.0006,
+ "loss": 4.643884181976318,
+ "step": 541
+ },
+ {
+ "epoch": 7.531004366812227,
+ "grad_norm": 0.016406886279582977,
+ "learning_rate": 0.0006,
+ "loss": 4.637638092041016,
+ "step": 542
+ },
+ {
+ "epoch": 7.544978165938865,
+ "grad_norm": 0.017510421574115753,
+ "learning_rate": 0.0006,
+ "loss": 4.6297926902771,
+ "step": 543
+ },
+ {
+ "epoch": 7.558951965065502,
+ "grad_norm": 0.021575570106506348,
+ "learning_rate": 0.0006,
+ "loss": 4.657093048095703,
+ "step": 544
+ },
+ {
+ "epoch": 7.5729257641921395,
+ "grad_norm": 0.024670056998729706,
+ "learning_rate": 0.0006,
+ "loss": 4.637840270996094,
+ "step": 545
+ },
+ {
+ "epoch": 7.586899563318777,
+ "grad_norm": 0.026005825027823448,
+ "learning_rate": 0.0006,
+ "loss": 4.622672080993652,
+ "step": 546
+ },
+ {
+ "epoch": 7.600873362445415,
+ "grad_norm": 0.024355988949537277,
+ "learning_rate": 0.0006,
+ "loss": 4.627206802368164,
+ "step": 547
+ },
+ {
+ "epoch": 7.614847161572053,
+ "grad_norm": 0.025826960802078247,
+ "learning_rate": 0.0006,
+ "loss": 4.616837501525879,
+ "step": 548
+ },
+ {
+ "epoch": 7.62882096069869,
+ "grad_norm": 0.02809619903564453,
+ "learning_rate": 0.0006,
+ "loss": 4.643812656402588,
+ "step": 549
+ },
+ {
+ "epoch": 7.642794759825327,
+ "grad_norm": 0.023823536932468414,
+ "learning_rate": 0.0006,
+ "loss": 4.623858451843262,
+ "step": 550
+ },
+ {
+ "epoch": 7.656768558951965,
+ "grad_norm": 0.024948647245764732,
+ "learning_rate": 0.0006,
+ "loss": 4.635528564453125,
+ "step": 551
+ },
+ {
+ "epoch": 7.670742358078603,
+ "grad_norm": 0.027852604165673256,
+ "learning_rate": 0.0006,
+ "loss": 4.606395721435547,
+ "step": 552
+ },
+ {
+ "epoch": 7.68471615720524,
+ "grad_norm": 0.031888775527477264,
+ "learning_rate": 0.0006,
+ "loss": 4.630072593688965,
+ "step": 553
+ },
+ {
+ "epoch": 7.698689956331878,
+ "grad_norm": 0.04423221945762634,
+ "learning_rate": 0.0006,
+ "loss": 4.592362880706787,
+ "step": 554
+ },
+ {
+ "epoch": 7.712663755458515,
+ "grad_norm": 0.05360350012779236,
+ "learning_rate": 0.0006,
+ "loss": 4.626799583435059,
+ "step": 555
+ },
+ {
+ "epoch": 7.726637554585153,
+ "grad_norm": 0.05218035727739334,
+ "learning_rate": 0.0006,
+ "loss": 4.591753005981445,
+ "step": 556
+ },
+ {
+ "epoch": 7.74061135371179,
+ "grad_norm": 0.04740380123257637,
+ "learning_rate": 0.0006,
+ "loss": 4.611865520477295,
+ "step": 557
+ },
+ {
+ "epoch": 7.754585152838428,
+ "grad_norm": 0.04325862228870392,
+ "learning_rate": 0.0006,
+ "loss": 4.585417747497559,
+ "step": 558
+ },
+ {
+ "epoch": 7.7685589519650655,
+ "grad_norm": 0.047380927950143814,
+ "learning_rate": 0.0006,
+ "loss": 4.595690727233887,
+ "step": 559
+ },
+ {
+ "epoch": 7.782532751091703,
+ "grad_norm": 0.05398833379149437,
+ "learning_rate": 0.0006,
+ "loss": 4.670032024383545,
+ "step": 560
+ },
+ {
+ "epoch": 7.796506550218341,
+ "grad_norm": 0.05550206080079079,
+ "learning_rate": 0.0006,
+ "loss": 4.603083610534668,
+ "step": 561
+ },
+ {
+ "epoch": 7.810480349344978,
+ "grad_norm": 0.048703186213970184,
+ "learning_rate": 0.0006,
+ "loss": 4.60882568359375,
+ "step": 562
+ },
+ {
+ "epoch": 7.824454148471616,
+ "grad_norm": 0.03849068656563759,
+ "learning_rate": 0.0006,
+ "loss": 4.600196838378906,
+ "step": 563
+ },
+ {
+ "epoch": 7.8384279475982535,
+ "grad_norm": 0.04322432354092598,
+ "learning_rate": 0.0006,
+ "loss": 4.635777473449707,
+ "step": 564
+ },
+ {
+ "epoch": 7.85240174672489,
+ "grad_norm": 0.03958692029118538,
+ "learning_rate": 0.0006,
+ "loss": 4.586699962615967,
+ "step": 565
+ },
+ {
+ "epoch": 7.866375545851528,
+ "grad_norm": 0.035496462136507034,
+ "learning_rate": 0.0006,
+ "loss": 4.602683067321777,
+ "step": 566
+ },
+ {
+ "epoch": 7.880349344978166,
+ "grad_norm": 0.038870155811309814,
+ "learning_rate": 0.0006,
+ "loss": 4.635684013366699,
+ "step": 567
+ },
+ {
+ "epoch": 7.894323144104804,
+ "grad_norm": 0.038049351423978806,
+ "learning_rate": 0.0006,
+ "loss": 4.5812602043151855,
+ "step": 568
+ },
+ {
+ "epoch": 7.908296943231441,
+ "grad_norm": 0.029217766597867012,
+ "learning_rate": 0.0006,
+ "loss": 4.560367584228516,
+ "step": 569
+ },
+ {
+ "epoch": 7.922270742358078,
+ "grad_norm": 0.028376970440149307,
+ "learning_rate": 0.0006,
+ "loss": 4.578996658325195,
+ "step": 570
+ },
+ {
+ "epoch": 7.936244541484716,
+ "grad_norm": 0.035108938813209534,
+ "learning_rate": 0.0006,
+ "loss": 4.554547309875488,
+ "step": 571
+ },
+ {
+ "epoch": 7.950218340611354,
+ "grad_norm": 0.02971036173403263,
+ "learning_rate": 0.0006,
+ "loss": 4.5761919021606445,
+ "step": 572
+ },
+ {
+ "epoch": 7.964192139737992,
+ "grad_norm": 0.02690828964114189,
+ "learning_rate": 0.0006,
+ "loss": 4.568772315979004,
+ "step": 573
+ },
+ {
+ "epoch": 7.978165938864628,
+ "grad_norm": 0.023910939693450928,
+ "learning_rate": 0.0006,
+ "loss": 4.56700325012207,
+ "step": 574
+ },
+ {
+ "epoch": 7.992139737991266,
+ "grad_norm": 0.02027987875044346,
+ "learning_rate": 0.0006,
+ "loss": 4.563353538513184,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.02621232345700264,
+ "learning_rate": 0.0006,
+ "loss": 4.52655029296875,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 4.659845352172852,
+ "eval_runtime": 54.5122,
+ "eval_samples_per_second": 44.797,
+ "eval_steps_per_second": 1.413,
+ "step": 576
+ },
+ {
+ "epoch": 8.013973799126637,
+ "grad_norm": 0.024295445531606674,
+ "learning_rate": 0.0006,
+ "loss": 4.514026641845703,
+ "step": 577
+ },
+ {
+ "epoch": 8.027947598253276,
+ "grad_norm": 0.029430922120809555,
+ "learning_rate": 0.0006,
+ "loss": 4.479931831359863,
+ "step": 578
+ },
+ {
+ "epoch": 8.041921397379912,
+ "grad_norm": 0.03156977519392967,
+ "learning_rate": 0.0006,
+ "loss": 4.529452323913574,
+ "step": 579
+ },
+ {
+ "epoch": 8.055895196506551,
+ "grad_norm": 0.03411492332816124,
+ "learning_rate": 0.0006,
+ "loss": 4.501816749572754,
+ "step": 580
+ },
+ {
+ "epoch": 8.069868995633188,
+ "grad_norm": 0.03944215178489685,
+ "learning_rate": 0.0006,
+ "loss": 4.503504753112793,
+ "step": 581
+ },
+ {
+ "epoch": 8.083842794759825,
+ "grad_norm": 0.04511773958802223,
+ "learning_rate": 0.0006,
+ "loss": 4.481729984283447,
+ "step": 582
+ },
+ {
+ "epoch": 8.097816593886463,
+ "grad_norm": 0.03235149383544922,
+ "learning_rate": 0.0006,
+ "loss": 4.510499954223633,
+ "step": 583
+ },
+ {
+ "epoch": 8.1117903930131,
+ "grad_norm": 0.027723919600248337,
+ "learning_rate": 0.0006,
+ "loss": 4.492958068847656,
+ "step": 584
+ },
+ {
+ "epoch": 8.125764192139737,
+ "grad_norm": 0.033535368740558624,
+ "learning_rate": 0.0006,
+ "loss": 4.480009078979492,
+ "step": 585
+ },
+ {
+ "epoch": 8.139737991266376,
+ "grad_norm": 0.03412545099854469,
+ "learning_rate": 0.0006,
+ "loss": 4.464960098266602,
+ "step": 586
+ },
+ {
+ "epoch": 8.153711790393013,
+ "grad_norm": 0.03285292908549309,
+ "learning_rate": 0.0006,
+ "loss": 4.478358745574951,
+ "step": 587
+ },
+ {
+ "epoch": 8.167685589519651,
+ "grad_norm": 0.03460532799363136,
+ "learning_rate": 0.0006,
+ "loss": 4.490439414978027,
+ "step": 588
+ },
+ {
+ "epoch": 8.181659388646288,
+ "grad_norm": 0.037275977432727814,
+ "learning_rate": 0.0006,
+ "loss": 4.473151683807373,
+ "step": 589
+ },
+ {
+ "epoch": 8.195633187772925,
+ "grad_norm": 0.03485316038131714,
+ "learning_rate": 0.0006,
+ "loss": 4.491796493530273,
+ "step": 590
+ },
+ {
+ "epoch": 8.209606986899564,
+ "grad_norm": 0.03405699506402016,
+ "learning_rate": 0.0006,
+ "loss": 4.473565101623535,
+ "step": 591
+ },
+ {
+ "epoch": 8.2235807860262,
+ "grad_norm": 0.03975093364715576,
+ "learning_rate": 0.0006,
+ "loss": 4.494463920593262,
+ "step": 592
+ },
+ {
+ "epoch": 8.237554585152838,
+ "grad_norm": 0.03563615307211876,
+ "learning_rate": 0.0006,
+ "loss": 4.458979606628418,
+ "step": 593
+ },
+ {
+ "epoch": 8.251528384279476,
+ "grad_norm": 0.037183649837970734,
+ "learning_rate": 0.0006,
+ "loss": 4.4701948165893555,
+ "step": 594
+ },
+ {
+ "epoch": 8.265502183406113,
+ "grad_norm": 0.039340466260910034,
+ "learning_rate": 0.0006,
+ "loss": 4.489675521850586,
+ "step": 595
+ },
+ {
+ "epoch": 8.279475982532752,
+ "grad_norm": 0.03162173181772232,
+ "learning_rate": 0.0006,
+ "loss": 4.422170162200928,
+ "step": 596
+ },
+ {
+ "epoch": 8.293449781659389,
+ "grad_norm": 0.03257273510098457,
+ "learning_rate": 0.0006,
+ "loss": 4.467840194702148,
+ "step": 597
+ },
+ {
+ "epoch": 8.307423580786025,
+ "grad_norm": 0.028066672384738922,
+ "learning_rate": 0.0006,
+ "loss": 4.471856117248535,
+ "step": 598
+ },
+ {
+ "epoch": 8.321397379912664,
+ "grad_norm": 0.032139431685209274,
+ "learning_rate": 0.0006,
+ "loss": 4.485661029815674,
+ "step": 599
+ },
+ {
+ "epoch": 8.335371179039301,
+ "grad_norm": 0.03333858773112297,
+ "learning_rate": 0.0006,
+ "loss": 4.411584854125977,
+ "step": 600
+ },
+ {
+ "epoch": 8.34934497816594,
+ "grad_norm": 0.03705155476927757,
+ "learning_rate": 0.0006,
+ "loss": 4.466585159301758,
+ "step": 601
+ },
+ {
+ "epoch": 8.363318777292577,
+ "grad_norm": 0.03022557683289051,
+ "learning_rate": 0.0006,
+ "loss": 4.4287428855896,
+ "step": 602
+ },
+ {
+ "epoch": 8.377292576419213,
+ "grad_norm": 0.02911069616675377,
+ "learning_rate": 0.0006,
+ "loss": 4.432306289672852,
+ "step": 603
+ },
+ {
+ "epoch": 8.391266375545852,
+ "grad_norm": 0.0332532562315464,
+ "learning_rate": 0.0006,
+ "loss": 4.446920871734619,
+ "step": 604
+ },
+ {
+ "epoch": 8.405240174672489,
+ "grad_norm": 0.028356043621897697,
+ "learning_rate": 0.0006,
+ "loss": 4.41445779800415,
+ "step": 605
+ },
+ {
+ "epoch": 8.419213973799126,
+ "grad_norm": 0.026536710560321808,
+ "learning_rate": 0.0006,
+ "loss": 4.45195198059082,
+ "step": 606
+ },
+ {
+ "epoch": 8.433187772925764,
+ "grad_norm": 0.027183571830391884,
+ "learning_rate": 0.0006,
+ "loss": 4.482472896575928,
+ "step": 607
+ },
+ {
+ "epoch": 8.447161572052401,
+ "grad_norm": 0.02418459579348564,
+ "learning_rate": 0.0006,
+ "loss": 4.407785415649414,
+ "step": 608
+ },
+ {
+ "epoch": 8.46113537117904,
+ "grad_norm": 0.03382935747504234,
+ "learning_rate": 0.0006,
+ "loss": 4.457126140594482,
+ "step": 609
+ },
+ {
+ "epoch": 8.475109170305677,
+ "grad_norm": 0.0399114228785038,
+ "learning_rate": 0.0006,
+ "loss": 4.404670238494873,
+ "step": 610
+ },
+ {
+ "epoch": 8.489082969432314,
+ "grad_norm": 0.02914121001958847,
+ "learning_rate": 0.0006,
+ "loss": 4.385491371154785,
+ "step": 611
+ },
+ {
+ "epoch": 8.503056768558952,
+ "grad_norm": 0.024029329419136047,
+ "learning_rate": 0.0006,
+ "loss": 4.3807878494262695,
+ "step": 612
+ },
+ {
+ "epoch": 8.51703056768559,
+ "grad_norm": 0.024073908105492592,
+ "learning_rate": 0.0006,
+ "loss": 4.393002033233643,
+ "step": 613
+ },
+ {
+ "epoch": 8.531004366812226,
+ "grad_norm": 0.024022364988923073,
+ "learning_rate": 0.0006,
+ "loss": 4.44310188293457,
+ "step": 614
+ },
+ {
+ "epoch": 8.544978165938865,
+ "grad_norm": 0.02552313171327114,
+ "learning_rate": 0.0006,
+ "loss": 4.370255947113037,
+ "step": 615
+ },
+ {
+ "epoch": 8.558951965065502,
+ "grad_norm": 0.022251879796385765,
+ "learning_rate": 0.0006,
+ "loss": 4.366595268249512,
+ "step": 616
+ },
+ {
+ "epoch": 8.57292576419214,
+ "grad_norm": 0.022750860080122948,
+ "learning_rate": 0.0006,
+ "loss": 4.377684116363525,
+ "step": 617
+ },
+ {
+ "epoch": 8.586899563318777,
+ "grad_norm": 0.022422555834054947,
+ "learning_rate": 0.0006,
+ "loss": 4.397234916687012,
+ "step": 618
+ },
+ {
+ "epoch": 8.600873362445414,
+ "grad_norm": 0.02737540379166603,
+ "learning_rate": 0.0006,
+ "loss": 4.406569957733154,
+ "step": 619
+ },
+ {
+ "epoch": 8.614847161572053,
+ "grad_norm": 0.0230751670897007,
+ "learning_rate": 0.0006,
+ "loss": 4.37363862991333,
+ "step": 620
+ },
+ {
+ "epoch": 8.62882096069869,
+ "grad_norm": 0.02010422758758068,
+ "learning_rate": 0.0006,
+ "loss": 4.396723747253418,
+ "step": 621
+ },
+ {
+ "epoch": 8.642794759825328,
+ "grad_norm": 0.024875663220882416,
+ "learning_rate": 0.0006,
+ "loss": 4.382737159729004,
+ "step": 622
+ },
+ {
+ "epoch": 8.656768558951965,
+ "grad_norm": 0.026101084426045418,
+ "learning_rate": 0.0006,
+ "loss": 4.376001358032227,
+ "step": 623
+ },
+ {
+ "epoch": 8.670742358078602,
+ "grad_norm": 0.026131760329008102,
+ "learning_rate": 0.0006,
+ "loss": 4.392600059509277,
+ "step": 624
+ },
+ {
+ "epoch": 8.68471615720524,
+ "grad_norm": 0.02580229938030243,
+ "learning_rate": 0.0006,
+ "loss": 4.383554458618164,
+ "step": 625
+ },
+ {
+ "epoch": 8.698689956331878,
+ "grad_norm": 0.02919621206820011,
+ "learning_rate": 0.0006,
+ "loss": 4.369998455047607,
+ "step": 626
+ },
+ {
+ "epoch": 8.712663755458514,
+ "grad_norm": 0.03268479183316231,
+ "learning_rate": 0.0006,
+ "loss": 4.364940166473389,
+ "step": 627
+ },
+ {
+ "epoch": 8.726637554585153,
+ "grad_norm": 0.031615134328603745,
+ "learning_rate": 0.0006,
+ "loss": 4.354142189025879,
+ "step": 628
+ },
+ {
+ "epoch": 8.74061135371179,
+ "grad_norm": 0.03091943822801113,
+ "learning_rate": 0.0006,
+ "loss": 4.405896186828613,
+ "step": 629
+ },
+ {
+ "epoch": 8.754585152838429,
+ "grad_norm": 0.03459984436631203,
+ "learning_rate": 0.0006,
+ "loss": 4.386331558227539,
+ "step": 630
+ },
+ {
+ "epoch": 8.768558951965066,
+ "grad_norm": 0.03276519104838371,
+ "learning_rate": 0.0006,
+ "loss": 4.351153373718262,
+ "step": 631
+ },
+ {
+ "epoch": 8.782532751091702,
+ "grad_norm": 0.03300934657454491,
+ "learning_rate": 0.0006,
+ "loss": 4.364960670471191,
+ "step": 632
+ },
+ {
+ "epoch": 8.796506550218341,
+ "grad_norm": 0.03618944436311722,
+ "learning_rate": 0.0006,
+ "loss": 4.3519134521484375,
+ "step": 633
+ },
+ {
+ "epoch": 8.810480349344978,
+ "grad_norm": 0.03368232026696205,
+ "learning_rate": 0.0006,
+ "loss": 4.374147891998291,
+ "step": 634
+ },
+ {
+ "epoch": 8.824454148471617,
+ "grad_norm": 0.03252463415265083,
+ "learning_rate": 0.0006,
+ "loss": 4.367391586303711,
+ "step": 635
+ },
+ {
+ "epoch": 8.838427947598253,
+ "grad_norm": 0.03680579736828804,
+ "learning_rate": 0.0006,
+ "loss": 4.364116191864014,
+ "step": 636
+ },
+ {
+ "epoch": 8.85240174672489,
+ "grad_norm": 0.0317164771258831,
+ "learning_rate": 0.0006,
+ "loss": 4.379790306091309,
+ "step": 637
+ },
+ {
+ "epoch": 8.866375545851529,
+ "grad_norm": 0.031701602041721344,
+ "learning_rate": 0.0006,
+ "loss": 4.353549003601074,
+ "step": 638
+ },
+ {
+ "epoch": 8.880349344978166,
+ "grad_norm": 0.029211340472102165,
+ "learning_rate": 0.0006,
+ "loss": 4.343072891235352,
+ "step": 639
+ },
+ {
+ "epoch": 8.894323144104803,
+ "grad_norm": 0.02774505503475666,
+ "learning_rate": 0.0006,
+ "loss": 4.354020118713379,
+ "step": 640
+ },
+ {
+ "epoch": 8.908296943231441,
+ "grad_norm": 0.027463624253869057,
+ "learning_rate": 0.0006,
+ "loss": 4.354701519012451,
+ "step": 641
+ },
+ {
+ "epoch": 8.922270742358078,
+ "grad_norm": 0.023732105270028114,
+ "learning_rate": 0.0006,
+ "loss": 4.347830772399902,
+ "step": 642
+ },
+ {
+ "epoch": 8.936244541484717,
+ "grad_norm": 0.02339051477611065,
+ "learning_rate": 0.0006,
+ "loss": 4.342405319213867,
+ "step": 643
+ },
+ {
+ "epoch": 8.950218340611354,
+ "grad_norm": 0.023744868114590645,
+ "learning_rate": 0.0006,
+ "loss": 4.352578163146973,
+ "step": 644
+ },
+ {
+ "epoch": 8.96419213973799,
+ "grad_norm": 0.02563423290848732,
+ "learning_rate": 0.0006,
+ "loss": 4.37408971786499,
+ "step": 645
+ },
+ {
+ "epoch": 8.97816593886463,
+ "grad_norm": 0.031334877014160156,
+ "learning_rate": 0.0006,
+ "loss": 4.309673309326172,
+ "step": 646
+ },
+ {
+ "epoch": 8.992139737991266,
+ "grad_norm": 0.03283081576228142,
+ "learning_rate": 0.0006,
+ "loss": 4.348544597625732,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.03263505920767784,
+ "learning_rate": 0.0006,
+ "loss": 4.307372093200684,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 4.477582931518555,
+ "eval_runtime": 50.1212,
+ "eval_samples_per_second": 48.722,
+ "eval_steps_per_second": 1.536,
+ "step": 648
+ },
+ {
+ "epoch": 9.013973799126637,
+ "grad_norm": 0.038239408284425735,
+ "learning_rate": 0.0006,
+ "loss": 4.2784552574157715,
+ "step": 649
+ },
+ {
+ "epoch": 9.027947598253276,
+ "grad_norm": 0.044226426631212234,
+ "learning_rate": 0.0006,
+ "loss": 4.332424163818359,
+ "step": 650
+ },
+ {
+ "epoch": 9.041921397379912,
+ "grad_norm": 0.04743504151701927,
+ "learning_rate": 0.0006,
+ "loss": 4.303574085235596,
+ "step": 651
+ },
+ {
+ "epoch": 9.055895196506551,
+ "grad_norm": 0.04348866268992424,
+ "learning_rate": 0.0006,
+ "loss": 4.295550346374512,
+ "step": 652
+ },
+ {
+ "epoch": 9.069868995633188,
+ "grad_norm": 0.04830600693821907,
+ "learning_rate": 0.0006,
+ "loss": 4.2577619552612305,
+ "step": 653
+ },
+ {
+ "epoch": 9.083842794759825,
+ "grad_norm": 0.05154724419116974,
+ "learning_rate": 0.0006,
+ "loss": 4.314383506774902,
+ "step": 654
+ },
+ {
+ "epoch": 9.097816593886463,
+ "grad_norm": 0.044492293149232864,
+ "learning_rate": 0.0006,
+ "loss": 4.32614803314209,
+ "step": 655
+ },
+ {
+ "epoch": 9.1117903930131,
+ "grad_norm": 0.03842560201883316,
+ "learning_rate": 0.0006,
+ "loss": 4.273819446563721,
+ "step": 656
+ },
+ {
+ "epoch": 9.125764192139737,
+ "grad_norm": 0.043655358254909515,
+ "learning_rate": 0.0006,
+ "loss": 4.334014892578125,
+ "step": 657
+ },
+ {
+ "epoch": 9.139737991266376,
+ "grad_norm": 0.051922112703323364,
+ "learning_rate": 0.0006,
+ "loss": 4.308163642883301,
+ "step": 658
+ },
+ {
+ "epoch": 9.153711790393013,
+ "grad_norm": 0.049958787858486176,
+ "learning_rate": 0.0006,
+ "loss": 4.30555534362793,
+ "step": 659
+ },
+ {
+ "epoch": 9.167685589519651,
+ "grad_norm": 0.03839104622602463,
+ "learning_rate": 0.0006,
+ "loss": 4.316109657287598,
+ "step": 660
+ },
+ {
+ "epoch": 9.181659388646288,
+ "grad_norm": 0.03898056969046593,
+ "learning_rate": 0.0006,
+ "loss": 4.308863639831543,
+ "step": 661
+ },
+ {
+ "epoch": 9.195633187772925,
+ "grad_norm": 0.028817247599363327,
+ "learning_rate": 0.0006,
+ "loss": 4.300504684448242,
+ "step": 662
+ },
+ {
+ "epoch": 9.209606986899564,
+ "grad_norm": 0.030067335814237595,
+ "learning_rate": 0.0006,
+ "loss": 4.259067535400391,
+ "step": 663
+ },
+ {
+ "epoch": 9.2235807860262,
+ "grad_norm": 0.03195219859480858,
+ "learning_rate": 0.0006,
+ "loss": 4.3144426345825195,
+ "step": 664
+ },
+ {
+ "epoch": 9.237554585152838,
+ "grad_norm": 0.03194814175367355,
+ "learning_rate": 0.0006,
+ "loss": 4.259864330291748,
+ "step": 665
+ },
+ {
+ "epoch": 9.251528384279476,
+ "grad_norm": 0.02754005789756775,
+ "learning_rate": 0.0006,
+ "loss": 4.291876316070557,
+ "step": 666
+ },
+ {
+ "epoch": 9.265502183406113,
+ "grad_norm": 0.026083929464221,
+ "learning_rate": 0.0006,
+ "loss": 4.205921649932861,
+ "step": 667
+ },
+ {
+ "epoch": 9.279475982532752,
+ "grad_norm": 0.025165516883134842,
+ "learning_rate": 0.0006,
+ "loss": 4.23714017868042,
+ "step": 668
+ },
+ {
+ "epoch": 9.293449781659389,
+ "grad_norm": 0.02380996011197567,
+ "learning_rate": 0.0006,
+ "loss": 4.263561725616455,
+ "step": 669
+ },
+ {
+ "epoch": 9.307423580786025,
+ "grad_norm": 0.025552157312631607,
+ "learning_rate": 0.0006,
+ "loss": 4.222456932067871,
+ "step": 670
+ },
+ {
+ "epoch": 9.321397379912664,
+ "grad_norm": 0.024957234039902687,
+ "learning_rate": 0.0006,
+ "loss": 4.250582695007324,
+ "step": 671
+ },
+ {
+ "epoch": 9.335371179039301,
+ "grad_norm": 0.02580283023416996,
+ "learning_rate": 0.0006,
+ "loss": 4.240250587463379,
+ "step": 672
+ },
+ {
+ "epoch": 9.34934497816594,
+ "grad_norm": 0.020701562985777855,
+ "learning_rate": 0.0006,
+ "loss": 4.222497463226318,
+ "step": 673
+ },
+ {
+ "epoch": 9.363318777292577,
+ "grad_norm": 0.021373746916651726,
+ "learning_rate": 0.0006,
+ "loss": 4.242282390594482,
+ "step": 674
+ },
+ {
+ "epoch": 9.377292576419213,
+ "grad_norm": 0.02025660127401352,
+ "learning_rate": 0.0006,
+ "loss": 4.270265579223633,
+ "step": 675
+ },
+ {
+ "epoch": 9.391266375545852,
+ "grad_norm": 0.02325408160686493,
+ "learning_rate": 0.0006,
+ "loss": 4.222276210784912,
+ "step": 676
+ },
+ {
+ "epoch": 9.405240174672489,
+ "grad_norm": 0.02470816671848297,
+ "learning_rate": 0.0006,
+ "loss": 4.238652229309082,
+ "step": 677
+ },
+ {
+ "epoch": 9.419213973799126,
+ "grad_norm": 0.02343972586095333,
+ "learning_rate": 0.0006,
+ "loss": 4.24069881439209,
+ "step": 678
+ },
+ {
+ "epoch": 9.433187772925764,
+ "grad_norm": 0.021034302189946175,
+ "learning_rate": 0.0006,
+ "loss": 4.244692802429199,
+ "step": 679
+ },
+ {
+ "epoch": 9.447161572052401,
+ "grad_norm": 0.021374190226197243,
+ "learning_rate": 0.0006,
+ "loss": 4.224084854125977,
+ "step": 680
+ },
+ {
+ "epoch": 9.46113537117904,
+ "grad_norm": 0.020527871325612068,
+ "learning_rate": 0.0006,
+ "loss": 4.262082099914551,
+ "step": 681
+ },
+ {
+ "epoch": 9.475109170305677,
+ "grad_norm": 0.01585977151989937,
+ "learning_rate": 0.0006,
+ "loss": 4.226033687591553,
+ "step": 682
+ },
+ {
+ "epoch": 9.489082969432314,
+ "grad_norm": 0.016423987224698067,
+ "learning_rate": 0.0006,
+ "loss": 4.171637535095215,
+ "step": 683
+ },
+ {
+ "epoch": 9.503056768558952,
+ "grad_norm": 0.015297142788767815,
+ "learning_rate": 0.0006,
+ "loss": 4.209469795227051,
+ "step": 684
+ },
+ {
+ "epoch": 9.51703056768559,
+ "grad_norm": 0.014817374758422375,
+ "learning_rate": 0.0006,
+ "loss": 4.216704845428467,
+ "step": 685
+ },
+ {
+ "epoch": 9.531004366812226,
+ "grad_norm": 0.015434044413268566,
+ "learning_rate": 0.0006,
+ "loss": 4.256552696228027,
+ "step": 686
+ },
+ {
+ "epoch": 9.544978165938865,
+ "grad_norm": 0.016138242557644844,
+ "learning_rate": 0.0006,
+ "loss": 4.218762397766113,
+ "step": 687
+ },
+ {
+ "epoch": 9.558951965065502,
+ "grad_norm": 0.017201369628310204,
+ "learning_rate": 0.0006,
+ "loss": 4.251995086669922,
+ "step": 688
+ },
+ {
+ "epoch": 9.57292576419214,
+ "grad_norm": 0.01714685745537281,
+ "learning_rate": 0.0006,
+ "loss": 4.219054222106934,
+ "step": 689
+ },
+ {
+ "epoch": 9.586899563318777,
+ "grad_norm": 0.020723173394799232,
+ "learning_rate": 0.0006,
+ "loss": 4.255344390869141,
+ "step": 690
+ },
+ {
+ "epoch": 9.600873362445414,
+ "grad_norm": 0.028826871886849403,
+ "learning_rate": 0.0006,
+ "loss": 4.221752166748047,
+ "step": 691
+ },
+ {
+ "epoch": 9.614847161572053,
+ "grad_norm": 0.03474748879671097,
+ "learning_rate": 0.0006,
+ "loss": 4.205111503601074,
+ "step": 692
+ },
+ {
+ "epoch": 9.62882096069869,
+ "grad_norm": 0.030536217615008354,
+ "learning_rate": 0.0006,
+ "loss": 4.232375144958496,
+ "step": 693
+ },
+ {
+ "epoch": 9.642794759825328,
+ "grad_norm": 0.03158785030245781,
+ "learning_rate": 0.0006,
+ "loss": 4.186178207397461,
+ "step": 694
+ },
+ {
+ "epoch": 9.656768558951965,
+ "grad_norm": 0.032505910843610764,
+ "learning_rate": 0.0006,
+ "loss": 4.208681106567383,
+ "step": 695
+ },
+ {
+ "epoch": 9.670742358078602,
+ "grad_norm": 0.025617435574531555,
+ "learning_rate": 0.0006,
+ "loss": 4.190085411071777,
+ "step": 696
+ },
+ {
+ "epoch": 9.68471615720524,
+ "grad_norm": 0.03047073632478714,
+ "learning_rate": 0.0006,
+ "loss": 4.210445404052734,
+ "step": 697
+ },
+ {
+ "epoch": 9.698689956331878,
+ "grad_norm": 0.033015694469213486,
+ "learning_rate": 0.0006,
+ "loss": 4.215723037719727,
+ "step": 698
+ },
+ {
+ "epoch": 9.712663755458514,
+ "grad_norm": 0.0364084430038929,
+ "learning_rate": 0.0006,
+ "loss": 4.192442417144775,
+ "step": 699
+ },
+ {
+ "epoch": 9.726637554585153,
+ "grad_norm": 0.03577317297458649,
+ "learning_rate": 0.0006,
+ "loss": 4.20793342590332,
+ "step": 700
+ },
+ {
+ "epoch": 9.74061135371179,
+ "grad_norm": 0.031464435160160065,
+ "learning_rate": 0.0006,
+ "loss": 4.205752372741699,
+ "step": 701
+ },
+ {
+ "epoch": 9.754585152838429,
+ "grad_norm": 0.030628090724349022,
+ "learning_rate": 0.0006,
+ "loss": 4.209503173828125,
+ "step": 702
+ },
+ {
+ "epoch": 9.768558951965066,
+ "grad_norm": 0.031171889975667,
+ "learning_rate": 0.0006,
+ "loss": 4.189100742340088,
+ "step": 703
+ },
+ {
+ "epoch": 9.782532751091702,
+ "grad_norm": 0.026728026568889618,
+ "learning_rate": 0.0006,
+ "loss": 4.175262928009033,
+ "step": 704
+ },
+ {
+ "epoch": 9.796506550218341,
+ "grad_norm": 0.02975568361580372,
+ "learning_rate": 0.0006,
+ "loss": 4.180237770080566,
+ "step": 705
+ },
+ {
+ "epoch": 9.810480349344978,
+ "grad_norm": 0.03690735250711441,
+ "learning_rate": 0.0006,
+ "loss": 4.160732269287109,
+ "step": 706
+ },
+ {
+ "epoch": 9.824454148471617,
+ "grad_norm": 0.03488203138113022,
+ "learning_rate": 0.0006,
+ "loss": 4.228294849395752,
+ "step": 707
+ },
+ {
+ "epoch": 9.838427947598253,
+ "grad_norm": 0.032557982951402664,
+ "learning_rate": 0.0006,
+ "loss": 4.144038200378418,
+ "step": 708
+ },
+ {
+ "epoch": 9.85240174672489,
+ "grad_norm": 0.03189995512366295,
+ "learning_rate": 0.0006,
+ "loss": 4.194624900817871,
+ "step": 709
+ },
+ {
+ "epoch": 9.866375545851529,
+ "grad_norm": 0.03439774736762047,
+ "learning_rate": 0.0006,
+ "loss": 4.216994762420654,
+ "step": 710
+ },
+ {
+ "epoch": 9.880349344978166,
+ "grad_norm": 0.03789396584033966,
+ "learning_rate": 0.0006,
+ "loss": 4.196347236633301,
+ "step": 711
+ },
+ {
+ "epoch": 9.894323144104803,
+ "grad_norm": 0.037980109453201294,
+ "learning_rate": 0.0006,
+ "loss": 4.213890075683594,
+ "step": 712
+ },
+ {
+ "epoch": 9.908296943231441,
+ "grad_norm": 0.043379005044698715,
+ "learning_rate": 0.0006,
+ "loss": 4.209582328796387,
+ "step": 713
+ },
+ {
+ "epoch": 9.922270742358078,
+ "grad_norm": 0.03881588950753212,
+ "learning_rate": 0.0006,
+ "loss": 4.210249900817871,
+ "step": 714
+ },
+ {
+ "epoch": 9.936244541484717,
+ "grad_norm": 0.038644567131996155,
+ "learning_rate": 0.0006,
+ "loss": 4.169578552246094,
+ "step": 715
+ },
+ {
+ "epoch": 9.950218340611354,
+ "grad_norm": 0.03676586598157883,
+ "learning_rate": 0.0006,
+ "loss": 4.234776020050049,
+ "step": 716
+ },
+ {
+ "epoch": 9.96419213973799,
+ "grad_norm": 0.032105959951877594,
+ "learning_rate": 0.0006,
+ "loss": 4.218995094299316,
+ "step": 717
+ },
+ {
+ "epoch": 9.97816593886463,
+ "grad_norm": 0.034359272569417953,
+ "learning_rate": 0.0006,
+ "loss": 4.209888458251953,
+ "step": 718
+ },
+ {
+ "epoch": 9.992139737991266,
+ "grad_norm": 0.02772289142012596,
+ "learning_rate": 0.0006,
+ "loss": 4.201578140258789,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.03038903884589672,
+ "learning_rate": 0.0006,
+ "loss": 4.170413494110107,
+ "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-constantlr/checkpoint-720/training_args.bin b/runs/baseline-constantlr/checkpoint-720/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..902eed46d9e02245694ec118af9efec9cd359ff6
--- /dev/null
+++ b/runs/baseline-constantlr/checkpoint-720/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f8a755363e28cfde742d3e37ba600ce14b5716157c9823f5cadd1b47464c7fc2
+size 5201