diff --git a/.gitattributes b/.gitattributes
index 45e9d12987334d97ac6c0cbb1888fe97db702feb..e1d793e062afa5fd4c177044dc7aa2898257213d 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -74,3 +74,14 @@ runs/baseline/checkpoint-360/tokenizer.json filter=lfs diff=lfs merge=lfs -text
runs/baseline/checkpoint-3600/tokenizer.json filter=lfs diff=lfs merge=lfs -text
runs/baseline/checkpoint-72/tokenizer.json filter=lfs diff=lfs merge=lfs -text
runs/baseline/checkpoint-720/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/base-ssl/checkpoint-1080/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/base-ssl/checkpoint-1440/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/base-ssl/checkpoint-1800/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/base-ssl/checkpoint-2160/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/base-ssl/checkpoint-2520/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/base-ssl/checkpoint-2880/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/base-ssl/checkpoint-3240/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/base-ssl/checkpoint-360/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/base-ssl/checkpoint-3600/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/base-ssl/checkpoint-72/tokenizer.json filter=lfs diff=lfs merge=lfs -text
+runs/base-ssl/checkpoint-720/tokenizer.json filter=lfs diff=lfs merge=lfs -text
diff --git a/runs/base-ssl/checkpoint-1080/chat_template.jinja b/runs/base-ssl/checkpoint-1080/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/base-ssl/checkpoint-1080/chat_template.jinja
@@ -0,0 +1,85 @@
+{%- if tools %}
+ {{- '<|im_start|>system\n' }}
+ {%- if messages[0].role == 'system' %}
+ {{- messages[0].content + '\n\n' }}
+ {%- endif %}
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }}
+ {%- for tool in tools %}
+ {{- "\n" }}
+ {{- tool | tojson }}
+ {%- endfor %}
+ {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }}
+{%- else %}
+ {%- if messages[0].role == 'system' %}
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
+ {%- endif %}
+{%- endif %}
+{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
+{%- for message in messages[::-1] %}
+ {%- set index = (messages|length - 1) - loop.index0 %}
+ {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %}
+ {%- set ns.multi_step_tool = false %}
+ {%- set ns.last_query_index = index %}
+ {%- endif %}
+{%- endfor %}
+{%- for message in messages %}
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
+ {%- elif message.role == "assistant" %}
+ {%- set content = message.content %}
+ {%- set reasoning_content = '' %}
+ {%- if message.reasoning_content is defined and message.reasoning_content is not none %}
+ {%- set reasoning_content = message.reasoning_content %}
+ {%- else %}
+ {%- if '' in message.content %}
+ {%- set content = message.content.split('')[-1].lstrip('\n') %}
+ {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %}
+ {%- endif %}
+ {%- endif %}
+ {%- if loop.index0 > ns.last_query_index %}
+ {%- if loop.last or (not loop.last and reasoning_content) %}
+ {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- if message.tool_calls %}
+ {%- for tool_call in message.tool_calls %}
+ {%- if (loop.first and content) or (not loop.first) %}
+ {{- '\n' }}
+ {%- endif %}
+ {%- if tool_call.function %}
+ {%- set tool_call = tool_call.function %}
+ {%- endif %}
+ {{- '\n{"name": "' }}
+ {{- tool_call.name }}
+ {{- '", "arguments": ' }}
+ {%- if tool_call.arguments is string %}
+ {{- tool_call.arguments }}
+ {%- else %}
+ {{- tool_call.arguments | tojson }}
+ {%- endif %}
+ {{- '}\n' }}
+ {%- endfor %}
+ {%- endif %}
+ {{- '<|im_end|>\n' }}
+ {%- elif message.role == "tool" %}
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
+ {{- '<|im_start|>user' }}
+ {%- endif %}
+ {{- '\n\n' }}
+ {{- message.content }}
+ {{- '\n' }}
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
+ {{- '<|im_end|>\n' }}
+ {%- endif %}
+ {%- endif %}
+{%- endfor %}
+{%- if add_generation_prompt %}
+ {{- '<|im_start|>assistant\n' }}
+ {%- if enable_thinking is defined and enable_thinking is false %}
+ {{- '\n\n\n\n' }}
+ {%- endif %}
+{%- endif %}
\ No newline at end of file
diff --git a/runs/base-ssl/checkpoint-1080/config.json b/runs/base-ssl/checkpoint-1080/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/base-ssl/checkpoint-1080/config.json
@@ -0,0 +1,32 @@
+{
+ "architectures": [
+ "LlamaForCausalLM"
+ ],
+ "attention_bias": false,
+ "attention_dropout": 0.0,
+ "bos_token_id": null,
+ "dtype": "float32",
+ "eos_token_id": 151645,
+ "head_dim": 128,
+ "hidden_act": "silu",
+ "hidden_size": 512,
+ "initializer_range": 0.02,
+ "intermediate_size": 1536,
+ "max_position_embeddings": 2048,
+ "mlp_bias": false,
+ "model_type": "llama",
+ "num_attention_heads": 4,
+ "num_hidden_layers": 20,
+ "num_key_value_heads": 4,
+ "pad_token_id": 151645,
+ "pretraining_tp": 1,
+ "rms_norm_eps": 1e-06,
+ "rope_parameters": {
+ "rope_theta": 10000.0,
+ "rope_type": "default"
+ },
+ "tie_word_embeddings": true,
+ "transformers_version": "5.5.0",
+ "use_cache": false,
+ "vocab_size": 151671
+}
diff --git a/runs/base-ssl/checkpoint-1080/generation_config.json b/runs/base-ssl/checkpoint-1080/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/base-ssl/checkpoint-1080/generation_config.json
@@ -0,0 +1,11 @@
+{
+ "_from_model_config": true,
+ "eos_token_id": [
+ 151645
+ ],
+ "output_attentions": false,
+ "output_hidden_states": false,
+ "pad_token_id": 151645,
+ "transformers_version": "5.5.0",
+ "use_cache": true
+}
diff --git a/runs/base-ssl/checkpoint-1080/model.safetensors b/runs/base-ssl/checkpoint-1080/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..3601cdba25d51fe9d9c9631179ebc5889d8452c7
--- /dev/null
+++ b/runs/base-ssl/checkpoint-1080/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2db22eb9cdcb2ebc8b9b2719c8b442332d4ad22bb4419c464b0b5492215a1538
+size 583356232
diff --git a/runs/base-ssl/checkpoint-1080/optimizer.pt b/runs/base-ssl/checkpoint-1080/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..3a799c2817cf04ab0df395b70c13745b57d97245
--- /dev/null
+++ b/runs/base-ssl/checkpoint-1080/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ce9e01ed1c3d7cde905441d423af82f89f65e93a24e8e24c566d5598983b03da
+size 1166825803
diff --git a/runs/base-ssl/checkpoint-1080/rng_state_0.pth b/runs/base-ssl/checkpoint-1080/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..ff81a4a04de793f1c690eab304502628a6f01a16
--- /dev/null
+++ b/runs/base-ssl/checkpoint-1080/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:3e64ff3db32365cabac6ffad743c22ab2586a3c7538842f851d54fcc9b00320b
+size 14917
diff --git a/runs/base-ssl/checkpoint-1080/rng_state_1.pth b/runs/base-ssl/checkpoint-1080/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..2e0fc04a0aae1c0cb2027f4e52b0d2e25910d9a8
--- /dev/null
+++ b/runs/base-ssl/checkpoint-1080/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:837b65fefb8e1f24a6981b0d4649ff164abbce25b5c9c0d885ed58d7e0986bae
+size 14917
diff --git a/runs/base-ssl/checkpoint-1080/scheduler.pt b/runs/base-ssl/checkpoint-1080/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..3e275d97268eb212b051090ffcda70a20a7bd2eb
--- /dev/null
+++ b/runs/base-ssl/checkpoint-1080/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:bdeda49f9c209232e61e89d6b373289c81e91ac24ee327462ddf24dddafe25ed
+size 1465
diff --git a/runs/base-ssl/checkpoint-1080/tokenizer.json b/runs/base-ssl/checkpoint-1080/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/base-ssl/checkpoint-1080/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:59b6776030505d5b441d0727cce137047df748ab15db6ba3a1bac93c123742fb
+size 11424079
diff --git a/runs/base-ssl/checkpoint-1080/tokenizer_config.json b/runs/base-ssl/checkpoint-1080/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/base-ssl/checkpoint-1080/tokenizer_config.json
@@ -0,0 +1,18 @@
+{
+ "add_prefix_space": false,
+ "backend": "tokenizers",
+ "bos_token": null,
+ "clean_up_tokenization_spaces": false,
+ "eos_token": "<|im_end|>",
+ "errors": "replace",
+ "extra_special_tokens": [
+ "<|l2r_pred|>",
+ "<|r2l_pred|>"
+ ],
+ "is_local": false,
+ "model_max_length": 131072,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/base-ssl/checkpoint-1080/trainer_state.json b/runs/base-ssl/checkpoint-1080/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..1d32dce88d3aff920c14582edfd55f739ad42d41
--- /dev/null
+++ b/runs/base-ssl/checkpoint-1080/trainer_state.json
@@ -0,0 +1,7706 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 15.0,
+ "eval_steps": 500,
+ "global_step": 1080,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013937282229965157,
+ "grad_norm": 0.2712002694606781,
+ "learning_rate": 0.0,
+ "loss": 4.000947952270508,
+ "step": 1
+ },
+ {
+ "epoch": 0.027874564459930314,
+ "grad_norm": 0.2709888219833374,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 4.000800132751465,
+ "step": 2
+ },
+ {
+ "epoch": 0.041811846689895474,
+ "grad_norm": 0.2721220850944519,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 3.982931613922119,
+ "step": 3
+ },
+ {
+ "epoch": 0.05574912891986063,
+ "grad_norm": 0.24822379648685455,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 3.948713779449463,
+ "step": 4
+ },
+ {
+ "epoch": 0.06968641114982578,
+ "grad_norm": 0.2103811800479889,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 3.908690929412842,
+ "step": 5
+ },
+ {
+ "epoch": 0.08362369337979095,
+ "grad_norm": 0.18375654518604279,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 3.8660929203033447,
+ "step": 6
+ },
+ {
+ "epoch": 0.0975609756097561,
+ "grad_norm": 0.1471690535545349,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 3.82308030128479,
+ "step": 7
+ },
+ {
+ "epoch": 0.11149825783972125,
+ "grad_norm": 0.11132320016622543,
+ "learning_rate": 4.2e-05,
+ "loss": 3.790834426879883,
+ "step": 8
+ },
+ {
+ "epoch": 0.1254355400696864,
+ "grad_norm": 0.08796700090169907,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 3.7589545249938965,
+ "step": 9
+ },
+ {
+ "epoch": 0.13937282229965156,
+ "grad_norm": 0.07089080661535263,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 3.7346723079681396,
+ "step": 10
+ },
+ {
+ "epoch": 0.15331010452961671,
+ "grad_norm": 0.056723613291978836,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 3.7159838676452637,
+ "step": 11
+ },
+ {
+ "epoch": 0.1672473867595819,
+ "grad_norm": 0.04544799029827118,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 3.701421022415161,
+ "step": 12
+ },
+ {
+ "epoch": 0.18118466898954705,
+ "grad_norm": 0.03551485016942024,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 3.691774845123291,
+ "step": 13
+ },
+ {
+ "epoch": 0.1951219512195122,
+ "grad_norm": 0.028209710493683815,
+ "learning_rate": 7.8e-05,
+ "loss": 3.6860086917877197,
+ "step": 14
+ },
+ {
+ "epoch": 0.20905923344947736,
+ "grad_norm": 0.024290181696414948,
+ "learning_rate": 8.4e-05,
+ "loss": 3.6806883811950684,
+ "step": 15
+ },
+ {
+ "epoch": 0.2229965156794425,
+ "grad_norm": 0.022015230730175972,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 3.677751064300537,
+ "step": 16
+ },
+ {
+ "epoch": 0.23693379790940766,
+ "grad_norm": 0.01960836350917816,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 3.6738266944885254,
+ "step": 17
+ },
+ {
+ "epoch": 0.2508710801393728,
+ "grad_norm": 0.017675744369626045,
+ "learning_rate": 0.000102,
+ "loss": 3.6739063262939453,
+ "step": 18
+ },
+ {
+ "epoch": 0.26480836236933797,
+ "grad_norm": 0.01539881993085146,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 3.671247720718384,
+ "step": 19
+ },
+ {
+ "epoch": 0.2787456445993031,
+ "grad_norm": 0.013906505890190601,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 3.66833233833313,
+ "step": 20
+ },
+ {
+ "epoch": 0.2926829268292683,
+ "grad_norm": 0.01149708591401577,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 3.6706337928771973,
+ "step": 21
+ },
+ {
+ "epoch": 0.30662020905923343,
+ "grad_norm": 0.010512279346585274,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 3.667168140411377,
+ "step": 22
+ },
+ {
+ "epoch": 0.3205574912891986,
+ "grad_norm": 0.00897525716573,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 3.6630516052246094,
+ "step": 23
+ },
+ {
+ "epoch": 0.3344947735191638,
+ "grad_norm": 0.008081364445388317,
+ "learning_rate": 0.000138,
+ "loss": 3.6629021167755127,
+ "step": 24
+ },
+ {
+ "epoch": 0.34843205574912894,
+ "grad_norm": 0.0076500303111970425,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 3.66168212890625,
+ "step": 25
+ },
+ {
+ "epoch": 0.3623693379790941,
+ "grad_norm": 0.007083008531481028,
+ "learning_rate": 0.00015,
+ "loss": 3.6564559936523438,
+ "step": 26
+ },
+ {
+ "epoch": 0.37630662020905925,
+ "grad_norm": 0.006654089782387018,
+ "learning_rate": 0.000156,
+ "loss": 3.6590094566345215,
+ "step": 27
+ },
+ {
+ "epoch": 0.3902439024390244,
+ "grad_norm": 0.0073669785633683205,
+ "learning_rate": 0.000162,
+ "loss": 3.651914119720459,
+ "step": 28
+ },
+ {
+ "epoch": 0.40418118466898956,
+ "grad_norm": 0.007247959729284048,
+ "learning_rate": 0.000168,
+ "loss": 3.6557557582855225,
+ "step": 29
+ },
+ {
+ "epoch": 0.4181184668989547,
+ "grad_norm": 0.007229349110275507,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 3.651794910430908,
+ "step": 30
+ },
+ {
+ "epoch": 0.43205574912891986,
+ "grad_norm": 0.008839861489832401,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 3.653074264526367,
+ "step": 31
+ },
+ {
+ "epoch": 0.445993031358885,
+ "grad_norm": 0.009280834347009659,
+ "learning_rate": 0.000186,
+ "loss": 3.6503708362579346,
+ "step": 32
+ },
+ {
+ "epoch": 0.45993031358885017,
+ "grad_norm": 0.008585072122514248,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 3.650331497192383,
+ "step": 33
+ },
+ {
+ "epoch": 0.4738675958188153,
+ "grad_norm": 0.01164434663951397,
+ "learning_rate": 0.000198,
+ "loss": 3.6462929248809814,
+ "step": 34
+ },
+ {
+ "epoch": 0.4878048780487805,
+ "grad_norm": 0.012668018229305744,
+ "learning_rate": 0.000204,
+ "loss": 3.6516757011413574,
+ "step": 35
+ },
+ {
+ "epoch": 0.5017421602787456,
+ "grad_norm": 0.01610603742301464,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 3.647498607635498,
+ "step": 36
+ },
+ {
+ "epoch": 0.5156794425087108,
+ "grad_norm": 0.018993742763996124,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 3.642869472503662,
+ "step": 37
+ },
+ {
+ "epoch": 0.5296167247386759,
+ "grad_norm": 0.020697375759482384,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 3.639193058013916,
+ "step": 38
+ },
+ {
+ "epoch": 0.5435540069686411,
+ "grad_norm": 0.021636122837662697,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 3.630560874938965,
+ "step": 39
+ },
+ {
+ "epoch": 0.5574912891986062,
+ "grad_norm": 0.01893668621778488,
+ "learning_rate": 0.000234,
+ "loss": 3.6265769004821777,
+ "step": 40
+ },
+ {
+ "epoch": 0.5714285714285714,
+ "grad_norm": 0.025133362039923668,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 3.6185407638549805,
+ "step": 41
+ },
+ {
+ "epoch": 0.5853658536585366,
+ "grad_norm": 0.016397792845964432,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 3.609161853790283,
+ "step": 42
+ },
+ {
+ "epoch": 0.5993031358885017,
+ "grad_norm": 0.02059962786734104,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 3.5987398624420166,
+ "step": 43
+ },
+ {
+ "epoch": 0.6132404181184669,
+ "grad_norm": 0.026733839884400368,
+ "learning_rate": 0.000258,
+ "loss": 3.601898193359375,
+ "step": 44
+ },
+ {
+ "epoch": 0.627177700348432,
+ "grad_norm": 0.04592137038707733,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 3.597785472869873,
+ "step": 45
+ },
+ {
+ "epoch": 0.6411149825783972,
+ "grad_norm": 0.14618715643882751,
+ "learning_rate": 0.00027,
+ "loss": 3.597787857055664,
+ "step": 46
+ },
+ {
+ "epoch": 0.6550522648083623,
+ "grad_norm": 0.1228327602148056,
+ "learning_rate": 0.000276,
+ "loss": 3.598362922668457,
+ "step": 47
+ },
+ {
+ "epoch": 0.6689895470383276,
+ "grad_norm": 0.0651344507932663,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 3.5868940353393555,
+ "step": 48
+ },
+ {
+ "epoch": 0.6829268292682927,
+ "grad_norm": 0.030712513253092766,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 3.5800981521606445,
+ "step": 49
+ },
+ {
+ "epoch": 0.6968641114982579,
+ "grad_norm": 0.07069414854049683,
+ "learning_rate": 0.000294,
+ "loss": 3.590576171875,
+ "step": 50
+ },
+ {
+ "epoch": 0.710801393728223,
+ "grad_norm": 0.026333393529057503,
+ "learning_rate": 0.0003,
+ "loss": 3.5740621089935303,
+ "step": 51
+ },
+ {
+ "epoch": 0.7247386759581882,
+ "grad_norm": 0.050806671380996704,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 3.577582836151123,
+ "step": 52
+ },
+ {
+ "epoch": 0.7386759581881533,
+ "grad_norm": 0.04820532724261284,
+ "learning_rate": 0.000312,
+ "loss": 3.5686888694763184,
+ "step": 53
+ },
+ {
+ "epoch": 0.7526132404181185,
+ "grad_norm": 0.03834737837314606,
+ "learning_rate": 0.000318,
+ "loss": 3.571916341781616,
+ "step": 54
+ },
+ {
+ "epoch": 0.7665505226480837,
+ "grad_norm": 0.0663016214966774,
+ "learning_rate": 0.000324,
+ "loss": 3.563366413116455,
+ "step": 55
+ },
+ {
+ "epoch": 0.7804878048780488,
+ "grad_norm": 0.03111632913351059,
+ "learning_rate": 0.00033,
+ "loss": 3.555037021636963,
+ "step": 56
+ },
+ {
+ "epoch": 0.794425087108014,
+ "grad_norm": 0.06139425188302994,
+ "learning_rate": 0.000336,
+ "loss": 3.555377244949341,
+ "step": 57
+ },
+ {
+ "epoch": 0.8083623693379791,
+ "grad_norm": 0.02561746910214424,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 3.5368266105651855,
+ "step": 58
+ },
+ {
+ "epoch": 0.8222996515679443,
+ "grad_norm": 0.06502962112426758,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 3.5318264961242676,
+ "step": 59
+ },
+ {
+ "epoch": 0.8362369337979094,
+ "grad_norm": 0.06968390196561813,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 3.5210607051849365,
+ "step": 60
+ },
+ {
+ "epoch": 0.8501742160278746,
+ "grad_norm": 0.02670745924115181,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 3.5037078857421875,
+ "step": 61
+ },
+ {
+ "epoch": 0.8641114982578397,
+ "grad_norm": 0.07075569778680801,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 3.506938934326172,
+ "step": 62
+ },
+ {
+ "epoch": 0.8780487804878049,
+ "grad_norm": 0.061632659286260605,
+ "learning_rate": 0.000372,
+ "loss": 3.4960665702819824,
+ "step": 63
+ },
+ {
+ "epoch": 0.89198606271777,
+ "grad_norm": 0.10994791984558105,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 3.4926395416259766,
+ "step": 64
+ },
+ {
+ "epoch": 0.9059233449477352,
+ "grad_norm": 0.21027322113513947,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 3.502258777618408,
+ "step": 65
+ },
+ {
+ "epoch": 0.9198606271777003,
+ "grad_norm": 0.1937343329191208,
+ "learning_rate": 0.00039,
+ "loss": 3.5118448734283447,
+ "step": 66
+ },
+ {
+ "epoch": 0.9337979094076655,
+ "grad_norm": 0.07891395688056946,
+ "learning_rate": 0.000396,
+ "loss": 3.487575054168701,
+ "step": 67
+ },
+ {
+ "epoch": 0.9477351916376306,
+ "grad_norm": 0.12915678322315216,
+ "learning_rate": 0.000402,
+ "loss": 3.4890120029449463,
+ "step": 68
+ },
+ {
+ "epoch": 0.9616724738675958,
+ "grad_norm": 0.08530207723379135,
+ "learning_rate": 0.000408,
+ "loss": 3.4755735397338867,
+ "step": 69
+ },
+ {
+ "epoch": 0.975609756097561,
+ "grad_norm": 0.09704860299825668,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 3.4669318199157715,
+ "step": 70
+ },
+ {
+ "epoch": 0.9895470383275261,
+ "grad_norm": 0.07270640879869461,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 3.460634469985962,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.03984597697854042,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 2.590245485305786,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 0.8616236448287964,
+ "eval_runtime": 36.0347,
+ "eval_samples_per_second": 67.768,
+ "eval_steps_per_second": 0.555,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139372822299653,
+ "grad_norm": 0.058285508304834366,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 3.441636562347412,
+ "step": 73
+ },
+ {
+ "epoch": 1.0278745644599303,
+ "grad_norm": 0.07173695415258408,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 3.4476027488708496,
+ "step": 74
+ },
+ {
+ "epoch": 1.0418118466898956,
+ "grad_norm": 0.0367155559360981,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 3.4290428161621094,
+ "step": 75
+ },
+ {
+ "epoch": 1.0557491289198606,
+ "grad_norm": 0.05761358141899109,
+ "learning_rate": 0.00045,
+ "loss": 3.430612564086914,
+ "step": 76
+ },
+ {
+ "epoch": 1.0696864111498259,
+ "grad_norm": 0.06290662288665771,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 3.4222841262817383,
+ "step": 77
+ },
+ {
+ "epoch": 1.083623693379791,
+ "grad_norm": 0.09705018997192383,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 3.4233384132385254,
+ "step": 78
+ },
+ {
+ "epoch": 1.0975609756097562,
+ "grad_norm": 0.09656445682048798,
+ "learning_rate": 0.000468,
+ "loss": 3.422335624694824,
+ "step": 79
+ },
+ {
+ "epoch": 1.1114982578397212,
+ "grad_norm": 0.07884909957647324,
+ "learning_rate": 0.000474,
+ "loss": 3.4133338928222656,
+ "step": 80
+ },
+ {
+ "epoch": 1.1254355400696865,
+ "grad_norm": 0.06679042428731918,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 3.4053287506103516,
+ "step": 81
+ },
+ {
+ "epoch": 1.1393728222996515,
+ "grad_norm": 0.02522652968764305,
+ "learning_rate": 0.000486,
+ "loss": 3.392838478088379,
+ "step": 82
+ },
+ {
+ "epoch": 1.1533101045296168,
+ "grad_norm": 0.09408055245876312,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 3.3952789306640625,
+ "step": 83
+ },
+ {
+ "epoch": 1.1672473867595818,
+ "grad_norm": 0.08980021625757217,
+ "learning_rate": 0.000498,
+ "loss": 3.385244846343994,
+ "step": 84
+ },
+ {
+ "epoch": 1.181184668989547,
+ "grad_norm": 0.08343124389648438,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 3.382103443145752,
+ "step": 85
+ },
+ {
+ "epoch": 1.1951219512195121,
+ "grad_norm": 0.03343554213643074,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 3.374354362487793,
+ "step": 86
+ },
+ {
+ "epoch": 1.2090592334494774,
+ "grad_norm": 0.0852339118719101,
+ "learning_rate": 0.000516,
+ "loss": 3.3802456855773926,
+ "step": 87
+ },
+ {
+ "epoch": 1.2229965156794425,
+ "grad_norm": 0.09159538149833679,
+ "learning_rate": 0.000522,
+ "loss": 3.37576961517334,
+ "step": 88
+ },
+ {
+ "epoch": 1.2369337979094077,
+ "grad_norm": 0.04313444346189499,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 3.360690116882324,
+ "step": 89
+ },
+ {
+ "epoch": 1.2508710801393728,
+ "grad_norm": 0.075523741543293,
+ "learning_rate": 0.000534,
+ "loss": 3.3599460124969482,
+ "step": 90
+ },
+ {
+ "epoch": 1.264808362369338,
+ "grad_norm": 0.08516373485326767,
+ "learning_rate": 0.00054,
+ "loss": 3.3572096824645996,
+ "step": 91
+ },
+ {
+ "epoch": 1.278745644599303,
+ "grad_norm": 0.09553111344575882,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 3.3542261123657227,
+ "step": 92
+ },
+ {
+ "epoch": 1.2926829268292683,
+ "grad_norm": 0.05978025496006012,
+ "learning_rate": 0.000552,
+ "loss": 3.3440048694610596,
+ "step": 93
+ },
+ {
+ "epoch": 1.3066202090592334,
+ "grad_norm": 0.10827190428972244,
+ "learning_rate": 0.000558,
+ "loss": 3.3391332626342773,
+ "step": 94
+ },
+ {
+ "epoch": 1.3205574912891986,
+ "grad_norm": 0.1181376576423645,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 3.3493118286132812,
+ "step": 95
+ },
+ {
+ "epoch": 1.3344947735191637,
+ "grad_norm": 0.08178193867206573,
+ "learning_rate": 0.00057,
+ "loss": 3.3445382118225098,
+ "step": 96
+ },
+ {
+ "epoch": 1.348432055749129,
+ "grad_norm": 0.08283700793981552,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 3.3343238830566406,
+ "step": 97
+ },
+ {
+ "epoch": 1.3623693379790942,
+ "grad_norm": 0.11837095767259598,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 3.3336968421936035,
+ "step": 98
+ },
+ {
+ "epoch": 1.3763066202090593,
+ "grad_norm": 0.08230706304311752,
+ "learning_rate": 0.000588,
+ "loss": 3.3294646739959717,
+ "step": 99
+ },
+ {
+ "epoch": 1.3902439024390243,
+ "grad_norm": 0.09961626678705215,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 3.3242952823638916,
+ "step": 100
+ },
+ {
+ "epoch": 1.4041811846689896,
+ "grad_norm": 0.11294732987880707,
+ "learning_rate": 0.0006,
+ "loss": 3.330348491668701,
+ "step": 101
+ },
+ {
+ "epoch": 1.4181184668989548,
+ "grad_norm": 0.11236022412776947,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 3.322606086730957,
+ "step": 102
+ },
+ {
+ "epoch": 1.4320557491289199,
+ "grad_norm": 0.13230572640895844,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 3.3202784061431885,
+ "step": 103
+ },
+ {
+ "epoch": 1.445993031358885,
+ "grad_norm": 0.0783172994852066,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 3.3082056045532227,
+ "step": 104
+ },
+ {
+ "epoch": 1.4599303135888502,
+ "grad_norm": 0.07376513630151749,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 3.3011245727539062,
+ "step": 105
+ },
+ {
+ "epoch": 1.4738675958188154,
+ "grad_norm": 0.11039287596940994,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 3.2987873554229736,
+ "step": 106
+ },
+ {
+ "epoch": 1.4878048780487805,
+ "grad_norm": 0.0667329952120781,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 3.293043851852417,
+ "step": 107
+ },
+ {
+ "epoch": 1.5017421602787455,
+ "grad_norm": 0.0750635489821434,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 3.2865707874298096,
+ "step": 108
+ },
+ {
+ "epoch": 1.5156794425087108,
+ "grad_norm": 0.055155977606773376,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 3.278069496154785,
+ "step": 109
+ },
+ {
+ "epoch": 1.529616724738676,
+ "grad_norm": 0.07016722112894058,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 3.2837281227111816,
+ "step": 110
+ },
+ {
+ "epoch": 1.543554006968641,
+ "grad_norm": 0.09884901344776154,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 3.2782273292541504,
+ "step": 111
+ },
+ {
+ "epoch": 1.5574912891986061,
+ "grad_norm": 0.09402419626712799,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 3.2757701873779297,
+ "step": 112
+ },
+ {
+ "epoch": 1.5714285714285714,
+ "grad_norm": 0.06898307800292969,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 3.2636804580688477,
+ "step": 113
+ },
+ {
+ "epoch": 1.5853658536585367,
+ "grad_norm": 0.08733519911766052,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 3.2676005363464355,
+ "step": 114
+ },
+ {
+ "epoch": 1.5993031358885017,
+ "grad_norm": 0.05769918113946915,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 3.2505807876586914,
+ "step": 115
+ },
+ {
+ "epoch": 1.6132404181184667,
+ "grad_norm": 0.054460495710372925,
+ "learning_rate": 0.000599973080557108,
+ "loss": 3.259110689163208,
+ "step": 116
+ },
+ {
+ "epoch": 1.627177700348432,
+ "grad_norm": 0.055243365466594696,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 3.2438201904296875,
+ "step": 117
+ },
+ {
+ "epoch": 1.6411149825783973,
+ "grad_norm": 0.06122216582298279,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 3.2397255897521973,
+ "step": 118
+ },
+ {
+ "epoch": 1.6550522648083623,
+ "grad_norm": 0.05418086051940918,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 3.236057758331299,
+ "step": 119
+ },
+ {
+ "epoch": 1.6689895470383276,
+ "grad_norm": 0.04995540529489517,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 3.224294662475586,
+ "step": 120
+ },
+ {
+ "epoch": 1.6829268292682928,
+ "grad_norm": 0.057540878653526306,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 3.2251172065734863,
+ "step": 121
+ },
+ {
+ "epoch": 1.6968641114982579,
+ "grad_norm": 0.05698078125715256,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 3.228363513946533,
+ "step": 122
+ },
+ {
+ "epoch": 1.710801393728223,
+ "grad_norm": 0.07352662831544876,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 3.2196407318115234,
+ "step": 123
+ },
+ {
+ "epoch": 1.7247386759581882,
+ "grad_norm": 0.08591686934232712,
+ "learning_rate": 0.000599936710690505,
+ "loss": 3.2231035232543945,
+ "step": 124
+ },
+ {
+ "epoch": 1.7386759581881535,
+ "grad_norm": 0.06970733404159546,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 3.2126383781433105,
+ "step": 125
+ },
+ {
+ "epoch": 1.7526132404181185,
+ "grad_norm": 0.04472116380929947,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 3.216801881790161,
+ "step": 126
+ },
+ {
+ "epoch": 1.7665505226480835,
+ "grad_norm": 0.059133559465408325,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 3.2136807441711426,
+ "step": 127
+ },
+ {
+ "epoch": 1.7804878048780488,
+ "grad_norm": 0.08288449794054031,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 3.210519552230835,
+ "step": 128
+ },
+ {
+ "epoch": 1.794425087108014,
+ "grad_norm": 0.09659463912248611,
+ "learning_rate": 0.00059990620421714,
+ "loss": 3.205916404724121,
+ "step": 129
+ },
+ {
+ "epoch": 1.8083623693379791,
+ "grad_norm": 0.08611937612295151,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 3.206793785095215,
+ "step": 130
+ },
+ {
+ "epoch": 1.8222996515679442,
+ "grad_norm": 0.06448066979646683,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 3.2026424407958984,
+ "step": 131
+ },
+ {
+ "epoch": 1.8362369337979094,
+ "grad_norm": 0.07323113083839417,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 3.1864631175994873,
+ "step": 132
+ },
+ {
+ "epoch": 1.8501742160278747,
+ "grad_norm": 0.0739368200302124,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 3.1875557899475098,
+ "step": 133
+ },
+ {
+ "epoch": 1.8641114982578397,
+ "grad_norm": 0.08289099484682083,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 3.1901979446411133,
+ "step": 134
+ },
+ {
+ "epoch": 1.8780487804878048,
+ "grad_norm": 0.06641175597906113,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 3.1776785850524902,
+ "step": 135
+ },
+ {
+ "epoch": 1.89198606271777,
+ "grad_norm": 0.04873652383685112,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 3.1743667125701904,
+ "step": 136
+ },
+ {
+ "epoch": 1.9059233449477353,
+ "grad_norm": 0.04623038321733475,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 3.1759986877441406,
+ "step": 137
+ },
+ {
+ "epoch": 1.9198606271777003,
+ "grad_norm": 0.059709370136260986,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 3.1702799797058105,
+ "step": 138
+ },
+ {
+ "epoch": 1.9337979094076654,
+ "grad_norm": 0.040581051260232925,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 3.1607465744018555,
+ "step": 139
+ },
+ {
+ "epoch": 1.9477351916376306,
+ "grad_norm": 0.04940655827522278,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 3.1620500087738037,
+ "step": 140
+ },
+ {
+ "epoch": 1.961672473867596,
+ "grad_norm": 0.055740341544151306,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 3.1535825729370117,
+ "step": 141
+ },
+ {
+ "epoch": 1.975609756097561,
+ "grad_norm": 0.06836569309234619,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 3.1512832641601562,
+ "step": 142
+ },
+ {
+ "epoch": 1.989547038327526,
+ "grad_norm": 0.08451569080352783,
+ "learning_rate": 0.000599788973374255,
+ "loss": 3.147432804107666,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.06781627237796783,
+ "learning_rate": 0.000599778806120077,
+ "loss": 2.3624467849731445,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 0.7888243794441223,
+ "eval_runtime": 37.0572,
+ "eval_samples_per_second": 65.898,
+ "eval_steps_per_second": 0.54,
+ "step": 144
+ },
+ {
+ "epoch": 2.013937282229965,
+ "grad_norm": 0.045119598507881165,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 3.139284610748291,
+ "step": 145
+ },
+ {
+ "epoch": 2.0278745644599305,
+ "grad_norm": 0.09132017195224762,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 3.140348434448242,
+ "step": 146
+ },
+ {
+ "epoch": 2.0418118466898956,
+ "grad_norm": 0.07457596063613892,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 3.140091896057129,
+ "step": 147
+ },
+ {
+ "epoch": 2.0557491289198606,
+ "grad_norm": 0.07544369250535965,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 3.1411213874816895,
+ "step": 148
+ },
+ {
+ "epoch": 2.0696864111498257,
+ "grad_norm": 0.046033963561058044,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 3.1405649185180664,
+ "step": 149
+ },
+ {
+ "epoch": 2.083623693379791,
+ "grad_norm": 0.06651527434587479,
+ "learning_rate": 0.000599712781599403,
+ "loss": 3.135124683380127,
+ "step": 150
+ },
+ {
+ "epoch": 2.097560975609756,
+ "grad_norm": 0.07238955795764923,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 3.1302051544189453,
+ "step": 151
+ },
+ {
+ "epoch": 2.1114982578397212,
+ "grad_norm": 0.06696683913469315,
+ "learning_rate": 0.000599688860879549,
+ "loss": 3.128504991531372,
+ "step": 152
+ },
+ {
+ "epoch": 2.1254355400696863,
+ "grad_norm": 0.042010076344013214,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 3.119443893432617,
+ "step": 153
+ },
+ {
+ "epoch": 2.1393728222996518,
+ "grad_norm": 0.053164687007665634,
+ "learning_rate": 0.000599663984012462,
+ "loss": 3.1174211502075195,
+ "step": 154
+ },
+ {
+ "epoch": 2.153310104529617,
+ "grad_norm": 0.047281116247177124,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 3.1211044788360596,
+ "step": 155
+ },
+ {
+ "epoch": 2.167247386759582,
+ "grad_norm": 0.0531938374042511,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 3.1136691570281982,
+ "step": 156
+ },
+ {
+ "epoch": 2.181184668989547,
+ "grad_norm": 0.0702054500579834,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 3.112502336502075,
+ "step": 157
+ },
+ {
+ "epoch": 2.1951219512195124,
+ "grad_norm": 0.07261929661035538,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 3.1049346923828125,
+ "step": 158
+ },
+ {
+ "epoch": 2.2090592334494774,
+ "grad_norm": 0.06666582822799683,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 3.1094369888305664,
+ "step": 159
+ },
+ {
+ "epoch": 2.2229965156794425,
+ "grad_norm": 0.047446250915527344,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 3.105876922607422,
+ "step": 160
+ },
+ {
+ "epoch": 2.2369337979094075,
+ "grad_norm": 0.03833230584859848,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 3.104224681854248,
+ "step": 161
+ },
+ {
+ "epoch": 2.250871080139373,
+ "grad_norm": 0.04562874883413315,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 3.105830192565918,
+ "step": 162
+ },
+ {
+ "epoch": 2.264808362369338,
+ "grad_norm": 0.0635828971862793,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 3.1061713695526123,
+ "step": 163
+ },
+ {
+ "epoch": 2.278745644599303,
+ "grad_norm": 0.09712212532758713,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 3.108053207397461,
+ "step": 164
+ },
+ {
+ "epoch": 2.292682926829268,
+ "grad_norm": 0.15060372650623322,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 3.126777172088623,
+ "step": 165
+ },
+ {
+ "epoch": 2.3066202090592336,
+ "grad_norm": 0.12047530710697174,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 3.116323471069336,
+ "step": 166
+ },
+ {
+ "epoch": 2.3205574912891986,
+ "grad_norm": 0.07486861199140549,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 3.1138410568237305,
+ "step": 167
+ },
+ {
+ "epoch": 2.3344947735191637,
+ "grad_norm": 0.07746157795190811,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 3.1107101440429688,
+ "step": 168
+ },
+ {
+ "epoch": 2.3484320557491287,
+ "grad_norm": 0.0804097130894661,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 3.1073827743530273,
+ "step": 169
+ },
+ {
+ "epoch": 2.362369337979094,
+ "grad_norm": 0.0559227392077446,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 3.102102041244507,
+ "step": 170
+ },
+ {
+ "epoch": 2.3763066202090593,
+ "grad_norm": 0.05415646359324455,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 3.096550464630127,
+ "step": 171
+ },
+ {
+ "epoch": 2.3902439024390243,
+ "grad_norm": 0.0463285967707634,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 3.0833563804626465,
+ "step": 172
+ },
+ {
+ "epoch": 2.40418118466899,
+ "grad_norm": 0.04705670103430748,
+ "learning_rate": 0.000599379982511273,
+ "loss": 3.0935018062591553,
+ "step": 173
+ },
+ {
+ "epoch": 2.418118466898955,
+ "grad_norm": 0.03608846664428711,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 3.085629463195801,
+ "step": 174
+ },
+ {
+ "epoch": 2.43205574912892,
+ "grad_norm": 0.03648562356829643,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 3.086639165878296,
+ "step": 175
+ },
+ {
+ "epoch": 2.445993031358885,
+ "grad_norm": 0.03640111908316612,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 3.088339328765869,
+ "step": 176
+ },
+ {
+ "epoch": 2.45993031358885,
+ "grad_norm": 0.029915692284703255,
+ "learning_rate": 0.000599309205504528,
+ "loss": 3.0802769660949707,
+ "step": 177
+ },
+ {
+ "epoch": 2.4738675958188154,
+ "grad_norm": 0.031756628304719925,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 3.0739364624023438,
+ "step": 178
+ },
+ {
+ "epoch": 2.4878048780487805,
+ "grad_norm": 0.03106086328625679,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 3.07144832611084,
+ "step": 179
+ },
+ {
+ "epoch": 2.5017421602787455,
+ "grad_norm": 0.03892781585454941,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 3.074242353439331,
+ "step": 180
+ },
+ {
+ "epoch": 2.515679442508711,
+ "grad_norm": 0.05611228197813034,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 3.0675928592681885,
+ "step": 181
+ },
+ {
+ "epoch": 2.529616724738676,
+ "grad_norm": 0.03397630900144577,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 3.073423147201538,
+ "step": 182
+ },
+ {
+ "epoch": 2.543554006968641,
+ "grad_norm": 0.04135085269808769,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 3.0808069705963135,
+ "step": 183
+ },
+ {
+ "epoch": 2.557491289198606,
+ "grad_norm": 0.03421049192547798,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 3.0616936683654785,
+ "step": 184
+ },
+ {
+ "epoch": 2.571428571428571,
+ "grad_norm": 0.030827628448605537,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 3.0656299591064453,
+ "step": 185
+ },
+ {
+ "epoch": 2.5853658536585367,
+ "grad_norm": 0.033190369606018066,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 3.0479578971862793,
+ "step": 186
+ },
+ {
+ "epoch": 2.5993031358885017,
+ "grad_norm": 0.026774903759360313,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 3.054133653640747,
+ "step": 187
+ },
+ {
+ "epoch": 2.6132404181184667,
+ "grad_norm": 0.03240266814827919,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 3.0536394119262695,
+ "step": 188
+ },
+ {
+ "epoch": 2.6271777003484322,
+ "grad_norm": 0.04305516183376312,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 3.048996925354004,
+ "step": 189
+ },
+ {
+ "epoch": 2.6411149825783973,
+ "grad_norm": 0.07109381258487701,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 3.0558314323425293,
+ "step": 190
+ },
+ {
+ "epoch": 2.6550522648083623,
+ "grad_norm": 0.11467248201370239,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 3.0587801933288574,
+ "step": 191
+ },
+ {
+ "epoch": 2.6689895470383274,
+ "grad_norm": 0.13839758932590485,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 3.0634102821350098,
+ "step": 192
+ },
+ {
+ "epoch": 2.682926829268293,
+ "grad_norm": 0.09269433468580246,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 3.0586462020874023,
+ "step": 193
+ },
+ {
+ "epoch": 2.696864111498258,
+ "grad_norm": 0.0611812099814415,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 3.054201602935791,
+ "step": 194
+ },
+ {
+ "epoch": 2.710801393728223,
+ "grad_norm": 0.05347125604748726,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 3.054572105407715,
+ "step": 195
+ },
+ {
+ "epoch": 2.7247386759581884,
+ "grad_norm": 0.05996708199381828,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 3.0486035346984863,
+ "step": 196
+ },
+ {
+ "epoch": 2.7386759581881535,
+ "grad_norm": 0.06146618723869324,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 3.0344629287719727,
+ "step": 197
+ },
+ {
+ "epoch": 2.7526132404181185,
+ "grad_norm": 0.04754327982664108,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 3.0211029052734375,
+ "step": 198
+ },
+ {
+ "epoch": 2.7665505226480835,
+ "grad_norm": 0.044388528913259506,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 3.034595012664795,
+ "step": 199
+ },
+ {
+ "epoch": 2.7804878048780486,
+ "grad_norm": 0.04255649819970131,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 3.037287950515747,
+ "step": 200
+ },
+ {
+ "epoch": 2.794425087108014,
+ "grad_norm": 0.043139949440956116,
+ "learning_rate": 0.000598804365316586,
+ "loss": 3.0366177558898926,
+ "step": 201
+ },
+ {
+ "epoch": 2.808362369337979,
+ "grad_norm": 0.03383412957191467,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 3.033888101577759,
+ "step": 202
+ },
+ {
+ "epoch": 2.822299651567944,
+ "grad_norm": 0.03446805849671364,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 3.022144079208374,
+ "step": 203
+ },
+ {
+ "epoch": 2.8362369337979096,
+ "grad_norm": 0.029725519940257072,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 3.0208263397216797,
+ "step": 204
+ },
+ {
+ "epoch": 2.8501742160278747,
+ "grad_norm": 0.030237704515457153,
+ "learning_rate": 0.000598706872384039,
+ "loss": 3.0251193046569824,
+ "step": 205
+ },
+ {
+ "epoch": 2.8641114982578397,
+ "grad_norm": 0.03186488524079323,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 3.0246212482452393,
+ "step": 206
+ },
+ {
+ "epoch": 2.8780487804878048,
+ "grad_norm": 0.02844928577542305,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 3.0075716972351074,
+ "step": 207
+ },
+ {
+ "epoch": 2.89198606271777,
+ "grad_norm": 0.0350780263543129,
+ "learning_rate": 0.000598631251036868,
+ "loss": 3.0121424198150635,
+ "step": 208
+ },
+ {
+ "epoch": 2.9059233449477353,
+ "grad_norm": 0.04267824813723564,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 3.0099010467529297,
+ "step": 209
+ },
+ {
+ "epoch": 2.9198606271777003,
+ "grad_norm": 0.042932625859975815,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 3.0122969150543213,
+ "step": 210
+ },
+ {
+ "epoch": 2.9337979094076654,
+ "grad_norm": 0.04570756480097771,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 3.0111446380615234,
+ "step": 211
+ },
+ {
+ "epoch": 2.947735191637631,
+ "grad_norm": 0.04473821446299553,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 2.9976413249969482,
+ "step": 212
+ },
+ {
+ "epoch": 2.961672473867596,
+ "grad_norm": 0.040896713733673096,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 2.9942758083343506,
+ "step": 213
+ },
+ {
+ "epoch": 2.975609756097561,
+ "grad_norm": 0.04459039121866226,
+ "learning_rate": 0.000598473577921366,
+ "loss": 2.998690128326416,
+ "step": 214
+ },
+ {
+ "epoch": 2.989547038327526,
+ "grad_norm": 0.039927951991558075,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 2.988520383834839,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.030261589214205742,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 2.2433667182922363,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 0.7514154314994812,
+ "eval_runtime": 37.2184,
+ "eval_samples_per_second": 65.613,
+ "eval_steps_per_second": 0.537,
+ "step": 216
+ },
+ {
+ "epoch": 3.013937282229965,
+ "grad_norm": 0.03271438181400299,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 2.983100652694702,
+ "step": 217
+ },
+ {
+ "epoch": 3.0278745644599305,
+ "grad_norm": 0.045161835849285126,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 2.9824085235595703,
+ "step": 218
+ },
+ {
+ "epoch": 3.0418118466898956,
+ "grad_norm": 0.041259463876485825,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 2.980112075805664,
+ "step": 219
+ },
+ {
+ "epoch": 3.0557491289198606,
+ "grad_norm": 0.04854132980108261,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 2.9802699089050293,
+ "step": 220
+ },
+ {
+ "epoch": 3.0696864111498257,
+ "grad_norm": 0.06712493300437927,
+ "learning_rate": 0.000598278794687186,
+ "loss": 2.963736057281494,
+ "step": 221
+ },
+ {
+ "epoch": 3.083623693379791,
+ "grad_norm": 0.07551158964633942,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 2.9780850410461426,
+ "step": 222
+ },
+ {
+ "epoch": 3.097560975609756,
+ "grad_norm": 0.1004587933421135,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 2.982564926147461,
+ "step": 223
+ },
+ {
+ "epoch": 3.1114982578397212,
+ "grad_norm": 0.12604698538780212,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 2.994123697280884,
+ "step": 224
+ },
+ {
+ "epoch": 3.1254355400696863,
+ "grad_norm": 0.13300281763076782,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 3.0030934810638428,
+ "step": 225
+ },
+ {
+ "epoch": 3.1393728222996518,
+ "grad_norm": 0.09192433208227158,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 2.99415922164917,
+ "step": 226
+ },
+ {
+ "epoch": 3.153310104529617,
+ "grad_norm": 0.07332997024059296,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 2.9832448959350586,
+ "step": 227
+ },
+ {
+ "epoch": 3.167247386759582,
+ "grad_norm": 0.05673393979668617,
+ "learning_rate": 0.00059807235435179,
+ "loss": 2.9781603813171387,
+ "step": 228
+ },
+ {
+ "epoch": 3.181184668989547,
+ "grad_norm": 0.05591209977865219,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 2.9844987392425537,
+ "step": 229
+ },
+ {
+ "epoch": 3.1951219512195124,
+ "grad_norm": 0.04706789553165436,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 2.9794564247131348,
+ "step": 230
+ },
+ {
+ "epoch": 3.2090592334494774,
+ "grad_norm": 0.04533008486032486,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 2.963930606842041,
+ "step": 231
+ },
+ {
+ "epoch": 3.2229965156794425,
+ "grad_norm": 0.0363367535173893,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 2.9743711948394775,
+ "step": 232
+ },
+ {
+ "epoch": 3.2369337979094075,
+ "grad_norm": 0.035832252353429794,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 2.9637725353240967,
+ "step": 233
+ },
+ {
+ "epoch": 3.250871080139373,
+ "grad_norm": 0.03634851798415184,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 2.971634864807129,
+ "step": 234
+ },
+ {
+ "epoch": 3.264808362369338,
+ "grad_norm": 0.036877233535051346,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 2.960113286972046,
+ "step": 235
+ },
+ {
+ "epoch": 3.278745644599303,
+ "grad_norm": 0.02930021658539772,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 2.948853015899658,
+ "step": 236
+ },
+ {
+ "epoch": 3.292682926829268,
+ "grad_norm": 0.029241658747196198,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 2.957648277282715,
+ "step": 237
+ },
+ {
+ "epoch": 3.3066202090592336,
+ "grad_norm": 0.029683494940400124,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 2.9501960277557373,
+ "step": 238
+ },
+ {
+ "epoch": 3.3205574912891986,
+ "grad_norm": 0.028418797999620438,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 2.9593586921691895,
+ "step": 239
+ },
+ {
+ "epoch": 3.3344947735191637,
+ "grad_norm": 0.029084153473377228,
+ "learning_rate": 0.000597691359743243,
+ "loss": 2.957581043243408,
+ "step": 240
+ },
+ {
+ "epoch": 3.3484320557491287,
+ "grad_norm": 0.03031332418322563,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 2.9465126991271973,
+ "step": 241
+ },
+ {
+ "epoch": 3.362369337979094,
+ "grad_norm": 0.028176147490739822,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 2.9427034854888916,
+ "step": 242
+ },
+ {
+ "epoch": 3.3763066202090593,
+ "grad_norm": 0.025935526937246323,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 2.933248996734619,
+ "step": 243
+ },
+ {
+ "epoch": 3.3902439024390243,
+ "grad_norm": 0.026524877175688744,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 2.9334826469421387,
+ "step": 244
+ },
+ {
+ "epoch": 3.40418118466899,
+ "grad_norm": 0.026807013899087906,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 2.9502480030059814,
+ "step": 245
+ },
+ {
+ "epoch": 3.418118466898955,
+ "grad_norm": 0.026440076529979706,
+ "learning_rate": 0.000597488038559129,
+ "loss": 2.9336085319519043,
+ "step": 246
+ },
+ {
+ "epoch": 3.43205574912892,
+ "grad_norm": 0.02752632275223732,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 2.937425374984741,
+ "step": 247
+ },
+ {
+ "epoch": 3.445993031358885,
+ "grad_norm": 0.027490021660923958,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 2.9357755184173584,
+ "step": 248
+ },
+ {
+ "epoch": 3.45993031358885,
+ "grad_norm": 0.03389354050159454,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 2.934713363647461,
+ "step": 249
+ },
+ {
+ "epoch": 3.4738675958188154,
+ "grad_norm": 0.042289797216653824,
+ "learning_rate": 0.000597347745466109,
+ "loss": 2.9363629817962646,
+ "step": 250
+ },
+ {
+ "epoch": 3.4878048780487805,
+ "grad_norm": 0.07276978343725204,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 2.946735382080078,
+ "step": 251
+ },
+ {
+ "epoch": 3.5017421602787455,
+ "grad_norm": 0.09471797943115234,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 2.9240806102752686,
+ "step": 252
+ },
+ {
+ "epoch": 3.515679442508711,
+ "grad_norm": 0.09386000782251358,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 2.9194839000701904,
+ "step": 253
+ },
+ {
+ "epoch": 3.529616724738676,
+ "grad_norm": 0.1176624521613121,
+ "learning_rate": 0.000597203657966319,
+ "loss": 2.9324824810028076,
+ "step": 254
+ },
+ {
+ "epoch": 3.543554006968641,
+ "grad_norm": 0.0723927766084671,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 2.932208776473999,
+ "step": 255
+ },
+ {
+ "epoch": 3.557491289198606,
+ "grad_norm": 0.06314370036125183,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 2.936681032180786,
+ "step": 256
+ },
+ {
+ "epoch": 3.571428571428571,
+ "grad_norm": 0.06432153284549713,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 2.924858331680298,
+ "step": 257
+ },
+ {
+ "epoch": 3.5853658536585367,
+ "grad_norm": 0.07495246082544327,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 2.918736696243286,
+ "step": 258
+ },
+ {
+ "epoch": 3.5993031358885017,
+ "grad_norm": 0.058007508516311646,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 2.92120361328125,
+ "step": 259
+ },
+ {
+ "epoch": 3.6132404181184667,
+ "grad_norm": 0.047224972397089005,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 2.9181740283966064,
+ "step": 260
+ },
+ {
+ "epoch": 3.6271777003484322,
+ "grad_norm": 0.04775157943367958,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 2.9145660400390625,
+ "step": 261
+ },
+ {
+ "epoch": 3.6411149825783973,
+ "grad_norm": 0.05087953805923462,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 2.9094574451446533,
+ "step": 262
+ },
+ {
+ "epoch": 3.6550522648083623,
+ "grad_norm": 0.047325216233730316,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 2.9127790927886963,
+ "step": 263
+ },
+ {
+ "epoch": 3.6689895470383274,
+ "grad_norm": 0.04005662724375725,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 2.9124414920806885,
+ "step": 264
+ },
+ {
+ "epoch": 3.682926829268293,
+ "grad_norm": 0.03284832462668419,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 2.897369861602783,
+ "step": 265
+ },
+ {
+ "epoch": 3.696864111498258,
+ "grad_norm": 0.03538643941283226,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 2.8912787437438965,
+ "step": 266
+ },
+ {
+ "epoch": 3.710801393728223,
+ "grad_norm": 0.0338534340262413,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 2.904737949371338,
+ "step": 267
+ },
+ {
+ "epoch": 3.7247386759581884,
+ "grad_norm": 0.03059707209467888,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 2.910109519958496,
+ "step": 268
+ },
+ {
+ "epoch": 3.7386759581881535,
+ "grad_norm": 0.027421824634075165,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 2.8953540325164795,
+ "step": 269
+ },
+ {
+ "epoch": 3.7526132404181185,
+ "grad_norm": 0.031095022335648537,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 2.8983192443847656,
+ "step": 270
+ },
+ {
+ "epoch": 3.7665505226480835,
+ "grad_norm": 0.03075260855257511,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 2.9002010822296143,
+ "step": 271
+ },
+ {
+ "epoch": 3.7804878048780486,
+ "grad_norm": 0.030917232856154442,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 2.8886561393737793,
+ "step": 272
+ },
+ {
+ "epoch": 3.794425087108014,
+ "grad_norm": 0.03267431631684303,
+ "learning_rate": 0.000596467483454833,
+ "loss": 2.8845345973968506,
+ "step": 273
+ },
+ {
+ "epoch": 3.808362369337979,
+ "grad_norm": 0.034112598747015,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 2.8842294216156006,
+ "step": 274
+ },
+ {
+ "epoch": 3.822299651567944,
+ "grad_norm": 0.038153596222400665,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 2.866973400115967,
+ "step": 275
+ },
+ {
+ "epoch": 3.8362369337979096,
+ "grad_norm": 0.033103615045547485,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 2.8709988594055176,
+ "step": 276
+ },
+ {
+ "epoch": 3.8501742160278747,
+ "grad_norm": 0.030708827078342438,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 2.8715577125549316,
+ "step": 277
+ },
+ {
+ "epoch": 3.8641114982578397,
+ "grad_norm": 0.03427499905228615,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 2.8766040802001953,
+ "step": 278
+ },
+ {
+ "epoch": 3.8780487804878048,
+ "grad_norm": 0.042216721922159195,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 2.8672261238098145,
+ "step": 279
+ },
+ {
+ "epoch": 3.89198606271777,
+ "grad_norm": 0.034656424075365067,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 2.860102653503418,
+ "step": 280
+ },
+ {
+ "epoch": 3.9059233449477353,
+ "grad_norm": 0.03288520127534866,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 2.8540444374084473,
+ "step": 281
+ },
+ {
+ "epoch": 3.9198606271777003,
+ "grad_norm": 0.041709382086992264,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 2.872581958770752,
+ "step": 282
+ },
+ {
+ "epoch": 3.9337979094076654,
+ "grad_norm": 0.04955075681209564,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 2.874307632446289,
+ "step": 283
+ },
+ {
+ "epoch": 3.947735191637631,
+ "grad_norm": 0.05372118577361107,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 2.861191749572754,
+ "step": 284
+ },
+ {
+ "epoch": 3.961672473867596,
+ "grad_norm": 0.05855486914515495,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 2.8542709350585938,
+ "step": 285
+ },
+ {
+ "epoch": 3.975609756097561,
+ "grad_norm": 0.05442376434803009,
+ "learning_rate": 0.000595914592474791,
+ "loss": 2.858576536178589,
+ "step": 286
+ },
+ {
+ "epoch": 3.989547038327526,
+ "grad_norm": 0.06468870490789413,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 2.8510026931762695,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.038657791912555695,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 2.1422531604766846,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 0.7195093631744385,
+ "eval_runtime": 39.1927,
+ "eval_samples_per_second": 62.308,
+ "eval_steps_per_second": 0.51,
+ "step": 288
+ },
+ {
+ "epoch": 4.013937282229965,
+ "grad_norm": 0.041369788348674774,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 2.8407950401306152,
+ "step": 289
+ },
+ {
+ "epoch": 4.02787456445993,
+ "grad_norm": 0.045097772032022476,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 2.8446922302246094,
+ "step": 290
+ },
+ {
+ "epoch": 4.041811846689895,
+ "grad_norm": 0.05102979391813278,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 2.8316476345062256,
+ "step": 291
+ },
+ {
+ "epoch": 4.055749128919861,
+ "grad_norm": 0.05429252237081528,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 2.8510334491729736,
+ "step": 292
+ },
+ {
+ "epoch": 4.069686411149826,
+ "grad_norm": 0.0761060118675232,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 2.8289966583251953,
+ "step": 293
+ },
+ {
+ "epoch": 4.083623693379791,
+ "grad_norm": 0.09525997191667557,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 2.843992233276367,
+ "step": 294
+ },
+ {
+ "epoch": 4.097560975609756,
+ "grad_norm": 0.09715712070465088,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 2.8543810844421387,
+ "step": 295
+ },
+ {
+ "epoch": 4.111498257839721,
+ "grad_norm": 0.0634903833270073,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 2.8456456661224365,
+ "step": 296
+ },
+ {
+ "epoch": 4.125435540069686,
+ "grad_norm": 0.05771167576313019,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 2.8387022018432617,
+ "step": 297
+ },
+ {
+ "epoch": 4.139372822299651,
+ "grad_norm": 0.05440817028284073,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 2.841508388519287,
+ "step": 298
+ },
+ {
+ "epoch": 4.153310104529616,
+ "grad_norm": 0.0550493523478508,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 2.833531618118286,
+ "step": 299
+ },
+ {
+ "epoch": 4.167247386759582,
+ "grad_norm": 0.04252418503165245,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 2.8254685401916504,
+ "step": 300
+ },
+ {
+ "epoch": 4.181184668989547,
+ "grad_norm": 0.042833492159843445,
+ "learning_rate": 0.000595227087813793,
+ "loss": 2.8289575576782227,
+ "step": 301
+ },
+ {
+ "epoch": 4.195121951219512,
+ "grad_norm": 0.038360171020030975,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 2.836550712585449,
+ "step": 302
+ },
+ {
+ "epoch": 4.209059233449477,
+ "grad_norm": 0.03655572608113289,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 2.8222808837890625,
+ "step": 303
+ },
+ {
+ "epoch": 4.2229965156794425,
+ "grad_norm": 0.03215418756008148,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 2.818066120147705,
+ "step": 304
+ },
+ {
+ "epoch": 4.2369337979094075,
+ "grad_norm": 0.031601350754499435,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 2.809666395187378,
+ "step": 305
+ },
+ {
+ "epoch": 4.2508710801393725,
+ "grad_norm": 0.03221198916435242,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 2.8137047290802,
+ "step": 306
+ },
+ {
+ "epoch": 4.264808362369338,
+ "grad_norm": 0.03107992745935917,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 2.822840690612793,
+ "step": 307
+ },
+ {
+ "epoch": 4.2787456445993035,
+ "grad_norm": 0.032328397035598755,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 2.8012430667877197,
+ "step": 308
+ },
+ {
+ "epoch": 4.2926829268292686,
+ "grad_norm": 0.029429661110043526,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 2.806474447250366,
+ "step": 309
+ },
+ {
+ "epoch": 4.306620209059234,
+ "grad_norm": 0.03430404141545296,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 2.7917184829711914,
+ "step": 310
+ },
+ {
+ "epoch": 4.320557491289199,
+ "grad_norm": 0.03543714061379433,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 2.798417091369629,
+ "step": 311
+ },
+ {
+ "epoch": 4.334494773519164,
+ "grad_norm": 0.04099712520837784,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 2.793095588684082,
+ "step": 312
+ },
+ {
+ "epoch": 4.348432055749129,
+ "grad_norm": 0.046607524156570435,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 2.807809829711914,
+ "step": 313
+ },
+ {
+ "epoch": 4.362369337979094,
+ "grad_norm": 0.048917099833488464,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 2.8017094135284424,
+ "step": 314
+ },
+ {
+ "epoch": 4.376306620209059,
+ "grad_norm": 0.05221967399120331,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 2.7990846633911133,
+ "step": 315
+ },
+ {
+ "epoch": 4.390243902439025,
+ "grad_norm": 0.05263383314013481,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 2.810983657836914,
+ "step": 316
+ },
+ {
+ "epoch": 4.40418118466899,
+ "grad_norm": 0.04930173233151436,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 2.7989790439605713,
+ "step": 317
+ },
+ {
+ "epoch": 4.418118466898955,
+ "grad_norm": 0.05484982952475548,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 2.7852704524993896,
+ "step": 318
+ },
+ {
+ "epoch": 4.43205574912892,
+ "grad_norm": 0.04991631582379341,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 2.7944440841674805,
+ "step": 319
+ },
+ {
+ "epoch": 4.445993031358885,
+ "grad_norm": 0.034856196492910385,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 2.7851901054382324,
+ "step": 320
+ },
+ {
+ "epoch": 4.45993031358885,
+ "grad_norm": 0.038153354078531265,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 2.777986526489258,
+ "step": 321
+ },
+ {
+ "epoch": 4.473867595818815,
+ "grad_norm": 0.04138852655887604,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 2.7781941890716553,
+ "step": 322
+ },
+ {
+ "epoch": 4.487804878048781,
+ "grad_norm": 0.04018627852201462,
+ "learning_rate": 0.00059412296156686,
+ "loss": 2.7934627532958984,
+ "step": 323
+ },
+ {
+ "epoch": 4.501742160278746,
+ "grad_norm": 0.03592175245285034,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 2.780992031097412,
+ "step": 324
+ },
+ {
+ "epoch": 4.515679442508711,
+ "grad_norm": 0.034620169550180435,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 2.7754831314086914,
+ "step": 325
+ },
+ {
+ "epoch": 4.529616724738676,
+ "grad_norm": 0.03244427964091301,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 2.7737035751342773,
+ "step": 326
+ },
+ {
+ "epoch": 4.543554006968641,
+ "grad_norm": 0.0361688956618309,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 2.7515547275543213,
+ "step": 327
+ },
+ {
+ "epoch": 4.557491289198606,
+ "grad_norm": 0.03722141310572624,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 2.769011974334717,
+ "step": 328
+ },
+ {
+ "epoch": 4.571428571428571,
+ "grad_norm": 0.0431540347635746,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 2.7755231857299805,
+ "step": 329
+ },
+ {
+ "epoch": 4.585365853658536,
+ "grad_norm": 0.04175153374671936,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 2.767477512359619,
+ "step": 330
+ },
+ {
+ "epoch": 4.599303135888501,
+ "grad_norm": 0.04184363782405853,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 2.775984048843384,
+ "step": 331
+ },
+ {
+ "epoch": 4.613240418118467,
+ "grad_norm": 0.04054928943514824,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 2.7669193744659424,
+ "step": 332
+ },
+ {
+ "epoch": 4.627177700348432,
+ "grad_norm": 0.039442483335733414,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 2.7557153701782227,
+ "step": 333
+ },
+ {
+ "epoch": 4.641114982578397,
+ "grad_norm": 0.04334413632750511,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 2.76118803024292,
+ "step": 334
+ },
+ {
+ "epoch": 4.655052264808362,
+ "grad_norm": 0.04821610450744629,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 2.755122184753418,
+ "step": 335
+ },
+ {
+ "epoch": 4.668989547038327,
+ "grad_norm": 0.05259500443935394,
+ "learning_rate": 0.000593417134927994,
+ "loss": 2.763730764389038,
+ "step": 336
+ },
+ {
+ "epoch": 4.682926829268292,
+ "grad_norm": 0.05462924763560295,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 2.7538461685180664,
+ "step": 337
+ },
+ {
+ "epoch": 4.696864111498257,
+ "grad_norm": 0.0755213275551796,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 2.7565760612487793,
+ "step": 338
+ },
+ {
+ "epoch": 4.710801393728223,
+ "grad_norm": 0.09036742150783539,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 2.7742908000946045,
+ "step": 339
+ },
+ {
+ "epoch": 4.724738675958188,
+ "grad_norm": 0.07687609642744064,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 2.7776336669921875,
+ "step": 340
+ },
+ {
+ "epoch": 4.7386759581881535,
+ "grad_norm": 0.06167550012469292,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 2.7571194171905518,
+ "step": 341
+ },
+ {
+ "epoch": 4.7526132404181185,
+ "grad_norm": 0.05498389154672623,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 2.766094207763672,
+ "step": 342
+ },
+ {
+ "epoch": 4.7665505226480835,
+ "grad_norm": 0.056576769798994064,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 2.759814977645874,
+ "step": 343
+ },
+ {
+ "epoch": 4.780487804878049,
+ "grad_norm": 0.05287479609251022,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 2.7653424739837646,
+ "step": 344
+ },
+ {
+ "epoch": 4.794425087108014,
+ "grad_norm": 0.05006227642297745,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 2.746647357940674,
+ "step": 345
+ },
+ {
+ "epoch": 4.80836236933798,
+ "grad_norm": 0.0428367517888546,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 2.748798131942749,
+ "step": 346
+ },
+ {
+ "epoch": 4.822299651567945,
+ "grad_norm": 0.04800762981176376,
+ "learning_rate": 0.000592789007481325,
+ "loss": 2.7554736137390137,
+ "step": 347
+ },
+ {
+ "epoch": 4.83623693379791,
+ "grad_norm": 0.04984979331493378,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 2.738473415374756,
+ "step": 348
+ },
+ {
+ "epoch": 4.850174216027875,
+ "grad_norm": 0.0404483824968338,
+ "learning_rate": 0.000592671765466188,
+ "loss": 2.7486448287963867,
+ "step": 349
+ },
+ {
+ "epoch": 4.86411149825784,
+ "grad_norm": 0.03785628825426102,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 2.7317609786987305,
+ "step": 350
+ },
+ {
+ "epoch": 4.878048780487805,
+ "grad_norm": 0.04446744546294212,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 2.750211238861084,
+ "step": 351
+ },
+ {
+ "epoch": 4.89198606271777,
+ "grad_norm": 0.0561913438141346,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 2.7429988384246826,
+ "step": 352
+ },
+ {
+ "epoch": 4.905923344947735,
+ "grad_norm": 0.06165647506713867,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 2.7389450073242188,
+ "step": 353
+ },
+ {
+ "epoch": 4.9198606271777,
+ "grad_norm": 0.04764621704816818,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 2.73350191116333,
+ "step": 354
+ },
+ {
+ "epoch": 4.933797909407666,
+ "grad_norm": 0.044994648545980453,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 2.7248117923736572,
+ "step": 355
+ },
+ {
+ "epoch": 4.947735191637631,
+ "grad_norm": 0.044408753514289856,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 2.7337656021118164,
+ "step": 356
+ },
+ {
+ "epoch": 4.961672473867596,
+ "grad_norm": 0.04064524918794632,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 2.732268810272217,
+ "step": 357
+ },
+ {
+ "epoch": 4.975609756097561,
+ "grad_norm": 0.036805033683776855,
+ "learning_rate": 0.000592132629452205,
+ "loss": 2.7253570556640625,
+ "step": 358
+ },
+ {
+ "epoch": 4.989547038327526,
+ "grad_norm": 0.03321084752678871,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 2.713101863861084,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.027469763532280922,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 2.0416059494018555,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 0.6877280473709106,
+ "eval_runtime": 37.7369,
+ "eval_samples_per_second": 64.711,
+ "eval_steps_per_second": 0.53,
+ "step": 360
+ },
+ {
+ "epoch": 5.013937282229965,
+ "grad_norm": 0.035481102764606476,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 2.6966300010681152,
+ "step": 361
+ },
+ {
+ "epoch": 5.02787456445993,
+ "grad_norm": 0.04075651615858078,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 2.701756000518799,
+ "step": 362
+ },
+ {
+ "epoch": 5.041811846689895,
+ "grad_norm": 0.03847100958228111,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 2.69856333732605,
+ "step": 363
+ },
+ {
+ "epoch": 5.055749128919861,
+ "grad_norm": 0.0439726859331131,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 2.6956000328063965,
+ "step": 364
+ },
+ {
+ "epoch": 5.069686411149826,
+ "grad_norm": 0.043925508856773376,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 2.7065486907958984,
+ "step": 365
+ },
+ {
+ "epoch": 5.083623693379791,
+ "grad_norm": 0.05349253863096237,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 2.7032744884490967,
+ "step": 366
+ },
+ {
+ "epoch": 5.097560975609756,
+ "grad_norm": 0.04957803711295128,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 2.6988987922668457,
+ "step": 367
+ },
+ {
+ "epoch": 5.111498257839721,
+ "grad_norm": 0.047412872314453125,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 2.6921496391296387,
+ "step": 368
+ },
+ {
+ "epoch": 5.125435540069686,
+ "grad_norm": 0.047648534178733826,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 2.691765308380127,
+ "step": 369
+ },
+ {
+ "epoch": 5.139372822299651,
+ "grad_norm": 0.05226794257760048,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 2.7006325721740723,
+ "step": 370
+ },
+ {
+ "epoch": 5.153310104529616,
+ "grad_norm": 0.054041698575019836,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 2.692309617996216,
+ "step": 371
+ },
+ {
+ "epoch": 5.167247386759582,
+ "grad_norm": 0.039680954068899155,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 2.685819149017334,
+ "step": 372
+ },
+ {
+ "epoch": 5.181184668989547,
+ "grad_norm": 0.04104545712471008,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 2.6913204193115234,
+ "step": 373
+ },
+ {
+ "epoch": 5.195121951219512,
+ "grad_norm": 0.037274859845638275,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 2.692324161529541,
+ "step": 374
+ },
+ {
+ "epoch": 5.209059233449477,
+ "grad_norm": 0.038038160651922226,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 2.6824822425842285,
+ "step": 375
+ },
+ {
+ "epoch": 5.2229965156794425,
+ "grad_norm": 0.04105817899107933,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 2.6830384731292725,
+ "step": 376
+ },
+ {
+ "epoch": 5.2369337979094075,
+ "grad_norm": 0.04050105810165405,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 2.676032066345215,
+ "step": 377
+ },
+ {
+ "epoch": 5.2508710801393725,
+ "grad_norm": 0.03780475631356239,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 2.6765289306640625,
+ "step": 378
+ },
+ {
+ "epoch": 5.264808362369338,
+ "grad_norm": 0.03484981507062912,
+ "learning_rate": 0.000590801330015633,
+ "loss": 2.6808249950408936,
+ "step": 379
+ },
+ {
+ "epoch": 5.2787456445993035,
+ "grad_norm": 0.03091316856443882,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 2.679382562637329,
+ "step": 380
+ },
+ {
+ "epoch": 5.2926829268292686,
+ "grad_norm": 0.03255805745720863,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 2.685393810272217,
+ "step": 381
+ },
+ {
+ "epoch": 5.306620209059234,
+ "grad_norm": 0.037457507103681564,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 2.6710822582244873,
+ "step": 382
+ },
+ {
+ "epoch": 5.320557491289199,
+ "grad_norm": 0.03654669225215912,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 2.6762566566467285,
+ "step": 383
+ },
+ {
+ "epoch": 5.334494773519164,
+ "grad_norm": 0.03590100631117821,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 2.6788597106933594,
+ "step": 384
+ },
+ {
+ "epoch": 5.348432055749129,
+ "grad_norm": 0.03647424280643463,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 2.6785120964050293,
+ "step": 385
+ },
+ {
+ "epoch": 5.362369337979094,
+ "grad_norm": 0.035309527069330215,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 2.679274082183838,
+ "step": 386
+ },
+ {
+ "epoch": 5.376306620209059,
+ "grad_norm": 0.035797759890556335,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 2.663790702819824,
+ "step": 387
+ },
+ {
+ "epoch": 5.390243902439025,
+ "grad_norm": 0.034813620150089264,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 2.661909818649292,
+ "step": 388
+ },
+ {
+ "epoch": 5.40418118466899,
+ "grad_norm": 0.03814723342657089,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 2.6648290157318115,
+ "step": 389
+ },
+ {
+ "epoch": 5.418118466898955,
+ "grad_norm": 0.03819345310330391,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 2.661344528198242,
+ "step": 390
+ },
+ {
+ "epoch": 5.43205574912892,
+ "grad_norm": 0.05034249275922775,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 2.6723971366882324,
+ "step": 391
+ },
+ {
+ "epoch": 5.445993031358885,
+ "grad_norm": 0.05302279815077782,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 2.6722166538238525,
+ "step": 392
+ },
+ {
+ "epoch": 5.45993031358885,
+ "grad_norm": 0.04576520621776581,
+ "learning_rate": 0.000589856958339686,
+ "loss": 2.650954008102417,
+ "step": 393
+ },
+ {
+ "epoch": 5.473867595818815,
+ "grad_norm": 0.04785747826099396,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 2.658161163330078,
+ "step": 394
+ },
+ {
+ "epoch": 5.487804878048781,
+ "grad_norm": 0.0524369515478611,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 2.66957688331604,
+ "step": 395
+ },
+ {
+ "epoch": 5.501742160278746,
+ "grad_norm": 0.05258813500404358,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 2.66046142578125,
+ "step": 396
+ },
+ {
+ "epoch": 5.515679442508711,
+ "grad_norm": 0.05156350135803223,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 2.6339619159698486,
+ "step": 397
+ },
+ {
+ "epoch": 5.529616724738676,
+ "grad_norm": 0.04716484993696213,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 2.656726837158203,
+ "step": 398
+ },
+ {
+ "epoch": 5.543554006968641,
+ "grad_norm": 0.048213694244623184,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 2.6740832328796387,
+ "step": 399
+ },
+ {
+ "epoch": 5.557491289198606,
+ "grad_norm": 0.046243470162153244,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 2.65981125831604,
+ "step": 400
+ },
+ {
+ "epoch": 5.571428571428571,
+ "grad_norm": 0.04331960901618004,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 2.637345790863037,
+ "step": 401
+ },
+ {
+ "epoch": 5.585365853658536,
+ "grad_norm": 0.04055584594607353,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 2.6382877826690674,
+ "step": 402
+ },
+ {
+ "epoch": 5.599303135888501,
+ "grad_norm": 0.046962495893239975,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 2.642883539199829,
+ "step": 403
+ },
+ {
+ "epoch": 5.613240418118467,
+ "grad_norm": 0.055259495973587036,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 2.6498947143554688,
+ "step": 404
+ },
+ {
+ "epoch": 5.627177700348432,
+ "grad_norm": 0.05768313631415367,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 2.6472978591918945,
+ "step": 405
+ },
+ {
+ "epoch": 5.641114982578397,
+ "grad_norm": 0.04900819808244705,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 2.6596455574035645,
+ "step": 406
+ },
+ {
+ "epoch": 5.655052264808362,
+ "grad_norm": 0.053204163908958435,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 2.6456780433654785,
+ "step": 407
+ },
+ {
+ "epoch": 5.668989547038327,
+ "grad_norm": 0.05327627807855606,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 2.651031494140625,
+ "step": 408
+ },
+ {
+ "epoch": 5.682926829268292,
+ "grad_norm": 0.050564929842948914,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 2.656858444213867,
+ "step": 409
+ },
+ {
+ "epoch": 5.696864111498257,
+ "grad_norm": 0.05613167583942413,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 2.6408069133758545,
+ "step": 410
+ },
+ {
+ "epoch": 5.710801393728223,
+ "grad_norm": 0.05399465933442116,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 2.6472203731536865,
+ "step": 411
+ },
+ {
+ "epoch": 5.724738675958188,
+ "grad_norm": 0.04919342324137688,
+ "learning_rate": 0.0005885028868537,
+ "loss": 2.656099319458008,
+ "step": 412
+ },
+ {
+ "epoch": 5.7386759581881535,
+ "grad_norm": 0.0552130751311779,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 2.6422126293182373,
+ "step": 413
+ },
+ {
+ "epoch": 5.7526132404181185,
+ "grad_norm": 0.05774940922856331,
+ "learning_rate": 0.000588355515561353,
+ "loss": 2.649722099304199,
+ "step": 414
+ },
+ {
+ "epoch": 5.7665505226480835,
+ "grad_norm": 0.04623311012983322,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 2.6475892066955566,
+ "step": 415
+ },
+ {
+ "epoch": 5.780487804878049,
+ "grad_norm": 0.04961073398590088,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 2.658733606338501,
+ "step": 416
+ },
+ {
+ "epoch": 5.794425087108014,
+ "grad_norm": 0.05006693676114082,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 2.6217124462127686,
+ "step": 417
+ },
+ {
+ "epoch": 5.80836236933798,
+ "grad_norm": 0.04175165295600891,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 2.632359027862549,
+ "step": 418
+ },
+ {
+ "epoch": 5.822299651567945,
+ "grad_norm": 0.0332355760037899,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 2.6406683921813965,
+ "step": 419
+ },
+ {
+ "epoch": 5.83623693379791,
+ "grad_norm": 0.0371745266020298,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 2.630310535430908,
+ "step": 420
+ },
+ {
+ "epoch": 5.850174216027875,
+ "grad_norm": 0.02940242365002632,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 2.6451711654663086,
+ "step": 421
+ },
+ {
+ "epoch": 5.86411149825784,
+ "grad_norm": 0.03578875586390495,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 2.637753486633301,
+ "step": 422
+ },
+ {
+ "epoch": 5.878048780487805,
+ "grad_norm": 0.03402113541960716,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 2.623744487762451,
+ "step": 423
+ },
+ {
+ "epoch": 5.89198606271777,
+ "grad_norm": 0.034094467759132385,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 2.63200044631958,
+ "step": 424
+ },
+ {
+ "epoch": 5.905923344947735,
+ "grad_norm": 0.03428930044174194,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 2.6219849586486816,
+ "step": 425
+ },
+ {
+ "epoch": 5.9198606271777,
+ "grad_norm": 0.033345405012369156,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 2.611741065979004,
+ "step": 426
+ },
+ {
+ "epoch": 5.933797909407666,
+ "grad_norm": 0.031680066138505936,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 2.6227869987487793,
+ "step": 427
+ },
+ {
+ "epoch": 5.947735191637631,
+ "grad_norm": 0.028066758066415787,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 2.6249539852142334,
+ "step": 428
+ },
+ {
+ "epoch": 5.961672473867596,
+ "grad_norm": 0.032918382436037064,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 2.6176412105560303,
+ "step": 429
+ },
+ {
+ "epoch": 5.975609756097561,
+ "grad_norm": 0.033349912613630295,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 2.6159720420837402,
+ "step": 430
+ },
+ {
+ "epoch": 5.989547038327526,
+ "grad_norm": 0.03317154198884964,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 2.619137763977051,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.025815341621637344,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 1.9473658800125122,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 0.6633820533752441,
+ "eval_runtime": 37.551,
+ "eval_samples_per_second": 65.032,
+ "eval_steps_per_second": 0.533,
+ "step": 432
+ },
+ {
+ "epoch": 6.013937282229965,
+ "grad_norm": 0.031342681497335434,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 2.5931155681610107,
+ "step": 433
+ },
+ {
+ "epoch": 6.02787456445993,
+ "grad_norm": 0.04343045502901077,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 2.587559700012207,
+ "step": 434
+ },
+ {
+ "epoch": 6.041811846689895,
+ "grad_norm": 0.052591342478990555,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 2.5950260162353516,
+ "step": 435
+ },
+ {
+ "epoch": 6.055749128919861,
+ "grad_norm": 0.05538717657327652,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 2.600468635559082,
+ "step": 436
+ },
+ {
+ "epoch": 6.069686411149826,
+ "grad_norm": 0.05505542829632759,
+ "learning_rate": 0.000586594769789753,
+ "loss": 2.5905046463012695,
+ "step": 437
+ },
+ {
+ "epoch": 6.083623693379791,
+ "grad_norm": 0.05229569226503372,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 2.591856002807617,
+ "step": 438
+ },
+ {
+ "epoch": 6.097560975609756,
+ "grad_norm": 0.05032522976398468,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 2.577693462371826,
+ "step": 439
+ },
+ {
+ "epoch": 6.111498257839721,
+ "grad_norm": 0.04670557379722595,
+ "learning_rate": 0.000586356179990052,
+ "loss": 2.5835001468658447,
+ "step": 440
+ },
+ {
+ "epoch": 6.125435540069686,
+ "grad_norm": 0.0537918359041214,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 2.596343517303467,
+ "step": 441
+ },
+ {
+ "epoch": 6.139372822299651,
+ "grad_norm": 0.06328130513429642,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 2.5912466049194336,
+ "step": 442
+ },
+ {
+ "epoch": 6.153310104529616,
+ "grad_norm": 0.06647300720214844,
+ "learning_rate": 0.000586115535536849,
+ "loss": 2.589078426361084,
+ "step": 443
+ },
+ {
+ "epoch": 6.167247386759582,
+ "grad_norm": 0.06643359363079071,
+ "learning_rate": 0.000586034864430614,
+ "loss": 2.5956435203552246,
+ "step": 444
+ },
+ {
+ "epoch": 6.181184668989547,
+ "grad_norm": 0.05613892152905464,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 2.5922906398773193,
+ "step": 445
+ },
+ {
+ "epoch": 6.195121951219512,
+ "grad_norm": 0.05655102804303169,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 2.590651512145996,
+ "step": 446
+ },
+ {
+ "epoch": 6.209059233449477,
+ "grad_norm": 0.06806499511003494,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 2.589696168899536,
+ "step": 447
+ },
+ {
+ "epoch": 6.2229965156794425,
+ "grad_norm": 0.06616773456335068,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 2.5944786071777344,
+ "step": 448
+ },
+ {
+ "epoch": 6.2369337979094075,
+ "grad_norm": 0.05937796086072922,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 2.598313331604004,
+ "step": 449
+ },
+ {
+ "epoch": 6.2508710801393725,
+ "grad_norm": 0.05284281075000763,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 2.5805535316467285,
+ "step": 450
+ },
+ {
+ "epoch": 6.264808362369338,
+ "grad_norm": 0.04509073495864868,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 2.570598840713501,
+ "step": 451
+ },
+ {
+ "epoch": 6.2787456445993035,
+ "grad_norm": 0.05604032054543495,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 2.6077847480773926,
+ "step": 452
+ },
+ {
+ "epoch": 6.2926829268292686,
+ "grad_norm": 0.06662779301404953,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 2.578629493713379,
+ "step": 453
+ },
+ {
+ "epoch": 6.306620209059234,
+ "grad_norm": 0.0585545152425766,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 2.586427688598633,
+ "step": 454
+ },
+ {
+ "epoch": 6.320557491289199,
+ "grad_norm": 0.04736408591270447,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 2.5911552906036377,
+ "step": 455
+ },
+ {
+ "epoch": 6.334494773519164,
+ "grad_norm": 0.04474812000989914,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 2.5697641372680664,
+ "step": 456
+ },
+ {
+ "epoch": 6.348432055749129,
+ "grad_norm": 0.04312862828373909,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 2.566927671432495,
+ "step": 457
+ },
+ {
+ "epoch": 6.362369337979094,
+ "grad_norm": 0.03764902800321579,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 2.5947153568267822,
+ "step": 458
+ },
+ {
+ "epoch": 6.376306620209059,
+ "grad_norm": 0.03353014215826988,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 2.5777602195739746,
+ "step": 459
+ },
+ {
+ "epoch": 6.390243902439025,
+ "grad_norm": 0.033975999802351,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 2.5783305168151855,
+ "step": 460
+ },
+ {
+ "epoch": 6.40418118466899,
+ "grad_norm": 0.03363902121782303,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 2.5673155784606934,
+ "step": 461
+ },
+ {
+ "epoch": 6.418118466898955,
+ "grad_norm": 0.034326743334531784,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 2.55814790725708,
+ "step": 462
+ },
+ {
+ "epoch": 6.43205574912892,
+ "grad_norm": 0.03194424510002136,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 2.5688910484313965,
+ "step": 463
+ },
+ {
+ "epoch": 6.445993031358885,
+ "grad_norm": 0.029925566166639328,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 2.559793710708618,
+ "step": 464
+ },
+ {
+ "epoch": 6.45993031358885,
+ "grad_norm": 0.0290202796459198,
+ "learning_rate": 0.000584288196583439,
+ "loss": 2.555941581726074,
+ "step": 465
+ },
+ {
+ "epoch": 6.473867595818815,
+ "grad_norm": 0.030976103618741035,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 2.5576136112213135,
+ "step": 466
+ },
+ {
+ "epoch": 6.487804878048781,
+ "grad_norm": 0.030049985274672508,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 2.5645012855529785,
+ "step": 467
+ },
+ {
+ "epoch": 6.501742160278746,
+ "grad_norm": 0.031192071735858917,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 2.5691795349121094,
+ "step": 468
+ },
+ {
+ "epoch": 6.515679442508711,
+ "grad_norm": 0.03066888637840748,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 2.5597329139709473,
+ "step": 469
+ },
+ {
+ "epoch": 6.529616724738676,
+ "grad_norm": 0.031034760177135468,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 2.5749378204345703,
+ "step": 470
+ },
+ {
+ "epoch": 6.543554006968641,
+ "grad_norm": 0.03199351951479912,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 2.564612627029419,
+ "step": 471
+ },
+ {
+ "epoch": 6.557491289198606,
+ "grad_norm": 0.027530083432793617,
+ "learning_rate": 0.000583683733328402,
+ "loss": 2.568983793258667,
+ "step": 472
+ },
+ {
+ "epoch": 6.571428571428571,
+ "grad_norm": 0.02841697260737419,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 2.551283836364746,
+ "step": 473
+ },
+ {
+ "epoch": 6.585365853658536,
+ "grad_norm": 0.03285123407840729,
+ "learning_rate": 0.000583508993216961,
+ "loss": 2.5753087997436523,
+ "step": 474
+ },
+ {
+ "epoch": 6.599303135888501,
+ "grad_norm": 0.0347592793405056,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 2.56103253364563,
+ "step": 475
+ },
+ {
+ "epoch": 6.613240418118467,
+ "grad_norm": 0.03750046715140343,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 2.5542030334472656,
+ "step": 476
+ },
+ {
+ "epoch": 6.627177700348432,
+ "grad_norm": 0.04254816472530365,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 2.5616328716278076,
+ "step": 477
+ },
+ {
+ "epoch": 6.641114982578397,
+ "grad_norm": 0.04370047152042389,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 2.5646753311157227,
+ "step": 478
+ },
+ {
+ "epoch": 6.655052264808362,
+ "grad_norm": 0.03816768899559975,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 2.5603585243225098,
+ "step": 479
+ },
+ {
+ "epoch": 6.668989547038327,
+ "grad_norm": 0.034390103071928024,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 2.548727512359619,
+ "step": 480
+ },
+ {
+ "epoch": 6.682926829268292,
+ "grad_norm": 0.0366024374961853,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 2.555230140686035,
+ "step": 481
+ },
+ {
+ "epoch": 6.696864111498257,
+ "grad_norm": 0.03938084468245506,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 2.5586276054382324,
+ "step": 482
+ },
+ {
+ "epoch": 6.710801393728223,
+ "grad_norm": 0.04110350087285042,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 2.542633056640625,
+ "step": 483
+ },
+ {
+ "epoch": 6.724738675958188,
+ "grad_norm": 0.03961770981550217,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 2.5494391918182373,
+ "step": 484
+ },
+ {
+ "epoch": 6.7386759581881535,
+ "grad_norm": 0.03677491098642349,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 2.563061475753784,
+ "step": 485
+ },
+ {
+ "epoch": 6.7526132404181185,
+ "grad_norm": 0.03818432241678238,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 2.5586929321289062,
+ "step": 486
+ },
+ {
+ "epoch": 6.7665505226480835,
+ "grad_norm": 0.033873286098241806,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 2.5477757453918457,
+ "step": 487
+ },
+ {
+ "epoch": 6.780487804878049,
+ "grad_norm": 0.03699466213583946,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 2.541106700897217,
+ "step": 488
+ },
+ {
+ "epoch": 6.794425087108014,
+ "grad_norm": 0.03866403177380562,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 2.5336339473724365,
+ "step": 489
+ },
+ {
+ "epoch": 6.80836236933798,
+ "grad_norm": 0.03235912322998047,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 2.5439155101776123,
+ "step": 490
+ },
+ {
+ "epoch": 6.822299651567945,
+ "grad_norm": 0.03776629641652107,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 2.5592265129089355,
+ "step": 491
+ },
+ {
+ "epoch": 6.83623693379791,
+ "grad_norm": 0.04273561015725136,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 2.5432629585266113,
+ "step": 492
+ },
+ {
+ "epoch": 6.850174216027875,
+ "grad_norm": 0.04358302056789398,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 2.5543787479400635,
+ "step": 493
+ },
+ {
+ "epoch": 6.86411149825784,
+ "grad_norm": 0.03629252687096596,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 2.562788963317871,
+ "step": 494
+ },
+ {
+ "epoch": 6.878048780487805,
+ "grad_norm": 0.03263307362794876,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 2.538097381591797,
+ "step": 495
+ },
+ {
+ "epoch": 6.89198606271777,
+ "grad_norm": 0.036420464515686035,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 2.554645299911499,
+ "step": 496
+ },
+ {
+ "epoch": 6.905923344947735,
+ "grad_norm": 0.035384103655815125,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 2.5465738773345947,
+ "step": 497
+ },
+ {
+ "epoch": 6.9198606271777,
+ "grad_norm": 0.03658696636557579,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 2.536980152130127,
+ "step": 498
+ },
+ {
+ "epoch": 6.933797909407666,
+ "grad_norm": 0.036053478717803955,
+ "learning_rate": 0.00058124865204371,
+ "loss": 2.528345823287964,
+ "step": 499
+ },
+ {
+ "epoch": 6.947735191637631,
+ "grad_norm": 0.03789985179901123,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 2.544621706008911,
+ "step": 500
+ },
+ {
+ "epoch": 6.961672473867596,
+ "grad_norm": 0.03835926949977875,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 2.5407447814941406,
+ "step": 501
+ },
+ {
+ "epoch": 6.975609756097561,
+ "grad_norm": 0.04318110644817352,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 2.5537543296813965,
+ "step": 502
+ },
+ {
+ "epoch": 6.989547038327526,
+ "grad_norm": 0.0451606847345829,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 2.5201051235198975,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.03245232254266739,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 1.9085171222686768,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 0.6467739343643188,
+ "eval_runtime": 38.2431,
+ "eval_samples_per_second": 63.855,
+ "eval_steps_per_second": 0.523,
+ "step": 504
+ },
+ {
+ "epoch": 7.013937282229965,
+ "grad_norm": 0.03788387402892113,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 2.493765354156494,
+ "step": 505
+ },
+ {
+ "epoch": 7.02787456445993,
+ "grad_norm": 0.04437057301402092,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 2.509481430053711,
+ "step": 506
+ },
+ {
+ "epoch": 7.041811846689895,
+ "grad_norm": 0.047125279903411865,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 2.504810333251953,
+ "step": 507
+ },
+ {
+ "epoch": 7.055749128919861,
+ "grad_norm": 0.05385598540306091,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 2.5145554542541504,
+ "step": 508
+ },
+ {
+ "epoch": 7.069686411149826,
+ "grad_norm": 0.05404049903154373,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 2.500851631164551,
+ "step": 509
+ },
+ {
+ "epoch": 7.083623693379791,
+ "grad_norm": 0.05455894395709038,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 2.4832260608673096,
+ "step": 510
+ },
+ {
+ "epoch": 7.097560975609756,
+ "grad_norm": 0.0558103583753109,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 2.524315118789673,
+ "step": 511
+ },
+ {
+ "epoch": 7.111498257839721,
+ "grad_norm": 0.057283915579319,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 2.508044719696045,
+ "step": 512
+ },
+ {
+ "epoch": 7.125435540069686,
+ "grad_norm": 0.061027105897665024,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 2.5139050483703613,
+ "step": 513
+ },
+ {
+ "epoch": 7.139372822299651,
+ "grad_norm": 0.06873901933431625,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 2.507343053817749,
+ "step": 514
+ },
+ {
+ "epoch": 7.153310104529616,
+ "grad_norm": 0.06900028139352798,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 2.520263195037842,
+ "step": 515
+ },
+ {
+ "epoch": 7.167247386759582,
+ "grad_norm": 0.06029877811670303,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 2.5027518272399902,
+ "step": 516
+ },
+ {
+ "epoch": 7.181184668989547,
+ "grad_norm": 0.06097294017672539,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 2.512634515762329,
+ "step": 517
+ },
+ {
+ "epoch": 7.195121951219512,
+ "grad_norm": 0.06655558943748474,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 2.5014023780822754,
+ "step": 518
+ },
+ {
+ "epoch": 7.209059233449477,
+ "grad_norm": 0.06343840062618256,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 2.5144271850585938,
+ "step": 519
+ },
+ {
+ "epoch": 7.2229965156794425,
+ "grad_norm": 0.08325106650590897,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 2.5239195823669434,
+ "step": 520
+ },
+ {
+ "epoch": 7.2369337979094075,
+ "grad_norm": 0.07948101311922073,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 2.5223121643066406,
+ "step": 521
+ },
+ {
+ "epoch": 7.2508710801393725,
+ "grad_norm": 0.06717163324356079,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 2.5102391242980957,
+ "step": 522
+ },
+ {
+ "epoch": 7.264808362369338,
+ "grad_norm": 0.05896087363362312,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 2.51560640335083,
+ "step": 523
+ },
+ {
+ "epoch": 7.2787456445993035,
+ "grad_norm": 0.05562684312462807,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 2.5021753311157227,
+ "step": 524
+ },
+ {
+ "epoch": 7.2926829268292686,
+ "grad_norm": 0.043904103338718414,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 2.4952425956726074,
+ "step": 525
+ },
+ {
+ "epoch": 7.306620209059234,
+ "grad_norm": 0.0436740480363369,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 2.515303611755371,
+ "step": 526
+ },
+ {
+ "epoch": 7.320557491289199,
+ "grad_norm": 0.0395866297185421,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 2.5101678371429443,
+ "step": 527
+ },
+ {
+ "epoch": 7.334494773519164,
+ "grad_norm": 0.039552897214889526,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 2.5090293884277344,
+ "step": 528
+ },
+ {
+ "epoch": 7.348432055749129,
+ "grad_norm": 0.03839687630534172,
+ "learning_rate": 0.000578351407086301,
+ "loss": 2.505296468734741,
+ "step": 529
+ },
+ {
+ "epoch": 7.362369337979094,
+ "grad_norm": 0.042542796581983566,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 2.49535870552063,
+ "step": 530
+ },
+ {
+ "epoch": 7.376306620209059,
+ "grad_norm": 0.044322993606328964,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 2.4890050888061523,
+ "step": 531
+ },
+ {
+ "epoch": 7.390243902439025,
+ "grad_norm": 0.04029953107237816,
+ "learning_rate": 0.000578050665972623,
+ "loss": 2.500995397567749,
+ "step": 532
+ },
+ {
+ "epoch": 7.40418118466899,
+ "grad_norm": 0.044392652809619904,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 2.505852222442627,
+ "step": 533
+ },
+ {
+ "epoch": 7.418118466898955,
+ "grad_norm": 0.04363880679011345,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 2.4939942359924316,
+ "step": 534
+ },
+ {
+ "epoch": 7.43205574912892,
+ "grad_norm": 0.03960833698511124,
+ "learning_rate": 0.000577747930429834,
+ "loss": 2.507826805114746,
+ "step": 535
+ },
+ {
+ "epoch": 7.445993031358885,
+ "grad_norm": 0.03880009427666664,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 2.4876725673675537,
+ "step": 536
+ },
+ {
+ "epoch": 7.45993031358885,
+ "grad_norm": 0.034344322979450226,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 2.5032553672790527,
+ "step": 537
+ },
+ {
+ "epoch": 7.473867595818815,
+ "grad_norm": 0.030360646545886993,
+ "learning_rate": 0.00057744320265311,
+ "loss": 2.4887325763702393,
+ "step": 538
+ },
+ {
+ "epoch": 7.487804878048781,
+ "grad_norm": 0.030478516593575478,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 2.5041327476501465,
+ "step": 539
+ },
+ {
+ "epoch": 7.501742160278746,
+ "grad_norm": 0.030038833618164062,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 2.488068103790283,
+ "step": 540
+ },
+ {
+ "epoch": 7.515679442508711,
+ "grad_norm": 0.03227488324046135,
+ "learning_rate": 0.000577136484852073,
+ "loss": 2.4851627349853516,
+ "step": 541
+ },
+ {
+ "epoch": 7.529616724738676,
+ "grad_norm": 0.03053610771894455,
+ "learning_rate": 0.000577033803741424,
+ "loss": 2.48903226852417,
+ "step": 542
+ },
+ {
+ "epoch": 7.543554006968641,
+ "grad_norm": 0.030809711664915085,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 2.487685203552246,
+ "step": 543
+ },
+ {
+ "epoch": 7.557491289198606,
+ "grad_norm": 0.03001537173986435,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 2.4998037815093994,
+ "step": 544
+ },
+ {
+ "epoch": 7.571428571428571,
+ "grad_norm": 0.028761114925146103,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 2.4887194633483887,
+ "step": 545
+ },
+ {
+ "epoch": 7.585365853658536,
+ "grad_norm": 0.028289001435041428,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 2.4748306274414062,
+ "step": 546
+ },
+ {
+ "epoch": 7.599303135888501,
+ "grad_norm": 0.028406348079442978,
+ "learning_rate": 0.00057651708808768,
+ "loss": 2.490642786026001,
+ "step": 547
+ },
+ {
+ "epoch": 7.613240418118467,
+ "grad_norm": 0.027616780251264572,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 2.4816768169403076,
+ "step": 548
+ },
+ {
+ "epoch": 7.627177700348432,
+ "grad_norm": 0.028579063713550568,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 2.49285888671875,
+ "step": 549
+ },
+ {
+ "epoch": 7.641114982578397,
+ "grad_norm": 0.032302722334861755,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 2.4891176223754883,
+ "step": 550
+ },
+ {
+ "epoch": 7.655052264808362,
+ "grad_norm": 0.03428734466433525,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 2.4945361614227295,
+ "step": 551
+ },
+ {
+ "epoch": 7.668989547038327,
+ "grad_norm": 0.03326137363910675,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 2.483844518661499,
+ "step": 552
+ },
+ {
+ "epoch": 7.682926829268292,
+ "grad_norm": 0.03136003762483597,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 2.4965500831604004,
+ "step": 553
+ },
+ {
+ "epoch": 7.696864111498257,
+ "grad_norm": 0.031299516558647156,
+ "learning_rate": 0.000575784433093151,
+ "loss": 2.4755914211273193,
+ "step": 554
+ },
+ {
+ "epoch": 7.710801393728223,
+ "grad_norm": 0.030511915683746338,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 2.4844446182250977,
+ "step": 555
+ },
+ {
+ "epoch": 7.724738675958188,
+ "grad_norm": 0.03106229193508625,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 2.4614830017089844,
+ "step": 556
+ },
+ {
+ "epoch": 7.7386759581881535,
+ "grad_norm": 0.032561615109443665,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 2.476231813430786,
+ "step": 557
+ },
+ {
+ "epoch": 7.7526132404181185,
+ "grad_norm": 0.03334634751081467,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 2.4722485542297363,
+ "step": 558
+ },
+ {
+ "epoch": 7.7665505226480835,
+ "grad_norm": 0.03567497059702873,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 2.471876621246338,
+ "step": 559
+ },
+ {
+ "epoch": 7.780487804878049,
+ "grad_norm": 0.038662221282720566,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 2.4947409629821777,
+ "step": 560
+ },
+ {
+ "epoch": 7.794425087108014,
+ "grad_norm": 0.036901816725730896,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 2.470515489578247,
+ "step": 561
+ },
+ {
+ "epoch": 7.80836236933798,
+ "grad_norm": 0.03382178768515587,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 2.4678587913513184,
+ "step": 562
+ },
+ {
+ "epoch": 7.822299651567945,
+ "grad_norm": 0.03480829298496246,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 2.4690866470336914,
+ "step": 563
+ },
+ {
+ "epoch": 7.83623693379791,
+ "grad_norm": 0.03593127429485321,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 2.491703748703003,
+ "step": 564
+ },
+ {
+ "epoch": 7.850174216027875,
+ "grad_norm": 0.03532601520419121,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 2.468522548675537,
+ "step": 565
+ },
+ {
+ "epoch": 7.86411149825784,
+ "grad_norm": 0.035680219531059265,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 2.4759652614593506,
+ "step": 566
+ },
+ {
+ "epoch": 7.878048780487805,
+ "grad_norm": 0.03417263925075531,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 2.4931888580322266,
+ "step": 567
+ },
+ {
+ "epoch": 7.89198606271777,
+ "grad_norm": 0.03273053467273712,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 2.466641426086426,
+ "step": 568
+ },
+ {
+ "epoch": 7.905923344947735,
+ "grad_norm": 0.032283321022987366,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 2.466756820678711,
+ "step": 569
+ },
+ {
+ "epoch": 7.9198606271777,
+ "grad_norm": 0.03162473440170288,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 2.4725847244262695,
+ "step": 570
+ },
+ {
+ "epoch": 7.933797909407666,
+ "grad_norm": 0.03218452259898186,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 2.46532940864563,
+ "step": 571
+ },
+ {
+ "epoch": 7.947735191637631,
+ "grad_norm": 0.03216313198208809,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 2.4749364852905273,
+ "step": 572
+ },
+ {
+ "epoch": 7.961672473867596,
+ "grad_norm": 0.03091583214700222,
+ "learning_rate": 0.000573741597999996,
+ "loss": 2.470108985900879,
+ "step": 573
+ },
+ {
+ "epoch": 7.975609756097561,
+ "grad_norm": 0.028130974620580673,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 2.466053009033203,
+ "step": 574
+ },
+ {
+ "epoch": 7.989547038327526,
+ "grad_norm": 0.03071889653801918,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 2.4787344932556152,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.02555985376238823,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 1.8408641815185547,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 0.6343774199485779,
+ "eval_runtime": 38.5533,
+ "eval_samples_per_second": 63.341,
+ "eval_steps_per_second": 0.519,
+ "step": 576
+ },
+ {
+ "epoch": 8.013937282229966,
+ "grad_norm": 0.03359892964363098,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 2.4359030723571777,
+ "step": 577
+ },
+ {
+ "epoch": 8.02787456445993,
+ "grad_norm": 0.05054016411304474,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 2.4193553924560547,
+ "step": 578
+ },
+ {
+ "epoch": 8.041811846689896,
+ "grad_norm": 0.062336456030607224,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 2.4455740451812744,
+ "step": 579
+ },
+ {
+ "epoch": 8.05574912891986,
+ "grad_norm": 0.06716352701187134,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 2.4429545402526855,
+ "step": 580
+ },
+ {
+ "epoch": 8.069686411149826,
+ "grad_norm": 0.06647022068500519,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 2.4446518421173096,
+ "step": 581
+ },
+ {
+ "epoch": 8.08362369337979,
+ "grad_norm": 0.0826159194111824,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 2.436643600463867,
+ "step": 582
+ },
+ {
+ "epoch": 8.097560975609756,
+ "grad_norm": 0.08472150564193726,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 2.451641082763672,
+ "step": 583
+ },
+ {
+ "epoch": 8.111498257839722,
+ "grad_norm": 0.07912597805261612,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 2.447244167327881,
+ "step": 584
+ },
+ {
+ "epoch": 8.125435540069686,
+ "grad_norm": 0.0796087384223938,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 2.4437828063964844,
+ "step": 585
+ },
+ {
+ "epoch": 8.139372822299652,
+ "grad_norm": 0.07414955645799637,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 2.437047004699707,
+ "step": 586
+ },
+ {
+ "epoch": 8.153310104529616,
+ "grad_norm": 0.06763316690921783,
+ "learning_rate": 0.000572185929672906,
+ "loss": 2.446570873260498,
+ "step": 587
+ },
+ {
+ "epoch": 8.167247386759582,
+ "grad_norm": 0.05742042511701584,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 2.445460796356201,
+ "step": 588
+ },
+ {
+ "epoch": 8.181184668989546,
+ "grad_norm": 0.0572611466050148,
+ "learning_rate": 0.000571960215520345,
+ "loss": 2.4439504146575928,
+ "step": 589
+ },
+ {
+ "epoch": 8.195121951219512,
+ "grad_norm": 0.05339052528142929,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 2.4502882957458496,
+ "step": 590
+ },
+ {
+ "epoch": 8.209059233449477,
+ "grad_norm": 0.05900551751255989,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 2.450836658477783,
+ "step": 591
+ },
+ {
+ "epoch": 8.222996515679442,
+ "grad_norm": 0.06624466180801392,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 2.4539589881896973,
+ "step": 592
+ },
+ {
+ "epoch": 8.236933797909408,
+ "grad_norm": 0.06468363106250763,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 2.448918342590332,
+ "step": 593
+ },
+ {
+ "epoch": 8.250871080139373,
+ "grad_norm": 0.04979013651609421,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 2.447591781616211,
+ "step": 594
+ },
+ {
+ "epoch": 8.264808362369338,
+ "grad_norm": 0.047402940690517426,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 2.450143337249756,
+ "step": 595
+ },
+ {
+ "epoch": 8.278745644599303,
+ "grad_norm": 0.041620269417762756,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 2.4322123527526855,
+ "step": 596
+ },
+ {
+ "epoch": 8.292682926829269,
+ "grad_norm": 0.04016399011015892,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 2.4417006969451904,
+ "step": 597
+ },
+ {
+ "epoch": 8.306620209059233,
+ "grad_norm": 0.04293493181467056,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 2.4442501068115234,
+ "step": 598
+ },
+ {
+ "epoch": 8.320557491289199,
+ "grad_norm": 0.041785892099142075,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 2.4570703506469727,
+ "step": 599
+ },
+ {
+ "epoch": 8.334494773519165,
+ "grad_norm": 0.042869169265031815,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 2.4294066429138184,
+ "step": 600
+ },
+ {
+ "epoch": 8.348432055749129,
+ "grad_norm": 0.04059606418013573,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 2.4469175338745117,
+ "step": 601
+ },
+ {
+ "epoch": 8.362369337979095,
+ "grad_norm": 0.03664898872375488,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 2.432004451751709,
+ "step": 602
+ },
+ {
+ "epoch": 8.376306620209059,
+ "grad_norm": 0.031866125762462616,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 2.4305002689361572,
+ "step": 603
+ },
+ {
+ "epoch": 8.390243902439025,
+ "grad_norm": 0.03416220843791962,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 2.4407525062561035,
+ "step": 604
+ },
+ {
+ "epoch": 8.404181184668989,
+ "grad_norm": 0.03265870735049248,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 2.426929473876953,
+ "step": 605
+ },
+ {
+ "epoch": 8.418118466898955,
+ "grad_norm": 0.03337112441658974,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 2.443507671356201,
+ "step": 606
+ },
+ {
+ "epoch": 8.43205574912892,
+ "grad_norm": 0.0337977334856987,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 2.4583749771118164,
+ "step": 607
+ },
+ {
+ "epoch": 8.445993031358885,
+ "grad_norm": 0.02970845066010952,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 2.4297292232513428,
+ "step": 608
+ },
+ {
+ "epoch": 8.45993031358885,
+ "grad_norm": 0.03051869012415409,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 2.452547550201416,
+ "step": 609
+ },
+ {
+ "epoch": 8.473867595818815,
+ "grad_norm": 0.030234314501285553,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 2.427704334259033,
+ "step": 610
+ },
+ {
+ "epoch": 8.487804878048781,
+ "grad_norm": 0.0297533068805933,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 2.4193124771118164,
+ "step": 611
+ },
+ {
+ "epoch": 8.501742160278745,
+ "grad_norm": 0.030258657410740852,
+ "learning_rate": 0.000569302387925215,
+ "loss": 2.4159011840820312,
+ "step": 612
+ },
+ {
+ "epoch": 8.515679442508711,
+ "grad_norm": 0.029942622408270836,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 2.4217724800109863,
+ "step": 613
+ },
+ {
+ "epoch": 8.529616724738675,
+ "grad_norm": 0.030715234577655792,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 2.44870662689209,
+ "step": 614
+ },
+ {
+ "epoch": 8.543554006968641,
+ "grad_norm": 0.03252873569726944,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 2.417196750640869,
+ "step": 615
+ },
+ {
+ "epoch": 8.557491289198607,
+ "grad_norm": 0.03387020155787468,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 2.4181065559387207,
+ "step": 616
+ },
+ {
+ "epoch": 8.571428571428571,
+ "grad_norm": 0.035596199333667755,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 2.4240612983703613,
+ "step": 617
+ },
+ {
+ "epoch": 8.585365853658537,
+ "grad_norm": 0.03890643268823624,
+ "learning_rate": 0.000568590328960903,
+ "loss": 2.435359477996826,
+ "step": 618
+ },
+ {
+ "epoch": 8.599303135888501,
+ "grad_norm": 0.041447605937719345,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 2.4370574951171875,
+ "step": 619
+ },
+ {
+ "epoch": 8.613240418118467,
+ "grad_norm": 0.03584018349647522,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 2.4231667518615723,
+ "step": 620
+ },
+ {
+ "epoch": 8.627177700348431,
+ "grad_norm": 0.03309513255953789,
+ "learning_rate": 0.000568231409438027,
+ "loss": 2.4281513690948486,
+ "step": 621
+ },
+ {
+ "epoch": 8.641114982578397,
+ "grad_norm": 0.0365641750395298,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 2.4262235164642334,
+ "step": 622
+ },
+ {
+ "epoch": 8.655052264808361,
+ "grad_norm": 0.033776357769966125,
+ "learning_rate": 0.000567991061134677,
+ "loss": 2.4259705543518066,
+ "step": 623
+ },
+ {
+ "epoch": 8.668989547038327,
+ "grad_norm": 0.03251301124691963,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 2.4303622245788574,
+ "step": 624
+ },
+ {
+ "epoch": 8.682926829268293,
+ "grad_norm": 0.03311233967542648,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 2.4325923919677734,
+ "step": 625
+ },
+ {
+ "epoch": 8.696864111498257,
+ "grad_norm": 0.032762084156274796,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 2.423525333404541,
+ "step": 626
+ },
+ {
+ "epoch": 8.710801393728223,
+ "grad_norm": 0.03397396206855774,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 2.421725273132324,
+ "step": 627
+ },
+ {
+ "epoch": 8.724738675958188,
+ "grad_norm": 0.03827521204948425,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 2.417745590209961,
+ "step": 628
+ },
+ {
+ "epoch": 8.738675958188153,
+ "grad_norm": 0.03194425627589226,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 2.4408435821533203,
+ "step": 629
+ },
+ {
+ "epoch": 8.752613240418118,
+ "grad_norm": 0.02894434705376625,
+ "learning_rate": 0.000567143121979179,
+ "loss": 2.430302143096924,
+ "step": 630
+ },
+ {
+ "epoch": 8.766550522648084,
+ "grad_norm": 0.03130284696817398,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 2.4167380332946777,
+ "step": 631
+ },
+ {
+ "epoch": 8.78048780487805,
+ "grad_norm": 0.03176414966583252,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 2.4211833477020264,
+ "step": 632
+ },
+ {
+ "epoch": 8.794425087108014,
+ "grad_norm": 0.03023882955312729,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 2.4175009727478027,
+ "step": 633
+ },
+ {
+ "epoch": 8.80836236933798,
+ "grad_norm": 0.03027920238673687,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 2.4296345710754395,
+ "step": 634
+ },
+ {
+ "epoch": 8.822299651567944,
+ "grad_norm": 0.031661003828048706,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 2.4292376041412354,
+ "step": 635
+ },
+ {
+ "epoch": 8.83623693379791,
+ "grad_norm": 0.02943863719701767,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 2.422773599624634,
+ "step": 636
+ },
+ {
+ "epoch": 8.850174216027874,
+ "grad_norm": 0.02999107912182808,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 2.4288015365600586,
+ "step": 637
+ },
+ {
+ "epoch": 8.86411149825784,
+ "grad_norm": 0.03127457574009895,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 2.426997184753418,
+ "step": 638
+ },
+ {
+ "epoch": 8.878048780487806,
+ "grad_norm": 0.0321597196161747,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 2.418203353881836,
+ "step": 639
+ },
+ {
+ "epoch": 8.89198606271777,
+ "grad_norm": 0.032045748084783554,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 2.4220266342163086,
+ "step": 640
+ },
+ {
+ "epoch": 8.905923344947736,
+ "grad_norm": 0.031895119696855545,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 2.421767234802246,
+ "step": 641
+ },
+ {
+ "epoch": 8.9198606271777,
+ "grad_norm": 0.0330902598798275,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 2.418246269226074,
+ "step": 642
+ },
+ {
+ "epoch": 8.933797909407666,
+ "grad_norm": 0.03361523523926735,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 2.423337697982788,
+ "step": 643
+ },
+ {
+ "epoch": 8.94773519163763,
+ "grad_norm": 0.033133652061223984,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 2.4278783798217773,
+ "step": 644
+ },
+ {
+ "epoch": 8.961672473867596,
+ "grad_norm": 0.03747311979532242,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 2.434087038040161,
+ "step": 645
+ },
+ {
+ "epoch": 8.975609756097562,
+ "grad_norm": 0.036127083003520966,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 2.4167022705078125,
+ "step": 646
+ },
+ {
+ "epoch": 8.989547038327526,
+ "grad_norm": 0.03699145093560219,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 2.4243075847625732,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.028921982273459435,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 1.8086339235305786,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 0.6271453499794006,
+ "eval_runtime": 35.9474,
+ "eval_samples_per_second": 67.933,
+ "eval_steps_per_second": 0.556,
+ "step": 648
+ },
+ {
+ "epoch": 9.013937282229966,
+ "grad_norm": 0.0380239300429821,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 2.377704381942749,
+ "step": 649
+ },
+ {
+ "epoch": 9.02787456445993,
+ "grad_norm": 0.05574064329266548,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 2.399777889251709,
+ "step": 650
+ },
+ {
+ "epoch": 9.041811846689896,
+ "grad_norm": 0.06179674342274666,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 2.3851845264434814,
+ "step": 651
+ },
+ {
+ "epoch": 9.05574912891986,
+ "grad_norm": 0.06461436301469803,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 2.385363817214966,
+ "step": 652
+ },
+ {
+ "epoch": 9.069686411149826,
+ "grad_norm": 0.058009687811136246,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 2.3721890449523926,
+ "step": 653
+ },
+ {
+ "epoch": 9.08362369337979,
+ "grad_norm": 0.06488639861345291,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 2.386878490447998,
+ "step": 654
+ },
+ {
+ "epoch": 9.097560975609756,
+ "grad_norm": 0.05683685839176178,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 2.3946213722229004,
+ "step": 655
+ },
+ {
+ "epoch": 9.111498257839722,
+ "grad_norm": 0.05336347594857216,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 2.3708930015563965,
+ "step": 656
+ },
+ {
+ "epoch": 9.125435540069686,
+ "grad_norm": 0.05320737510919571,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 2.39091157913208,
+ "step": 657
+ },
+ {
+ "epoch": 9.139372822299652,
+ "grad_norm": 0.05641087517142296,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 2.381009578704834,
+ "step": 658
+ },
+ {
+ "epoch": 9.153310104529616,
+ "grad_norm": 0.06087775528430939,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 2.377963066101074,
+ "step": 659
+ },
+ {
+ "epoch": 9.167247386759582,
+ "grad_norm": 0.06592115014791489,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 2.392094135284424,
+ "step": 660
+ },
+ {
+ "epoch": 9.181184668989546,
+ "grad_norm": 0.061441708356142044,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 2.388850212097168,
+ "step": 661
+ },
+ {
+ "epoch": 9.195121951219512,
+ "grad_norm": 0.06311637908220291,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 2.38919734954834,
+ "step": 662
+ },
+ {
+ "epoch": 9.209059233449477,
+ "grad_norm": 0.07152658700942993,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 2.3724892139434814,
+ "step": 663
+ },
+ {
+ "epoch": 9.222996515679442,
+ "grad_norm": 0.06927355378866196,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 2.4017786979675293,
+ "step": 664
+ },
+ {
+ "epoch": 9.236933797909408,
+ "grad_norm": 0.062740758061409,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 2.376430034637451,
+ "step": 665
+ },
+ {
+ "epoch": 9.250871080139373,
+ "grad_norm": 0.051289040595293045,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 2.3926010131835938,
+ "step": 666
+ },
+ {
+ "epoch": 9.264808362369338,
+ "grad_norm": 0.055630262941122055,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 2.3605382442474365,
+ "step": 667
+ },
+ {
+ "epoch": 9.278745644599303,
+ "grad_norm": 0.052814628928899765,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 2.374608039855957,
+ "step": 668
+ },
+ {
+ "epoch": 9.292682926829269,
+ "grad_norm": 0.05927073210477829,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 2.384093999862671,
+ "step": 669
+ },
+ {
+ "epoch": 9.306620209059233,
+ "grad_norm": 0.05510697513818741,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 2.374708652496338,
+ "step": 670
+ },
+ {
+ "epoch": 9.320557491289199,
+ "grad_norm": 0.048580385744571686,
+ "learning_rate": 0.000561968326197397,
+ "loss": 2.3861031532287598,
+ "step": 671
+ },
+ {
+ "epoch": 9.334494773519165,
+ "grad_norm": 0.04905429109930992,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 2.3835110664367676,
+ "step": 672
+ },
+ {
+ "epoch": 9.348432055749129,
+ "grad_norm": 0.04621037095785141,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 2.379696846008301,
+ "step": 673
+ },
+ {
+ "epoch": 9.362369337979095,
+ "grad_norm": 0.0437726229429245,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 2.3854074478149414,
+ "step": 674
+ },
+ {
+ "epoch": 9.376306620209059,
+ "grad_norm": 0.040361031889915466,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 2.39682936668396,
+ "step": 675
+ },
+ {
+ "epoch": 9.390243902439025,
+ "grad_norm": 0.03848707675933838,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 2.3752408027648926,
+ "step": 676
+ },
+ {
+ "epoch": 9.404181184668989,
+ "grad_norm": 0.04017478972673416,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 2.3912038803100586,
+ "step": 677
+ },
+ {
+ "epoch": 9.418118466898955,
+ "grad_norm": 0.03487734496593475,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 2.389535427093506,
+ "step": 678
+ },
+ {
+ "epoch": 9.43205574912892,
+ "grad_norm": 0.03736500069499016,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 2.3840279579162598,
+ "step": 679
+ },
+ {
+ "epoch": 9.445993031358885,
+ "grad_norm": 0.03499516844749451,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 2.3752779960632324,
+ "step": 680
+ },
+ {
+ "epoch": 9.45993031358885,
+ "grad_norm": 0.03297547250986099,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 2.3991637229919434,
+ "step": 681
+ },
+ {
+ "epoch": 9.473867595818815,
+ "grad_norm": 0.03387392312288284,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 2.3872644901275635,
+ "step": 682
+ },
+ {
+ "epoch": 9.487804878048781,
+ "grad_norm": 0.03756970539689064,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 2.368522882461548,
+ "step": 683
+ },
+ {
+ "epoch": 9.501742160278745,
+ "grad_norm": 0.03686998412013054,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 2.381460189819336,
+ "step": 684
+ },
+ {
+ "epoch": 9.515679442508711,
+ "grad_norm": 0.03336082771420479,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 2.3871984481811523,
+ "step": 685
+ },
+ {
+ "epoch": 9.529616724738675,
+ "grad_norm": 0.03545147553086281,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 2.3921163082122803,
+ "step": 686
+ },
+ {
+ "epoch": 9.543554006968641,
+ "grad_norm": 0.03614704683423042,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 2.388418197631836,
+ "step": 687
+ },
+ {
+ "epoch": 9.557491289198607,
+ "grad_norm": 0.0350213497877121,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 2.399055004119873,
+ "step": 688
+ },
+ {
+ "epoch": 9.571428571428571,
+ "grad_norm": 0.035602837800979614,
+ "learning_rate": 0.000559585254906272,
+ "loss": 2.3897178173065186,
+ "step": 689
+ },
+ {
+ "epoch": 9.585365853658537,
+ "grad_norm": 0.03438388183712959,
+ "learning_rate": 0.000559450892376025,
+ "loss": 2.407155990600586,
+ "step": 690
+ },
+ {
+ "epoch": 9.599303135888501,
+ "grad_norm": 0.035386405885219574,
+ "learning_rate": 0.000559316323227926,
+ "loss": 2.390408992767334,
+ "step": 691
+ },
+ {
+ "epoch": 9.613240418118467,
+ "grad_norm": 0.03753617778420448,
+ "learning_rate": 0.000559181547570395,
+ "loss": 2.3751039505004883,
+ "step": 692
+ },
+ {
+ "epoch": 9.627177700348431,
+ "grad_norm": 0.03430183231830597,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 2.3941941261291504,
+ "step": 693
+ },
+ {
+ "epoch": 9.641114982578397,
+ "grad_norm": 0.03268825262784958,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 2.3772215843200684,
+ "step": 694
+ },
+ {
+ "epoch": 9.655052264808361,
+ "grad_norm": 0.0341268889605999,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 2.3830480575561523,
+ "step": 695
+ },
+ {
+ "epoch": 9.668989547038327,
+ "grad_norm": 0.03466663882136345,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 2.3796463012695312,
+ "step": 696
+ },
+ {
+ "epoch": 9.682926829268293,
+ "grad_norm": 0.03470399230718613,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 2.385427713394165,
+ "step": 697
+ },
+ {
+ "epoch": 9.696864111498257,
+ "grad_norm": 0.0382751040160656,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 2.3877949714660645,
+ "step": 698
+ },
+ {
+ "epoch": 9.710801393728223,
+ "grad_norm": 0.035988591611385345,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 2.378014326095581,
+ "step": 699
+ },
+ {
+ "epoch": 9.724738675958188,
+ "grad_norm": 0.03295210376381874,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 2.382502555847168,
+ "step": 700
+ },
+ {
+ "epoch": 9.738675958188153,
+ "grad_norm": 0.030723385512828827,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 2.388451099395752,
+ "step": 701
+ },
+ {
+ "epoch": 9.752613240418118,
+ "grad_norm": 0.03281056135892868,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 2.387669086456299,
+ "step": 702
+ },
+ {
+ "epoch": 9.766550522648084,
+ "grad_norm": 0.03443330153822899,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 2.381460189819336,
+ "step": 703
+ },
+ {
+ "epoch": 9.78048780487805,
+ "grad_norm": 0.03670412674546242,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 2.3756155967712402,
+ "step": 704
+ },
+ {
+ "epoch": 9.794425087108014,
+ "grad_norm": 0.03445884957909584,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 2.371798515319824,
+ "step": 705
+ },
+ {
+ "epoch": 9.80836236933798,
+ "grad_norm": 0.03341168165206909,
+ "learning_rate": 0.000557273065985207,
+ "loss": 2.366093635559082,
+ "step": 706
+ },
+ {
+ "epoch": 9.822299651567944,
+ "grad_norm": 0.035434722900390625,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 2.3876760005950928,
+ "step": 707
+ },
+ {
+ "epoch": 9.83623693379791,
+ "grad_norm": 0.036071036010980606,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 2.363477945327759,
+ "step": 708
+ },
+ {
+ "epoch": 9.850174216027874,
+ "grad_norm": 0.03642858937382698,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 2.3772635459899902,
+ "step": 709
+ },
+ {
+ "epoch": 9.86411149825784,
+ "grad_norm": 0.03974858298897743,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 2.3893399238586426,
+ "step": 710
+ },
+ {
+ "epoch": 9.878048780487806,
+ "grad_norm": 0.040428902953863144,
+ "learning_rate": 0.000556581718698499,
+ "loss": 2.385814666748047,
+ "step": 711
+ },
+ {
+ "epoch": 9.89198606271777,
+ "grad_norm": 0.03710169717669487,
+ "learning_rate": 0.000556442835876097,
+ "loss": 2.3817856311798096,
+ "step": 712
+ },
+ {
+ "epoch": 9.905923344947736,
+ "grad_norm": 0.031853094696998596,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 2.3833706378936768,
+ "step": 713
+ },
+ {
+ "epoch": 9.9198606271777,
+ "grad_norm": 0.03192576766014099,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 2.380492687225342,
+ "step": 714
+ },
+ {
+ "epoch": 9.933797909407666,
+ "grad_norm": 0.03222471475601196,
+ "learning_rate": 0.000556024962691404,
+ "loss": 2.368129014968872,
+ "step": 715
+ },
+ {
+ "epoch": 9.94773519163763,
+ "grad_norm": 0.033947065472602844,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 2.392598867416382,
+ "step": 716
+ },
+ {
+ "epoch": 9.961672473867596,
+ "grad_norm": 0.030860550701618195,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 2.392878532409668,
+ "step": 717
+ },
+ {
+ "epoch": 9.975609756097562,
+ "grad_norm": 0.03237077221274376,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 2.3881583213806152,
+ "step": 718
+ },
+ {
+ "epoch": 9.989547038327526,
+ "grad_norm": 0.03429335355758667,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 2.385345458984375,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.025040561333298683,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 1.7694379091262817,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 0.6226440668106079,
+ "eval_runtime": 35.9996,
+ "eval_samples_per_second": 67.834,
+ "eval_steps_per_second": 0.556,
+ "step": 720
+ },
+ {
+ "epoch": 10.013937282229966,
+ "grad_norm": 0.04380113258957863,
+ "learning_rate": 0.0005551837152119915,
+ "loss": 2.338531494140625,
+ "step": 721
+ },
+ {
+ "epoch": 10.02787456445993,
+ "grad_norm": 0.06502492725849152,
+ "learning_rate": 0.0005550427955088455,
+ "loss": 2.336862087249756,
+ "step": 722
+ },
+ {
+ "epoch": 10.041811846689896,
+ "grad_norm": 0.06072859466075897,
+ "learning_rate": 0.0005549016727393715,
+ "loss": 2.345121383666992,
+ "step": 723
+ },
+ {
+ "epoch": 10.05574912891986,
+ "grad_norm": 0.06489435583353043,
+ "learning_rate": 0.0005547603470172697,
+ "loss": 2.3135323524475098,
+ "step": 724
+ },
+ {
+ "epoch": 10.069686411149826,
+ "grad_norm": 0.07557415962219238,
+ "learning_rate": 0.0005546188184564036,
+ "loss": 2.346886157989502,
+ "step": 725
+ },
+ {
+ "epoch": 10.08362369337979,
+ "grad_norm": 0.07416220009326935,
+ "learning_rate": 0.0005544770871708004,
+ "loss": 2.347463607788086,
+ "step": 726
+ },
+ {
+ "epoch": 10.097560975609756,
+ "grad_norm": 0.07228727638721466,
+ "learning_rate": 0.0005543351532746501,
+ "loss": 2.351980209350586,
+ "step": 727
+ },
+ {
+ "epoch": 10.111498257839722,
+ "grad_norm": 0.07207637280225754,
+ "learning_rate": 0.0005541930168823067,
+ "loss": 2.3345837593078613,
+ "step": 728
+ },
+ {
+ "epoch": 10.125435540069686,
+ "grad_norm": 0.07364149391651154,
+ "learning_rate": 0.0005540506781082864,
+ "loss": 2.3545069694519043,
+ "step": 729
+ },
+ {
+ "epoch": 10.139372822299652,
+ "grad_norm": 0.06596208363771439,
+ "learning_rate": 0.0005539081370672695,
+ "loss": 2.3250179290771484,
+ "step": 730
+ },
+ {
+ "epoch": 10.153310104529616,
+ "grad_norm": 0.07143490016460419,
+ "learning_rate": 0.0005537653938740984,
+ "loss": 2.352842330932617,
+ "step": 731
+ },
+ {
+ "epoch": 10.167247386759582,
+ "grad_norm": 0.06986920535564423,
+ "learning_rate": 0.0005536224486437788,
+ "loss": 2.3406600952148438,
+ "step": 732
+ },
+ {
+ "epoch": 10.181184668989546,
+ "grad_norm": 0.06723238527774811,
+ "learning_rate": 0.0005534793014914793,
+ "loss": 2.36100435256958,
+ "step": 733
+ },
+ {
+ "epoch": 10.195121951219512,
+ "grad_norm": 0.07599805295467377,
+ "learning_rate": 0.0005533359525325307,
+ "loss": 2.364171028137207,
+ "step": 734
+ },
+ {
+ "epoch": 10.209059233449477,
+ "grad_norm": 0.06879840791225433,
+ "learning_rate": 0.0005531924018824266,
+ "loss": 2.3600802421569824,
+ "step": 735
+ },
+ {
+ "epoch": 10.222996515679442,
+ "grad_norm": 0.06736139208078384,
+ "learning_rate": 0.0005530486496568236,
+ "loss": 2.3630075454711914,
+ "step": 736
+ },
+ {
+ "epoch": 10.236933797909408,
+ "grad_norm": 0.073630690574646,
+ "learning_rate": 0.0005529046959715397,
+ "loss": 2.3535385131835938,
+ "step": 737
+ },
+ {
+ "epoch": 10.250871080139373,
+ "grad_norm": 0.081154465675354,
+ "learning_rate": 0.0005527605409425562,
+ "loss": 2.355775833129883,
+ "step": 738
+ },
+ {
+ "epoch": 10.264808362369338,
+ "grad_norm": 0.07517901808023453,
+ "learning_rate": 0.0005526161846860161,
+ "loss": 2.3474936485290527,
+ "step": 739
+ },
+ {
+ "epoch": 10.278745644599303,
+ "grad_norm": 0.06589196622371674,
+ "learning_rate": 0.0005524716273182245,
+ "loss": 2.356273651123047,
+ "step": 740
+ },
+ {
+ "epoch": 10.292682926829269,
+ "grad_norm": 0.07035321742296219,
+ "learning_rate": 0.0005523268689556489,
+ "loss": 2.3348515033721924,
+ "step": 741
+ },
+ {
+ "epoch": 10.306620209059233,
+ "grad_norm": 0.05464137718081474,
+ "learning_rate": 0.0005521819097149183,
+ "loss": 2.340257167816162,
+ "step": 742
+ },
+ {
+ "epoch": 10.320557491289199,
+ "grad_norm": 0.05040175840258598,
+ "learning_rate": 0.0005520367497128238,
+ "loss": 2.356626033782959,
+ "step": 743
+ },
+ {
+ "epoch": 10.334494773519165,
+ "grad_norm": 0.04544971138238907,
+ "learning_rate": 0.0005518913890663182,
+ "loss": 2.3765573501586914,
+ "step": 744
+ },
+ {
+ "epoch": 10.348432055749129,
+ "grad_norm": 0.04246767982840538,
+ "learning_rate": 0.0005517458278925161,
+ "loss": 2.3584630489349365,
+ "step": 745
+ },
+ {
+ "epoch": 10.362369337979095,
+ "grad_norm": 0.0407957099378109,
+ "learning_rate": 0.0005516000663086932,
+ "loss": 2.3562331199645996,
+ "step": 746
+ },
+ {
+ "epoch": 10.376306620209059,
+ "grad_norm": 0.04157666489481926,
+ "learning_rate": 0.0005514541044322872,
+ "loss": 2.355463743209839,
+ "step": 747
+ },
+ {
+ "epoch": 10.390243902439025,
+ "grad_norm": 0.03842373192310333,
+ "learning_rate": 0.0005513079423808967,
+ "loss": 2.3644120693206787,
+ "step": 748
+ },
+ {
+ "epoch": 10.404181184668989,
+ "grad_norm": 0.03891562297940254,
+ "learning_rate": 0.0005511615802722823,
+ "loss": 2.3579063415527344,
+ "step": 749
+ },
+ {
+ "epoch": 10.418118466898955,
+ "grad_norm": 0.03712530806660652,
+ "learning_rate": 0.0005510150182243647,
+ "loss": 2.3606715202331543,
+ "step": 750
+ },
+ {
+ "epoch": 10.43205574912892,
+ "grad_norm": 0.03664202243089676,
+ "learning_rate": 0.0005508682563552269,
+ "loss": 2.3363728523254395,
+ "step": 751
+ },
+ {
+ "epoch": 10.445993031358885,
+ "grad_norm": 0.03555043414235115,
+ "learning_rate": 0.0005507212947831119,
+ "loss": 2.357100009918213,
+ "step": 752
+ },
+ {
+ "epoch": 10.45993031358885,
+ "grad_norm": 0.0355045385658741,
+ "learning_rate": 0.0005505741336264239,
+ "loss": 2.348784923553467,
+ "step": 753
+ },
+ {
+ "epoch": 10.473867595818815,
+ "grad_norm": 0.036513347178697586,
+ "learning_rate": 0.0005504267730037283,
+ "loss": 2.3371458053588867,
+ "step": 754
+ },
+ {
+ "epoch": 10.487804878048781,
+ "grad_norm": 0.034735117107629776,
+ "learning_rate": 0.0005502792130337508,
+ "loss": 2.3379664421081543,
+ "step": 755
+ },
+ {
+ "epoch": 10.501742160278745,
+ "grad_norm": 0.032890401780605316,
+ "learning_rate": 0.0005501314538353776,
+ "loss": 2.345534563064575,
+ "step": 756
+ },
+ {
+ "epoch": 10.515679442508711,
+ "grad_norm": 0.0343078076839447,
+ "learning_rate": 0.000549983495527656,
+ "loss": 2.3425400257110596,
+ "step": 757
+ },
+ {
+ "epoch": 10.529616724738675,
+ "grad_norm": 0.036330267786979675,
+ "learning_rate": 0.000549835338229793,
+ "loss": 2.353668689727783,
+ "step": 758
+ },
+ {
+ "epoch": 10.543554006968641,
+ "grad_norm": 0.03595716878771782,
+ "learning_rate": 0.0005496869820611563,
+ "loss": 2.340348958969116,
+ "step": 759
+ },
+ {
+ "epoch": 10.557491289198607,
+ "grad_norm": 0.03567204624414444,
+ "learning_rate": 0.0005495384271412739,
+ "loss": 2.3443446159362793,
+ "step": 760
+ },
+ {
+ "epoch": 10.571428571428571,
+ "grad_norm": 0.03243366256356239,
+ "learning_rate": 0.0005493896735898338,
+ "loss": 2.328749179840088,
+ "step": 761
+ },
+ {
+ "epoch": 10.585365853658537,
+ "grad_norm": 0.033156730234622955,
+ "learning_rate": 0.000549240721526684,
+ "loss": 2.3553342819213867,
+ "step": 762
+ },
+ {
+ "epoch": 10.599303135888501,
+ "grad_norm": 0.03489018976688385,
+ "learning_rate": 0.0005490915710718325,
+ "loss": 2.329984664916992,
+ "step": 763
+ },
+ {
+ "epoch": 10.613240418118467,
+ "grad_norm": 0.0352267362177372,
+ "learning_rate": 0.0005489422223454471,
+ "loss": 2.34751033782959,
+ "step": 764
+ },
+ {
+ "epoch": 10.627177700348431,
+ "grad_norm": 0.03212668001651764,
+ "learning_rate": 0.0005487926754678556,
+ "loss": 2.341987133026123,
+ "step": 765
+ },
+ {
+ "epoch": 10.641114982578397,
+ "grad_norm": 0.03473065048456192,
+ "learning_rate": 0.0005486429305595448,
+ "loss": 2.343632221221924,
+ "step": 766
+ },
+ {
+ "epoch": 10.655052264808361,
+ "grad_norm": 0.03458387404680252,
+ "learning_rate": 0.0005484929877411618,
+ "loss": 2.3420281410217285,
+ "step": 767
+ },
+ {
+ "epoch": 10.668989547038327,
+ "grad_norm": 0.03573968634009361,
+ "learning_rate": 0.0005483428471335127,
+ "loss": 2.349421501159668,
+ "step": 768
+ },
+ {
+ "epoch": 10.682926829268293,
+ "grad_norm": 0.034877803176641464,
+ "learning_rate": 0.000548192508857563,
+ "loss": 2.354094982147217,
+ "step": 769
+ },
+ {
+ "epoch": 10.696864111498257,
+ "grad_norm": 0.03350481390953064,
+ "learning_rate": 0.0005480419730344377,
+ "loss": 2.334352493286133,
+ "step": 770
+ },
+ {
+ "epoch": 10.710801393728223,
+ "grad_norm": 0.03327416628599167,
+ "learning_rate": 0.0005478912397854208,
+ "loss": 2.3445448875427246,
+ "step": 771
+ },
+ {
+ "epoch": 10.724738675958188,
+ "grad_norm": 0.03491336479783058,
+ "learning_rate": 0.0005477403092319552,
+ "loss": 2.3525538444519043,
+ "step": 772
+ },
+ {
+ "epoch": 10.738675958188153,
+ "grad_norm": 0.035869523882865906,
+ "learning_rate": 0.0005475891814956429,
+ "loss": 2.3440966606140137,
+ "step": 773
+ },
+ {
+ "epoch": 10.752613240418118,
+ "grad_norm": 0.036187391728162766,
+ "learning_rate": 0.0005474378566982449,
+ "loss": 2.33382511138916,
+ "step": 774
+ },
+ {
+ "epoch": 10.766550522648084,
+ "grad_norm": 0.037324003875255585,
+ "learning_rate": 0.0005472863349616809,
+ "loss": 2.3463244438171387,
+ "step": 775
+ },
+ {
+ "epoch": 10.78048780487805,
+ "grad_norm": 0.035808268934488297,
+ "learning_rate": 0.0005471346164080292,
+ "loss": 2.3392248153686523,
+ "step": 776
+ },
+ {
+ "epoch": 10.794425087108014,
+ "grad_norm": 0.03382394090294838,
+ "learning_rate": 0.0005469827011595266,
+ "loss": 2.3399806022644043,
+ "step": 777
+ },
+ {
+ "epoch": 10.80836236933798,
+ "grad_norm": 0.03256148472428322,
+ "learning_rate": 0.0005468305893385686,
+ "loss": 2.336940050125122,
+ "step": 778
+ },
+ {
+ "epoch": 10.822299651567944,
+ "grad_norm": 0.032796118408441544,
+ "learning_rate": 0.0005466782810677088,
+ "loss": 2.3503036499023438,
+ "step": 779
+ },
+ {
+ "epoch": 10.83623693379791,
+ "grad_norm": 0.03359639272093773,
+ "learning_rate": 0.0005465257764696593,
+ "loss": 2.340160608291626,
+ "step": 780
+ },
+ {
+ "epoch": 10.850174216027874,
+ "grad_norm": 0.03725067153573036,
+ "learning_rate": 0.0005463730756672903,
+ "loss": 2.3448994159698486,
+ "step": 781
+ },
+ {
+ "epoch": 10.86411149825784,
+ "grad_norm": 0.03396180644631386,
+ "learning_rate": 0.0005462201787836301,
+ "loss": 2.337078094482422,
+ "step": 782
+ },
+ {
+ "epoch": 10.878048780487806,
+ "grad_norm": 0.034375693649053574,
+ "learning_rate": 0.0005460670859418651,
+ "loss": 2.3564600944519043,
+ "step": 783
+ },
+ {
+ "epoch": 10.89198606271777,
+ "grad_norm": 0.034513067454099655,
+ "learning_rate": 0.000545913797265339,
+ "loss": 2.3631274700164795,
+ "step": 784
+ },
+ {
+ "epoch": 10.905923344947736,
+ "grad_norm": 0.03305843099951744,
+ "learning_rate": 0.0005457603128775541,
+ "loss": 2.345407485961914,
+ "step": 785
+ },
+ {
+ "epoch": 10.9198606271777,
+ "grad_norm": 0.03236348554491997,
+ "learning_rate": 0.0005456066329021699,
+ "loss": 2.340275526046753,
+ "step": 786
+ },
+ {
+ "epoch": 10.933797909407666,
+ "grad_norm": 0.03411583974957466,
+ "learning_rate": 0.0005454527574630037,
+ "loss": 2.341548442840576,
+ "step": 787
+ },
+ {
+ "epoch": 10.94773519163763,
+ "grad_norm": 0.03641803562641144,
+ "learning_rate": 0.0005452986866840298,
+ "loss": 2.3475522994995117,
+ "step": 788
+ },
+ {
+ "epoch": 10.961672473867596,
+ "grad_norm": 0.03492163494229317,
+ "learning_rate": 0.0005451444206893806,
+ "loss": 2.3415870666503906,
+ "step": 789
+ },
+ {
+ "epoch": 10.975609756097562,
+ "grad_norm": 0.03789013251662254,
+ "learning_rate": 0.0005449899596033453,
+ "loss": 2.3574557304382324,
+ "step": 790
+ },
+ {
+ "epoch": 10.989547038327526,
+ "grad_norm": 0.034537237137556076,
+ "learning_rate": 0.0005448353035503704,
+ "loss": 2.350353717803955,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.026393387466669083,
+ "learning_rate": 0.0005446804526550596,
+ "loss": 1.7534164190292358,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 0.6207266449928284,
+ "eval_runtime": 36.6286,
+ "eval_samples_per_second": 66.669,
+ "eval_steps_per_second": 0.546,
+ "step": 792
+ },
+ {
+ "epoch": 11.013937282229966,
+ "grad_norm": 0.04500797390937805,
+ "learning_rate": 0.0005445254070421732,
+ "loss": 2.29563570022583,
+ "step": 793
+ },
+ {
+ "epoch": 11.02787456445993,
+ "grad_norm": 0.058218058198690414,
+ "learning_rate": 0.0005443701668366288,
+ "loss": 2.285862445831299,
+ "step": 794
+ },
+ {
+ "epoch": 11.041811846689896,
+ "grad_norm": 0.06746228039264679,
+ "learning_rate": 0.0005442147321635007,
+ "loss": 2.2930586338043213,
+ "step": 795
+ },
+ {
+ "epoch": 11.05574912891986,
+ "grad_norm": 0.07853464037179947,
+ "learning_rate": 0.00054405910314802,
+ "loss": 2.2999796867370605,
+ "step": 796
+ },
+ {
+ "epoch": 11.069686411149826,
+ "grad_norm": 0.0743563324213028,
+ "learning_rate": 0.0005439032799155737,
+ "loss": 2.3127989768981934,
+ "step": 797
+ },
+ {
+ "epoch": 11.08362369337979,
+ "grad_norm": 0.06950018554925919,
+ "learning_rate": 0.000543747262591706,
+ "loss": 2.302677631378174,
+ "step": 798
+ },
+ {
+ "epoch": 11.097560975609756,
+ "grad_norm": 0.0668293684720993,
+ "learning_rate": 0.0005435910513021172,
+ "loss": 2.3067705631256104,
+ "step": 799
+ },
+ {
+ "epoch": 11.111498257839722,
+ "grad_norm": 0.05805148929357529,
+ "learning_rate": 0.0005434346461726641,
+ "loss": 2.2972123622894287,
+ "step": 800
+ },
+ {
+ "epoch": 11.125435540069686,
+ "grad_norm": 0.059285592287778854,
+ "learning_rate": 0.0005432780473293593,
+ "loss": 2.302372932434082,
+ "step": 801
+ },
+ {
+ "epoch": 11.139372822299652,
+ "grad_norm": 0.054501719772815704,
+ "learning_rate": 0.0005431212548983718,
+ "loss": 2.305246353149414,
+ "step": 802
+ },
+ {
+ "epoch": 11.153310104529616,
+ "grad_norm": 0.05490308254957199,
+ "learning_rate": 0.0005429642690060262,
+ "loss": 2.300204277038574,
+ "step": 803
+ },
+ {
+ "epoch": 11.167247386759582,
+ "grad_norm": 0.05564664676785469,
+ "learning_rate": 0.0005428070897788034,
+ "loss": 2.295349597930908,
+ "step": 804
+ },
+ {
+ "epoch": 11.181184668989546,
+ "grad_norm": 0.04841756820678711,
+ "learning_rate": 0.0005426497173433398,
+ "loss": 2.3083786964416504,
+ "step": 805
+ },
+ {
+ "epoch": 11.195121951219512,
+ "grad_norm": 0.05090150982141495,
+ "learning_rate": 0.0005424921518264275,
+ "loss": 2.2890477180480957,
+ "step": 806
+ },
+ {
+ "epoch": 11.209059233449477,
+ "grad_norm": 0.049588896334171295,
+ "learning_rate": 0.0005423343933550143,
+ "loss": 2.3092164993286133,
+ "step": 807
+ },
+ {
+ "epoch": 11.222996515679442,
+ "grad_norm": 0.059266265481710434,
+ "learning_rate": 0.0005421764420562032,
+ "loss": 2.3087329864501953,
+ "step": 808
+ },
+ {
+ "epoch": 11.236933797909408,
+ "grad_norm": 0.061635106801986694,
+ "learning_rate": 0.0005420182980572527,
+ "loss": 2.310224771499634,
+ "step": 809
+ },
+ {
+ "epoch": 11.250871080139373,
+ "grad_norm": 0.058707281947135925,
+ "learning_rate": 0.0005418599614855768,
+ "loss": 2.3094818592071533,
+ "step": 810
+ },
+ {
+ "epoch": 11.264808362369338,
+ "grad_norm": 0.05711625888943672,
+ "learning_rate": 0.0005417014324687442,
+ "loss": 2.320720672607422,
+ "step": 811
+ },
+ {
+ "epoch": 11.278745644599303,
+ "grad_norm": 0.04941999912261963,
+ "learning_rate": 0.000541542711134479,
+ "loss": 2.3037776947021484,
+ "step": 812
+ },
+ {
+ "epoch": 11.292682926829269,
+ "grad_norm": 0.0481753945350647,
+ "learning_rate": 0.0005413837976106599,
+ "loss": 2.307615280151367,
+ "step": 813
+ },
+ {
+ "epoch": 11.306620209059233,
+ "grad_norm": 0.05005398392677307,
+ "learning_rate": 0.0005412246920253208,
+ "loss": 2.302461624145508,
+ "step": 814
+ },
+ {
+ "epoch": 11.320557491289199,
+ "grad_norm": 0.051312051713466644,
+ "learning_rate": 0.0005410653945066503,
+ "loss": 2.3107659816741943,
+ "step": 815
+ },
+ {
+ "epoch": 11.334494773519165,
+ "grad_norm": 0.047787491232156754,
+ "learning_rate": 0.0005409059051829914,
+ "loss": 2.303896903991699,
+ "step": 816
+ },
+ {
+ "epoch": 11.348432055749129,
+ "grad_norm": 0.044105708599090576,
+ "learning_rate": 0.0005407462241828417,
+ "loss": 2.3028616905212402,
+ "step": 817
+ },
+ {
+ "epoch": 11.362369337979095,
+ "grad_norm": 0.04771425202488899,
+ "learning_rate": 0.0005405863516348535,
+ "loss": 2.3242416381835938,
+ "step": 818
+ },
+ {
+ "epoch": 11.376306620209059,
+ "grad_norm": 0.049508776515722275,
+ "learning_rate": 0.000540426287667833,
+ "loss": 2.317350387573242,
+ "step": 819
+ },
+ {
+ "epoch": 11.390243902439025,
+ "grad_norm": 0.04476630315184593,
+ "learning_rate": 0.000540266032410741,
+ "loss": 2.3019609451293945,
+ "step": 820
+ },
+ {
+ "epoch": 11.404181184668989,
+ "grad_norm": 0.044484466314315796,
+ "learning_rate": 0.0005401055859926923,
+ "loss": 2.3157167434692383,
+ "step": 821
+ },
+ {
+ "epoch": 11.418118466898955,
+ "grad_norm": 0.04700213670730591,
+ "learning_rate": 0.0005399449485429555,
+ "loss": 2.31441330909729,
+ "step": 822
+ },
+ {
+ "epoch": 11.43205574912892,
+ "grad_norm": 0.04357650876045227,
+ "learning_rate": 0.0005397841201909535,
+ "loss": 2.309573173522949,
+ "step": 823
+ },
+ {
+ "epoch": 11.445993031358885,
+ "grad_norm": 0.04270123690366745,
+ "learning_rate": 0.0005396231010662627,
+ "loss": 2.2956438064575195,
+ "step": 824
+ },
+ {
+ "epoch": 11.45993031358885,
+ "grad_norm": 0.04122788831591606,
+ "learning_rate": 0.0005394618912986132,
+ "loss": 2.3093338012695312,
+ "step": 825
+ },
+ {
+ "epoch": 11.473867595818815,
+ "grad_norm": 0.040944404900074005,
+ "learning_rate": 0.0005393004910178889,
+ "loss": 2.3245465755462646,
+ "step": 826
+ },
+ {
+ "epoch": 11.487804878048781,
+ "grad_norm": 0.04059522598981857,
+ "learning_rate": 0.0005391389003541271,
+ "loss": 2.307492733001709,
+ "step": 827
+ },
+ {
+ "epoch": 11.501742160278745,
+ "grad_norm": 0.04292140156030655,
+ "learning_rate": 0.0005389771194375185,
+ "loss": 2.32723069190979,
+ "step": 828
+ },
+ {
+ "epoch": 11.515679442508711,
+ "grad_norm": 0.041085343807935715,
+ "learning_rate": 0.0005388151483984071,
+ "loss": 2.3025991916656494,
+ "step": 829
+ },
+ {
+ "epoch": 11.529616724738675,
+ "grad_norm": 0.040302127599716187,
+ "learning_rate": 0.0005386529873672898,
+ "loss": 2.306711196899414,
+ "step": 830
+ },
+ {
+ "epoch": 11.543554006968641,
+ "grad_norm": 0.04179452359676361,
+ "learning_rate": 0.0005384906364748172,
+ "loss": 2.299077033996582,
+ "step": 831
+ },
+ {
+ "epoch": 11.557491289198607,
+ "grad_norm": 0.04052369296550751,
+ "learning_rate": 0.000538328095851792,
+ "loss": 2.3212227821350098,
+ "step": 832
+ },
+ {
+ "epoch": 11.571428571428571,
+ "grad_norm": 0.03855585679411888,
+ "learning_rate": 0.0005381653656291707,
+ "loss": 2.2905197143554688,
+ "step": 833
+ },
+ {
+ "epoch": 11.585365853658537,
+ "grad_norm": 0.04159102961421013,
+ "learning_rate": 0.0005380024459380619,
+ "loss": 2.2973320484161377,
+ "step": 834
+ },
+ {
+ "epoch": 11.599303135888501,
+ "grad_norm": 0.044633787125349045,
+ "learning_rate": 0.000537839336909727,
+ "loss": 2.3214757442474365,
+ "step": 835
+ },
+ {
+ "epoch": 11.613240418118467,
+ "grad_norm": 0.03999071940779686,
+ "learning_rate": 0.00053767603867558,
+ "loss": 2.332554817199707,
+ "step": 836
+ },
+ {
+ "epoch": 11.627177700348431,
+ "grad_norm": 0.03866419568657875,
+ "learning_rate": 0.0005375125513671874,
+ "loss": 2.3050875663757324,
+ "step": 837
+ },
+ {
+ "epoch": 11.641114982578397,
+ "grad_norm": 0.041100166738033295,
+ "learning_rate": 0.0005373488751162681,
+ "loss": 2.316553831100464,
+ "step": 838
+ },
+ {
+ "epoch": 11.655052264808361,
+ "grad_norm": 0.040330950170755386,
+ "learning_rate": 0.0005371850100546929,
+ "loss": 2.310610294342041,
+ "step": 839
+ },
+ {
+ "epoch": 11.668989547038327,
+ "grad_norm": 0.03405703231692314,
+ "learning_rate": 0.000537020956314485,
+ "loss": 2.311572313308716,
+ "step": 840
+ },
+ {
+ "epoch": 11.682926829268293,
+ "grad_norm": 0.038694240152835846,
+ "learning_rate": 0.0005368567140278196,
+ "loss": 2.291428565979004,
+ "step": 841
+ },
+ {
+ "epoch": 11.696864111498257,
+ "grad_norm": 0.03937961906194687,
+ "learning_rate": 0.0005366922833270235,
+ "loss": 2.315734386444092,
+ "step": 842
+ },
+ {
+ "epoch": 11.710801393728223,
+ "grad_norm": 0.038759566843509674,
+ "learning_rate": 0.0005365276643445757,
+ "loss": 2.3142471313476562,
+ "step": 843
+ },
+ {
+ "epoch": 11.724738675958188,
+ "grad_norm": 0.03737666830420494,
+ "learning_rate": 0.0005363628572131069,
+ "loss": 2.305859088897705,
+ "step": 844
+ },
+ {
+ "epoch": 11.738675958188153,
+ "grad_norm": 0.039980217814445496,
+ "learning_rate": 0.0005361978620653991,
+ "loss": 2.3132710456848145,
+ "step": 845
+ },
+ {
+ "epoch": 11.752613240418118,
+ "grad_norm": 0.040231477469205856,
+ "learning_rate": 0.0005360326790343858,
+ "loss": 2.307582139968872,
+ "step": 846
+ },
+ {
+ "epoch": 11.766550522648084,
+ "grad_norm": 0.03938363865017891,
+ "learning_rate": 0.000535867308253152,
+ "loss": 2.33015775680542,
+ "step": 847
+ },
+ {
+ "epoch": 11.78048780487805,
+ "grad_norm": 0.03871415555477142,
+ "learning_rate": 0.0005357017498549341,
+ "loss": 2.315992832183838,
+ "step": 848
+ },
+ {
+ "epoch": 11.794425087108014,
+ "grad_norm": 0.03816714137792587,
+ "learning_rate": 0.0005355360039731196,
+ "loss": 2.315371513366699,
+ "step": 849
+ },
+ {
+ "epoch": 11.80836236933798,
+ "grad_norm": 0.03860654681921005,
+ "learning_rate": 0.0005353700707412466,
+ "loss": 2.3099796772003174,
+ "step": 850
+ },
+ {
+ "epoch": 11.822299651567944,
+ "grad_norm": 0.04050910845398903,
+ "learning_rate": 0.0005352039502930048,
+ "loss": 2.331601142883301,
+ "step": 851
+ },
+ {
+ "epoch": 11.83623693379791,
+ "grad_norm": 0.040455542504787445,
+ "learning_rate": 0.0005350376427622343,
+ "loss": 2.3153774738311768,
+ "step": 852
+ },
+ {
+ "epoch": 11.850174216027874,
+ "grad_norm": 0.03606412559747696,
+ "learning_rate": 0.0005348711482829261,
+ "loss": 2.3196091651916504,
+ "step": 853
+ },
+ {
+ "epoch": 11.86411149825784,
+ "grad_norm": 0.03540179878473282,
+ "learning_rate": 0.000534704466989222,
+ "loss": 2.3175747394561768,
+ "step": 854
+ },
+ {
+ "epoch": 11.878048780487806,
+ "grad_norm": 0.03594037890434265,
+ "learning_rate": 0.0005345375990154138,
+ "loss": 2.3123281002044678,
+ "step": 855
+ },
+ {
+ "epoch": 11.89198606271777,
+ "grad_norm": 0.037316273897886276,
+ "learning_rate": 0.0005343705444959441,
+ "loss": 2.326590061187744,
+ "step": 856
+ },
+ {
+ "epoch": 11.905923344947736,
+ "grad_norm": 0.03534175828099251,
+ "learning_rate": 0.000534203303565406,
+ "loss": 2.289609670639038,
+ "step": 857
+ },
+ {
+ "epoch": 11.9198606271777,
+ "grad_norm": 0.03645944595336914,
+ "learning_rate": 0.000534035876358542,
+ "loss": 2.310405731201172,
+ "step": 858
+ },
+ {
+ "epoch": 11.933797909407666,
+ "grad_norm": 0.033878158777952194,
+ "learning_rate": 0.0005338682630102454,
+ "loss": 2.3025999069213867,
+ "step": 859
+ },
+ {
+ "epoch": 11.94773519163763,
+ "grad_norm": 0.03515630215406418,
+ "learning_rate": 0.0005337004636555595,
+ "loss": 2.3085150718688965,
+ "step": 860
+ },
+ {
+ "epoch": 11.961672473867596,
+ "grad_norm": 0.034178491681814194,
+ "learning_rate": 0.0005335324784296768,
+ "loss": 2.3223443031311035,
+ "step": 861
+ },
+ {
+ "epoch": 11.975609756097562,
+ "grad_norm": 0.0340011864900589,
+ "learning_rate": 0.0005333643074679403,
+ "loss": 2.324476957321167,
+ "step": 862
+ },
+ {
+ "epoch": 11.989547038327526,
+ "grad_norm": 0.03569193184375763,
+ "learning_rate": 0.000533195950905842,
+ "loss": 2.3087520599365234,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.030978869646787643,
+ "learning_rate": 0.0005330274088790239,
+ "loss": 1.733755350112915,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 0.6196663975715637,
+ "eval_runtime": 38.4411,
+ "eval_samples_per_second": 63.526,
+ "eval_steps_per_second": 0.52,
+ "step": 864
+ },
+ {
+ "epoch": 12.013937282229966,
+ "grad_norm": 0.04311290383338928,
+ "learning_rate": 0.0005328586815232773,
+ "loss": 2.267500638961792,
+ "step": 865
+ },
+ {
+ "epoch": 12.02787456445993,
+ "grad_norm": 0.05809512361884117,
+ "learning_rate": 0.0005326897689745428,
+ "loss": 2.269824981689453,
+ "step": 866
+ },
+ {
+ "epoch": 12.041811846689896,
+ "grad_norm": 0.06641583144664764,
+ "learning_rate": 0.0005325206713689101,
+ "loss": 2.2579562664031982,
+ "step": 867
+ },
+ {
+ "epoch": 12.05574912891986,
+ "grad_norm": 0.06946069747209549,
+ "learning_rate": 0.0005323513888426181,
+ "loss": 2.2649731636047363,
+ "step": 868
+ },
+ {
+ "epoch": 12.069686411149826,
+ "grad_norm": 0.07457753270864487,
+ "learning_rate": 0.0005321819215320546,
+ "loss": 2.271296501159668,
+ "step": 869
+ },
+ {
+ "epoch": 12.08362369337979,
+ "grad_norm": 0.08557604998350143,
+ "learning_rate": 0.0005320122695737565,
+ "loss": 2.2977068424224854,
+ "step": 870
+ },
+ {
+ "epoch": 12.097560975609756,
+ "grad_norm": 0.07865381985902786,
+ "learning_rate": 0.0005318424331044094,
+ "loss": 2.2831926345825195,
+ "step": 871
+ },
+ {
+ "epoch": 12.111498257839722,
+ "grad_norm": 0.07406128942966461,
+ "learning_rate": 0.0005316724122608473,
+ "loss": 2.280620574951172,
+ "step": 872
+ },
+ {
+ "epoch": 12.125435540069686,
+ "grad_norm": 0.08649969846010208,
+ "learning_rate": 0.0005315022071800527,
+ "loss": 2.2639617919921875,
+ "step": 873
+ },
+ {
+ "epoch": 12.139372822299652,
+ "grad_norm": 0.08262167125940323,
+ "learning_rate": 0.0005313318179991574,
+ "loss": 2.271108627319336,
+ "step": 874
+ },
+ {
+ "epoch": 12.153310104529616,
+ "grad_norm": 0.0752791240811348,
+ "learning_rate": 0.0005311612448554402,
+ "loss": 2.273391008377075,
+ "step": 875
+ },
+ {
+ "epoch": 12.167247386759582,
+ "grad_norm": 0.07095267623662949,
+ "learning_rate": 0.0005309904878863293,
+ "loss": 2.276211977005005,
+ "step": 876
+ },
+ {
+ "epoch": 12.181184668989546,
+ "grad_norm": 0.061625171452760696,
+ "learning_rate": 0.0005308195472294001,
+ "loss": 2.2848544120788574,
+ "step": 877
+ },
+ {
+ "epoch": 12.195121951219512,
+ "grad_norm": 0.06082753837108612,
+ "learning_rate": 0.0005306484230223769,
+ "loss": 2.2795495986938477,
+ "step": 878
+ },
+ {
+ "epoch": 12.209059233449477,
+ "grad_norm": 0.0587560310959816,
+ "learning_rate": 0.000530477115403131,
+ "loss": 2.257300853729248,
+ "step": 879
+ },
+ {
+ "epoch": 12.222996515679442,
+ "grad_norm": 0.05483998730778694,
+ "learning_rate": 0.0005303056245096817,
+ "loss": 2.2889161109924316,
+ "step": 880
+ },
+ {
+ "epoch": 12.236933797909408,
+ "grad_norm": 0.05021355301141739,
+ "learning_rate": 0.0005301339504801967,
+ "loss": 2.2778401374816895,
+ "step": 881
+ },
+ {
+ "epoch": 12.250871080139373,
+ "grad_norm": 0.05440690740942955,
+ "learning_rate": 0.0005299620934529902,
+ "loss": 2.2760677337646484,
+ "step": 882
+ },
+ {
+ "epoch": 12.264808362369338,
+ "grad_norm": 0.05961807072162628,
+ "learning_rate": 0.0005297900535665244,
+ "loss": 2.276120185852051,
+ "step": 883
+ },
+ {
+ "epoch": 12.278745644599303,
+ "grad_norm": 0.054035380482673645,
+ "learning_rate": 0.0005296178309594087,
+ "loss": 2.255659341812134,
+ "step": 884
+ },
+ {
+ "epoch": 12.292682926829269,
+ "grad_norm": 0.05121298506855965,
+ "learning_rate": 0.0005294454257704,
+ "loss": 2.2852983474731445,
+ "step": 885
+ },
+ {
+ "epoch": 12.306620209059233,
+ "grad_norm": 0.04890505596995354,
+ "learning_rate": 0.0005292728381384018,
+ "loss": 2.2752151489257812,
+ "step": 886
+ },
+ {
+ "epoch": 12.320557491289199,
+ "grad_norm": 0.05019564554095268,
+ "learning_rate": 0.0005291000682024647,
+ "loss": 2.261242389678955,
+ "step": 887
+ },
+ {
+ "epoch": 12.334494773519165,
+ "grad_norm": 0.04824003204703331,
+ "learning_rate": 0.0005289271161017867,
+ "loss": 2.2752835750579834,
+ "step": 888
+ },
+ {
+ "epoch": 12.348432055749129,
+ "grad_norm": 0.04195769876241684,
+ "learning_rate": 0.0005287539819757119,
+ "loss": 2.2705702781677246,
+ "step": 889
+ },
+ {
+ "epoch": 12.362369337979095,
+ "grad_norm": 0.046239253133535385,
+ "learning_rate": 0.0005285806659637315,
+ "loss": 2.2981534004211426,
+ "step": 890
+ },
+ {
+ "epoch": 12.376306620209059,
+ "grad_norm": 0.04743665084242821,
+ "learning_rate": 0.000528407168205483,
+ "loss": 2.278078079223633,
+ "step": 891
+ },
+ {
+ "epoch": 12.390243902439025,
+ "grad_norm": 0.04690218344330788,
+ "learning_rate": 0.0005282334888407503,
+ "loss": 2.2809972763061523,
+ "step": 892
+ },
+ {
+ "epoch": 12.404181184668989,
+ "grad_norm": 0.0444699302315712,
+ "learning_rate": 0.000528059628009464,
+ "loss": 2.2702579498291016,
+ "step": 893
+ },
+ {
+ "epoch": 12.418118466898955,
+ "grad_norm": 0.04225282371044159,
+ "learning_rate": 0.0005278855858517003,
+ "loss": 2.2717671394348145,
+ "step": 894
+ },
+ {
+ "epoch": 12.43205574912892,
+ "grad_norm": 0.041407857090234756,
+ "learning_rate": 0.0005277113625076822,
+ "loss": 2.266977548599243,
+ "step": 895
+ },
+ {
+ "epoch": 12.445993031358885,
+ "grad_norm": 0.042014770209789276,
+ "learning_rate": 0.000527536958117778,
+ "loss": 2.269441604614258,
+ "step": 896
+ },
+ {
+ "epoch": 12.45993031358885,
+ "grad_norm": 0.04196929931640625,
+ "learning_rate": 0.0005273623728225022,
+ "loss": 2.246767997741699,
+ "step": 897
+ },
+ {
+ "epoch": 12.473867595818815,
+ "grad_norm": 0.04507727175951004,
+ "learning_rate": 0.0005271876067625153,
+ "loss": 2.2929835319519043,
+ "step": 898
+ },
+ {
+ "epoch": 12.487804878048781,
+ "grad_norm": 0.043129295110702515,
+ "learning_rate": 0.0005270126600786228,
+ "loss": 2.280632257461548,
+ "step": 899
+ },
+ {
+ "epoch": 12.501742160278745,
+ "grad_norm": 0.041876427829265594,
+ "learning_rate": 0.0005268375329117762,
+ "loss": 2.2524752616882324,
+ "step": 900
+ },
+ {
+ "epoch": 12.515679442508711,
+ "grad_norm": 0.04281412810087204,
+ "learning_rate": 0.0005266622254030724,
+ "loss": 2.278818130493164,
+ "step": 901
+ },
+ {
+ "epoch": 12.529616724738675,
+ "grad_norm": 0.040438197553157806,
+ "learning_rate": 0.0005264867376937534,
+ "loss": 2.2771482467651367,
+ "step": 902
+ },
+ {
+ "epoch": 12.543554006968641,
+ "grad_norm": 0.03930707275867462,
+ "learning_rate": 0.0005263110699252065,
+ "loss": 2.273127555847168,
+ "step": 903
+ },
+ {
+ "epoch": 12.557491289198607,
+ "grad_norm": 0.04181307926774025,
+ "learning_rate": 0.000526135222238964,
+ "loss": 2.2839956283569336,
+ "step": 904
+ },
+ {
+ "epoch": 12.571428571428571,
+ "grad_norm": 0.042597733438014984,
+ "learning_rate": 0.0005259591947767032,
+ "loss": 2.262939929962158,
+ "step": 905
+ },
+ {
+ "epoch": 12.585365853658537,
+ "grad_norm": 0.04178392142057419,
+ "learning_rate": 0.0005257829876802464,
+ "loss": 2.286794662475586,
+ "step": 906
+ },
+ {
+ "epoch": 12.599303135888501,
+ "grad_norm": 0.04041772708296776,
+ "learning_rate": 0.0005256066010915603,
+ "loss": 2.276432991027832,
+ "step": 907
+ },
+ {
+ "epoch": 12.613240418118467,
+ "grad_norm": 0.04161509871482849,
+ "learning_rate": 0.0005254300351527566,
+ "loss": 2.2779972553253174,
+ "step": 908
+ },
+ {
+ "epoch": 12.627177700348431,
+ "grad_norm": 0.04206471145153046,
+ "learning_rate": 0.000525253290006091,
+ "loss": 2.282811164855957,
+ "step": 909
+ },
+ {
+ "epoch": 12.641114982578397,
+ "grad_norm": 0.04001585766673088,
+ "learning_rate": 0.0005250763657939641,
+ "loss": 2.29434871673584,
+ "step": 910
+ },
+ {
+ "epoch": 12.655052264808361,
+ "grad_norm": 0.041886743158102036,
+ "learning_rate": 0.0005248992626589203,
+ "loss": 2.278651237487793,
+ "step": 911
+ },
+ {
+ "epoch": 12.668989547038327,
+ "grad_norm": 0.0404231883585453,
+ "learning_rate": 0.0005247219807436489,
+ "loss": 2.2875375747680664,
+ "step": 912
+ },
+ {
+ "epoch": 12.682926829268293,
+ "grad_norm": 0.037211328744888306,
+ "learning_rate": 0.000524544520190982,
+ "loss": 2.294013023376465,
+ "step": 913
+ },
+ {
+ "epoch": 12.696864111498257,
+ "grad_norm": 0.03906721621751785,
+ "learning_rate": 0.000524366881143897,
+ "loss": 2.2899856567382812,
+ "step": 914
+ },
+ {
+ "epoch": 12.710801393728223,
+ "grad_norm": 0.04206228628754616,
+ "learning_rate": 0.0005241890637455141,
+ "loss": 2.282346248626709,
+ "step": 915
+ },
+ {
+ "epoch": 12.724738675958188,
+ "grad_norm": 0.03915264084935188,
+ "learning_rate": 0.0005240110681390978,
+ "loss": 2.2995424270629883,
+ "step": 916
+ },
+ {
+ "epoch": 12.738675958188153,
+ "grad_norm": 0.03919649496674538,
+ "learning_rate": 0.0005238328944680558,
+ "loss": 2.282196044921875,
+ "step": 917
+ },
+ {
+ "epoch": 12.752613240418118,
+ "grad_norm": 0.039669446647167206,
+ "learning_rate": 0.0005236545428759394,
+ "loss": 2.2758240699768066,
+ "step": 918
+ },
+ {
+ "epoch": 12.766550522648084,
+ "grad_norm": 0.04075023531913757,
+ "learning_rate": 0.0005234760135064434,
+ "loss": 2.278747320175171,
+ "step": 919
+ },
+ {
+ "epoch": 12.78048780487805,
+ "grad_norm": 0.03815247863531113,
+ "learning_rate": 0.0005232973065034055,
+ "loss": 2.2989745140075684,
+ "step": 920
+ },
+ {
+ "epoch": 12.794425087108014,
+ "grad_norm": 0.039577171206474304,
+ "learning_rate": 0.0005231184220108069,
+ "loss": 2.278186321258545,
+ "step": 921
+ },
+ {
+ "epoch": 12.80836236933798,
+ "grad_norm": 0.04091718792915344,
+ "learning_rate": 0.0005229393601727713,
+ "loss": 2.3046107292175293,
+ "step": 922
+ },
+ {
+ "epoch": 12.822299651567944,
+ "grad_norm": 0.04034758731722832,
+ "learning_rate": 0.000522760121133566,
+ "loss": 2.2959580421447754,
+ "step": 923
+ },
+ {
+ "epoch": 12.83623693379791,
+ "grad_norm": 0.041219793260097504,
+ "learning_rate": 0.0005225807050376004,
+ "loss": 2.289950370788574,
+ "step": 924
+ },
+ {
+ "epoch": 12.850174216027874,
+ "grad_norm": 0.042124949395656586,
+ "learning_rate": 0.0005224011120294269,
+ "loss": 2.2865607738494873,
+ "step": 925
+ },
+ {
+ "epoch": 12.86411149825784,
+ "grad_norm": 0.04259328171610832,
+ "learning_rate": 0.0005222213422537401,
+ "loss": 2.2798972129821777,
+ "step": 926
+ },
+ {
+ "epoch": 12.878048780487806,
+ "grad_norm": 0.0413426011800766,
+ "learning_rate": 0.0005220413958553777,
+ "loss": 2.2765798568725586,
+ "step": 927
+ },
+ {
+ "epoch": 12.89198606271777,
+ "grad_norm": 0.04276851564645767,
+ "learning_rate": 0.0005218612729793188,
+ "loss": 2.292202949523926,
+ "step": 928
+ },
+ {
+ "epoch": 12.905923344947736,
+ "grad_norm": 0.038679834455251694,
+ "learning_rate": 0.0005216809737706856,
+ "loss": 2.2641711235046387,
+ "step": 929
+ },
+ {
+ "epoch": 12.9198606271777,
+ "grad_norm": 0.04027910903096199,
+ "learning_rate": 0.0005215004983747415,
+ "loss": 2.297112464904785,
+ "step": 930
+ },
+ {
+ "epoch": 12.933797909407666,
+ "grad_norm": 0.037091903388500214,
+ "learning_rate": 0.0005213198469368925,
+ "loss": 2.2731027603149414,
+ "step": 931
+ },
+ {
+ "epoch": 12.94773519163763,
+ "grad_norm": 0.0381062775850296,
+ "learning_rate": 0.0005211390196026861,
+ "loss": 2.276169538497925,
+ "step": 932
+ },
+ {
+ "epoch": 12.961672473867596,
+ "grad_norm": 0.03912157565355301,
+ "learning_rate": 0.0005209580165178117,
+ "loss": 2.2855257987976074,
+ "step": 933
+ },
+ {
+ "epoch": 12.975609756097562,
+ "grad_norm": 0.03726741299033165,
+ "learning_rate": 0.0005207768378281003,
+ "loss": 2.285484790802002,
+ "step": 934
+ },
+ {
+ "epoch": 12.989547038327526,
+ "grad_norm": 0.03863261640071869,
+ "learning_rate": 0.0005205954836795241,
+ "loss": 2.2770638465881348,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.03204738348722458,
+ "learning_rate": 0.000520413954218197,
+ "loss": 1.7078638076782227,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 0.6196639537811279,
+ "eval_runtime": 36.3518,
+ "eval_samples_per_second": 67.177,
+ "eval_steps_per_second": 0.55,
+ "step": 936
+ },
+ {
+ "epoch": 13.013937282229966,
+ "grad_norm": 0.04385007545351982,
+ "learning_rate": 0.0005202322495903739,
+ "loss": 2.2220354080200195,
+ "step": 937
+ },
+ {
+ "epoch": 13.02787456445993,
+ "grad_norm": 0.05723090469837189,
+ "learning_rate": 0.0005200503699424509,
+ "loss": 2.223271369934082,
+ "step": 938
+ },
+ {
+ "epoch": 13.041811846689896,
+ "grad_norm": 0.06027279794216156,
+ "learning_rate": 0.0005198683154209654,
+ "loss": 2.2302541732788086,
+ "step": 939
+ },
+ {
+ "epoch": 13.05574912891986,
+ "grad_norm": 0.06342783570289612,
+ "learning_rate": 0.0005196860861725952,
+ "loss": 2.2211854457855225,
+ "step": 940
+ },
+ {
+ "epoch": 13.069686411149826,
+ "grad_norm": 0.06265735626220703,
+ "learning_rate": 0.0005195036823441592,
+ "loss": 2.222750425338745,
+ "step": 941
+ },
+ {
+ "epoch": 13.08362369337979,
+ "grad_norm": 0.0661185085773468,
+ "learning_rate": 0.0005193211040826169,
+ "loss": 2.230656862258911,
+ "step": 942
+ },
+ {
+ "epoch": 13.097560975609756,
+ "grad_norm": 0.06665238738059998,
+ "learning_rate": 0.0005191383515350681,
+ "loss": 2.220534563064575,
+ "step": 943
+ },
+ {
+ "epoch": 13.111498257839722,
+ "grad_norm": 0.06432333588600159,
+ "learning_rate": 0.0005189554248487536,
+ "loss": 2.2317209243774414,
+ "step": 944
+ },
+ {
+ "epoch": 13.125435540069686,
+ "grad_norm": 0.057658061385154724,
+ "learning_rate": 0.0005187723241710539,
+ "loss": 2.20767879486084,
+ "step": 945
+ },
+ {
+ "epoch": 13.139372822299652,
+ "grad_norm": 0.06340344250202179,
+ "learning_rate": 0.0005185890496494899,
+ "loss": 2.240220546722412,
+ "step": 946
+ },
+ {
+ "epoch": 13.153310104529616,
+ "grad_norm": 0.0649016872048378,
+ "learning_rate": 0.0005184056014317225,
+ "loss": 2.2353672981262207,
+ "step": 947
+ },
+ {
+ "epoch": 13.167247386759582,
+ "grad_norm": 0.05792258679866791,
+ "learning_rate": 0.0005182219796655528,
+ "loss": 2.2480835914611816,
+ "step": 948
+ },
+ {
+ "epoch": 13.181184668989546,
+ "grad_norm": 0.059482429176568985,
+ "learning_rate": 0.0005180381844989214,
+ "loss": 2.2432656288146973,
+ "step": 949
+ },
+ {
+ "epoch": 13.195121951219512,
+ "grad_norm": 0.05838126689195633,
+ "learning_rate": 0.0005178542160799088,
+ "loss": 2.237567901611328,
+ "step": 950
+ },
+ {
+ "epoch": 13.209059233449477,
+ "grad_norm": 0.05699385702610016,
+ "learning_rate": 0.0005176700745567353,
+ "loss": 2.243746280670166,
+ "step": 951
+ },
+ {
+ "epoch": 13.222996515679442,
+ "grad_norm": 0.05618268996477127,
+ "learning_rate": 0.0005174857600777599,
+ "loss": 2.2216076850891113,
+ "step": 952
+ },
+ {
+ "epoch": 13.236933797909408,
+ "grad_norm": 0.05328221991658211,
+ "learning_rate": 0.0005173012727914816,
+ "loss": 2.2413382530212402,
+ "step": 953
+ },
+ {
+ "epoch": 13.250871080139373,
+ "grad_norm": 0.05254136770963669,
+ "learning_rate": 0.0005171166128465389,
+ "loss": 2.2317683696746826,
+ "step": 954
+ },
+ {
+ "epoch": 13.264808362369338,
+ "grad_norm": 0.05144176259636879,
+ "learning_rate": 0.0005169317803917083,
+ "loss": 2.2372474670410156,
+ "step": 955
+ },
+ {
+ "epoch": 13.278745644599303,
+ "grad_norm": 0.05258858576416969,
+ "learning_rate": 0.0005167467755759065,
+ "loss": 2.2383830547332764,
+ "step": 956
+ },
+ {
+ "epoch": 13.292682926829269,
+ "grad_norm": 0.0550001785159111,
+ "learning_rate": 0.0005165615985481881,
+ "loss": 2.2456729412078857,
+ "step": 957
+ },
+ {
+ "epoch": 13.306620209059233,
+ "grad_norm": 0.050276629626750946,
+ "learning_rate": 0.0005163762494577474,
+ "loss": 2.262298345565796,
+ "step": 958
+ },
+ {
+ "epoch": 13.320557491289199,
+ "grad_norm": 0.05388111621141434,
+ "learning_rate": 0.0005161907284539165,
+ "loss": 2.250800609588623,
+ "step": 959
+ },
+ {
+ "epoch": 13.334494773519165,
+ "grad_norm": 0.05154367536306381,
+ "learning_rate": 0.0005160050356861663,
+ "loss": 2.2442479133605957,
+ "step": 960
+ },
+ {
+ "epoch": 13.348432055749129,
+ "grad_norm": 0.04562186077237129,
+ "learning_rate": 0.0005158191713041063,
+ "loss": 2.237484931945801,
+ "step": 961
+ },
+ {
+ "epoch": 13.362369337979095,
+ "grad_norm": 0.049510203301906586,
+ "learning_rate": 0.0005156331354574838,
+ "loss": 2.243274688720703,
+ "step": 962
+ },
+ {
+ "epoch": 13.376306620209059,
+ "grad_norm": 0.050305187702178955,
+ "learning_rate": 0.0005154469282961847,
+ "loss": 2.2452855110168457,
+ "step": 963
+ },
+ {
+ "epoch": 13.390243902439025,
+ "grad_norm": 0.049128562211990356,
+ "learning_rate": 0.0005152605499702328,
+ "loss": 2.2562594413757324,
+ "step": 964
+ },
+ {
+ "epoch": 13.404181184668989,
+ "grad_norm": 0.04948648437857628,
+ "learning_rate": 0.0005150740006297896,
+ "loss": 2.2388229370117188,
+ "step": 965
+ },
+ {
+ "epoch": 13.418118466898955,
+ "grad_norm": 0.053290050476789474,
+ "learning_rate": 0.0005148872804251548,
+ "loss": 2.2601318359375,
+ "step": 966
+ },
+ {
+ "epoch": 13.43205574912892,
+ "grad_norm": 0.04839639738202095,
+ "learning_rate": 0.000514700389506765,
+ "loss": 2.2303178310394287,
+ "step": 967
+ },
+ {
+ "epoch": 13.445993031358885,
+ "grad_norm": 0.04883972555398941,
+ "learning_rate": 0.0005145133280251954,
+ "loss": 2.246448040008545,
+ "step": 968
+ },
+ {
+ "epoch": 13.45993031358885,
+ "grad_norm": 0.04747871682047844,
+ "learning_rate": 0.0005143260961311578,
+ "loss": 2.259640693664551,
+ "step": 969
+ },
+ {
+ "epoch": 13.473867595818815,
+ "grad_norm": 0.046724554151296616,
+ "learning_rate": 0.0005141386939755014,
+ "loss": 2.2453014850616455,
+ "step": 970
+ },
+ {
+ "epoch": 13.487804878048781,
+ "grad_norm": 0.045614756643772125,
+ "learning_rate": 0.0005139511217092129,
+ "loss": 2.2351949214935303,
+ "step": 971
+ },
+ {
+ "epoch": 13.501742160278745,
+ "grad_norm": 0.04794120043516159,
+ "learning_rate": 0.000513763379483416,
+ "loss": 2.2457003593444824,
+ "step": 972
+ },
+ {
+ "epoch": 13.515679442508711,
+ "grad_norm": 0.05043521523475647,
+ "learning_rate": 0.0005135754674493709,
+ "loss": 2.258542060852051,
+ "step": 973
+ },
+ {
+ "epoch": 13.529616724738675,
+ "grad_norm": 0.046207673847675323,
+ "learning_rate": 0.0005133873857584753,
+ "loss": 2.2370145320892334,
+ "step": 974
+ },
+ {
+ "epoch": 13.543554006968641,
+ "grad_norm": 0.04402166232466698,
+ "learning_rate": 0.0005131991345622629,
+ "loss": 2.2408246994018555,
+ "step": 975
+ },
+ {
+ "epoch": 13.557491289198607,
+ "grad_norm": 0.04337441921234131,
+ "learning_rate": 0.0005130107140124046,
+ "loss": 2.2634308338165283,
+ "step": 976
+ },
+ {
+ "epoch": 13.571428571428571,
+ "grad_norm": 0.047244030982255936,
+ "learning_rate": 0.0005128221242607072,
+ "loss": 2.2571523189544678,
+ "step": 977
+ },
+ {
+ "epoch": 13.585365853658537,
+ "grad_norm": 0.04867873340845108,
+ "learning_rate": 0.0005126333654591141,
+ "loss": 2.248501777648926,
+ "step": 978
+ },
+ {
+ "epoch": 13.599303135888501,
+ "grad_norm": 0.048512108623981476,
+ "learning_rate": 0.0005124444377597049,
+ "loss": 2.2579822540283203,
+ "step": 979
+ },
+ {
+ "epoch": 13.613240418118467,
+ "grad_norm": 0.04615626111626625,
+ "learning_rate": 0.0005122553413146951,
+ "loss": 2.2446889877319336,
+ "step": 980
+ },
+ {
+ "epoch": 13.627177700348431,
+ "grad_norm": 0.044876713305711746,
+ "learning_rate": 0.0005120660762764366,
+ "loss": 2.2439627647399902,
+ "step": 981
+ },
+ {
+ "epoch": 13.641114982578397,
+ "grad_norm": 0.046021413058042526,
+ "learning_rate": 0.0005118766427974166,
+ "loss": 2.262195587158203,
+ "step": 982
+ },
+ {
+ "epoch": 13.655052264808361,
+ "grad_norm": 0.04974699020385742,
+ "learning_rate": 0.0005116870410302582,
+ "loss": 2.2783303260803223,
+ "step": 983
+ },
+ {
+ "epoch": 13.668989547038327,
+ "grad_norm": 0.044128481298685074,
+ "learning_rate": 0.0005114972711277202,
+ "loss": 2.2566471099853516,
+ "step": 984
+ },
+ {
+ "epoch": 13.682926829268293,
+ "grad_norm": 0.042579326778650284,
+ "learning_rate": 0.0005113073332426968,
+ "loss": 2.2596194744110107,
+ "step": 985
+ },
+ {
+ "epoch": 13.696864111498257,
+ "grad_norm": 0.044022977352142334,
+ "learning_rate": 0.0005111172275282174,
+ "loss": 2.270303726196289,
+ "step": 986
+ },
+ {
+ "epoch": 13.710801393728223,
+ "grad_norm": 0.04324937239289284,
+ "learning_rate": 0.0005109269541374469,
+ "loss": 2.2393593788146973,
+ "step": 987
+ },
+ {
+ "epoch": 13.724738675958188,
+ "grad_norm": 0.04146691411733627,
+ "learning_rate": 0.000510736513223685,
+ "loss": 2.2541770935058594,
+ "step": 988
+ },
+ {
+ "epoch": 13.738675958188153,
+ "grad_norm": 0.04146251827478409,
+ "learning_rate": 0.0005105459049403665,
+ "loss": 2.260561943054199,
+ "step": 989
+ },
+ {
+ "epoch": 13.752613240418118,
+ "grad_norm": 0.042454298585653305,
+ "learning_rate": 0.0005103551294410614,
+ "loss": 2.2623369693756104,
+ "step": 990
+ },
+ {
+ "epoch": 13.766550522648084,
+ "grad_norm": 0.04376888647675514,
+ "learning_rate": 0.0005101641868794736,
+ "loss": 2.2560131549835205,
+ "step": 991
+ },
+ {
+ "epoch": 13.78048780487805,
+ "grad_norm": 0.04379274323582649,
+ "learning_rate": 0.0005099730774094423,
+ "loss": 2.2503037452697754,
+ "step": 992
+ },
+ {
+ "epoch": 13.794425087108014,
+ "grad_norm": 0.04411308094859123,
+ "learning_rate": 0.0005097818011849408,
+ "loss": 2.244288921356201,
+ "step": 993
+ },
+ {
+ "epoch": 13.80836236933798,
+ "grad_norm": 0.04043621942400932,
+ "learning_rate": 0.0005095903583600772,
+ "loss": 2.244035243988037,
+ "step": 994
+ },
+ {
+ "epoch": 13.822299651567944,
+ "grad_norm": 0.04722495377063751,
+ "learning_rate": 0.0005093987490890933,
+ "loss": 2.269280433654785,
+ "step": 995
+ },
+ {
+ "epoch": 13.83623693379791,
+ "grad_norm": 0.049322471022605896,
+ "learning_rate": 0.0005092069735263651,
+ "loss": 2.249361515045166,
+ "step": 996
+ },
+ {
+ "epoch": 13.850174216027874,
+ "grad_norm": 0.04808150604367256,
+ "learning_rate": 0.000509015031826403,
+ "loss": 2.255721092224121,
+ "step": 997
+ },
+ {
+ "epoch": 13.86411149825784,
+ "grad_norm": 0.044958360493183136,
+ "learning_rate": 0.0005088229241438509,
+ "loss": 2.2578060626983643,
+ "step": 998
+ },
+ {
+ "epoch": 13.878048780487806,
+ "grad_norm": 0.04442335292696953,
+ "learning_rate": 0.0005086306506334864,
+ "loss": 2.2553436756134033,
+ "step": 999
+ },
+ {
+ "epoch": 13.89198606271777,
+ "grad_norm": 0.0487419068813324,
+ "learning_rate": 0.0005084382114502208,
+ "loss": 2.2526695728302,
+ "step": 1000
+ },
+ {
+ "epoch": 13.905923344947736,
+ "grad_norm": 0.047398749738931656,
+ "learning_rate": 0.0005082456067490988,
+ "loss": 2.259551763534546,
+ "step": 1001
+ },
+ {
+ "epoch": 13.9198606271777,
+ "grad_norm": 0.04429299384355545,
+ "learning_rate": 0.0005080528366852987,
+ "loss": 2.270155906677246,
+ "step": 1002
+ },
+ {
+ "epoch": 13.933797909407666,
+ "grad_norm": 0.045255087316036224,
+ "learning_rate": 0.0005078599014141318,
+ "loss": 2.2554101943969727,
+ "step": 1003
+ },
+ {
+ "epoch": 13.94773519163763,
+ "grad_norm": 0.04559073969721794,
+ "learning_rate": 0.0005076668010910425,
+ "loss": 2.2913122177124023,
+ "step": 1004
+ },
+ {
+ "epoch": 13.961672473867596,
+ "grad_norm": 0.04300642013549805,
+ "learning_rate": 0.0005074735358716083,
+ "loss": 2.241891860961914,
+ "step": 1005
+ },
+ {
+ "epoch": 13.975609756097562,
+ "grad_norm": 0.04328060522675514,
+ "learning_rate": 0.0005072801059115394,
+ "loss": 2.2659969329833984,
+ "step": 1006
+ },
+ {
+ "epoch": 13.989547038327526,
+ "grad_norm": 0.0425153523683548,
+ "learning_rate": 0.000507086511366679,
+ "loss": 2.266413450241089,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.03479035571217537,
+ "learning_rate": 0.0005068927523930027,
+ "loss": 1.6806477308273315,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 0.6199555993080139,
+ "eval_runtime": 42.3013,
+ "eval_samples_per_second": 57.729,
+ "eval_steps_per_second": 0.473,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013937282229966,
+ "grad_norm": 0.04759897664189339,
+ "learning_rate": 0.0005066988291466184,
+ "loss": 2.1937670707702637,
+ "step": 1009
+ },
+ {
+ "epoch": 14.02787456445993,
+ "grad_norm": 0.06862346827983856,
+ "learning_rate": 0.0005065047417837669,
+ "loss": 2.2141411304473877,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041811846689896,
+ "grad_norm": 0.07168037444353104,
+ "learning_rate": 0.0005063104904608206,
+ "loss": 2.198908805847168,
+ "step": 1011
+ },
+ {
+ "epoch": 14.05574912891986,
+ "grad_norm": 0.06659573316574097,
+ "learning_rate": 0.0005061160753342843,
+ "loss": 2.218000888824463,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069686411149826,
+ "grad_norm": 0.06285326927900314,
+ "learning_rate": 0.0005059214965607948,
+ "loss": 2.1995139122009277,
+ "step": 1013
+ },
+ {
+ "epoch": 14.08362369337979,
+ "grad_norm": 0.061170000582933426,
+ "learning_rate": 0.0005057267542971207,
+ "loss": 2.2026236057281494,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097560975609756,
+ "grad_norm": 0.06091141700744629,
+ "learning_rate": 0.0005055318487001624,
+ "loss": 2.2087340354919434,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111498257839722,
+ "grad_norm": 0.05953513830900192,
+ "learning_rate": 0.0005053367799269518,
+ "loss": 2.1985390186309814,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125435540069686,
+ "grad_norm": 0.06126454845070839,
+ "learning_rate": 0.0005051415481346522,
+ "loss": 2.176772117614746,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139372822299652,
+ "grad_norm": 0.0675380751490593,
+ "learning_rate": 0.0005049461534805585,
+ "loss": 2.2045438289642334,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153310104529616,
+ "grad_norm": 0.07128442823886871,
+ "learning_rate": 0.0005047505961220964,
+ "loss": 2.197822332382202,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167247386759582,
+ "grad_norm": 0.06793799996376038,
+ "learning_rate": 0.0005045548762168231,
+ "loss": 2.1957449913024902,
+ "step": 1020
+ },
+ {
+ "epoch": 14.181184668989546,
+ "grad_norm": 0.05969219282269478,
+ "learning_rate": 0.0005043589939224266,
+ "loss": 2.206712245941162,
+ "step": 1021
+ },
+ {
+ "epoch": 14.195121951219512,
+ "grad_norm": 0.061422668397426605,
+ "learning_rate": 0.0005041629493967257,
+ "loss": 2.199829578399658,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209059233449477,
+ "grad_norm": 0.06352506577968597,
+ "learning_rate": 0.0005039667427976697,
+ "loss": 2.208404064178467,
+ "step": 1023
+ },
+ {
+ "epoch": 14.222996515679442,
+ "grad_norm": 0.06349361687898636,
+ "learning_rate": 0.0005037703742833391,
+ "loss": 2.2045750617980957,
+ "step": 1024
+ },
+ {
+ "epoch": 14.236933797909408,
+ "grad_norm": 0.05827466771006584,
+ "learning_rate": 0.0005035738440119442,
+ "loss": 2.204209566116333,
+ "step": 1025
+ },
+ {
+ "epoch": 14.250871080139373,
+ "grad_norm": 0.055201269686222076,
+ "learning_rate": 0.0005033771521418261,
+ "loss": 2.210240364074707,
+ "step": 1026
+ },
+ {
+ "epoch": 14.264808362369338,
+ "grad_norm": 0.05749988183379173,
+ "learning_rate": 0.0005031802988314557,
+ "loss": 2.2068967819213867,
+ "step": 1027
+ },
+ {
+ "epoch": 14.278745644599303,
+ "grad_norm": 0.061330124735832214,
+ "learning_rate": 0.0005029832842394342,
+ "loss": 2.194495439529419,
+ "step": 1028
+ },
+ {
+ "epoch": 14.292682926829269,
+ "grad_norm": 0.05682205408811569,
+ "learning_rate": 0.0005027861085244927,
+ "loss": 2.1934378147125244,
+ "step": 1029
+ },
+ {
+ "epoch": 14.306620209059233,
+ "grad_norm": 0.054082732647657394,
+ "learning_rate": 0.0005025887718454922,
+ "loss": 2.1993770599365234,
+ "step": 1030
+ },
+ {
+ "epoch": 14.320557491289199,
+ "grad_norm": 0.05460484325885773,
+ "learning_rate": 0.0005023912743614232,
+ "loss": 2.2270498275756836,
+ "step": 1031
+ },
+ {
+ "epoch": 14.334494773519165,
+ "grad_norm": 0.05222999304533005,
+ "learning_rate": 0.0005021936162314058,
+ "loss": 2.1926186084747314,
+ "step": 1032
+ },
+ {
+ "epoch": 14.348432055749129,
+ "grad_norm": 0.04854818806052208,
+ "learning_rate": 0.0005019957976146898,
+ "loss": 2.209700584411621,
+ "step": 1033
+ },
+ {
+ "epoch": 14.362369337979095,
+ "grad_norm": 0.051000695675611496,
+ "learning_rate": 0.0005017978186706538,
+ "loss": 2.207035541534424,
+ "step": 1034
+ },
+ {
+ "epoch": 14.376306620209059,
+ "grad_norm": 0.05035366490483284,
+ "learning_rate": 0.0005015996795588062,
+ "loss": 2.227447032928467,
+ "step": 1035
+ },
+ {
+ "epoch": 14.390243902439025,
+ "grad_norm": 0.048412274569272995,
+ "learning_rate": 0.0005014013804387838,
+ "loss": 2.229435443878174,
+ "step": 1036
+ },
+ {
+ "epoch": 14.404181184668989,
+ "grad_norm": 0.04643386974930763,
+ "learning_rate": 0.0005012029214703529,
+ "loss": 2.212726593017578,
+ "step": 1037
+ },
+ {
+ "epoch": 14.418118466898955,
+ "grad_norm": 0.05282546207308769,
+ "learning_rate": 0.000501004302813408,
+ "loss": 2.2133121490478516,
+ "step": 1038
+ },
+ {
+ "epoch": 14.43205574912892,
+ "grad_norm": 0.04976656660437584,
+ "learning_rate": 0.0005008055246279727,
+ "loss": 2.222738265991211,
+ "step": 1039
+ },
+ {
+ "epoch": 14.445993031358885,
+ "grad_norm": 0.04937833175063133,
+ "learning_rate": 0.000500606587074199,
+ "loss": 2.2278215885162354,
+ "step": 1040
+ },
+ {
+ "epoch": 14.45993031358885,
+ "grad_norm": 0.05218666046857834,
+ "learning_rate": 0.0005004074903123674,
+ "loss": 2.2277817726135254,
+ "step": 1041
+ },
+ {
+ "epoch": 14.473867595818815,
+ "grad_norm": 0.05176419019699097,
+ "learning_rate": 0.0005002082345028864,
+ "loss": 2.231154203414917,
+ "step": 1042
+ },
+ {
+ "epoch": 14.487804878048781,
+ "grad_norm": 0.049131155014038086,
+ "learning_rate": 0.0005000088198062929,
+ "loss": 2.2321465015411377,
+ "step": 1043
+ },
+ {
+ "epoch": 14.501742160278745,
+ "grad_norm": 0.04980473965406418,
+ "learning_rate": 0.0004998092463832516,
+ "loss": 2.191263198852539,
+ "step": 1044
+ },
+ {
+ "epoch": 14.515679442508711,
+ "grad_norm": 0.048349328339099884,
+ "learning_rate": 0.0004996095143945554,
+ "loss": 2.2167882919311523,
+ "step": 1045
+ },
+ {
+ "epoch": 14.529616724738675,
+ "grad_norm": 0.04662036523222923,
+ "learning_rate": 0.0004994096240011246,
+ "loss": 2.213564395904541,
+ "step": 1046
+ },
+ {
+ "epoch": 14.543554006968641,
+ "grad_norm": 0.04783051833510399,
+ "learning_rate": 0.0004992095753640072,
+ "loss": 2.225752592086792,
+ "step": 1047
+ },
+ {
+ "epoch": 14.557491289198607,
+ "grad_norm": 0.05093488097190857,
+ "learning_rate": 0.0004990093686443791,
+ "loss": 2.2382640838623047,
+ "step": 1048
+ },
+ {
+ "epoch": 14.571428571428571,
+ "grad_norm": 0.05354484170675278,
+ "learning_rate": 0.000498809004003543,
+ "loss": 2.226134777069092,
+ "step": 1049
+ },
+ {
+ "epoch": 14.585365853658537,
+ "grad_norm": 0.04998788982629776,
+ "learning_rate": 0.0004986084816029291,
+ "loss": 2.2372093200683594,
+ "step": 1050
+ },
+ {
+ "epoch": 14.599303135888501,
+ "grad_norm": 0.04952755197882652,
+ "learning_rate": 0.0004984078016040946,
+ "loss": 2.232860565185547,
+ "step": 1051
+ },
+ {
+ "epoch": 14.613240418118467,
+ "grad_norm": 0.04750008508563042,
+ "learning_rate": 0.000498206964168724,
+ "loss": 2.223733901977539,
+ "step": 1052
+ },
+ {
+ "epoch": 14.627177700348431,
+ "grad_norm": 0.04636282101273537,
+ "learning_rate": 0.000498005969458628,
+ "loss": 2.227602958679199,
+ "step": 1053
+ },
+ {
+ "epoch": 14.641114982578397,
+ "grad_norm": 0.0465775765478611,
+ "learning_rate": 0.0004978048176357447,
+ "loss": 2.228397846221924,
+ "step": 1054
+ },
+ {
+ "epoch": 14.655052264808361,
+ "grad_norm": 0.04467611759901047,
+ "learning_rate": 0.0004976035088621385,
+ "loss": 2.2124547958374023,
+ "step": 1055
+ },
+ {
+ "epoch": 14.668989547038327,
+ "grad_norm": 0.04734990745782852,
+ "learning_rate": 0.0004974020433000003,
+ "loss": 2.2278337478637695,
+ "step": 1056
+ },
+ {
+ "epoch": 14.682926829268293,
+ "grad_norm": 0.048105571419000626,
+ "learning_rate": 0.000497200421111647,
+ "loss": 2.2506489753723145,
+ "step": 1057
+ },
+ {
+ "epoch": 14.696864111498257,
+ "grad_norm": 0.04658956825733185,
+ "learning_rate": 0.0004969986424595221,
+ "loss": 2.2176156044006348,
+ "step": 1058
+ },
+ {
+ "epoch": 14.710801393728223,
+ "grad_norm": 0.04707225784659386,
+ "learning_rate": 0.0004967967075061949,
+ "loss": 2.235560894012451,
+ "step": 1059
+ },
+ {
+ "epoch": 14.724738675958188,
+ "grad_norm": 0.04652702435851097,
+ "learning_rate": 0.0004965946164143609,
+ "loss": 2.2421717643737793,
+ "step": 1060
+ },
+ {
+ "epoch": 14.738675958188153,
+ "grad_norm": 0.045091014355421066,
+ "learning_rate": 0.0004963923693468413,
+ "loss": 2.233527183532715,
+ "step": 1061
+ },
+ {
+ "epoch": 14.752613240418118,
+ "grad_norm": 0.0467996746301651,
+ "learning_rate": 0.0004961899664665827,
+ "loss": 2.208993673324585,
+ "step": 1062
+ },
+ {
+ "epoch": 14.766550522648084,
+ "grad_norm": 0.04628554731607437,
+ "learning_rate": 0.0004959874079366576,
+ "loss": 2.230579376220703,
+ "step": 1063
+ },
+ {
+ "epoch": 14.78048780487805,
+ "grad_norm": 0.04599257931113243,
+ "learning_rate": 0.0004957846939202637,
+ "loss": 2.2343482971191406,
+ "step": 1064
+ },
+ {
+ "epoch": 14.794425087108014,
+ "grad_norm": 0.045816246420145035,
+ "learning_rate": 0.000495581824580724,
+ "loss": 2.242190361022949,
+ "step": 1065
+ },
+ {
+ "epoch": 14.80836236933798,
+ "grad_norm": 0.04708870127797127,
+ "learning_rate": 0.0004953788000814866,
+ "loss": 2.2468795776367188,
+ "step": 1066
+ },
+ {
+ "epoch": 14.822299651567944,
+ "grad_norm": 0.049605369567871094,
+ "learning_rate": 0.000495175620586125,
+ "loss": 2.21968412399292,
+ "step": 1067
+ },
+ {
+ "epoch": 14.83623693379791,
+ "grad_norm": 0.044056523591279984,
+ "learning_rate": 0.0004949722862583368,
+ "loss": 2.2316298484802246,
+ "step": 1068
+ },
+ {
+ "epoch": 14.850174216027874,
+ "grad_norm": 0.042938072234392166,
+ "learning_rate": 0.000494768797261945,
+ "loss": 2.252958059310913,
+ "step": 1069
+ },
+ {
+ "epoch": 14.86411149825784,
+ "grad_norm": 0.04511357098817825,
+ "learning_rate": 0.000494565153760897,
+ "loss": 2.2274842262268066,
+ "step": 1070
+ },
+ {
+ "epoch": 14.878048780487806,
+ "grad_norm": 0.04632679745554924,
+ "learning_rate": 0.0004943613559192648,
+ "loss": 2.2324767112731934,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89198606271777,
+ "grad_norm": 0.045614346861839294,
+ "learning_rate": 0.0004941574039012444,
+ "loss": 2.2428746223449707,
+ "step": 1072
+ },
+ {
+ "epoch": 14.905923344947736,
+ "grad_norm": 0.04592366889119148,
+ "learning_rate": 0.0004939532978711566,
+ "loss": 2.2330827713012695,
+ "step": 1073
+ },
+ {
+ "epoch": 14.9198606271777,
+ "grad_norm": 0.04424305632710457,
+ "learning_rate": 0.0004937490379934456,
+ "loss": 2.2334916591644287,
+ "step": 1074
+ },
+ {
+ "epoch": 14.933797909407666,
+ "grad_norm": 0.0463118739426136,
+ "learning_rate": 0.00049354462443268,
+ "loss": 2.2362606525421143,
+ "step": 1075
+ },
+ {
+ "epoch": 14.94773519163763,
+ "grad_norm": 0.04408831149339676,
+ "learning_rate": 0.0004933400573535521,
+ "loss": 2.2407727241516113,
+ "step": 1076
+ },
+ {
+ "epoch": 14.961672473867596,
+ "grad_norm": 0.04300303012132645,
+ "learning_rate": 0.000493135336920878,
+ "loss": 2.222532272338867,
+ "step": 1077
+ },
+ {
+ "epoch": 14.975609756097562,
+ "grad_norm": 0.04180522635579109,
+ "learning_rate": 0.0004929304632995973,
+ "loss": 2.242893695831299,
+ "step": 1078
+ },
+ {
+ "epoch": 14.989547038327526,
+ "grad_norm": 0.043276574462652206,
+ "learning_rate": 0.0004927254366547727,
+ "loss": 2.2241783142089844,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.036254994571208954,
+ "learning_rate": 0.0004925202571515908,
+ "loss": 1.6649963855743408,
+ "step": 1080
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 3600,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 50,
+ "save_steps": 500,
+ "stateful_callbacks": {
+ "TrainerControl": {
+ "args": {
+ "should_epoch_stop": false,
+ "should_evaluate": true,
+ "should_log": false,
+ "should_save": false,
+ "should_training_stop": false
+ },
+ "attributes": {}
+ }
+ },
+ "total_flos": 4.6164840246411264e+17,
+ "train_batch_size": 64,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/base-ssl/checkpoint-1080/training_args.bin b/runs/base-ssl/checkpoint-1080/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..cbb50e43950730a04421678098579c835c9d518d
--- /dev/null
+++ b/runs/base-ssl/checkpoint-1080/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7572b8029663dc4d810f9d514c80dc9b976de220cbe72e5abd832ec6ec2ef18b
+size 5265
diff --git a/runs/base-ssl/checkpoint-1440/chat_template.jinja b/runs/base-ssl/checkpoint-1440/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/base-ssl/checkpoint-1440/chat_template.jinja
@@ -0,0 +1,85 @@
+{%- if tools %}
+ {{- '<|im_start|>system\n' }}
+ {%- if messages[0].role == 'system' %}
+ {{- messages[0].content + '\n\n' }}
+ {%- endif %}
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }}
+ {%- for tool in tools %}
+ {{- "\n" }}
+ {{- tool | tojson }}
+ {%- endfor %}
+ {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }}
+{%- else %}
+ {%- if messages[0].role == 'system' %}
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
+ {%- endif %}
+{%- endif %}
+{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
+{%- for message in messages[::-1] %}
+ {%- set index = (messages|length - 1) - loop.index0 %}
+ {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %}
+ {%- set ns.multi_step_tool = false %}
+ {%- set ns.last_query_index = index %}
+ {%- endif %}
+{%- endfor %}
+{%- for message in messages %}
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
+ {%- elif message.role == "assistant" %}
+ {%- set content = message.content %}
+ {%- set reasoning_content = '' %}
+ {%- if message.reasoning_content is defined and message.reasoning_content is not none %}
+ {%- set reasoning_content = message.reasoning_content %}
+ {%- else %}
+ {%- if '' in message.content %}
+ {%- set content = message.content.split('')[-1].lstrip('\n') %}
+ {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %}
+ {%- endif %}
+ {%- endif %}
+ {%- if loop.index0 > ns.last_query_index %}
+ {%- if loop.last or (not loop.last and reasoning_content) %}
+ {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- if message.tool_calls %}
+ {%- for tool_call in message.tool_calls %}
+ {%- if (loop.first and content) or (not loop.first) %}
+ {{- '\n' }}
+ {%- endif %}
+ {%- if tool_call.function %}
+ {%- set tool_call = tool_call.function %}
+ {%- endif %}
+ {{- '\n{"name": "' }}
+ {{- tool_call.name }}
+ {{- '", "arguments": ' }}
+ {%- if tool_call.arguments is string %}
+ {{- tool_call.arguments }}
+ {%- else %}
+ {{- tool_call.arguments | tojson }}
+ {%- endif %}
+ {{- '}\n' }}
+ {%- endfor %}
+ {%- endif %}
+ {{- '<|im_end|>\n' }}
+ {%- elif message.role == "tool" %}
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
+ {{- '<|im_start|>user' }}
+ {%- endif %}
+ {{- '\n\n' }}
+ {{- message.content }}
+ {{- '\n' }}
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
+ {{- '<|im_end|>\n' }}
+ {%- endif %}
+ {%- endif %}
+{%- endfor %}
+{%- if add_generation_prompt %}
+ {{- '<|im_start|>assistant\n' }}
+ {%- if enable_thinking is defined and enable_thinking is false %}
+ {{- '\n\n\n\n' }}
+ {%- endif %}
+{%- endif %}
\ No newline at end of file
diff --git a/runs/base-ssl/checkpoint-1440/config.json b/runs/base-ssl/checkpoint-1440/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/base-ssl/checkpoint-1440/config.json
@@ -0,0 +1,32 @@
+{
+ "architectures": [
+ "LlamaForCausalLM"
+ ],
+ "attention_bias": false,
+ "attention_dropout": 0.0,
+ "bos_token_id": null,
+ "dtype": "float32",
+ "eos_token_id": 151645,
+ "head_dim": 128,
+ "hidden_act": "silu",
+ "hidden_size": 512,
+ "initializer_range": 0.02,
+ "intermediate_size": 1536,
+ "max_position_embeddings": 2048,
+ "mlp_bias": false,
+ "model_type": "llama",
+ "num_attention_heads": 4,
+ "num_hidden_layers": 20,
+ "num_key_value_heads": 4,
+ "pad_token_id": 151645,
+ "pretraining_tp": 1,
+ "rms_norm_eps": 1e-06,
+ "rope_parameters": {
+ "rope_theta": 10000.0,
+ "rope_type": "default"
+ },
+ "tie_word_embeddings": true,
+ "transformers_version": "5.5.0",
+ "use_cache": false,
+ "vocab_size": 151671
+}
diff --git a/runs/base-ssl/checkpoint-1440/generation_config.json b/runs/base-ssl/checkpoint-1440/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/base-ssl/checkpoint-1440/generation_config.json
@@ -0,0 +1,11 @@
+{
+ "_from_model_config": true,
+ "eos_token_id": [
+ 151645
+ ],
+ "output_attentions": false,
+ "output_hidden_states": false,
+ "pad_token_id": 151645,
+ "transformers_version": "5.5.0",
+ "use_cache": true
+}
diff --git a/runs/base-ssl/checkpoint-1440/model.safetensors b/runs/base-ssl/checkpoint-1440/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..311460c9f40f7c335af40dcab3ac395c71324c26
--- /dev/null
+++ b/runs/base-ssl/checkpoint-1440/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:92b55f11865e3f7e50d6832a6b4ff05fc4438e043cf0fe27102fd8f0b060c335
+size 583356232
diff --git a/runs/base-ssl/checkpoint-1440/optimizer.pt b/runs/base-ssl/checkpoint-1440/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..5e196fcc856f3cb498d2800666dc9651eab90e3a
--- /dev/null
+++ b/runs/base-ssl/checkpoint-1440/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7985809715dce4be7260ffe483660a444b7b5dee8ebe8c2f5fdb3e8a70a1368d
+size 1166825803
diff --git a/runs/base-ssl/checkpoint-1440/rng_state_0.pth b/runs/base-ssl/checkpoint-1440/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..3c396253e5ad58aa3254e1cb9364198815e3ba61
--- /dev/null
+++ b/runs/base-ssl/checkpoint-1440/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ad41999a3021e51cc92b222472cf4756a254132cabf58c4c2e1ee206c7366885
+size 14917
diff --git a/runs/base-ssl/checkpoint-1440/rng_state_1.pth b/runs/base-ssl/checkpoint-1440/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..08b5f24cb1ec06dc192e471442f86bfe5e398030
--- /dev/null
+++ b/runs/base-ssl/checkpoint-1440/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:29848a162fabe62f2066ebb397d9dc38254fb7b578fd1c8908975df46738482d
+size 14917
diff --git a/runs/base-ssl/checkpoint-1440/scheduler.pt b/runs/base-ssl/checkpoint-1440/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..e00c7bc69a3fbefc469c85cfede8a8a9403ecdc8
--- /dev/null
+++ b/runs/base-ssl/checkpoint-1440/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5ca62ced3e9ed490d18d005ea4ac3ea68e1b051ea3ef0feded5dd8875ffb40a4
+size 1465
diff --git a/runs/base-ssl/checkpoint-1440/tokenizer.json b/runs/base-ssl/checkpoint-1440/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/base-ssl/checkpoint-1440/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:59b6776030505d5b441d0727cce137047df748ab15db6ba3a1bac93c123742fb
+size 11424079
diff --git a/runs/base-ssl/checkpoint-1440/tokenizer_config.json b/runs/base-ssl/checkpoint-1440/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/base-ssl/checkpoint-1440/tokenizer_config.json
@@ -0,0 +1,18 @@
+{
+ "add_prefix_space": false,
+ "backend": "tokenizers",
+ "bos_token": null,
+ "clean_up_tokenization_spaces": false,
+ "eos_token": "<|im_end|>",
+ "errors": "replace",
+ "extra_special_tokens": [
+ "<|l2r_pred|>",
+ "<|r2l_pred|>"
+ ],
+ "is_local": false,
+ "model_max_length": 131072,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/base-ssl/checkpoint-1440/trainer_state.json b/runs/base-ssl/checkpoint-1440/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..2bc831c352935b13216169cbcbfbd94207622774
--- /dev/null
+++ b/runs/base-ssl/checkpoint-1440/trainer_state.json
@@ -0,0 +1,10266 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 20.0,
+ "eval_steps": 500,
+ "global_step": 1440,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013937282229965157,
+ "grad_norm": 0.2712002694606781,
+ "learning_rate": 0.0,
+ "loss": 4.000947952270508,
+ "step": 1
+ },
+ {
+ "epoch": 0.027874564459930314,
+ "grad_norm": 0.2709888219833374,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 4.000800132751465,
+ "step": 2
+ },
+ {
+ "epoch": 0.041811846689895474,
+ "grad_norm": 0.2721220850944519,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 3.982931613922119,
+ "step": 3
+ },
+ {
+ "epoch": 0.05574912891986063,
+ "grad_norm": 0.24822379648685455,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 3.948713779449463,
+ "step": 4
+ },
+ {
+ "epoch": 0.06968641114982578,
+ "grad_norm": 0.2103811800479889,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 3.908690929412842,
+ "step": 5
+ },
+ {
+ "epoch": 0.08362369337979095,
+ "grad_norm": 0.18375654518604279,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 3.8660929203033447,
+ "step": 6
+ },
+ {
+ "epoch": 0.0975609756097561,
+ "grad_norm": 0.1471690535545349,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 3.82308030128479,
+ "step": 7
+ },
+ {
+ "epoch": 0.11149825783972125,
+ "grad_norm": 0.11132320016622543,
+ "learning_rate": 4.2e-05,
+ "loss": 3.790834426879883,
+ "step": 8
+ },
+ {
+ "epoch": 0.1254355400696864,
+ "grad_norm": 0.08796700090169907,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 3.7589545249938965,
+ "step": 9
+ },
+ {
+ "epoch": 0.13937282229965156,
+ "grad_norm": 0.07089080661535263,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 3.7346723079681396,
+ "step": 10
+ },
+ {
+ "epoch": 0.15331010452961671,
+ "grad_norm": 0.056723613291978836,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 3.7159838676452637,
+ "step": 11
+ },
+ {
+ "epoch": 0.1672473867595819,
+ "grad_norm": 0.04544799029827118,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 3.701421022415161,
+ "step": 12
+ },
+ {
+ "epoch": 0.18118466898954705,
+ "grad_norm": 0.03551485016942024,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 3.691774845123291,
+ "step": 13
+ },
+ {
+ "epoch": 0.1951219512195122,
+ "grad_norm": 0.028209710493683815,
+ "learning_rate": 7.8e-05,
+ "loss": 3.6860086917877197,
+ "step": 14
+ },
+ {
+ "epoch": 0.20905923344947736,
+ "grad_norm": 0.024290181696414948,
+ "learning_rate": 8.4e-05,
+ "loss": 3.6806883811950684,
+ "step": 15
+ },
+ {
+ "epoch": 0.2229965156794425,
+ "grad_norm": 0.022015230730175972,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 3.677751064300537,
+ "step": 16
+ },
+ {
+ "epoch": 0.23693379790940766,
+ "grad_norm": 0.01960836350917816,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 3.6738266944885254,
+ "step": 17
+ },
+ {
+ "epoch": 0.2508710801393728,
+ "grad_norm": 0.017675744369626045,
+ "learning_rate": 0.000102,
+ "loss": 3.6739063262939453,
+ "step": 18
+ },
+ {
+ "epoch": 0.26480836236933797,
+ "grad_norm": 0.01539881993085146,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 3.671247720718384,
+ "step": 19
+ },
+ {
+ "epoch": 0.2787456445993031,
+ "grad_norm": 0.013906505890190601,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 3.66833233833313,
+ "step": 20
+ },
+ {
+ "epoch": 0.2926829268292683,
+ "grad_norm": 0.01149708591401577,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 3.6706337928771973,
+ "step": 21
+ },
+ {
+ "epoch": 0.30662020905923343,
+ "grad_norm": 0.010512279346585274,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 3.667168140411377,
+ "step": 22
+ },
+ {
+ "epoch": 0.3205574912891986,
+ "grad_norm": 0.00897525716573,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 3.6630516052246094,
+ "step": 23
+ },
+ {
+ "epoch": 0.3344947735191638,
+ "grad_norm": 0.008081364445388317,
+ "learning_rate": 0.000138,
+ "loss": 3.6629021167755127,
+ "step": 24
+ },
+ {
+ "epoch": 0.34843205574912894,
+ "grad_norm": 0.0076500303111970425,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 3.66168212890625,
+ "step": 25
+ },
+ {
+ "epoch": 0.3623693379790941,
+ "grad_norm": 0.007083008531481028,
+ "learning_rate": 0.00015,
+ "loss": 3.6564559936523438,
+ "step": 26
+ },
+ {
+ "epoch": 0.37630662020905925,
+ "grad_norm": 0.006654089782387018,
+ "learning_rate": 0.000156,
+ "loss": 3.6590094566345215,
+ "step": 27
+ },
+ {
+ "epoch": 0.3902439024390244,
+ "grad_norm": 0.0073669785633683205,
+ "learning_rate": 0.000162,
+ "loss": 3.651914119720459,
+ "step": 28
+ },
+ {
+ "epoch": 0.40418118466898956,
+ "grad_norm": 0.007247959729284048,
+ "learning_rate": 0.000168,
+ "loss": 3.6557557582855225,
+ "step": 29
+ },
+ {
+ "epoch": 0.4181184668989547,
+ "grad_norm": 0.007229349110275507,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 3.651794910430908,
+ "step": 30
+ },
+ {
+ "epoch": 0.43205574912891986,
+ "grad_norm": 0.008839861489832401,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 3.653074264526367,
+ "step": 31
+ },
+ {
+ "epoch": 0.445993031358885,
+ "grad_norm": 0.009280834347009659,
+ "learning_rate": 0.000186,
+ "loss": 3.6503708362579346,
+ "step": 32
+ },
+ {
+ "epoch": 0.45993031358885017,
+ "grad_norm": 0.008585072122514248,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 3.650331497192383,
+ "step": 33
+ },
+ {
+ "epoch": 0.4738675958188153,
+ "grad_norm": 0.01164434663951397,
+ "learning_rate": 0.000198,
+ "loss": 3.6462929248809814,
+ "step": 34
+ },
+ {
+ "epoch": 0.4878048780487805,
+ "grad_norm": 0.012668018229305744,
+ "learning_rate": 0.000204,
+ "loss": 3.6516757011413574,
+ "step": 35
+ },
+ {
+ "epoch": 0.5017421602787456,
+ "grad_norm": 0.01610603742301464,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 3.647498607635498,
+ "step": 36
+ },
+ {
+ "epoch": 0.5156794425087108,
+ "grad_norm": 0.018993742763996124,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 3.642869472503662,
+ "step": 37
+ },
+ {
+ "epoch": 0.5296167247386759,
+ "grad_norm": 0.020697375759482384,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 3.639193058013916,
+ "step": 38
+ },
+ {
+ "epoch": 0.5435540069686411,
+ "grad_norm": 0.021636122837662697,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 3.630560874938965,
+ "step": 39
+ },
+ {
+ "epoch": 0.5574912891986062,
+ "grad_norm": 0.01893668621778488,
+ "learning_rate": 0.000234,
+ "loss": 3.6265769004821777,
+ "step": 40
+ },
+ {
+ "epoch": 0.5714285714285714,
+ "grad_norm": 0.025133362039923668,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 3.6185407638549805,
+ "step": 41
+ },
+ {
+ "epoch": 0.5853658536585366,
+ "grad_norm": 0.016397792845964432,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 3.609161853790283,
+ "step": 42
+ },
+ {
+ "epoch": 0.5993031358885017,
+ "grad_norm": 0.02059962786734104,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 3.5987398624420166,
+ "step": 43
+ },
+ {
+ "epoch": 0.6132404181184669,
+ "grad_norm": 0.026733839884400368,
+ "learning_rate": 0.000258,
+ "loss": 3.601898193359375,
+ "step": 44
+ },
+ {
+ "epoch": 0.627177700348432,
+ "grad_norm": 0.04592137038707733,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 3.597785472869873,
+ "step": 45
+ },
+ {
+ "epoch": 0.6411149825783972,
+ "grad_norm": 0.14618715643882751,
+ "learning_rate": 0.00027,
+ "loss": 3.597787857055664,
+ "step": 46
+ },
+ {
+ "epoch": 0.6550522648083623,
+ "grad_norm": 0.1228327602148056,
+ "learning_rate": 0.000276,
+ "loss": 3.598362922668457,
+ "step": 47
+ },
+ {
+ "epoch": 0.6689895470383276,
+ "grad_norm": 0.0651344507932663,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 3.5868940353393555,
+ "step": 48
+ },
+ {
+ "epoch": 0.6829268292682927,
+ "grad_norm": 0.030712513253092766,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 3.5800981521606445,
+ "step": 49
+ },
+ {
+ "epoch": 0.6968641114982579,
+ "grad_norm": 0.07069414854049683,
+ "learning_rate": 0.000294,
+ "loss": 3.590576171875,
+ "step": 50
+ },
+ {
+ "epoch": 0.710801393728223,
+ "grad_norm": 0.026333393529057503,
+ "learning_rate": 0.0003,
+ "loss": 3.5740621089935303,
+ "step": 51
+ },
+ {
+ "epoch": 0.7247386759581882,
+ "grad_norm": 0.050806671380996704,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 3.577582836151123,
+ "step": 52
+ },
+ {
+ "epoch": 0.7386759581881533,
+ "grad_norm": 0.04820532724261284,
+ "learning_rate": 0.000312,
+ "loss": 3.5686888694763184,
+ "step": 53
+ },
+ {
+ "epoch": 0.7526132404181185,
+ "grad_norm": 0.03834737837314606,
+ "learning_rate": 0.000318,
+ "loss": 3.571916341781616,
+ "step": 54
+ },
+ {
+ "epoch": 0.7665505226480837,
+ "grad_norm": 0.0663016214966774,
+ "learning_rate": 0.000324,
+ "loss": 3.563366413116455,
+ "step": 55
+ },
+ {
+ "epoch": 0.7804878048780488,
+ "grad_norm": 0.03111632913351059,
+ "learning_rate": 0.00033,
+ "loss": 3.555037021636963,
+ "step": 56
+ },
+ {
+ "epoch": 0.794425087108014,
+ "grad_norm": 0.06139425188302994,
+ "learning_rate": 0.000336,
+ "loss": 3.555377244949341,
+ "step": 57
+ },
+ {
+ "epoch": 0.8083623693379791,
+ "grad_norm": 0.02561746910214424,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 3.5368266105651855,
+ "step": 58
+ },
+ {
+ "epoch": 0.8222996515679443,
+ "grad_norm": 0.06502962112426758,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 3.5318264961242676,
+ "step": 59
+ },
+ {
+ "epoch": 0.8362369337979094,
+ "grad_norm": 0.06968390196561813,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 3.5210607051849365,
+ "step": 60
+ },
+ {
+ "epoch": 0.8501742160278746,
+ "grad_norm": 0.02670745924115181,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 3.5037078857421875,
+ "step": 61
+ },
+ {
+ "epoch": 0.8641114982578397,
+ "grad_norm": 0.07075569778680801,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 3.506938934326172,
+ "step": 62
+ },
+ {
+ "epoch": 0.8780487804878049,
+ "grad_norm": 0.061632659286260605,
+ "learning_rate": 0.000372,
+ "loss": 3.4960665702819824,
+ "step": 63
+ },
+ {
+ "epoch": 0.89198606271777,
+ "grad_norm": 0.10994791984558105,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 3.4926395416259766,
+ "step": 64
+ },
+ {
+ "epoch": 0.9059233449477352,
+ "grad_norm": 0.21027322113513947,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 3.502258777618408,
+ "step": 65
+ },
+ {
+ "epoch": 0.9198606271777003,
+ "grad_norm": 0.1937343329191208,
+ "learning_rate": 0.00039,
+ "loss": 3.5118448734283447,
+ "step": 66
+ },
+ {
+ "epoch": 0.9337979094076655,
+ "grad_norm": 0.07891395688056946,
+ "learning_rate": 0.000396,
+ "loss": 3.487575054168701,
+ "step": 67
+ },
+ {
+ "epoch": 0.9477351916376306,
+ "grad_norm": 0.12915678322315216,
+ "learning_rate": 0.000402,
+ "loss": 3.4890120029449463,
+ "step": 68
+ },
+ {
+ "epoch": 0.9616724738675958,
+ "grad_norm": 0.08530207723379135,
+ "learning_rate": 0.000408,
+ "loss": 3.4755735397338867,
+ "step": 69
+ },
+ {
+ "epoch": 0.975609756097561,
+ "grad_norm": 0.09704860299825668,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 3.4669318199157715,
+ "step": 70
+ },
+ {
+ "epoch": 0.9895470383275261,
+ "grad_norm": 0.07270640879869461,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 3.460634469985962,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.03984597697854042,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 2.590245485305786,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 0.8616236448287964,
+ "eval_runtime": 36.0347,
+ "eval_samples_per_second": 67.768,
+ "eval_steps_per_second": 0.555,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139372822299653,
+ "grad_norm": 0.058285508304834366,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 3.441636562347412,
+ "step": 73
+ },
+ {
+ "epoch": 1.0278745644599303,
+ "grad_norm": 0.07173695415258408,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 3.4476027488708496,
+ "step": 74
+ },
+ {
+ "epoch": 1.0418118466898956,
+ "grad_norm": 0.0367155559360981,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 3.4290428161621094,
+ "step": 75
+ },
+ {
+ "epoch": 1.0557491289198606,
+ "grad_norm": 0.05761358141899109,
+ "learning_rate": 0.00045,
+ "loss": 3.430612564086914,
+ "step": 76
+ },
+ {
+ "epoch": 1.0696864111498259,
+ "grad_norm": 0.06290662288665771,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 3.4222841262817383,
+ "step": 77
+ },
+ {
+ "epoch": 1.083623693379791,
+ "grad_norm": 0.09705018997192383,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 3.4233384132385254,
+ "step": 78
+ },
+ {
+ "epoch": 1.0975609756097562,
+ "grad_norm": 0.09656445682048798,
+ "learning_rate": 0.000468,
+ "loss": 3.422335624694824,
+ "step": 79
+ },
+ {
+ "epoch": 1.1114982578397212,
+ "grad_norm": 0.07884909957647324,
+ "learning_rate": 0.000474,
+ "loss": 3.4133338928222656,
+ "step": 80
+ },
+ {
+ "epoch": 1.1254355400696865,
+ "grad_norm": 0.06679042428731918,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 3.4053287506103516,
+ "step": 81
+ },
+ {
+ "epoch": 1.1393728222996515,
+ "grad_norm": 0.02522652968764305,
+ "learning_rate": 0.000486,
+ "loss": 3.392838478088379,
+ "step": 82
+ },
+ {
+ "epoch": 1.1533101045296168,
+ "grad_norm": 0.09408055245876312,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 3.3952789306640625,
+ "step": 83
+ },
+ {
+ "epoch": 1.1672473867595818,
+ "grad_norm": 0.08980021625757217,
+ "learning_rate": 0.000498,
+ "loss": 3.385244846343994,
+ "step": 84
+ },
+ {
+ "epoch": 1.181184668989547,
+ "grad_norm": 0.08343124389648438,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 3.382103443145752,
+ "step": 85
+ },
+ {
+ "epoch": 1.1951219512195121,
+ "grad_norm": 0.03343554213643074,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 3.374354362487793,
+ "step": 86
+ },
+ {
+ "epoch": 1.2090592334494774,
+ "grad_norm": 0.0852339118719101,
+ "learning_rate": 0.000516,
+ "loss": 3.3802456855773926,
+ "step": 87
+ },
+ {
+ "epoch": 1.2229965156794425,
+ "grad_norm": 0.09159538149833679,
+ "learning_rate": 0.000522,
+ "loss": 3.37576961517334,
+ "step": 88
+ },
+ {
+ "epoch": 1.2369337979094077,
+ "grad_norm": 0.04313444346189499,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 3.360690116882324,
+ "step": 89
+ },
+ {
+ "epoch": 1.2508710801393728,
+ "grad_norm": 0.075523741543293,
+ "learning_rate": 0.000534,
+ "loss": 3.3599460124969482,
+ "step": 90
+ },
+ {
+ "epoch": 1.264808362369338,
+ "grad_norm": 0.08516373485326767,
+ "learning_rate": 0.00054,
+ "loss": 3.3572096824645996,
+ "step": 91
+ },
+ {
+ "epoch": 1.278745644599303,
+ "grad_norm": 0.09553111344575882,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 3.3542261123657227,
+ "step": 92
+ },
+ {
+ "epoch": 1.2926829268292683,
+ "grad_norm": 0.05978025496006012,
+ "learning_rate": 0.000552,
+ "loss": 3.3440048694610596,
+ "step": 93
+ },
+ {
+ "epoch": 1.3066202090592334,
+ "grad_norm": 0.10827190428972244,
+ "learning_rate": 0.000558,
+ "loss": 3.3391332626342773,
+ "step": 94
+ },
+ {
+ "epoch": 1.3205574912891986,
+ "grad_norm": 0.1181376576423645,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 3.3493118286132812,
+ "step": 95
+ },
+ {
+ "epoch": 1.3344947735191637,
+ "grad_norm": 0.08178193867206573,
+ "learning_rate": 0.00057,
+ "loss": 3.3445382118225098,
+ "step": 96
+ },
+ {
+ "epoch": 1.348432055749129,
+ "grad_norm": 0.08283700793981552,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 3.3343238830566406,
+ "step": 97
+ },
+ {
+ "epoch": 1.3623693379790942,
+ "grad_norm": 0.11837095767259598,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 3.3336968421936035,
+ "step": 98
+ },
+ {
+ "epoch": 1.3763066202090593,
+ "grad_norm": 0.08230706304311752,
+ "learning_rate": 0.000588,
+ "loss": 3.3294646739959717,
+ "step": 99
+ },
+ {
+ "epoch": 1.3902439024390243,
+ "grad_norm": 0.09961626678705215,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 3.3242952823638916,
+ "step": 100
+ },
+ {
+ "epoch": 1.4041811846689896,
+ "grad_norm": 0.11294732987880707,
+ "learning_rate": 0.0006,
+ "loss": 3.330348491668701,
+ "step": 101
+ },
+ {
+ "epoch": 1.4181184668989548,
+ "grad_norm": 0.11236022412776947,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 3.322606086730957,
+ "step": 102
+ },
+ {
+ "epoch": 1.4320557491289199,
+ "grad_norm": 0.13230572640895844,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 3.3202784061431885,
+ "step": 103
+ },
+ {
+ "epoch": 1.445993031358885,
+ "grad_norm": 0.0783172994852066,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 3.3082056045532227,
+ "step": 104
+ },
+ {
+ "epoch": 1.4599303135888502,
+ "grad_norm": 0.07376513630151749,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 3.3011245727539062,
+ "step": 105
+ },
+ {
+ "epoch": 1.4738675958188154,
+ "grad_norm": 0.11039287596940994,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 3.2987873554229736,
+ "step": 106
+ },
+ {
+ "epoch": 1.4878048780487805,
+ "grad_norm": 0.0667329952120781,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 3.293043851852417,
+ "step": 107
+ },
+ {
+ "epoch": 1.5017421602787455,
+ "grad_norm": 0.0750635489821434,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 3.2865707874298096,
+ "step": 108
+ },
+ {
+ "epoch": 1.5156794425087108,
+ "grad_norm": 0.055155977606773376,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 3.278069496154785,
+ "step": 109
+ },
+ {
+ "epoch": 1.529616724738676,
+ "grad_norm": 0.07016722112894058,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 3.2837281227111816,
+ "step": 110
+ },
+ {
+ "epoch": 1.543554006968641,
+ "grad_norm": 0.09884901344776154,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 3.2782273292541504,
+ "step": 111
+ },
+ {
+ "epoch": 1.5574912891986061,
+ "grad_norm": 0.09402419626712799,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 3.2757701873779297,
+ "step": 112
+ },
+ {
+ "epoch": 1.5714285714285714,
+ "grad_norm": 0.06898307800292969,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 3.2636804580688477,
+ "step": 113
+ },
+ {
+ "epoch": 1.5853658536585367,
+ "grad_norm": 0.08733519911766052,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 3.2676005363464355,
+ "step": 114
+ },
+ {
+ "epoch": 1.5993031358885017,
+ "grad_norm": 0.05769918113946915,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 3.2505807876586914,
+ "step": 115
+ },
+ {
+ "epoch": 1.6132404181184667,
+ "grad_norm": 0.054460495710372925,
+ "learning_rate": 0.000599973080557108,
+ "loss": 3.259110689163208,
+ "step": 116
+ },
+ {
+ "epoch": 1.627177700348432,
+ "grad_norm": 0.055243365466594696,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 3.2438201904296875,
+ "step": 117
+ },
+ {
+ "epoch": 1.6411149825783973,
+ "grad_norm": 0.06122216582298279,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 3.2397255897521973,
+ "step": 118
+ },
+ {
+ "epoch": 1.6550522648083623,
+ "grad_norm": 0.05418086051940918,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 3.236057758331299,
+ "step": 119
+ },
+ {
+ "epoch": 1.6689895470383276,
+ "grad_norm": 0.04995540529489517,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 3.224294662475586,
+ "step": 120
+ },
+ {
+ "epoch": 1.6829268292682928,
+ "grad_norm": 0.057540878653526306,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 3.2251172065734863,
+ "step": 121
+ },
+ {
+ "epoch": 1.6968641114982579,
+ "grad_norm": 0.05698078125715256,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 3.228363513946533,
+ "step": 122
+ },
+ {
+ "epoch": 1.710801393728223,
+ "grad_norm": 0.07352662831544876,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 3.2196407318115234,
+ "step": 123
+ },
+ {
+ "epoch": 1.7247386759581882,
+ "grad_norm": 0.08591686934232712,
+ "learning_rate": 0.000599936710690505,
+ "loss": 3.2231035232543945,
+ "step": 124
+ },
+ {
+ "epoch": 1.7386759581881535,
+ "grad_norm": 0.06970733404159546,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 3.2126383781433105,
+ "step": 125
+ },
+ {
+ "epoch": 1.7526132404181185,
+ "grad_norm": 0.04472116380929947,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 3.216801881790161,
+ "step": 126
+ },
+ {
+ "epoch": 1.7665505226480835,
+ "grad_norm": 0.059133559465408325,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 3.2136807441711426,
+ "step": 127
+ },
+ {
+ "epoch": 1.7804878048780488,
+ "grad_norm": 0.08288449794054031,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 3.210519552230835,
+ "step": 128
+ },
+ {
+ "epoch": 1.794425087108014,
+ "grad_norm": 0.09659463912248611,
+ "learning_rate": 0.00059990620421714,
+ "loss": 3.205916404724121,
+ "step": 129
+ },
+ {
+ "epoch": 1.8083623693379791,
+ "grad_norm": 0.08611937612295151,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 3.206793785095215,
+ "step": 130
+ },
+ {
+ "epoch": 1.8222996515679442,
+ "grad_norm": 0.06448066979646683,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 3.2026424407958984,
+ "step": 131
+ },
+ {
+ "epoch": 1.8362369337979094,
+ "grad_norm": 0.07323113083839417,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 3.1864631175994873,
+ "step": 132
+ },
+ {
+ "epoch": 1.8501742160278747,
+ "grad_norm": 0.0739368200302124,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 3.1875557899475098,
+ "step": 133
+ },
+ {
+ "epoch": 1.8641114982578397,
+ "grad_norm": 0.08289099484682083,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 3.1901979446411133,
+ "step": 134
+ },
+ {
+ "epoch": 1.8780487804878048,
+ "grad_norm": 0.06641175597906113,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 3.1776785850524902,
+ "step": 135
+ },
+ {
+ "epoch": 1.89198606271777,
+ "grad_norm": 0.04873652383685112,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 3.1743667125701904,
+ "step": 136
+ },
+ {
+ "epoch": 1.9059233449477353,
+ "grad_norm": 0.04623038321733475,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 3.1759986877441406,
+ "step": 137
+ },
+ {
+ "epoch": 1.9198606271777003,
+ "grad_norm": 0.059709370136260986,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 3.1702799797058105,
+ "step": 138
+ },
+ {
+ "epoch": 1.9337979094076654,
+ "grad_norm": 0.040581051260232925,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 3.1607465744018555,
+ "step": 139
+ },
+ {
+ "epoch": 1.9477351916376306,
+ "grad_norm": 0.04940655827522278,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 3.1620500087738037,
+ "step": 140
+ },
+ {
+ "epoch": 1.961672473867596,
+ "grad_norm": 0.055740341544151306,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 3.1535825729370117,
+ "step": 141
+ },
+ {
+ "epoch": 1.975609756097561,
+ "grad_norm": 0.06836569309234619,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 3.1512832641601562,
+ "step": 142
+ },
+ {
+ "epoch": 1.989547038327526,
+ "grad_norm": 0.08451569080352783,
+ "learning_rate": 0.000599788973374255,
+ "loss": 3.147432804107666,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.06781627237796783,
+ "learning_rate": 0.000599778806120077,
+ "loss": 2.3624467849731445,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 0.7888243794441223,
+ "eval_runtime": 37.0572,
+ "eval_samples_per_second": 65.898,
+ "eval_steps_per_second": 0.54,
+ "step": 144
+ },
+ {
+ "epoch": 2.013937282229965,
+ "grad_norm": 0.045119598507881165,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 3.139284610748291,
+ "step": 145
+ },
+ {
+ "epoch": 2.0278745644599305,
+ "grad_norm": 0.09132017195224762,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 3.140348434448242,
+ "step": 146
+ },
+ {
+ "epoch": 2.0418118466898956,
+ "grad_norm": 0.07457596063613892,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 3.140091896057129,
+ "step": 147
+ },
+ {
+ "epoch": 2.0557491289198606,
+ "grad_norm": 0.07544369250535965,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 3.1411213874816895,
+ "step": 148
+ },
+ {
+ "epoch": 2.0696864111498257,
+ "grad_norm": 0.046033963561058044,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 3.1405649185180664,
+ "step": 149
+ },
+ {
+ "epoch": 2.083623693379791,
+ "grad_norm": 0.06651527434587479,
+ "learning_rate": 0.000599712781599403,
+ "loss": 3.135124683380127,
+ "step": 150
+ },
+ {
+ "epoch": 2.097560975609756,
+ "grad_norm": 0.07238955795764923,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 3.1302051544189453,
+ "step": 151
+ },
+ {
+ "epoch": 2.1114982578397212,
+ "grad_norm": 0.06696683913469315,
+ "learning_rate": 0.000599688860879549,
+ "loss": 3.128504991531372,
+ "step": 152
+ },
+ {
+ "epoch": 2.1254355400696863,
+ "grad_norm": 0.042010076344013214,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 3.119443893432617,
+ "step": 153
+ },
+ {
+ "epoch": 2.1393728222996518,
+ "grad_norm": 0.053164687007665634,
+ "learning_rate": 0.000599663984012462,
+ "loss": 3.1174211502075195,
+ "step": 154
+ },
+ {
+ "epoch": 2.153310104529617,
+ "grad_norm": 0.047281116247177124,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 3.1211044788360596,
+ "step": 155
+ },
+ {
+ "epoch": 2.167247386759582,
+ "grad_norm": 0.0531938374042511,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 3.1136691570281982,
+ "step": 156
+ },
+ {
+ "epoch": 2.181184668989547,
+ "grad_norm": 0.0702054500579834,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 3.112502336502075,
+ "step": 157
+ },
+ {
+ "epoch": 2.1951219512195124,
+ "grad_norm": 0.07261929661035538,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 3.1049346923828125,
+ "step": 158
+ },
+ {
+ "epoch": 2.2090592334494774,
+ "grad_norm": 0.06666582822799683,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 3.1094369888305664,
+ "step": 159
+ },
+ {
+ "epoch": 2.2229965156794425,
+ "grad_norm": 0.047446250915527344,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 3.105876922607422,
+ "step": 160
+ },
+ {
+ "epoch": 2.2369337979094075,
+ "grad_norm": 0.03833230584859848,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 3.104224681854248,
+ "step": 161
+ },
+ {
+ "epoch": 2.250871080139373,
+ "grad_norm": 0.04562874883413315,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 3.105830192565918,
+ "step": 162
+ },
+ {
+ "epoch": 2.264808362369338,
+ "grad_norm": 0.0635828971862793,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 3.1061713695526123,
+ "step": 163
+ },
+ {
+ "epoch": 2.278745644599303,
+ "grad_norm": 0.09712212532758713,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 3.108053207397461,
+ "step": 164
+ },
+ {
+ "epoch": 2.292682926829268,
+ "grad_norm": 0.15060372650623322,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 3.126777172088623,
+ "step": 165
+ },
+ {
+ "epoch": 2.3066202090592336,
+ "grad_norm": 0.12047530710697174,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 3.116323471069336,
+ "step": 166
+ },
+ {
+ "epoch": 2.3205574912891986,
+ "grad_norm": 0.07486861199140549,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 3.1138410568237305,
+ "step": 167
+ },
+ {
+ "epoch": 2.3344947735191637,
+ "grad_norm": 0.07746157795190811,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 3.1107101440429688,
+ "step": 168
+ },
+ {
+ "epoch": 2.3484320557491287,
+ "grad_norm": 0.0804097130894661,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 3.1073827743530273,
+ "step": 169
+ },
+ {
+ "epoch": 2.362369337979094,
+ "grad_norm": 0.0559227392077446,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 3.102102041244507,
+ "step": 170
+ },
+ {
+ "epoch": 2.3763066202090593,
+ "grad_norm": 0.05415646359324455,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 3.096550464630127,
+ "step": 171
+ },
+ {
+ "epoch": 2.3902439024390243,
+ "grad_norm": 0.0463285967707634,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 3.0833563804626465,
+ "step": 172
+ },
+ {
+ "epoch": 2.40418118466899,
+ "grad_norm": 0.04705670103430748,
+ "learning_rate": 0.000599379982511273,
+ "loss": 3.0935018062591553,
+ "step": 173
+ },
+ {
+ "epoch": 2.418118466898955,
+ "grad_norm": 0.03608846664428711,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 3.085629463195801,
+ "step": 174
+ },
+ {
+ "epoch": 2.43205574912892,
+ "grad_norm": 0.03648562356829643,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 3.086639165878296,
+ "step": 175
+ },
+ {
+ "epoch": 2.445993031358885,
+ "grad_norm": 0.03640111908316612,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 3.088339328765869,
+ "step": 176
+ },
+ {
+ "epoch": 2.45993031358885,
+ "grad_norm": 0.029915692284703255,
+ "learning_rate": 0.000599309205504528,
+ "loss": 3.0802769660949707,
+ "step": 177
+ },
+ {
+ "epoch": 2.4738675958188154,
+ "grad_norm": 0.031756628304719925,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 3.0739364624023438,
+ "step": 178
+ },
+ {
+ "epoch": 2.4878048780487805,
+ "grad_norm": 0.03106086328625679,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 3.07144832611084,
+ "step": 179
+ },
+ {
+ "epoch": 2.5017421602787455,
+ "grad_norm": 0.03892781585454941,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 3.074242353439331,
+ "step": 180
+ },
+ {
+ "epoch": 2.515679442508711,
+ "grad_norm": 0.05611228197813034,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 3.0675928592681885,
+ "step": 181
+ },
+ {
+ "epoch": 2.529616724738676,
+ "grad_norm": 0.03397630900144577,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 3.073423147201538,
+ "step": 182
+ },
+ {
+ "epoch": 2.543554006968641,
+ "grad_norm": 0.04135085269808769,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 3.0808069705963135,
+ "step": 183
+ },
+ {
+ "epoch": 2.557491289198606,
+ "grad_norm": 0.03421049192547798,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 3.0616936683654785,
+ "step": 184
+ },
+ {
+ "epoch": 2.571428571428571,
+ "grad_norm": 0.030827628448605537,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 3.0656299591064453,
+ "step": 185
+ },
+ {
+ "epoch": 2.5853658536585367,
+ "grad_norm": 0.033190369606018066,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 3.0479578971862793,
+ "step": 186
+ },
+ {
+ "epoch": 2.5993031358885017,
+ "grad_norm": 0.026774903759360313,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 3.054133653640747,
+ "step": 187
+ },
+ {
+ "epoch": 2.6132404181184667,
+ "grad_norm": 0.03240266814827919,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 3.0536394119262695,
+ "step": 188
+ },
+ {
+ "epoch": 2.6271777003484322,
+ "grad_norm": 0.04305516183376312,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 3.048996925354004,
+ "step": 189
+ },
+ {
+ "epoch": 2.6411149825783973,
+ "grad_norm": 0.07109381258487701,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 3.0558314323425293,
+ "step": 190
+ },
+ {
+ "epoch": 2.6550522648083623,
+ "grad_norm": 0.11467248201370239,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 3.0587801933288574,
+ "step": 191
+ },
+ {
+ "epoch": 2.6689895470383274,
+ "grad_norm": 0.13839758932590485,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 3.0634102821350098,
+ "step": 192
+ },
+ {
+ "epoch": 2.682926829268293,
+ "grad_norm": 0.09269433468580246,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 3.0586462020874023,
+ "step": 193
+ },
+ {
+ "epoch": 2.696864111498258,
+ "grad_norm": 0.0611812099814415,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 3.054201602935791,
+ "step": 194
+ },
+ {
+ "epoch": 2.710801393728223,
+ "grad_norm": 0.05347125604748726,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 3.054572105407715,
+ "step": 195
+ },
+ {
+ "epoch": 2.7247386759581884,
+ "grad_norm": 0.05996708199381828,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 3.0486035346984863,
+ "step": 196
+ },
+ {
+ "epoch": 2.7386759581881535,
+ "grad_norm": 0.06146618723869324,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 3.0344629287719727,
+ "step": 197
+ },
+ {
+ "epoch": 2.7526132404181185,
+ "grad_norm": 0.04754327982664108,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 3.0211029052734375,
+ "step": 198
+ },
+ {
+ "epoch": 2.7665505226480835,
+ "grad_norm": 0.044388528913259506,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 3.034595012664795,
+ "step": 199
+ },
+ {
+ "epoch": 2.7804878048780486,
+ "grad_norm": 0.04255649819970131,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 3.037287950515747,
+ "step": 200
+ },
+ {
+ "epoch": 2.794425087108014,
+ "grad_norm": 0.043139949440956116,
+ "learning_rate": 0.000598804365316586,
+ "loss": 3.0366177558898926,
+ "step": 201
+ },
+ {
+ "epoch": 2.808362369337979,
+ "grad_norm": 0.03383412957191467,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 3.033888101577759,
+ "step": 202
+ },
+ {
+ "epoch": 2.822299651567944,
+ "grad_norm": 0.03446805849671364,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 3.022144079208374,
+ "step": 203
+ },
+ {
+ "epoch": 2.8362369337979096,
+ "grad_norm": 0.029725519940257072,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 3.0208263397216797,
+ "step": 204
+ },
+ {
+ "epoch": 2.8501742160278747,
+ "grad_norm": 0.030237704515457153,
+ "learning_rate": 0.000598706872384039,
+ "loss": 3.0251193046569824,
+ "step": 205
+ },
+ {
+ "epoch": 2.8641114982578397,
+ "grad_norm": 0.03186488524079323,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 3.0246212482452393,
+ "step": 206
+ },
+ {
+ "epoch": 2.8780487804878048,
+ "grad_norm": 0.02844928577542305,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 3.0075716972351074,
+ "step": 207
+ },
+ {
+ "epoch": 2.89198606271777,
+ "grad_norm": 0.0350780263543129,
+ "learning_rate": 0.000598631251036868,
+ "loss": 3.0121424198150635,
+ "step": 208
+ },
+ {
+ "epoch": 2.9059233449477353,
+ "grad_norm": 0.04267824813723564,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 3.0099010467529297,
+ "step": 209
+ },
+ {
+ "epoch": 2.9198606271777003,
+ "grad_norm": 0.042932625859975815,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 3.0122969150543213,
+ "step": 210
+ },
+ {
+ "epoch": 2.9337979094076654,
+ "grad_norm": 0.04570756480097771,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 3.0111446380615234,
+ "step": 211
+ },
+ {
+ "epoch": 2.947735191637631,
+ "grad_norm": 0.04473821446299553,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 2.9976413249969482,
+ "step": 212
+ },
+ {
+ "epoch": 2.961672473867596,
+ "grad_norm": 0.040896713733673096,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 2.9942758083343506,
+ "step": 213
+ },
+ {
+ "epoch": 2.975609756097561,
+ "grad_norm": 0.04459039121866226,
+ "learning_rate": 0.000598473577921366,
+ "loss": 2.998690128326416,
+ "step": 214
+ },
+ {
+ "epoch": 2.989547038327526,
+ "grad_norm": 0.039927951991558075,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 2.988520383834839,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.030261589214205742,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 2.2433667182922363,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 0.7514154314994812,
+ "eval_runtime": 37.2184,
+ "eval_samples_per_second": 65.613,
+ "eval_steps_per_second": 0.537,
+ "step": 216
+ },
+ {
+ "epoch": 3.013937282229965,
+ "grad_norm": 0.03271438181400299,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 2.983100652694702,
+ "step": 217
+ },
+ {
+ "epoch": 3.0278745644599305,
+ "grad_norm": 0.045161835849285126,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 2.9824085235595703,
+ "step": 218
+ },
+ {
+ "epoch": 3.0418118466898956,
+ "grad_norm": 0.041259463876485825,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 2.980112075805664,
+ "step": 219
+ },
+ {
+ "epoch": 3.0557491289198606,
+ "grad_norm": 0.04854132980108261,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 2.9802699089050293,
+ "step": 220
+ },
+ {
+ "epoch": 3.0696864111498257,
+ "grad_norm": 0.06712493300437927,
+ "learning_rate": 0.000598278794687186,
+ "loss": 2.963736057281494,
+ "step": 221
+ },
+ {
+ "epoch": 3.083623693379791,
+ "grad_norm": 0.07551158964633942,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 2.9780850410461426,
+ "step": 222
+ },
+ {
+ "epoch": 3.097560975609756,
+ "grad_norm": 0.1004587933421135,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 2.982564926147461,
+ "step": 223
+ },
+ {
+ "epoch": 3.1114982578397212,
+ "grad_norm": 0.12604698538780212,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 2.994123697280884,
+ "step": 224
+ },
+ {
+ "epoch": 3.1254355400696863,
+ "grad_norm": 0.13300281763076782,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 3.0030934810638428,
+ "step": 225
+ },
+ {
+ "epoch": 3.1393728222996518,
+ "grad_norm": 0.09192433208227158,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 2.99415922164917,
+ "step": 226
+ },
+ {
+ "epoch": 3.153310104529617,
+ "grad_norm": 0.07332997024059296,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 2.9832448959350586,
+ "step": 227
+ },
+ {
+ "epoch": 3.167247386759582,
+ "grad_norm": 0.05673393979668617,
+ "learning_rate": 0.00059807235435179,
+ "loss": 2.9781603813171387,
+ "step": 228
+ },
+ {
+ "epoch": 3.181184668989547,
+ "grad_norm": 0.05591209977865219,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 2.9844987392425537,
+ "step": 229
+ },
+ {
+ "epoch": 3.1951219512195124,
+ "grad_norm": 0.04706789553165436,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 2.9794564247131348,
+ "step": 230
+ },
+ {
+ "epoch": 3.2090592334494774,
+ "grad_norm": 0.04533008486032486,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 2.963930606842041,
+ "step": 231
+ },
+ {
+ "epoch": 3.2229965156794425,
+ "grad_norm": 0.0363367535173893,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 2.9743711948394775,
+ "step": 232
+ },
+ {
+ "epoch": 3.2369337979094075,
+ "grad_norm": 0.035832252353429794,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 2.9637725353240967,
+ "step": 233
+ },
+ {
+ "epoch": 3.250871080139373,
+ "grad_norm": 0.03634851798415184,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 2.971634864807129,
+ "step": 234
+ },
+ {
+ "epoch": 3.264808362369338,
+ "grad_norm": 0.036877233535051346,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 2.960113286972046,
+ "step": 235
+ },
+ {
+ "epoch": 3.278745644599303,
+ "grad_norm": 0.02930021658539772,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 2.948853015899658,
+ "step": 236
+ },
+ {
+ "epoch": 3.292682926829268,
+ "grad_norm": 0.029241658747196198,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 2.957648277282715,
+ "step": 237
+ },
+ {
+ "epoch": 3.3066202090592336,
+ "grad_norm": 0.029683494940400124,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 2.9501960277557373,
+ "step": 238
+ },
+ {
+ "epoch": 3.3205574912891986,
+ "grad_norm": 0.028418797999620438,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 2.9593586921691895,
+ "step": 239
+ },
+ {
+ "epoch": 3.3344947735191637,
+ "grad_norm": 0.029084153473377228,
+ "learning_rate": 0.000597691359743243,
+ "loss": 2.957581043243408,
+ "step": 240
+ },
+ {
+ "epoch": 3.3484320557491287,
+ "grad_norm": 0.03031332418322563,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 2.9465126991271973,
+ "step": 241
+ },
+ {
+ "epoch": 3.362369337979094,
+ "grad_norm": 0.028176147490739822,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 2.9427034854888916,
+ "step": 242
+ },
+ {
+ "epoch": 3.3763066202090593,
+ "grad_norm": 0.025935526937246323,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 2.933248996734619,
+ "step": 243
+ },
+ {
+ "epoch": 3.3902439024390243,
+ "grad_norm": 0.026524877175688744,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 2.9334826469421387,
+ "step": 244
+ },
+ {
+ "epoch": 3.40418118466899,
+ "grad_norm": 0.026807013899087906,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 2.9502480030059814,
+ "step": 245
+ },
+ {
+ "epoch": 3.418118466898955,
+ "grad_norm": 0.026440076529979706,
+ "learning_rate": 0.000597488038559129,
+ "loss": 2.9336085319519043,
+ "step": 246
+ },
+ {
+ "epoch": 3.43205574912892,
+ "grad_norm": 0.02752632275223732,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 2.937425374984741,
+ "step": 247
+ },
+ {
+ "epoch": 3.445993031358885,
+ "grad_norm": 0.027490021660923958,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 2.9357755184173584,
+ "step": 248
+ },
+ {
+ "epoch": 3.45993031358885,
+ "grad_norm": 0.03389354050159454,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 2.934713363647461,
+ "step": 249
+ },
+ {
+ "epoch": 3.4738675958188154,
+ "grad_norm": 0.042289797216653824,
+ "learning_rate": 0.000597347745466109,
+ "loss": 2.9363629817962646,
+ "step": 250
+ },
+ {
+ "epoch": 3.4878048780487805,
+ "grad_norm": 0.07276978343725204,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 2.946735382080078,
+ "step": 251
+ },
+ {
+ "epoch": 3.5017421602787455,
+ "grad_norm": 0.09471797943115234,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 2.9240806102752686,
+ "step": 252
+ },
+ {
+ "epoch": 3.515679442508711,
+ "grad_norm": 0.09386000782251358,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 2.9194839000701904,
+ "step": 253
+ },
+ {
+ "epoch": 3.529616724738676,
+ "grad_norm": 0.1176624521613121,
+ "learning_rate": 0.000597203657966319,
+ "loss": 2.9324824810028076,
+ "step": 254
+ },
+ {
+ "epoch": 3.543554006968641,
+ "grad_norm": 0.0723927766084671,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 2.932208776473999,
+ "step": 255
+ },
+ {
+ "epoch": 3.557491289198606,
+ "grad_norm": 0.06314370036125183,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 2.936681032180786,
+ "step": 256
+ },
+ {
+ "epoch": 3.571428571428571,
+ "grad_norm": 0.06432153284549713,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 2.924858331680298,
+ "step": 257
+ },
+ {
+ "epoch": 3.5853658536585367,
+ "grad_norm": 0.07495246082544327,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 2.918736696243286,
+ "step": 258
+ },
+ {
+ "epoch": 3.5993031358885017,
+ "grad_norm": 0.058007508516311646,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 2.92120361328125,
+ "step": 259
+ },
+ {
+ "epoch": 3.6132404181184667,
+ "grad_norm": 0.047224972397089005,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 2.9181740283966064,
+ "step": 260
+ },
+ {
+ "epoch": 3.6271777003484322,
+ "grad_norm": 0.04775157943367958,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 2.9145660400390625,
+ "step": 261
+ },
+ {
+ "epoch": 3.6411149825783973,
+ "grad_norm": 0.05087953805923462,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 2.9094574451446533,
+ "step": 262
+ },
+ {
+ "epoch": 3.6550522648083623,
+ "grad_norm": 0.047325216233730316,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 2.9127790927886963,
+ "step": 263
+ },
+ {
+ "epoch": 3.6689895470383274,
+ "grad_norm": 0.04005662724375725,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 2.9124414920806885,
+ "step": 264
+ },
+ {
+ "epoch": 3.682926829268293,
+ "grad_norm": 0.03284832462668419,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 2.897369861602783,
+ "step": 265
+ },
+ {
+ "epoch": 3.696864111498258,
+ "grad_norm": 0.03538643941283226,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 2.8912787437438965,
+ "step": 266
+ },
+ {
+ "epoch": 3.710801393728223,
+ "grad_norm": 0.0338534340262413,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 2.904737949371338,
+ "step": 267
+ },
+ {
+ "epoch": 3.7247386759581884,
+ "grad_norm": 0.03059707209467888,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 2.910109519958496,
+ "step": 268
+ },
+ {
+ "epoch": 3.7386759581881535,
+ "grad_norm": 0.027421824634075165,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 2.8953540325164795,
+ "step": 269
+ },
+ {
+ "epoch": 3.7526132404181185,
+ "grad_norm": 0.031095022335648537,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 2.8983192443847656,
+ "step": 270
+ },
+ {
+ "epoch": 3.7665505226480835,
+ "grad_norm": 0.03075260855257511,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 2.9002010822296143,
+ "step": 271
+ },
+ {
+ "epoch": 3.7804878048780486,
+ "grad_norm": 0.030917232856154442,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 2.8886561393737793,
+ "step": 272
+ },
+ {
+ "epoch": 3.794425087108014,
+ "grad_norm": 0.03267431631684303,
+ "learning_rate": 0.000596467483454833,
+ "loss": 2.8845345973968506,
+ "step": 273
+ },
+ {
+ "epoch": 3.808362369337979,
+ "grad_norm": 0.034112598747015,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 2.8842294216156006,
+ "step": 274
+ },
+ {
+ "epoch": 3.822299651567944,
+ "grad_norm": 0.038153596222400665,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 2.866973400115967,
+ "step": 275
+ },
+ {
+ "epoch": 3.8362369337979096,
+ "grad_norm": 0.033103615045547485,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 2.8709988594055176,
+ "step": 276
+ },
+ {
+ "epoch": 3.8501742160278747,
+ "grad_norm": 0.030708827078342438,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 2.8715577125549316,
+ "step": 277
+ },
+ {
+ "epoch": 3.8641114982578397,
+ "grad_norm": 0.03427499905228615,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 2.8766040802001953,
+ "step": 278
+ },
+ {
+ "epoch": 3.8780487804878048,
+ "grad_norm": 0.042216721922159195,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 2.8672261238098145,
+ "step": 279
+ },
+ {
+ "epoch": 3.89198606271777,
+ "grad_norm": 0.034656424075365067,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 2.860102653503418,
+ "step": 280
+ },
+ {
+ "epoch": 3.9059233449477353,
+ "grad_norm": 0.03288520127534866,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 2.8540444374084473,
+ "step": 281
+ },
+ {
+ "epoch": 3.9198606271777003,
+ "grad_norm": 0.041709382086992264,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 2.872581958770752,
+ "step": 282
+ },
+ {
+ "epoch": 3.9337979094076654,
+ "grad_norm": 0.04955075681209564,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 2.874307632446289,
+ "step": 283
+ },
+ {
+ "epoch": 3.947735191637631,
+ "grad_norm": 0.05372118577361107,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 2.861191749572754,
+ "step": 284
+ },
+ {
+ "epoch": 3.961672473867596,
+ "grad_norm": 0.05855486914515495,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 2.8542709350585938,
+ "step": 285
+ },
+ {
+ "epoch": 3.975609756097561,
+ "grad_norm": 0.05442376434803009,
+ "learning_rate": 0.000595914592474791,
+ "loss": 2.858576536178589,
+ "step": 286
+ },
+ {
+ "epoch": 3.989547038327526,
+ "grad_norm": 0.06468870490789413,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 2.8510026931762695,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.038657791912555695,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 2.1422531604766846,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 0.7195093631744385,
+ "eval_runtime": 39.1927,
+ "eval_samples_per_second": 62.308,
+ "eval_steps_per_second": 0.51,
+ "step": 288
+ },
+ {
+ "epoch": 4.013937282229965,
+ "grad_norm": 0.041369788348674774,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 2.8407950401306152,
+ "step": 289
+ },
+ {
+ "epoch": 4.02787456445993,
+ "grad_norm": 0.045097772032022476,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 2.8446922302246094,
+ "step": 290
+ },
+ {
+ "epoch": 4.041811846689895,
+ "grad_norm": 0.05102979391813278,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 2.8316476345062256,
+ "step": 291
+ },
+ {
+ "epoch": 4.055749128919861,
+ "grad_norm": 0.05429252237081528,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 2.8510334491729736,
+ "step": 292
+ },
+ {
+ "epoch": 4.069686411149826,
+ "grad_norm": 0.0761060118675232,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 2.8289966583251953,
+ "step": 293
+ },
+ {
+ "epoch": 4.083623693379791,
+ "grad_norm": 0.09525997191667557,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 2.843992233276367,
+ "step": 294
+ },
+ {
+ "epoch": 4.097560975609756,
+ "grad_norm": 0.09715712070465088,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 2.8543810844421387,
+ "step": 295
+ },
+ {
+ "epoch": 4.111498257839721,
+ "grad_norm": 0.0634903833270073,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 2.8456456661224365,
+ "step": 296
+ },
+ {
+ "epoch": 4.125435540069686,
+ "grad_norm": 0.05771167576313019,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 2.8387022018432617,
+ "step": 297
+ },
+ {
+ "epoch": 4.139372822299651,
+ "grad_norm": 0.05440817028284073,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 2.841508388519287,
+ "step": 298
+ },
+ {
+ "epoch": 4.153310104529616,
+ "grad_norm": 0.0550493523478508,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 2.833531618118286,
+ "step": 299
+ },
+ {
+ "epoch": 4.167247386759582,
+ "grad_norm": 0.04252418503165245,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 2.8254685401916504,
+ "step": 300
+ },
+ {
+ "epoch": 4.181184668989547,
+ "grad_norm": 0.042833492159843445,
+ "learning_rate": 0.000595227087813793,
+ "loss": 2.8289575576782227,
+ "step": 301
+ },
+ {
+ "epoch": 4.195121951219512,
+ "grad_norm": 0.038360171020030975,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 2.836550712585449,
+ "step": 302
+ },
+ {
+ "epoch": 4.209059233449477,
+ "grad_norm": 0.03655572608113289,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 2.8222808837890625,
+ "step": 303
+ },
+ {
+ "epoch": 4.2229965156794425,
+ "grad_norm": 0.03215418756008148,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 2.818066120147705,
+ "step": 304
+ },
+ {
+ "epoch": 4.2369337979094075,
+ "grad_norm": 0.031601350754499435,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 2.809666395187378,
+ "step": 305
+ },
+ {
+ "epoch": 4.2508710801393725,
+ "grad_norm": 0.03221198916435242,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 2.8137047290802,
+ "step": 306
+ },
+ {
+ "epoch": 4.264808362369338,
+ "grad_norm": 0.03107992745935917,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 2.822840690612793,
+ "step": 307
+ },
+ {
+ "epoch": 4.2787456445993035,
+ "grad_norm": 0.032328397035598755,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 2.8012430667877197,
+ "step": 308
+ },
+ {
+ "epoch": 4.2926829268292686,
+ "grad_norm": 0.029429661110043526,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 2.806474447250366,
+ "step": 309
+ },
+ {
+ "epoch": 4.306620209059234,
+ "grad_norm": 0.03430404141545296,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 2.7917184829711914,
+ "step": 310
+ },
+ {
+ "epoch": 4.320557491289199,
+ "grad_norm": 0.03543714061379433,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 2.798417091369629,
+ "step": 311
+ },
+ {
+ "epoch": 4.334494773519164,
+ "grad_norm": 0.04099712520837784,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 2.793095588684082,
+ "step": 312
+ },
+ {
+ "epoch": 4.348432055749129,
+ "grad_norm": 0.046607524156570435,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 2.807809829711914,
+ "step": 313
+ },
+ {
+ "epoch": 4.362369337979094,
+ "grad_norm": 0.048917099833488464,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 2.8017094135284424,
+ "step": 314
+ },
+ {
+ "epoch": 4.376306620209059,
+ "grad_norm": 0.05221967399120331,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 2.7990846633911133,
+ "step": 315
+ },
+ {
+ "epoch": 4.390243902439025,
+ "grad_norm": 0.05263383314013481,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 2.810983657836914,
+ "step": 316
+ },
+ {
+ "epoch": 4.40418118466899,
+ "grad_norm": 0.04930173233151436,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 2.7989790439605713,
+ "step": 317
+ },
+ {
+ "epoch": 4.418118466898955,
+ "grad_norm": 0.05484982952475548,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 2.7852704524993896,
+ "step": 318
+ },
+ {
+ "epoch": 4.43205574912892,
+ "grad_norm": 0.04991631582379341,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 2.7944440841674805,
+ "step": 319
+ },
+ {
+ "epoch": 4.445993031358885,
+ "grad_norm": 0.034856196492910385,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 2.7851901054382324,
+ "step": 320
+ },
+ {
+ "epoch": 4.45993031358885,
+ "grad_norm": 0.038153354078531265,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 2.777986526489258,
+ "step": 321
+ },
+ {
+ "epoch": 4.473867595818815,
+ "grad_norm": 0.04138852655887604,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 2.7781941890716553,
+ "step": 322
+ },
+ {
+ "epoch": 4.487804878048781,
+ "grad_norm": 0.04018627852201462,
+ "learning_rate": 0.00059412296156686,
+ "loss": 2.7934627532958984,
+ "step": 323
+ },
+ {
+ "epoch": 4.501742160278746,
+ "grad_norm": 0.03592175245285034,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 2.780992031097412,
+ "step": 324
+ },
+ {
+ "epoch": 4.515679442508711,
+ "grad_norm": 0.034620169550180435,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 2.7754831314086914,
+ "step": 325
+ },
+ {
+ "epoch": 4.529616724738676,
+ "grad_norm": 0.03244427964091301,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 2.7737035751342773,
+ "step": 326
+ },
+ {
+ "epoch": 4.543554006968641,
+ "grad_norm": 0.0361688956618309,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 2.7515547275543213,
+ "step": 327
+ },
+ {
+ "epoch": 4.557491289198606,
+ "grad_norm": 0.03722141310572624,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 2.769011974334717,
+ "step": 328
+ },
+ {
+ "epoch": 4.571428571428571,
+ "grad_norm": 0.0431540347635746,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 2.7755231857299805,
+ "step": 329
+ },
+ {
+ "epoch": 4.585365853658536,
+ "grad_norm": 0.04175153374671936,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 2.767477512359619,
+ "step": 330
+ },
+ {
+ "epoch": 4.599303135888501,
+ "grad_norm": 0.04184363782405853,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 2.775984048843384,
+ "step": 331
+ },
+ {
+ "epoch": 4.613240418118467,
+ "grad_norm": 0.04054928943514824,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 2.7669193744659424,
+ "step": 332
+ },
+ {
+ "epoch": 4.627177700348432,
+ "grad_norm": 0.039442483335733414,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 2.7557153701782227,
+ "step": 333
+ },
+ {
+ "epoch": 4.641114982578397,
+ "grad_norm": 0.04334413632750511,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 2.76118803024292,
+ "step": 334
+ },
+ {
+ "epoch": 4.655052264808362,
+ "grad_norm": 0.04821610450744629,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 2.755122184753418,
+ "step": 335
+ },
+ {
+ "epoch": 4.668989547038327,
+ "grad_norm": 0.05259500443935394,
+ "learning_rate": 0.000593417134927994,
+ "loss": 2.763730764389038,
+ "step": 336
+ },
+ {
+ "epoch": 4.682926829268292,
+ "grad_norm": 0.05462924763560295,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 2.7538461685180664,
+ "step": 337
+ },
+ {
+ "epoch": 4.696864111498257,
+ "grad_norm": 0.0755213275551796,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 2.7565760612487793,
+ "step": 338
+ },
+ {
+ "epoch": 4.710801393728223,
+ "grad_norm": 0.09036742150783539,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 2.7742908000946045,
+ "step": 339
+ },
+ {
+ "epoch": 4.724738675958188,
+ "grad_norm": 0.07687609642744064,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 2.7776336669921875,
+ "step": 340
+ },
+ {
+ "epoch": 4.7386759581881535,
+ "grad_norm": 0.06167550012469292,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 2.7571194171905518,
+ "step": 341
+ },
+ {
+ "epoch": 4.7526132404181185,
+ "grad_norm": 0.05498389154672623,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 2.766094207763672,
+ "step": 342
+ },
+ {
+ "epoch": 4.7665505226480835,
+ "grad_norm": 0.056576769798994064,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 2.759814977645874,
+ "step": 343
+ },
+ {
+ "epoch": 4.780487804878049,
+ "grad_norm": 0.05287479609251022,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 2.7653424739837646,
+ "step": 344
+ },
+ {
+ "epoch": 4.794425087108014,
+ "grad_norm": 0.05006227642297745,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 2.746647357940674,
+ "step": 345
+ },
+ {
+ "epoch": 4.80836236933798,
+ "grad_norm": 0.0428367517888546,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 2.748798131942749,
+ "step": 346
+ },
+ {
+ "epoch": 4.822299651567945,
+ "grad_norm": 0.04800762981176376,
+ "learning_rate": 0.000592789007481325,
+ "loss": 2.7554736137390137,
+ "step": 347
+ },
+ {
+ "epoch": 4.83623693379791,
+ "grad_norm": 0.04984979331493378,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 2.738473415374756,
+ "step": 348
+ },
+ {
+ "epoch": 4.850174216027875,
+ "grad_norm": 0.0404483824968338,
+ "learning_rate": 0.000592671765466188,
+ "loss": 2.7486448287963867,
+ "step": 349
+ },
+ {
+ "epoch": 4.86411149825784,
+ "grad_norm": 0.03785628825426102,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 2.7317609786987305,
+ "step": 350
+ },
+ {
+ "epoch": 4.878048780487805,
+ "grad_norm": 0.04446744546294212,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 2.750211238861084,
+ "step": 351
+ },
+ {
+ "epoch": 4.89198606271777,
+ "grad_norm": 0.0561913438141346,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 2.7429988384246826,
+ "step": 352
+ },
+ {
+ "epoch": 4.905923344947735,
+ "grad_norm": 0.06165647506713867,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 2.7389450073242188,
+ "step": 353
+ },
+ {
+ "epoch": 4.9198606271777,
+ "grad_norm": 0.04764621704816818,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 2.73350191116333,
+ "step": 354
+ },
+ {
+ "epoch": 4.933797909407666,
+ "grad_norm": 0.044994648545980453,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 2.7248117923736572,
+ "step": 355
+ },
+ {
+ "epoch": 4.947735191637631,
+ "grad_norm": 0.044408753514289856,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 2.7337656021118164,
+ "step": 356
+ },
+ {
+ "epoch": 4.961672473867596,
+ "grad_norm": 0.04064524918794632,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 2.732268810272217,
+ "step": 357
+ },
+ {
+ "epoch": 4.975609756097561,
+ "grad_norm": 0.036805033683776855,
+ "learning_rate": 0.000592132629452205,
+ "loss": 2.7253570556640625,
+ "step": 358
+ },
+ {
+ "epoch": 4.989547038327526,
+ "grad_norm": 0.03321084752678871,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 2.713101863861084,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.027469763532280922,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 2.0416059494018555,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 0.6877280473709106,
+ "eval_runtime": 37.7369,
+ "eval_samples_per_second": 64.711,
+ "eval_steps_per_second": 0.53,
+ "step": 360
+ },
+ {
+ "epoch": 5.013937282229965,
+ "grad_norm": 0.035481102764606476,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 2.6966300010681152,
+ "step": 361
+ },
+ {
+ "epoch": 5.02787456445993,
+ "grad_norm": 0.04075651615858078,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 2.701756000518799,
+ "step": 362
+ },
+ {
+ "epoch": 5.041811846689895,
+ "grad_norm": 0.03847100958228111,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 2.69856333732605,
+ "step": 363
+ },
+ {
+ "epoch": 5.055749128919861,
+ "grad_norm": 0.0439726859331131,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 2.6956000328063965,
+ "step": 364
+ },
+ {
+ "epoch": 5.069686411149826,
+ "grad_norm": 0.043925508856773376,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 2.7065486907958984,
+ "step": 365
+ },
+ {
+ "epoch": 5.083623693379791,
+ "grad_norm": 0.05349253863096237,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 2.7032744884490967,
+ "step": 366
+ },
+ {
+ "epoch": 5.097560975609756,
+ "grad_norm": 0.04957803711295128,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 2.6988987922668457,
+ "step": 367
+ },
+ {
+ "epoch": 5.111498257839721,
+ "grad_norm": 0.047412872314453125,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 2.6921496391296387,
+ "step": 368
+ },
+ {
+ "epoch": 5.125435540069686,
+ "grad_norm": 0.047648534178733826,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 2.691765308380127,
+ "step": 369
+ },
+ {
+ "epoch": 5.139372822299651,
+ "grad_norm": 0.05226794257760048,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 2.7006325721740723,
+ "step": 370
+ },
+ {
+ "epoch": 5.153310104529616,
+ "grad_norm": 0.054041698575019836,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 2.692309617996216,
+ "step": 371
+ },
+ {
+ "epoch": 5.167247386759582,
+ "grad_norm": 0.039680954068899155,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 2.685819149017334,
+ "step": 372
+ },
+ {
+ "epoch": 5.181184668989547,
+ "grad_norm": 0.04104545712471008,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 2.6913204193115234,
+ "step": 373
+ },
+ {
+ "epoch": 5.195121951219512,
+ "grad_norm": 0.037274859845638275,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 2.692324161529541,
+ "step": 374
+ },
+ {
+ "epoch": 5.209059233449477,
+ "grad_norm": 0.038038160651922226,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 2.6824822425842285,
+ "step": 375
+ },
+ {
+ "epoch": 5.2229965156794425,
+ "grad_norm": 0.04105817899107933,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 2.6830384731292725,
+ "step": 376
+ },
+ {
+ "epoch": 5.2369337979094075,
+ "grad_norm": 0.04050105810165405,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 2.676032066345215,
+ "step": 377
+ },
+ {
+ "epoch": 5.2508710801393725,
+ "grad_norm": 0.03780475631356239,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 2.6765289306640625,
+ "step": 378
+ },
+ {
+ "epoch": 5.264808362369338,
+ "grad_norm": 0.03484981507062912,
+ "learning_rate": 0.000590801330015633,
+ "loss": 2.6808249950408936,
+ "step": 379
+ },
+ {
+ "epoch": 5.2787456445993035,
+ "grad_norm": 0.03091316856443882,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 2.679382562637329,
+ "step": 380
+ },
+ {
+ "epoch": 5.2926829268292686,
+ "grad_norm": 0.03255805745720863,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 2.685393810272217,
+ "step": 381
+ },
+ {
+ "epoch": 5.306620209059234,
+ "grad_norm": 0.037457507103681564,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 2.6710822582244873,
+ "step": 382
+ },
+ {
+ "epoch": 5.320557491289199,
+ "grad_norm": 0.03654669225215912,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 2.6762566566467285,
+ "step": 383
+ },
+ {
+ "epoch": 5.334494773519164,
+ "grad_norm": 0.03590100631117821,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 2.6788597106933594,
+ "step": 384
+ },
+ {
+ "epoch": 5.348432055749129,
+ "grad_norm": 0.03647424280643463,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 2.6785120964050293,
+ "step": 385
+ },
+ {
+ "epoch": 5.362369337979094,
+ "grad_norm": 0.035309527069330215,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 2.679274082183838,
+ "step": 386
+ },
+ {
+ "epoch": 5.376306620209059,
+ "grad_norm": 0.035797759890556335,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 2.663790702819824,
+ "step": 387
+ },
+ {
+ "epoch": 5.390243902439025,
+ "grad_norm": 0.034813620150089264,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 2.661909818649292,
+ "step": 388
+ },
+ {
+ "epoch": 5.40418118466899,
+ "grad_norm": 0.03814723342657089,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 2.6648290157318115,
+ "step": 389
+ },
+ {
+ "epoch": 5.418118466898955,
+ "grad_norm": 0.03819345310330391,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 2.661344528198242,
+ "step": 390
+ },
+ {
+ "epoch": 5.43205574912892,
+ "grad_norm": 0.05034249275922775,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 2.6723971366882324,
+ "step": 391
+ },
+ {
+ "epoch": 5.445993031358885,
+ "grad_norm": 0.05302279815077782,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 2.6722166538238525,
+ "step": 392
+ },
+ {
+ "epoch": 5.45993031358885,
+ "grad_norm": 0.04576520621776581,
+ "learning_rate": 0.000589856958339686,
+ "loss": 2.650954008102417,
+ "step": 393
+ },
+ {
+ "epoch": 5.473867595818815,
+ "grad_norm": 0.04785747826099396,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 2.658161163330078,
+ "step": 394
+ },
+ {
+ "epoch": 5.487804878048781,
+ "grad_norm": 0.0524369515478611,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 2.66957688331604,
+ "step": 395
+ },
+ {
+ "epoch": 5.501742160278746,
+ "grad_norm": 0.05258813500404358,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 2.66046142578125,
+ "step": 396
+ },
+ {
+ "epoch": 5.515679442508711,
+ "grad_norm": 0.05156350135803223,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 2.6339619159698486,
+ "step": 397
+ },
+ {
+ "epoch": 5.529616724738676,
+ "grad_norm": 0.04716484993696213,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 2.656726837158203,
+ "step": 398
+ },
+ {
+ "epoch": 5.543554006968641,
+ "grad_norm": 0.048213694244623184,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 2.6740832328796387,
+ "step": 399
+ },
+ {
+ "epoch": 5.557491289198606,
+ "grad_norm": 0.046243470162153244,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 2.65981125831604,
+ "step": 400
+ },
+ {
+ "epoch": 5.571428571428571,
+ "grad_norm": 0.04331960901618004,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 2.637345790863037,
+ "step": 401
+ },
+ {
+ "epoch": 5.585365853658536,
+ "grad_norm": 0.04055584594607353,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 2.6382877826690674,
+ "step": 402
+ },
+ {
+ "epoch": 5.599303135888501,
+ "grad_norm": 0.046962495893239975,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 2.642883539199829,
+ "step": 403
+ },
+ {
+ "epoch": 5.613240418118467,
+ "grad_norm": 0.055259495973587036,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 2.6498947143554688,
+ "step": 404
+ },
+ {
+ "epoch": 5.627177700348432,
+ "grad_norm": 0.05768313631415367,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 2.6472978591918945,
+ "step": 405
+ },
+ {
+ "epoch": 5.641114982578397,
+ "grad_norm": 0.04900819808244705,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 2.6596455574035645,
+ "step": 406
+ },
+ {
+ "epoch": 5.655052264808362,
+ "grad_norm": 0.053204163908958435,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 2.6456780433654785,
+ "step": 407
+ },
+ {
+ "epoch": 5.668989547038327,
+ "grad_norm": 0.05327627807855606,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 2.651031494140625,
+ "step": 408
+ },
+ {
+ "epoch": 5.682926829268292,
+ "grad_norm": 0.050564929842948914,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 2.656858444213867,
+ "step": 409
+ },
+ {
+ "epoch": 5.696864111498257,
+ "grad_norm": 0.05613167583942413,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 2.6408069133758545,
+ "step": 410
+ },
+ {
+ "epoch": 5.710801393728223,
+ "grad_norm": 0.05399465933442116,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 2.6472203731536865,
+ "step": 411
+ },
+ {
+ "epoch": 5.724738675958188,
+ "grad_norm": 0.04919342324137688,
+ "learning_rate": 0.0005885028868537,
+ "loss": 2.656099319458008,
+ "step": 412
+ },
+ {
+ "epoch": 5.7386759581881535,
+ "grad_norm": 0.0552130751311779,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 2.6422126293182373,
+ "step": 413
+ },
+ {
+ "epoch": 5.7526132404181185,
+ "grad_norm": 0.05774940922856331,
+ "learning_rate": 0.000588355515561353,
+ "loss": 2.649722099304199,
+ "step": 414
+ },
+ {
+ "epoch": 5.7665505226480835,
+ "grad_norm": 0.04623311012983322,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 2.6475892066955566,
+ "step": 415
+ },
+ {
+ "epoch": 5.780487804878049,
+ "grad_norm": 0.04961073398590088,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 2.658733606338501,
+ "step": 416
+ },
+ {
+ "epoch": 5.794425087108014,
+ "grad_norm": 0.05006693676114082,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 2.6217124462127686,
+ "step": 417
+ },
+ {
+ "epoch": 5.80836236933798,
+ "grad_norm": 0.04175165295600891,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 2.632359027862549,
+ "step": 418
+ },
+ {
+ "epoch": 5.822299651567945,
+ "grad_norm": 0.0332355760037899,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 2.6406683921813965,
+ "step": 419
+ },
+ {
+ "epoch": 5.83623693379791,
+ "grad_norm": 0.0371745266020298,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 2.630310535430908,
+ "step": 420
+ },
+ {
+ "epoch": 5.850174216027875,
+ "grad_norm": 0.02940242365002632,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 2.6451711654663086,
+ "step": 421
+ },
+ {
+ "epoch": 5.86411149825784,
+ "grad_norm": 0.03578875586390495,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 2.637753486633301,
+ "step": 422
+ },
+ {
+ "epoch": 5.878048780487805,
+ "grad_norm": 0.03402113541960716,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 2.623744487762451,
+ "step": 423
+ },
+ {
+ "epoch": 5.89198606271777,
+ "grad_norm": 0.034094467759132385,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 2.63200044631958,
+ "step": 424
+ },
+ {
+ "epoch": 5.905923344947735,
+ "grad_norm": 0.03428930044174194,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 2.6219849586486816,
+ "step": 425
+ },
+ {
+ "epoch": 5.9198606271777,
+ "grad_norm": 0.033345405012369156,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 2.611741065979004,
+ "step": 426
+ },
+ {
+ "epoch": 5.933797909407666,
+ "grad_norm": 0.031680066138505936,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 2.6227869987487793,
+ "step": 427
+ },
+ {
+ "epoch": 5.947735191637631,
+ "grad_norm": 0.028066758066415787,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 2.6249539852142334,
+ "step": 428
+ },
+ {
+ "epoch": 5.961672473867596,
+ "grad_norm": 0.032918382436037064,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 2.6176412105560303,
+ "step": 429
+ },
+ {
+ "epoch": 5.975609756097561,
+ "grad_norm": 0.033349912613630295,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 2.6159720420837402,
+ "step": 430
+ },
+ {
+ "epoch": 5.989547038327526,
+ "grad_norm": 0.03317154198884964,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 2.619137763977051,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.025815341621637344,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 1.9473658800125122,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 0.6633820533752441,
+ "eval_runtime": 37.551,
+ "eval_samples_per_second": 65.032,
+ "eval_steps_per_second": 0.533,
+ "step": 432
+ },
+ {
+ "epoch": 6.013937282229965,
+ "grad_norm": 0.031342681497335434,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 2.5931155681610107,
+ "step": 433
+ },
+ {
+ "epoch": 6.02787456445993,
+ "grad_norm": 0.04343045502901077,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 2.587559700012207,
+ "step": 434
+ },
+ {
+ "epoch": 6.041811846689895,
+ "grad_norm": 0.052591342478990555,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 2.5950260162353516,
+ "step": 435
+ },
+ {
+ "epoch": 6.055749128919861,
+ "grad_norm": 0.05538717657327652,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 2.600468635559082,
+ "step": 436
+ },
+ {
+ "epoch": 6.069686411149826,
+ "grad_norm": 0.05505542829632759,
+ "learning_rate": 0.000586594769789753,
+ "loss": 2.5905046463012695,
+ "step": 437
+ },
+ {
+ "epoch": 6.083623693379791,
+ "grad_norm": 0.05229569226503372,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 2.591856002807617,
+ "step": 438
+ },
+ {
+ "epoch": 6.097560975609756,
+ "grad_norm": 0.05032522976398468,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 2.577693462371826,
+ "step": 439
+ },
+ {
+ "epoch": 6.111498257839721,
+ "grad_norm": 0.04670557379722595,
+ "learning_rate": 0.000586356179990052,
+ "loss": 2.5835001468658447,
+ "step": 440
+ },
+ {
+ "epoch": 6.125435540069686,
+ "grad_norm": 0.0537918359041214,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 2.596343517303467,
+ "step": 441
+ },
+ {
+ "epoch": 6.139372822299651,
+ "grad_norm": 0.06328130513429642,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 2.5912466049194336,
+ "step": 442
+ },
+ {
+ "epoch": 6.153310104529616,
+ "grad_norm": 0.06647300720214844,
+ "learning_rate": 0.000586115535536849,
+ "loss": 2.589078426361084,
+ "step": 443
+ },
+ {
+ "epoch": 6.167247386759582,
+ "grad_norm": 0.06643359363079071,
+ "learning_rate": 0.000586034864430614,
+ "loss": 2.5956435203552246,
+ "step": 444
+ },
+ {
+ "epoch": 6.181184668989547,
+ "grad_norm": 0.05613892152905464,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 2.5922906398773193,
+ "step": 445
+ },
+ {
+ "epoch": 6.195121951219512,
+ "grad_norm": 0.05655102804303169,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 2.590651512145996,
+ "step": 446
+ },
+ {
+ "epoch": 6.209059233449477,
+ "grad_norm": 0.06806499511003494,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 2.589696168899536,
+ "step": 447
+ },
+ {
+ "epoch": 6.2229965156794425,
+ "grad_norm": 0.06616773456335068,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 2.5944786071777344,
+ "step": 448
+ },
+ {
+ "epoch": 6.2369337979094075,
+ "grad_norm": 0.05937796086072922,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 2.598313331604004,
+ "step": 449
+ },
+ {
+ "epoch": 6.2508710801393725,
+ "grad_norm": 0.05284281075000763,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 2.5805535316467285,
+ "step": 450
+ },
+ {
+ "epoch": 6.264808362369338,
+ "grad_norm": 0.04509073495864868,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 2.570598840713501,
+ "step": 451
+ },
+ {
+ "epoch": 6.2787456445993035,
+ "grad_norm": 0.05604032054543495,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 2.6077847480773926,
+ "step": 452
+ },
+ {
+ "epoch": 6.2926829268292686,
+ "grad_norm": 0.06662779301404953,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 2.578629493713379,
+ "step": 453
+ },
+ {
+ "epoch": 6.306620209059234,
+ "grad_norm": 0.0585545152425766,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 2.586427688598633,
+ "step": 454
+ },
+ {
+ "epoch": 6.320557491289199,
+ "grad_norm": 0.04736408591270447,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 2.5911552906036377,
+ "step": 455
+ },
+ {
+ "epoch": 6.334494773519164,
+ "grad_norm": 0.04474812000989914,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 2.5697641372680664,
+ "step": 456
+ },
+ {
+ "epoch": 6.348432055749129,
+ "grad_norm": 0.04312862828373909,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 2.566927671432495,
+ "step": 457
+ },
+ {
+ "epoch": 6.362369337979094,
+ "grad_norm": 0.03764902800321579,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 2.5947153568267822,
+ "step": 458
+ },
+ {
+ "epoch": 6.376306620209059,
+ "grad_norm": 0.03353014215826988,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 2.5777602195739746,
+ "step": 459
+ },
+ {
+ "epoch": 6.390243902439025,
+ "grad_norm": 0.033975999802351,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 2.5783305168151855,
+ "step": 460
+ },
+ {
+ "epoch": 6.40418118466899,
+ "grad_norm": 0.03363902121782303,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 2.5673155784606934,
+ "step": 461
+ },
+ {
+ "epoch": 6.418118466898955,
+ "grad_norm": 0.034326743334531784,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 2.55814790725708,
+ "step": 462
+ },
+ {
+ "epoch": 6.43205574912892,
+ "grad_norm": 0.03194424510002136,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 2.5688910484313965,
+ "step": 463
+ },
+ {
+ "epoch": 6.445993031358885,
+ "grad_norm": 0.029925566166639328,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 2.559793710708618,
+ "step": 464
+ },
+ {
+ "epoch": 6.45993031358885,
+ "grad_norm": 0.0290202796459198,
+ "learning_rate": 0.000584288196583439,
+ "loss": 2.555941581726074,
+ "step": 465
+ },
+ {
+ "epoch": 6.473867595818815,
+ "grad_norm": 0.030976103618741035,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 2.5576136112213135,
+ "step": 466
+ },
+ {
+ "epoch": 6.487804878048781,
+ "grad_norm": 0.030049985274672508,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 2.5645012855529785,
+ "step": 467
+ },
+ {
+ "epoch": 6.501742160278746,
+ "grad_norm": 0.031192071735858917,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 2.5691795349121094,
+ "step": 468
+ },
+ {
+ "epoch": 6.515679442508711,
+ "grad_norm": 0.03066888637840748,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 2.5597329139709473,
+ "step": 469
+ },
+ {
+ "epoch": 6.529616724738676,
+ "grad_norm": 0.031034760177135468,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 2.5749378204345703,
+ "step": 470
+ },
+ {
+ "epoch": 6.543554006968641,
+ "grad_norm": 0.03199351951479912,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 2.564612627029419,
+ "step": 471
+ },
+ {
+ "epoch": 6.557491289198606,
+ "grad_norm": 0.027530083432793617,
+ "learning_rate": 0.000583683733328402,
+ "loss": 2.568983793258667,
+ "step": 472
+ },
+ {
+ "epoch": 6.571428571428571,
+ "grad_norm": 0.02841697260737419,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 2.551283836364746,
+ "step": 473
+ },
+ {
+ "epoch": 6.585365853658536,
+ "grad_norm": 0.03285123407840729,
+ "learning_rate": 0.000583508993216961,
+ "loss": 2.5753087997436523,
+ "step": 474
+ },
+ {
+ "epoch": 6.599303135888501,
+ "grad_norm": 0.0347592793405056,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 2.56103253364563,
+ "step": 475
+ },
+ {
+ "epoch": 6.613240418118467,
+ "grad_norm": 0.03750046715140343,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 2.5542030334472656,
+ "step": 476
+ },
+ {
+ "epoch": 6.627177700348432,
+ "grad_norm": 0.04254816472530365,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 2.5616328716278076,
+ "step": 477
+ },
+ {
+ "epoch": 6.641114982578397,
+ "grad_norm": 0.04370047152042389,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 2.5646753311157227,
+ "step": 478
+ },
+ {
+ "epoch": 6.655052264808362,
+ "grad_norm": 0.03816768899559975,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 2.5603585243225098,
+ "step": 479
+ },
+ {
+ "epoch": 6.668989547038327,
+ "grad_norm": 0.034390103071928024,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 2.548727512359619,
+ "step": 480
+ },
+ {
+ "epoch": 6.682926829268292,
+ "grad_norm": 0.0366024374961853,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 2.555230140686035,
+ "step": 481
+ },
+ {
+ "epoch": 6.696864111498257,
+ "grad_norm": 0.03938084468245506,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 2.5586276054382324,
+ "step": 482
+ },
+ {
+ "epoch": 6.710801393728223,
+ "grad_norm": 0.04110350087285042,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 2.542633056640625,
+ "step": 483
+ },
+ {
+ "epoch": 6.724738675958188,
+ "grad_norm": 0.03961770981550217,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 2.5494391918182373,
+ "step": 484
+ },
+ {
+ "epoch": 6.7386759581881535,
+ "grad_norm": 0.03677491098642349,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 2.563061475753784,
+ "step": 485
+ },
+ {
+ "epoch": 6.7526132404181185,
+ "grad_norm": 0.03818432241678238,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 2.5586929321289062,
+ "step": 486
+ },
+ {
+ "epoch": 6.7665505226480835,
+ "grad_norm": 0.033873286098241806,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 2.5477757453918457,
+ "step": 487
+ },
+ {
+ "epoch": 6.780487804878049,
+ "grad_norm": 0.03699466213583946,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 2.541106700897217,
+ "step": 488
+ },
+ {
+ "epoch": 6.794425087108014,
+ "grad_norm": 0.03866403177380562,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 2.5336339473724365,
+ "step": 489
+ },
+ {
+ "epoch": 6.80836236933798,
+ "grad_norm": 0.03235912322998047,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 2.5439155101776123,
+ "step": 490
+ },
+ {
+ "epoch": 6.822299651567945,
+ "grad_norm": 0.03776629641652107,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 2.5592265129089355,
+ "step": 491
+ },
+ {
+ "epoch": 6.83623693379791,
+ "grad_norm": 0.04273561015725136,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 2.5432629585266113,
+ "step": 492
+ },
+ {
+ "epoch": 6.850174216027875,
+ "grad_norm": 0.04358302056789398,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 2.5543787479400635,
+ "step": 493
+ },
+ {
+ "epoch": 6.86411149825784,
+ "grad_norm": 0.03629252687096596,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 2.562788963317871,
+ "step": 494
+ },
+ {
+ "epoch": 6.878048780487805,
+ "grad_norm": 0.03263307362794876,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 2.538097381591797,
+ "step": 495
+ },
+ {
+ "epoch": 6.89198606271777,
+ "grad_norm": 0.036420464515686035,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 2.554645299911499,
+ "step": 496
+ },
+ {
+ "epoch": 6.905923344947735,
+ "grad_norm": 0.035384103655815125,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 2.5465738773345947,
+ "step": 497
+ },
+ {
+ "epoch": 6.9198606271777,
+ "grad_norm": 0.03658696636557579,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 2.536980152130127,
+ "step": 498
+ },
+ {
+ "epoch": 6.933797909407666,
+ "grad_norm": 0.036053478717803955,
+ "learning_rate": 0.00058124865204371,
+ "loss": 2.528345823287964,
+ "step": 499
+ },
+ {
+ "epoch": 6.947735191637631,
+ "grad_norm": 0.03789985179901123,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 2.544621706008911,
+ "step": 500
+ },
+ {
+ "epoch": 6.961672473867596,
+ "grad_norm": 0.03835926949977875,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 2.5407447814941406,
+ "step": 501
+ },
+ {
+ "epoch": 6.975609756097561,
+ "grad_norm": 0.04318110644817352,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 2.5537543296813965,
+ "step": 502
+ },
+ {
+ "epoch": 6.989547038327526,
+ "grad_norm": 0.0451606847345829,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 2.5201051235198975,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.03245232254266739,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 1.9085171222686768,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 0.6467739343643188,
+ "eval_runtime": 38.2431,
+ "eval_samples_per_second": 63.855,
+ "eval_steps_per_second": 0.523,
+ "step": 504
+ },
+ {
+ "epoch": 7.013937282229965,
+ "grad_norm": 0.03788387402892113,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 2.493765354156494,
+ "step": 505
+ },
+ {
+ "epoch": 7.02787456445993,
+ "grad_norm": 0.04437057301402092,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 2.509481430053711,
+ "step": 506
+ },
+ {
+ "epoch": 7.041811846689895,
+ "grad_norm": 0.047125279903411865,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 2.504810333251953,
+ "step": 507
+ },
+ {
+ "epoch": 7.055749128919861,
+ "grad_norm": 0.05385598540306091,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 2.5145554542541504,
+ "step": 508
+ },
+ {
+ "epoch": 7.069686411149826,
+ "grad_norm": 0.05404049903154373,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 2.500851631164551,
+ "step": 509
+ },
+ {
+ "epoch": 7.083623693379791,
+ "grad_norm": 0.05455894395709038,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 2.4832260608673096,
+ "step": 510
+ },
+ {
+ "epoch": 7.097560975609756,
+ "grad_norm": 0.0558103583753109,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 2.524315118789673,
+ "step": 511
+ },
+ {
+ "epoch": 7.111498257839721,
+ "grad_norm": 0.057283915579319,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 2.508044719696045,
+ "step": 512
+ },
+ {
+ "epoch": 7.125435540069686,
+ "grad_norm": 0.061027105897665024,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 2.5139050483703613,
+ "step": 513
+ },
+ {
+ "epoch": 7.139372822299651,
+ "grad_norm": 0.06873901933431625,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 2.507343053817749,
+ "step": 514
+ },
+ {
+ "epoch": 7.153310104529616,
+ "grad_norm": 0.06900028139352798,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 2.520263195037842,
+ "step": 515
+ },
+ {
+ "epoch": 7.167247386759582,
+ "grad_norm": 0.06029877811670303,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 2.5027518272399902,
+ "step": 516
+ },
+ {
+ "epoch": 7.181184668989547,
+ "grad_norm": 0.06097294017672539,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 2.512634515762329,
+ "step": 517
+ },
+ {
+ "epoch": 7.195121951219512,
+ "grad_norm": 0.06655558943748474,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 2.5014023780822754,
+ "step": 518
+ },
+ {
+ "epoch": 7.209059233449477,
+ "grad_norm": 0.06343840062618256,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 2.5144271850585938,
+ "step": 519
+ },
+ {
+ "epoch": 7.2229965156794425,
+ "grad_norm": 0.08325106650590897,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 2.5239195823669434,
+ "step": 520
+ },
+ {
+ "epoch": 7.2369337979094075,
+ "grad_norm": 0.07948101311922073,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 2.5223121643066406,
+ "step": 521
+ },
+ {
+ "epoch": 7.2508710801393725,
+ "grad_norm": 0.06717163324356079,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 2.5102391242980957,
+ "step": 522
+ },
+ {
+ "epoch": 7.264808362369338,
+ "grad_norm": 0.05896087363362312,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 2.51560640335083,
+ "step": 523
+ },
+ {
+ "epoch": 7.2787456445993035,
+ "grad_norm": 0.05562684312462807,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 2.5021753311157227,
+ "step": 524
+ },
+ {
+ "epoch": 7.2926829268292686,
+ "grad_norm": 0.043904103338718414,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 2.4952425956726074,
+ "step": 525
+ },
+ {
+ "epoch": 7.306620209059234,
+ "grad_norm": 0.0436740480363369,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 2.515303611755371,
+ "step": 526
+ },
+ {
+ "epoch": 7.320557491289199,
+ "grad_norm": 0.0395866297185421,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 2.5101678371429443,
+ "step": 527
+ },
+ {
+ "epoch": 7.334494773519164,
+ "grad_norm": 0.039552897214889526,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 2.5090293884277344,
+ "step": 528
+ },
+ {
+ "epoch": 7.348432055749129,
+ "grad_norm": 0.03839687630534172,
+ "learning_rate": 0.000578351407086301,
+ "loss": 2.505296468734741,
+ "step": 529
+ },
+ {
+ "epoch": 7.362369337979094,
+ "grad_norm": 0.042542796581983566,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 2.49535870552063,
+ "step": 530
+ },
+ {
+ "epoch": 7.376306620209059,
+ "grad_norm": 0.044322993606328964,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 2.4890050888061523,
+ "step": 531
+ },
+ {
+ "epoch": 7.390243902439025,
+ "grad_norm": 0.04029953107237816,
+ "learning_rate": 0.000578050665972623,
+ "loss": 2.500995397567749,
+ "step": 532
+ },
+ {
+ "epoch": 7.40418118466899,
+ "grad_norm": 0.044392652809619904,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 2.505852222442627,
+ "step": 533
+ },
+ {
+ "epoch": 7.418118466898955,
+ "grad_norm": 0.04363880679011345,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 2.4939942359924316,
+ "step": 534
+ },
+ {
+ "epoch": 7.43205574912892,
+ "grad_norm": 0.03960833698511124,
+ "learning_rate": 0.000577747930429834,
+ "loss": 2.507826805114746,
+ "step": 535
+ },
+ {
+ "epoch": 7.445993031358885,
+ "grad_norm": 0.03880009427666664,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 2.4876725673675537,
+ "step": 536
+ },
+ {
+ "epoch": 7.45993031358885,
+ "grad_norm": 0.034344322979450226,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 2.5032553672790527,
+ "step": 537
+ },
+ {
+ "epoch": 7.473867595818815,
+ "grad_norm": 0.030360646545886993,
+ "learning_rate": 0.00057744320265311,
+ "loss": 2.4887325763702393,
+ "step": 538
+ },
+ {
+ "epoch": 7.487804878048781,
+ "grad_norm": 0.030478516593575478,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 2.5041327476501465,
+ "step": 539
+ },
+ {
+ "epoch": 7.501742160278746,
+ "grad_norm": 0.030038833618164062,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 2.488068103790283,
+ "step": 540
+ },
+ {
+ "epoch": 7.515679442508711,
+ "grad_norm": 0.03227488324046135,
+ "learning_rate": 0.000577136484852073,
+ "loss": 2.4851627349853516,
+ "step": 541
+ },
+ {
+ "epoch": 7.529616724738676,
+ "grad_norm": 0.03053610771894455,
+ "learning_rate": 0.000577033803741424,
+ "loss": 2.48903226852417,
+ "step": 542
+ },
+ {
+ "epoch": 7.543554006968641,
+ "grad_norm": 0.030809711664915085,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 2.487685203552246,
+ "step": 543
+ },
+ {
+ "epoch": 7.557491289198606,
+ "grad_norm": 0.03001537173986435,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 2.4998037815093994,
+ "step": 544
+ },
+ {
+ "epoch": 7.571428571428571,
+ "grad_norm": 0.028761114925146103,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 2.4887194633483887,
+ "step": 545
+ },
+ {
+ "epoch": 7.585365853658536,
+ "grad_norm": 0.028289001435041428,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 2.4748306274414062,
+ "step": 546
+ },
+ {
+ "epoch": 7.599303135888501,
+ "grad_norm": 0.028406348079442978,
+ "learning_rate": 0.00057651708808768,
+ "loss": 2.490642786026001,
+ "step": 547
+ },
+ {
+ "epoch": 7.613240418118467,
+ "grad_norm": 0.027616780251264572,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 2.4816768169403076,
+ "step": 548
+ },
+ {
+ "epoch": 7.627177700348432,
+ "grad_norm": 0.028579063713550568,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 2.49285888671875,
+ "step": 549
+ },
+ {
+ "epoch": 7.641114982578397,
+ "grad_norm": 0.032302722334861755,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 2.4891176223754883,
+ "step": 550
+ },
+ {
+ "epoch": 7.655052264808362,
+ "grad_norm": 0.03428734466433525,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 2.4945361614227295,
+ "step": 551
+ },
+ {
+ "epoch": 7.668989547038327,
+ "grad_norm": 0.03326137363910675,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 2.483844518661499,
+ "step": 552
+ },
+ {
+ "epoch": 7.682926829268292,
+ "grad_norm": 0.03136003762483597,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 2.4965500831604004,
+ "step": 553
+ },
+ {
+ "epoch": 7.696864111498257,
+ "grad_norm": 0.031299516558647156,
+ "learning_rate": 0.000575784433093151,
+ "loss": 2.4755914211273193,
+ "step": 554
+ },
+ {
+ "epoch": 7.710801393728223,
+ "grad_norm": 0.030511915683746338,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 2.4844446182250977,
+ "step": 555
+ },
+ {
+ "epoch": 7.724738675958188,
+ "grad_norm": 0.03106229193508625,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 2.4614830017089844,
+ "step": 556
+ },
+ {
+ "epoch": 7.7386759581881535,
+ "grad_norm": 0.032561615109443665,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 2.476231813430786,
+ "step": 557
+ },
+ {
+ "epoch": 7.7526132404181185,
+ "grad_norm": 0.03334634751081467,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 2.4722485542297363,
+ "step": 558
+ },
+ {
+ "epoch": 7.7665505226480835,
+ "grad_norm": 0.03567497059702873,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 2.471876621246338,
+ "step": 559
+ },
+ {
+ "epoch": 7.780487804878049,
+ "grad_norm": 0.038662221282720566,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 2.4947409629821777,
+ "step": 560
+ },
+ {
+ "epoch": 7.794425087108014,
+ "grad_norm": 0.036901816725730896,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 2.470515489578247,
+ "step": 561
+ },
+ {
+ "epoch": 7.80836236933798,
+ "grad_norm": 0.03382178768515587,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 2.4678587913513184,
+ "step": 562
+ },
+ {
+ "epoch": 7.822299651567945,
+ "grad_norm": 0.03480829298496246,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 2.4690866470336914,
+ "step": 563
+ },
+ {
+ "epoch": 7.83623693379791,
+ "grad_norm": 0.03593127429485321,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 2.491703748703003,
+ "step": 564
+ },
+ {
+ "epoch": 7.850174216027875,
+ "grad_norm": 0.03532601520419121,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 2.468522548675537,
+ "step": 565
+ },
+ {
+ "epoch": 7.86411149825784,
+ "grad_norm": 0.035680219531059265,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 2.4759652614593506,
+ "step": 566
+ },
+ {
+ "epoch": 7.878048780487805,
+ "grad_norm": 0.03417263925075531,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 2.4931888580322266,
+ "step": 567
+ },
+ {
+ "epoch": 7.89198606271777,
+ "grad_norm": 0.03273053467273712,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 2.466641426086426,
+ "step": 568
+ },
+ {
+ "epoch": 7.905923344947735,
+ "grad_norm": 0.032283321022987366,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 2.466756820678711,
+ "step": 569
+ },
+ {
+ "epoch": 7.9198606271777,
+ "grad_norm": 0.03162473440170288,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 2.4725847244262695,
+ "step": 570
+ },
+ {
+ "epoch": 7.933797909407666,
+ "grad_norm": 0.03218452259898186,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 2.46532940864563,
+ "step": 571
+ },
+ {
+ "epoch": 7.947735191637631,
+ "grad_norm": 0.03216313198208809,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 2.4749364852905273,
+ "step": 572
+ },
+ {
+ "epoch": 7.961672473867596,
+ "grad_norm": 0.03091583214700222,
+ "learning_rate": 0.000573741597999996,
+ "loss": 2.470108985900879,
+ "step": 573
+ },
+ {
+ "epoch": 7.975609756097561,
+ "grad_norm": 0.028130974620580673,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 2.466053009033203,
+ "step": 574
+ },
+ {
+ "epoch": 7.989547038327526,
+ "grad_norm": 0.03071889653801918,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 2.4787344932556152,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.02555985376238823,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 1.8408641815185547,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 0.6343774199485779,
+ "eval_runtime": 38.5533,
+ "eval_samples_per_second": 63.341,
+ "eval_steps_per_second": 0.519,
+ "step": 576
+ },
+ {
+ "epoch": 8.013937282229966,
+ "grad_norm": 0.03359892964363098,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 2.4359030723571777,
+ "step": 577
+ },
+ {
+ "epoch": 8.02787456445993,
+ "grad_norm": 0.05054016411304474,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 2.4193553924560547,
+ "step": 578
+ },
+ {
+ "epoch": 8.041811846689896,
+ "grad_norm": 0.062336456030607224,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 2.4455740451812744,
+ "step": 579
+ },
+ {
+ "epoch": 8.05574912891986,
+ "grad_norm": 0.06716352701187134,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 2.4429545402526855,
+ "step": 580
+ },
+ {
+ "epoch": 8.069686411149826,
+ "grad_norm": 0.06647022068500519,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 2.4446518421173096,
+ "step": 581
+ },
+ {
+ "epoch": 8.08362369337979,
+ "grad_norm": 0.0826159194111824,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 2.436643600463867,
+ "step": 582
+ },
+ {
+ "epoch": 8.097560975609756,
+ "grad_norm": 0.08472150564193726,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 2.451641082763672,
+ "step": 583
+ },
+ {
+ "epoch": 8.111498257839722,
+ "grad_norm": 0.07912597805261612,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 2.447244167327881,
+ "step": 584
+ },
+ {
+ "epoch": 8.125435540069686,
+ "grad_norm": 0.0796087384223938,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 2.4437828063964844,
+ "step": 585
+ },
+ {
+ "epoch": 8.139372822299652,
+ "grad_norm": 0.07414955645799637,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 2.437047004699707,
+ "step": 586
+ },
+ {
+ "epoch": 8.153310104529616,
+ "grad_norm": 0.06763316690921783,
+ "learning_rate": 0.000572185929672906,
+ "loss": 2.446570873260498,
+ "step": 587
+ },
+ {
+ "epoch": 8.167247386759582,
+ "grad_norm": 0.05742042511701584,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 2.445460796356201,
+ "step": 588
+ },
+ {
+ "epoch": 8.181184668989546,
+ "grad_norm": 0.0572611466050148,
+ "learning_rate": 0.000571960215520345,
+ "loss": 2.4439504146575928,
+ "step": 589
+ },
+ {
+ "epoch": 8.195121951219512,
+ "grad_norm": 0.05339052528142929,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 2.4502882957458496,
+ "step": 590
+ },
+ {
+ "epoch": 8.209059233449477,
+ "grad_norm": 0.05900551751255989,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 2.450836658477783,
+ "step": 591
+ },
+ {
+ "epoch": 8.222996515679442,
+ "grad_norm": 0.06624466180801392,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 2.4539589881896973,
+ "step": 592
+ },
+ {
+ "epoch": 8.236933797909408,
+ "grad_norm": 0.06468363106250763,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 2.448918342590332,
+ "step": 593
+ },
+ {
+ "epoch": 8.250871080139373,
+ "grad_norm": 0.04979013651609421,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 2.447591781616211,
+ "step": 594
+ },
+ {
+ "epoch": 8.264808362369338,
+ "grad_norm": 0.047402940690517426,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 2.450143337249756,
+ "step": 595
+ },
+ {
+ "epoch": 8.278745644599303,
+ "grad_norm": 0.041620269417762756,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 2.4322123527526855,
+ "step": 596
+ },
+ {
+ "epoch": 8.292682926829269,
+ "grad_norm": 0.04016399011015892,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 2.4417006969451904,
+ "step": 597
+ },
+ {
+ "epoch": 8.306620209059233,
+ "grad_norm": 0.04293493181467056,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 2.4442501068115234,
+ "step": 598
+ },
+ {
+ "epoch": 8.320557491289199,
+ "grad_norm": 0.041785892099142075,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 2.4570703506469727,
+ "step": 599
+ },
+ {
+ "epoch": 8.334494773519165,
+ "grad_norm": 0.042869169265031815,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 2.4294066429138184,
+ "step": 600
+ },
+ {
+ "epoch": 8.348432055749129,
+ "grad_norm": 0.04059606418013573,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 2.4469175338745117,
+ "step": 601
+ },
+ {
+ "epoch": 8.362369337979095,
+ "grad_norm": 0.03664898872375488,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 2.432004451751709,
+ "step": 602
+ },
+ {
+ "epoch": 8.376306620209059,
+ "grad_norm": 0.031866125762462616,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 2.4305002689361572,
+ "step": 603
+ },
+ {
+ "epoch": 8.390243902439025,
+ "grad_norm": 0.03416220843791962,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 2.4407525062561035,
+ "step": 604
+ },
+ {
+ "epoch": 8.404181184668989,
+ "grad_norm": 0.03265870735049248,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 2.426929473876953,
+ "step": 605
+ },
+ {
+ "epoch": 8.418118466898955,
+ "grad_norm": 0.03337112441658974,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 2.443507671356201,
+ "step": 606
+ },
+ {
+ "epoch": 8.43205574912892,
+ "grad_norm": 0.0337977334856987,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 2.4583749771118164,
+ "step": 607
+ },
+ {
+ "epoch": 8.445993031358885,
+ "grad_norm": 0.02970845066010952,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 2.4297292232513428,
+ "step": 608
+ },
+ {
+ "epoch": 8.45993031358885,
+ "grad_norm": 0.03051869012415409,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 2.452547550201416,
+ "step": 609
+ },
+ {
+ "epoch": 8.473867595818815,
+ "grad_norm": 0.030234314501285553,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 2.427704334259033,
+ "step": 610
+ },
+ {
+ "epoch": 8.487804878048781,
+ "grad_norm": 0.0297533068805933,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 2.4193124771118164,
+ "step": 611
+ },
+ {
+ "epoch": 8.501742160278745,
+ "grad_norm": 0.030258657410740852,
+ "learning_rate": 0.000569302387925215,
+ "loss": 2.4159011840820312,
+ "step": 612
+ },
+ {
+ "epoch": 8.515679442508711,
+ "grad_norm": 0.029942622408270836,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 2.4217724800109863,
+ "step": 613
+ },
+ {
+ "epoch": 8.529616724738675,
+ "grad_norm": 0.030715234577655792,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 2.44870662689209,
+ "step": 614
+ },
+ {
+ "epoch": 8.543554006968641,
+ "grad_norm": 0.03252873569726944,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 2.417196750640869,
+ "step": 615
+ },
+ {
+ "epoch": 8.557491289198607,
+ "grad_norm": 0.03387020155787468,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 2.4181065559387207,
+ "step": 616
+ },
+ {
+ "epoch": 8.571428571428571,
+ "grad_norm": 0.035596199333667755,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 2.4240612983703613,
+ "step": 617
+ },
+ {
+ "epoch": 8.585365853658537,
+ "grad_norm": 0.03890643268823624,
+ "learning_rate": 0.000568590328960903,
+ "loss": 2.435359477996826,
+ "step": 618
+ },
+ {
+ "epoch": 8.599303135888501,
+ "grad_norm": 0.041447605937719345,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 2.4370574951171875,
+ "step": 619
+ },
+ {
+ "epoch": 8.613240418118467,
+ "grad_norm": 0.03584018349647522,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 2.4231667518615723,
+ "step": 620
+ },
+ {
+ "epoch": 8.627177700348431,
+ "grad_norm": 0.03309513255953789,
+ "learning_rate": 0.000568231409438027,
+ "loss": 2.4281513690948486,
+ "step": 621
+ },
+ {
+ "epoch": 8.641114982578397,
+ "grad_norm": 0.0365641750395298,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 2.4262235164642334,
+ "step": 622
+ },
+ {
+ "epoch": 8.655052264808361,
+ "grad_norm": 0.033776357769966125,
+ "learning_rate": 0.000567991061134677,
+ "loss": 2.4259705543518066,
+ "step": 623
+ },
+ {
+ "epoch": 8.668989547038327,
+ "grad_norm": 0.03251301124691963,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 2.4303622245788574,
+ "step": 624
+ },
+ {
+ "epoch": 8.682926829268293,
+ "grad_norm": 0.03311233967542648,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 2.4325923919677734,
+ "step": 625
+ },
+ {
+ "epoch": 8.696864111498257,
+ "grad_norm": 0.032762084156274796,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 2.423525333404541,
+ "step": 626
+ },
+ {
+ "epoch": 8.710801393728223,
+ "grad_norm": 0.03397396206855774,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 2.421725273132324,
+ "step": 627
+ },
+ {
+ "epoch": 8.724738675958188,
+ "grad_norm": 0.03827521204948425,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 2.417745590209961,
+ "step": 628
+ },
+ {
+ "epoch": 8.738675958188153,
+ "grad_norm": 0.03194425627589226,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 2.4408435821533203,
+ "step": 629
+ },
+ {
+ "epoch": 8.752613240418118,
+ "grad_norm": 0.02894434705376625,
+ "learning_rate": 0.000567143121979179,
+ "loss": 2.430302143096924,
+ "step": 630
+ },
+ {
+ "epoch": 8.766550522648084,
+ "grad_norm": 0.03130284696817398,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 2.4167380332946777,
+ "step": 631
+ },
+ {
+ "epoch": 8.78048780487805,
+ "grad_norm": 0.03176414966583252,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 2.4211833477020264,
+ "step": 632
+ },
+ {
+ "epoch": 8.794425087108014,
+ "grad_norm": 0.03023882955312729,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 2.4175009727478027,
+ "step": 633
+ },
+ {
+ "epoch": 8.80836236933798,
+ "grad_norm": 0.03027920238673687,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 2.4296345710754395,
+ "step": 634
+ },
+ {
+ "epoch": 8.822299651567944,
+ "grad_norm": 0.031661003828048706,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 2.4292376041412354,
+ "step": 635
+ },
+ {
+ "epoch": 8.83623693379791,
+ "grad_norm": 0.02943863719701767,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 2.422773599624634,
+ "step": 636
+ },
+ {
+ "epoch": 8.850174216027874,
+ "grad_norm": 0.02999107912182808,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 2.4288015365600586,
+ "step": 637
+ },
+ {
+ "epoch": 8.86411149825784,
+ "grad_norm": 0.03127457574009895,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 2.426997184753418,
+ "step": 638
+ },
+ {
+ "epoch": 8.878048780487806,
+ "grad_norm": 0.0321597196161747,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 2.418203353881836,
+ "step": 639
+ },
+ {
+ "epoch": 8.89198606271777,
+ "grad_norm": 0.032045748084783554,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 2.4220266342163086,
+ "step": 640
+ },
+ {
+ "epoch": 8.905923344947736,
+ "grad_norm": 0.031895119696855545,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 2.421767234802246,
+ "step": 641
+ },
+ {
+ "epoch": 8.9198606271777,
+ "grad_norm": 0.0330902598798275,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 2.418246269226074,
+ "step": 642
+ },
+ {
+ "epoch": 8.933797909407666,
+ "grad_norm": 0.03361523523926735,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 2.423337697982788,
+ "step": 643
+ },
+ {
+ "epoch": 8.94773519163763,
+ "grad_norm": 0.033133652061223984,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 2.4278783798217773,
+ "step": 644
+ },
+ {
+ "epoch": 8.961672473867596,
+ "grad_norm": 0.03747311979532242,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 2.434087038040161,
+ "step": 645
+ },
+ {
+ "epoch": 8.975609756097562,
+ "grad_norm": 0.036127083003520966,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 2.4167022705078125,
+ "step": 646
+ },
+ {
+ "epoch": 8.989547038327526,
+ "grad_norm": 0.03699145093560219,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 2.4243075847625732,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.028921982273459435,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 1.8086339235305786,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 0.6271453499794006,
+ "eval_runtime": 35.9474,
+ "eval_samples_per_second": 67.933,
+ "eval_steps_per_second": 0.556,
+ "step": 648
+ },
+ {
+ "epoch": 9.013937282229966,
+ "grad_norm": 0.0380239300429821,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 2.377704381942749,
+ "step": 649
+ },
+ {
+ "epoch": 9.02787456445993,
+ "grad_norm": 0.05574064329266548,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 2.399777889251709,
+ "step": 650
+ },
+ {
+ "epoch": 9.041811846689896,
+ "grad_norm": 0.06179674342274666,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 2.3851845264434814,
+ "step": 651
+ },
+ {
+ "epoch": 9.05574912891986,
+ "grad_norm": 0.06461436301469803,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 2.385363817214966,
+ "step": 652
+ },
+ {
+ "epoch": 9.069686411149826,
+ "grad_norm": 0.058009687811136246,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 2.3721890449523926,
+ "step": 653
+ },
+ {
+ "epoch": 9.08362369337979,
+ "grad_norm": 0.06488639861345291,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 2.386878490447998,
+ "step": 654
+ },
+ {
+ "epoch": 9.097560975609756,
+ "grad_norm": 0.05683685839176178,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 2.3946213722229004,
+ "step": 655
+ },
+ {
+ "epoch": 9.111498257839722,
+ "grad_norm": 0.05336347594857216,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 2.3708930015563965,
+ "step": 656
+ },
+ {
+ "epoch": 9.125435540069686,
+ "grad_norm": 0.05320737510919571,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 2.39091157913208,
+ "step": 657
+ },
+ {
+ "epoch": 9.139372822299652,
+ "grad_norm": 0.05641087517142296,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 2.381009578704834,
+ "step": 658
+ },
+ {
+ "epoch": 9.153310104529616,
+ "grad_norm": 0.06087775528430939,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 2.377963066101074,
+ "step": 659
+ },
+ {
+ "epoch": 9.167247386759582,
+ "grad_norm": 0.06592115014791489,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 2.392094135284424,
+ "step": 660
+ },
+ {
+ "epoch": 9.181184668989546,
+ "grad_norm": 0.061441708356142044,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 2.388850212097168,
+ "step": 661
+ },
+ {
+ "epoch": 9.195121951219512,
+ "grad_norm": 0.06311637908220291,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 2.38919734954834,
+ "step": 662
+ },
+ {
+ "epoch": 9.209059233449477,
+ "grad_norm": 0.07152658700942993,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 2.3724892139434814,
+ "step": 663
+ },
+ {
+ "epoch": 9.222996515679442,
+ "grad_norm": 0.06927355378866196,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 2.4017786979675293,
+ "step": 664
+ },
+ {
+ "epoch": 9.236933797909408,
+ "grad_norm": 0.062740758061409,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 2.376430034637451,
+ "step": 665
+ },
+ {
+ "epoch": 9.250871080139373,
+ "grad_norm": 0.051289040595293045,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 2.3926010131835938,
+ "step": 666
+ },
+ {
+ "epoch": 9.264808362369338,
+ "grad_norm": 0.055630262941122055,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 2.3605382442474365,
+ "step": 667
+ },
+ {
+ "epoch": 9.278745644599303,
+ "grad_norm": 0.052814628928899765,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 2.374608039855957,
+ "step": 668
+ },
+ {
+ "epoch": 9.292682926829269,
+ "grad_norm": 0.05927073210477829,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 2.384093999862671,
+ "step": 669
+ },
+ {
+ "epoch": 9.306620209059233,
+ "grad_norm": 0.05510697513818741,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 2.374708652496338,
+ "step": 670
+ },
+ {
+ "epoch": 9.320557491289199,
+ "grad_norm": 0.048580385744571686,
+ "learning_rate": 0.000561968326197397,
+ "loss": 2.3861031532287598,
+ "step": 671
+ },
+ {
+ "epoch": 9.334494773519165,
+ "grad_norm": 0.04905429109930992,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 2.3835110664367676,
+ "step": 672
+ },
+ {
+ "epoch": 9.348432055749129,
+ "grad_norm": 0.04621037095785141,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 2.379696846008301,
+ "step": 673
+ },
+ {
+ "epoch": 9.362369337979095,
+ "grad_norm": 0.0437726229429245,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 2.3854074478149414,
+ "step": 674
+ },
+ {
+ "epoch": 9.376306620209059,
+ "grad_norm": 0.040361031889915466,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 2.39682936668396,
+ "step": 675
+ },
+ {
+ "epoch": 9.390243902439025,
+ "grad_norm": 0.03848707675933838,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 2.3752408027648926,
+ "step": 676
+ },
+ {
+ "epoch": 9.404181184668989,
+ "grad_norm": 0.04017478972673416,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 2.3912038803100586,
+ "step": 677
+ },
+ {
+ "epoch": 9.418118466898955,
+ "grad_norm": 0.03487734496593475,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 2.389535427093506,
+ "step": 678
+ },
+ {
+ "epoch": 9.43205574912892,
+ "grad_norm": 0.03736500069499016,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 2.3840279579162598,
+ "step": 679
+ },
+ {
+ "epoch": 9.445993031358885,
+ "grad_norm": 0.03499516844749451,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 2.3752779960632324,
+ "step": 680
+ },
+ {
+ "epoch": 9.45993031358885,
+ "grad_norm": 0.03297547250986099,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 2.3991637229919434,
+ "step": 681
+ },
+ {
+ "epoch": 9.473867595818815,
+ "grad_norm": 0.03387392312288284,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 2.3872644901275635,
+ "step": 682
+ },
+ {
+ "epoch": 9.487804878048781,
+ "grad_norm": 0.03756970539689064,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 2.368522882461548,
+ "step": 683
+ },
+ {
+ "epoch": 9.501742160278745,
+ "grad_norm": 0.03686998412013054,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 2.381460189819336,
+ "step": 684
+ },
+ {
+ "epoch": 9.515679442508711,
+ "grad_norm": 0.03336082771420479,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 2.3871984481811523,
+ "step": 685
+ },
+ {
+ "epoch": 9.529616724738675,
+ "grad_norm": 0.03545147553086281,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 2.3921163082122803,
+ "step": 686
+ },
+ {
+ "epoch": 9.543554006968641,
+ "grad_norm": 0.03614704683423042,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 2.388418197631836,
+ "step": 687
+ },
+ {
+ "epoch": 9.557491289198607,
+ "grad_norm": 0.0350213497877121,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 2.399055004119873,
+ "step": 688
+ },
+ {
+ "epoch": 9.571428571428571,
+ "grad_norm": 0.035602837800979614,
+ "learning_rate": 0.000559585254906272,
+ "loss": 2.3897178173065186,
+ "step": 689
+ },
+ {
+ "epoch": 9.585365853658537,
+ "grad_norm": 0.03438388183712959,
+ "learning_rate": 0.000559450892376025,
+ "loss": 2.407155990600586,
+ "step": 690
+ },
+ {
+ "epoch": 9.599303135888501,
+ "grad_norm": 0.035386405885219574,
+ "learning_rate": 0.000559316323227926,
+ "loss": 2.390408992767334,
+ "step": 691
+ },
+ {
+ "epoch": 9.613240418118467,
+ "grad_norm": 0.03753617778420448,
+ "learning_rate": 0.000559181547570395,
+ "loss": 2.3751039505004883,
+ "step": 692
+ },
+ {
+ "epoch": 9.627177700348431,
+ "grad_norm": 0.03430183231830597,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 2.3941941261291504,
+ "step": 693
+ },
+ {
+ "epoch": 9.641114982578397,
+ "grad_norm": 0.03268825262784958,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 2.3772215843200684,
+ "step": 694
+ },
+ {
+ "epoch": 9.655052264808361,
+ "grad_norm": 0.0341268889605999,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 2.3830480575561523,
+ "step": 695
+ },
+ {
+ "epoch": 9.668989547038327,
+ "grad_norm": 0.03466663882136345,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 2.3796463012695312,
+ "step": 696
+ },
+ {
+ "epoch": 9.682926829268293,
+ "grad_norm": 0.03470399230718613,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 2.385427713394165,
+ "step": 697
+ },
+ {
+ "epoch": 9.696864111498257,
+ "grad_norm": 0.0382751040160656,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 2.3877949714660645,
+ "step": 698
+ },
+ {
+ "epoch": 9.710801393728223,
+ "grad_norm": 0.035988591611385345,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 2.378014326095581,
+ "step": 699
+ },
+ {
+ "epoch": 9.724738675958188,
+ "grad_norm": 0.03295210376381874,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 2.382502555847168,
+ "step": 700
+ },
+ {
+ "epoch": 9.738675958188153,
+ "grad_norm": 0.030723385512828827,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 2.388451099395752,
+ "step": 701
+ },
+ {
+ "epoch": 9.752613240418118,
+ "grad_norm": 0.03281056135892868,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 2.387669086456299,
+ "step": 702
+ },
+ {
+ "epoch": 9.766550522648084,
+ "grad_norm": 0.03443330153822899,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 2.381460189819336,
+ "step": 703
+ },
+ {
+ "epoch": 9.78048780487805,
+ "grad_norm": 0.03670412674546242,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 2.3756155967712402,
+ "step": 704
+ },
+ {
+ "epoch": 9.794425087108014,
+ "grad_norm": 0.03445884957909584,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 2.371798515319824,
+ "step": 705
+ },
+ {
+ "epoch": 9.80836236933798,
+ "grad_norm": 0.03341168165206909,
+ "learning_rate": 0.000557273065985207,
+ "loss": 2.366093635559082,
+ "step": 706
+ },
+ {
+ "epoch": 9.822299651567944,
+ "grad_norm": 0.035434722900390625,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 2.3876760005950928,
+ "step": 707
+ },
+ {
+ "epoch": 9.83623693379791,
+ "grad_norm": 0.036071036010980606,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 2.363477945327759,
+ "step": 708
+ },
+ {
+ "epoch": 9.850174216027874,
+ "grad_norm": 0.03642858937382698,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 2.3772635459899902,
+ "step": 709
+ },
+ {
+ "epoch": 9.86411149825784,
+ "grad_norm": 0.03974858298897743,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 2.3893399238586426,
+ "step": 710
+ },
+ {
+ "epoch": 9.878048780487806,
+ "grad_norm": 0.040428902953863144,
+ "learning_rate": 0.000556581718698499,
+ "loss": 2.385814666748047,
+ "step": 711
+ },
+ {
+ "epoch": 9.89198606271777,
+ "grad_norm": 0.03710169717669487,
+ "learning_rate": 0.000556442835876097,
+ "loss": 2.3817856311798096,
+ "step": 712
+ },
+ {
+ "epoch": 9.905923344947736,
+ "grad_norm": 0.031853094696998596,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 2.3833706378936768,
+ "step": 713
+ },
+ {
+ "epoch": 9.9198606271777,
+ "grad_norm": 0.03192576766014099,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 2.380492687225342,
+ "step": 714
+ },
+ {
+ "epoch": 9.933797909407666,
+ "grad_norm": 0.03222471475601196,
+ "learning_rate": 0.000556024962691404,
+ "loss": 2.368129014968872,
+ "step": 715
+ },
+ {
+ "epoch": 9.94773519163763,
+ "grad_norm": 0.033947065472602844,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 2.392598867416382,
+ "step": 716
+ },
+ {
+ "epoch": 9.961672473867596,
+ "grad_norm": 0.030860550701618195,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 2.392878532409668,
+ "step": 717
+ },
+ {
+ "epoch": 9.975609756097562,
+ "grad_norm": 0.03237077221274376,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 2.3881583213806152,
+ "step": 718
+ },
+ {
+ "epoch": 9.989547038327526,
+ "grad_norm": 0.03429335355758667,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 2.385345458984375,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.025040561333298683,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 1.7694379091262817,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 0.6226440668106079,
+ "eval_runtime": 35.9996,
+ "eval_samples_per_second": 67.834,
+ "eval_steps_per_second": 0.556,
+ "step": 720
+ },
+ {
+ "epoch": 10.013937282229966,
+ "grad_norm": 0.04380113258957863,
+ "learning_rate": 0.0005551837152119915,
+ "loss": 2.338531494140625,
+ "step": 721
+ },
+ {
+ "epoch": 10.02787456445993,
+ "grad_norm": 0.06502492725849152,
+ "learning_rate": 0.0005550427955088455,
+ "loss": 2.336862087249756,
+ "step": 722
+ },
+ {
+ "epoch": 10.041811846689896,
+ "grad_norm": 0.06072859466075897,
+ "learning_rate": 0.0005549016727393715,
+ "loss": 2.345121383666992,
+ "step": 723
+ },
+ {
+ "epoch": 10.05574912891986,
+ "grad_norm": 0.06489435583353043,
+ "learning_rate": 0.0005547603470172697,
+ "loss": 2.3135323524475098,
+ "step": 724
+ },
+ {
+ "epoch": 10.069686411149826,
+ "grad_norm": 0.07557415962219238,
+ "learning_rate": 0.0005546188184564036,
+ "loss": 2.346886157989502,
+ "step": 725
+ },
+ {
+ "epoch": 10.08362369337979,
+ "grad_norm": 0.07416220009326935,
+ "learning_rate": 0.0005544770871708004,
+ "loss": 2.347463607788086,
+ "step": 726
+ },
+ {
+ "epoch": 10.097560975609756,
+ "grad_norm": 0.07228727638721466,
+ "learning_rate": 0.0005543351532746501,
+ "loss": 2.351980209350586,
+ "step": 727
+ },
+ {
+ "epoch": 10.111498257839722,
+ "grad_norm": 0.07207637280225754,
+ "learning_rate": 0.0005541930168823067,
+ "loss": 2.3345837593078613,
+ "step": 728
+ },
+ {
+ "epoch": 10.125435540069686,
+ "grad_norm": 0.07364149391651154,
+ "learning_rate": 0.0005540506781082864,
+ "loss": 2.3545069694519043,
+ "step": 729
+ },
+ {
+ "epoch": 10.139372822299652,
+ "grad_norm": 0.06596208363771439,
+ "learning_rate": 0.0005539081370672695,
+ "loss": 2.3250179290771484,
+ "step": 730
+ },
+ {
+ "epoch": 10.153310104529616,
+ "grad_norm": 0.07143490016460419,
+ "learning_rate": 0.0005537653938740984,
+ "loss": 2.352842330932617,
+ "step": 731
+ },
+ {
+ "epoch": 10.167247386759582,
+ "grad_norm": 0.06986920535564423,
+ "learning_rate": 0.0005536224486437788,
+ "loss": 2.3406600952148438,
+ "step": 732
+ },
+ {
+ "epoch": 10.181184668989546,
+ "grad_norm": 0.06723238527774811,
+ "learning_rate": 0.0005534793014914793,
+ "loss": 2.36100435256958,
+ "step": 733
+ },
+ {
+ "epoch": 10.195121951219512,
+ "grad_norm": 0.07599805295467377,
+ "learning_rate": 0.0005533359525325307,
+ "loss": 2.364171028137207,
+ "step": 734
+ },
+ {
+ "epoch": 10.209059233449477,
+ "grad_norm": 0.06879840791225433,
+ "learning_rate": 0.0005531924018824266,
+ "loss": 2.3600802421569824,
+ "step": 735
+ },
+ {
+ "epoch": 10.222996515679442,
+ "grad_norm": 0.06736139208078384,
+ "learning_rate": 0.0005530486496568236,
+ "loss": 2.3630075454711914,
+ "step": 736
+ },
+ {
+ "epoch": 10.236933797909408,
+ "grad_norm": 0.073630690574646,
+ "learning_rate": 0.0005529046959715397,
+ "loss": 2.3535385131835938,
+ "step": 737
+ },
+ {
+ "epoch": 10.250871080139373,
+ "grad_norm": 0.081154465675354,
+ "learning_rate": 0.0005527605409425562,
+ "loss": 2.355775833129883,
+ "step": 738
+ },
+ {
+ "epoch": 10.264808362369338,
+ "grad_norm": 0.07517901808023453,
+ "learning_rate": 0.0005526161846860161,
+ "loss": 2.3474936485290527,
+ "step": 739
+ },
+ {
+ "epoch": 10.278745644599303,
+ "grad_norm": 0.06589196622371674,
+ "learning_rate": 0.0005524716273182245,
+ "loss": 2.356273651123047,
+ "step": 740
+ },
+ {
+ "epoch": 10.292682926829269,
+ "grad_norm": 0.07035321742296219,
+ "learning_rate": 0.0005523268689556489,
+ "loss": 2.3348515033721924,
+ "step": 741
+ },
+ {
+ "epoch": 10.306620209059233,
+ "grad_norm": 0.05464137718081474,
+ "learning_rate": 0.0005521819097149183,
+ "loss": 2.340257167816162,
+ "step": 742
+ },
+ {
+ "epoch": 10.320557491289199,
+ "grad_norm": 0.05040175840258598,
+ "learning_rate": 0.0005520367497128238,
+ "loss": 2.356626033782959,
+ "step": 743
+ },
+ {
+ "epoch": 10.334494773519165,
+ "grad_norm": 0.04544971138238907,
+ "learning_rate": 0.0005518913890663182,
+ "loss": 2.3765573501586914,
+ "step": 744
+ },
+ {
+ "epoch": 10.348432055749129,
+ "grad_norm": 0.04246767982840538,
+ "learning_rate": 0.0005517458278925161,
+ "loss": 2.3584630489349365,
+ "step": 745
+ },
+ {
+ "epoch": 10.362369337979095,
+ "grad_norm": 0.0407957099378109,
+ "learning_rate": 0.0005516000663086932,
+ "loss": 2.3562331199645996,
+ "step": 746
+ },
+ {
+ "epoch": 10.376306620209059,
+ "grad_norm": 0.04157666489481926,
+ "learning_rate": 0.0005514541044322872,
+ "loss": 2.355463743209839,
+ "step": 747
+ },
+ {
+ "epoch": 10.390243902439025,
+ "grad_norm": 0.03842373192310333,
+ "learning_rate": 0.0005513079423808967,
+ "loss": 2.3644120693206787,
+ "step": 748
+ },
+ {
+ "epoch": 10.404181184668989,
+ "grad_norm": 0.03891562297940254,
+ "learning_rate": 0.0005511615802722823,
+ "loss": 2.3579063415527344,
+ "step": 749
+ },
+ {
+ "epoch": 10.418118466898955,
+ "grad_norm": 0.03712530806660652,
+ "learning_rate": 0.0005510150182243647,
+ "loss": 2.3606715202331543,
+ "step": 750
+ },
+ {
+ "epoch": 10.43205574912892,
+ "grad_norm": 0.03664202243089676,
+ "learning_rate": 0.0005508682563552269,
+ "loss": 2.3363728523254395,
+ "step": 751
+ },
+ {
+ "epoch": 10.445993031358885,
+ "grad_norm": 0.03555043414235115,
+ "learning_rate": 0.0005507212947831119,
+ "loss": 2.357100009918213,
+ "step": 752
+ },
+ {
+ "epoch": 10.45993031358885,
+ "grad_norm": 0.0355045385658741,
+ "learning_rate": 0.0005505741336264239,
+ "loss": 2.348784923553467,
+ "step": 753
+ },
+ {
+ "epoch": 10.473867595818815,
+ "grad_norm": 0.036513347178697586,
+ "learning_rate": 0.0005504267730037283,
+ "loss": 2.3371458053588867,
+ "step": 754
+ },
+ {
+ "epoch": 10.487804878048781,
+ "grad_norm": 0.034735117107629776,
+ "learning_rate": 0.0005502792130337508,
+ "loss": 2.3379664421081543,
+ "step": 755
+ },
+ {
+ "epoch": 10.501742160278745,
+ "grad_norm": 0.032890401780605316,
+ "learning_rate": 0.0005501314538353776,
+ "loss": 2.345534563064575,
+ "step": 756
+ },
+ {
+ "epoch": 10.515679442508711,
+ "grad_norm": 0.0343078076839447,
+ "learning_rate": 0.000549983495527656,
+ "loss": 2.3425400257110596,
+ "step": 757
+ },
+ {
+ "epoch": 10.529616724738675,
+ "grad_norm": 0.036330267786979675,
+ "learning_rate": 0.000549835338229793,
+ "loss": 2.353668689727783,
+ "step": 758
+ },
+ {
+ "epoch": 10.543554006968641,
+ "grad_norm": 0.03595716878771782,
+ "learning_rate": 0.0005496869820611563,
+ "loss": 2.340348958969116,
+ "step": 759
+ },
+ {
+ "epoch": 10.557491289198607,
+ "grad_norm": 0.03567204624414444,
+ "learning_rate": 0.0005495384271412739,
+ "loss": 2.3443446159362793,
+ "step": 760
+ },
+ {
+ "epoch": 10.571428571428571,
+ "grad_norm": 0.03243366256356239,
+ "learning_rate": 0.0005493896735898338,
+ "loss": 2.328749179840088,
+ "step": 761
+ },
+ {
+ "epoch": 10.585365853658537,
+ "grad_norm": 0.033156730234622955,
+ "learning_rate": 0.000549240721526684,
+ "loss": 2.3553342819213867,
+ "step": 762
+ },
+ {
+ "epoch": 10.599303135888501,
+ "grad_norm": 0.03489018976688385,
+ "learning_rate": 0.0005490915710718325,
+ "loss": 2.329984664916992,
+ "step": 763
+ },
+ {
+ "epoch": 10.613240418118467,
+ "grad_norm": 0.0352267362177372,
+ "learning_rate": 0.0005489422223454471,
+ "loss": 2.34751033782959,
+ "step": 764
+ },
+ {
+ "epoch": 10.627177700348431,
+ "grad_norm": 0.03212668001651764,
+ "learning_rate": 0.0005487926754678556,
+ "loss": 2.341987133026123,
+ "step": 765
+ },
+ {
+ "epoch": 10.641114982578397,
+ "grad_norm": 0.03473065048456192,
+ "learning_rate": 0.0005486429305595448,
+ "loss": 2.343632221221924,
+ "step": 766
+ },
+ {
+ "epoch": 10.655052264808361,
+ "grad_norm": 0.03458387404680252,
+ "learning_rate": 0.0005484929877411618,
+ "loss": 2.3420281410217285,
+ "step": 767
+ },
+ {
+ "epoch": 10.668989547038327,
+ "grad_norm": 0.03573968634009361,
+ "learning_rate": 0.0005483428471335127,
+ "loss": 2.349421501159668,
+ "step": 768
+ },
+ {
+ "epoch": 10.682926829268293,
+ "grad_norm": 0.034877803176641464,
+ "learning_rate": 0.000548192508857563,
+ "loss": 2.354094982147217,
+ "step": 769
+ },
+ {
+ "epoch": 10.696864111498257,
+ "grad_norm": 0.03350481390953064,
+ "learning_rate": 0.0005480419730344377,
+ "loss": 2.334352493286133,
+ "step": 770
+ },
+ {
+ "epoch": 10.710801393728223,
+ "grad_norm": 0.03327416628599167,
+ "learning_rate": 0.0005478912397854208,
+ "loss": 2.3445448875427246,
+ "step": 771
+ },
+ {
+ "epoch": 10.724738675958188,
+ "grad_norm": 0.03491336479783058,
+ "learning_rate": 0.0005477403092319552,
+ "loss": 2.3525538444519043,
+ "step": 772
+ },
+ {
+ "epoch": 10.738675958188153,
+ "grad_norm": 0.035869523882865906,
+ "learning_rate": 0.0005475891814956429,
+ "loss": 2.3440966606140137,
+ "step": 773
+ },
+ {
+ "epoch": 10.752613240418118,
+ "grad_norm": 0.036187391728162766,
+ "learning_rate": 0.0005474378566982449,
+ "loss": 2.33382511138916,
+ "step": 774
+ },
+ {
+ "epoch": 10.766550522648084,
+ "grad_norm": 0.037324003875255585,
+ "learning_rate": 0.0005472863349616809,
+ "loss": 2.3463244438171387,
+ "step": 775
+ },
+ {
+ "epoch": 10.78048780487805,
+ "grad_norm": 0.035808268934488297,
+ "learning_rate": 0.0005471346164080292,
+ "loss": 2.3392248153686523,
+ "step": 776
+ },
+ {
+ "epoch": 10.794425087108014,
+ "grad_norm": 0.03382394090294838,
+ "learning_rate": 0.0005469827011595266,
+ "loss": 2.3399806022644043,
+ "step": 777
+ },
+ {
+ "epoch": 10.80836236933798,
+ "grad_norm": 0.03256148472428322,
+ "learning_rate": 0.0005468305893385686,
+ "loss": 2.336940050125122,
+ "step": 778
+ },
+ {
+ "epoch": 10.822299651567944,
+ "grad_norm": 0.032796118408441544,
+ "learning_rate": 0.0005466782810677088,
+ "loss": 2.3503036499023438,
+ "step": 779
+ },
+ {
+ "epoch": 10.83623693379791,
+ "grad_norm": 0.03359639272093773,
+ "learning_rate": 0.0005465257764696593,
+ "loss": 2.340160608291626,
+ "step": 780
+ },
+ {
+ "epoch": 10.850174216027874,
+ "grad_norm": 0.03725067153573036,
+ "learning_rate": 0.0005463730756672903,
+ "loss": 2.3448994159698486,
+ "step": 781
+ },
+ {
+ "epoch": 10.86411149825784,
+ "grad_norm": 0.03396180644631386,
+ "learning_rate": 0.0005462201787836301,
+ "loss": 2.337078094482422,
+ "step": 782
+ },
+ {
+ "epoch": 10.878048780487806,
+ "grad_norm": 0.034375693649053574,
+ "learning_rate": 0.0005460670859418651,
+ "loss": 2.3564600944519043,
+ "step": 783
+ },
+ {
+ "epoch": 10.89198606271777,
+ "grad_norm": 0.034513067454099655,
+ "learning_rate": 0.000545913797265339,
+ "loss": 2.3631274700164795,
+ "step": 784
+ },
+ {
+ "epoch": 10.905923344947736,
+ "grad_norm": 0.03305843099951744,
+ "learning_rate": 0.0005457603128775541,
+ "loss": 2.345407485961914,
+ "step": 785
+ },
+ {
+ "epoch": 10.9198606271777,
+ "grad_norm": 0.03236348554491997,
+ "learning_rate": 0.0005456066329021699,
+ "loss": 2.340275526046753,
+ "step": 786
+ },
+ {
+ "epoch": 10.933797909407666,
+ "grad_norm": 0.03411583974957466,
+ "learning_rate": 0.0005454527574630037,
+ "loss": 2.341548442840576,
+ "step": 787
+ },
+ {
+ "epoch": 10.94773519163763,
+ "grad_norm": 0.03641803562641144,
+ "learning_rate": 0.0005452986866840298,
+ "loss": 2.3475522994995117,
+ "step": 788
+ },
+ {
+ "epoch": 10.961672473867596,
+ "grad_norm": 0.03492163494229317,
+ "learning_rate": 0.0005451444206893806,
+ "loss": 2.3415870666503906,
+ "step": 789
+ },
+ {
+ "epoch": 10.975609756097562,
+ "grad_norm": 0.03789013251662254,
+ "learning_rate": 0.0005449899596033453,
+ "loss": 2.3574557304382324,
+ "step": 790
+ },
+ {
+ "epoch": 10.989547038327526,
+ "grad_norm": 0.034537237137556076,
+ "learning_rate": 0.0005448353035503704,
+ "loss": 2.350353717803955,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.026393387466669083,
+ "learning_rate": 0.0005446804526550596,
+ "loss": 1.7534164190292358,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 0.6207266449928284,
+ "eval_runtime": 36.6286,
+ "eval_samples_per_second": 66.669,
+ "eval_steps_per_second": 0.546,
+ "step": 792
+ },
+ {
+ "epoch": 11.013937282229966,
+ "grad_norm": 0.04500797390937805,
+ "learning_rate": 0.0005445254070421732,
+ "loss": 2.29563570022583,
+ "step": 793
+ },
+ {
+ "epoch": 11.02787456445993,
+ "grad_norm": 0.058218058198690414,
+ "learning_rate": 0.0005443701668366288,
+ "loss": 2.285862445831299,
+ "step": 794
+ },
+ {
+ "epoch": 11.041811846689896,
+ "grad_norm": 0.06746228039264679,
+ "learning_rate": 0.0005442147321635007,
+ "loss": 2.2930586338043213,
+ "step": 795
+ },
+ {
+ "epoch": 11.05574912891986,
+ "grad_norm": 0.07853464037179947,
+ "learning_rate": 0.00054405910314802,
+ "loss": 2.2999796867370605,
+ "step": 796
+ },
+ {
+ "epoch": 11.069686411149826,
+ "grad_norm": 0.0743563324213028,
+ "learning_rate": 0.0005439032799155737,
+ "loss": 2.3127989768981934,
+ "step": 797
+ },
+ {
+ "epoch": 11.08362369337979,
+ "grad_norm": 0.06950018554925919,
+ "learning_rate": 0.000543747262591706,
+ "loss": 2.302677631378174,
+ "step": 798
+ },
+ {
+ "epoch": 11.097560975609756,
+ "grad_norm": 0.0668293684720993,
+ "learning_rate": 0.0005435910513021172,
+ "loss": 2.3067705631256104,
+ "step": 799
+ },
+ {
+ "epoch": 11.111498257839722,
+ "grad_norm": 0.05805148929357529,
+ "learning_rate": 0.0005434346461726641,
+ "loss": 2.2972123622894287,
+ "step": 800
+ },
+ {
+ "epoch": 11.125435540069686,
+ "grad_norm": 0.059285592287778854,
+ "learning_rate": 0.0005432780473293593,
+ "loss": 2.302372932434082,
+ "step": 801
+ },
+ {
+ "epoch": 11.139372822299652,
+ "grad_norm": 0.054501719772815704,
+ "learning_rate": 0.0005431212548983718,
+ "loss": 2.305246353149414,
+ "step": 802
+ },
+ {
+ "epoch": 11.153310104529616,
+ "grad_norm": 0.05490308254957199,
+ "learning_rate": 0.0005429642690060262,
+ "loss": 2.300204277038574,
+ "step": 803
+ },
+ {
+ "epoch": 11.167247386759582,
+ "grad_norm": 0.05564664676785469,
+ "learning_rate": 0.0005428070897788034,
+ "loss": 2.295349597930908,
+ "step": 804
+ },
+ {
+ "epoch": 11.181184668989546,
+ "grad_norm": 0.04841756820678711,
+ "learning_rate": 0.0005426497173433398,
+ "loss": 2.3083786964416504,
+ "step": 805
+ },
+ {
+ "epoch": 11.195121951219512,
+ "grad_norm": 0.05090150982141495,
+ "learning_rate": 0.0005424921518264275,
+ "loss": 2.2890477180480957,
+ "step": 806
+ },
+ {
+ "epoch": 11.209059233449477,
+ "grad_norm": 0.049588896334171295,
+ "learning_rate": 0.0005423343933550143,
+ "loss": 2.3092164993286133,
+ "step": 807
+ },
+ {
+ "epoch": 11.222996515679442,
+ "grad_norm": 0.059266265481710434,
+ "learning_rate": 0.0005421764420562032,
+ "loss": 2.3087329864501953,
+ "step": 808
+ },
+ {
+ "epoch": 11.236933797909408,
+ "grad_norm": 0.061635106801986694,
+ "learning_rate": 0.0005420182980572527,
+ "loss": 2.310224771499634,
+ "step": 809
+ },
+ {
+ "epoch": 11.250871080139373,
+ "grad_norm": 0.058707281947135925,
+ "learning_rate": 0.0005418599614855768,
+ "loss": 2.3094818592071533,
+ "step": 810
+ },
+ {
+ "epoch": 11.264808362369338,
+ "grad_norm": 0.05711625888943672,
+ "learning_rate": 0.0005417014324687442,
+ "loss": 2.320720672607422,
+ "step": 811
+ },
+ {
+ "epoch": 11.278745644599303,
+ "grad_norm": 0.04941999912261963,
+ "learning_rate": 0.000541542711134479,
+ "loss": 2.3037776947021484,
+ "step": 812
+ },
+ {
+ "epoch": 11.292682926829269,
+ "grad_norm": 0.0481753945350647,
+ "learning_rate": 0.0005413837976106599,
+ "loss": 2.307615280151367,
+ "step": 813
+ },
+ {
+ "epoch": 11.306620209059233,
+ "grad_norm": 0.05005398392677307,
+ "learning_rate": 0.0005412246920253208,
+ "loss": 2.302461624145508,
+ "step": 814
+ },
+ {
+ "epoch": 11.320557491289199,
+ "grad_norm": 0.051312051713466644,
+ "learning_rate": 0.0005410653945066503,
+ "loss": 2.3107659816741943,
+ "step": 815
+ },
+ {
+ "epoch": 11.334494773519165,
+ "grad_norm": 0.047787491232156754,
+ "learning_rate": 0.0005409059051829914,
+ "loss": 2.303896903991699,
+ "step": 816
+ },
+ {
+ "epoch": 11.348432055749129,
+ "grad_norm": 0.044105708599090576,
+ "learning_rate": 0.0005407462241828417,
+ "loss": 2.3028616905212402,
+ "step": 817
+ },
+ {
+ "epoch": 11.362369337979095,
+ "grad_norm": 0.04771425202488899,
+ "learning_rate": 0.0005405863516348535,
+ "loss": 2.3242416381835938,
+ "step": 818
+ },
+ {
+ "epoch": 11.376306620209059,
+ "grad_norm": 0.049508776515722275,
+ "learning_rate": 0.000540426287667833,
+ "loss": 2.317350387573242,
+ "step": 819
+ },
+ {
+ "epoch": 11.390243902439025,
+ "grad_norm": 0.04476630315184593,
+ "learning_rate": 0.000540266032410741,
+ "loss": 2.3019609451293945,
+ "step": 820
+ },
+ {
+ "epoch": 11.404181184668989,
+ "grad_norm": 0.044484466314315796,
+ "learning_rate": 0.0005401055859926923,
+ "loss": 2.3157167434692383,
+ "step": 821
+ },
+ {
+ "epoch": 11.418118466898955,
+ "grad_norm": 0.04700213670730591,
+ "learning_rate": 0.0005399449485429555,
+ "loss": 2.31441330909729,
+ "step": 822
+ },
+ {
+ "epoch": 11.43205574912892,
+ "grad_norm": 0.04357650876045227,
+ "learning_rate": 0.0005397841201909535,
+ "loss": 2.309573173522949,
+ "step": 823
+ },
+ {
+ "epoch": 11.445993031358885,
+ "grad_norm": 0.04270123690366745,
+ "learning_rate": 0.0005396231010662627,
+ "loss": 2.2956438064575195,
+ "step": 824
+ },
+ {
+ "epoch": 11.45993031358885,
+ "grad_norm": 0.04122788831591606,
+ "learning_rate": 0.0005394618912986132,
+ "loss": 2.3093338012695312,
+ "step": 825
+ },
+ {
+ "epoch": 11.473867595818815,
+ "grad_norm": 0.040944404900074005,
+ "learning_rate": 0.0005393004910178889,
+ "loss": 2.3245465755462646,
+ "step": 826
+ },
+ {
+ "epoch": 11.487804878048781,
+ "grad_norm": 0.04059522598981857,
+ "learning_rate": 0.0005391389003541271,
+ "loss": 2.307492733001709,
+ "step": 827
+ },
+ {
+ "epoch": 11.501742160278745,
+ "grad_norm": 0.04292140156030655,
+ "learning_rate": 0.0005389771194375185,
+ "loss": 2.32723069190979,
+ "step": 828
+ },
+ {
+ "epoch": 11.515679442508711,
+ "grad_norm": 0.041085343807935715,
+ "learning_rate": 0.0005388151483984071,
+ "loss": 2.3025991916656494,
+ "step": 829
+ },
+ {
+ "epoch": 11.529616724738675,
+ "grad_norm": 0.040302127599716187,
+ "learning_rate": 0.0005386529873672898,
+ "loss": 2.306711196899414,
+ "step": 830
+ },
+ {
+ "epoch": 11.543554006968641,
+ "grad_norm": 0.04179452359676361,
+ "learning_rate": 0.0005384906364748172,
+ "loss": 2.299077033996582,
+ "step": 831
+ },
+ {
+ "epoch": 11.557491289198607,
+ "grad_norm": 0.04052369296550751,
+ "learning_rate": 0.000538328095851792,
+ "loss": 2.3212227821350098,
+ "step": 832
+ },
+ {
+ "epoch": 11.571428571428571,
+ "grad_norm": 0.03855585679411888,
+ "learning_rate": 0.0005381653656291707,
+ "loss": 2.2905197143554688,
+ "step": 833
+ },
+ {
+ "epoch": 11.585365853658537,
+ "grad_norm": 0.04159102961421013,
+ "learning_rate": 0.0005380024459380619,
+ "loss": 2.2973320484161377,
+ "step": 834
+ },
+ {
+ "epoch": 11.599303135888501,
+ "grad_norm": 0.044633787125349045,
+ "learning_rate": 0.000537839336909727,
+ "loss": 2.3214757442474365,
+ "step": 835
+ },
+ {
+ "epoch": 11.613240418118467,
+ "grad_norm": 0.03999071940779686,
+ "learning_rate": 0.00053767603867558,
+ "loss": 2.332554817199707,
+ "step": 836
+ },
+ {
+ "epoch": 11.627177700348431,
+ "grad_norm": 0.03866419568657875,
+ "learning_rate": 0.0005375125513671874,
+ "loss": 2.3050875663757324,
+ "step": 837
+ },
+ {
+ "epoch": 11.641114982578397,
+ "grad_norm": 0.041100166738033295,
+ "learning_rate": 0.0005373488751162681,
+ "loss": 2.316553831100464,
+ "step": 838
+ },
+ {
+ "epoch": 11.655052264808361,
+ "grad_norm": 0.040330950170755386,
+ "learning_rate": 0.0005371850100546929,
+ "loss": 2.310610294342041,
+ "step": 839
+ },
+ {
+ "epoch": 11.668989547038327,
+ "grad_norm": 0.03405703231692314,
+ "learning_rate": 0.000537020956314485,
+ "loss": 2.311572313308716,
+ "step": 840
+ },
+ {
+ "epoch": 11.682926829268293,
+ "grad_norm": 0.038694240152835846,
+ "learning_rate": 0.0005368567140278196,
+ "loss": 2.291428565979004,
+ "step": 841
+ },
+ {
+ "epoch": 11.696864111498257,
+ "grad_norm": 0.03937961906194687,
+ "learning_rate": 0.0005366922833270235,
+ "loss": 2.315734386444092,
+ "step": 842
+ },
+ {
+ "epoch": 11.710801393728223,
+ "grad_norm": 0.038759566843509674,
+ "learning_rate": 0.0005365276643445757,
+ "loss": 2.3142471313476562,
+ "step": 843
+ },
+ {
+ "epoch": 11.724738675958188,
+ "grad_norm": 0.03737666830420494,
+ "learning_rate": 0.0005363628572131069,
+ "loss": 2.305859088897705,
+ "step": 844
+ },
+ {
+ "epoch": 11.738675958188153,
+ "grad_norm": 0.039980217814445496,
+ "learning_rate": 0.0005361978620653991,
+ "loss": 2.3132710456848145,
+ "step": 845
+ },
+ {
+ "epoch": 11.752613240418118,
+ "grad_norm": 0.040231477469205856,
+ "learning_rate": 0.0005360326790343858,
+ "loss": 2.307582139968872,
+ "step": 846
+ },
+ {
+ "epoch": 11.766550522648084,
+ "grad_norm": 0.03938363865017891,
+ "learning_rate": 0.000535867308253152,
+ "loss": 2.33015775680542,
+ "step": 847
+ },
+ {
+ "epoch": 11.78048780487805,
+ "grad_norm": 0.03871415555477142,
+ "learning_rate": 0.0005357017498549341,
+ "loss": 2.315992832183838,
+ "step": 848
+ },
+ {
+ "epoch": 11.794425087108014,
+ "grad_norm": 0.03816714137792587,
+ "learning_rate": 0.0005355360039731196,
+ "loss": 2.315371513366699,
+ "step": 849
+ },
+ {
+ "epoch": 11.80836236933798,
+ "grad_norm": 0.03860654681921005,
+ "learning_rate": 0.0005353700707412466,
+ "loss": 2.3099796772003174,
+ "step": 850
+ },
+ {
+ "epoch": 11.822299651567944,
+ "grad_norm": 0.04050910845398903,
+ "learning_rate": 0.0005352039502930048,
+ "loss": 2.331601142883301,
+ "step": 851
+ },
+ {
+ "epoch": 11.83623693379791,
+ "grad_norm": 0.040455542504787445,
+ "learning_rate": 0.0005350376427622343,
+ "loss": 2.3153774738311768,
+ "step": 852
+ },
+ {
+ "epoch": 11.850174216027874,
+ "grad_norm": 0.03606412559747696,
+ "learning_rate": 0.0005348711482829261,
+ "loss": 2.3196091651916504,
+ "step": 853
+ },
+ {
+ "epoch": 11.86411149825784,
+ "grad_norm": 0.03540179878473282,
+ "learning_rate": 0.000534704466989222,
+ "loss": 2.3175747394561768,
+ "step": 854
+ },
+ {
+ "epoch": 11.878048780487806,
+ "grad_norm": 0.03594037890434265,
+ "learning_rate": 0.0005345375990154138,
+ "loss": 2.3123281002044678,
+ "step": 855
+ },
+ {
+ "epoch": 11.89198606271777,
+ "grad_norm": 0.037316273897886276,
+ "learning_rate": 0.0005343705444959441,
+ "loss": 2.326590061187744,
+ "step": 856
+ },
+ {
+ "epoch": 11.905923344947736,
+ "grad_norm": 0.03534175828099251,
+ "learning_rate": 0.000534203303565406,
+ "loss": 2.289609670639038,
+ "step": 857
+ },
+ {
+ "epoch": 11.9198606271777,
+ "grad_norm": 0.03645944595336914,
+ "learning_rate": 0.000534035876358542,
+ "loss": 2.310405731201172,
+ "step": 858
+ },
+ {
+ "epoch": 11.933797909407666,
+ "grad_norm": 0.033878158777952194,
+ "learning_rate": 0.0005338682630102454,
+ "loss": 2.3025999069213867,
+ "step": 859
+ },
+ {
+ "epoch": 11.94773519163763,
+ "grad_norm": 0.03515630215406418,
+ "learning_rate": 0.0005337004636555595,
+ "loss": 2.3085150718688965,
+ "step": 860
+ },
+ {
+ "epoch": 11.961672473867596,
+ "grad_norm": 0.034178491681814194,
+ "learning_rate": 0.0005335324784296768,
+ "loss": 2.3223443031311035,
+ "step": 861
+ },
+ {
+ "epoch": 11.975609756097562,
+ "grad_norm": 0.0340011864900589,
+ "learning_rate": 0.0005333643074679403,
+ "loss": 2.324476957321167,
+ "step": 862
+ },
+ {
+ "epoch": 11.989547038327526,
+ "grad_norm": 0.03569193184375763,
+ "learning_rate": 0.000533195950905842,
+ "loss": 2.3087520599365234,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.030978869646787643,
+ "learning_rate": 0.0005330274088790239,
+ "loss": 1.733755350112915,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 0.6196663975715637,
+ "eval_runtime": 38.4411,
+ "eval_samples_per_second": 63.526,
+ "eval_steps_per_second": 0.52,
+ "step": 864
+ },
+ {
+ "epoch": 12.013937282229966,
+ "grad_norm": 0.04311290383338928,
+ "learning_rate": 0.0005328586815232773,
+ "loss": 2.267500638961792,
+ "step": 865
+ },
+ {
+ "epoch": 12.02787456445993,
+ "grad_norm": 0.05809512361884117,
+ "learning_rate": 0.0005326897689745428,
+ "loss": 2.269824981689453,
+ "step": 866
+ },
+ {
+ "epoch": 12.041811846689896,
+ "grad_norm": 0.06641583144664764,
+ "learning_rate": 0.0005325206713689101,
+ "loss": 2.2579562664031982,
+ "step": 867
+ },
+ {
+ "epoch": 12.05574912891986,
+ "grad_norm": 0.06946069747209549,
+ "learning_rate": 0.0005323513888426181,
+ "loss": 2.2649731636047363,
+ "step": 868
+ },
+ {
+ "epoch": 12.069686411149826,
+ "grad_norm": 0.07457753270864487,
+ "learning_rate": 0.0005321819215320546,
+ "loss": 2.271296501159668,
+ "step": 869
+ },
+ {
+ "epoch": 12.08362369337979,
+ "grad_norm": 0.08557604998350143,
+ "learning_rate": 0.0005320122695737565,
+ "loss": 2.2977068424224854,
+ "step": 870
+ },
+ {
+ "epoch": 12.097560975609756,
+ "grad_norm": 0.07865381985902786,
+ "learning_rate": 0.0005318424331044094,
+ "loss": 2.2831926345825195,
+ "step": 871
+ },
+ {
+ "epoch": 12.111498257839722,
+ "grad_norm": 0.07406128942966461,
+ "learning_rate": 0.0005316724122608473,
+ "loss": 2.280620574951172,
+ "step": 872
+ },
+ {
+ "epoch": 12.125435540069686,
+ "grad_norm": 0.08649969846010208,
+ "learning_rate": 0.0005315022071800527,
+ "loss": 2.2639617919921875,
+ "step": 873
+ },
+ {
+ "epoch": 12.139372822299652,
+ "grad_norm": 0.08262167125940323,
+ "learning_rate": 0.0005313318179991574,
+ "loss": 2.271108627319336,
+ "step": 874
+ },
+ {
+ "epoch": 12.153310104529616,
+ "grad_norm": 0.0752791240811348,
+ "learning_rate": 0.0005311612448554402,
+ "loss": 2.273391008377075,
+ "step": 875
+ },
+ {
+ "epoch": 12.167247386759582,
+ "grad_norm": 0.07095267623662949,
+ "learning_rate": 0.0005309904878863293,
+ "loss": 2.276211977005005,
+ "step": 876
+ },
+ {
+ "epoch": 12.181184668989546,
+ "grad_norm": 0.061625171452760696,
+ "learning_rate": 0.0005308195472294001,
+ "loss": 2.2848544120788574,
+ "step": 877
+ },
+ {
+ "epoch": 12.195121951219512,
+ "grad_norm": 0.06082753837108612,
+ "learning_rate": 0.0005306484230223769,
+ "loss": 2.2795495986938477,
+ "step": 878
+ },
+ {
+ "epoch": 12.209059233449477,
+ "grad_norm": 0.0587560310959816,
+ "learning_rate": 0.000530477115403131,
+ "loss": 2.257300853729248,
+ "step": 879
+ },
+ {
+ "epoch": 12.222996515679442,
+ "grad_norm": 0.05483998730778694,
+ "learning_rate": 0.0005303056245096817,
+ "loss": 2.2889161109924316,
+ "step": 880
+ },
+ {
+ "epoch": 12.236933797909408,
+ "grad_norm": 0.05021355301141739,
+ "learning_rate": 0.0005301339504801967,
+ "loss": 2.2778401374816895,
+ "step": 881
+ },
+ {
+ "epoch": 12.250871080139373,
+ "grad_norm": 0.05440690740942955,
+ "learning_rate": 0.0005299620934529902,
+ "loss": 2.2760677337646484,
+ "step": 882
+ },
+ {
+ "epoch": 12.264808362369338,
+ "grad_norm": 0.05961807072162628,
+ "learning_rate": 0.0005297900535665244,
+ "loss": 2.276120185852051,
+ "step": 883
+ },
+ {
+ "epoch": 12.278745644599303,
+ "grad_norm": 0.054035380482673645,
+ "learning_rate": 0.0005296178309594087,
+ "loss": 2.255659341812134,
+ "step": 884
+ },
+ {
+ "epoch": 12.292682926829269,
+ "grad_norm": 0.05121298506855965,
+ "learning_rate": 0.0005294454257704,
+ "loss": 2.2852983474731445,
+ "step": 885
+ },
+ {
+ "epoch": 12.306620209059233,
+ "grad_norm": 0.04890505596995354,
+ "learning_rate": 0.0005292728381384018,
+ "loss": 2.2752151489257812,
+ "step": 886
+ },
+ {
+ "epoch": 12.320557491289199,
+ "grad_norm": 0.05019564554095268,
+ "learning_rate": 0.0005291000682024647,
+ "loss": 2.261242389678955,
+ "step": 887
+ },
+ {
+ "epoch": 12.334494773519165,
+ "grad_norm": 0.04824003204703331,
+ "learning_rate": 0.0005289271161017867,
+ "loss": 2.2752835750579834,
+ "step": 888
+ },
+ {
+ "epoch": 12.348432055749129,
+ "grad_norm": 0.04195769876241684,
+ "learning_rate": 0.0005287539819757119,
+ "loss": 2.2705702781677246,
+ "step": 889
+ },
+ {
+ "epoch": 12.362369337979095,
+ "grad_norm": 0.046239253133535385,
+ "learning_rate": 0.0005285806659637315,
+ "loss": 2.2981534004211426,
+ "step": 890
+ },
+ {
+ "epoch": 12.376306620209059,
+ "grad_norm": 0.04743665084242821,
+ "learning_rate": 0.000528407168205483,
+ "loss": 2.278078079223633,
+ "step": 891
+ },
+ {
+ "epoch": 12.390243902439025,
+ "grad_norm": 0.04690218344330788,
+ "learning_rate": 0.0005282334888407503,
+ "loss": 2.2809972763061523,
+ "step": 892
+ },
+ {
+ "epoch": 12.404181184668989,
+ "grad_norm": 0.0444699302315712,
+ "learning_rate": 0.000528059628009464,
+ "loss": 2.2702579498291016,
+ "step": 893
+ },
+ {
+ "epoch": 12.418118466898955,
+ "grad_norm": 0.04225282371044159,
+ "learning_rate": 0.0005278855858517003,
+ "loss": 2.2717671394348145,
+ "step": 894
+ },
+ {
+ "epoch": 12.43205574912892,
+ "grad_norm": 0.041407857090234756,
+ "learning_rate": 0.0005277113625076822,
+ "loss": 2.266977548599243,
+ "step": 895
+ },
+ {
+ "epoch": 12.445993031358885,
+ "grad_norm": 0.042014770209789276,
+ "learning_rate": 0.000527536958117778,
+ "loss": 2.269441604614258,
+ "step": 896
+ },
+ {
+ "epoch": 12.45993031358885,
+ "grad_norm": 0.04196929931640625,
+ "learning_rate": 0.0005273623728225022,
+ "loss": 2.246767997741699,
+ "step": 897
+ },
+ {
+ "epoch": 12.473867595818815,
+ "grad_norm": 0.04507727175951004,
+ "learning_rate": 0.0005271876067625153,
+ "loss": 2.2929835319519043,
+ "step": 898
+ },
+ {
+ "epoch": 12.487804878048781,
+ "grad_norm": 0.043129295110702515,
+ "learning_rate": 0.0005270126600786228,
+ "loss": 2.280632257461548,
+ "step": 899
+ },
+ {
+ "epoch": 12.501742160278745,
+ "grad_norm": 0.041876427829265594,
+ "learning_rate": 0.0005268375329117762,
+ "loss": 2.2524752616882324,
+ "step": 900
+ },
+ {
+ "epoch": 12.515679442508711,
+ "grad_norm": 0.04281412810087204,
+ "learning_rate": 0.0005266622254030724,
+ "loss": 2.278818130493164,
+ "step": 901
+ },
+ {
+ "epoch": 12.529616724738675,
+ "grad_norm": 0.040438197553157806,
+ "learning_rate": 0.0005264867376937534,
+ "loss": 2.2771482467651367,
+ "step": 902
+ },
+ {
+ "epoch": 12.543554006968641,
+ "grad_norm": 0.03930707275867462,
+ "learning_rate": 0.0005263110699252065,
+ "loss": 2.273127555847168,
+ "step": 903
+ },
+ {
+ "epoch": 12.557491289198607,
+ "grad_norm": 0.04181307926774025,
+ "learning_rate": 0.000526135222238964,
+ "loss": 2.2839956283569336,
+ "step": 904
+ },
+ {
+ "epoch": 12.571428571428571,
+ "grad_norm": 0.042597733438014984,
+ "learning_rate": 0.0005259591947767032,
+ "loss": 2.262939929962158,
+ "step": 905
+ },
+ {
+ "epoch": 12.585365853658537,
+ "grad_norm": 0.04178392142057419,
+ "learning_rate": 0.0005257829876802464,
+ "loss": 2.286794662475586,
+ "step": 906
+ },
+ {
+ "epoch": 12.599303135888501,
+ "grad_norm": 0.04041772708296776,
+ "learning_rate": 0.0005256066010915603,
+ "loss": 2.276432991027832,
+ "step": 907
+ },
+ {
+ "epoch": 12.613240418118467,
+ "grad_norm": 0.04161509871482849,
+ "learning_rate": 0.0005254300351527566,
+ "loss": 2.2779972553253174,
+ "step": 908
+ },
+ {
+ "epoch": 12.627177700348431,
+ "grad_norm": 0.04206471145153046,
+ "learning_rate": 0.000525253290006091,
+ "loss": 2.282811164855957,
+ "step": 909
+ },
+ {
+ "epoch": 12.641114982578397,
+ "grad_norm": 0.04001585766673088,
+ "learning_rate": 0.0005250763657939641,
+ "loss": 2.29434871673584,
+ "step": 910
+ },
+ {
+ "epoch": 12.655052264808361,
+ "grad_norm": 0.041886743158102036,
+ "learning_rate": 0.0005248992626589203,
+ "loss": 2.278651237487793,
+ "step": 911
+ },
+ {
+ "epoch": 12.668989547038327,
+ "grad_norm": 0.0404231883585453,
+ "learning_rate": 0.0005247219807436489,
+ "loss": 2.2875375747680664,
+ "step": 912
+ },
+ {
+ "epoch": 12.682926829268293,
+ "grad_norm": 0.037211328744888306,
+ "learning_rate": 0.000524544520190982,
+ "loss": 2.294013023376465,
+ "step": 913
+ },
+ {
+ "epoch": 12.696864111498257,
+ "grad_norm": 0.03906721621751785,
+ "learning_rate": 0.000524366881143897,
+ "loss": 2.2899856567382812,
+ "step": 914
+ },
+ {
+ "epoch": 12.710801393728223,
+ "grad_norm": 0.04206228628754616,
+ "learning_rate": 0.0005241890637455141,
+ "loss": 2.282346248626709,
+ "step": 915
+ },
+ {
+ "epoch": 12.724738675958188,
+ "grad_norm": 0.03915264084935188,
+ "learning_rate": 0.0005240110681390978,
+ "loss": 2.2995424270629883,
+ "step": 916
+ },
+ {
+ "epoch": 12.738675958188153,
+ "grad_norm": 0.03919649496674538,
+ "learning_rate": 0.0005238328944680558,
+ "loss": 2.282196044921875,
+ "step": 917
+ },
+ {
+ "epoch": 12.752613240418118,
+ "grad_norm": 0.039669446647167206,
+ "learning_rate": 0.0005236545428759394,
+ "loss": 2.2758240699768066,
+ "step": 918
+ },
+ {
+ "epoch": 12.766550522648084,
+ "grad_norm": 0.04075023531913757,
+ "learning_rate": 0.0005234760135064434,
+ "loss": 2.278747320175171,
+ "step": 919
+ },
+ {
+ "epoch": 12.78048780487805,
+ "grad_norm": 0.03815247863531113,
+ "learning_rate": 0.0005232973065034055,
+ "loss": 2.2989745140075684,
+ "step": 920
+ },
+ {
+ "epoch": 12.794425087108014,
+ "grad_norm": 0.039577171206474304,
+ "learning_rate": 0.0005231184220108069,
+ "loss": 2.278186321258545,
+ "step": 921
+ },
+ {
+ "epoch": 12.80836236933798,
+ "grad_norm": 0.04091718792915344,
+ "learning_rate": 0.0005229393601727713,
+ "loss": 2.3046107292175293,
+ "step": 922
+ },
+ {
+ "epoch": 12.822299651567944,
+ "grad_norm": 0.04034758731722832,
+ "learning_rate": 0.000522760121133566,
+ "loss": 2.2959580421447754,
+ "step": 923
+ },
+ {
+ "epoch": 12.83623693379791,
+ "grad_norm": 0.041219793260097504,
+ "learning_rate": 0.0005225807050376004,
+ "loss": 2.289950370788574,
+ "step": 924
+ },
+ {
+ "epoch": 12.850174216027874,
+ "grad_norm": 0.042124949395656586,
+ "learning_rate": 0.0005224011120294269,
+ "loss": 2.2865607738494873,
+ "step": 925
+ },
+ {
+ "epoch": 12.86411149825784,
+ "grad_norm": 0.04259328171610832,
+ "learning_rate": 0.0005222213422537401,
+ "loss": 2.2798972129821777,
+ "step": 926
+ },
+ {
+ "epoch": 12.878048780487806,
+ "grad_norm": 0.0413426011800766,
+ "learning_rate": 0.0005220413958553777,
+ "loss": 2.2765798568725586,
+ "step": 927
+ },
+ {
+ "epoch": 12.89198606271777,
+ "grad_norm": 0.04276851564645767,
+ "learning_rate": 0.0005218612729793188,
+ "loss": 2.292202949523926,
+ "step": 928
+ },
+ {
+ "epoch": 12.905923344947736,
+ "grad_norm": 0.038679834455251694,
+ "learning_rate": 0.0005216809737706856,
+ "loss": 2.2641711235046387,
+ "step": 929
+ },
+ {
+ "epoch": 12.9198606271777,
+ "grad_norm": 0.04027910903096199,
+ "learning_rate": 0.0005215004983747415,
+ "loss": 2.297112464904785,
+ "step": 930
+ },
+ {
+ "epoch": 12.933797909407666,
+ "grad_norm": 0.037091903388500214,
+ "learning_rate": 0.0005213198469368925,
+ "loss": 2.2731027603149414,
+ "step": 931
+ },
+ {
+ "epoch": 12.94773519163763,
+ "grad_norm": 0.0381062775850296,
+ "learning_rate": 0.0005211390196026861,
+ "loss": 2.276169538497925,
+ "step": 932
+ },
+ {
+ "epoch": 12.961672473867596,
+ "grad_norm": 0.03912157565355301,
+ "learning_rate": 0.0005209580165178117,
+ "loss": 2.2855257987976074,
+ "step": 933
+ },
+ {
+ "epoch": 12.975609756097562,
+ "grad_norm": 0.03726741299033165,
+ "learning_rate": 0.0005207768378281003,
+ "loss": 2.285484790802002,
+ "step": 934
+ },
+ {
+ "epoch": 12.989547038327526,
+ "grad_norm": 0.03863261640071869,
+ "learning_rate": 0.0005205954836795241,
+ "loss": 2.2770638465881348,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.03204738348722458,
+ "learning_rate": 0.000520413954218197,
+ "loss": 1.7078638076782227,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 0.6196639537811279,
+ "eval_runtime": 36.3518,
+ "eval_samples_per_second": 67.177,
+ "eval_steps_per_second": 0.55,
+ "step": 936
+ },
+ {
+ "epoch": 13.013937282229966,
+ "grad_norm": 0.04385007545351982,
+ "learning_rate": 0.0005202322495903739,
+ "loss": 2.2220354080200195,
+ "step": 937
+ },
+ {
+ "epoch": 13.02787456445993,
+ "grad_norm": 0.05723090469837189,
+ "learning_rate": 0.0005200503699424509,
+ "loss": 2.223271369934082,
+ "step": 938
+ },
+ {
+ "epoch": 13.041811846689896,
+ "grad_norm": 0.06027279794216156,
+ "learning_rate": 0.0005198683154209654,
+ "loss": 2.2302541732788086,
+ "step": 939
+ },
+ {
+ "epoch": 13.05574912891986,
+ "grad_norm": 0.06342783570289612,
+ "learning_rate": 0.0005196860861725952,
+ "loss": 2.2211854457855225,
+ "step": 940
+ },
+ {
+ "epoch": 13.069686411149826,
+ "grad_norm": 0.06265735626220703,
+ "learning_rate": 0.0005195036823441592,
+ "loss": 2.222750425338745,
+ "step": 941
+ },
+ {
+ "epoch": 13.08362369337979,
+ "grad_norm": 0.0661185085773468,
+ "learning_rate": 0.0005193211040826169,
+ "loss": 2.230656862258911,
+ "step": 942
+ },
+ {
+ "epoch": 13.097560975609756,
+ "grad_norm": 0.06665238738059998,
+ "learning_rate": 0.0005191383515350681,
+ "loss": 2.220534563064575,
+ "step": 943
+ },
+ {
+ "epoch": 13.111498257839722,
+ "grad_norm": 0.06432333588600159,
+ "learning_rate": 0.0005189554248487536,
+ "loss": 2.2317209243774414,
+ "step": 944
+ },
+ {
+ "epoch": 13.125435540069686,
+ "grad_norm": 0.057658061385154724,
+ "learning_rate": 0.0005187723241710539,
+ "loss": 2.20767879486084,
+ "step": 945
+ },
+ {
+ "epoch": 13.139372822299652,
+ "grad_norm": 0.06340344250202179,
+ "learning_rate": 0.0005185890496494899,
+ "loss": 2.240220546722412,
+ "step": 946
+ },
+ {
+ "epoch": 13.153310104529616,
+ "grad_norm": 0.0649016872048378,
+ "learning_rate": 0.0005184056014317225,
+ "loss": 2.2353672981262207,
+ "step": 947
+ },
+ {
+ "epoch": 13.167247386759582,
+ "grad_norm": 0.05792258679866791,
+ "learning_rate": 0.0005182219796655528,
+ "loss": 2.2480835914611816,
+ "step": 948
+ },
+ {
+ "epoch": 13.181184668989546,
+ "grad_norm": 0.059482429176568985,
+ "learning_rate": 0.0005180381844989214,
+ "loss": 2.2432656288146973,
+ "step": 949
+ },
+ {
+ "epoch": 13.195121951219512,
+ "grad_norm": 0.05838126689195633,
+ "learning_rate": 0.0005178542160799088,
+ "loss": 2.237567901611328,
+ "step": 950
+ },
+ {
+ "epoch": 13.209059233449477,
+ "grad_norm": 0.05699385702610016,
+ "learning_rate": 0.0005176700745567353,
+ "loss": 2.243746280670166,
+ "step": 951
+ },
+ {
+ "epoch": 13.222996515679442,
+ "grad_norm": 0.05618268996477127,
+ "learning_rate": 0.0005174857600777599,
+ "loss": 2.2216076850891113,
+ "step": 952
+ },
+ {
+ "epoch": 13.236933797909408,
+ "grad_norm": 0.05328221991658211,
+ "learning_rate": 0.0005173012727914816,
+ "loss": 2.2413382530212402,
+ "step": 953
+ },
+ {
+ "epoch": 13.250871080139373,
+ "grad_norm": 0.05254136770963669,
+ "learning_rate": 0.0005171166128465389,
+ "loss": 2.2317683696746826,
+ "step": 954
+ },
+ {
+ "epoch": 13.264808362369338,
+ "grad_norm": 0.05144176259636879,
+ "learning_rate": 0.0005169317803917083,
+ "loss": 2.2372474670410156,
+ "step": 955
+ },
+ {
+ "epoch": 13.278745644599303,
+ "grad_norm": 0.05258858576416969,
+ "learning_rate": 0.0005167467755759065,
+ "loss": 2.2383830547332764,
+ "step": 956
+ },
+ {
+ "epoch": 13.292682926829269,
+ "grad_norm": 0.0550001785159111,
+ "learning_rate": 0.0005165615985481881,
+ "loss": 2.2456729412078857,
+ "step": 957
+ },
+ {
+ "epoch": 13.306620209059233,
+ "grad_norm": 0.050276629626750946,
+ "learning_rate": 0.0005163762494577474,
+ "loss": 2.262298345565796,
+ "step": 958
+ },
+ {
+ "epoch": 13.320557491289199,
+ "grad_norm": 0.05388111621141434,
+ "learning_rate": 0.0005161907284539165,
+ "loss": 2.250800609588623,
+ "step": 959
+ },
+ {
+ "epoch": 13.334494773519165,
+ "grad_norm": 0.05154367536306381,
+ "learning_rate": 0.0005160050356861663,
+ "loss": 2.2442479133605957,
+ "step": 960
+ },
+ {
+ "epoch": 13.348432055749129,
+ "grad_norm": 0.04562186077237129,
+ "learning_rate": 0.0005158191713041063,
+ "loss": 2.237484931945801,
+ "step": 961
+ },
+ {
+ "epoch": 13.362369337979095,
+ "grad_norm": 0.049510203301906586,
+ "learning_rate": 0.0005156331354574838,
+ "loss": 2.243274688720703,
+ "step": 962
+ },
+ {
+ "epoch": 13.376306620209059,
+ "grad_norm": 0.050305187702178955,
+ "learning_rate": 0.0005154469282961847,
+ "loss": 2.2452855110168457,
+ "step": 963
+ },
+ {
+ "epoch": 13.390243902439025,
+ "grad_norm": 0.049128562211990356,
+ "learning_rate": 0.0005152605499702328,
+ "loss": 2.2562594413757324,
+ "step": 964
+ },
+ {
+ "epoch": 13.404181184668989,
+ "grad_norm": 0.04948648437857628,
+ "learning_rate": 0.0005150740006297896,
+ "loss": 2.2388229370117188,
+ "step": 965
+ },
+ {
+ "epoch": 13.418118466898955,
+ "grad_norm": 0.053290050476789474,
+ "learning_rate": 0.0005148872804251548,
+ "loss": 2.2601318359375,
+ "step": 966
+ },
+ {
+ "epoch": 13.43205574912892,
+ "grad_norm": 0.04839639738202095,
+ "learning_rate": 0.000514700389506765,
+ "loss": 2.2303178310394287,
+ "step": 967
+ },
+ {
+ "epoch": 13.445993031358885,
+ "grad_norm": 0.04883972555398941,
+ "learning_rate": 0.0005145133280251954,
+ "loss": 2.246448040008545,
+ "step": 968
+ },
+ {
+ "epoch": 13.45993031358885,
+ "grad_norm": 0.04747871682047844,
+ "learning_rate": 0.0005143260961311578,
+ "loss": 2.259640693664551,
+ "step": 969
+ },
+ {
+ "epoch": 13.473867595818815,
+ "grad_norm": 0.046724554151296616,
+ "learning_rate": 0.0005141386939755014,
+ "loss": 2.2453014850616455,
+ "step": 970
+ },
+ {
+ "epoch": 13.487804878048781,
+ "grad_norm": 0.045614756643772125,
+ "learning_rate": 0.0005139511217092129,
+ "loss": 2.2351949214935303,
+ "step": 971
+ },
+ {
+ "epoch": 13.501742160278745,
+ "grad_norm": 0.04794120043516159,
+ "learning_rate": 0.000513763379483416,
+ "loss": 2.2457003593444824,
+ "step": 972
+ },
+ {
+ "epoch": 13.515679442508711,
+ "grad_norm": 0.05043521523475647,
+ "learning_rate": 0.0005135754674493709,
+ "loss": 2.258542060852051,
+ "step": 973
+ },
+ {
+ "epoch": 13.529616724738675,
+ "grad_norm": 0.046207673847675323,
+ "learning_rate": 0.0005133873857584753,
+ "loss": 2.2370145320892334,
+ "step": 974
+ },
+ {
+ "epoch": 13.543554006968641,
+ "grad_norm": 0.04402166232466698,
+ "learning_rate": 0.0005131991345622629,
+ "loss": 2.2408246994018555,
+ "step": 975
+ },
+ {
+ "epoch": 13.557491289198607,
+ "grad_norm": 0.04337441921234131,
+ "learning_rate": 0.0005130107140124046,
+ "loss": 2.2634308338165283,
+ "step": 976
+ },
+ {
+ "epoch": 13.571428571428571,
+ "grad_norm": 0.047244030982255936,
+ "learning_rate": 0.0005128221242607072,
+ "loss": 2.2571523189544678,
+ "step": 977
+ },
+ {
+ "epoch": 13.585365853658537,
+ "grad_norm": 0.04867873340845108,
+ "learning_rate": 0.0005126333654591141,
+ "loss": 2.248501777648926,
+ "step": 978
+ },
+ {
+ "epoch": 13.599303135888501,
+ "grad_norm": 0.048512108623981476,
+ "learning_rate": 0.0005124444377597049,
+ "loss": 2.2579822540283203,
+ "step": 979
+ },
+ {
+ "epoch": 13.613240418118467,
+ "grad_norm": 0.04615626111626625,
+ "learning_rate": 0.0005122553413146951,
+ "loss": 2.2446889877319336,
+ "step": 980
+ },
+ {
+ "epoch": 13.627177700348431,
+ "grad_norm": 0.044876713305711746,
+ "learning_rate": 0.0005120660762764366,
+ "loss": 2.2439627647399902,
+ "step": 981
+ },
+ {
+ "epoch": 13.641114982578397,
+ "grad_norm": 0.046021413058042526,
+ "learning_rate": 0.0005118766427974166,
+ "loss": 2.262195587158203,
+ "step": 982
+ },
+ {
+ "epoch": 13.655052264808361,
+ "grad_norm": 0.04974699020385742,
+ "learning_rate": 0.0005116870410302582,
+ "loss": 2.2783303260803223,
+ "step": 983
+ },
+ {
+ "epoch": 13.668989547038327,
+ "grad_norm": 0.044128481298685074,
+ "learning_rate": 0.0005114972711277202,
+ "loss": 2.2566471099853516,
+ "step": 984
+ },
+ {
+ "epoch": 13.682926829268293,
+ "grad_norm": 0.042579326778650284,
+ "learning_rate": 0.0005113073332426968,
+ "loss": 2.2596194744110107,
+ "step": 985
+ },
+ {
+ "epoch": 13.696864111498257,
+ "grad_norm": 0.044022977352142334,
+ "learning_rate": 0.0005111172275282174,
+ "loss": 2.270303726196289,
+ "step": 986
+ },
+ {
+ "epoch": 13.710801393728223,
+ "grad_norm": 0.04324937239289284,
+ "learning_rate": 0.0005109269541374469,
+ "loss": 2.2393593788146973,
+ "step": 987
+ },
+ {
+ "epoch": 13.724738675958188,
+ "grad_norm": 0.04146691411733627,
+ "learning_rate": 0.000510736513223685,
+ "loss": 2.2541770935058594,
+ "step": 988
+ },
+ {
+ "epoch": 13.738675958188153,
+ "grad_norm": 0.04146251827478409,
+ "learning_rate": 0.0005105459049403665,
+ "loss": 2.260561943054199,
+ "step": 989
+ },
+ {
+ "epoch": 13.752613240418118,
+ "grad_norm": 0.042454298585653305,
+ "learning_rate": 0.0005103551294410614,
+ "loss": 2.2623369693756104,
+ "step": 990
+ },
+ {
+ "epoch": 13.766550522648084,
+ "grad_norm": 0.04376888647675514,
+ "learning_rate": 0.0005101641868794736,
+ "loss": 2.2560131549835205,
+ "step": 991
+ },
+ {
+ "epoch": 13.78048780487805,
+ "grad_norm": 0.04379274323582649,
+ "learning_rate": 0.0005099730774094423,
+ "loss": 2.2503037452697754,
+ "step": 992
+ },
+ {
+ "epoch": 13.794425087108014,
+ "grad_norm": 0.04411308094859123,
+ "learning_rate": 0.0005097818011849408,
+ "loss": 2.244288921356201,
+ "step": 993
+ },
+ {
+ "epoch": 13.80836236933798,
+ "grad_norm": 0.04043621942400932,
+ "learning_rate": 0.0005095903583600772,
+ "loss": 2.244035243988037,
+ "step": 994
+ },
+ {
+ "epoch": 13.822299651567944,
+ "grad_norm": 0.04722495377063751,
+ "learning_rate": 0.0005093987490890933,
+ "loss": 2.269280433654785,
+ "step": 995
+ },
+ {
+ "epoch": 13.83623693379791,
+ "grad_norm": 0.049322471022605896,
+ "learning_rate": 0.0005092069735263651,
+ "loss": 2.249361515045166,
+ "step": 996
+ },
+ {
+ "epoch": 13.850174216027874,
+ "grad_norm": 0.04808150604367256,
+ "learning_rate": 0.000509015031826403,
+ "loss": 2.255721092224121,
+ "step": 997
+ },
+ {
+ "epoch": 13.86411149825784,
+ "grad_norm": 0.044958360493183136,
+ "learning_rate": 0.0005088229241438509,
+ "loss": 2.2578060626983643,
+ "step": 998
+ },
+ {
+ "epoch": 13.878048780487806,
+ "grad_norm": 0.04442335292696953,
+ "learning_rate": 0.0005086306506334864,
+ "loss": 2.2553436756134033,
+ "step": 999
+ },
+ {
+ "epoch": 13.89198606271777,
+ "grad_norm": 0.0487419068813324,
+ "learning_rate": 0.0005084382114502208,
+ "loss": 2.2526695728302,
+ "step": 1000
+ },
+ {
+ "epoch": 13.905923344947736,
+ "grad_norm": 0.047398749738931656,
+ "learning_rate": 0.0005082456067490988,
+ "loss": 2.259551763534546,
+ "step": 1001
+ },
+ {
+ "epoch": 13.9198606271777,
+ "grad_norm": 0.04429299384355545,
+ "learning_rate": 0.0005080528366852987,
+ "loss": 2.270155906677246,
+ "step": 1002
+ },
+ {
+ "epoch": 13.933797909407666,
+ "grad_norm": 0.045255087316036224,
+ "learning_rate": 0.0005078599014141318,
+ "loss": 2.2554101943969727,
+ "step": 1003
+ },
+ {
+ "epoch": 13.94773519163763,
+ "grad_norm": 0.04559073969721794,
+ "learning_rate": 0.0005076668010910425,
+ "loss": 2.2913122177124023,
+ "step": 1004
+ },
+ {
+ "epoch": 13.961672473867596,
+ "grad_norm": 0.04300642013549805,
+ "learning_rate": 0.0005074735358716083,
+ "loss": 2.241891860961914,
+ "step": 1005
+ },
+ {
+ "epoch": 13.975609756097562,
+ "grad_norm": 0.04328060522675514,
+ "learning_rate": 0.0005072801059115394,
+ "loss": 2.2659969329833984,
+ "step": 1006
+ },
+ {
+ "epoch": 13.989547038327526,
+ "grad_norm": 0.0425153523683548,
+ "learning_rate": 0.000507086511366679,
+ "loss": 2.266413450241089,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.03479035571217537,
+ "learning_rate": 0.0005068927523930027,
+ "loss": 1.6806477308273315,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 0.6199555993080139,
+ "eval_runtime": 42.3013,
+ "eval_samples_per_second": 57.729,
+ "eval_steps_per_second": 0.473,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013937282229966,
+ "grad_norm": 0.04759897664189339,
+ "learning_rate": 0.0005066988291466184,
+ "loss": 2.1937670707702637,
+ "step": 1009
+ },
+ {
+ "epoch": 14.02787456445993,
+ "grad_norm": 0.06862346827983856,
+ "learning_rate": 0.0005065047417837669,
+ "loss": 2.2141411304473877,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041811846689896,
+ "grad_norm": 0.07168037444353104,
+ "learning_rate": 0.0005063104904608206,
+ "loss": 2.198908805847168,
+ "step": 1011
+ },
+ {
+ "epoch": 14.05574912891986,
+ "grad_norm": 0.06659573316574097,
+ "learning_rate": 0.0005061160753342843,
+ "loss": 2.218000888824463,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069686411149826,
+ "grad_norm": 0.06285326927900314,
+ "learning_rate": 0.0005059214965607948,
+ "loss": 2.1995139122009277,
+ "step": 1013
+ },
+ {
+ "epoch": 14.08362369337979,
+ "grad_norm": 0.061170000582933426,
+ "learning_rate": 0.0005057267542971207,
+ "loss": 2.2026236057281494,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097560975609756,
+ "grad_norm": 0.06091141700744629,
+ "learning_rate": 0.0005055318487001624,
+ "loss": 2.2087340354919434,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111498257839722,
+ "grad_norm": 0.05953513830900192,
+ "learning_rate": 0.0005053367799269518,
+ "loss": 2.1985390186309814,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125435540069686,
+ "grad_norm": 0.06126454845070839,
+ "learning_rate": 0.0005051415481346522,
+ "loss": 2.176772117614746,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139372822299652,
+ "grad_norm": 0.0675380751490593,
+ "learning_rate": 0.0005049461534805585,
+ "loss": 2.2045438289642334,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153310104529616,
+ "grad_norm": 0.07128442823886871,
+ "learning_rate": 0.0005047505961220964,
+ "loss": 2.197822332382202,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167247386759582,
+ "grad_norm": 0.06793799996376038,
+ "learning_rate": 0.0005045548762168231,
+ "loss": 2.1957449913024902,
+ "step": 1020
+ },
+ {
+ "epoch": 14.181184668989546,
+ "grad_norm": 0.05969219282269478,
+ "learning_rate": 0.0005043589939224266,
+ "loss": 2.206712245941162,
+ "step": 1021
+ },
+ {
+ "epoch": 14.195121951219512,
+ "grad_norm": 0.061422668397426605,
+ "learning_rate": 0.0005041629493967257,
+ "loss": 2.199829578399658,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209059233449477,
+ "grad_norm": 0.06352506577968597,
+ "learning_rate": 0.0005039667427976697,
+ "loss": 2.208404064178467,
+ "step": 1023
+ },
+ {
+ "epoch": 14.222996515679442,
+ "grad_norm": 0.06349361687898636,
+ "learning_rate": 0.0005037703742833391,
+ "loss": 2.2045750617980957,
+ "step": 1024
+ },
+ {
+ "epoch": 14.236933797909408,
+ "grad_norm": 0.05827466771006584,
+ "learning_rate": 0.0005035738440119442,
+ "loss": 2.204209566116333,
+ "step": 1025
+ },
+ {
+ "epoch": 14.250871080139373,
+ "grad_norm": 0.055201269686222076,
+ "learning_rate": 0.0005033771521418261,
+ "loss": 2.210240364074707,
+ "step": 1026
+ },
+ {
+ "epoch": 14.264808362369338,
+ "grad_norm": 0.05749988183379173,
+ "learning_rate": 0.0005031802988314557,
+ "loss": 2.2068967819213867,
+ "step": 1027
+ },
+ {
+ "epoch": 14.278745644599303,
+ "grad_norm": 0.061330124735832214,
+ "learning_rate": 0.0005029832842394342,
+ "loss": 2.194495439529419,
+ "step": 1028
+ },
+ {
+ "epoch": 14.292682926829269,
+ "grad_norm": 0.05682205408811569,
+ "learning_rate": 0.0005027861085244927,
+ "loss": 2.1934378147125244,
+ "step": 1029
+ },
+ {
+ "epoch": 14.306620209059233,
+ "grad_norm": 0.054082732647657394,
+ "learning_rate": 0.0005025887718454922,
+ "loss": 2.1993770599365234,
+ "step": 1030
+ },
+ {
+ "epoch": 14.320557491289199,
+ "grad_norm": 0.05460484325885773,
+ "learning_rate": 0.0005023912743614232,
+ "loss": 2.2270498275756836,
+ "step": 1031
+ },
+ {
+ "epoch": 14.334494773519165,
+ "grad_norm": 0.05222999304533005,
+ "learning_rate": 0.0005021936162314058,
+ "loss": 2.1926186084747314,
+ "step": 1032
+ },
+ {
+ "epoch": 14.348432055749129,
+ "grad_norm": 0.04854818806052208,
+ "learning_rate": 0.0005019957976146898,
+ "loss": 2.209700584411621,
+ "step": 1033
+ },
+ {
+ "epoch": 14.362369337979095,
+ "grad_norm": 0.051000695675611496,
+ "learning_rate": 0.0005017978186706538,
+ "loss": 2.207035541534424,
+ "step": 1034
+ },
+ {
+ "epoch": 14.376306620209059,
+ "grad_norm": 0.05035366490483284,
+ "learning_rate": 0.0005015996795588062,
+ "loss": 2.227447032928467,
+ "step": 1035
+ },
+ {
+ "epoch": 14.390243902439025,
+ "grad_norm": 0.048412274569272995,
+ "learning_rate": 0.0005014013804387838,
+ "loss": 2.229435443878174,
+ "step": 1036
+ },
+ {
+ "epoch": 14.404181184668989,
+ "grad_norm": 0.04643386974930763,
+ "learning_rate": 0.0005012029214703529,
+ "loss": 2.212726593017578,
+ "step": 1037
+ },
+ {
+ "epoch": 14.418118466898955,
+ "grad_norm": 0.05282546207308769,
+ "learning_rate": 0.000501004302813408,
+ "loss": 2.2133121490478516,
+ "step": 1038
+ },
+ {
+ "epoch": 14.43205574912892,
+ "grad_norm": 0.04976656660437584,
+ "learning_rate": 0.0005008055246279727,
+ "loss": 2.222738265991211,
+ "step": 1039
+ },
+ {
+ "epoch": 14.445993031358885,
+ "grad_norm": 0.04937833175063133,
+ "learning_rate": 0.000500606587074199,
+ "loss": 2.2278215885162354,
+ "step": 1040
+ },
+ {
+ "epoch": 14.45993031358885,
+ "grad_norm": 0.05218666046857834,
+ "learning_rate": 0.0005004074903123674,
+ "loss": 2.2277817726135254,
+ "step": 1041
+ },
+ {
+ "epoch": 14.473867595818815,
+ "grad_norm": 0.05176419019699097,
+ "learning_rate": 0.0005002082345028864,
+ "loss": 2.231154203414917,
+ "step": 1042
+ },
+ {
+ "epoch": 14.487804878048781,
+ "grad_norm": 0.049131155014038086,
+ "learning_rate": 0.0005000088198062929,
+ "loss": 2.2321465015411377,
+ "step": 1043
+ },
+ {
+ "epoch": 14.501742160278745,
+ "grad_norm": 0.04980473965406418,
+ "learning_rate": 0.0004998092463832516,
+ "loss": 2.191263198852539,
+ "step": 1044
+ },
+ {
+ "epoch": 14.515679442508711,
+ "grad_norm": 0.048349328339099884,
+ "learning_rate": 0.0004996095143945554,
+ "loss": 2.2167882919311523,
+ "step": 1045
+ },
+ {
+ "epoch": 14.529616724738675,
+ "grad_norm": 0.04662036523222923,
+ "learning_rate": 0.0004994096240011246,
+ "loss": 2.213564395904541,
+ "step": 1046
+ },
+ {
+ "epoch": 14.543554006968641,
+ "grad_norm": 0.04783051833510399,
+ "learning_rate": 0.0004992095753640072,
+ "loss": 2.225752592086792,
+ "step": 1047
+ },
+ {
+ "epoch": 14.557491289198607,
+ "grad_norm": 0.05093488097190857,
+ "learning_rate": 0.0004990093686443791,
+ "loss": 2.2382640838623047,
+ "step": 1048
+ },
+ {
+ "epoch": 14.571428571428571,
+ "grad_norm": 0.05354484170675278,
+ "learning_rate": 0.000498809004003543,
+ "loss": 2.226134777069092,
+ "step": 1049
+ },
+ {
+ "epoch": 14.585365853658537,
+ "grad_norm": 0.04998788982629776,
+ "learning_rate": 0.0004986084816029291,
+ "loss": 2.2372093200683594,
+ "step": 1050
+ },
+ {
+ "epoch": 14.599303135888501,
+ "grad_norm": 0.04952755197882652,
+ "learning_rate": 0.0004984078016040946,
+ "loss": 2.232860565185547,
+ "step": 1051
+ },
+ {
+ "epoch": 14.613240418118467,
+ "grad_norm": 0.04750008508563042,
+ "learning_rate": 0.000498206964168724,
+ "loss": 2.223733901977539,
+ "step": 1052
+ },
+ {
+ "epoch": 14.627177700348431,
+ "grad_norm": 0.04636282101273537,
+ "learning_rate": 0.000498005969458628,
+ "loss": 2.227602958679199,
+ "step": 1053
+ },
+ {
+ "epoch": 14.641114982578397,
+ "grad_norm": 0.0465775765478611,
+ "learning_rate": 0.0004978048176357447,
+ "loss": 2.228397846221924,
+ "step": 1054
+ },
+ {
+ "epoch": 14.655052264808361,
+ "grad_norm": 0.04467611759901047,
+ "learning_rate": 0.0004976035088621385,
+ "loss": 2.2124547958374023,
+ "step": 1055
+ },
+ {
+ "epoch": 14.668989547038327,
+ "grad_norm": 0.04734990745782852,
+ "learning_rate": 0.0004974020433000003,
+ "loss": 2.2278337478637695,
+ "step": 1056
+ },
+ {
+ "epoch": 14.682926829268293,
+ "grad_norm": 0.048105571419000626,
+ "learning_rate": 0.000497200421111647,
+ "loss": 2.2506489753723145,
+ "step": 1057
+ },
+ {
+ "epoch": 14.696864111498257,
+ "grad_norm": 0.04658956825733185,
+ "learning_rate": 0.0004969986424595221,
+ "loss": 2.2176156044006348,
+ "step": 1058
+ },
+ {
+ "epoch": 14.710801393728223,
+ "grad_norm": 0.04707225784659386,
+ "learning_rate": 0.0004967967075061949,
+ "loss": 2.235560894012451,
+ "step": 1059
+ },
+ {
+ "epoch": 14.724738675958188,
+ "grad_norm": 0.04652702435851097,
+ "learning_rate": 0.0004965946164143609,
+ "loss": 2.2421717643737793,
+ "step": 1060
+ },
+ {
+ "epoch": 14.738675958188153,
+ "grad_norm": 0.045091014355421066,
+ "learning_rate": 0.0004963923693468413,
+ "loss": 2.233527183532715,
+ "step": 1061
+ },
+ {
+ "epoch": 14.752613240418118,
+ "grad_norm": 0.0467996746301651,
+ "learning_rate": 0.0004961899664665827,
+ "loss": 2.208993673324585,
+ "step": 1062
+ },
+ {
+ "epoch": 14.766550522648084,
+ "grad_norm": 0.04628554731607437,
+ "learning_rate": 0.0004959874079366576,
+ "loss": 2.230579376220703,
+ "step": 1063
+ },
+ {
+ "epoch": 14.78048780487805,
+ "grad_norm": 0.04599257931113243,
+ "learning_rate": 0.0004957846939202637,
+ "loss": 2.2343482971191406,
+ "step": 1064
+ },
+ {
+ "epoch": 14.794425087108014,
+ "grad_norm": 0.045816246420145035,
+ "learning_rate": 0.000495581824580724,
+ "loss": 2.242190361022949,
+ "step": 1065
+ },
+ {
+ "epoch": 14.80836236933798,
+ "grad_norm": 0.04708870127797127,
+ "learning_rate": 0.0004953788000814866,
+ "loss": 2.2468795776367188,
+ "step": 1066
+ },
+ {
+ "epoch": 14.822299651567944,
+ "grad_norm": 0.049605369567871094,
+ "learning_rate": 0.000495175620586125,
+ "loss": 2.21968412399292,
+ "step": 1067
+ },
+ {
+ "epoch": 14.83623693379791,
+ "grad_norm": 0.044056523591279984,
+ "learning_rate": 0.0004949722862583368,
+ "loss": 2.2316298484802246,
+ "step": 1068
+ },
+ {
+ "epoch": 14.850174216027874,
+ "grad_norm": 0.042938072234392166,
+ "learning_rate": 0.000494768797261945,
+ "loss": 2.252958059310913,
+ "step": 1069
+ },
+ {
+ "epoch": 14.86411149825784,
+ "grad_norm": 0.04511357098817825,
+ "learning_rate": 0.000494565153760897,
+ "loss": 2.2274842262268066,
+ "step": 1070
+ },
+ {
+ "epoch": 14.878048780487806,
+ "grad_norm": 0.04632679745554924,
+ "learning_rate": 0.0004943613559192648,
+ "loss": 2.2324767112731934,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89198606271777,
+ "grad_norm": 0.045614346861839294,
+ "learning_rate": 0.0004941574039012444,
+ "loss": 2.2428746223449707,
+ "step": 1072
+ },
+ {
+ "epoch": 14.905923344947736,
+ "grad_norm": 0.04592366889119148,
+ "learning_rate": 0.0004939532978711566,
+ "loss": 2.2330827713012695,
+ "step": 1073
+ },
+ {
+ "epoch": 14.9198606271777,
+ "grad_norm": 0.04424305632710457,
+ "learning_rate": 0.0004937490379934456,
+ "loss": 2.2334916591644287,
+ "step": 1074
+ },
+ {
+ "epoch": 14.933797909407666,
+ "grad_norm": 0.0463118739426136,
+ "learning_rate": 0.00049354462443268,
+ "loss": 2.2362606525421143,
+ "step": 1075
+ },
+ {
+ "epoch": 14.94773519163763,
+ "grad_norm": 0.04408831149339676,
+ "learning_rate": 0.0004933400573535521,
+ "loss": 2.2407727241516113,
+ "step": 1076
+ },
+ {
+ "epoch": 14.961672473867596,
+ "grad_norm": 0.04300303012132645,
+ "learning_rate": 0.000493135336920878,
+ "loss": 2.222532272338867,
+ "step": 1077
+ },
+ {
+ "epoch": 14.975609756097562,
+ "grad_norm": 0.04180522635579109,
+ "learning_rate": 0.0004929304632995973,
+ "loss": 2.242893695831299,
+ "step": 1078
+ },
+ {
+ "epoch": 14.989547038327526,
+ "grad_norm": 0.043276574462652206,
+ "learning_rate": 0.0004927254366547727,
+ "loss": 2.2241783142089844,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.036254994571208954,
+ "learning_rate": 0.0004925202571515908,
+ "loss": 1.6649963855743408,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 0.6207222938537598,
+ "eval_runtime": 37.3466,
+ "eval_samples_per_second": 65.388,
+ "eval_steps_per_second": 0.536,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013937282229966,
+ "grad_norm": 0.045301277190446854,
+ "learning_rate": 0.0004923149249553608,
+ "loss": 2.184032917022705,
+ "step": 1081
+ },
+ {
+ "epoch": 15.02787456445993,
+ "grad_norm": 0.05988018214702606,
+ "learning_rate": 0.0004921094402315152,
+ "loss": 2.1630473136901855,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041811846689896,
+ "grad_norm": 0.06664786487817764,
+ "learning_rate": 0.0004919038031456093,
+ "loss": 2.172067642211914,
+ "step": 1083
+ },
+ {
+ "epoch": 15.05574912891986,
+ "grad_norm": 0.06994126737117767,
+ "learning_rate": 0.0004916980138633213,
+ "loss": 2.185060501098633,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069686411149826,
+ "grad_norm": 0.07145395129919052,
+ "learning_rate": 0.0004914920725504518,
+ "loss": 2.173717498779297,
+ "step": 1085
+ },
+ {
+ "epoch": 15.08362369337979,
+ "grad_norm": 0.07037318497896194,
+ "learning_rate": 0.000491285979372924,
+ "loss": 2.1818294525146484,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097560975609756,
+ "grad_norm": 0.07752140611410141,
+ "learning_rate": 0.0004910797344967834,
+ "loss": 2.179530620574951,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111498257839722,
+ "grad_norm": 0.07689100503921509,
+ "learning_rate": 0.000490873338088198,
+ "loss": 2.167066812515259,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125435540069686,
+ "grad_norm": 0.07060840725898743,
+ "learning_rate": 0.0004906667903134573,
+ "loss": 2.166823387145996,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139372822299652,
+ "grad_norm": 0.07528708130121231,
+ "learning_rate": 0.0004904600913389735,
+ "loss": 2.1838769912719727,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153310104529616,
+ "grad_norm": 0.07452721893787384,
+ "learning_rate": 0.0004902532413312799,
+ "loss": 2.1846580505371094,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167247386759582,
+ "grad_norm": 0.08076248317956924,
+ "learning_rate": 0.0004900462404570321,
+ "loss": 2.1811747550964355,
+ "step": 1092
+ },
+ {
+ "epoch": 15.181184668989546,
+ "grad_norm": 0.07249059528112411,
+ "learning_rate": 0.0004898390888830067,
+ "loss": 2.187530279159546,
+ "step": 1093
+ },
+ {
+ "epoch": 15.195121951219512,
+ "grad_norm": 0.06610925495624542,
+ "learning_rate": 0.0004896317867761022,
+ "loss": 2.1889264583587646,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209059233449477,
+ "grad_norm": 0.07099732756614685,
+ "learning_rate": 0.000489424334303338,
+ "loss": 2.188560962677002,
+ "step": 1095
+ },
+ {
+ "epoch": 15.222996515679442,
+ "grad_norm": 0.0737202987074852,
+ "learning_rate": 0.0004892167316318548,
+ "loss": 2.186715841293335,
+ "step": 1096
+ },
+ {
+ "epoch": 15.236933797909408,
+ "grad_norm": 0.06986237317323685,
+ "learning_rate": 0.0004890089789289147,
+ "loss": 2.1962318420410156,
+ "step": 1097
+ },
+ {
+ "epoch": 15.250871080139373,
+ "grad_norm": 0.07112278789281845,
+ "learning_rate": 0.0004888010763618997,
+ "loss": 2.194401502609253,
+ "step": 1098
+ },
+ {
+ "epoch": 15.264808362369338,
+ "grad_norm": 0.06746342778205872,
+ "learning_rate": 0.0004885930240983136,
+ "loss": 2.188718795776367,
+ "step": 1099
+ },
+ {
+ "epoch": 15.278745644599303,
+ "grad_norm": 0.06471215933561325,
+ "learning_rate": 0.0004883848223057801,
+ "loss": 2.198849678039551,
+ "step": 1100
+ },
+ {
+ "epoch": 15.292682926829269,
+ "grad_norm": 0.05913659557700157,
+ "learning_rate": 0.00048817647115204386,
+ "loss": 2.183661937713623,
+ "step": 1101
+ },
+ {
+ "epoch": 15.306620209059233,
+ "grad_norm": 0.060666151344776154,
+ "learning_rate": 0.00048796797080496936,
+ "loss": 2.1805803775787354,
+ "step": 1102
+ },
+ {
+ "epoch": 15.320557491289199,
+ "grad_norm": 0.06026238948106766,
+ "learning_rate": 0.00048775932143254176,
+ "loss": 2.1778993606567383,
+ "step": 1103
+ },
+ {
+ "epoch": 15.334494773519165,
+ "grad_norm": 0.054371971637010574,
+ "learning_rate": 0.0004875505232028661,
+ "loss": 2.193100690841675,
+ "step": 1104
+ },
+ {
+ "epoch": 15.348432055749129,
+ "grad_norm": 0.051084667444229126,
+ "learning_rate": 0.0004873415762841672,
+ "loss": 2.1867239475250244,
+ "step": 1105
+ },
+ {
+ "epoch": 15.362369337979095,
+ "grad_norm": 0.05281403660774231,
+ "learning_rate": 0.00048713248084478986,
+ "loss": 2.1998157501220703,
+ "step": 1106
+ },
+ {
+ "epoch": 15.376306620209059,
+ "grad_norm": 0.04957163333892822,
+ "learning_rate": 0.0004869232370531986,
+ "loss": 2.1781673431396484,
+ "step": 1107
+ },
+ {
+ "epoch": 15.390243902439025,
+ "grad_norm": 0.04794200882315636,
+ "learning_rate": 0.0004867138450779773,
+ "loss": 2.1990952491760254,
+ "step": 1108
+ },
+ {
+ "epoch": 15.404181184668989,
+ "grad_norm": 0.05102508142590523,
+ "learning_rate": 0.0004865043050878293,
+ "loss": 2.199371814727783,
+ "step": 1109
+ },
+ {
+ "epoch": 15.418118466898955,
+ "grad_norm": 0.049935199320316315,
+ "learning_rate": 0.0004862946172515771,
+ "loss": 2.191676616668701,
+ "step": 1110
+ },
+ {
+ "epoch": 15.43205574912892,
+ "grad_norm": 0.05205542966723442,
+ "learning_rate": 0.0004860847817381625,
+ "loss": 2.2015931606292725,
+ "step": 1111
+ },
+ {
+ "epoch": 15.445993031358885,
+ "grad_norm": 0.051782310009002686,
+ "learning_rate": 0.0004858747987166463,
+ "loss": 2.200479030609131,
+ "step": 1112
+ },
+ {
+ "epoch": 15.45993031358885,
+ "grad_norm": 0.04914203658699989,
+ "learning_rate": 0.00048566466835620774,
+ "loss": 2.19816517829895,
+ "step": 1113
+ },
+ {
+ "epoch": 15.473867595818815,
+ "grad_norm": 0.04609949141740799,
+ "learning_rate": 0.0004854543908261453,
+ "loss": 2.1905436515808105,
+ "step": 1114
+ },
+ {
+ "epoch": 15.487804878048781,
+ "grad_norm": 0.04916610196232796,
+ "learning_rate": 0.0004852439662958756,
+ "loss": 2.203505516052246,
+ "step": 1115
+ },
+ {
+ "epoch": 15.501742160278745,
+ "grad_norm": 0.04806613177061081,
+ "learning_rate": 0.000485033394934934,
+ "loss": 2.2004809379577637,
+ "step": 1116
+ },
+ {
+ "epoch": 15.515679442508711,
+ "grad_norm": 0.04937082529067993,
+ "learning_rate": 0.000484822676912974,
+ "loss": 2.1941723823547363,
+ "step": 1117
+ },
+ {
+ "epoch": 15.529616724738675,
+ "grad_norm": 0.049360860139131546,
+ "learning_rate": 0.0004846118123997674,
+ "loss": 2.1975173950195312,
+ "step": 1118
+ },
+ {
+ "epoch": 15.543554006968641,
+ "grad_norm": 0.04772219434380531,
+ "learning_rate": 0.00048440080156520387,
+ "loss": 2.211244583129883,
+ "step": 1119
+ },
+ {
+ "epoch": 15.557491289198607,
+ "grad_norm": 0.04961530491709709,
+ "learning_rate": 0.0004841896445792909,
+ "loss": 2.191709041595459,
+ "step": 1120
+ },
+ {
+ "epoch": 15.571428571428571,
+ "grad_norm": 0.049396563321352005,
+ "learning_rate": 0.000483978341612154,
+ "loss": 2.2178797721862793,
+ "step": 1121
+ },
+ {
+ "epoch": 15.585365853658537,
+ "grad_norm": 0.0474911704659462,
+ "learning_rate": 0.0004837668928340362,
+ "loss": 2.1883950233459473,
+ "step": 1122
+ },
+ {
+ "epoch": 15.599303135888501,
+ "grad_norm": 0.0497126504778862,
+ "learning_rate": 0.0004835552984152978,
+ "loss": 2.194390296936035,
+ "step": 1123
+ },
+ {
+ "epoch": 15.613240418118467,
+ "grad_norm": 0.04819052666425705,
+ "learning_rate": 0.00048334355852641664,
+ "loss": 2.2060859203338623,
+ "step": 1124
+ },
+ {
+ "epoch": 15.627177700348431,
+ "grad_norm": 0.048422664403915405,
+ "learning_rate": 0.0004831316733379879,
+ "loss": 2.203671932220459,
+ "step": 1125
+ },
+ {
+ "epoch": 15.641114982578397,
+ "grad_norm": 0.0464651882648468,
+ "learning_rate": 0.0004829196430207235,
+ "loss": 2.193103313446045,
+ "step": 1126
+ },
+ {
+ "epoch": 15.655052264808361,
+ "grad_norm": 0.04777771607041359,
+ "learning_rate": 0.00048270746774545237,
+ "loss": 2.190608501434326,
+ "step": 1127
+ },
+ {
+ "epoch": 15.668989547038327,
+ "grad_norm": 0.048422545194625854,
+ "learning_rate": 0.0004824951476831204,
+ "loss": 2.191826105117798,
+ "step": 1128
+ },
+ {
+ "epoch": 15.682926829268293,
+ "grad_norm": 0.04907011240720749,
+ "learning_rate": 0.00048228268300479015,
+ "loss": 2.2020134925842285,
+ "step": 1129
+ },
+ {
+ "epoch": 15.696864111498257,
+ "grad_norm": 0.04749045521020889,
+ "learning_rate": 0.0004820700738816403,
+ "loss": 2.1956100463867188,
+ "step": 1130
+ },
+ {
+ "epoch": 15.710801393728223,
+ "grad_norm": 0.04741237685084343,
+ "learning_rate": 0.0004818573204849664,
+ "loss": 2.1953983306884766,
+ "step": 1131
+ },
+ {
+ "epoch": 15.724738675958188,
+ "grad_norm": 0.048426248133182526,
+ "learning_rate": 0.00048164442298617987,
+ "loss": 2.1906962394714355,
+ "step": 1132
+ },
+ {
+ "epoch": 15.738675958188153,
+ "grad_norm": 0.04688018932938576,
+ "learning_rate": 0.00048143138155680844,
+ "loss": 2.2023704051971436,
+ "step": 1133
+ },
+ {
+ "epoch": 15.752613240418118,
+ "grad_norm": 0.04573274403810501,
+ "learning_rate": 0.0004812181963684958,
+ "loss": 2.1997122764587402,
+ "step": 1134
+ },
+ {
+ "epoch": 15.766550522648084,
+ "grad_norm": 0.04500049352645874,
+ "learning_rate": 0.00048100486759300134,
+ "loss": 2.203868865966797,
+ "step": 1135
+ },
+ {
+ "epoch": 15.78048780487805,
+ "grad_norm": 0.046841904520988464,
+ "learning_rate": 0.00048079139540220024,
+ "loss": 2.2186760902404785,
+ "step": 1136
+ },
+ {
+ "epoch": 15.794425087108014,
+ "grad_norm": 0.04670709744095802,
+ "learning_rate": 0.0004805777799680831,
+ "loss": 2.2019705772399902,
+ "step": 1137
+ },
+ {
+ "epoch": 15.80836236933798,
+ "grad_norm": 0.04602878540754318,
+ "learning_rate": 0.0004803640214627561,
+ "loss": 2.21022891998291,
+ "step": 1138
+ },
+ {
+ "epoch": 15.822299651567944,
+ "grad_norm": 0.045200031250715256,
+ "learning_rate": 0.0004801501200584406,
+ "loss": 2.2007641792297363,
+ "step": 1139
+ },
+ {
+ "epoch": 15.83623693379791,
+ "grad_norm": 0.04749643802642822,
+ "learning_rate": 0.000479936075927473,
+ "loss": 2.2098441123962402,
+ "step": 1140
+ },
+ {
+ "epoch": 15.850174216027874,
+ "grad_norm": 0.04594074562191963,
+ "learning_rate": 0.000479721889242305,
+ "loss": 2.204615354537964,
+ "step": 1141
+ },
+ {
+ "epoch": 15.86411149825784,
+ "grad_norm": 0.04540146514773369,
+ "learning_rate": 0.0004795075601755027,
+ "loss": 2.2012791633605957,
+ "step": 1142
+ },
+ {
+ "epoch": 15.878048780487806,
+ "grad_norm": 0.04618830978870392,
+ "learning_rate": 0.00047929308889974737,
+ "loss": 2.1914544105529785,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89198606271777,
+ "grad_norm": 0.0450817234814167,
+ "learning_rate": 0.0004790784755878346,
+ "loss": 2.200557231903076,
+ "step": 1144
+ },
+ {
+ "epoch": 15.905923344947736,
+ "grad_norm": 0.04639074578881264,
+ "learning_rate": 0.00047886372041267434,
+ "loss": 2.204821825027466,
+ "step": 1145
+ },
+ {
+ "epoch": 15.9198606271777,
+ "grad_norm": 0.04546049237251282,
+ "learning_rate": 0.0004786488235472909,
+ "loss": 2.213542938232422,
+ "step": 1146
+ },
+ {
+ "epoch": 15.933797909407666,
+ "grad_norm": 0.04436152055859566,
+ "learning_rate": 0.0004784337851648231,
+ "loss": 2.1992855072021484,
+ "step": 1147
+ },
+ {
+ "epoch": 15.94773519163763,
+ "grad_norm": 0.04665682092308998,
+ "learning_rate": 0.0004782186054385233,
+ "loss": 2.211052417755127,
+ "step": 1148
+ },
+ {
+ "epoch": 15.961672473867596,
+ "grad_norm": 0.04532767832279205,
+ "learning_rate": 0.0004780032845417579,
+ "loss": 2.2086901664733887,
+ "step": 1149
+ },
+ {
+ "epoch": 15.975609756097562,
+ "grad_norm": 0.04679917171597481,
+ "learning_rate": 0.000477787822648007,
+ "loss": 2.1904289722442627,
+ "step": 1150
+ },
+ {
+ "epoch": 15.989547038327526,
+ "grad_norm": 0.04696613550186157,
+ "learning_rate": 0.00047757221993086443,
+ "loss": 2.17523193359375,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.03984897583723068,
+ "learning_rate": 0.00047735647656403754,
+ "loss": 1.6456931829452515,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 0.6217544674873352,
+ "eval_runtime": 36.2031,
+ "eval_samples_per_second": 67.453,
+ "eval_steps_per_second": 0.552,
+ "step": 1152
+ },
+ {
+ "epoch": 16.013937282229964,
+ "grad_norm": 0.048258837312459946,
+ "learning_rate": 0.0004771405927213467,
+ "loss": 2.149430751800537,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027874564459932,
+ "grad_norm": 0.059622205793857574,
+ "learning_rate": 0.0004769245685767255,
+ "loss": 2.146239757537842,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041811846689896,
+ "grad_norm": 0.06228978559374809,
+ "learning_rate": 0.00047670840430422113,
+ "loss": 2.1373820304870605,
+ "step": 1155
+ },
+ {
+ "epoch": 16.05574912891986,
+ "grad_norm": 0.058429088443517685,
+ "learning_rate": 0.0004764921000779928,
+ "loss": 2.153956413269043,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069686411149824,
+ "grad_norm": 0.0544302761554718,
+ "learning_rate": 0.0004762756560723131,
+ "loss": 2.1617636680603027,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083623693379792,
+ "grad_norm": 0.050771284848451614,
+ "learning_rate": 0.0004760590724615671,
+ "loss": 2.134815216064453,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097560975609756,
+ "grad_norm": 0.05482947453856468,
+ "learning_rate": 0.0004758423494202522,
+ "loss": 2.140288829803467,
+ "step": 1159
+ },
+ {
+ "epoch": 16.11149825783972,
+ "grad_norm": 0.06205987557768822,
+ "learning_rate": 0.0004756254871229782,
+ "loss": 2.1369926929473877,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125435540069688,
+ "grad_norm": 0.060936298221349716,
+ "learning_rate": 0.00047540848574446724,
+ "loss": 2.1448073387145996,
+ "step": 1161
+ },
+ {
+ "epoch": 16.139372822299652,
+ "grad_norm": 0.05571967735886574,
+ "learning_rate": 0.0004751913454595535,
+ "loss": 2.1435866355895996,
+ "step": 1162
+ },
+ {
+ "epoch": 16.153310104529616,
+ "grad_norm": 0.0552542470395565,
+ "learning_rate": 0.0004749740664431828,
+ "loss": 2.149778366088867,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16724738675958,
+ "grad_norm": 0.05414848402142525,
+ "learning_rate": 0.000474756648870413,
+ "loss": 2.149887800216675,
+ "step": 1164
+ },
+ {
+ "epoch": 16.181184668989548,
+ "grad_norm": 0.05441379174590111,
+ "learning_rate": 0.0004745390929164134,
+ "loss": 2.15389347076416,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195121951219512,
+ "grad_norm": 0.05403896048665047,
+ "learning_rate": 0.0004743213987564651,
+ "loss": 2.1331732273101807,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209059233449477,
+ "grad_norm": 0.054594095796346664,
+ "learning_rate": 0.0004741035665659603,
+ "loss": 2.158886671066284,
+ "step": 1167
+ },
+ {
+ "epoch": 16.222996515679444,
+ "grad_norm": 0.06188303232192993,
+ "learning_rate": 0.00047388559652040236,
+ "loss": 2.1471951007843018,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23693379790941,
+ "grad_norm": 0.062315408140420914,
+ "learning_rate": 0.0004736674887954059,
+ "loss": 2.147031307220459,
+ "step": 1169
+ },
+ {
+ "epoch": 16.250871080139373,
+ "grad_norm": 0.06116636097431183,
+ "learning_rate": 0.0004734492435666963,
+ "loss": 2.153916358947754,
+ "step": 1170
+ },
+ {
+ "epoch": 16.264808362369337,
+ "grad_norm": 0.05576318874955177,
+ "learning_rate": 0.0004732308610101099,
+ "loss": 2.1545660495758057,
+ "step": 1171
+ },
+ {
+ "epoch": 16.278745644599304,
+ "grad_norm": 0.05602003261446953,
+ "learning_rate": 0.00047301234130159346,
+ "loss": 2.1588096618652344,
+ "step": 1172
+ },
+ {
+ "epoch": 16.29268292682927,
+ "grad_norm": 0.05946209281682968,
+ "learning_rate": 0.00047279368461720445,
+ "loss": 2.1761999130249023,
+ "step": 1173
+ },
+ {
+ "epoch": 16.306620209059233,
+ "grad_norm": 0.062074463814496994,
+ "learning_rate": 0.0004725748911331106,
+ "loss": 2.168569326400757,
+ "step": 1174
+ },
+ {
+ "epoch": 16.320557491289197,
+ "grad_norm": 0.05756473168730736,
+ "learning_rate": 0.0004723559610255898,
+ "loss": 2.1530699729919434,
+ "step": 1175
+ },
+ {
+ "epoch": 16.334494773519165,
+ "grad_norm": 0.05881023779511452,
+ "learning_rate": 0.0004721368944710302,
+ "loss": 2.1721291542053223,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34843205574913,
+ "grad_norm": 0.06223367527127266,
+ "learning_rate": 0.00047191769164592974,
+ "loss": 2.168361186981201,
+ "step": 1177
+ },
+ {
+ "epoch": 16.362369337979093,
+ "grad_norm": 0.056093230843544006,
+ "learning_rate": 0.000471698352726896,
+ "loss": 2.164424419403076,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37630662020906,
+ "grad_norm": 0.06118649244308472,
+ "learning_rate": 0.0004714788778906467,
+ "loss": 2.158644199371338,
+ "step": 1179
+ },
+ {
+ "epoch": 16.390243902439025,
+ "grad_norm": 0.06548523902893066,
+ "learning_rate": 0.0004712592673140084,
+ "loss": 2.1728553771972656,
+ "step": 1180
+ },
+ {
+ "epoch": 16.40418118466899,
+ "grad_norm": 0.06719230860471725,
+ "learning_rate": 0.00047103952117391764,
+ "loss": 2.1555490493774414,
+ "step": 1181
+ },
+ {
+ "epoch": 16.418118466898953,
+ "grad_norm": 0.06181609630584717,
+ "learning_rate": 0.00047081963964741986,
+ "loss": 2.162527561187744,
+ "step": 1182
+ },
+ {
+ "epoch": 16.43205574912892,
+ "grad_norm": 0.05706655979156494,
+ "learning_rate": 0.0004705996229116696,
+ "loss": 2.1423912048339844,
+ "step": 1183
+ },
+ {
+ "epoch": 16.445993031358885,
+ "grad_norm": 0.05518640577793121,
+ "learning_rate": 0.0004703794711439304,
+ "loss": 2.1653032302856445,
+ "step": 1184
+ },
+ {
+ "epoch": 16.45993031358885,
+ "grad_norm": 0.05664249137043953,
+ "learning_rate": 0.0004701591845215744,
+ "loss": 2.166928291320801,
+ "step": 1185
+ },
+ {
+ "epoch": 16.473867595818817,
+ "grad_norm": 0.05873657390475273,
+ "learning_rate": 0.00046993876322208274,
+ "loss": 2.1778905391693115,
+ "step": 1186
+ },
+ {
+ "epoch": 16.48780487804878,
+ "grad_norm": 0.05944420397281647,
+ "learning_rate": 0.0004697182074230448,
+ "loss": 2.177402973175049,
+ "step": 1187
+ },
+ {
+ "epoch": 16.501742160278745,
+ "grad_norm": 0.059531547129154205,
+ "learning_rate": 0.0004694975173021586,
+ "loss": 2.1766552925109863,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51567944250871,
+ "grad_norm": 0.05503744259476662,
+ "learning_rate": 0.0004692766930372299,
+ "loss": 2.167525291442871,
+ "step": 1189
+ },
+ {
+ "epoch": 16.529616724738677,
+ "grad_norm": 0.05157329514622688,
+ "learning_rate": 0.00046905573480617285,
+ "loss": 2.1732568740844727,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54355400696864,
+ "grad_norm": 0.05355038493871689,
+ "learning_rate": 0.00046883464278700966,
+ "loss": 2.1730806827545166,
+ "step": 1191
+ },
+ {
+ "epoch": 16.557491289198605,
+ "grad_norm": 0.05118329077959061,
+ "learning_rate": 0.0004686134171578702,
+ "loss": 2.1696338653564453,
+ "step": 1192
+ },
+ {
+ "epoch": 16.571428571428573,
+ "grad_norm": 0.05029391869902611,
+ "learning_rate": 0.00046839205809699183,
+ "loss": 2.195044994354248,
+ "step": 1193
+ },
+ {
+ "epoch": 16.585365853658537,
+ "grad_norm": 0.050039373338222504,
+ "learning_rate": 0.0004681705657827195,
+ "loss": 2.1581506729125977,
+ "step": 1194
+ },
+ {
+ "epoch": 16.5993031358885,
+ "grad_norm": 0.0545598603785038,
+ "learning_rate": 0.0004679489403935058,
+ "loss": 2.1650285720825195,
+ "step": 1195
+ },
+ {
+ "epoch": 16.613240418118465,
+ "grad_norm": 0.05268346890807152,
+ "learning_rate": 0.00046772718210791005,
+ "loss": 2.184382438659668,
+ "step": 1196
+ },
+ {
+ "epoch": 16.627177700348433,
+ "grad_norm": 0.05236094444990158,
+ "learning_rate": 0.00046750529110459903,
+ "loss": 2.167102813720703,
+ "step": 1197
+ },
+ {
+ "epoch": 16.641114982578397,
+ "grad_norm": 0.052183765918016434,
+ "learning_rate": 0.0004672832675623463,
+ "loss": 2.174470901489258,
+ "step": 1198
+ },
+ {
+ "epoch": 16.65505226480836,
+ "grad_norm": 0.049528587609529495,
+ "learning_rate": 0.0004670611116600322,
+ "loss": 2.1593801975250244,
+ "step": 1199
+ },
+ {
+ "epoch": 16.66898954703833,
+ "grad_norm": 0.05077743902802467,
+ "learning_rate": 0.00046683882357664375,
+ "loss": 2.1829850673675537,
+ "step": 1200
+ },
+ {
+ "epoch": 16.682926829268293,
+ "grad_norm": 0.049165278673172,
+ "learning_rate": 0.0004666164034912744,
+ "loss": 2.1820642948150635,
+ "step": 1201
+ },
+ {
+ "epoch": 16.696864111498257,
+ "grad_norm": 0.049670539796352386,
+ "learning_rate": 0.00046639385158312406,
+ "loss": 2.1617588996887207,
+ "step": 1202
+ },
+ {
+ "epoch": 16.71080139372822,
+ "grad_norm": 0.05188990756869316,
+ "learning_rate": 0.00046617116803149874,
+ "loss": 2.1910011768341064,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72473867595819,
+ "grad_norm": 0.05106198787689209,
+ "learning_rate": 0.00046594835301581053,
+ "loss": 2.1670002937316895,
+ "step": 1204
+ },
+ {
+ "epoch": 16.738675958188153,
+ "grad_norm": 0.052352480590343475,
+ "learning_rate": 0.00046572540671557745,
+ "loss": 2.1804449558258057,
+ "step": 1205
+ },
+ {
+ "epoch": 16.752613240418118,
+ "grad_norm": 0.05456020310521126,
+ "learning_rate": 0.00046550232931042346,
+ "loss": 2.183560848236084,
+ "step": 1206
+ },
+ {
+ "epoch": 16.766550522648085,
+ "grad_norm": 0.05248325690627098,
+ "learning_rate": 0.00046527912098007787,
+ "loss": 2.1866538524627686,
+ "step": 1207
+ },
+ {
+ "epoch": 16.78048780487805,
+ "grad_norm": 0.052194926887750626,
+ "learning_rate": 0.00046505578190437564,
+ "loss": 2.179544448852539,
+ "step": 1208
+ },
+ {
+ "epoch": 16.794425087108014,
+ "grad_norm": 0.048344213515520096,
+ "learning_rate": 0.0004648323122632569,
+ "loss": 2.1895692348480225,
+ "step": 1209
+ },
+ {
+ "epoch": 16.808362369337978,
+ "grad_norm": 0.053263742476701736,
+ "learning_rate": 0.0004646087122367673,
+ "loss": 2.1922311782836914,
+ "step": 1210
+ },
+ {
+ "epoch": 16.822299651567945,
+ "grad_norm": 0.05046837404370308,
+ "learning_rate": 0.00046438498200505727,
+ "loss": 2.1986570358276367,
+ "step": 1211
+ },
+ {
+ "epoch": 16.83623693379791,
+ "grad_norm": 0.04699976369738579,
+ "learning_rate": 0.0004641611217483821,
+ "loss": 2.168755531311035,
+ "step": 1212
+ },
+ {
+ "epoch": 16.850174216027874,
+ "grad_norm": 0.0500732958316803,
+ "learning_rate": 0.00046393713164710217,
+ "loss": 2.1747398376464844,
+ "step": 1213
+ },
+ {
+ "epoch": 16.86411149825784,
+ "grad_norm": 0.048436183482408524,
+ "learning_rate": 0.00046371301188168204,
+ "loss": 2.181175947189331,
+ "step": 1214
+ },
+ {
+ "epoch": 16.878048780487806,
+ "grad_norm": 0.04788931831717491,
+ "learning_rate": 0.0004634887626326911,
+ "loss": 2.1619675159454346,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89198606271777,
+ "grad_norm": 0.04881543293595314,
+ "learning_rate": 0.00046326438408080293,
+ "loss": 2.1840174198150635,
+ "step": 1216
+ },
+ {
+ "epoch": 16.905923344947734,
+ "grad_norm": 0.049969445914030075,
+ "learning_rate": 0.00046303987640679517,
+ "loss": 2.199573040008545,
+ "step": 1217
+ },
+ {
+ "epoch": 16.9198606271777,
+ "grad_norm": 0.048629943281412125,
+ "learning_rate": 0.0004628152397915498,
+ "loss": 2.1661055088043213,
+ "step": 1218
+ },
+ {
+ "epoch": 16.933797909407666,
+ "grad_norm": 0.051450759172439575,
+ "learning_rate": 0.00046259047441605215,
+ "loss": 2.182037591934204,
+ "step": 1219
+ },
+ {
+ "epoch": 16.94773519163763,
+ "grad_norm": 0.05253942683339119,
+ "learning_rate": 0.0004623655804613919,
+ "loss": 2.1848878860473633,
+ "step": 1220
+ },
+ {
+ "epoch": 16.961672473867594,
+ "grad_norm": 0.0511169359087944,
+ "learning_rate": 0.00046214055810876194,
+ "loss": 2.181640863418579,
+ "step": 1221
+ },
+ {
+ "epoch": 16.975609756097562,
+ "grad_norm": 0.04952972009778023,
+ "learning_rate": 0.00046191540753945886,
+ "loss": 2.1824798583984375,
+ "step": 1222
+ },
+ {
+ "epoch": 16.989547038327526,
+ "grad_norm": 0.048745568841695786,
+ "learning_rate": 0.00046169012893488204,
+ "loss": 2.175996780395508,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.039088211953639984,
+ "learning_rate": 0.00046146472247653484,
+ "loss": 1.6450124979019165,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 0.6228054761886597,
+ "eval_runtime": 36.2135,
+ "eval_samples_per_second": 67.433,
+ "eval_steps_per_second": 0.552,
+ "step": 1224
+ },
+ {
+ "epoch": 17.013937282229964,
+ "grad_norm": 0.05182459577918053,
+ "learning_rate": 0.0004612391883460228,
+ "loss": 2.13407826423645,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027874564459932,
+ "grad_norm": 0.06349381804466248,
+ "learning_rate": 0.00046101352672505493,
+ "loss": 2.124786615371704,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041811846689896,
+ "grad_norm": 0.06030651181936264,
+ "learning_rate": 0.0004607877377954426,
+ "loss": 2.1319074630737305,
+ "step": 1227
+ },
+ {
+ "epoch": 17.05574912891986,
+ "grad_norm": 0.05942157283425331,
+ "learning_rate": 0.00046056182173909995,
+ "loss": 2.1155600547790527,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069686411149824,
+ "grad_norm": 0.05690222606062889,
+ "learning_rate": 0.0004603357787380435,
+ "loss": 2.1224000453948975,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083623693379792,
+ "grad_norm": 0.05549716204404831,
+ "learning_rate": 0.0004601096089743919,
+ "loss": 2.138361692428589,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097560975609756,
+ "grad_norm": 0.05572805553674698,
+ "learning_rate": 0.0004598833126303661,
+ "loss": 2.108839511871338,
+ "step": 1231
+ },
+ {
+ "epoch": 17.11149825783972,
+ "grad_norm": 0.05359194055199623,
+ "learning_rate": 0.00045965688988828884,
+ "loss": 2.111232042312622,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125435540069688,
+ "grad_norm": 0.05284698307514191,
+ "learning_rate": 0.00045943034093058507,
+ "loss": 2.111241102218628,
+ "step": 1233
+ },
+ {
+ "epoch": 17.139372822299652,
+ "grad_norm": 0.05522393807768822,
+ "learning_rate": 0.000459203665939781,
+ "loss": 2.1056082248687744,
+ "step": 1234
+ },
+ {
+ "epoch": 17.153310104529616,
+ "grad_norm": 0.05988268554210663,
+ "learning_rate": 0.00045897686509850487,
+ "loss": 2.1245055198669434,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16724738675958,
+ "grad_norm": 0.05882375314831734,
+ "learning_rate": 0.0004587499385894856,
+ "loss": 2.12105655670166,
+ "step": 1236
+ },
+ {
+ "epoch": 17.181184668989548,
+ "grad_norm": 0.05429045483469963,
+ "learning_rate": 0.000458522886595554,
+ "loss": 2.1340696811676025,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195121951219512,
+ "grad_norm": 0.05428321287035942,
+ "learning_rate": 0.0004582957092996418,
+ "loss": 2.125894546508789,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209059233449477,
+ "grad_norm": 0.05918198451399803,
+ "learning_rate": 0.0004580684068847817,
+ "loss": 2.115187168121338,
+ "step": 1239
+ },
+ {
+ "epoch": 17.222996515679444,
+ "grad_norm": 0.05467062070965767,
+ "learning_rate": 0.0004578409795341069,
+ "loss": 2.1267573833465576,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23693379790941,
+ "grad_norm": 0.05117730423808098,
+ "learning_rate": 0.0004576134274308517,
+ "loss": 2.131983757019043,
+ "step": 1241
+ },
+ {
+ "epoch": 17.250871080139373,
+ "grad_norm": 0.05354353412985802,
+ "learning_rate": 0.0004573857507583506,
+ "loss": 2.139024019241333,
+ "step": 1242
+ },
+ {
+ "epoch": 17.264808362369337,
+ "grad_norm": 0.05508217588067055,
+ "learning_rate": 0.00045715794970003874,
+ "loss": 2.123086929321289,
+ "step": 1243
+ },
+ {
+ "epoch": 17.278745644599304,
+ "grad_norm": 0.056819524616003036,
+ "learning_rate": 0.0004569300244394513,
+ "loss": 2.133049488067627,
+ "step": 1244
+ },
+ {
+ "epoch": 17.29268292682927,
+ "grad_norm": 0.06116129457950592,
+ "learning_rate": 0.0004567019751602234,
+ "loss": 2.146721601486206,
+ "step": 1245
+ },
+ {
+ "epoch": 17.306620209059233,
+ "grad_norm": 0.06482621282339096,
+ "learning_rate": 0.00045647380204609034,
+ "loss": 2.133073568344116,
+ "step": 1246
+ },
+ {
+ "epoch": 17.320557491289197,
+ "grad_norm": 0.06122269853949547,
+ "learning_rate": 0.00045624550528088704,
+ "loss": 2.1292078495025635,
+ "step": 1247
+ },
+ {
+ "epoch": 17.334494773519165,
+ "grad_norm": 0.060462113469839096,
+ "learning_rate": 0.00045601708504854803,
+ "loss": 2.1301801204681396,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34843205574913,
+ "grad_norm": 0.05775533244013786,
+ "learning_rate": 0.0004557885415331074,
+ "loss": 2.160749673843384,
+ "step": 1249
+ },
+ {
+ "epoch": 17.362369337979093,
+ "grad_norm": 0.05933118611574173,
+ "learning_rate": 0.00045555987491869865,
+ "loss": 2.138021469116211,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37630662020906,
+ "grad_norm": 0.05498939007520676,
+ "learning_rate": 0.00045533108538955416,
+ "loss": 2.1443264484405518,
+ "step": 1251
+ },
+ {
+ "epoch": 17.390243902439025,
+ "grad_norm": 0.05720233544707298,
+ "learning_rate": 0.0004551021731300055,
+ "loss": 2.1400699615478516,
+ "step": 1252
+ },
+ {
+ "epoch": 17.40418118466899,
+ "grad_norm": 0.05569229647517204,
+ "learning_rate": 0.0004548731383244834,
+ "loss": 2.1375250816345215,
+ "step": 1253
+ },
+ {
+ "epoch": 17.418118466898953,
+ "grad_norm": 0.05508109927177429,
+ "learning_rate": 0.0004546439811575169,
+ "loss": 2.1352083683013916,
+ "step": 1254
+ },
+ {
+ "epoch": 17.43205574912892,
+ "grad_norm": 0.057038020342588425,
+ "learning_rate": 0.00045441470181373375,
+ "loss": 2.1290454864501953,
+ "step": 1255
+ },
+ {
+ "epoch": 17.445993031358885,
+ "grad_norm": 0.05938584357500076,
+ "learning_rate": 0.0004541853004778603,
+ "loss": 2.14906644821167,
+ "step": 1256
+ },
+ {
+ "epoch": 17.45993031358885,
+ "grad_norm": 0.05654401332139969,
+ "learning_rate": 0.00045395577733472087,
+ "loss": 2.133410692214966,
+ "step": 1257
+ },
+ {
+ "epoch": 17.473867595818817,
+ "grad_norm": 0.05399394780397415,
+ "learning_rate": 0.0004537261325692383,
+ "loss": 2.14622163772583,
+ "step": 1258
+ },
+ {
+ "epoch": 17.48780487804878,
+ "grad_norm": 0.05683310702443123,
+ "learning_rate": 0.0004534963663664332,
+ "loss": 2.1482772827148438,
+ "step": 1259
+ },
+ {
+ "epoch": 17.501742160278745,
+ "grad_norm": 0.06314415484666824,
+ "learning_rate": 0.00045326647891142394,
+ "loss": 2.150238037109375,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51567944250871,
+ "grad_norm": 0.0595875009894371,
+ "learning_rate": 0.0004530364703894268,
+ "loss": 2.137575626373291,
+ "step": 1261
+ },
+ {
+ "epoch": 17.529616724738677,
+ "grad_norm": 0.05534850060939789,
+ "learning_rate": 0.0004528063409857554,
+ "loss": 2.169827461242676,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54355400696864,
+ "grad_norm": 0.06096148118376732,
+ "learning_rate": 0.0004525760908858209,
+ "loss": 2.142652988433838,
+ "step": 1263
+ },
+ {
+ "epoch": 17.557491289198605,
+ "grad_norm": 0.06313963979482651,
+ "learning_rate": 0.00045234572027513174,
+ "loss": 2.152920722961426,
+ "step": 1264
+ },
+ {
+ "epoch": 17.571428571428573,
+ "grad_norm": 0.058604612946510315,
+ "learning_rate": 0.00045211522933929317,
+ "loss": 2.1487669944763184,
+ "step": 1265
+ },
+ {
+ "epoch": 17.585365853658537,
+ "grad_norm": 0.056736089289188385,
+ "learning_rate": 0.0004518846182640077,
+ "loss": 2.1435699462890625,
+ "step": 1266
+ },
+ {
+ "epoch": 17.5993031358885,
+ "grad_norm": 0.05706419423222542,
+ "learning_rate": 0.0004516538872350744,
+ "loss": 2.1586122512817383,
+ "step": 1267
+ },
+ {
+ "epoch": 17.613240418118465,
+ "grad_norm": 0.05560465529561043,
+ "learning_rate": 0.0004514230364383893,
+ "loss": 2.177081346511841,
+ "step": 1268
+ },
+ {
+ "epoch": 17.627177700348433,
+ "grad_norm": 0.05601844564080238,
+ "learning_rate": 0.0004511920660599444,
+ "loss": 2.1478757858276367,
+ "step": 1269
+ },
+ {
+ "epoch": 17.641114982578397,
+ "grad_norm": 0.05756781995296478,
+ "learning_rate": 0.0004509609762858287,
+ "loss": 2.1525440216064453,
+ "step": 1270
+ },
+ {
+ "epoch": 17.65505226480836,
+ "grad_norm": 0.0531681589782238,
+ "learning_rate": 0.0004507297673022269,
+ "loss": 2.1489810943603516,
+ "step": 1271
+ },
+ {
+ "epoch": 17.66898954703833,
+ "grad_norm": 0.05216185003519058,
+ "learning_rate": 0.0004504984392954199,
+ "loss": 2.144932746887207,
+ "step": 1272
+ },
+ {
+ "epoch": 17.682926829268293,
+ "grad_norm": 0.052748095244169235,
+ "learning_rate": 0.00045026699245178444,
+ "loss": 2.148977756500244,
+ "step": 1273
+ },
+ {
+ "epoch": 17.696864111498257,
+ "grad_norm": 0.051663246005773544,
+ "learning_rate": 0.0004500354269577932,
+ "loss": 2.1617603302001953,
+ "step": 1274
+ },
+ {
+ "epoch": 17.71080139372822,
+ "grad_norm": 0.05068802461028099,
+ "learning_rate": 0.00044980374300001414,
+ "loss": 2.1467485427856445,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72473867595819,
+ "grad_norm": 0.052201591432094574,
+ "learning_rate": 0.00044957194076511095,
+ "loss": 2.1621475219726562,
+ "step": 1276
+ },
+ {
+ "epoch": 17.738675958188153,
+ "grad_norm": 0.05179779976606369,
+ "learning_rate": 0.0004493400204398426,
+ "loss": 2.1593222618103027,
+ "step": 1277
+ },
+ {
+ "epoch": 17.752613240418118,
+ "grad_norm": 0.05123918130993843,
+ "learning_rate": 0.00044910798221106283,
+ "loss": 2.1596224308013916,
+ "step": 1278
+ },
+ {
+ "epoch": 17.766550522648085,
+ "grad_norm": 0.05416003242135048,
+ "learning_rate": 0.00044887582626572105,
+ "loss": 2.156677484512329,
+ "step": 1279
+ },
+ {
+ "epoch": 17.78048780487805,
+ "grad_norm": 0.05376303568482399,
+ "learning_rate": 0.0004486435527908606,
+ "loss": 2.1515936851501465,
+ "step": 1280
+ },
+ {
+ "epoch": 17.794425087108014,
+ "grad_norm": 0.05113770812749863,
+ "learning_rate": 0.0004484111619736205,
+ "loss": 2.159501075744629,
+ "step": 1281
+ },
+ {
+ "epoch": 17.808362369337978,
+ "grad_norm": 0.05341901257634163,
+ "learning_rate": 0.0004481786540012336,
+ "loss": 2.1458449363708496,
+ "step": 1282
+ },
+ {
+ "epoch": 17.822299651567945,
+ "grad_norm": 0.05436928942799568,
+ "learning_rate": 0.00044794602906102747,
+ "loss": 2.1686582565307617,
+ "step": 1283
+ },
+ {
+ "epoch": 17.83623693379791,
+ "grad_norm": 0.05663881078362465,
+ "learning_rate": 0.00044771328734042367,
+ "loss": 2.162226676940918,
+ "step": 1284
+ },
+ {
+ "epoch": 17.850174216027874,
+ "grad_norm": 0.052064672112464905,
+ "learning_rate": 0.00044748042902693815,
+ "loss": 2.162569046020508,
+ "step": 1285
+ },
+ {
+ "epoch": 17.86411149825784,
+ "grad_norm": 0.05361185595393181,
+ "learning_rate": 0.0004472474543081805,
+ "loss": 2.156773567199707,
+ "step": 1286
+ },
+ {
+ "epoch": 17.878048780487806,
+ "grad_norm": 0.053101785480976105,
+ "learning_rate": 0.00044701436337185444,
+ "loss": 2.1460914611816406,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89198606271777,
+ "grad_norm": 0.05247222259640694,
+ "learning_rate": 0.00044678115640575704,
+ "loss": 2.1564040184020996,
+ "step": 1288
+ },
+ {
+ "epoch": 17.905923344947734,
+ "grad_norm": 0.054551344364881516,
+ "learning_rate": 0.0004465478335977788,
+ "loss": 2.1503076553344727,
+ "step": 1289
+ },
+ {
+ "epoch": 17.9198606271777,
+ "grad_norm": 0.050967201590538025,
+ "learning_rate": 0.00044631439513590393,
+ "loss": 2.165611505508423,
+ "step": 1290
+ },
+ {
+ "epoch": 17.933797909407666,
+ "grad_norm": 0.051103148609399796,
+ "learning_rate": 0.00044608084120820933,
+ "loss": 2.146416187286377,
+ "step": 1291
+ },
+ {
+ "epoch": 17.94773519163763,
+ "grad_norm": 0.04871583357453346,
+ "learning_rate": 0.0004458471720028655,
+ "loss": 2.1615967750549316,
+ "step": 1292
+ },
+ {
+ "epoch": 17.961672473867594,
+ "grad_norm": 0.05047275498509407,
+ "learning_rate": 0.0004456133877081352,
+ "loss": 2.1585195064544678,
+ "step": 1293
+ },
+ {
+ "epoch": 17.975609756097562,
+ "grad_norm": 0.05169983580708504,
+ "learning_rate": 0.0004453794885123744,
+ "loss": 2.163914680480957,
+ "step": 1294
+ },
+ {
+ "epoch": 17.989547038327526,
+ "grad_norm": 0.05178225040435791,
+ "learning_rate": 0.00044514547460403135,
+ "loss": 2.1566972732543945,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.04334854707121849,
+ "learning_rate": 0.00044491134617164694,
+ "loss": 1.6099262237548828,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 0.6236167550086975,
+ "eval_runtime": 36.363,
+ "eval_samples_per_second": 67.156,
+ "eval_steps_per_second": 0.55,
+ "step": 1296
+ },
+ {
+ "epoch": 18.013937282229964,
+ "grad_norm": 0.054574184119701385,
+ "learning_rate": 0.000444677103403854,
+ "loss": 2.097102642059326,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027874564459932,
+ "grad_norm": 0.06331679970026016,
+ "learning_rate": 0.0004444427464893779,
+ "loss": 2.113513469696045,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041811846689896,
+ "grad_norm": 0.06493321061134338,
+ "learning_rate": 0.00044420827561703573,
+ "loss": 2.1095829010009766,
+ "step": 1299
+ },
+ {
+ "epoch": 18.05574912891986,
+ "grad_norm": 0.0661960318684578,
+ "learning_rate": 0.0004439736909757365,
+ "loss": 2.0967822074890137,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069686411149824,
+ "grad_norm": 0.062145210802555084,
+ "learning_rate": 0.0004437389927544805,
+ "loss": 2.08186936378479,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083623693379792,
+ "grad_norm": 0.06310027837753296,
+ "learning_rate": 0.0004435041811423603,
+ "loss": 2.115525245666504,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097560975609756,
+ "grad_norm": 0.06527610123157501,
+ "learning_rate": 0.0004432692563285591,
+ "loss": 2.110492706298828,
+ "step": 1303
+ },
+ {
+ "epoch": 18.11149825783972,
+ "grad_norm": 0.059454720467329025,
+ "learning_rate": 0.0004430342185023517,
+ "loss": 2.105884552001953,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125435540069688,
+ "grad_norm": 0.056922316551208496,
+ "learning_rate": 0.0004427990678531038,
+ "loss": 2.1008682250976562,
+ "step": 1305
+ },
+ {
+ "epoch": 18.139372822299652,
+ "grad_norm": 0.06496447324752808,
+ "learning_rate": 0.0004425638045702719,
+ "loss": 2.0853774547576904,
+ "step": 1306
+ },
+ {
+ "epoch": 18.153310104529616,
+ "grad_norm": 0.059888552874326706,
+ "learning_rate": 0.0004423284288434035,
+ "loss": 2.1116936206817627,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16724738675958,
+ "grad_norm": 0.06061340123414993,
+ "learning_rate": 0.00044209294086213657,
+ "loss": 2.100578784942627,
+ "step": 1308
+ },
+ {
+ "epoch": 18.181184668989548,
+ "grad_norm": 0.06433615833520889,
+ "learning_rate": 0.00044185734081619957,
+ "loss": 2.0994229316711426,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195121951219512,
+ "grad_norm": 0.06373526901006699,
+ "learning_rate": 0.000441621628895411,
+ "loss": 2.1115286350250244,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209059233449477,
+ "grad_norm": 0.062120918184518814,
+ "learning_rate": 0.00044138580528967986,
+ "loss": 2.123278856277466,
+ "step": 1311
+ },
+ {
+ "epoch": 18.222996515679444,
+ "grad_norm": 0.06534294784069061,
+ "learning_rate": 0.0004411498701890051,
+ "loss": 2.0983846187591553,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23693379790941,
+ "grad_norm": 0.06486557424068451,
+ "learning_rate": 0.0004409138237834751,
+ "loss": 2.099348783493042,
+ "step": 1313
+ },
+ {
+ "epoch": 18.250871080139373,
+ "grad_norm": 0.05728910490870476,
+ "learning_rate": 0.00044067766626326835,
+ "loss": 2.0990138053894043,
+ "step": 1314
+ },
+ {
+ "epoch": 18.264808362369337,
+ "grad_norm": 0.060207612812519073,
+ "learning_rate": 0.00044044139781865255,
+ "loss": 2.1117920875549316,
+ "step": 1315
+ },
+ {
+ "epoch": 18.278745644599304,
+ "grad_norm": 0.05766129493713379,
+ "learning_rate": 0.00044020501863998516,
+ "loss": 2.101550579071045,
+ "step": 1316
+ },
+ {
+ "epoch": 18.29268292682927,
+ "grad_norm": 0.060087788850069046,
+ "learning_rate": 0.00043996852891771236,
+ "loss": 2.1135497093200684,
+ "step": 1317
+ },
+ {
+ "epoch": 18.306620209059233,
+ "grad_norm": 0.059771373867988586,
+ "learning_rate": 0.00043973192884236983,
+ "loss": 2.1124963760375977,
+ "step": 1318
+ },
+ {
+ "epoch": 18.320557491289197,
+ "grad_norm": 0.059871334582567215,
+ "learning_rate": 0.0004394952186045819,
+ "loss": 2.1254708766937256,
+ "step": 1319
+ },
+ {
+ "epoch": 18.334494773519165,
+ "grad_norm": 0.060070380568504333,
+ "learning_rate": 0.00043925839839506167,
+ "loss": 2.1019275188446045,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34843205574913,
+ "grad_norm": 0.05744089558720589,
+ "learning_rate": 0.0004390214684046111,
+ "loss": 2.112631320953369,
+ "step": 1321
+ },
+ {
+ "epoch": 18.362369337979093,
+ "grad_norm": 0.06188441440463066,
+ "learning_rate": 0.00043878442882412015,
+ "loss": 2.11454439163208,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37630662020906,
+ "grad_norm": 0.06033455580472946,
+ "learning_rate": 0.00043854727984456746,
+ "loss": 2.1136903762817383,
+ "step": 1323
+ },
+ {
+ "epoch": 18.390243902439025,
+ "grad_norm": 0.05741684511303902,
+ "learning_rate": 0.0004383100216570197,
+ "loss": 2.1244497299194336,
+ "step": 1324
+ },
+ {
+ "epoch": 18.40418118466899,
+ "grad_norm": 0.05371133238077164,
+ "learning_rate": 0.0004380726544526316,
+ "loss": 2.0973854064941406,
+ "step": 1325
+ },
+ {
+ "epoch": 18.418118466898953,
+ "grad_norm": 0.05289234593510628,
+ "learning_rate": 0.00043783517842264534,
+ "loss": 2.1062159538269043,
+ "step": 1326
+ },
+ {
+ "epoch": 18.43205574912892,
+ "grad_norm": 0.05888833478093147,
+ "learning_rate": 0.0004375975937583914,
+ "loss": 2.133770227432251,
+ "step": 1327
+ },
+ {
+ "epoch": 18.445993031358885,
+ "grad_norm": 0.057039227336645126,
+ "learning_rate": 0.0004373599006512871,
+ "loss": 2.123251438140869,
+ "step": 1328
+ },
+ {
+ "epoch": 18.45993031358885,
+ "grad_norm": 0.05389681085944176,
+ "learning_rate": 0.00043712209929283786,
+ "loss": 2.1121368408203125,
+ "step": 1329
+ },
+ {
+ "epoch": 18.473867595818817,
+ "grad_norm": 0.05782404541969299,
+ "learning_rate": 0.00043688418987463567,
+ "loss": 2.119410991668701,
+ "step": 1330
+ },
+ {
+ "epoch": 18.48780487804878,
+ "grad_norm": 0.06069990620017052,
+ "learning_rate": 0.00043664617258835995,
+ "loss": 2.1443772315979004,
+ "step": 1331
+ },
+ {
+ "epoch": 18.501742160278745,
+ "grad_norm": 0.05559232831001282,
+ "learning_rate": 0.0004364080476257769,
+ "loss": 2.1264851093292236,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51567944250871,
+ "grad_norm": 0.05432436615228653,
+ "learning_rate": 0.0004361698151787396,
+ "loss": 2.1118392944335938,
+ "step": 1333
+ },
+ {
+ "epoch": 18.529616724738677,
+ "grad_norm": 0.05471545085310936,
+ "learning_rate": 0.0004359314754391874,
+ "loss": 2.1159002780914307,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54355400696864,
+ "grad_norm": 0.05574088171124458,
+ "learning_rate": 0.0004356930285991466,
+ "loss": 2.1271533966064453,
+ "step": 1335
+ },
+ {
+ "epoch": 18.557491289198605,
+ "grad_norm": 0.05431128293275833,
+ "learning_rate": 0.00043545447485072926,
+ "loss": 2.125399589538574,
+ "step": 1336
+ },
+ {
+ "epoch": 18.571428571428573,
+ "grad_norm": 0.055981073528528214,
+ "learning_rate": 0.000435215814386134,
+ "loss": 2.113802909851074,
+ "step": 1337
+ },
+ {
+ "epoch": 18.585365853658537,
+ "grad_norm": 0.05551784485578537,
+ "learning_rate": 0.0004349770473976453,
+ "loss": 2.1233460903167725,
+ "step": 1338
+ },
+ {
+ "epoch": 18.5993031358885,
+ "grad_norm": 0.05475042760372162,
+ "learning_rate": 0.0004347381740776332,
+ "loss": 2.1365370750427246,
+ "step": 1339
+ },
+ {
+ "epoch": 18.613240418118465,
+ "grad_norm": 0.05448045954108238,
+ "learning_rate": 0.0004344991946185538,
+ "loss": 2.1288349628448486,
+ "step": 1340
+ },
+ {
+ "epoch": 18.627177700348433,
+ "grad_norm": 0.0553717240691185,
+ "learning_rate": 0.00043426010921294837,
+ "loss": 2.1383371353149414,
+ "step": 1341
+ },
+ {
+ "epoch": 18.641114982578397,
+ "grad_norm": 0.05391915515065193,
+ "learning_rate": 0.0004340209180534438,
+ "loss": 2.1390743255615234,
+ "step": 1342
+ },
+ {
+ "epoch": 18.65505226480836,
+ "grad_norm": 0.05404767021536827,
+ "learning_rate": 0.000433781621332752,
+ "loss": 2.1237120628356934,
+ "step": 1343
+ },
+ {
+ "epoch": 18.66898954703833,
+ "grad_norm": 0.05370468273758888,
+ "learning_rate": 0.0004335422192436703,
+ "loss": 2.123408079147339,
+ "step": 1344
+ },
+ {
+ "epoch": 18.682926829268293,
+ "grad_norm": 0.05490506440401077,
+ "learning_rate": 0.00043330271197908023,
+ "loss": 2.130199432373047,
+ "step": 1345
+ },
+ {
+ "epoch": 18.696864111498257,
+ "grad_norm": 0.05651344731450081,
+ "learning_rate": 0.00043306309973194874,
+ "loss": 2.1184425354003906,
+ "step": 1346
+ },
+ {
+ "epoch": 18.71080139372822,
+ "grad_norm": 0.05446930602192879,
+ "learning_rate": 0.000432823382695327,
+ "loss": 2.1391234397888184,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72473867595819,
+ "grad_norm": 0.056854017078876495,
+ "learning_rate": 0.0004325835610623508,
+ "loss": 2.1358017921447754,
+ "step": 1348
+ },
+ {
+ "epoch": 18.738675958188153,
+ "grad_norm": 0.06729792058467865,
+ "learning_rate": 0.00043234363502623994,
+ "loss": 2.1330645084381104,
+ "step": 1349
+ },
+ {
+ "epoch": 18.752613240418118,
+ "grad_norm": 0.05778411030769348,
+ "learning_rate": 0.0004321036047802985,
+ "loss": 2.1277008056640625,
+ "step": 1350
+ },
+ {
+ "epoch": 18.766550522648085,
+ "grad_norm": 0.05493835732340813,
+ "learning_rate": 0.00043186347051791466,
+ "loss": 2.1218693256378174,
+ "step": 1351
+ },
+ {
+ "epoch": 18.78048780487805,
+ "grad_norm": 0.05961703136563301,
+ "learning_rate": 0.0004316232324325602,
+ "loss": 2.141153573989868,
+ "step": 1352
+ },
+ {
+ "epoch": 18.794425087108014,
+ "grad_norm": 0.057490140199661255,
+ "learning_rate": 0.0004313828907177906,
+ "loss": 2.1218957901000977,
+ "step": 1353
+ },
+ {
+ "epoch": 18.808362369337978,
+ "grad_norm": 0.05424332618713379,
+ "learning_rate": 0.0004311424455672448,
+ "loss": 2.1294074058532715,
+ "step": 1354
+ },
+ {
+ "epoch": 18.822299651567945,
+ "grad_norm": 0.05539792776107788,
+ "learning_rate": 0.0004309018971746451,
+ "loss": 2.1287131309509277,
+ "step": 1355
+ },
+ {
+ "epoch": 18.83623693379791,
+ "grad_norm": 0.056515417993068695,
+ "learning_rate": 0.000430661245733797,
+ "loss": 2.1303625106811523,
+ "step": 1356
+ },
+ {
+ "epoch": 18.850174216027874,
+ "grad_norm": 0.053070683032274246,
+ "learning_rate": 0.00043042049143858914,
+ "loss": 2.1501715183258057,
+ "step": 1357
+ },
+ {
+ "epoch": 18.86411149825784,
+ "grad_norm": 0.05422713980078697,
+ "learning_rate": 0.0004301796344829928,
+ "loss": 2.141580581665039,
+ "step": 1358
+ },
+ {
+ "epoch": 18.878048780487806,
+ "grad_norm": 0.053621236234903336,
+ "learning_rate": 0.00042993867506106205,
+ "loss": 2.1374034881591797,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89198606271777,
+ "grad_norm": 0.05488245189189911,
+ "learning_rate": 0.0004296976133669336,
+ "loss": 2.1387908458709717,
+ "step": 1360
+ },
+ {
+ "epoch": 18.905923344947734,
+ "grad_norm": 0.05566219612956047,
+ "learning_rate": 0.0004294564495948266,
+ "loss": 2.1420421600341797,
+ "step": 1361
+ },
+ {
+ "epoch": 18.9198606271777,
+ "grad_norm": 0.05297220125794411,
+ "learning_rate": 0.0004292151839390421,
+ "loss": 2.126768112182617,
+ "step": 1362
+ },
+ {
+ "epoch": 18.933797909407666,
+ "grad_norm": 0.056281380355358124,
+ "learning_rate": 0.0004289738165939636,
+ "loss": 2.114241361618042,
+ "step": 1363
+ },
+ {
+ "epoch": 18.94773519163763,
+ "grad_norm": 0.05625050142407417,
+ "learning_rate": 0.00042873234775405654,
+ "loss": 2.134300947189331,
+ "step": 1364
+ },
+ {
+ "epoch": 18.961672473867594,
+ "grad_norm": 0.05186711251735687,
+ "learning_rate": 0.00042849077761386784,
+ "loss": 2.1409969329833984,
+ "step": 1365
+ },
+ {
+ "epoch": 18.975609756097562,
+ "grad_norm": 0.057695358991622925,
+ "learning_rate": 0.0004282491063680263,
+ "loss": 2.1331894397735596,
+ "step": 1366
+ },
+ {
+ "epoch": 18.989547038327526,
+ "grad_norm": 0.055152107030153275,
+ "learning_rate": 0.00042800733421124207,
+ "loss": 2.147555112838745,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.04286205768585205,
+ "learning_rate": 0.00042776546133830646,
+ "loss": 1.5948516130447388,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 0.6249114871025085,
+ "eval_runtime": 36.6804,
+ "eval_samples_per_second": 66.575,
+ "eval_steps_per_second": 0.545,
+ "step": 1368
+ },
+ {
+ "epoch": 19.013937282229964,
+ "grad_norm": 0.05809386819601059,
+ "learning_rate": 0.00042752348794409227,
+ "loss": 2.0782227516174316,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027874564459932,
+ "grad_norm": 0.06399382650852203,
+ "learning_rate": 0.00042728141422355287,
+ "loss": 2.078792095184326,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041811846689896,
+ "grad_norm": 0.0564531646668911,
+ "learning_rate": 0.0004270392403717229,
+ "loss": 2.083125114440918,
+ "step": 1371
+ },
+ {
+ "epoch": 19.05574912891986,
+ "grad_norm": 0.057170569896698,
+ "learning_rate": 0.00042679696658371743,
+ "loss": 2.0679214000701904,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069686411149824,
+ "grad_norm": 0.05639920011162758,
+ "learning_rate": 0.00042655459305473195,
+ "loss": 2.072279930114746,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083623693379792,
+ "grad_norm": 0.05690578371286392,
+ "learning_rate": 0.0004263121199800425,
+ "loss": 2.0732839107513428,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097560975609756,
+ "grad_norm": 0.05914883315563202,
+ "learning_rate": 0.0004260695475550054,
+ "loss": 2.0810770988464355,
+ "step": 1375
+ },
+ {
+ "epoch": 19.11149825783972,
+ "grad_norm": 0.058082643896341324,
+ "learning_rate": 0.0004258268759750566,
+ "loss": 2.074130058288574,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125435540069688,
+ "grad_norm": 0.06016257032752037,
+ "learning_rate": 0.0004255841054357124,
+ "loss": 2.084043025970459,
+ "step": 1377
+ },
+ {
+ "epoch": 19.139372822299652,
+ "grad_norm": 0.060372497886419296,
+ "learning_rate": 0.0004253412361325686,
+ "loss": 2.0811657905578613,
+ "step": 1378
+ },
+ {
+ "epoch": 19.153310104529616,
+ "grad_norm": 0.0614042803645134,
+ "learning_rate": 0.0004250982682613006,
+ "loss": 2.070756435394287,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16724738675958,
+ "grad_norm": 0.06391493231058121,
+ "learning_rate": 0.00042485520201766315,
+ "loss": 2.067322015762329,
+ "step": 1380
+ },
+ {
+ "epoch": 19.181184668989548,
+ "grad_norm": 0.06465132534503937,
+ "learning_rate": 0.0004246120375974905,
+ "loss": 2.077214002609253,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195121951219512,
+ "grad_norm": 0.06490413844585419,
+ "learning_rate": 0.0004243687751966957,
+ "loss": 2.0735957622528076,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209059233449477,
+ "grad_norm": 0.06681123375892639,
+ "learning_rate": 0.0004241254150112708,
+ "loss": 2.092386484146118,
+ "step": 1383
+ },
+ {
+ "epoch": 19.222996515679444,
+ "grad_norm": 0.07135862857103348,
+ "learning_rate": 0.000423881957237287,
+ "loss": 2.0910637378692627,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23693379790941,
+ "grad_norm": 0.06640495359897614,
+ "learning_rate": 0.0004236384020708935,
+ "loss": 2.076943874359131,
+ "step": 1385
+ },
+ {
+ "epoch": 19.250871080139373,
+ "grad_norm": 0.06542305648326874,
+ "learning_rate": 0.0004233947497083185,
+ "loss": 2.08823299407959,
+ "step": 1386
+ },
+ {
+ "epoch": 19.264808362369337,
+ "grad_norm": 0.06014764681458473,
+ "learning_rate": 0.0004231510003458682,
+ "loss": 2.0875651836395264,
+ "step": 1387
+ },
+ {
+ "epoch": 19.278745644599304,
+ "grad_norm": 0.05776312202215195,
+ "learning_rate": 0.0004229071541799272,
+ "loss": 2.097287654876709,
+ "step": 1388
+ },
+ {
+ "epoch": 19.29268292682927,
+ "grad_norm": 0.058570489287376404,
+ "learning_rate": 0.0004226632114069578,
+ "loss": 2.099949359893799,
+ "step": 1389
+ },
+ {
+ "epoch": 19.306620209059233,
+ "grad_norm": 0.059035737067461014,
+ "learning_rate": 0.0004224191722235004,
+ "loss": 2.0985028743743896,
+ "step": 1390
+ },
+ {
+ "epoch": 19.320557491289197,
+ "grad_norm": 0.05857931450009346,
+ "learning_rate": 0.00042217503682617286,
+ "loss": 2.0884578227996826,
+ "step": 1391
+ },
+ {
+ "epoch": 19.334494773519165,
+ "grad_norm": 0.057818394154310226,
+ "learning_rate": 0.0004219308054116706,
+ "loss": 2.0950827598571777,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34843205574913,
+ "grad_norm": 0.05500008538365364,
+ "learning_rate": 0.0004216864781767667,
+ "loss": 2.0837326049804688,
+ "step": 1393
+ },
+ {
+ "epoch": 19.362369337979093,
+ "grad_norm": 0.05635271221399307,
+ "learning_rate": 0.00042144205531831103,
+ "loss": 2.1017332077026367,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37630662020906,
+ "grad_norm": 0.0582125261425972,
+ "learning_rate": 0.0004211975370332308,
+ "loss": 2.0762600898742676,
+ "step": 1395
+ },
+ {
+ "epoch": 19.390243902439025,
+ "grad_norm": 0.0587347187101841,
+ "learning_rate": 0.00042095292351852976,
+ "loss": 2.0604896545410156,
+ "step": 1396
+ },
+ {
+ "epoch": 19.40418118466899,
+ "grad_norm": 0.058021727949380875,
+ "learning_rate": 0.0004207082149712888,
+ "loss": 2.0906972885131836,
+ "step": 1397
+ },
+ {
+ "epoch": 19.418118466898953,
+ "grad_norm": 0.05805983021855354,
+ "learning_rate": 0.0004204634115886651,
+ "loss": 2.0873594284057617,
+ "step": 1398
+ },
+ {
+ "epoch": 19.43205574912892,
+ "grad_norm": 0.05964788421988487,
+ "learning_rate": 0.0004202185135678924,
+ "loss": 2.1012473106384277,
+ "step": 1399
+ },
+ {
+ "epoch": 19.445993031358885,
+ "grad_norm": 0.058361511677503586,
+ "learning_rate": 0.00041997352110628033,
+ "loss": 2.09468936920166,
+ "step": 1400
+ },
+ {
+ "epoch": 19.45993031358885,
+ "grad_norm": 0.05840443819761276,
+ "learning_rate": 0.00041972843440121527,
+ "loss": 2.105898857116699,
+ "step": 1401
+ },
+ {
+ "epoch": 19.473867595818817,
+ "grad_norm": 0.06023252755403519,
+ "learning_rate": 0.00041948325365015894,
+ "loss": 2.103001594543457,
+ "step": 1402
+ },
+ {
+ "epoch": 19.48780487804878,
+ "grad_norm": 0.057779282331466675,
+ "learning_rate": 0.0004192379790506491,
+ "loss": 2.0969185829162598,
+ "step": 1403
+ },
+ {
+ "epoch": 19.501742160278745,
+ "grad_norm": 0.0592162050306797,
+ "learning_rate": 0.00041899261080029904,
+ "loss": 2.1101880073547363,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51567944250871,
+ "grad_norm": 0.06333442032337189,
+ "learning_rate": 0.00041874714909679754,
+ "loss": 2.1037089824676514,
+ "step": 1405
+ },
+ {
+ "epoch": 19.529616724738677,
+ "grad_norm": 0.06202675402164459,
+ "learning_rate": 0.00041850159413790863,
+ "loss": 2.1154634952545166,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54355400696864,
+ "grad_norm": 0.055281441658735275,
+ "learning_rate": 0.0004182559461214715,
+ "loss": 2.1098036766052246,
+ "step": 1407
+ },
+ {
+ "epoch": 19.557491289198605,
+ "grad_norm": 0.06085072085261345,
+ "learning_rate": 0.0004180102052454004,
+ "loss": 2.0985965728759766,
+ "step": 1408
+ },
+ {
+ "epoch": 19.571428571428573,
+ "grad_norm": 0.059430696070194244,
+ "learning_rate": 0.00041776437170768427,
+ "loss": 2.1063296794891357,
+ "step": 1409
+ },
+ {
+ "epoch": 19.585365853658537,
+ "grad_norm": 0.05628339946269989,
+ "learning_rate": 0.0004175184457063868,
+ "loss": 2.096975326538086,
+ "step": 1410
+ },
+ {
+ "epoch": 19.5993031358885,
+ "grad_norm": 0.056543346494436264,
+ "learning_rate": 0.000417272427439646,
+ "loss": 2.1110968589782715,
+ "step": 1411
+ },
+ {
+ "epoch": 19.613240418118465,
+ "grad_norm": 0.05971049889922142,
+ "learning_rate": 0.00041702631710567443,
+ "loss": 2.1136279106140137,
+ "step": 1412
+ },
+ {
+ "epoch": 19.627177700348433,
+ "grad_norm": 0.056699734181165695,
+ "learning_rate": 0.00041678011490275875,
+ "loss": 2.113466501235962,
+ "step": 1413
+ },
+ {
+ "epoch": 19.641114982578397,
+ "grad_norm": 0.05671929940581322,
+ "learning_rate": 0.00041653382102925957,
+ "loss": 2.1061220169067383,
+ "step": 1414
+ },
+ {
+ "epoch": 19.65505226480836,
+ "grad_norm": 0.05770038440823555,
+ "learning_rate": 0.00041628743568361147,
+ "loss": 2.1156320571899414,
+ "step": 1415
+ },
+ {
+ "epoch": 19.66898954703833,
+ "grad_norm": 0.06175893545150757,
+ "learning_rate": 0.00041604095906432265,
+ "loss": 2.112288475036621,
+ "step": 1416
+ },
+ {
+ "epoch": 19.682926829268293,
+ "grad_norm": 0.06383928656578064,
+ "learning_rate": 0.00041579439136997493,
+ "loss": 2.1029422283172607,
+ "step": 1417
+ },
+ {
+ "epoch": 19.696864111498257,
+ "grad_norm": 0.06042713671922684,
+ "learning_rate": 0.00041554773279922337,
+ "loss": 2.1106066703796387,
+ "step": 1418
+ },
+ {
+ "epoch": 19.71080139372822,
+ "grad_norm": 0.057180315256118774,
+ "learning_rate": 0.0004153009835507963,
+ "loss": 2.1148805618286133,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72473867595819,
+ "grad_norm": 0.061083171516656876,
+ "learning_rate": 0.0004150541438234952,
+ "loss": 2.0946850776672363,
+ "step": 1420
+ },
+ {
+ "epoch": 19.738675958188153,
+ "grad_norm": 0.0596432127058506,
+ "learning_rate": 0.00041480721381619435,
+ "loss": 2.1208066940307617,
+ "step": 1421
+ },
+ {
+ "epoch": 19.752613240418118,
+ "grad_norm": 0.05496669560670853,
+ "learning_rate": 0.00041456019372784086,
+ "loss": 2.1088931560516357,
+ "step": 1422
+ },
+ {
+ "epoch": 19.766550522648085,
+ "grad_norm": 0.05810244753956795,
+ "learning_rate": 0.0004143130837574543,
+ "loss": 2.1019372940063477,
+ "step": 1423
+ },
+ {
+ "epoch": 19.78048780487805,
+ "grad_norm": 0.05894653871655464,
+ "learning_rate": 0.0004140658841041267,
+ "loss": 2.1125125885009766,
+ "step": 1424
+ },
+ {
+ "epoch": 19.794425087108014,
+ "grad_norm": 0.05772726237773895,
+ "learning_rate": 0.0004138185949670224,
+ "loss": 2.126194477081299,
+ "step": 1425
+ },
+ {
+ "epoch": 19.808362369337978,
+ "grad_norm": 0.058502763509750366,
+ "learning_rate": 0.00041357121654537766,
+ "loss": 2.110621452331543,
+ "step": 1426
+ },
+ {
+ "epoch": 19.822299651567945,
+ "grad_norm": 0.058296941220760345,
+ "learning_rate": 0.00041332374903850104,
+ "loss": 2.1034765243530273,
+ "step": 1427
+ },
+ {
+ "epoch": 19.83623693379791,
+ "grad_norm": 0.05595606938004494,
+ "learning_rate": 0.00041307619264577234,
+ "loss": 2.118297815322876,
+ "step": 1428
+ },
+ {
+ "epoch": 19.850174216027874,
+ "grad_norm": 0.0563458688557148,
+ "learning_rate": 0.0004128285475666436,
+ "loss": 2.1122255325317383,
+ "step": 1429
+ },
+ {
+ "epoch": 19.86411149825784,
+ "grad_norm": 0.05421055108308792,
+ "learning_rate": 0.0004125808140006378,
+ "loss": 2.103970527648926,
+ "step": 1430
+ },
+ {
+ "epoch": 19.878048780487806,
+ "grad_norm": 0.05633455142378807,
+ "learning_rate": 0.0004123329921473494,
+ "loss": 2.11661434173584,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89198606271777,
+ "grad_norm": 0.05797342583537102,
+ "learning_rate": 0.0004120850822064439,
+ "loss": 2.1021676063537598,
+ "step": 1432
+ },
+ {
+ "epoch": 19.905923344947734,
+ "grad_norm": 0.056061360985040665,
+ "learning_rate": 0.00041183708437765815,
+ "loss": 2.123298406600952,
+ "step": 1433
+ },
+ {
+ "epoch": 19.9198606271777,
+ "grad_norm": 0.05381599813699722,
+ "learning_rate": 0.00041158899886079925,
+ "loss": 2.120389938354492,
+ "step": 1434
+ },
+ {
+ "epoch": 19.933797909407666,
+ "grad_norm": 0.05545654520392418,
+ "learning_rate": 0.00041134082585574534,
+ "loss": 2.1180779933929443,
+ "step": 1435
+ },
+ {
+ "epoch": 19.94773519163763,
+ "grad_norm": 0.056983016431331635,
+ "learning_rate": 0.00041109256556244497,
+ "loss": 2.118905544281006,
+ "step": 1436
+ },
+ {
+ "epoch": 19.961672473867594,
+ "grad_norm": 0.0575285367667675,
+ "learning_rate": 0.00041084421818091685,
+ "loss": 2.1049699783325195,
+ "step": 1437
+ },
+ {
+ "epoch": 19.975609756097562,
+ "grad_norm": 0.057964932173490524,
+ "learning_rate": 0.0004105957839112501,
+ "loss": 2.1140224933624268,
+ "step": 1438
+ },
+ {
+ "epoch": 19.989547038327526,
+ "grad_norm": 0.05869961529970169,
+ "learning_rate": 0.0004103472629536036,
+ "loss": 2.1089744567871094,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.04450551047921181,
+ "learning_rate": 0.0004100986555082063,
+ "loss": 1.579450249671936,
+ "step": 1440
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 3600,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 50,
+ "save_steps": 500,
+ "stateful_callbacks": {
+ "TrainerControl": {
+ "args": {
+ "should_epoch_stop": false,
+ "should_evaluate": true,
+ "should_log": false,
+ "should_save": false,
+ "should_training_stop": false
+ },
+ "attributes": {}
+ }
+ },
+ "total_flos": 6.155312032854835e+17,
+ "train_batch_size": 64,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/base-ssl/checkpoint-1440/training_args.bin b/runs/base-ssl/checkpoint-1440/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..cbb50e43950730a04421678098579c835c9d518d
--- /dev/null
+++ b/runs/base-ssl/checkpoint-1440/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7572b8029663dc4d810f9d514c80dc9b976de220cbe72e5abd832ec6ec2ef18b
+size 5265
diff --git a/runs/base-ssl/checkpoint-1800/chat_template.jinja b/runs/base-ssl/checkpoint-1800/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/base-ssl/checkpoint-1800/chat_template.jinja
@@ -0,0 +1,85 @@
+{%- if tools %}
+ {{- '<|im_start|>system\n' }}
+ {%- if messages[0].role == 'system' %}
+ {{- messages[0].content + '\n\n' }}
+ {%- endif %}
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }}
+ {%- for tool in tools %}
+ {{- "\n" }}
+ {{- tool | tojson }}
+ {%- endfor %}
+ {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }}
+{%- else %}
+ {%- if messages[0].role == 'system' %}
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
+ {%- endif %}
+{%- endif %}
+{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
+{%- for message in messages[::-1] %}
+ {%- set index = (messages|length - 1) - loop.index0 %}
+ {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %}
+ {%- set ns.multi_step_tool = false %}
+ {%- set ns.last_query_index = index %}
+ {%- endif %}
+{%- endfor %}
+{%- for message in messages %}
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
+ {%- elif message.role == "assistant" %}
+ {%- set content = message.content %}
+ {%- set reasoning_content = '' %}
+ {%- if message.reasoning_content is defined and message.reasoning_content is not none %}
+ {%- set reasoning_content = message.reasoning_content %}
+ {%- else %}
+ {%- if '' in message.content %}
+ {%- set content = message.content.split('')[-1].lstrip('\n') %}
+ {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %}
+ {%- endif %}
+ {%- endif %}
+ {%- if loop.index0 > ns.last_query_index %}
+ {%- if loop.last or (not loop.last and reasoning_content) %}
+ {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- if message.tool_calls %}
+ {%- for tool_call in message.tool_calls %}
+ {%- if (loop.first and content) or (not loop.first) %}
+ {{- '\n' }}
+ {%- endif %}
+ {%- if tool_call.function %}
+ {%- set tool_call = tool_call.function %}
+ {%- endif %}
+ {{- '\n{"name": "' }}
+ {{- tool_call.name }}
+ {{- '", "arguments": ' }}
+ {%- if tool_call.arguments is string %}
+ {{- tool_call.arguments }}
+ {%- else %}
+ {{- tool_call.arguments | tojson }}
+ {%- endif %}
+ {{- '}\n' }}
+ {%- endfor %}
+ {%- endif %}
+ {{- '<|im_end|>\n' }}
+ {%- elif message.role == "tool" %}
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
+ {{- '<|im_start|>user' }}
+ {%- endif %}
+ {{- '\n\n' }}
+ {{- message.content }}
+ {{- '\n' }}
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
+ {{- '<|im_end|>\n' }}
+ {%- endif %}
+ {%- endif %}
+{%- endfor %}
+{%- if add_generation_prompt %}
+ {{- '<|im_start|>assistant\n' }}
+ {%- if enable_thinking is defined and enable_thinking is false %}
+ {{- '\n\n\n\n' }}
+ {%- endif %}
+{%- endif %}
\ No newline at end of file
diff --git a/runs/base-ssl/checkpoint-1800/config.json b/runs/base-ssl/checkpoint-1800/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/base-ssl/checkpoint-1800/config.json
@@ -0,0 +1,32 @@
+{
+ "architectures": [
+ "LlamaForCausalLM"
+ ],
+ "attention_bias": false,
+ "attention_dropout": 0.0,
+ "bos_token_id": null,
+ "dtype": "float32",
+ "eos_token_id": 151645,
+ "head_dim": 128,
+ "hidden_act": "silu",
+ "hidden_size": 512,
+ "initializer_range": 0.02,
+ "intermediate_size": 1536,
+ "max_position_embeddings": 2048,
+ "mlp_bias": false,
+ "model_type": "llama",
+ "num_attention_heads": 4,
+ "num_hidden_layers": 20,
+ "num_key_value_heads": 4,
+ "pad_token_id": 151645,
+ "pretraining_tp": 1,
+ "rms_norm_eps": 1e-06,
+ "rope_parameters": {
+ "rope_theta": 10000.0,
+ "rope_type": "default"
+ },
+ "tie_word_embeddings": true,
+ "transformers_version": "5.5.0",
+ "use_cache": false,
+ "vocab_size": 151671
+}
diff --git a/runs/base-ssl/checkpoint-1800/generation_config.json b/runs/base-ssl/checkpoint-1800/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/base-ssl/checkpoint-1800/generation_config.json
@@ -0,0 +1,11 @@
+{
+ "_from_model_config": true,
+ "eos_token_id": [
+ 151645
+ ],
+ "output_attentions": false,
+ "output_hidden_states": false,
+ "pad_token_id": 151645,
+ "transformers_version": "5.5.0",
+ "use_cache": true
+}
diff --git a/runs/base-ssl/checkpoint-1800/model.safetensors b/runs/base-ssl/checkpoint-1800/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..8f1188844c05c705f358f8bbe9f6666126d0d144
--- /dev/null
+++ b/runs/base-ssl/checkpoint-1800/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:2e84fc152bdab2f9291a73cd695deb7b71f4c2da8a55ad51c3f74489b5a7721e
+size 583356232
diff --git a/runs/base-ssl/checkpoint-1800/optimizer.pt b/runs/base-ssl/checkpoint-1800/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..4112ac3676b789bd2ffc4ac7b75f899d825e945d
--- /dev/null
+++ b/runs/base-ssl/checkpoint-1800/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:24ece7366402c35e359f9d78206da733f9f18249711e861638164b37a6a98880
+size 1166825803
diff --git a/runs/base-ssl/checkpoint-1800/rng_state_0.pth b/runs/base-ssl/checkpoint-1800/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..304a7576d9bd060137258dba420a3e1ff00587c1
--- /dev/null
+++ b/runs/base-ssl/checkpoint-1800/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:987694c44f0af3a8ae4e43e3677bef48a1cfa8e57eee3832ef223e9b8ad80516
+size 14917
diff --git a/runs/base-ssl/checkpoint-1800/rng_state_1.pth b/runs/base-ssl/checkpoint-1800/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..75486c47bfa9499bfe91975e3af3355c9526365c
--- /dev/null
+++ b/runs/base-ssl/checkpoint-1800/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ea5ecba78b648c2a45cab91d590e52b7295077372e6bf91c1591d3fb6a5535ca
+size 14917
diff --git a/runs/base-ssl/checkpoint-1800/scheduler.pt b/runs/base-ssl/checkpoint-1800/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..cc00d28bf1d3c152dd57b4e152eebb5a75268a48
--- /dev/null
+++ b/runs/base-ssl/checkpoint-1800/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5c13118c758fe95682074ef807a1660af2ca020e5b32dd995760a77b78e786f0
+size 1465
diff --git a/runs/base-ssl/checkpoint-1800/tokenizer.json b/runs/base-ssl/checkpoint-1800/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/base-ssl/checkpoint-1800/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:59b6776030505d5b441d0727cce137047df748ab15db6ba3a1bac93c123742fb
+size 11424079
diff --git a/runs/base-ssl/checkpoint-1800/tokenizer_config.json b/runs/base-ssl/checkpoint-1800/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/base-ssl/checkpoint-1800/tokenizer_config.json
@@ -0,0 +1,18 @@
+{
+ "add_prefix_space": false,
+ "backend": "tokenizers",
+ "bos_token": null,
+ "clean_up_tokenization_spaces": false,
+ "eos_token": "<|im_end|>",
+ "errors": "replace",
+ "extra_special_tokens": [
+ "<|l2r_pred|>",
+ "<|r2l_pred|>"
+ ],
+ "is_local": false,
+ "model_max_length": 131072,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/base-ssl/checkpoint-1800/trainer_state.json b/runs/base-ssl/checkpoint-1800/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..67fd3c49db420b79bfb40cb7adb9ad5ddb5822a6
--- /dev/null
+++ b/runs/base-ssl/checkpoint-1800/trainer_state.json
@@ -0,0 +1,12826 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 25.0,
+ "eval_steps": 500,
+ "global_step": 1800,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013937282229965157,
+ "grad_norm": 0.2712002694606781,
+ "learning_rate": 0.0,
+ "loss": 4.000947952270508,
+ "step": 1
+ },
+ {
+ "epoch": 0.027874564459930314,
+ "grad_norm": 0.2709888219833374,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 4.000800132751465,
+ "step": 2
+ },
+ {
+ "epoch": 0.041811846689895474,
+ "grad_norm": 0.2721220850944519,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 3.982931613922119,
+ "step": 3
+ },
+ {
+ "epoch": 0.05574912891986063,
+ "grad_norm": 0.24822379648685455,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 3.948713779449463,
+ "step": 4
+ },
+ {
+ "epoch": 0.06968641114982578,
+ "grad_norm": 0.2103811800479889,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 3.908690929412842,
+ "step": 5
+ },
+ {
+ "epoch": 0.08362369337979095,
+ "grad_norm": 0.18375654518604279,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 3.8660929203033447,
+ "step": 6
+ },
+ {
+ "epoch": 0.0975609756097561,
+ "grad_norm": 0.1471690535545349,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 3.82308030128479,
+ "step": 7
+ },
+ {
+ "epoch": 0.11149825783972125,
+ "grad_norm": 0.11132320016622543,
+ "learning_rate": 4.2e-05,
+ "loss": 3.790834426879883,
+ "step": 8
+ },
+ {
+ "epoch": 0.1254355400696864,
+ "grad_norm": 0.08796700090169907,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 3.7589545249938965,
+ "step": 9
+ },
+ {
+ "epoch": 0.13937282229965156,
+ "grad_norm": 0.07089080661535263,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 3.7346723079681396,
+ "step": 10
+ },
+ {
+ "epoch": 0.15331010452961671,
+ "grad_norm": 0.056723613291978836,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 3.7159838676452637,
+ "step": 11
+ },
+ {
+ "epoch": 0.1672473867595819,
+ "grad_norm": 0.04544799029827118,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 3.701421022415161,
+ "step": 12
+ },
+ {
+ "epoch": 0.18118466898954705,
+ "grad_norm": 0.03551485016942024,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 3.691774845123291,
+ "step": 13
+ },
+ {
+ "epoch": 0.1951219512195122,
+ "grad_norm": 0.028209710493683815,
+ "learning_rate": 7.8e-05,
+ "loss": 3.6860086917877197,
+ "step": 14
+ },
+ {
+ "epoch": 0.20905923344947736,
+ "grad_norm": 0.024290181696414948,
+ "learning_rate": 8.4e-05,
+ "loss": 3.6806883811950684,
+ "step": 15
+ },
+ {
+ "epoch": 0.2229965156794425,
+ "grad_norm": 0.022015230730175972,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 3.677751064300537,
+ "step": 16
+ },
+ {
+ "epoch": 0.23693379790940766,
+ "grad_norm": 0.01960836350917816,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 3.6738266944885254,
+ "step": 17
+ },
+ {
+ "epoch": 0.2508710801393728,
+ "grad_norm": 0.017675744369626045,
+ "learning_rate": 0.000102,
+ "loss": 3.6739063262939453,
+ "step": 18
+ },
+ {
+ "epoch": 0.26480836236933797,
+ "grad_norm": 0.01539881993085146,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 3.671247720718384,
+ "step": 19
+ },
+ {
+ "epoch": 0.2787456445993031,
+ "grad_norm": 0.013906505890190601,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 3.66833233833313,
+ "step": 20
+ },
+ {
+ "epoch": 0.2926829268292683,
+ "grad_norm": 0.01149708591401577,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 3.6706337928771973,
+ "step": 21
+ },
+ {
+ "epoch": 0.30662020905923343,
+ "grad_norm": 0.010512279346585274,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 3.667168140411377,
+ "step": 22
+ },
+ {
+ "epoch": 0.3205574912891986,
+ "grad_norm": 0.00897525716573,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 3.6630516052246094,
+ "step": 23
+ },
+ {
+ "epoch": 0.3344947735191638,
+ "grad_norm": 0.008081364445388317,
+ "learning_rate": 0.000138,
+ "loss": 3.6629021167755127,
+ "step": 24
+ },
+ {
+ "epoch": 0.34843205574912894,
+ "grad_norm": 0.0076500303111970425,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 3.66168212890625,
+ "step": 25
+ },
+ {
+ "epoch": 0.3623693379790941,
+ "grad_norm": 0.007083008531481028,
+ "learning_rate": 0.00015,
+ "loss": 3.6564559936523438,
+ "step": 26
+ },
+ {
+ "epoch": 0.37630662020905925,
+ "grad_norm": 0.006654089782387018,
+ "learning_rate": 0.000156,
+ "loss": 3.6590094566345215,
+ "step": 27
+ },
+ {
+ "epoch": 0.3902439024390244,
+ "grad_norm": 0.0073669785633683205,
+ "learning_rate": 0.000162,
+ "loss": 3.651914119720459,
+ "step": 28
+ },
+ {
+ "epoch": 0.40418118466898956,
+ "grad_norm": 0.007247959729284048,
+ "learning_rate": 0.000168,
+ "loss": 3.6557557582855225,
+ "step": 29
+ },
+ {
+ "epoch": 0.4181184668989547,
+ "grad_norm": 0.007229349110275507,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 3.651794910430908,
+ "step": 30
+ },
+ {
+ "epoch": 0.43205574912891986,
+ "grad_norm": 0.008839861489832401,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 3.653074264526367,
+ "step": 31
+ },
+ {
+ "epoch": 0.445993031358885,
+ "grad_norm": 0.009280834347009659,
+ "learning_rate": 0.000186,
+ "loss": 3.6503708362579346,
+ "step": 32
+ },
+ {
+ "epoch": 0.45993031358885017,
+ "grad_norm": 0.008585072122514248,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 3.650331497192383,
+ "step": 33
+ },
+ {
+ "epoch": 0.4738675958188153,
+ "grad_norm": 0.01164434663951397,
+ "learning_rate": 0.000198,
+ "loss": 3.6462929248809814,
+ "step": 34
+ },
+ {
+ "epoch": 0.4878048780487805,
+ "grad_norm": 0.012668018229305744,
+ "learning_rate": 0.000204,
+ "loss": 3.6516757011413574,
+ "step": 35
+ },
+ {
+ "epoch": 0.5017421602787456,
+ "grad_norm": 0.01610603742301464,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 3.647498607635498,
+ "step": 36
+ },
+ {
+ "epoch": 0.5156794425087108,
+ "grad_norm": 0.018993742763996124,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 3.642869472503662,
+ "step": 37
+ },
+ {
+ "epoch": 0.5296167247386759,
+ "grad_norm": 0.020697375759482384,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 3.639193058013916,
+ "step": 38
+ },
+ {
+ "epoch": 0.5435540069686411,
+ "grad_norm": 0.021636122837662697,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 3.630560874938965,
+ "step": 39
+ },
+ {
+ "epoch": 0.5574912891986062,
+ "grad_norm": 0.01893668621778488,
+ "learning_rate": 0.000234,
+ "loss": 3.6265769004821777,
+ "step": 40
+ },
+ {
+ "epoch": 0.5714285714285714,
+ "grad_norm": 0.025133362039923668,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 3.6185407638549805,
+ "step": 41
+ },
+ {
+ "epoch": 0.5853658536585366,
+ "grad_norm": 0.016397792845964432,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 3.609161853790283,
+ "step": 42
+ },
+ {
+ "epoch": 0.5993031358885017,
+ "grad_norm": 0.02059962786734104,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 3.5987398624420166,
+ "step": 43
+ },
+ {
+ "epoch": 0.6132404181184669,
+ "grad_norm": 0.026733839884400368,
+ "learning_rate": 0.000258,
+ "loss": 3.601898193359375,
+ "step": 44
+ },
+ {
+ "epoch": 0.627177700348432,
+ "grad_norm": 0.04592137038707733,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 3.597785472869873,
+ "step": 45
+ },
+ {
+ "epoch": 0.6411149825783972,
+ "grad_norm": 0.14618715643882751,
+ "learning_rate": 0.00027,
+ "loss": 3.597787857055664,
+ "step": 46
+ },
+ {
+ "epoch": 0.6550522648083623,
+ "grad_norm": 0.1228327602148056,
+ "learning_rate": 0.000276,
+ "loss": 3.598362922668457,
+ "step": 47
+ },
+ {
+ "epoch": 0.6689895470383276,
+ "grad_norm": 0.0651344507932663,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 3.5868940353393555,
+ "step": 48
+ },
+ {
+ "epoch": 0.6829268292682927,
+ "grad_norm": 0.030712513253092766,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 3.5800981521606445,
+ "step": 49
+ },
+ {
+ "epoch": 0.6968641114982579,
+ "grad_norm": 0.07069414854049683,
+ "learning_rate": 0.000294,
+ "loss": 3.590576171875,
+ "step": 50
+ },
+ {
+ "epoch": 0.710801393728223,
+ "grad_norm": 0.026333393529057503,
+ "learning_rate": 0.0003,
+ "loss": 3.5740621089935303,
+ "step": 51
+ },
+ {
+ "epoch": 0.7247386759581882,
+ "grad_norm": 0.050806671380996704,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 3.577582836151123,
+ "step": 52
+ },
+ {
+ "epoch": 0.7386759581881533,
+ "grad_norm": 0.04820532724261284,
+ "learning_rate": 0.000312,
+ "loss": 3.5686888694763184,
+ "step": 53
+ },
+ {
+ "epoch": 0.7526132404181185,
+ "grad_norm": 0.03834737837314606,
+ "learning_rate": 0.000318,
+ "loss": 3.571916341781616,
+ "step": 54
+ },
+ {
+ "epoch": 0.7665505226480837,
+ "grad_norm": 0.0663016214966774,
+ "learning_rate": 0.000324,
+ "loss": 3.563366413116455,
+ "step": 55
+ },
+ {
+ "epoch": 0.7804878048780488,
+ "grad_norm": 0.03111632913351059,
+ "learning_rate": 0.00033,
+ "loss": 3.555037021636963,
+ "step": 56
+ },
+ {
+ "epoch": 0.794425087108014,
+ "grad_norm": 0.06139425188302994,
+ "learning_rate": 0.000336,
+ "loss": 3.555377244949341,
+ "step": 57
+ },
+ {
+ "epoch": 0.8083623693379791,
+ "grad_norm": 0.02561746910214424,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 3.5368266105651855,
+ "step": 58
+ },
+ {
+ "epoch": 0.8222996515679443,
+ "grad_norm": 0.06502962112426758,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 3.5318264961242676,
+ "step": 59
+ },
+ {
+ "epoch": 0.8362369337979094,
+ "grad_norm": 0.06968390196561813,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 3.5210607051849365,
+ "step": 60
+ },
+ {
+ "epoch": 0.8501742160278746,
+ "grad_norm": 0.02670745924115181,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 3.5037078857421875,
+ "step": 61
+ },
+ {
+ "epoch": 0.8641114982578397,
+ "grad_norm": 0.07075569778680801,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 3.506938934326172,
+ "step": 62
+ },
+ {
+ "epoch": 0.8780487804878049,
+ "grad_norm": 0.061632659286260605,
+ "learning_rate": 0.000372,
+ "loss": 3.4960665702819824,
+ "step": 63
+ },
+ {
+ "epoch": 0.89198606271777,
+ "grad_norm": 0.10994791984558105,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 3.4926395416259766,
+ "step": 64
+ },
+ {
+ "epoch": 0.9059233449477352,
+ "grad_norm": 0.21027322113513947,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 3.502258777618408,
+ "step": 65
+ },
+ {
+ "epoch": 0.9198606271777003,
+ "grad_norm": 0.1937343329191208,
+ "learning_rate": 0.00039,
+ "loss": 3.5118448734283447,
+ "step": 66
+ },
+ {
+ "epoch": 0.9337979094076655,
+ "grad_norm": 0.07891395688056946,
+ "learning_rate": 0.000396,
+ "loss": 3.487575054168701,
+ "step": 67
+ },
+ {
+ "epoch": 0.9477351916376306,
+ "grad_norm": 0.12915678322315216,
+ "learning_rate": 0.000402,
+ "loss": 3.4890120029449463,
+ "step": 68
+ },
+ {
+ "epoch": 0.9616724738675958,
+ "grad_norm": 0.08530207723379135,
+ "learning_rate": 0.000408,
+ "loss": 3.4755735397338867,
+ "step": 69
+ },
+ {
+ "epoch": 0.975609756097561,
+ "grad_norm": 0.09704860299825668,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 3.4669318199157715,
+ "step": 70
+ },
+ {
+ "epoch": 0.9895470383275261,
+ "grad_norm": 0.07270640879869461,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 3.460634469985962,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.03984597697854042,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 2.590245485305786,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 0.8616236448287964,
+ "eval_runtime": 36.0347,
+ "eval_samples_per_second": 67.768,
+ "eval_steps_per_second": 0.555,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139372822299653,
+ "grad_norm": 0.058285508304834366,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 3.441636562347412,
+ "step": 73
+ },
+ {
+ "epoch": 1.0278745644599303,
+ "grad_norm": 0.07173695415258408,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 3.4476027488708496,
+ "step": 74
+ },
+ {
+ "epoch": 1.0418118466898956,
+ "grad_norm": 0.0367155559360981,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 3.4290428161621094,
+ "step": 75
+ },
+ {
+ "epoch": 1.0557491289198606,
+ "grad_norm": 0.05761358141899109,
+ "learning_rate": 0.00045,
+ "loss": 3.430612564086914,
+ "step": 76
+ },
+ {
+ "epoch": 1.0696864111498259,
+ "grad_norm": 0.06290662288665771,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 3.4222841262817383,
+ "step": 77
+ },
+ {
+ "epoch": 1.083623693379791,
+ "grad_norm": 0.09705018997192383,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 3.4233384132385254,
+ "step": 78
+ },
+ {
+ "epoch": 1.0975609756097562,
+ "grad_norm": 0.09656445682048798,
+ "learning_rate": 0.000468,
+ "loss": 3.422335624694824,
+ "step": 79
+ },
+ {
+ "epoch": 1.1114982578397212,
+ "grad_norm": 0.07884909957647324,
+ "learning_rate": 0.000474,
+ "loss": 3.4133338928222656,
+ "step": 80
+ },
+ {
+ "epoch": 1.1254355400696865,
+ "grad_norm": 0.06679042428731918,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 3.4053287506103516,
+ "step": 81
+ },
+ {
+ "epoch": 1.1393728222996515,
+ "grad_norm": 0.02522652968764305,
+ "learning_rate": 0.000486,
+ "loss": 3.392838478088379,
+ "step": 82
+ },
+ {
+ "epoch": 1.1533101045296168,
+ "grad_norm": 0.09408055245876312,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 3.3952789306640625,
+ "step": 83
+ },
+ {
+ "epoch": 1.1672473867595818,
+ "grad_norm": 0.08980021625757217,
+ "learning_rate": 0.000498,
+ "loss": 3.385244846343994,
+ "step": 84
+ },
+ {
+ "epoch": 1.181184668989547,
+ "grad_norm": 0.08343124389648438,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 3.382103443145752,
+ "step": 85
+ },
+ {
+ "epoch": 1.1951219512195121,
+ "grad_norm": 0.03343554213643074,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 3.374354362487793,
+ "step": 86
+ },
+ {
+ "epoch": 1.2090592334494774,
+ "grad_norm": 0.0852339118719101,
+ "learning_rate": 0.000516,
+ "loss": 3.3802456855773926,
+ "step": 87
+ },
+ {
+ "epoch": 1.2229965156794425,
+ "grad_norm": 0.09159538149833679,
+ "learning_rate": 0.000522,
+ "loss": 3.37576961517334,
+ "step": 88
+ },
+ {
+ "epoch": 1.2369337979094077,
+ "grad_norm": 0.04313444346189499,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 3.360690116882324,
+ "step": 89
+ },
+ {
+ "epoch": 1.2508710801393728,
+ "grad_norm": 0.075523741543293,
+ "learning_rate": 0.000534,
+ "loss": 3.3599460124969482,
+ "step": 90
+ },
+ {
+ "epoch": 1.264808362369338,
+ "grad_norm": 0.08516373485326767,
+ "learning_rate": 0.00054,
+ "loss": 3.3572096824645996,
+ "step": 91
+ },
+ {
+ "epoch": 1.278745644599303,
+ "grad_norm": 0.09553111344575882,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 3.3542261123657227,
+ "step": 92
+ },
+ {
+ "epoch": 1.2926829268292683,
+ "grad_norm": 0.05978025496006012,
+ "learning_rate": 0.000552,
+ "loss": 3.3440048694610596,
+ "step": 93
+ },
+ {
+ "epoch": 1.3066202090592334,
+ "grad_norm": 0.10827190428972244,
+ "learning_rate": 0.000558,
+ "loss": 3.3391332626342773,
+ "step": 94
+ },
+ {
+ "epoch": 1.3205574912891986,
+ "grad_norm": 0.1181376576423645,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 3.3493118286132812,
+ "step": 95
+ },
+ {
+ "epoch": 1.3344947735191637,
+ "grad_norm": 0.08178193867206573,
+ "learning_rate": 0.00057,
+ "loss": 3.3445382118225098,
+ "step": 96
+ },
+ {
+ "epoch": 1.348432055749129,
+ "grad_norm": 0.08283700793981552,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 3.3343238830566406,
+ "step": 97
+ },
+ {
+ "epoch": 1.3623693379790942,
+ "grad_norm": 0.11837095767259598,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 3.3336968421936035,
+ "step": 98
+ },
+ {
+ "epoch": 1.3763066202090593,
+ "grad_norm": 0.08230706304311752,
+ "learning_rate": 0.000588,
+ "loss": 3.3294646739959717,
+ "step": 99
+ },
+ {
+ "epoch": 1.3902439024390243,
+ "grad_norm": 0.09961626678705215,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 3.3242952823638916,
+ "step": 100
+ },
+ {
+ "epoch": 1.4041811846689896,
+ "grad_norm": 0.11294732987880707,
+ "learning_rate": 0.0006,
+ "loss": 3.330348491668701,
+ "step": 101
+ },
+ {
+ "epoch": 1.4181184668989548,
+ "grad_norm": 0.11236022412776947,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 3.322606086730957,
+ "step": 102
+ },
+ {
+ "epoch": 1.4320557491289199,
+ "grad_norm": 0.13230572640895844,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 3.3202784061431885,
+ "step": 103
+ },
+ {
+ "epoch": 1.445993031358885,
+ "grad_norm": 0.0783172994852066,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 3.3082056045532227,
+ "step": 104
+ },
+ {
+ "epoch": 1.4599303135888502,
+ "grad_norm": 0.07376513630151749,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 3.3011245727539062,
+ "step": 105
+ },
+ {
+ "epoch": 1.4738675958188154,
+ "grad_norm": 0.11039287596940994,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 3.2987873554229736,
+ "step": 106
+ },
+ {
+ "epoch": 1.4878048780487805,
+ "grad_norm": 0.0667329952120781,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 3.293043851852417,
+ "step": 107
+ },
+ {
+ "epoch": 1.5017421602787455,
+ "grad_norm": 0.0750635489821434,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 3.2865707874298096,
+ "step": 108
+ },
+ {
+ "epoch": 1.5156794425087108,
+ "grad_norm": 0.055155977606773376,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 3.278069496154785,
+ "step": 109
+ },
+ {
+ "epoch": 1.529616724738676,
+ "grad_norm": 0.07016722112894058,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 3.2837281227111816,
+ "step": 110
+ },
+ {
+ "epoch": 1.543554006968641,
+ "grad_norm": 0.09884901344776154,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 3.2782273292541504,
+ "step": 111
+ },
+ {
+ "epoch": 1.5574912891986061,
+ "grad_norm": 0.09402419626712799,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 3.2757701873779297,
+ "step": 112
+ },
+ {
+ "epoch": 1.5714285714285714,
+ "grad_norm": 0.06898307800292969,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 3.2636804580688477,
+ "step": 113
+ },
+ {
+ "epoch": 1.5853658536585367,
+ "grad_norm": 0.08733519911766052,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 3.2676005363464355,
+ "step": 114
+ },
+ {
+ "epoch": 1.5993031358885017,
+ "grad_norm": 0.05769918113946915,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 3.2505807876586914,
+ "step": 115
+ },
+ {
+ "epoch": 1.6132404181184667,
+ "grad_norm": 0.054460495710372925,
+ "learning_rate": 0.000599973080557108,
+ "loss": 3.259110689163208,
+ "step": 116
+ },
+ {
+ "epoch": 1.627177700348432,
+ "grad_norm": 0.055243365466594696,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 3.2438201904296875,
+ "step": 117
+ },
+ {
+ "epoch": 1.6411149825783973,
+ "grad_norm": 0.06122216582298279,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 3.2397255897521973,
+ "step": 118
+ },
+ {
+ "epoch": 1.6550522648083623,
+ "grad_norm": 0.05418086051940918,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 3.236057758331299,
+ "step": 119
+ },
+ {
+ "epoch": 1.6689895470383276,
+ "grad_norm": 0.04995540529489517,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 3.224294662475586,
+ "step": 120
+ },
+ {
+ "epoch": 1.6829268292682928,
+ "grad_norm": 0.057540878653526306,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 3.2251172065734863,
+ "step": 121
+ },
+ {
+ "epoch": 1.6968641114982579,
+ "grad_norm": 0.05698078125715256,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 3.228363513946533,
+ "step": 122
+ },
+ {
+ "epoch": 1.710801393728223,
+ "grad_norm": 0.07352662831544876,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 3.2196407318115234,
+ "step": 123
+ },
+ {
+ "epoch": 1.7247386759581882,
+ "grad_norm": 0.08591686934232712,
+ "learning_rate": 0.000599936710690505,
+ "loss": 3.2231035232543945,
+ "step": 124
+ },
+ {
+ "epoch": 1.7386759581881535,
+ "grad_norm": 0.06970733404159546,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 3.2126383781433105,
+ "step": 125
+ },
+ {
+ "epoch": 1.7526132404181185,
+ "grad_norm": 0.04472116380929947,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 3.216801881790161,
+ "step": 126
+ },
+ {
+ "epoch": 1.7665505226480835,
+ "grad_norm": 0.059133559465408325,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 3.2136807441711426,
+ "step": 127
+ },
+ {
+ "epoch": 1.7804878048780488,
+ "grad_norm": 0.08288449794054031,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 3.210519552230835,
+ "step": 128
+ },
+ {
+ "epoch": 1.794425087108014,
+ "grad_norm": 0.09659463912248611,
+ "learning_rate": 0.00059990620421714,
+ "loss": 3.205916404724121,
+ "step": 129
+ },
+ {
+ "epoch": 1.8083623693379791,
+ "grad_norm": 0.08611937612295151,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 3.206793785095215,
+ "step": 130
+ },
+ {
+ "epoch": 1.8222996515679442,
+ "grad_norm": 0.06448066979646683,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 3.2026424407958984,
+ "step": 131
+ },
+ {
+ "epoch": 1.8362369337979094,
+ "grad_norm": 0.07323113083839417,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 3.1864631175994873,
+ "step": 132
+ },
+ {
+ "epoch": 1.8501742160278747,
+ "grad_norm": 0.0739368200302124,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 3.1875557899475098,
+ "step": 133
+ },
+ {
+ "epoch": 1.8641114982578397,
+ "grad_norm": 0.08289099484682083,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 3.1901979446411133,
+ "step": 134
+ },
+ {
+ "epoch": 1.8780487804878048,
+ "grad_norm": 0.06641175597906113,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 3.1776785850524902,
+ "step": 135
+ },
+ {
+ "epoch": 1.89198606271777,
+ "grad_norm": 0.04873652383685112,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 3.1743667125701904,
+ "step": 136
+ },
+ {
+ "epoch": 1.9059233449477353,
+ "grad_norm": 0.04623038321733475,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 3.1759986877441406,
+ "step": 137
+ },
+ {
+ "epoch": 1.9198606271777003,
+ "grad_norm": 0.059709370136260986,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 3.1702799797058105,
+ "step": 138
+ },
+ {
+ "epoch": 1.9337979094076654,
+ "grad_norm": 0.040581051260232925,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 3.1607465744018555,
+ "step": 139
+ },
+ {
+ "epoch": 1.9477351916376306,
+ "grad_norm": 0.04940655827522278,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 3.1620500087738037,
+ "step": 140
+ },
+ {
+ "epoch": 1.961672473867596,
+ "grad_norm": 0.055740341544151306,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 3.1535825729370117,
+ "step": 141
+ },
+ {
+ "epoch": 1.975609756097561,
+ "grad_norm": 0.06836569309234619,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 3.1512832641601562,
+ "step": 142
+ },
+ {
+ "epoch": 1.989547038327526,
+ "grad_norm": 0.08451569080352783,
+ "learning_rate": 0.000599788973374255,
+ "loss": 3.147432804107666,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.06781627237796783,
+ "learning_rate": 0.000599778806120077,
+ "loss": 2.3624467849731445,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 0.7888243794441223,
+ "eval_runtime": 37.0572,
+ "eval_samples_per_second": 65.898,
+ "eval_steps_per_second": 0.54,
+ "step": 144
+ },
+ {
+ "epoch": 2.013937282229965,
+ "grad_norm": 0.045119598507881165,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 3.139284610748291,
+ "step": 145
+ },
+ {
+ "epoch": 2.0278745644599305,
+ "grad_norm": 0.09132017195224762,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 3.140348434448242,
+ "step": 146
+ },
+ {
+ "epoch": 2.0418118466898956,
+ "grad_norm": 0.07457596063613892,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 3.140091896057129,
+ "step": 147
+ },
+ {
+ "epoch": 2.0557491289198606,
+ "grad_norm": 0.07544369250535965,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 3.1411213874816895,
+ "step": 148
+ },
+ {
+ "epoch": 2.0696864111498257,
+ "grad_norm": 0.046033963561058044,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 3.1405649185180664,
+ "step": 149
+ },
+ {
+ "epoch": 2.083623693379791,
+ "grad_norm": 0.06651527434587479,
+ "learning_rate": 0.000599712781599403,
+ "loss": 3.135124683380127,
+ "step": 150
+ },
+ {
+ "epoch": 2.097560975609756,
+ "grad_norm": 0.07238955795764923,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 3.1302051544189453,
+ "step": 151
+ },
+ {
+ "epoch": 2.1114982578397212,
+ "grad_norm": 0.06696683913469315,
+ "learning_rate": 0.000599688860879549,
+ "loss": 3.128504991531372,
+ "step": 152
+ },
+ {
+ "epoch": 2.1254355400696863,
+ "grad_norm": 0.042010076344013214,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 3.119443893432617,
+ "step": 153
+ },
+ {
+ "epoch": 2.1393728222996518,
+ "grad_norm": 0.053164687007665634,
+ "learning_rate": 0.000599663984012462,
+ "loss": 3.1174211502075195,
+ "step": 154
+ },
+ {
+ "epoch": 2.153310104529617,
+ "grad_norm": 0.047281116247177124,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 3.1211044788360596,
+ "step": 155
+ },
+ {
+ "epoch": 2.167247386759582,
+ "grad_norm": 0.0531938374042511,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 3.1136691570281982,
+ "step": 156
+ },
+ {
+ "epoch": 2.181184668989547,
+ "grad_norm": 0.0702054500579834,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 3.112502336502075,
+ "step": 157
+ },
+ {
+ "epoch": 2.1951219512195124,
+ "grad_norm": 0.07261929661035538,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 3.1049346923828125,
+ "step": 158
+ },
+ {
+ "epoch": 2.2090592334494774,
+ "grad_norm": 0.06666582822799683,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 3.1094369888305664,
+ "step": 159
+ },
+ {
+ "epoch": 2.2229965156794425,
+ "grad_norm": 0.047446250915527344,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 3.105876922607422,
+ "step": 160
+ },
+ {
+ "epoch": 2.2369337979094075,
+ "grad_norm": 0.03833230584859848,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 3.104224681854248,
+ "step": 161
+ },
+ {
+ "epoch": 2.250871080139373,
+ "grad_norm": 0.04562874883413315,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 3.105830192565918,
+ "step": 162
+ },
+ {
+ "epoch": 2.264808362369338,
+ "grad_norm": 0.0635828971862793,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 3.1061713695526123,
+ "step": 163
+ },
+ {
+ "epoch": 2.278745644599303,
+ "grad_norm": 0.09712212532758713,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 3.108053207397461,
+ "step": 164
+ },
+ {
+ "epoch": 2.292682926829268,
+ "grad_norm": 0.15060372650623322,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 3.126777172088623,
+ "step": 165
+ },
+ {
+ "epoch": 2.3066202090592336,
+ "grad_norm": 0.12047530710697174,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 3.116323471069336,
+ "step": 166
+ },
+ {
+ "epoch": 2.3205574912891986,
+ "grad_norm": 0.07486861199140549,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 3.1138410568237305,
+ "step": 167
+ },
+ {
+ "epoch": 2.3344947735191637,
+ "grad_norm": 0.07746157795190811,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 3.1107101440429688,
+ "step": 168
+ },
+ {
+ "epoch": 2.3484320557491287,
+ "grad_norm": 0.0804097130894661,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 3.1073827743530273,
+ "step": 169
+ },
+ {
+ "epoch": 2.362369337979094,
+ "grad_norm": 0.0559227392077446,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 3.102102041244507,
+ "step": 170
+ },
+ {
+ "epoch": 2.3763066202090593,
+ "grad_norm": 0.05415646359324455,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 3.096550464630127,
+ "step": 171
+ },
+ {
+ "epoch": 2.3902439024390243,
+ "grad_norm": 0.0463285967707634,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 3.0833563804626465,
+ "step": 172
+ },
+ {
+ "epoch": 2.40418118466899,
+ "grad_norm": 0.04705670103430748,
+ "learning_rate": 0.000599379982511273,
+ "loss": 3.0935018062591553,
+ "step": 173
+ },
+ {
+ "epoch": 2.418118466898955,
+ "grad_norm": 0.03608846664428711,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 3.085629463195801,
+ "step": 174
+ },
+ {
+ "epoch": 2.43205574912892,
+ "grad_norm": 0.03648562356829643,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 3.086639165878296,
+ "step": 175
+ },
+ {
+ "epoch": 2.445993031358885,
+ "grad_norm": 0.03640111908316612,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 3.088339328765869,
+ "step": 176
+ },
+ {
+ "epoch": 2.45993031358885,
+ "grad_norm": 0.029915692284703255,
+ "learning_rate": 0.000599309205504528,
+ "loss": 3.0802769660949707,
+ "step": 177
+ },
+ {
+ "epoch": 2.4738675958188154,
+ "grad_norm": 0.031756628304719925,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 3.0739364624023438,
+ "step": 178
+ },
+ {
+ "epoch": 2.4878048780487805,
+ "grad_norm": 0.03106086328625679,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 3.07144832611084,
+ "step": 179
+ },
+ {
+ "epoch": 2.5017421602787455,
+ "grad_norm": 0.03892781585454941,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 3.074242353439331,
+ "step": 180
+ },
+ {
+ "epoch": 2.515679442508711,
+ "grad_norm": 0.05611228197813034,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 3.0675928592681885,
+ "step": 181
+ },
+ {
+ "epoch": 2.529616724738676,
+ "grad_norm": 0.03397630900144577,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 3.073423147201538,
+ "step": 182
+ },
+ {
+ "epoch": 2.543554006968641,
+ "grad_norm": 0.04135085269808769,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 3.0808069705963135,
+ "step": 183
+ },
+ {
+ "epoch": 2.557491289198606,
+ "grad_norm": 0.03421049192547798,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 3.0616936683654785,
+ "step": 184
+ },
+ {
+ "epoch": 2.571428571428571,
+ "grad_norm": 0.030827628448605537,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 3.0656299591064453,
+ "step": 185
+ },
+ {
+ "epoch": 2.5853658536585367,
+ "grad_norm": 0.033190369606018066,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 3.0479578971862793,
+ "step": 186
+ },
+ {
+ "epoch": 2.5993031358885017,
+ "grad_norm": 0.026774903759360313,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 3.054133653640747,
+ "step": 187
+ },
+ {
+ "epoch": 2.6132404181184667,
+ "grad_norm": 0.03240266814827919,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 3.0536394119262695,
+ "step": 188
+ },
+ {
+ "epoch": 2.6271777003484322,
+ "grad_norm": 0.04305516183376312,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 3.048996925354004,
+ "step": 189
+ },
+ {
+ "epoch": 2.6411149825783973,
+ "grad_norm": 0.07109381258487701,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 3.0558314323425293,
+ "step": 190
+ },
+ {
+ "epoch": 2.6550522648083623,
+ "grad_norm": 0.11467248201370239,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 3.0587801933288574,
+ "step": 191
+ },
+ {
+ "epoch": 2.6689895470383274,
+ "grad_norm": 0.13839758932590485,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 3.0634102821350098,
+ "step": 192
+ },
+ {
+ "epoch": 2.682926829268293,
+ "grad_norm": 0.09269433468580246,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 3.0586462020874023,
+ "step": 193
+ },
+ {
+ "epoch": 2.696864111498258,
+ "grad_norm": 0.0611812099814415,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 3.054201602935791,
+ "step": 194
+ },
+ {
+ "epoch": 2.710801393728223,
+ "grad_norm": 0.05347125604748726,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 3.054572105407715,
+ "step": 195
+ },
+ {
+ "epoch": 2.7247386759581884,
+ "grad_norm": 0.05996708199381828,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 3.0486035346984863,
+ "step": 196
+ },
+ {
+ "epoch": 2.7386759581881535,
+ "grad_norm": 0.06146618723869324,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 3.0344629287719727,
+ "step": 197
+ },
+ {
+ "epoch": 2.7526132404181185,
+ "grad_norm": 0.04754327982664108,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 3.0211029052734375,
+ "step": 198
+ },
+ {
+ "epoch": 2.7665505226480835,
+ "grad_norm": 0.044388528913259506,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 3.034595012664795,
+ "step": 199
+ },
+ {
+ "epoch": 2.7804878048780486,
+ "grad_norm": 0.04255649819970131,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 3.037287950515747,
+ "step": 200
+ },
+ {
+ "epoch": 2.794425087108014,
+ "grad_norm": 0.043139949440956116,
+ "learning_rate": 0.000598804365316586,
+ "loss": 3.0366177558898926,
+ "step": 201
+ },
+ {
+ "epoch": 2.808362369337979,
+ "grad_norm": 0.03383412957191467,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 3.033888101577759,
+ "step": 202
+ },
+ {
+ "epoch": 2.822299651567944,
+ "grad_norm": 0.03446805849671364,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 3.022144079208374,
+ "step": 203
+ },
+ {
+ "epoch": 2.8362369337979096,
+ "grad_norm": 0.029725519940257072,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 3.0208263397216797,
+ "step": 204
+ },
+ {
+ "epoch": 2.8501742160278747,
+ "grad_norm": 0.030237704515457153,
+ "learning_rate": 0.000598706872384039,
+ "loss": 3.0251193046569824,
+ "step": 205
+ },
+ {
+ "epoch": 2.8641114982578397,
+ "grad_norm": 0.03186488524079323,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 3.0246212482452393,
+ "step": 206
+ },
+ {
+ "epoch": 2.8780487804878048,
+ "grad_norm": 0.02844928577542305,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 3.0075716972351074,
+ "step": 207
+ },
+ {
+ "epoch": 2.89198606271777,
+ "grad_norm": 0.0350780263543129,
+ "learning_rate": 0.000598631251036868,
+ "loss": 3.0121424198150635,
+ "step": 208
+ },
+ {
+ "epoch": 2.9059233449477353,
+ "grad_norm": 0.04267824813723564,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 3.0099010467529297,
+ "step": 209
+ },
+ {
+ "epoch": 2.9198606271777003,
+ "grad_norm": 0.042932625859975815,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 3.0122969150543213,
+ "step": 210
+ },
+ {
+ "epoch": 2.9337979094076654,
+ "grad_norm": 0.04570756480097771,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 3.0111446380615234,
+ "step": 211
+ },
+ {
+ "epoch": 2.947735191637631,
+ "grad_norm": 0.04473821446299553,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 2.9976413249969482,
+ "step": 212
+ },
+ {
+ "epoch": 2.961672473867596,
+ "grad_norm": 0.040896713733673096,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 2.9942758083343506,
+ "step": 213
+ },
+ {
+ "epoch": 2.975609756097561,
+ "grad_norm": 0.04459039121866226,
+ "learning_rate": 0.000598473577921366,
+ "loss": 2.998690128326416,
+ "step": 214
+ },
+ {
+ "epoch": 2.989547038327526,
+ "grad_norm": 0.039927951991558075,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 2.988520383834839,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.030261589214205742,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 2.2433667182922363,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 0.7514154314994812,
+ "eval_runtime": 37.2184,
+ "eval_samples_per_second": 65.613,
+ "eval_steps_per_second": 0.537,
+ "step": 216
+ },
+ {
+ "epoch": 3.013937282229965,
+ "grad_norm": 0.03271438181400299,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 2.983100652694702,
+ "step": 217
+ },
+ {
+ "epoch": 3.0278745644599305,
+ "grad_norm": 0.045161835849285126,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 2.9824085235595703,
+ "step": 218
+ },
+ {
+ "epoch": 3.0418118466898956,
+ "grad_norm": 0.041259463876485825,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 2.980112075805664,
+ "step": 219
+ },
+ {
+ "epoch": 3.0557491289198606,
+ "grad_norm": 0.04854132980108261,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 2.9802699089050293,
+ "step": 220
+ },
+ {
+ "epoch": 3.0696864111498257,
+ "grad_norm": 0.06712493300437927,
+ "learning_rate": 0.000598278794687186,
+ "loss": 2.963736057281494,
+ "step": 221
+ },
+ {
+ "epoch": 3.083623693379791,
+ "grad_norm": 0.07551158964633942,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 2.9780850410461426,
+ "step": 222
+ },
+ {
+ "epoch": 3.097560975609756,
+ "grad_norm": 0.1004587933421135,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 2.982564926147461,
+ "step": 223
+ },
+ {
+ "epoch": 3.1114982578397212,
+ "grad_norm": 0.12604698538780212,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 2.994123697280884,
+ "step": 224
+ },
+ {
+ "epoch": 3.1254355400696863,
+ "grad_norm": 0.13300281763076782,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 3.0030934810638428,
+ "step": 225
+ },
+ {
+ "epoch": 3.1393728222996518,
+ "grad_norm": 0.09192433208227158,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 2.99415922164917,
+ "step": 226
+ },
+ {
+ "epoch": 3.153310104529617,
+ "grad_norm": 0.07332997024059296,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 2.9832448959350586,
+ "step": 227
+ },
+ {
+ "epoch": 3.167247386759582,
+ "grad_norm": 0.05673393979668617,
+ "learning_rate": 0.00059807235435179,
+ "loss": 2.9781603813171387,
+ "step": 228
+ },
+ {
+ "epoch": 3.181184668989547,
+ "grad_norm": 0.05591209977865219,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 2.9844987392425537,
+ "step": 229
+ },
+ {
+ "epoch": 3.1951219512195124,
+ "grad_norm": 0.04706789553165436,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 2.9794564247131348,
+ "step": 230
+ },
+ {
+ "epoch": 3.2090592334494774,
+ "grad_norm": 0.04533008486032486,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 2.963930606842041,
+ "step": 231
+ },
+ {
+ "epoch": 3.2229965156794425,
+ "grad_norm": 0.0363367535173893,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 2.9743711948394775,
+ "step": 232
+ },
+ {
+ "epoch": 3.2369337979094075,
+ "grad_norm": 0.035832252353429794,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 2.9637725353240967,
+ "step": 233
+ },
+ {
+ "epoch": 3.250871080139373,
+ "grad_norm": 0.03634851798415184,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 2.971634864807129,
+ "step": 234
+ },
+ {
+ "epoch": 3.264808362369338,
+ "grad_norm": 0.036877233535051346,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 2.960113286972046,
+ "step": 235
+ },
+ {
+ "epoch": 3.278745644599303,
+ "grad_norm": 0.02930021658539772,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 2.948853015899658,
+ "step": 236
+ },
+ {
+ "epoch": 3.292682926829268,
+ "grad_norm": 0.029241658747196198,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 2.957648277282715,
+ "step": 237
+ },
+ {
+ "epoch": 3.3066202090592336,
+ "grad_norm": 0.029683494940400124,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 2.9501960277557373,
+ "step": 238
+ },
+ {
+ "epoch": 3.3205574912891986,
+ "grad_norm": 0.028418797999620438,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 2.9593586921691895,
+ "step": 239
+ },
+ {
+ "epoch": 3.3344947735191637,
+ "grad_norm": 0.029084153473377228,
+ "learning_rate": 0.000597691359743243,
+ "loss": 2.957581043243408,
+ "step": 240
+ },
+ {
+ "epoch": 3.3484320557491287,
+ "grad_norm": 0.03031332418322563,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 2.9465126991271973,
+ "step": 241
+ },
+ {
+ "epoch": 3.362369337979094,
+ "grad_norm": 0.028176147490739822,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 2.9427034854888916,
+ "step": 242
+ },
+ {
+ "epoch": 3.3763066202090593,
+ "grad_norm": 0.025935526937246323,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 2.933248996734619,
+ "step": 243
+ },
+ {
+ "epoch": 3.3902439024390243,
+ "grad_norm": 0.026524877175688744,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 2.9334826469421387,
+ "step": 244
+ },
+ {
+ "epoch": 3.40418118466899,
+ "grad_norm": 0.026807013899087906,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 2.9502480030059814,
+ "step": 245
+ },
+ {
+ "epoch": 3.418118466898955,
+ "grad_norm": 0.026440076529979706,
+ "learning_rate": 0.000597488038559129,
+ "loss": 2.9336085319519043,
+ "step": 246
+ },
+ {
+ "epoch": 3.43205574912892,
+ "grad_norm": 0.02752632275223732,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 2.937425374984741,
+ "step": 247
+ },
+ {
+ "epoch": 3.445993031358885,
+ "grad_norm": 0.027490021660923958,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 2.9357755184173584,
+ "step": 248
+ },
+ {
+ "epoch": 3.45993031358885,
+ "grad_norm": 0.03389354050159454,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 2.934713363647461,
+ "step": 249
+ },
+ {
+ "epoch": 3.4738675958188154,
+ "grad_norm": 0.042289797216653824,
+ "learning_rate": 0.000597347745466109,
+ "loss": 2.9363629817962646,
+ "step": 250
+ },
+ {
+ "epoch": 3.4878048780487805,
+ "grad_norm": 0.07276978343725204,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 2.946735382080078,
+ "step": 251
+ },
+ {
+ "epoch": 3.5017421602787455,
+ "grad_norm": 0.09471797943115234,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 2.9240806102752686,
+ "step": 252
+ },
+ {
+ "epoch": 3.515679442508711,
+ "grad_norm": 0.09386000782251358,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 2.9194839000701904,
+ "step": 253
+ },
+ {
+ "epoch": 3.529616724738676,
+ "grad_norm": 0.1176624521613121,
+ "learning_rate": 0.000597203657966319,
+ "loss": 2.9324824810028076,
+ "step": 254
+ },
+ {
+ "epoch": 3.543554006968641,
+ "grad_norm": 0.0723927766084671,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 2.932208776473999,
+ "step": 255
+ },
+ {
+ "epoch": 3.557491289198606,
+ "grad_norm": 0.06314370036125183,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 2.936681032180786,
+ "step": 256
+ },
+ {
+ "epoch": 3.571428571428571,
+ "grad_norm": 0.06432153284549713,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 2.924858331680298,
+ "step": 257
+ },
+ {
+ "epoch": 3.5853658536585367,
+ "grad_norm": 0.07495246082544327,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 2.918736696243286,
+ "step": 258
+ },
+ {
+ "epoch": 3.5993031358885017,
+ "grad_norm": 0.058007508516311646,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 2.92120361328125,
+ "step": 259
+ },
+ {
+ "epoch": 3.6132404181184667,
+ "grad_norm": 0.047224972397089005,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 2.9181740283966064,
+ "step": 260
+ },
+ {
+ "epoch": 3.6271777003484322,
+ "grad_norm": 0.04775157943367958,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 2.9145660400390625,
+ "step": 261
+ },
+ {
+ "epoch": 3.6411149825783973,
+ "grad_norm": 0.05087953805923462,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 2.9094574451446533,
+ "step": 262
+ },
+ {
+ "epoch": 3.6550522648083623,
+ "grad_norm": 0.047325216233730316,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 2.9127790927886963,
+ "step": 263
+ },
+ {
+ "epoch": 3.6689895470383274,
+ "grad_norm": 0.04005662724375725,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 2.9124414920806885,
+ "step": 264
+ },
+ {
+ "epoch": 3.682926829268293,
+ "grad_norm": 0.03284832462668419,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 2.897369861602783,
+ "step": 265
+ },
+ {
+ "epoch": 3.696864111498258,
+ "grad_norm": 0.03538643941283226,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 2.8912787437438965,
+ "step": 266
+ },
+ {
+ "epoch": 3.710801393728223,
+ "grad_norm": 0.0338534340262413,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 2.904737949371338,
+ "step": 267
+ },
+ {
+ "epoch": 3.7247386759581884,
+ "grad_norm": 0.03059707209467888,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 2.910109519958496,
+ "step": 268
+ },
+ {
+ "epoch": 3.7386759581881535,
+ "grad_norm": 0.027421824634075165,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 2.8953540325164795,
+ "step": 269
+ },
+ {
+ "epoch": 3.7526132404181185,
+ "grad_norm": 0.031095022335648537,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 2.8983192443847656,
+ "step": 270
+ },
+ {
+ "epoch": 3.7665505226480835,
+ "grad_norm": 0.03075260855257511,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 2.9002010822296143,
+ "step": 271
+ },
+ {
+ "epoch": 3.7804878048780486,
+ "grad_norm": 0.030917232856154442,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 2.8886561393737793,
+ "step": 272
+ },
+ {
+ "epoch": 3.794425087108014,
+ "grad_norm": 0.03267431631684303,
+ "learning_rate": 0.000596467483454833,
+ "loss": 2.8845345973968506,
+ "step": 273
+ },
+ {
+ "epoch": 3.808362369337979,
+ "grad_norm": 0.034112598747015,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 2.8842294216156006,
+ "step": 274
+ },
+ {
+ "epoch": 3.822299651567944,
+ "grad_norm": 0.038153596222400665,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 2.866973400115967,
+ "step": 275
+ },
+ {
+ "epoch": 3.8362369337979096,
+ "grad_norm": 0.033103615045547485,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 2.8709988594055176,
+ "step": 276
+ },
+ {
+ "epoch": 3.8501742160278747,
+ "grad_norm": 0.030708827078342438,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 2.8715577125549316,
+ "step": 277
+ },
+ {
+ "epoch": 3.8641114982578397,
+ "grad_norm": 0.03427499905228615,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 2.8766040802001953,
+ "step": 278
+ },
+ {
+ "epoch": 3.8780487804878048,
+ "grad_norm": 0.042216721922159195,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 2.8672261238098145,
+ "step": 279
+ },
+ {
+ "epoch": 3.89198606271777,
+ "grad_norm": 0.034656424075365067,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 2.860102653503418,
+ "step": 280
+ },
+ {
+ "epoch": 3.9059233449477353,
+ "grad_norm": 0.03288520127534866,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 2.8540444374084473,
+ "step": 281
+ },
+ {
+ "epoch": 3.9198606271777003,
+ "grad_norm": 0.041709382086992264,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 2.872581958770752,
+ "step": 282
+ },
+ {
+ "epoch": 3.9337979094076654,
+ "grad_norm": 0.04955075681209564,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 2.874307632446289,
+ "step": 283
+ },
+ {
+ "epoch": 3.947735191637631,
+ "grad_norm": 0.05372118577361107,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 2.861191749572754,
+ "step": 284
+ },
+ {
+ "epoch": 3.961672473867596,
+ "grad_norm": 0.05855486914515495,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 2.8542709350585938,
+ "step": 285
+ },
+ {
+ "epoch": 3.975609756097561,
+ "grad_norm": 0.05442376434803009,
+ "learning_rate": 0.000595914592474791,
+ "loss": 2.858576536178589,
+ "step": 286
+ },
+ {
+ "epoch": 3.989547038327526,
+ "grad_norm": 0.06468870490789413,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 2.8510026931762695,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.038657791912555695,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 2.1422531604766846,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 0.7195093631744385,
+ "eval_runtime": 39.1927,
+ "eval_samples_per_second": 62.308,
+ "eval_steps_per_second": 0.51,
+ "step": 288
+ },
+ {
+ "epoch": 4.013937282229965,
+ "grad_norm": 0.041369788348674774,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 2.8407950401306152,
+ "step": 289
+ },
+ {
+ "epoch": 4.02787456445993,
+ "grad_norm": 0.045097772032022476,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 2.8446922302246094,
+ "step": 290
+ },
+ {
+ "epoch": 4.041811846689895,
+ "grad_norm": 0.05102979391813278,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 2.8316476345062256,
+ "step": 291
+ },
+ {
+ "epoch": 4.055749128919861,
+ "grad_norm": 0.05429252237081528,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 2.8510334491729736,
+ "step": 292
+ },
+ {
+ "epoch": 4.069686411149826,
+ "grad_norm": 0.0761060118675232,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 2.8289966583251953,
+ "step": 293
+ },
+ {
+ "epoch": 4.083623693379791,
+ "grad_norm": 0.09525997191667557,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 2.843992233276367,
+ "step": 294
+ },
+ {
+ "epoch": 4.097560975609756,
+ "grad_norm": 0.09715712070465088,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 2.8543810844421387,
+ "step": 295
+ },
+ {
+ "epoch": 4.111498257839721,
+ "grad_norm": 0.0634903833270073,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 2.8456456661224365,
+ "step": 296
+ },
+ {
+ "epoch": 4.125435540069686,
+ "grad_norm": 0.05771167576313019,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 2.8387022018432617,
+ "step": 297
+ },
+ {
+ "epoch": 4.139372822299651,
+ "grad_norm": 0.05440817028284073,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 2.841508388519287,
+ "step": 298
+ },
+ {
+ "epoch": 4.153310104529616,
+ "grad_norm": 0.0550493523478508,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 2.833531618118286,
+ "step": 299
+ },
+ {
+ "epoch": 4.167247386759582,
+ "grad_norm": 0.04252418503165245,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 2.8254685401916504,
+ "step": 300
+ },
+ {
+ "epoch": 4.181184668989547,
+ "grad_norm": 0.042833492159843445,
+ "learning_rate": 0.000595227087813793,
+ "loss": 2.8289575576782227,
+ "step": 301
+ },
+ {
+ "epoch": 4.195121951219512,
+ "grad_norm": 0.038360171020030975,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 2.836550712585449,
+ "step": 302
+ },
+ {
+ "epoch": 4.209059233449477,
+ "grad_norm": 0.03655572608113289,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 2.8222808837890625,
+ "step": 303
+ },
+ {
+ "epoch": 4.2229965156794425,
+ "grad_norm": 0.03215418756008148,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 2.818066120147705,
+ "step": 304
+ },
+ {
+ "epoch": 4.2369337979094075,
+ "grad_norm": 0.031601350754499435,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 2.809666395187378,
+ "step": 305
+ },
+ {
+ "epoch": 4.2508710801393725,
+ "grad_norm": 0.03221198916435242,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 2.8137047290802,
+ "step": 306
+ },
+ {
+ "epoch": 4.264808362369338,
+ "grad_norm": 0.03107992745935917,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 2.822840690612793,
+ "step": 307
+ },
+ {
+ "epoch": 4.2787456445993035,
+ "grad_norm": 0.032328397035598755,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 2.8012430667877197,
+ "step": 308
+ },
+ {
+ "epoch": 4.2926829268292686,
+ "grad_norm": 0.029429661110043526,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 2.806474447250366,
+ "step": 309
+ },
+ {
+ "epoch": 4.306620209059234,
+ "grad_norm": 0.03430404141545296,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 2.7917184829711914,
+ "step": 310
+ },
+ {
+ "epoch": 4.320557491289199,
+ "grad_norm": 0.03543714061379433,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 2.798417091369629,
+ "step": 311
+ },
+ {
+ "epoch": 4.334494773519164,
+ "grad_norm": 0.04099712520837784,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 2.793095588684082,
+ "step": 312
+ },
+ {
+ "epoch": 4.348432055749129,
+ "grad_norm": 0.046607524156570435,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 2.807809829711914,
+ "step": 313
+ },
+ {
+ "epoch": 4.362369337979094,
+ "grad_norm": 0.048917099833488464,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 2.8017094135284424,
+ "step": 314
+ },
+ {
+ "epoch": 4.376306620209059,
+ "grad_norm": 0.05221967399120331,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 2.7990846633911133,
+ "step": 315
+ },
+ {
+ "epoch": 4.390243902439025,
+ "grad_norm": 0.05263383314013481,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 2.810983657836914,
+ "step": 316
+ },
+ {
+ "epoch": 4.40418118466899,
+ "grad_norm": 0.04930173233151436,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 2.7989790439605713,
+ "step": 317
+ },
+ {
+ "epoch": 4.418118466898955,
+ "grad_norm": 0.05484982952475548,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 2.7852704524993896,
+ "step": 318
+ },
+ {
+ "epoch": 4.43205574912892,
+ "grad_norm": 0.04991631582379341,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 2.7944440841674805,
+ "step": 319
+ },
+ {
+ "epoch": 4.445993031358885,
+ "grad_norm": 0.034856196492910385,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 2.7851901054382324,
+ "step": 320
+ },
+ {
+ "epoch": 4.45993031358885,
+ "grad_norm": 0.038153354078531265,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 2.777986526489258,
+ "step": 321
+ },
+ {
+ "epoch": 4.473867595818815,
+ "grad_norm": 0.04138852655887604,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 2.7781941890716553,
+ "step": 322
+ },
+ {
+ "epoch": 4.487804878048781,
+ "grad_norm": 0.04018627852201462,
+ "learning_rate": 0.00059412296156686,
+ "loss": 2.7934627532958984,
+ "step": 323
+ },
+ {
+ "epoch": 4.501742160278746,
+ "grad_norm": 0.03592175245285034,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 2.780992031097412,
+ "step": 324
+ },
+ {
+ "epoch": 4.515679442508711,
+ "grad_norm": 0.034620169550180435,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 2.7754831314086914,
+ "step": 325
+ },
+ {
+ "epoch": 4.529616724738676,
+ "grad_norm": 0.03244427964091301,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 2.7737035751342773,
+ "step": 326
+ },
+ {
+ "epoch": 4.543554006968641,
+ "grad_norm": 0.0361688956618309,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 2.7515547275543213,
+ "step": 327
+ },
+ {
+ "epoch": 4.557491289198606,
+ "grad_norm": 0.03722141310572624,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 2.769011974334717,
+ "step": 328
+ },
+ {
+ "epoch": 4.571428571428571,
+ "grad_norm": 0.0431540347635746,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 2.7755231857299805,
+ "step": 329
+ },
+ {
+ "epoch": 4.585365853658536,
+ "grad_norm": 0.04175153374671936,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 2.767477512359619,
+ "step": 330
+ },
+ {
+ "epoch": 4.599303135888501,
+ "grad_norm": 0.04184363782405853,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 2.775984048843384,
+ "step": 331
+ },
+ {
+ "epoch": 4.613240418118467,
+ "grad_norm": 0.04054928943514824,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 2.7669193744659424,
+ "step": 332
+ },
+ {
+ "epoch": 4.627177700348432,
+ "grad_norm": 0.039442483335733414,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 2.7557153701782227,
+ "step": 333
+ },
+ {
+ "epoch": 4.641114982578397,
+ "grad_norm": 0.04334413632750511,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 2.76118803024292,
+ "step": 334
+ },
+ {
+ "epoch": 4.655052264808362,
+ "grad_norm": 0.04821610450744629,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 2.755122184753418,
+ "step": 335
+ },
+ {
+ "epoch": 4.668989547038327,
+ "grad_norm": 0.05259500443935394,
+ "learning_rate": 0.000593417134927994,
+ "loss": 2.763730764389038,
+ "step": 336
+ },
+ {
+ "epoch": 4.682926829268292,
+ "grad_norm": 0.05462924763560295,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 2.7538461685180664,
+ "step": 337
+ },
+ {
+ "epoch": 4.696864111498257,
+ "grad_norm": 0.0755213275551796,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 2.7565760612487793,
+ "step": 338
+ },
+ {
+ "epoch": 4.710801393728223,
+ "grad_norm": 0.09036742150783539,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 2.7742908000946045,
+ "step": 339
+ },
+ {
+ "epoch": 4.724738675958188,
+ "grad_norm": 0.07687609642744064,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 2.7776336669921875,
+ "step": 340
+ },
+ {
+ "epoch": 4.7386759581881535,
+ "grad_norm": 0.06167550012469292,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 2.7571194171905518,
+ "step": 341
+ },
+ {
+ "epoch": 4.7526132404181185,
+ "grad_norm": 0.05498389154672623,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 2.766094207763672,
+ "step": 342
+ },
+ {
+ "epoch": 4.7665505226480835,
+ "grad_norm": 0.056576769798994064,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 2.759814977645874,
+ "step": 343
+ },
+ {
+ "epoch": 4.780487804878049,
+ "grad_norm": 0.05287479609251022,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 2.7653424739837646,
+ "step": 344
+ },
+ {
+ "epoch": 4.794425087108014,
+ "grad_norm": 0.05006227642297745,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 2.746647357940674,
+ "step": 345
+ },
+ {
+ "epoch": 4.80836236933798,
+ "grad_norm": 0.0428367517888546,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 2.748798131942749,
+ "step": 346
+ },
+ {
+ "epoch": 4.822299651567945,
+ "grad_norm": 0.04800762981176376,
+ "learning_rate": 0.000592789007481325,
+ "loss": 2.7554736137390137,
+ "step": 347
+ },
+ {
+ "epoch": 4.83623693379791,
+ "grad_norm": 0.04984979331493378,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 2.738473415374756,
+ "step": 348
+ },
+ {
+ "epoch": 4.850174216027875,
+ "grad_norm": 0.0404483824968338,
+ "learning_rate": 0.000592671765466188,
+ "loss": 2.7486448287963867,
+ "step": 349
+ },
+ {
+ "epoch": 4.86411149825784,
+ "grad_norm": 0.03785628825426102,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 2.7317609786987305,
+ "step": 350
+ },
+ {
+ "epoch": 4.878048780487805,
+ "grad_norm": 0.04446744546294212,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 2.750211238861084,
+ "step": 351
+ },
+ {
+ "epoch": 4.89198606271777,
+ "grad_norm": 0.0561913438141346,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 2.7429988384246826,
+ "step": 352
+ },
+ {
+ "epoch": 4.905923344947735,
+ "grad_norm": 0.06165647506713867,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 2.7389450073242188,
+ "step": 353
+ },
+ {
+ "epoch": 4.9198606271777,
+ "grad_norm": 0.04764621704816818,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 2.73350191116333,
+ "step": 354
+ },
+ {
+ "epoch": 4.933797909407666,
+ "grad_norm": 0.044994648545980453,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 2.7248117923736572,
+ "step": 355
+ },
+ {
+ "epoch": 4.947735191637631,
+ "grad_norm": 0.044408753514289856,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 2.7337656021118164,
+ "step": 356
+ },
+ {
+ "epoch": 4.961672473867596,
+ "grad_norm": 0.04064524918794632,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 2.732268810272217,
+ "step": 357
+ },
+ {
+ "epoch": 4.975609756097561,
+ "grad_norm": 0.036805033683776855,
+ "learning_rate": 0.000592132629452205,
+ "loss": 2.7253570556640625,
+ "step": 358
+ },
+ {
+ "epoch": 4.989547038327526,
+ "grad_norm": 0.03321084752678871,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 2.713101863861084,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.027469763532280922,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 2.0416059494018555,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 0.6877280473709106,
+ "eval_runtime": 37.7369,
+ "eval_samples_per_second": 64.711,
+ "eval_steps_per_second": 0.53,
+ "step": 360
+ },
+ {
+ "epoch": 5.013937282229965,
+ "grad_norm": 0.035481102764606476,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 2.6966300010681152,
+ "step": 361
+ },
+ {
+ "epoch": 5.02787456445993,
+ "grad_norm": 0.04075651615858078,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 2.701756000518799,
+ "step": 362
+ },
+ {
+ "epoch": 5.041811846689895,
+ "grad_norm": 0.03847100958228111,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 2.69856333732605,
+ "step": 363
+ },
+ {
+ "epoch": 5.055749128919861,
+ "grad_norm": 0.0439726859331131,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 2.6956000328063965,
+ "step": 364
+ },
+ {
+ "epoch": 5.069686411149826,
+ "grad_norm": 0.043925508856773376,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 2.7065486907958984,
+ "step": 365
+ },
+ {
+ "epoch": 5.083623693379791,
+ "grad_norm": 0.05349253863096237,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 2.7032744884490967,
+ "step": 366
+ },
+ {
+ "epoch": 5.097560975609756,
+ "grad_norm": 0.04957803711295128,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 2.6988987922668457,
+ "step": 367
+ },
+ {
+ "epoch": 5.111498257839721,
+ "grad_norm": 0.047412872314453125,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 2.6921496391296387,
+ "step": 368
+ },
+ {
+ "epoch": 5.125435540069686,
+ "grad_norm": 0.047648534178733826,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 2.691765308380127,
+ "step": 369
+ },
+ {
+ "epoch": 5.139372822299651,
+ "grad_norm": 0.05226794257760048,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 2.7006325721740723,
+ "step": 370
+ },
+ {
+ "epoch": 5.153310104529616,
+ "grad_norm": 0.054041698575019836,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 2.692309617996216,
+ "step": 371
+ },
+ {
+ "epoch": 5.167247386759582,
+ "grad_norm": 0.039680954068899155,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 2.685819149017334,
+ "step": 372
+ },
+ {
+ "epoch": 5.181184668989547,
+ "grad_norm": 0.04104545712471008,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 2.6913204193115234,
+ "step": 373
+ },
+ {
+ "epoch": 5.195121951219512,
+ "grad_norm": 0.037274859845638275,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 2.692324161529541,
+ "step": 374
+ },
+ {
+ "epoch": 5.209059233449477,
+ "grad_norm": 0.038038160651922226,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 2.6824822425842285,
+ "step": 375
+ },
+ {
+ "epoch": 5.2229965156794425,
+ "grad_norm": 0.04105817899107933,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 2.6830384731292725,
+ "step": 376
+ },
+ {
+ "epoch": 5.2369337979094075,
+ "grad_norm": 0.04050105810165405,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 2.676032066345215,
+ "step": 377
+ },
+ {
+ "epoch": 5.2508710801393725,
+ "grad_norm": 0.03780475631356239,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 2.6765289306640625,
+ "step": 378
+ },
+ {
+ "epoch": 5.264808362369338,
+ "grad_norm": 0.03484981507062912,
+ "learning_rate": 0.000590801330015633,
+ "loss": 2.6808249950408936,
+ "step": 379
+ },
+ {
+ "epoch": 5.2787456445993035,
+ "grad_norm": 0.03091316856443882,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 2.679382562637329,
+ "step": 380
+ },
+ {
+ "epoch": 5.2926829268292686,
+ "grad_norm": 0.03255805745720863,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 2.685393810272217,
+ "step": 381
+ },
+ {
+ "epoch": 5.306620209059234,
+ "grad_norm": 0.037457507103681564,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 2.6710822582244873,
+ "step": 382
+ },
+ {
+ "epoch": 5.320557491289199,
+ "grad_norm": 0.03654669225215912,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 2.6762566566467285,
+ "step": 383
+ },
+ {
+ "epoch": 5.334494773519164,
+ "grad_norm": 0.03590100631117821,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 2.6788597106933594,
+ "step": 384
+ },
+ {
+ "epoch": 5.348432055749129,
+ "grad_norm": 0.03647424280643463,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 2.6785120964050293,
+ "step": 385
+ },
+ {
+ "epoch": 5.362369337979094,
+ "grad_norm": 0.035309527069330215,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 2.679274082183838,
+ "step": 386
+ },
+ {
+ "epoch": 5.376306620209059,
+ "grad_norm": 0.035797759890556335,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 2.663790702819824,
+ "step": 387
+ },
+ {
+ "epoch": 5.390243902439025,
+ "grad_norm": 0.034813620150089264,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 2.661909818649292,
+ "step": 388
+ },
+ {
+ "epoch": 5.40418118466899,
+ "grad_norm": 0.03814723342657089,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 2.6648290157318115,
+ "step": 389
+ },
+ {
+ "epoch": 5.418118466898955,
+ "grad_norm": 0.03819345310330391,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 2.661344528198242,
+ "step": 390
+ },
+ {
+ "epoch": 5.43205574912892,
+ "grad_norm": 0.05034249275922775,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 2.6723971366882324,
+ "step": 391
+ },
+ {
+ "epoch": 5.445993031358885,
+ "grad_norm": 0.05302279815077782,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 2.6722166538238525,
+ "step": 392
+ },
+ {
+ "epoch": 5.45993031358885,
+ "grad_norm": 0.04576520621776581,
+ "learning_rate": 0.000589856958339686,
+ "loss": 2.650954008102417,
+ "step": 393
+ },
+ {
+ "epoch": 5.473867595818815,
+ "grad_norm": 0.04785747826099396,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 2.658161163330078,
+ "step": 394
+ },
+ {
+ "epoch": 5.487804878048781,
+ "grad_norm": 0.0524369515478611,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 2.66957688331604,
+ "step": 395
+ },
+ {
+ "epoch": 5.501742160278746,
+ "grad_norm": 0.05258813500404358,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 2.66046142578125,
+ "step": 396
+ },
+ {
+ "epoch": 5.515679442508711,
+ "grad_norm": 0.05156350135803223,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 2.6339619159698486,
+ "step": 397
+ },
+ {
+ "epoch": 5.529616724738676,
+ "grad_norm": 0.04716484993696213,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 2.656726837158203,
+ "step": 398
+ },
+ {
+ "epoch": 5.543554006968641,
+ "grad_norm": 0.048213694244623184,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 2.6740832328796387,
+ "step": 399
+ },
+ {
+ "epoch": 5.557491289198606,
+ "grad_norm": 0.046243470162153244,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 2.65981125831604,
+ "step": 400
+ },
+ {
+ "epoch": 5.571428571428571,
+ "grad_norm": 0.04331960901618004,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 2.637345790863037,
+ "step": 401
+ },
+ {
+ "epoch": 5.585365853658536,
+ "grad_norm": 0.04055584594607353,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 2.6382877826690674,
+ "step": 402
+ },
+ {
+ "epoch": 5.599303135888501,
+ "grad_norm": 0.046962495893239975,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 2.642883539199829,
+ "step": 403
+ },
+ {
+ "epoch": 5.613240418118467,
+ "grad_norm": 0.055259495973587036,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 2.6498947143554688,
+ "step": 404
+ },
+ {
+ "epoch": 5.627177700348432,
+ "grad_norm": 0.05768313631415367,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 2.6472978591918945,
+ "step": 405
+ },
+ {
+ "epoch": 5.641114982578397,
+ "grad_norm": 0.04900819808244705,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 2.6596455574035645,
+ "step": 406
+ },
+ {
+ "epoch": 5.655052264808362,
+ "grad_norm": 0.053204163908958435,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 2.6456780433654785,
+ "step": 407
+ },
+ {
+ "epoch": 5.668989547038327,
+ "grad_norm": 0.05327627807855606,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 2.651031494140625,
+ "step": 408
+ },
+ {
+ "epoch": 5.682926829268292,
+ "grad_norm": 0.050564929842948914,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 2.656858444213867,
+ "step": 409
+ },
+ {
+ "epoch": 5.696864111498257,
+ "grad_norm": 0.05613167583942413,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 2.6408069133758545,
+ "step": 410
+ },
+ {
+ "epoch": 5.710801393728223,
+ "grad_norm": 0.05399465933442116,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 2.6472203731536865,
+ "step": 411
+ },
+ {
+ "epoch": 5.724738675958188,
+ "grad_norm": 0.04919342324137688,
+ "learning_rate": 0.0005885028868537,
+ "loss": 2.656099319458008,
+ "step": 412
+ },
+ {
+ "epoch": 5.7386759581881535,
+ "grad_norm": 0.0552130751311779,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 2.6422126293182373,
+ "step": 413
+ },
+ {
+ "epoch": 5.7526132404181185,
+ "grad_norm": 0.05774940922856331,
+ "learning_rate": 0.000588355515561353,
+ "loss": 2.649722099304199,
+ "step": 414
+ },
+ {
+ "epoch": 5.7665505226480835,
+ "grad_norm": 0.04623311012983322,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 2.6475892066955566,
+ "step": 415
+ },
+ {
+ "epoch": 5.780487804878049,
+ "grad_norm": 0.04961073398590088,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 2.658733606338501,
+ "step": 416
+ },
+ {
+ "epoch": 5.794425087108014,
+ "grad_norm": 0.05006693676114082,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 2.6217124462127686,
+ "step": 417
+ },
+ {
+ "epoch": 5.80836236933798,
+ "grad_norm": 0.04175165295600891,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 2.632359027862549,
+ "step": 418
+ },
+ {
+ "epoch": 5.822299651567945,
+ "grad_norm": 0.0332355760037899,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 2.6406683921813965,
+ "step": 419
+ },
+ {
+ "epoch": 5.83623693379791,
+ "grad_norm": 0.0371745266020298,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 2.630310535430908,
+ "step": 420
+ },
+ {
+ "epoch": 5.850174216027875,
+ "grad_norm": 0.02940242365002632,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 2.6451711654663086,
+ "step": 421
+ },
+ {
+ "epoch": 5.86411149825784,
+ "grad_norm": 0.03578875586390495,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 2.637753486633301,
+ "step": 422
+ },
+ {
+ "epoch": 5.878048780487805,
+ "grad_norm": 0.03402113541960716,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 2.623744487762451,
+ "step": 423
+ },
+ {
+ "epoch": 5.89198606271777,
+ "grad_norm": 0.034094467759132385,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 2.63200044631958,
+ "step": 424
+ },
+ {
+ "epoch": 5.905923344947735,
+ "grad_norm": 0.03428930044174194,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 2.6219849586486816,
+ "step": 425
+ },
+ {
+ "epoch": 5.9198606271777,
+ "grad_norm": 0.033345405012369156,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 2.611741065979004,
+ "step": 426
+ },
+ {
+ "epoch": 5.933797909407666,
+ "grad_norm": 0.031680066138505936,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 2.6227869987487793,
+ "step": 427
+ },
+ {
+ "epoch": 5.947735191637631,
+ "grad_norm": 0.028066758066415787,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 2.6249539852142334,
+ "step": 428
+ },
+ {
+ "epoch": 5.961672473867596,
+ "grad_norm": 0.032918382436037064,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 2.6176412105560303,
+ "step": 429
+ },
+ {
+ "epoch": 5.975609756097561,
+ "grad_norm": 0.033349912613630295,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 2.6159720420837402,
+ "step": 430
+ },
+ {
+ "epoch": 5.989547038327526,
+ "grad_norm": 0.03317154198884964,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 2.619137763977051,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.025815341621637344,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 1.9473658800125122,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 0.6633820533752441,
+ "eval_runtime": 37.551,
+ "eval_samples_per_second": 65.032,
+ "eval_steps_per_second": 0.533,
+ "step": 432
+ },
+ {
+ "epoch": 6.013937282229965,
+ "grad_norm": 0.031342681497335434,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 2.5931155681610107,
+ "step": 433
+ },
+ {
+ "epoch": 6.02787456445993,
+ "grad_norm": 0.04343045502901077,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 2.587559700012207,
+ "step": 434
+ },
+ {
+ "epoch": 6.041811846689895,
+ "grad_norm": 0.052591342478990555,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 2.5950260162353516,
+ "step": 435
+ },
+ {
+ "epoch": 6.055749128919861,
+ "grad_norm": 0.05538717657327652,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 2.600468635559082,
+ "step": 436
+ },
+ {
+ "epoch": 6.069686411149826,
+ "grad_norm": 0.05505542829632759,
+ "learning_rate": 0.000586594769789753,
+ "loss": 2.5905046463012695,
+ "step": 437
+ },
+ {
+ "epoch": 6.083623693379791,
+ "grad_norm": 0.05229569226503372,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 2.591856002807617,
+ "step": 438
+ },
+ {
+ "epoch": 6.097560975609756,
+ "grad_norm": 0.05032522976398468,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 2.577693462371826,
+ "step": 439
+ },
+ {
+ "epoch": 6.111498257839721,
+ "grad_norm": 0.04670557379722595,
+ "learning_rate": 0.000586356179990052,
+ "loss": 2.5835001468658447,
+ "step": 440
+ },
+ {
+ "epoch": 6.125435540069686,
+ "grad_norm": 0.0537918359041214,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 2.596343517303467,
+ "step": 441
+ },
+ {
+ "epoch": 6.139372822299651,
+ "grad_norm": 0.06328130513429642,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 2.5912466049194336,
+ "step": 442
+ },
+ {
+ "epoch": 6.153310104529616,
+ "grad_norm": 0.06647300720214844,
+ "learning_rate": 0.000586115535536849,
+ "loss": 2.589078426361084,
+ "step": 443
+ },
+ {
+ "epoch": 6.167247386759582,
+ "grad_norm": 0.06643359363079071,
+ "learning_rate": 0.000586034864430614,
+ "loss": 2.5956435203552246,
+ "step": 444
+ },
+ {
+ "epoch": 6.181184668989547,
+ "grad_norm": 0.05613892152905464,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 2.5922906398773193,
+ "step": 445
+ },
+ {
+ "epoch": 6.195121951219512,
+ "grad_norm": 0.05655102804303169,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 2.590651512145996,
+ "step": 446
+ },
+ {
+ "epoch": 6.209059233449477,
+ "grad_norm": 0.06806499511003494,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 2.589696168899536,
+ "step": 447
+ },
+ {
+ "epoch": 6.2229965156794425,
+ "grad_norm": 0.06616773456335068,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 2.5944786071777344,
+ "step": 448
+ },
+ {
+ "epoch": 6.2369337979094075,
+ "grad_norm": 0.05937796086072922,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 2.598313331604004,
+ "step": 449
+ },
+ {
+ "epoch": 6.2508710801393725,
+ "grad_norm": 0.05284281075000763,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 2.5805535316467285,
+ "step": 450
+ },
+ {
+ "epoch": 6.264808362369338,
+ "grad_norm": 0.04509073495864868,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 2.570598840713501,
+ "step": 451
+ },
+ {
+ "epoch": 6.2787456445993035,
+ "grad_norm": 0.05604032054543495,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 2.6077847480773926,
+ "step": 452
+ },
+ {
+ "epoch": 6.2926829268292686,
+ "grad_norm": 0.06662779301404953,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 2.578629493713379,
+ "step": 453
+ },
+ {
+ "epoch": 6.306620209059234,
+ "grad_norm": 0.0585545152425766,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 2.586427688598633,
+ "step": 454
+ },
+ {
+ "epoch": 6.320557491289199,
+ "grad_norm": 0.04736408591270447,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 2.5911552906036377,
+ "step": 455
+ },
+ {
+ "epoch": 6.334494773519164,
+ "grad_norm": 0.04474812000989914,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 2.5697641372680664,
+ "step": 456
+ },
+ {
+ "epoch": 6.348432055749129,
+ "grad_norm": 0.04312862828373909,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 2.566927671432495,
+ "step": 457
+ },
+ {
+ "epoch": 6.362369337979094,
+ "grad_norm": 0.03764902800321579,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 2.5947153568267822,
+ "step": 458
+ },
+ {
+ "epoch": 6.376306620209059,
+ "grad_norm": 0.03353014215826988,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 2.5777602195739746,
+ "step": 459
+ },
+ {
+ "epoch": 6.390243902439025,
+ "grad_norm": 0.033975999802351,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 2.5783305168151855,
+ "step": 460
+ },
+ {
+ "epoch": 6.40418118466899,
+ "grad_norm": 0.03363902121782303,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 2.5673155784606934,
+ "step": 461
+ },
+ {
+ "epoch": 6.418118466898955,
+ "grad_norm": 0.034326743334531784,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 2.55814790725708,
+ "step": 462
+ },
+ {
+ "epoch": 6.43205574912892,
+ "grad_norm": 0.03194424510002136,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 2.5688910484313965,
+ "step": 463
+ },
+ {
+ "epoch": 6.445993031358885,
+ "grad_norm": 0.029925566166639328,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 2.559793710708618,
+ "step": 464
+ },
+ {
+ "epoch": 6.45993031358885,
+ "grad_norm": 0.0290202796459198,
+ "learning_rate": 0.000584288196583439,
+ "loss": 2.555941581726074,
+ "step": 465
+ },
+ {
+ "epoch": 6.473867595818815,
+ "grad_norm": 0.030976103618741035,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 2.5576136112213135,
+ "step": 466
+ },
+ {
+ "epoch": 6.487804878048781,
+ "grad_norm": 0.030049985274672508,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 2.5645012855529785,
+ "step": 467
+ },
+ {
+ "epoch": 6.501742160278746,
+ "grad_norm": 0.031192071735858917,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 2.5691795349121094,
+ "step": 468
+ },
+ {
+ "epoch": 6.515679442508711,
+ "grad_norm": 0.03066888637840748,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 2.5597329139709473,
+ "step": 469
+ },
+ {
+ "epoch": 6.529616724738676,
+ "grad_norm": 0.031034760177135468,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 2.5749378204345703,
+ "step": 470
+ },
+ {
+ "epoch": 6.543554006968641,
+ "grad_norm": 0.03199351951479912,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 2.564612627029419,
+ "step": 471
+ },
+ {
+ "epoch": 6.557491289198606,
+ "grad_norm": 0.027530083432793617,
+ "learning_rate": 0.000583683733328402,
+ "loss": 2.568983793258667,
+ "step": 472
+ },
+ {
+ "epoch": 6.571428571428571,
+ "grad_norm": 0.02841697260737419,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 2.551283836364746,
+ "step": 473
+ },
+ {
+ "epoch": 6.585365853658536,
+ "grad_norm": 0.03285123407840729,
+ "learning_rate": 0.000583508993216961,
+ "loss": 2.5753087997436523,
+ "step": 474
+ },
+ {
+ "epoch": 6.599303135888501,
+ "grad_norm": 0.0347592793405056,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 2.56103253364563,
+ "step": 475
+ },
+ {
+ "epoch": 6.613240418118467,
+ "grad_norm": 0.03750046715140343,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 2.5542030334472656,
+ "step": 476
+ },
+ {
+ "epoch": 6.627177700348432,
+ "grad_norm": 0.04254816472530365,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 2.5616328716278076,
+ "step": 477
+ },
+ {
+ "epoch": 6.641114982578397,
+ "grad_norm": 0.04370047152042389,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 2.5646753311157227,
+ "step": 478
+ },
+ {
+ "epoch": 6.655052264808362,
+ "grad_norm": 0.03816768899559975,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 2.5603585243225098,
+ "step": 479
+ },
+ {
+ "epoch": 6.668989547038327,
+ "grad_norm": 0.034390103071928024,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 2.548727512359619,
+ "step": 480
+ },
+ {
+ "epoch": 6.682926829268292,
+ "grad_norm": 0.0366024374961853,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 2.555230140686035,
+ "step": 481
+ },
+ {
+ "epoch": 6.696864111498257,
+ "grad_norm": 0.03938084468245506,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 2.5586276054382324,
+ "step": 482
+ },
+ {
+ "epoch": 6.710801393728223,
+ "grad_norm": 0.04110350087285042,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 2.542633056640625,
+ "step": 483
+ },
+ {
+ "epoch": 6.724738675958188,
+ "grad_norm": 0.03961770981550217,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 2.5494391918182373,
+ "step": 484
+ },
+ {
+ "epoch": 6.7386759581881535,
+ "grad_norm": 0.03677491098642349,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 2.563061475753784,
+ "step": 485
+ },
+ {
+ "epoch": 6.7526132404181185,
+ "grad_norm": 0.03818432241678238,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 2.5586929321289062,
+ "step": 486
+ },
+ {
+ "epoch": 6.7665505226480835,
+ "grad_norm": 0.033873286098241806,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 2.5477757453918457,
+ "step": 487
+ },
+ {
+ "epoch": 6.780487804878049,
+ "grad_norm": 0.03699466213583946,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 2.541106700897217,
+ "step": 488
+ },
+ {
+ "epoch": 6.794425087108014,
+ "grad_norm": 0.03866403177380562,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 2.5336339473724365,
+ "step": 489
+ },
+ {
+ "epoch": 6.80836236933798,
+ "grad_norm": 0.03235912322998047,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 2.5439155101776123,
+ "step": 490
+ },
+ {
+ "epoch": 6.822299651567945,
+ "grad_norm": 0.03776629641652107,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 2.5592265129089355,
+ "step": 491
+ },
+ {
+ "epoch": 6.83623693379791,
+ "grad_norm": 0.04273561015725136,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 2.5432629585266113,
+ "step": 492
+ },
+ {
+ "epoch": 6.850174216027875,
+ "grad_norm": 0.04358302056789398,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 2.5543787479400635,
+ "step": 493
+ },
+ {
+ "epoch": 6.86411149825784,
+ "grad_norm": 0.03629252687096596,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 2.562788963317871,
+ "step": 494
+ },
+ {
+ "epoch": 6.878048780487805,
+ "grad_norm": 0.03263307362794876,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 2.538097381591797,
+ "step": 495
+ },
+ {
+ "epoch": 6.89198606271777,
+ "grad_norm": 0.036420464515686035,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 2.554645299911499,
+ "step": 496
+ },
+ {
+ "epoch": 6.905923344947735,
+ "grad_norm": 0.035384103655815125,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 2.5465738773345947,
+ "step": 497
+ },
+ {
+ "epoch": 6.9198606271777,
+ "grad_norm": 0.03658696636557579,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 2.536980152130127,
+ "step": 498
+ },
+ {
+ "epoch": 6.933797909407666,
+ "grad_norm": 0.036053478717803955,
+ "learning_rate": 0.00058124865204371,
+ "loss": 2.528345823287964,
+ "step": 499
+ },
+ {
+ "epoch": 6.947735191637631,
+ "grad_norm": 0.03789985179901123,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 2.544621706008911,
+ "step": 500
+ },
+ {
+ "epoch": 6.961672473867596,
+ "grad_norm": 0.03835926949977875,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 2.5407447814941406,
+ "step": 501
+ },
+ {
+ "epoch": 6.975609756097561,
+ "grad_norm": 0.04318110644817352,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 2.5537543296813965,
+ "step": 502
+ },
+ {
+ "epoch": 6.989547038327526,
+ "grad_norm": 0.0451606847345829,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 2.5201051235198975,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.03245232254266739,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 1.9085171222686768,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 0.6467739343643188,
+ "eval_runtime": 38.2431,
+ "eval_samples_per_second": 63.855,
+ "eval_steps_per_second": 0.523,
+ "step": 504
+ },
+ {
+ "epoch": 7.013937282229965,
+ "grad_norm": 0.03788387402892113,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 2.493765354156494,
+ "step": 505
+ },
+ {
+ "epoch": 7.02787456445993,
+ "grad_norm": 0.04437057301402092,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 2.509481430053711,
+ "step": 506
+ },
+ {
+ "epoch": 7.041811846689895,
+ "grad_norm": 0.047125279903411865,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 2.504810333251953,
+ "step": 507
+ },
+ {
+ "epoch": 7.055749128919861,
+ "grad_norm": 0.05385598540306091,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 2.5145554542541504,
+ "step": 508
+ },
+ {
+ "epoch": 7.069686411149826,
+ "grad_norm": 0.05404049903154373,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 2.500851631164551,
+ "step": 509
+ },
+ {
+ "epoch": 7.083623693379791,
+ "grad_norm": 0.05455894395709038,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 2.4832260608673096,
+ "step": 510
+ },
+ {
+ "epoch": 7.097560975609756,
+ "grad_norm": 0.0558103583753109,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 2.524315118789673,
+ "step": 511
+ },
+ {
+ "epoch": 7.111498257839721,
+ "grad_norm": 0.057283915579319,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 2.508044719696045,
+ "step": 512
+ },
+ {
+ "epoch": 7.125435540069686,
+ "grad_norm": 0.061027105897665024,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 2.5139050483703613,
+ "step": 513
+ },
+ {
+ "epoch": 7.139372822299651,
+ "grad_norm": 0.06873901933431625,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 2.507343053817749,
+ "step": 514
+ },
+ {
+ "epoch": 7.153310104529616,
+ "grad_norm": 0.06900028139352798,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 2.520263195037842,
+ "step": 515
+ },
+ {
+ "epoch": 7.167247386759582,
+ "grad_norm": 0.06029877811670303,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 2.5027518272399902,
+ "step": 516
+ },
+ {
+ "epoch": 7.181184668989547,
+ "grad_norm": 0.06097294017672539,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 2.512634515762329,
+ "step": 517
+ },
+ {
+ "epoch": 7.195121951219512,
+ "grad_norm": 0.06655558943748474,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 2.5014023780822754,
+ "step": 518
+ },
+ {
+ "epoch": 7.209059233449477,
+ "grad_norm": 0.06343840062618256,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 2.5144271850585938,
+ "step": 519
+ },
+ {
+ "epoch": 7.2229965156794425,
+ "grad_norm": 0.08325106650590897,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 2.5239195823669434,
+ "step": 520
+ },
+ {
+ "epoch": 7.2369337979094075,
+ "grad_norm": 0.07948101311922073,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 2.5223121643066406,
+ "step": 521
+ },
+ {
+ "epoch": 7.2508710801393725,
+ "grad_norm": 0.06717163324356079,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 2.5102391242980957,
+ "step": 522
+ },
+ {
+ "epoch": 7.264808362369338,
+ "grad_norm": 0.05896087363362312,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 2.51560640335083,
+ "step": 523
+ },
+ {
+ "epoch": 7.2787456445993035,
+ "grad_norm": 0.05562684312462807,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 2.5021753311157227,
+ "step": 524
+ },
+ {
+ "epoch": 7.2926829268292686,
+ "grad_norm": 0.043904103338718414,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 2.4952425956726074,
+ "step": 525
+ },
+ {
+ "epoch": 7.306620209059234,
+ "grad_norm": 0.0436740480363369,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 2.515303611755371,
+ "step": 526
+ },
+ {
+ "epoch": 7.320557491289199,
+ "grad_norm": 0.0395866297185421,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 2.5101678371429443,
+ "step": 527
+ },
+ {
+ "epoch": 7.334494773519164,
+ "grad_norm": 0.039552897214889526,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 2.5090293884277344,
+ "step": 528
+ },
+ {
+ "epoch": 7.348432055749129,
+ "grad_norm": 0.03839687630534172,
+ "learning_rate": 0.000578351407086301,
+ "loss": 2.505296468734741,
+ "step": 529
+ },
+ {
+ "epoch": 7.362369337979094,
+ "grad_norm": 0.042542796581983566,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 2.49535870552063,
+ "step": 530
+ },
+ {
+ "epoch": 7.376306620209059,
+ "grad_norm": 0.044322993606328964,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 2.4890050888061523,
+ "step": 531
+ },
+ {
+ "epoch": 7.390243902439025,
+ "grad_norm": 0.04029953107237816,
+ "learning_rate": 0.000578050665972623,
+ "loss": 2.500995397567749,
+ "step": 532
+ },
+ {
+ "epoch": 7.40418118466899,
+ "grad_norm": 0.044392652809619904,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 2.505852222442627,
+ "step": 533
+ },
+ {
+ "epoch": 7.418118466898955,
+ "grad_norm": 0.04363880679011345,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 2.4939942359924316,
+ "step": 534
+ },
+ {
+ "epoch": 7.43205574912892,
+ "grad_norm": 0.03960833698511124,
+ "learning_rate": 0.000577747930429834,
+ "loss": 2.507826805114746,
+ "step": 535
+ },
+ {
+ "epoch": 7.445993031358885,
+ "grad_norm": 0.03880009427666664,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 2.4876725673675537,
+ "step": 536
+ },
+ {
+ "epoch": 7.45993031358885,
+ "grad_norm": 0.034344322979450226,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 2.5032553672790527,
+ "step": 537
+ },
+ {
+ "epoch": 7.473867595818815,
+ "grad_norm": 0.030360646545886993,
+ "learning_rate": 0.00057744320265311,
+ "loss": 2.4887325763702393,
+ "step": 538
+ },
+ {
+ "epoch": 7.487804878048781,
+ "grad_norm": 0.030478516593575478,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 2.5041327476501465,
+ "step": 539
+ },
+ {
+ "epoch": 7.501742160278746,
+ "grad_norm": 0.030038833618164062,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 2.488068103790283,
+ "step": 540
+ },
+ {
+ "epoch": 7.515679442508711,
+ "grad_norm": 0.03227488324046135,
+ "learning_rate": 0.000577136484852073,
+ "loss": 2.4851627349853516,
+ "step": 541
+ },
+ {
+ "epoch": 7.529616724738676,
+ "grad_norm": 0.03053610771894455,
+ "learning_rate": 0.000577033803741424,
+ "loss": 2.48903226852417,
+ "step": 542
+ },
+ {
+ "epoch": 7.543554006968641,
+ "grad_norm": 0.030809711664915085,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 2.487685203552246,
+ "step": 543
+ },
+ {
+ "epoch": 7.557491289198606,
+ "grad_norm": 0.03001537173986435,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 2.4998037815093994,
+ "step": 544
+ },
+ {
+ "epoch": 7.571428571428571,
+ "grad_norm": 0.028761114925146103,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 2.4887194633483887,
+ "step": 545
+ },
+ {
+ "epoch": 7.585365853658536,
+ "grad_norm": 0.028289001435041428,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 2.4748306274414062,
+ "step": 546
+ },
+ {
+ "epoch": 7.599303135888501,
+ "grad_norm": 0.028406348079442978,
+ "learning_rate": 0.00057651708808768,
+ "loss": 2.490642786026001,
+ "step": 547
+ },
+ {
+ "epoch": 7.613240418118467,
+ "grad_norm": 0.027616780251264572,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 2.4816768169403076,
+ "step": 548
+ },
+ {
+ "epoch": 7.627177700348432,
+ "grad_norm": 0.028579063713550568,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 2.49285888671875,
+ "step": 549
+ },
+ {
+ "epoch": 7.641114982578397,
+ "grad_norm": 0.032302722334861755,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 2.4891176223754883,
+ "step": 550
+ },
+ {
+ "epoch": 7.655052264808362,
+ "grad_norm": 0.03428734466433525,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 2.4945361614227295,
+ "step": 551
+ },
+ {
+ "epoch": 7.668989547038327,
+ "grad_norm": 0.03326137363910675,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 2.483844518661499,
+ "step": 552
+ },
+ {
+ "epoch": 7.682926829268292,
+ "grad_norm": 0.03136003762483597,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 2.4965500831604004,
+ "step": 553
+ },
+ {
+ "epoch": 7.696864111498257,
+ "grad_norm": 0.031299516558647156,
+ "learning_rate": 0.000575784433093151,
+ "loss": 2.4755914211273193,
+ "step": 554
+ },
+ {
+ "epoch": 7.710801393728223,
+ "grad_norm": 0.030511915683746338,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 2.4844446182250977,
+ "step": 555
+ },
+ {
+ "epoch": 7.724738675958188,
+ "grad_norm": 0.03106229193508625,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 2.4614830017089844,
+ "step": 556
+ },
+ {
+ "epoch": 7.7386759581881535,
+ "grad_norm": 0.032561615109443665,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 2.476231813430786,
+ "step": 557
+ },
+ {
+ "epoch": 7.7526132404181185,
+ "grad_norm": 0.03334634751081467,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 2.4722485542297363,
+ "step": 558
+ },
+ {
+ "epoch": 7.7665505226480835,
+ "grad_norm": 0.03567497059702873,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 2.471876621246338,
+ "step": 559
+ },
+ {
+ "epoch": 7.780487804878049,
+ "grad_norm": 0.038662221282720566,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 2.4947409629821777,
+ "step": 560
+ },
+ {
+ "epoch": 7.794425087108014,
+ "grad_norm": 0.036901816725730896,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 2.470515489578247,
+ "step": 561
+ },
+ {
+ "epoch": 7.80836236933798,
+ "grad_norm": 0.03382178768515587,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 2.4678587913513184,
+ "step": 562
+ },
+ {
+ "epoch": 7.822299651567945,
+ "grad_norm": 0.03480829298496246,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 2.4690866470336914,
+ "step": 563
+ },
+ {
+ "epoch": 7.83623693379791,
+ "grad_norm": 0.03593127429485321,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 2.491703748703003,
+ "step": 564
+ },
+ {
+ "epoch": 7.850174216027875,
+ "grad_norm": 0.03532601520419121,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 2.468522548675537,
+ "step": 565
+ },
+ {
+ "epoch": 7.86411149825784,
+ "grad_norm": 0.035680219531059265,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 2.4759652614593506,
+ "step": 566
+ },
+ {
+ "epoch": 7.878048780487805,
+ "grad_norm": 0.03417263925075531,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 2.4931888580322266,
+ "step": 567
+ },
+ {
+ "epoch": 7.89198606271777,
+ "grad_norm": 0.03273053467273712,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 2.466641426086426,
+ "step": 568
+ },
+ {
+ "epoch": 7.905923344947735,
+ "grad_norm": 0.032283321022987366,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 2.466756820678711,
+ "step": 569
+ },
+ {
+ "epoch": 7.9198606271777,
+ "grad_norm": 0.03162473440170288,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 2.4725847244262695,
+ "step": 570
+ },
+ {
+ "epoch": 7.933797909407666,
+ "grad_norm": 0.03218452259898186,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 2.46532940864563,
+ "step": 571
+ },
+ {
+ "epoch": 7.947735191637631,
+ "grad_norm": 0.03216313198208809,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 2.4749364852905273,
+ "step": 572
+ },
+ {
+ "epoch": 7.961672473867596,
+ "grad_norm": 0.03091583214700222,
+ "learning_rate": 0.000573741597999996,
+ "loss": 2.470108985900879,
+ "step": 573
+ },
+ {
+ "epoch": 7.975609756097561,
+ "grad_norm": 0.028130974620580673,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 2.466053009033203,
+ "step": 574
+ },
+ {
+ "epoch": 7.989547038327526,
+ "grad_norm": 0.03071889653801918,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 2.4787344932556152,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.02555985376238823,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 1.8408641815185547,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 0.6343774199485779,
+ "eval_runtime": 38.5533,
+ "eval_samples_per_second": 63.341,
+ "eval_steps_per_second": 0.519,
+ "step": 576
+ },
+ {
+ "epoch": 8.013937282229966,
+ "grad_norm": 0.03359892964363098,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 2.4359030723571777,
+ "step": 577
+ },
+ {
+ "epoch": 8.02787456445993,
+ "grad_norm": 0.05054016411304474,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 2.4193553924560547,
+ "step": 578
+ },
+ {
+ "epoch": 8.041811846689896,
+ "grad_norm": 0.062336456030607224,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 2.4455740451812744,
+ "step": 579
+ },
+ {
+ "epoch": 8.05574912891986,
+ "grad_norm": 0.06716352701187134,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 2.4429545402526855,
+ "step": 580
+ },
+ {
+ "epoch": 8.069686411149826,
+ "grad_norm": 0.06647022068500519,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 2.4446518421173096,
+ "step": 581
+ },
+ {
+ "epoch": 8.08362369337979,
+ "grad_norm": 0.0826159194111824,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 2.436643600463867,
+ "step": 582
+ },
+ {
+ "epoch": 8.097560975609756,
+ "grad_norm": 0.08472150564193726,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 2.451641082763672,
+ "step": 583
+ },
+ {
+ "epoch": 8.111498257839722,
+ "grad_norm": 0.07912597805261612,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 2.447244167327881,
+ "step": 584
+ },
+ {
+ "epoch": 8.125435540069686,
+ "grad_norm": 0.0796087384223938,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 2.4437828063964844,
+ "step": 585
+ },
+ {
+ "epoch": 8.139372822299652,
+ "grad_norm": 0.07414955645799637,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 2.437047004699707,
+ "step": 586
+ },
+ {
+ "epoch": 8.153310104529616,
+ "grad_norm": 0.06763316690921783,
+ "learning_rate": 0.000572185929672906,
+ "loss": 2.446570873260498,
+ "step": 587
+ },
+ {
+ "epoch": 8.167247386759582,
+ "grad_norm": 0.05742042511701584,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 2.445460796356201,
+ "step": 588
+ },
+ {
+ "epoch": 8.181184668989546,
+ "grad_norm": 0.0572611466050148,
+ "learning_rate": 0.000571960215520345,
+ "loss": 2.4439504146575928,
+ "step": 589
+ },
+ {
+ "epoch": 8.195121951219512,
+ "grad_norm": 0.05339052528142929,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 2.4502882957458496,
+ "step": 590
+ },
+ {
+ "epoch": 8.209059233449477,
+ "grad_norm": 0.05900551751255989,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 2.450836658477783,
+ "step": 591
+ },
+ {
+ "epoch": 8.222996515679442,
+ "grad_norm": 0.06624466180801392,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 2.4539589881896973,
+ "step": 592
+ },
+ {
+ "epoch": 8.236933797909408,
+ "grad_norm": 0.06468363106250763,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 2.448918342590332,
+ "step": 593
+ },
+ {
+ "epoch": 8.250871080139373,
+ "grad_norm": 0.04979013651609421,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 2.447591781616211,
+ "step": 594
+ },
+ {
+ "epoch": 8.264808362369338,
+ "grad_norm": 0.047402940690517426,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 2.450143337249756,
+ "step": 595
+ },
+ {
+ "epoch": 8.278745644599303,
+ "grad_norm": 0.041620269417762756,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 2.4322123527526855,
+ "step": 596
+ },
+ {
+ "epoch": 8.292682926829269,
+ "grad_norm": 0.04016399011015892,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 2.4417006969451904,
+ "step": 597
+ },
+ {
+ "epoch": 8.306620209059233,
+ "grad_norm": 0.04293493181467056,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 2.4442501068115234,
+ "step": 598
+ },
+ {
+ "epoch": 8.320557491289199,
+ "grad_norm": 0.041785892099142075,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 2.4570703506469727,
+ "step": 599
+ },
+ {
+ "epoch": 8.334494773519165,
+ "grad_norm": 0.042869169265031815,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 2.4294066429138184,
+ "step": 600
+ },
+ {
+ "epoch": 8.348432055749129,
+ "grad_norm": 0.04059606418013573,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 2.4469175338745117,
+ "step": 601
+ },
+ {
+ "epoch": 8.362369337979095,
+ "grad_norm": 0.03664898872375488,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 2.432004451751709,
+ "step": 602
+ },
+ {
+ "epoch": 8.376306620209059,
+ "grad_norm": 0.031866125762462616,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 2.4305002689361572,
+ "step": 603
+ },
+ {
+ "epoch": 8.390243902439025,
+ "grad_norm": 0.03416220843791962,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 2.4407525062561035,
+ "step": 604
+ },
+ {
+ "epoch": 8.404181184668989,
+ "grad_norm": 0.03265870735049248,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 2.426929473876953,
+ "step": 605
+ },
+ {
+ "epoch": 8.418118466898955,
+ "grad_norm": 0.03337112441658974,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 2.443507671356201,
+ "step": 606
+ },
+ {
+ "epoch": 8.43205574912892,
+ "grad_norm": 0.0337977334856987,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 2.4583749771118164,
+ "step": 607
+ },
+ {
+ "epoch": 8.445993031358885,
+ "grad_norm": 0.02970845066010952,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 2.4297292232513428,
+ "step": 608
+ },
+ {
+ "epoch": 8.45993031358885,
+ "grad_norm": 0.03051869012415409,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 2.452547550201416,
+ "step": 609
+ },
+ {
+ "epoch": 8.473867595818815,
+ "grad_norm": 0.030234314501285553,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 2.427704334259033,
+ "step": 610
+ },
+ {
+ "epoch": 8.487804878048781,
+ "grad_norm": 0.0297533068805933,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 2.4193124771118164,
+ "step": 611
+ },
+ {
+ "epoch": 8.501742160278745,
+ "grad_norm": 0.030258657410740852,
+ "learning_rate": 0.000569302387925215,
+ "loss": 2.4159011840820312,
+ "step": 612
+ },
+ {
+ "epoch": 8.515679442508711,
+ "grad_norm": 0.029942622408270836,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 2.4217724800109863,
+ "step": 613
+ },
+ {
+ "epoch": 8.529616724738675,
+ "grad_norm": 0.030715234577655792,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 2.44870662689209,
+ "step": 614
+ },
+ {
+ "epoch": 8.543554006968641,
+ "grad_norm": 0.03252873569726944,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 2.417196750640869,
+ "step": 615
+ },
+ {
+ "epoch": 8.557491289198607,
+ "grad_norm": 0.03387020155787468,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 2.4181065559387207,
+ "step": 616
+ },
+ {
+ "epoch": 8.571428571428571,
+ "grad_norm": 0.035596199333667755,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 2.4240612983703613,
+ "step": 617
+ },
+ {
+ "epoch": 8.585365853658537,
+ "grad_norm": 0.03890643268823624,
+ "learning_rate": 0.000568590328960903,
+ "loss": 2.435359477996826,
+ "step": 618
+ },
+ {
+ "epoch": 8.599303135888501,
+ "grad_norm": 0.041447605937719345,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 2.4370574951171875,
+ "step": 619
+ },
+ {
+ "epoch": 8.613240418118467,
+ "grad_norm": 0.03584018349647522,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 2.4231667518615723,
+ "step": 620
+ },
+ {
+ "epoch": 8.627177700348431,
+ "grad_norm": 0.03309513255953789,
+ "learning_rate": 0.000568231409438027,
+ "loss": 2.4281513690948486,
+ "step": 621
+ },
+ {
+ "epoch": 8.641114982578397,
+ "grad_norm": 0.0365641750395298,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 2.4262235164642334,
+ "step": 622
+ },
+ {
+ "epoch": 8.655052264808361,
+ "grad_norm": 0.033776357769966125,
+ "learning_rate": 0.000567991061134677,
+ "loss": 2.4259705543518066,
+ "step": 623
+ },
+ {
+ "epoch": 8.668989547038327,
+ "grad_norm": 0.03251301124691963,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 2.4303622245788574,
+ "step": 624
+ },
+ {
+ "epoch": 8.682926829268293,
+ "grad_norm": 0.03311233967542648,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 2.4325923919677734,
+ "step": 625
+ },
+ {
+ "epoch": 8.696864111498257,
+ "grad_norm": 0.032762084156274796,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 2.423525333404541,
+ "step": 626
+ },
+ {
+ "epoch": 8.710801393728223,
+ "grad_norm": 0.03397396206855774,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 2.421725273132324,
+ "step": 627
+ },
+ {
+ "epoch": 8.724738675958188,
+ "grad_norm": 0.03827521204948425,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 2.417745590209961,
+ "step": 628
+ },
+ {
+ "epoch": 8.738675958188153,
+ "grad_norm": 0.03194425627589226,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 2.4408435821533203,
+ "step": 629
+ },
+ {
+ "epoch": 8.752613240418118,
+ "grad_norm": 0.02894434705376625,
+ "learning_rate": 0.000567143121979179,
+ "loss": 2.430302143096924,
+ "step": 630
+ },
+ {
+ "epoch": 8.766550522648084,
+ "grad_norm": 0.03130284696817398,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 2.4167380332946777,
+ "step": 631
+ },
+ {
+ "epoch": 8.78048780487805,
+ "grad_norm": 0.03176414966583252,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 2.4211833477020264,
+ "step": 632
+ },
+ {
+ "epoch": 8.794425087108014,
+ "grad_norm": 0.03023882955312729,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 2.4175009727478027,
+ "step": 633
+ },
+ {
+ "epoch": 8.80836236933798,
+ "grad_norm": 0.03027920238673687,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 2.4296345710754395,
+ "step": 634
+ },
+ {
+ "epoch": 8.822299651567944,
+ "grad_norm": 0.031661003828048706,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 2.4292376041412354,
+ "step": 635
+ },
+ {
+ "epoch": 8.83623693379791,
+ "grad_norm": 0.02943863719701767,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 2.422773599624634,
+ "step": 636
+ },
+ {
+ "epoch": 8.850174216027874,
+ "grad_norm": 0.02999107912182808,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 2.4288015365600586,
+ "step": 637
+ },
+ {
+ "epoch": 8.86411149825784,
+ "grad_norm": 0.03127457574009895,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 2.426997184753418,
+ "step": 638
+ },
+ {
+ "epoch": 8.878048780487806,
+ "grad_norm": 0.0321597196161747,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 2.418203353881836,
+ "step": 639
+ },
+ {
+ "epoch": 8.89198606271777,
+ "grad_norm": 0.032045748084783554,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 2.4220266342163086,
+ "step": 640
+ },
+ {
+ "epoch": 8.905923344947736,
+ "grad_norm": 0.031895119696855545,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 2.421767234802246,
+ "step": 641
+ },
+ {
+ "epoch": 8.9198606271777,
+ "grad_norm": 0.0330902598798275,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 2.418246269226074,
+ "step": 642
+ },
+ {
+ "epoch": 8.933797909407666,
+ "grad_norm": 0.03361523523926735,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 2.423337697982788,
+ "step": 643
+ },
+ {
+ "epoch": 8.94773519163763,
+ "grad_norm": 0.033133652061223984,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 2.4278783798217773,
+ "step": 644
+ },
+ {
+ "epoch": 8.961672473867596,
+ "grad_norm": 0.03747311979532242,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 2.434087038040161,
+ "step": 645
+ },
+ {
+ "epoch": 8.975609756097562,
+ "grad_norm": 0.036127083003520966,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 2.4167022705078125,
+ "step": 646
+ },
+ {
+ "epoch": 8.989547038327526,
+ "grad_norm": 0.03699145093560219,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 2.4243075847625732,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.028921982273459435,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 1.8086339235305786,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 0.6271453499794006,
+ "eval_runtime": 35.9474,
+ "eval_samples_per_second": 67.933,
+ "eval_steps_per_second": 0.556,
+ "step": 648
+ },
+ {
+ "epoch": 9.013937282229966,
+ "grad_norm": 0.0380239300429821,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 2.377704381942749,
+ "step": 649
+ },
+ {
+ "epoch": 9.02787456445993,
+ "grad_norm": 0.05574064329266548,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 2.399777889251709,
+ "step": 650
+ },
+ {
+ "epoch": 9.041811846689896,
+ "grad_norm": 0.06179674342274666,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 2.3851845264434814,
+ "step": 651
+ },
+ {
+ "epoch": 9.05574912891986,
+ "grad_norm": 0.06461436301469803,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 2.385363817214966,
+ "step": 652
+ },
+ {
+ "epoch": 9.069686411149826,
+ "grad_norm": 0.058009687811136246,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 2.3721890449523926,
+ "step": 653
+ },
+ {
+ "epoch": 9.08362369337979,
+ "grad_norm": 0.06488639861345291,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 2.386878490447998,
+ "step": 654
+ },
+ {
+ "epoch": 9.097560975609756,
+ "grad_norm": 0.05683685839176178,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 2.3946213722229004,
+ "step": 655
+ },
+ {
+ "epoch": 9.111498257839722,
+ "grad_norm": 0.05336347594857216,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 2.3708930015563965,
+ "step": 656
+ },
+ {
+ "epoch": 9.125435540069686,
+ "grad_norm": 0.05320737510919571,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 2.39091157913208,
+ "step": 657
+ },
+ {
+ "epoch": 9.139372822299652,
+ "grad_norm": 0.05641087517142296,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 2.381009578704834,
+ "step": 658
+ },
+ {
+ "epoch": 9.153310104529616,
+ "grad_norm": 0.06087775528430939,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 2.377963066101074,
+ "step": 659
+ },
+ {
+ "epoch": 9.167247386759582,
+ "grad_norm": 0.06592115014791489,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 2.392094135284424,
+ "step": 660
+ },
+ {
+ "epoch": 9.181184668989546,
+ "grad_norm": 0.061441708356142044,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 2.388850212097168,
+ "step": 661
+ },
+ {
+ "epoch": 9.195121951219512,
+ "grad_norm": 0.06311637908220291,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 2.38919734954834,
+ "step": 662
+ },
+ {
+ "epoch": 9.209059233449477,
+ "grad_norm": 0.07152658700942993,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 2.3724892139434814,
+ "step": 663
+ },
+ {
+ "epoch": 9.222996515679442,
+ "grad_norm": 0.06927355378866196,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 2.4017786979675293,
+ "step": 664
+ },
+ {
+ "epoch": 9.236933797909408,
+ "grad_norm": 0.062740758061409,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 2.376430034637451,
+ "step": 665
+ },
+ {
+ "epoch": 9.250871080139373,
+ "grad_norm": 0.051289040595293045,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 2.3926010131835938,
+ "step": 666
+ },
+ {
+ "epoch": 9.264808362369338,
+ "grad_norm": 0.055630262941122055,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 2.3605382442474365,
+ "step": 667
+ },
+ {
+ "epoch": 9.278745644599303,
+ "grad_norm": 0.052814628928899765,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 2.374608039855957,
+ "step": 668
+ },
+ {
+ "epoch": 9.292682926829269,
+ "grad_norm": 0.05927073210477829,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 2.384093999862671,
+ "step": 669
+ },
+ {
+ "epoch": 9.306620209059233,
+ "grad_norm": 0.05510697513818741,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 2.374708652496338,
+ "step": 670
+ },
+ {
+ "epoch": 9.320557491289199,
+ "grad_norm": 0.048580385744571686,
+ "learning_rate": 0.000561968326197397,
+ "loss": 2.3861031532287598,
+ "step": 671
+ },
+ {
+ "epoch": 9.334494773519165,
+ "grad_norm": 0.04905429109930992,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 2.3835110664367676,
+ "step": 672
+ },
+ {
+ "epoch": 9.348432055749129,
+ "grad_norm": 0.04621037095785141,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 2.379696846008301,
+ "step": 673
+ },
+ {
+ "epoch": 9.362369337979095,
+ "grad_norm": 0.0437726229429245,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 2.3854074478149414,
+ "step": 674
+ },
+ {
+ "epoch": 9.376306620209059,
+ "grad_norm": 0.040361031889915466,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 2.39682936668396,
+ "step": 675
+ },
+ {
+ "epoch": 9.390243902439025,
+ "grad_norm": 0.03848707675933838,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 2.3752408027648926,
+ "step": 676
+ },
+ {
+ "epoch": 9.404181184668989,
+ "grad_norm": 0.04017478972673416,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 2.3912038803100586,
+ "step": 677
+ },
+ {
+ "epoch": 9.418118466898955,
+ "grad_norm": 0.03487734496593475,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 2.389535427093506,
+ "step": 678
+ },
+ {
+ "epoch": 9.43205574912892,
+ "grad_norm": 0.03736500069499016,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 2.3840279579162598,
+ "step": 679
+ },
+ {
+ "epoch": 9.445993031358885,
+ "grad_norm": 0.03499516844749451,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 2.3752779960632324,
+ "step": 680
+ },
+ {
+ "epoch": 9.45993031358885,
+ "grad_norm": 0.03297547250986099,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 2.3991637229919434,
+ "step": 681
+ },
+ {
+ "epoch": 9.473867595818815,
+ "grad_norm": 0.03387392312288284,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 2.3872644901275635,
+ "step": 682
+ },
+ {
+ "epoch": 9.487804878048781,
+ "grad_norm": 0.03756970539689064,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 2.368522882461548,
+ "step": 683
+ },
+ {
+ "epoch": 9.501742160278745,
+ "grad_norm": 0.03686998412013054,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 2.381460189819336,
+ "step": 684
+ },
+ {
+ "epoch": 9.515679442508711,
+ "grad_norm": 0.03336082771420479,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 2.3871984481811523,
+ "step": 685
+ },
+ {
+ "epoch": 9.529616724738675,
+ "grad_norm": 0.03545147553086281,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 2.3921163082122803,
+ "step": 686
+ },
+ {
+ "epoch": 9.543554006968641,
+ "grad_norm": 0.03614704683423042,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 2.388418197631836,
+ "step": 687
+ },
+ {
+ "epoch": 9.557491289198607,
+ "grad_norm": 0.0350213497877121,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 2.399055004119873,
+ "step": 688
+ },
+ {
+ "epoch": 9.571428571428571,
+ "grad_norm": 0.035602837800979614,
+ "learning_rate": 0.000559585254906272,
+ "loss": 2.3897178173065186,
+ "step": 689
+ },
+ {
+ "epoch": 9.585365853658537,
+ "grad_norm": 0.03438388183712959,
+ "learning_rate": 0.000559450892376025,
+ "loss": 2.407155990600586,
+ "step": 690
+ },
+ {
+ "epoch": 9.599303135888501,
+ "grad_norm": 0.035386405885219574,
+ "learning_rate": 0.000559316323227926,
+ "loss": 2.390408992767334,
+ "step": 691
+ },
+ {
+ "epoch": 9.613240418118467,
+ "grad_norm": 0.03753617778420448,
+ "learning_rate": 0.000559181547570395,
+ "loss": 2.3751039505004883,
+ "step": 692
+ },
+ {
+ "epoch": 9.627177700348431,
+ "grad_norm": 0.03430183231830597,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 2.3941941261291504,
+ "step": 693
+ },
+ {
+ "epoch": 9.641114982578397,
+ "grad_norm": 0.03268825262784958,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 2.3772215843200684,
+ "step": 694
+ },
+ {
+ "epoch": 9.655052264808361,
+ "grad_norm": 0.0341268889605999,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 2.3830480575561523,
+ "step": 695
+ },
+ {
+ "epoch": 9.668989547038327,
+ "grad_norm": 0.03466663882136345,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 2.3796463012695312,
+ "step": 696
+ },
+ {
+ "epoch": 9.682926829268293,
+ "grad_norm": 0.03470399230718613,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 2.385427713394165,
+ "step": 697
+ },
+ {
+ "epoch": 9.696864111498257,
+ "grad_norm": 0.0382751040160656,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 2.3877949714660645,
+ "step": 698
+ },
+ {
+ "epoch": 9.710801393728223,
+ "grad_norm": 0.035988591611385345,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 2.378014326095581,
+ "step": 699
+ },
+ {
+ "epoch": 9.724738675958188,
+ "grad_norm": 0.03295210376381874,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 2.382502555847168,
+ "step": 700
+ },
+ {
+ "epoch": 9.738675958188153,
+ "grad_norm": 0.030723385512828827,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 2.388451099395752,
+ "step": 701
+ },
+ {
+ "epoch": 9.752613240418118,
+ "grad_norm": 0.03281056135892868,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 2.387669086456299,
+ "step": 702
+ },
+ {
+ "epoch": 9.766550522648084,
+ "grad_norm": 0.03443330153822899,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 2.381460189819336,
+ "step": 703
+ },
+ {
+ "epoch": 9.78048780487805,
+ "grad_norm": 0.03670412674546242,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 2.3756155967712402,
+ "step": 704
+ },
+ {
+ "epoch": 9.794425087108014,
+ "grad_norm": 0.03445884957909584,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 2.371798515319824,
+ "step": 705
+ },
+ {
+ "epoch": 9.80836236933798,
+ "grad_norm": 0.03341168165206909,
+ "learning_rate": 0.000557273065985207,
+ "loss": 2.366093635559082,
+ "step": 706
+ },
+ {
+ "epoch": 9.822299651567944,
+ "grad_norm": 0.035434722900390625,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 2.3876760005950928,
+ "step": 707
+ },
+ {
+ "epoch": 9.83623693379791,
+ "grad_norm": 0.036071036010980606,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 2.363477945327759,
+ "step": 708
+ },
+ {
+ "epoch": 9.850174216027874,
+ "grad_norm": 0.03642858937382698,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 2.3772635459899902,
+ "step": 709
+ },
+ {
+ "epoch": 9.86411149825784,
+ "grad_norm": 0.03974858298897743,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 2.3893399238586426,
+ "step": 710
+ },
+ {
+ "epoch": 9.878048780487806,
+ "grad_norm": 0.040428902953863144,
+ "learning_rate": 0.000556581718698499,
+ "loss": 2.385814666748047,
+ "step": 711
+ },
+ {
+ "epoch": 9.89198606271777,
+ "grad_norm": 0.03710169717669487,
+ "learning_rate": 0.000556442835876097,
+ "loss": 2.3817856311798096,
+ "step": 712
+ },
+ {
+ "epoch": 9.905923344947736,
+ "grad_norm": 0.031853094696998596,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 2.3833706378936768,
+ "step": 713
+ },
+ {
+ "epoch": 9.9198606271777,
+ "grad_norm": 0.03192576766014099,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 2.380492687225342,
+ "step": 714
+ },
+ {
+ "epoch": 9.933797909407666,
+ "grad_norm": 0.03222471475601196,
+ "learning_rate": 0.000556024962691404,
+ "loss": 2.368129014968872,
+ "step": 715
+ },
+ {
+ "epoch": 9.94773519163763,
+ "grad_norm": 0.033947065472602844,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 2.392598867416382,
+ "step": 716
+ },
+ {
+ "epoch": 9.961672473867596,
+ "grad_norm": 0.030860550701618195,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 2.392878532409668,
+ "step": 717
+ },
+ {
+ "epoch": 9.975609756097562,
+ "grad_norm": 0.03237077221274376,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 2.3881583213806152,
+ "step": 718
+ },
+ {
+ "epoch": 9.989547038327526,
+ "grad_norm": 0.03429335355758667,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 2.385345458984375,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.025040561333298683,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 1.7694379091262817,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 0.6226440668106079,
+ "eval_runtime": 35.9996,
+ "eval_samples_per_second": 67.834,
+ "eval_steps_per_second": 0.556,
+ "step": 720
+ },
+ {
+ "epoch": 10.013937282229966,
+ "grad_norm": 0.04380113258957863,
+ "learning_rate": 0.0005551837152119915,
+ "loss": 2.338531494140625,
+ "step": 721
+ },
+ {
+ "epoch": 10.02787456445993,
+ "grad_norm": 0.06502492725849152,
+ "learning_rate": 0.0005550427955088455,
+ "loss": 2.336862087249756,
+ "step": 722
+ },
+ {
+ "epoch": 10.041811846689896,
+ "grad_norm": 0.06072859466075897,
+ "learning_rate": 0.0005549016727393715,
+ "loss": 2.345121383666992,
+ "step": 723
+ },
+ {
+ "epoch": 10.05574912891986,
+ "grad_norm": 0.06489435583353043,
+ "learning_rate": 0.0005547603470172697,
+ "loss": 2.3135323524475098,
+ "step": 724
+ },
+ {
+ "epoch": 10.069686411149826,
+ "grad_norm": 0.07557415962219238,
+ "learning_rate": 0.0005546188184564036,
+ "loss": 2.346886157989502,
+ "step": 725
+ },
+ {
+ "epoch": 10.08362369337979,
+ "grad_norm": 0.07416220009326935,
+ "learning_rate": 0.0005544770871708004,
+ "loss": 2.347463607788086,
+ "step": 726
+ },
+ {
+ "epoch": 10.097560975609756,
+ "grad_norm": 0.07228727638721466,
+ "learning_rate": 0.0005543351532746501,
+ "loss": 2.351980209350586,
+ "step": 727
+ },
+ {
+ "epoch": 10.111498257839722,
+ "grad_norm": 0.07207637280225754,
+ "learning_rate": 0.0005541930168823067,
+ "loss": 2.3345837593078613,
+ "step": 728
+ },
+ {
+ "epoch": 10.125435540069686,
+ "grad_norm": 0.07364149391651154,
+ "learning_rate": 0.0005540506781082864,
+ "loss": 2.3545069694519043,
+ "step": 729
+ },
+ {
+ "epoch": 10.139372822299652,
+ "grad_norm": 0.06596208363771439,
+ "learning_rate": 0.0005539081370672695,
+ "loss": 2.3250179290771484,
+ "step": 730
+ },
+ {
+ "epoch": 10.153310104529616,
+ "grad_norm": 0.07143490016460419,
+ "learning_rate": 0.0005537653938740984,
+ "loss": 2.352842330932617,
+ "step": 731
+ },
+ {
+ "epoch": 10.167247386759582,
+ "grad_norm": 0.06986920535564423,
+ "learning_rate": 0.0005536224486437788,
+ "loss": 2.3406600952148438,
+ "step": 732
+ },
+ {
+ "epoch": 10.181184668989546,
+ "grad_norm": 0.06723238527774811,
+ "learning_rate": 0.0005534793014914793,
+ "loss": 2.36100435256958,
+ "step": 733
+ },
+ {
+ "epoch": 10.195121951219512,
+ "grad_norm": 0.07599805295467377,
+ "learning_rate": 0.0005533359525325307,
+ "loss": 2.364171028137207,
+ "step": 734
+ },
+ {
+ "epoch": 10.209059233449477,
+ "grad_norm": 0.06879840791225433,
+ "learning_rate": 0.0005531924018824266,
+ "loss": 2.3600802421569824,
+ "step": 735
+ },
+ {
+ "epoch": 10.222996515679442,
+ "grad_norm": 0.06736139208078384,
+ "learning_rate": 0.0005530486496568236,
+ "loss": 2.3630075454711914,
+ "step": 736
+ },
+ {
+ "epoch": 10.236933797909408,
+ "grad_norm": 0.073630690574646,
+ "learning_rate": 0.0005529046959715397,
+ "loss": 2.3535385131835938,
+ "step": 737
+ },
+ {
+ "epoch": 10.250871080139373,
+ "grad_norm": 0.081154465675354,
+ "learning_rate": 0.0005527605409425562,
+ "loss": 2.355775833129883,
+ "step": 738
+ },
+ {
+ "epoch": 10.264808362369338,
+ "grad_norm": 0.07517901808023453,
+ "learning_rate": 0.0005526161846860161,
+ "loss": 2.3474936485290527,
+ "step": 739
+ },
+ {
+ "epoch": 10.278745644599303,
+ "grad_norm": 0.06589196622371674,
+ "learning_rate": 0.0005524716273182245,
+ "loss": 2.356273651123047,
+ "step": 740
+ },
+ {
+ "epoch": 10.292682926829269,
+ "grad_norm": 0.07035321742296219,
+ "learning_rate": 0.0005523268689556489,
+ "loss": 2.3348515033721924,
+ "step": 741
+ },
+ {
+ "epoch": 10.306620209059233,
+ "grad_norm": 0.05464137718081474,
+ "learning_rate": 0.0005521819097149183,
+ "loss": 2.340257167816162,
+ "step": 742
+ },
+ {
+ "epoch": 10.320557491289199,
+ "grad_norm": 0.05040175840258598,
+ "learning_rate": 0.0005520367497128238,
+ "loss": 2.356626033782959,
+ "step": 743
+ },
+ {
+ "epoch": 10.334494773519165,
+ "grad_norm": 0.04544971138238907,
+ "learning_rate": 0.0005518913890663182,
+ "loss": 2.3765573501586914,
+ "step": 744
+ },
+ {
+ "epoch": 10.348432055749129,
+ "grad_norm": 0.04246767982840538,
+ "learning_rate": 0.0005517458278925161,
+ "loss": 2.3584630489349365,
+ "step": 745
+ },
+ {
+ "epoch": 10.362369337979095,
+ "grad_norm": 0.0407957099378109,
+ "learning_rate": 0.0005516000663086932,
+ "loss": 2.3562331199645996,
+ "step": 746
+ },
+ {
+ "epoch": 10.376306620209059,
+ "grad_norm": 0.04157666489481926,
+ "learning_rate": 0.0005514541044322872,
+ "loss": 2.355463743209839,
+ "step": 747
+ },
+ {
+ "epoch": 10.390243902439025,
+ "grad_norm": 0.03842373192310333,
+ "learning_rate": 0.0005513079423808967,
+ "loss": 2.3644120693206787,
+ "step": 748
+ },
+ {
+ "epoch": 10.404181184668989,
+ "grad_norm": 0.03891562297940254,
+ "learning_rate": 0.0005511615802722823,
+ "loss": 2.3579063415527344,
+ "step": 749
+ },
+ {
+ "epoch": 10.418118466898955,
+ "grad_norm": 0.03712530806660652,
+ "learning_rate": 0.0005510150182243647,
+ "loss": 2.3606715202331543,
+ "step": 750
+ },
+ {
+ "epoch": 10.43205574912892,
+ "grad_norm": 0.03664202243089676,
+ "learning_rate": 0.0005508682563552269,
+ "loss": 2.3363728523254395,
+ "step": 751
+ },
+ {
+ "epoch": 10.445993031358885,
+ "grad_norm": 0.03555043414235115,
+ "learning_rate": 0.0005507212947831119,
+ "loss": 2.357100009918213,
+ "step": 752
+ },
+ {
+ "epoch": 10.45993031358885,
+ "grad_norm": 0.0355045385658741,
+ "learning_rate": 0.0005505741336264239,
+ "loss": 2.348784923553467,
+ "step": 753
+ },
+ {
+ "epoch": 10.473867595818815,
+ "grad_norm": 0.036513347178697586,
+ "learning_rate": 0.0005504267730037283,
+ "loss": 2.3371458053588867,
+ "step": 754
+ },
+ {
+ "epoch": 10.487804878048781,
+ "grad_norm": 0.034735117107629776,
+ "learning_rate": 0.0005502792130337508,
+ "loss": 2.3379664421081543,
+ "step": 755
+ },
+ {
+ "epoch": 10.501742160278745,
+ "grad_norm": 0.032890401780605316,
+ "learning_rate": 0.0005501314538353776,
+ "loss": 2.345534563064575,
+ "step": 756
+ },
+ {
+ "epoch": 10.515679442508711,
+ "grad_norm": 0.0343078076839447,
+ "learning_rate": 0.000549983495527656,
+ "loss": 2.3425400257110596,
+ "step": 757
+ },
+ {
+ "epoch": 10.529616724738675,
+ "grad_norm": 0.036330267786979675,
+ "learning_rate": 0.000549835338229793,
+ "loss": 2.353668689727783,
+ "step": 758
+ },
+ {
+ "epoch": 10.543554006968641,
+ "grad_norm": 0.03595716878771782,
+ "learning_rate": 0.0005496869820611563,
+ "loss": 2.340348958969116,
+ "step": 759
+ },
+ {
+ "epoch": 10.557491289198607,
+ "grad_norm": 0.03567204624414444,
+ "learning_rate": 0.0005495384271412739,
+ "loss": 2.3443446159362793,
+ "step": 760
+ },
+ {
+ "epoch": 10.571428571428571,
+ "grad_norm": 0.03243366256356239,
+ "learning_rate": 0.0005493896735898338,
+ "loss": 2.328749179840088,
+ "step": 761
+ },
+ {
+ "epoch": 10.585365853658537,
+ "grad_norm": 0.033156730234622955,
+ "learning_rate": 0.000549240721526684,
+ "loss": 2.3553342819213867,
+ "step": 762
+ },
+ {
+ "epoch": 10.599303135888501,
+ "grad_norm": 0.03489018976688385,
+ "learning_rate": 0.0005490915710718325,
+ "loss": 2.329984664916992,
+ "step": 763
+ },
+ {
+ "epoch": 10.613240418118467,
+ "grad_norm": 0.0352267362177372,
+ "learning_rate": 0.0005489422223454471,
+ "loss": 2.34751033782959,
+ "step": 764
+ },
+ {
+ "epoch": 10.627177700348431,
+ "grad_norm": 0.03212668001651764,
+ "learning_rate": 0.0005487926754678556,
+ "loss": 2.341987133026123,
+ "step": 765
+ },
+ {
+ "epoch": 10.641114982578397,
+ "grad_norm": 0.03473065048456192,
+ "learning_rate": 0.0005486429305595448,
+ "loss": 2.343632221221924,
+ "step": 766
+ },
+ {
+ "epoch": 10.655052264808361,
+ "grad_norm": 0.03458387404680252,
+ "learning_rate": 0.0005484929877411618,
+ "loss": 2.3420281410217285,
+ "step": 767
+ },
+ {
+ "epoch": 10.668989547038327,
+ "grad_norm": 0.03573968634009361,
+ "learning_rate": 0.0005483428471335127,
+ "loss": 2.349421501159668,
+ "step": 768
+ },
+ {
+ "epoch": 10.682926829268293,
+ "grad_norm": 0.034877803176641464,
+ "learning_rate": 0.000548192508857563,
+ "loss": 2.354094982147217,
+ "step": 769
+ },
+ {
+ "epoch": 10.696864111498257,
+ "grad_norm": 0.03350481390953064,
+ "learning_rate": 0.0005480419730344377,
+ "loss": 2.334352493286133,
+ "step": 770
+ },
+ {
+ "epoch": 10.710801393728223,
+ "grad_norm": 0.03327416628599167,
+ "learning_rate": 0.0005478912397854208,
+ "loss": 2.3445448875427246,
+ "step": 771
+ },
+ {
+ "epoch": 10.724738675958188,
+ "grad_norm": 0.03491336479783058,
+ "learning_rate": 0.0005477403092319552,
+ "loss": 2.3525538444519043,
+ "step": 772
+ },
+ {
+ "epoch": 10.738675958188153,
+ "grad_norm": 0.035869523882865906,
+ "learning_rate": 0.0005475891814956429,
+ "loss": 2.3440966606140137,
+ "step": 773
+ },
+ {
+ "epoch": 10.752613240418118,
+ "grad_norm": 0.036187391728162766,
+ "learning_rate": 0.0005474378566982449,
+ "loss": 2.33382511138916,
+ "step": 774
+ },
+ {
+ "epoch": 10.766550522648084,
+ "grad_norm": 0.037324003875255585,
+ "learning_rate": 0.0005472863349616809,
+ "loss": 2.3463244438171387,
+ "step": 775
+ },
+ {
+ "epoch": 10.78048780487805,
+ "grad_norm": 0.035808268934488297,
+ "learning_rate": 0.0005471346164080292,
+ "loss": 2.3392248153686523,
+ "step": 776
+ },
+ {
+ "epoch": 10.794425087108014,
+ "grad_norm": 0.03382394090294838,
+ "learning_rate": 0.0005469827011595266,
+ "loss": 2.3399806022644043,
+ "step": 777
+ },
+ {
+ "epoch": 10.80836236933798,
+ "grad_norm": 0.03256148472428322,
+ "learning_rate": 0.0005468305893385686,
+ "loss": 2.336940050125122,
+ "step": 778
+ },
+ {
+ "epoch": 10.822299651567944,
+ "grad_norm": 0.032796118408441544,
+ "learning_rate": 0.0005466782810677088,
+ "loss": 2.3503036499023438,
+ "step": 779
+ },
+ {
+ "epoch": 10.83623693379791,
+ "grad_norm": 0.03359639272093773,
+ "learning_rate": 0.0005465257764696593,
+ "loss": 2.340160608291626,
+ "step": 780
+ },
+ {
+ "epoch": 10.850174216027874,
+ "grad_norm": 0.03725067153573036,
+ "learning_rate": 0.0005463730756672903,
+ "loss": 2.3448994159698486,
+ "step": 781
+ },
+ {
+ "epoch": 10.86411149825784,
+ "grad_norm": 0.03396180644631386,
+ "learning_rate": 0.0005462201787836301,
+ "loss": 2.337078094482422,
+ "step": 782
+ },
+ {
+ "epoch": 10.878048780487806,
+ "grad_norm": 0.034375693649053574,
+ "learning_rate": 0.0005460670859418651,
+ "loss": 2.3564600944519043,
+ "step": 783
+ },
+ {
+ "epoch": 10.89198606271777,
+ "grad_norm": 0.034513067454099655,
+ "learning_rate": 0.000545913797265339,
+ "loss": 2.3631274700164795,
+ "step": 784
+ },
+ {
+ "epoch": 10.905923344947736,
+ "grad_norm": 0.03305843099951744,
+ "learning_rate": 0.0005457603128775541,
+ "loss": 2.345407485961914,
+ "step": 785
+ },
+ {
+ "epoch": 10.9198606271777,
+ "grad_norm": 0.03236348554491997,
+ "learning_rate": 0.0005456066329021699,
+ "loss": 2.340275526046753,
+ "step": 786
+ },
+ {
+ "epoch": 10.933797909407666,
+ "grad_norm": 0.03411583974957466,
+ "learning_rate": 0.0005454527574630037,
+ "loss": 2.341548442840576,
+ "step": 787
+ },
+ {
+ "epoch": 10.94773519163763,
+ "grad_norm": 0.03641803562641144,
+ "learning_rate": 0.0005452986866840298,
+ "loss": 2.3475522994995117,
+ "step": 788
+ },
+ {
+ "epoch": 10.961672473867596,
+ "grad_norm": 0.03492163494229317,
+ "learning_rate": 0.0005451444206893806,
+ "loss": 2.3415870666503906,
+ "step": 789
+ },
+ {
+ "epoch": 10.975609756097562,
+ "grad_norm": 0.03789013251662254,
+ "learning_rate": 0.0005449899596033453,
+ "loss": 2.3574557304382324,
+ "step": 790
+ },
+ {
+ "epoch": 10.989547038327526,
+ "grad_norm": 0.034537237137556076,
+ "learning_rate": 0.0005448353035503704,
+ "loss": 2.350353717803955,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.026393387466669083,
+ "learning_rate": 0.0005446804526550596,
+ "loss": 1.7534164190292358,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 0.6207266449928284,
+ "eval_runtime": 36.6286,
+ "eval_samples_per_second": 66.669,
+ "eval_steps_per_second": 0.546,
+ "step": 792
+ },
+ {
+ "epoch": 11.013937282229966,
+ "grad_norm": 0.04500797390937805,
+ "learning_rate": 0.0005445254070421732,
+ "loss": 2.29563570022583,
+ "step": 793
+ },
+ {
+ "epoch": 11.02787456445993,
+ "grad_norm": 0.058218058198690414,
+ "learning_rate": 0.0005443701668366288,
+ "loss": 2.285862445831299,
+ "step": 794
+ },
+ {
+ "epoch": 11.041811846689896,
+ "grad_norm": 0.06746228039264679,
+ "learning_rate": 0.0005442147321635007,
+ "loss": 2.2930586338043213,
+ "step": 795
+ },
+ {
+ "epoch": 11.05574912891986,
+ "grad_norm": 0.07853464037179947,
+ "learning_rate": 0.00054405910314802,
+ "loss": 2.2999796867370605,
+ "step": 796
+ },
+ {
+ "epoch": 11.069686411149826,
+ "grad_norm": 0.0743563324213028,
+ "learning_rate": 0.0005439032799155737,
+ "loss": 2.3127989768981934,
+ "step": 797
+ },
+ {
+ "epoch": 11.08362369337979,
+ "grad_norm": 0.06950018554925919,
+ "learning_rate": 0.000543747262591706,
+ "loss": 2.302677631378174,
+ "step": 798
+ },
+ {
+ "epoch": 11.097560975609756,
+ "grad_norm": 0.0668293684720993,
+ "learning_rate": 0.0005435910513021172,
+ "loss": 2.3067705631256104,
+ "step": 799
+ },
+ {
+ "epoch": 11.111498257839722,
+ "grad_norm": 0.05805148929357529,
+ "learning_rate": 0.0005434346461726641,
+ "loss": 2.2972123622894287,
+ "step": 800
+ },
+ {
+ "epoch": 11.125435540069686,
+ "grad_norm": 0.059285592287778854,
+ "learning_rate": 0.0005432780473293593,
+ "loss": 2.302372932434082,
+ "step": 801
+ },
+ {
+ "epoch": 11.139372822299652,
+ "grad_norm": 0.054501719772815704,
+ "learning_rate": 0.0005431212548983718,
+ "loss": 2.305246353149414,
+ "step": 802
+ },
+ {
+ "epoch": 11.153310104529616,
+ "grad_norm": 0.05490308254957199,
+ "learning_rate": 0.0005429642690060262,
+ "loss": 2.300204277038574,
+ "step": 803
+ },
+ {
+ "epoch": 11.167247386759582,
+ "grad_norm": 0.05564664676785469,
+ "learning_rate": 0.0005428070897788034,
+ "loss": 2.295349597930908,
+ "step": 804
+ },
+ {
+ "epoch": 11.181184668989546,
+ "grad_norm": 0.04841756820678711,
+ "learning_rate": 0.0005426497173433398,
+ "loss": 2.3083786964416504,
+ "step": 805
+ },
+ {
+ "epoch": 11.195121951219512,
+ "grad_norm": 0.05090150982141495,
+ "learning_rate": 0.0005424921518264275,
+ "loss": 2.2890477180480957,
+ "step": 806
+ },
+ {
+ "epoch": 11.209059233449477,
+ "grad_norm": 0.049588896334171295,
+ "learning_rate": 0.0005423343933550143,
+ "loss": 2.3092164993286133,
+ "step": 807
+ },
+ {
+ "epoch": 11.222996515679442,
+ "grad_norm": 0.059266265481710434,
+ "learning_rate": 0.0005421764420562032,
+ "loss": 2.3087329864501953,
+ "step": 808
+ },
+ {
+ "epoch": 11.236933797909408,
+ "grad_norm": 0.061635106801986694,
+ "learning_rate": 0.0005420182980572527,
+ "loss": 2.310224771499634,
+ "step": 809
+ },
+ {
+ "epoch": 11.250871080139373,
+ "grad_norm": 0.058707281947135925,
+ "learning_rate": 0.0005418599614855768,
+ "loss": 2.3094818592071533,
+ "step": 810
+ },
+ {
+ "epoch": 11.264808362369338,
+ "grad_norm": 0.05711625888943672,
+ "learning_rate": 0.0005417014324687442,
+ "loss": 2.320720672607422,
+ "step": 811
+ },
+ {
+ "epoch": 11.278745644599303,
+ "grad_norm": 0.04941999912261963,
+ "learning_rate": 0.000541542711134479,
+ "loss": 2.3037776947021484,
+ "step": 812
+ },
+ {
+ "epoch": 11.292682926829269,
+ "grad_norm": 0.0481753945350647,
+ "learning_rate": 0.0005413837976106599,
+ "loss": 2.307615280151367,
+ "step": 813
+ },
+ {
+ "epoch": 11.306620209059233,
+ "grad_norm": 0.05005398392677307,
+ "learning_rate": 0.0005412246920253208,
+ "loss": 2.302461624145508,
+ "step": 814
+ },
+ {
+ "epoch": 11.320557491289199,
+ "grad_norm": 0.051312051713466644,
+ "learning_rate": 0.0005410653945066503,
+ "loss": 2.3107659816741943,
+ "step": 815
+ },
+ {
+ "epoch": 11.334494773519165,
+ "grad_norm": 0.047787491232156754,
+ "learning_rate": 0.0005409059051829914,
+ "loss": 2.303896903991699,
+ "step": 816
+ },
+ {
+ "epoch": 11.348432055749129,
+ "grad_norm": 0.044105708599090576,
+ "learning_rate": 0.0005407462241828417,
+ "loss": 2.3028616905212402,
+ "step": 817
+ },
+ {
+ "epoch": 11.362369337979095,
+ "grad_norm": 0.04771425202488899,
+ "learning_rate": 0.0005405863516348535,
+ "loss": 2.3242416381835938,
+ "step": 818
+ },
+ {
+ "epoch": 11.376306620209059,
+ "grad_norm": 0.049508776515722275,
+ "learning_rate": 0.000540426287667833,
+ "loss": 2.317350387573242,
+ "step": 819
+ },
+ {
+ "epoch": 11.390243902439025,
+ "grad_norm": 0.04476630315184593,
+ "learning_rate": 0.000540266032410741,
+ "loss": 2.3019609451293945,
+ "step": 820
+ },
+ {
+ "epoch": 11.404181184668989,
+ "grad_norm": 0.044484466314315796,
+ "learning_rate": 0.0005401055859926923,
+ "loss": 2.3157167434692383,
+ "step": 821
+ },
+ {
+ "epoch": 11.418118466898955,
+ "grad_norm": 0.04700213670730591,
+ "learning_rate": 0.0005399449485429555,
+ "loss": 2.31441330909729,
+ "step": 822
+ },
+ {
+ "epoch": 11.43205574912892,
+ "grad_norm": 0.04357650876045227,
+ "learning_rate": 0.0005397841201909535,
+ "loss": 2.309573173522949,
+ "step": 823
+ },
+ {
+ "epoch": 11.445993031358885,
+ "grad_norm": 0.04270123690366745,
+ "learning_rate": 0.0005396231010662627,
+ "loss": 2.2956438064575195,
+ "step": 824
+ },
+ {
+ "epoch": 11.45993031358885,
+ "grad_norm": 0.04122788831591606,
+ "learning_rate": 0.0005394618912986132,
+ "loss": 2.3093338012695312,
+ "step": 825
+ },
+ {
+ "epoch": 11.473867595818815,
+ "grad_norm": 0.040944404900074005,
+ "learning_rate": 0.0005393004910178889,
+ "loss": 2.3245465755462646,
+ "step": 826
+ },
+ {
+ "epoch": 11.487804878048781,
+ "grad_norm": 0.04059522598981857,
+ "learning_rate": 0.0005391389003541271,
+ "loss": 2.307492733001709,
+ "step": 827
+ },
+ {
+ "epoch": 11.501742160278745,
+ "grad_norm": 0.04292140156030655,
+ "learning_rate": 0.0005389771194375185,
+ "loss": 2.32723069190979,
+ "step": 828
+ },
+ {
+ "epoch": 11.515679442508711,
+ "grad_norm": 0.041085343807935715,
+ "learning_rate": 0.0005388151483984071,
+ "loss": 2.3025991916656494,
+ "step": 829
+ },
+ {
+ "epoch": 11.529616724738675,
+ "grad_norm": 0.040302127599716187,
+ "learning_rate": 0.0005386529873672898,
+ "loss": 2.306711196899414,
+ "step": 830
+ },
+ {
+ "epoch": 11.543554006968641,
+ "grad_norm": 0.04179452359676361,
+ "learning_rate": 0.0005384906364748172,
+ "loss": 2.299077033996582,
+ "step": 831
+ },
+ {
+ "epoch": 11.557491289198607,
+ "grad_norm": 0.04052369296550751,
+ "learning_rate": 0.000538328095851792,
+ "loss": 2.3212227821350098,
+ "step": 832
+ },
+ {
+ "epoch": 11.571428571428571,
+ "grad_norm": 0.03855585679411888,
+ "learning_rate": 0.0005381653656291707,
+ "loss": 2.2905197143554688,
+ "step": 833
+ },
+ {
+ "epoch": 11.585365853658537,
+ "grad_norm": 0.04159102961421013,
+ "learning_rate": 0.0005380024459380619,
+ "loss": 2.2973320484161377,
+ "step": 834
+ },
+ {
+ "epoch": 11.599303135888501,
+ "grad_norm": 0.044633787125349045,
+ "learning_rate": 0.000537839336909727,
+ "loss": 2.3214757442474365,
+ "step": 835
+ },
+ {
+ "epoch": 11.613240418118467,
+ "grad_norm": 0.03999071940779686,
+ "learning_rate": 0.00053767603867558,
+ "loss": 2.332554817199707,
+ "step": 836
+ },
+ {
+ "epoch": 11.627177700348431,
+ "grad_norm": 0.03866419568657875,
+ "learning_rate": 0.0005375125513671874,
+ "loss": 2.3050875663757324,
+ "step": 837
+ },
+ {
+ "epoch": 11.641114982578397,
+ "grad_norm": 0.041100166738033295,
+ "learning_rate": 0.0005373488751162681,
+ "loss": 2.316553831100464,
+ "step": 838
+ },
+ {
+ "epoch": 11.655052264808361,
+ "grad_norm": 0.040330950170755386,
+ "learning_rate": 0.0005371850100546929,
+ "loss": 2.310610294342041,
+ "step": 839
+ },
+ {
+ "epoch": 11.668989547038327,
+ "grad_norm": 0.03405703231692314,
+ "learning_rate": 0.000537020956314485,
+ "loss": 2.311572313308716,
+ "step": 840
+ },
+ {
+ "epoch": 11.682926829268293,
+ "grad_norm": 0.038694240152835846,
+ "learning_rate": 0.0005368567140278196,
+ "loss": 2.291428565979004,
+ "step": 841
+ },
+ {
+ "epoch": 11.696864111498257,
+ "grad_norm": 0.03937961906194687,
+ "learning_rate": 0.0005366922833270235,
+ "loss": 2.315734386444092,
+ "step": 842
+ },
+ {
+ "epoch": 11.710801393728223,
+ "grad_norm": 0.038759566843509674,
+ "learning_rate": 0.0005365276643445757,
+ "loss": 2.3142471313476562,
+ "step": 843
+ },
+ {
+ "epoch": 11.724738675958188,
+ "grad_norm": 0.03737666830420494,
+ "learning_rate": 0.0005363628572131069,
+ "loss": 2.305859088897705,
+ "step": 844
+ },
+ {
+ "epoch": 11.738675958188153,
+ "grad_norm": 0.039980217814445496,
+ "learning_rate": 0.0005361978620653991,
+ "loss": 2.3132710456848145,
+ "step": 845
+ },
+ {
+ "epoch": 11.752613240418118,
+ "grad_norm": 0.040231477469205856,
+ "learning_rate": 0.0005360326790343858,
+ "loss": 2.307582139968872,
+ "step": 846
+ },
+ {
+ "epoch": 11.766550522648084,
+ "grad_norm": 0.03938363865017891,
+ "learning_rate": 0.000535867308253152,
+ "loss": 2.33015775680542,
+ "step": 847
+ },
+ {
+ "epoch": 11.78048780487805,
+ "grad_norm": 0.03871415555477142,
+ "learning_rate": 0.0005357017498549341,
+ "loss": 2.315992832183838,
+ "step": 848
+ },
+ {
+ "epoch": 11.794425087108014,
+ "grad_norm": 0.03816714137792587,
+ "learning_rate": 0.0005355360039731196,
+ "loss": 2.315371513366699,
+ "step": 849
+ },
+ {
+ "epoch": 11.80836236933798,
+ "grad_norm": 0.03860654681921005,
+ "learning_rate": 0.0005353700707412466,
+ "loss": 2.3099796772003174,
+ "step": 850
+ },
+ {
+ "epoch": 11.822299651567944,
+ "grad_norm": 0.04050910845398903,
+ "learning_rate": 0.0005352039502930048,
+ "loss": 2.331601142883301,
+ "step": 851
+ },
+ {
+ "epoch": 11.83623693379791,
+ "grad_norm": 0.040455542504787445,
+ "learning_rate": 0.0005350376427622343,
+ "loss": 2.3153774738311768,
+ "step": 852
+ },
+ {
+ "epoch": 11.850174216027874,
+ "grad_norm": 0.03606412559747696,
+ "learning_rate": 0.0005348711482829261,
+ "loss": 2.3196091651916504,
+ "step": 853
+ },
+ {
+ "epoch": 11.86411149825784,
+ "grad_norm": 0.03540179878473282,
+ "learning_rate": 0.000534704466989222,
+ "loss": 2.3175747394561768,
+ "step": 854
+ },
+ {
+ "epoch": 11.878048780487806,
+ "grad_norm": 0.03594037890434265,
+ "learning_rate": 0.0005345375990154138,
+ "loss": 2.3123281002044678,
+ "step": 855
+ },
+ {
+ "epoch": 11.89198606271777,
+ "grad_norm": 0.037316273897886276,
+ "learning_rate": 0.0005343705444959441,
+ "loss": 2.326590061187744,
+ "step": 856
+ },
+ {
+ "epoch": 11.905923344947736,
+ "grad_norm": 0.03534175828099251,
+ "learning_rate": 0.000534203303565406,
+ "loss": 2.289609670639038,
+ "step": 857
+ },
+ {
+ "epoch": 11.9198606271777,
+ "grad_norm": 0.03645944595336914,
+ "learning_rate": 0.000534035876358542,
+ "loss": 2.310405731201172,
+ "step": 858
+ },
+ {
+ "epoch": 11.933797909407666,
+ "grad_norm": 0.033878158777952194,
+ "learning_rate": 0.0005338682630102454,
+ "loss": 2.3025999069213867,
+ "step": 859
+ },
+ {
+ "epoch": 11.94773519163763,
+ "grad_norm": 0.03515630215406418,
+ "learning_rate": 0.0005337004636555595,
+ "loss": 2.3085150718688965,
+ "step": 860
+ },
+ {
+ "epoch": 11.961672473867596,
+ "grad_norm": 0.034178491681814194,
+ "learning_rate": 0.0005335324784296768,
+ "loss": 2.3223443031311035,
+ "step": 861
+ },
+ {
+ "epoch": 11.975609756097562,
+ "grad_norm": 0.0340011864900589,
+ "learning_rate": 0.0005333643074679403,
+ "loss": 2.324476957321167,
+ "step": 862
+ },
+ {
+ "epoch": 11.989547038327526,
+ "grad_norm": 0.03569193184375763,
+ "learning_rate": 0.000533195950905842,
+ "loss": 2.3087520599365234,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.030978869646787643,
+ "learning_rate": 0.0005330274088790239,
+ "loss": 1.733755350112915,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 0.6196663975715637,
+ "eval_runtime": 38.4411,
+ "eval_samples_per_second": 63.526,
+ "eval_steps_per_second": 0.52,
+ "step": 864
+ },
+ {
+ "epoch": 12.013937282229966,
+ "grad_norm": 0.04311290383338928,
+ "learning_rate": 0.0005328586815232773,
+ "loss": 2.267500638961792,
+ "step": 865
+ },
+ {
+ "epoch": 12.02787456445993,
+ "grad_norm": 0.05809512361884117,
+ "learning_rate": 0.0005326897689745428,
+ "loss": 2.269824981689453,
+ "step": 866
+ },
+ {
+ "epoch": 12.041811846689896,
+ "grad_norm": 0.06641583144664764,
+ "learning_rate": 0.0005325206713689101,
+ "loss": 2.2579562664031982,
+ "step": 867
+ },
+ {
+ "epoch": 12.05574912891986,
+ "grad_norm": 0.06946069747209549,
+ "learning_rate": 0.0005323513888426181,
+ "loss": 2.2649731636047363,
+ "step": 868
+ },
+ {
+ "epoch": 12.069686411149826,
+ "grad_norm": 0.07457753270864487,
+ "learning_rate": 0.0005321819215320546,
+ "loss": 2.271296501159668,
+ "step": 869
+ },
+ {
+ "epoch": 12.08362369337979,
+ "grad_norm": 0.08557604998350143,
+ "learning_rate": 0.0005320122695737565,
+ "loss": 2.2977068424224854,
+ "step": 870
+ },
+ {
+ "epoch": 12.097560975609756,
+ "grad_norm": 0.07865381985902786,
+ "learning_rate": 0.0005318424331044094,
+ "loss": 2.2831926345825195,
+ "step": 871
+ },
+ {
+ "epoch": 12.111498257839722,
+ "grad_norm": 0.07406128942966461,
+ "learning_rate": 0.0005316724122608473,
+ "loss": 2.280620574951172,
+ "step": 872
+ },
+ {
+ "epoch": 12.125435540069686,
+ "grad_norm": 0.08649969846010208,
+ "learning_rate": 0.0005315022071800527,
+ "loss": 2.2639617919921875,
+ "step": 873
+ },
+ {
+ "epoch": 12.139372822299652,
+ "grad_norm": 0.08262167125940323,
+ "learning_rate": 0.0005313318179991574,
+ "loss": 2.271108627319336,
+ "step": 874
+ },
+ {
+ "epoch": 12.153310104529616,
+ "grad_norm": 0.0752791240811348,
+ "learning_rate": 0.0005311612448554402,
+ "loss": 2.273391008377075,
+ "step": 875
+ },
+ {
+ "epoch": 12.167247386759582,
+ "grad_norm": 0.07095267623662949,
+ "learning_rate": 0.0005309904878863293,
+ "loss": 2.276211977005005,
+ "step": 876
+ },
+ {
+ "epoch": 12.181184668989546,
+ "grad_norm": 0.061625171452760696,
+ "learning_rate": 0.0005308195472294001,
+ "loss": 2.2848544120788574,
+ "step": 877
+ },
+ {
+ "epoch": 12.195121951219512,
+ "grad_norm": 0.06082753837108612,
+ "learning_rate": 0.0005306484230223769,
+ "loss": 2.2795495986938477,
+ "step": 878
+ },
+ {
+ "epoch": 12.209059233449477,
+ "grad_norm": 0.0587560310959816,
+ "learning_rate": 0.000530477115403131,
+ "loss": 2.257300853729248,
+ "step": 879
+ },
+ {
+ "epoch": 12.222996515679442,
+ "grad_norm": 0.05483998730778694,
+ "learning_rate": 0.0005303056245096817,
+ "loss": 2.2889161109924316,
+ "step": 880
+ },
+ {
+ "epoch": 12.236933797909408,
+ "grad_norm": 0.05021355301141739,
+ "learning_rate": 0.0005301339504801967,
+ "loss": 2.2778401374816895,
+ "step": 881
+ },
+ {
+ "epoch": 12.250871080139373,
+ "grad_norm": 0.05440690740942955,
+ "learning_rate": 0.0005299620934529902,
+ "loss": 2.2760677337646484,
+ "step": 882
+ },
+ {
+ "epoch": 12.264808362369338,
+ "grad_norm": 0.05961807072162628,
+ "learning_rate": 0.0005297900535665244,
+ "loss": 2.276120185852051,
+ "step": 883
+ },
+ {
+ "epoch": 12.278745644599303,
+ "grad_norm": 0.054035380482673645,
+ "learning_rate": 0.0005296178309594087,
+ "loss": 2.255659341812134,
+ "step": 884
+ },
+ {
+ "epoch": 12.292682926829269,
+ "grad_norm": 0.05121298506855965,
+ "learning_rate": 0.0005294454257704,
+ "loss": 2.2852983474731445,
+ "step": 885
+ },
+ {
+ "epoch": 12.306620209059233,
+ "grad_norm": 0.04890505596995354,
+ "learning_rate": 0.0005292728381384018,
+ "loss": 2.2752151489257812,
+ "step": 886
+ },
+ {
+ "epoch": 12.320557491289199,
+ "grad_norm": 0.05019564554095268,
+ "learning_rate": 0.0005291000682024647,
+ "loss": 2.261242389678955,
+ "step": 887
+ },
+ {
+ "epoch": 12.334494773519165,
+ "grad_norm": 0.04824003204703331,
+ "learning_rate": 0.0005289271161017867,
+ "loss": 2.2752835750579834,
+ "step": 888
+ },
+ {
+ "epoch": 12.348432055749129,
+ "grad_norm": 0.04195769876241684,
+ "learning_rate": 0.0005287539819757119,
+ "loss": 2.2705702781677246,
+ "step": 889
+ },
+ {
+ "epoch": 12.362369337979095,
+ "grad_norm": 0.046239253133535385,
+ "learning_rate": 0.0005285806659637315,
+ "loss": 2.2981534004211426,
+ "step": 890
+ },
+ {
+ "epoch": 12.376306620209059,
+ "grad_norm": 0.04743665084242821,
+ "learning_rate": 0.000528407168205483,
+ "loss": 2.278078079223633,
+ "step": 891
+ },
+ {
+ "epoch": 12.390243902439025,
+ "grad_norm": 0.04690218344330788,
+ "learning_rate": 0.0005282334888407503,
+ "loss": 2.2809972763061523,
+ "step": 892
+ },
+ {
+ "epoch": 12.404181184668989,
+ "grad_norm": 0.0444699302315712,
+ "learning_rate": 0.000528059628009464,
+ "loss": 2.2702579498291016,
+ "step": 893
+ },
+ {
+ "epoch": 12.418118466898955,
+ "grad_norm": 0.04225282371044159,
+ "learning_rate": 0.0005278855858517003,
+ "loss": 2.2717671394348145,
+ "step": 894
+ },
+ {
+ "epoch": 12.43205574912892,
+ "grad_norm": 0.041407857090234756,
+ "learning_rate": 0.0005277113625076822,
+ "loss": 2.266977548599243,
+ "step": 895
+ },
+ {
+ "epoch": 12.445993031358885,
+ "grad_norm": 0.042014770209789276,
+ "learning_rate": 0.000527536958117778,
+ "loss": 2.269441604614258,
+ "step": 896
+ },
+ {
+ "epoch": 12.45993031358885,
+ "grad_norm": 0.04196929931640625,
+ "learning_rate": 0.0005273623728225022,
+ "loss": 2.246767997741699,
+ "step": 897
+ },
+ {
+ "epoch": 12.473867595818815,
+ "grad_norm": 0.04507727175951004,
+ "learning_rate": 0.0005271876067625153,
+ "loss": 2.2929835319519043,
+ "step": 898
+ },
+ {
+ "epoch": 12.487804878048781,
+ "grad_norm": 0.043129295110702515,
+ "learning_rate": 0.0005270126600786228,
+ "loss": 2.280632257461548,
+ "step": 899
+ },
+ {
+ "epoch": 12.501742160278745,
+ "grad_norm": 0.041876427829265594,
+ "learning_rate": 0.0005268375329117762,
+ "loss": 2.2524752616882324,
+ "step": 900
+ },
+ {
+ "epoch": 12.515679442508711,
+ "grad_norm": 0.04281412810087204,
+ "learning_rate": 0.0005266622254030724,
+ "loss": 2.278818130493164,
+ "step": 901
+ },
+ {
+ "epoch": 12.529616724738675,
+ "grad_norm": 0.040438197553157806,
+ "learning_rate": 0.0005264867376937534,
+ "loss": 2.2771482467651367,
+ "step": 902
+ },
+ {
+ "epoch": 12.543554006968641,
+ "grad_norm": 0.03930707275867462,
+ "learning_rate": 0.0005263110699252065,
+ "loss": 2.273127555847168,
+ "step": 903
+ },
+ {
+ "epoch": 12.557491289198607,
+ "grad_norm": 0.04181307926774025,
+ "learning_rate": 0.000526135222238964,
+ "loss": 2.2839956283569336,
+ "step": 904
+ },
+ {
+ "epoch": 12.571428571428571,
+ "grad_norm": 0.042597733438014984,
+ "learning_rate": 0.0005259591947767032,
+ "loss": 2.262939929962158,
+ "step": 905
+ },
+ {
+ "epoch": 12.585365853658537,
+ "grad_norm": 0.04178392142057419,
+ "learning_rate": 0.0005257829876802464,
+ "loss": 2.286794662475586,
+ "step": 906
+ },
+ {
+ "epoch": 12.599303135888501,
+ "grad_norm": 0.04041772708296776,
+ "learning_rate": 0.0005256066010915603,
+ "loss": 2.276432991027832,
+ "step": 907
+ },
+ {
+ "epoch": 12.613240418118467,
+ "grad_norm": 0.04161509871482849,
+ "learning_rate": 0.0005254300351527566,
+ "loss": 2.2779972553253174,
+ "step": 908
+ },
+ {
+ "epoch": 12.627177700348431,
+ "grad_norm": 0.04206471145153046,
+ "learning_rate": 0.000525253290006091,
+ "loss": 2.282811164855957,
+ "step": 909
+ },
+ {
+ "epoch": 12.641114982578397,
+ "grad_norm": 0.04001585766673088,
+ "learning_rate": 0.0005250763657939641,
+ "loss": 2.29434871673584,
+ "step": 910
+ },
+ {
+ "epoch": 12.655052264808361,
+ "grad_norm": 0.041886743158102036,
+ "learning_rate": 0.0005248992626589203,
+ "loss": 2.278651237487793,
+ "step": 911
+ },
+ {
+ "epoch": 12.668989547038327,
+ "grad_norm": 0.0404231883585453,
+ "learning_rate": 0.0005247219807436489,
+ "loss": 2.2875375747680664,
+ "step": 912
+ },
+ {
+ "epoch": 12.682926829268293,
+ "grad_norm": 0.037211328744888306,
+ "learning_rate": 0.000524544520190982,
+ "loss": 2.294013023376465,
+ "step": 913
+ },
+ {
+ "epoch": 12.696864111498257,
+ "grad_norm": 0.03906721621751785,
+ "learning_rate": 0.000524366881143897,
+ "loss": 2.2899856567382812,
+ "step": 914
+ },
+ {
+ "epoch": 12.710801393728223,
+ "grad_norm": 0.04206228628754616,
+ "learning_rate": 0.0005241890637455141,
+ "loss": 2.282346248626709,
+ "step": 915
+ },
+ {
+ "epoch": 12.724738675958188,
+ "grad_norm": 0.03915264084935188,
+ "learning_rate": 0.0005240110681390978,
+ "loss": 2.2995424270629883,
+ "step": 916
+ },
+ {
+ "epoch": 12.738675958188153,
+ "grad_norm": 0.03919649496674538,
+ "learning_rate": 0.0005238328944680558,
+ "loss": 2.282196044921875,
+ "step": 917
+ },
+ {
+ "epoch": 12.752613240418118,
+ "grad_norm": 0.039669446647167206,
+ "learning_rate": 0.0005236545428759394,
+ "loss": 2.2758240699768066,
+ "step": 918
+ },
+ {
+ "epoch": 12.766550522648084,
+ "grad_norm": 0.04075023531913757,
+ "learning_rate": 0.0005234760135064434,
+ "loss": 2.278747320175171,
+ "step": 919
+ },
+ {
+ "epoch": 12.78048780487805,
+ "grad_norm": 0.03815247863531113,
+ "learning_rate": 0.0005232973065034055,
+ "loss": 2.2989745140075684,
+ "step": 920
+ },
+ {
+ "epoch": 12.794425087108014,
+ "grad_norm": 0.039577171206474304,
+ "learning_rate": 0.0005231184220108069,
+ "loss": 2.278186321258545,
+ "step": 921
+ },
+ {
+ "epoch": 12.80836236933798,
+ "grad_norm": 0.04091718792915344,
+ "learning_rate": 0.0005229393601727713,
+ "loss": 2.3046107292175293,
+ "step": 922
+ },
+ {
+ "epoch": 12.822299651567944,
+ "grad_norm": 0.04034758731722832,
+ "learning_rate": 0.000522760121133566,
+ "loss": 2.2959580421447754,
+ "step": 923
+ },
+ {
+ "epoch": 12.83623693379791,
+ "grad_norm": 0.041219793260097504,
+ "learning_rate": 0.0005225807050376004,
+ "loss": 2.289950370788574,
+ "step": 924
+ },
+ {
+ "epoch": 12.850174216027874,
+ "grad_norm": 0.042124949395656586,
+ "learning_rate": 0.0005224011120294269,
+ "loss": 2.2865607738494873,
+ "step": 925
+ },
+ {
+ "epoch": 12.86411149825784,
+ "grad_norm": 0.04259328171610832,
+ "learning_rate": 0.0005222213422537401,
+ "loss": 2.2798972129821777,
+ "step": 926
+ },
+ {
+ "epoch": 12.878048780487806,
+ "grad_norm": 0.0413426011800766,
+ "learning_rate": 0.0005220413958553777,
+ "loss": 2.2765798568725586,
+ "step": 927
+ },
+ {
+ "epoch": 12.89198606271777,
+ "grad_norm": 0.04276851564645767,
+ "learning_rate": 0.0005218612729793188,
+ "loss": 2.292202949523926,
+ "step": 928
+ },
+ {
+ "epoch": 12.905923344947736,
+ "grad_norm": 0.038679834455251694,
+ "learning_rate": 0.0005216809737706856,
+ "loss": 2.2641711235046387,
+ "step": 929
+ },
+ {
+ "epoch": 12.9198606271777,
+ "grad_norm": 0.04027910903096199,
+ "learning_rate": 0.0005215004983747415,
+ "loss": 2.297112464904785,
+ "step": 930
+ },
+ {
+ "epoch": 12.933797909407666,
+ "grad_norm": 0.037091903388500214,
+ "learning_rate": 0.0005213198469368925,
+ "loss": 2.2731027603149414,
+ "step": 931
+ },
+ {
+ "epoch": 12.94773519163763,
+ "grad_norm": 0.0381062775850296,
+ "learning_rate": 0.0005211390196026861,
+ "loss": 2.276169538497925,
+ "step": 932
+ },
+ {
+ "epoch": 12.961672473867596,
+ "grad_norm": 0.03912157565355301,
+ "learning_rate": 0.0005209580165178117,
+ "loss": 2.2855257987976074,
+ "step": 933
+ },
+ {
+ "epoch": 12.975609756097562,
+ "grad_norm": 0.03726741299033165,
+ "learning_rate": 0.0005207768378281003,
+ "loss": 2.285484790802002,
+ "step": 934
+ },
+ {
+ "epoch": 12.989547038327526,
+ "grad_norm": 0.03863261640071869,
+ "learning_rate": 0.0005205954836795241,
+ "loss": 2.2770638465881348,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.03204738348722458,
+ "learning_rate": 0.000520413954218197,
+ "loss": 1.7078638076782227,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 0.6196639537811279,
+ "eval_runtime": 36.3518,
+ "eval_samples_per_second": 67.177,
+ "eval_steps_per_second": 0.55,
+ "step": 936
+ },
+ {
+ "epoch": 13.013937282229966,
+ "grad_norm": 0.04385007545351982,
+ "learning_rate": 0.0005202322495903739,
+ "loss": 2.2220354080200195,
+ "step": 937
+ },
+ {
+ "epoch": 13.02787456445993,
+ "grad_norm": 0.05723090469837189,
+ "learning_rate": 0.0005200503699424509,
+ "loss": 2.223271369934082,
+ "step": 938
+ },
+ {
+ "epoch": 13.041811846689896,
+ "grad_norm": 0.06027279794216156,
+ "learning_rate": 0.0005198683154209654,
+ "loss": 2.2302541732788086,
+ "step": 939
+ },
+ {
+ "epoch": 13.05574912891986,
+ "grad_norm": 0.06342783570289612,
+ "learning_rate": 0.0005196860861725952,
+ "loss": 2.2211854457855225,
+ "step": 940
+ },
+ {
+ "epoch": 13.069686411149826,
+ "grad_norm": 0.06265735626220703,
+ "learning_rate": 0.0005195036823441592,
+ "loss": 2.222750425338745,
+ "step": 941
+ },
+ {
+ "epoch": 13.08362369337979,
+ "grad_norm": 0.0661185085773468,
+ "learning_rate": 0.0005193211040826169,
+ "loss": 2.230656862258911,
+ "step": 942
+ },
+ {
+ "epoch": 13.097560975609756,
+ "grad_norm": 0.06665238738059998,
+ "learning_rate": 0.0005191383515350681,
+ "loss": 2.220534563064575,
+ "step": 943
+ },
+ {
+ "epoch": 13.111498257839722,
+ "grad_norm": 0.06432333588600159,
+ "learning_rate": 0.0005189554248487536,
+ "loss": 2.2317209243774414,
+ "step": 944
+ },
+ {
+ "epoch": 13.125435540069686,
+ "grad_norm": 0.057658061385154724,
+ "learning_rate": 0.0005187723241710539,
+ "loss": 2.20767879486084,
+ "step": 945
+ },
+ {
+ "epoch": 13.139372822299652,
+ "grad_norm": 0.06340344250202179,
+ "learning_rate": 0.0005185890496494899,
+ "loss": 2.240220546722412,
+ "step": 946
+ },
+ {
+ "epoch": 13.153310104529616,
+ "grad_norm": 0.0649016872048378,
+ "learning_rate": 0.0005184056014317225,
+ "loss": 2.2353672981262207,
+ "step": 947
+ },
+ {
+ "epoch": 13.167247386759582,
+ "grad_norm": 0.05792258679866791,
+ "learning_rate": 0.0005182219796655528,
+ "loss": 2.2480835914611816,
+ "step": 948
+ },
+ {
+ "epoch": 13.181184668989546,
+ "grad_norm": 0.059482429176568985,
+ "learning_rate": 0.0005180381844989214,
+ "loss": 2.2432656288146973,
+ "step": 949
+ },
+ {
+ "epoch": 13.195121951219512,
+ "grad_norm": 0.05838126689195633,
+ "learning_rate": 0.0005178542160799088,
+ "loss": 2.237567901611328,
+ "step": 950
+ },
+ {
+ "epoch": 13.209059233449477,
+ "grad_norm": 0.05699385702610016,
+ "learning_rate": 0.0005176700745567353,
+ "loss": 2.243746280670166,
+ "step": 951
+ },
+ {
+ "epoch": 13.222996515679442,
+ "grad_norm": 0.05618268996477127,
+ "learning_rate": 0.0005174857600777599,
+ "loss": 2.2216076850891113,
+ "step": 952
+ },
+ {
+ "epoch": 13.236933797909408,
+ "grad_norm": 0.05328221991658211,
+ "learning_rate": 0.0005173012727914816,
+ "loss": 2.2413382530212402,
+ "step": 953
+ },
+ {
+ "epoch": 13.250871080139373,
+ "grad_norm": 0.05254136770963669,
+ "learning_rate": 0.0005171166128465389,
+ "loss": 2.2317683696746826,
+ "step": 954
+ },
+ {
+ "epoch": 13.264808362369338,
+ "grad_norm": 0.05144176259636879,
+ "learning_rate": 0.0005169317803917083,
+ "loss": 2.2372474670410156,
+ "step": 955
+ },
+ {
+ "epoch": 13.278745644599303,
+ "grad_norm": 0.05258858576416969,
+ "learning_rate": 0.0005167467755759065,
+ "loss": 2.2383830547332764,
+ "step": 956
+ },
+ {
+ "epoch": 13.292682926829269,
+ "grad_norm": 0.0550001785159111,
+ "learning_rate": 0.0005165615985481881,
+ "loss": 2.2456729412078857,
+ "step": 957
+ },
+ {
+ "epoch": 13.306620209059233,
+ "grad_norm": 0.050276629626750946,
+ "learning_rate": 0.0005163762494577474,
+ "loss": 2.262298345565796,
+ "step": 958
+ },
+ {
+ "epoch": 13.320557491289199,
+ "grad_norm": 0.05388111621141434,
+ "learning_rate": 0.0005161907284539165,
+ "loss": 2.250800609588623,
+ "step": 959
+ },
+ {
+ "epoch": 13.334494773519165,
+ "grad_norm": 0.05154367536306381,
+ "learning_rate": 0.0005160050356861663,
+ "loss": 2.2442479133605957,
+ "step": 960
+ },
+ {
+ "epoch": 13.348432055749129,
+ "grad_norm": 0.04562186077237129,
+ "learning_rate": 0.0005158191713041063,
+ "loss": 2.237484931945801,
+ "step": 961
+ },
+ {
+ "epoch": 13.362369337979095,
+ "grad_norm": 0.049510203301906586,
+ "learning_rate": 0.0005156331354574838,
+ "loss": 2.243274688720703,
+ "step": 962
+ },
+ {
+ "epoch": 13.376306620209059,
+ "grad_norm": 0.050305187702178955,
+ "learning_rate": 0.0005154469282961847,
+ "loss": 2.2452855110168457,
+ "step": 963
+ },
+ {
+ "epoch": 13.390243902439025,
+ "grad_norm": 0.049128562211990356,
+ "learning_rate": 0.0005152605499702328,
+ "loss": 2.2562594413757324,
+ "step": 964
+ },
+ {
+ "epoch": 13.404181184668989,
+ "grad_norm": 0.04948648437857628,
+ "learning_rate": 0.0005150740006297896,
+ "loss": 2.2388229370117188,
+ "step": 965
+ },
+ {
+ "epoch": 13.418118466898955,
+ "grad_norm": 0.053290050476789474,
+ "learning_rate": 0.0005148872804251548,
+ "loss": 2.2601318359375,
+ "step": 966
+ },
+ {
+ "epoch": 13.43205574912892,
+ "grad_norm": 0.04839639738202095,
+ "learning_rate": 0.000514700389506765,
+ "loss": 2.2303178310394287,
+ "step": 967
+ },
+ {
+ "epoch": 13.445993031358885,
+ "grad_norm": 0.04883972555398941,
+ "learning_rate": 0.0005145133280251954,
+ "loss": 2.246448040008545,
+ "step": 968
+ },
+ {
+ "epoch": 13.45993031358885,
+ "grad_norm": 0.04747871682047844,
+ "learning_rate": 0.0005143260961311578,
+ "loss": 2.259640693664551,
+ "step": 969
+ },
+ {
+ "epoch": 13.473867595818815,
+ "grad_norm": 0.046724554151296616,
+ "learning_rate": 0.0005141386939755014,
+ "loss": 2.2453014850616455,
+ "step": 970
+ },
+ {
+ "epoch": 13.487804878048781,
+ "grad_norm": 0.045614756643772125,
+ "learning_rate": 0.0005139511217092129,
+ "loss": 2.2351949214935303,
+ "step": 971
+ },
+ {
+ "epoch": 13.501742160278745,
+ "grad_norm": 0.04794120043516159,
+ "learning_rate": 0.000513763379483416,
+ "loss": 2.2457003593444824,
+ "step": 972
+ },
+ {
+ "epoch": 13.515679442508711,
+ "grad_norm": 0.05043521523475647,
+ "learning_rate": 0.0005135754674493709,
+ "loss": 2.258542060852051,
+ "step": 973
+ },
+ {
+ "epoch": 13.529616724738675,
+ "grad_norm": 0.046207673847675323,
+ "learning_rate": 0.0005133873857584753,
+ "loss": 2.2370145320892334,
+ "step": 974
+ },
+ {
+ "epoch": 13.543554006968641,
+ "grad_norm": 0.04402166232466698,
+ "learning_rate": 0.0005131991345622629,
+ "loss": 2.2408246994018555,
+ "step": 975
+ },
+ {
+ "epoch": 13.557491289198607,
+ "grad_norm": 0.04337441921234131,
+ "learning_rate": 0.0005130107140124046,
+ "loss": 2.2634308338165283,
+ "step": 976
+ },
+ {
+ "epoch": 13.571428571428571,
+ "grad_norm": 0.047244030982255936,
+ "learning_rate": 0.0005128221242607072,
+ "loss": 2.2571523189544678,
+ "step": 977
+ },
+ {
+ "epoch": 13.585365853658537,
+ "grad_norm": 0.04867873340845108,
+ "learning_rate": 0.0005126333654591141,
+ "loss": 2.248501777648926,
+ "step": 978
+ },
+ {
+ "epoch": 13.599303135888501,
+ "grad_norm": 0.048512108623981476,
+ "learning_rate": 0.0005124444377597049,
+ "loss": 2.2579822540283203,
+ "step": 979
+ },
+ {
+ "epoch": 13.613240418118467,
+ "grad_norm": 0.04615626111626625,
+ "learning_rate": 0.0005122553413146951,
+ "loss": 2.2446889877319336,
+ "step": 980
+ },
+ {
+ "epoch": 13.627177700348431,
+ "grad_norm": 0.044876713305711746,
+ "learning_rate": 0.0005120660762764366,
+ "loss": 2.2439627647399902,
+ "step": 981
+ },
+ {
+ "epoch": 13.641114982578397,
+ "grad_norm": 0.046021413058042526,
+ "learning_rate": 0.0005118766427974166,
+ "loss": 2.262195587158203,
+ "step": 982
+ },
+ {
+ "epoch": 13.655052264808361,
+ "grad_norm": 0.04974699020385742,
+ "learning_rate": 0.0005116870410302582,
+ "loss": 2.2783303260803223,
+ "step": 983
+ },
+ {
+ "epoch": 13.668989547038327,
+ "grad_norm": 0.044128481298685074,
+ "learning_rate": 0.0005114972711277202,
+ "loss": 2.2566471099853516,
+ "step": 984
+ },
+ {
+ "epoch": 13.682926829268293,
+ "grad_norm": 0.042579326778650284,
+ "learning_rate": 0.0005113073332426968,
+ "loss": 2.2596194744110107,
+ "step": 985
+ },
+ {
+ "epoch": 13.696864111498257,
+ "grad_norm": 0.044022977352142334,
+ "learning_rate": 0.0005111172275282174,
+ "loss": 2.270303726196289,
+ "step": 986
+ },
+ {
+ "epoch": 13.710801393728223,
+ "grad_norm": 0.04324937239289284,
+ "learning_rate": 0.0005109269541374469,
+ "loss": 2.2393593788146973,
+ "step": 987
+ },
+ {
+ "epoch": 13.724738675958188,
+ "grad_norm": 0.04146691411733627,
+ "learning_rate": 0.000510736513223685,
+ "loss": 2.2541770935058594,
+ "step": 988
+ },
+ {
+ "epoch": 13.738675958188153,
+ "grad_norm": 0.04146251827478409,
+ "learning_rate": 0.0005105459049403665,
+ "loss": 2.260561943054199,
+ "step": 989
+ },
+ {
+ "epoch": 13.752613240418118,
+ "grad_norm": 0.042454298585653305,
+ "learning_rate": 0.0005103551294410614,
+ "loss": 2.2623369693756104,
+ "step": 990
+ },
+ {
+ "epoch": 13.766550522648084,
+ "grad_norm": 0.04376888647675514,
+ "learning_rate": 0.0005101641868794736,
+ "loss": 2.2560131549835205,
+ "step": 991
+ },
+ {
+ "epoch": 13.78048780487805,
+ "grad_norm": 0.04379274323582649,
+ "learning_rate": 0.0005099730774094423,
+ "loss": 2.2503037452697754,
+ "step": 992
+ },
+ {
+ "epoch": 13.794425087108014,
+ "grad_norm": 0.04411308094859123,
+ "learning_rate": 0.0005097818011849408,
+ "loss": 2.244288921356201,
+ "step": 993
+ },
+ {
+ "epoch": 13.80836236933798,
+ "grad_norm": 0.04043621942400932,
+ "learning_rate": 0.0005095903583600772,
+ "loss": 2.244035243988037,
+ "step": 994
+ },
+ {
+ "epoch": 13.822299651567944,
+ "grad_norm": 0.04722495377063751,
+ "learning_rate": 0.0005093987490890933,
+ "loss": 2.269280433654785,
+ "step": 995
+ },
+ {
+ "epoch": 13.83623693379791,
+ "grad_norm": 0.049322471022605896,
+ "learning_rate": 0.0005092069735263651,
+ "loss": 2.249361515045166,
+ "step": 996
+ },
+ {
+ "epoch": 13.850174216027874,
+ "grad_norm": 0.04808150604367256,
+ "learning_rate": 0.000509015031826403,
+ "loss": 2.255721092224121,
+ "step": 997
+ },
+ {
+ "epoch": 13.86411149825784,
+ "grad_norm": 0.044958360493183136,
+ "learning_rate": 0.0005088229241438509,
+ "loss": 2.2578060626983643,
+ "step": 998
+ },
+ {
+ "epoch": 13.878048780487806,
+ "grad_norm": 0.04442335292696953,
+ "learning_rate": 0.0005086306506334864,
+ "loss": 2.2553436756134033,
+ "step": 999
+ },
+ {
+ "epoch": 13.89198606271777,
+ "grad_norm": 0.0487419068813324,
+ "learning_rate": 0.0005084382114502208,
+ "loss": 2.2526695728302,
+ "step": 1000
+ },
+ {
+ "epoch": 13.905923344947736,
+ "grad_norm": 0.047398749738931656,
+ "learning_rate": 0.0005082456067490988,
+ "loss": 2.259551763534546,
+ "step": 1001
+ },
+ {
+ "epoch": 13.9198606271777,
+ "grad_norm": 0.04429299384355545,
+ "learning_rate": 0.0005080528366852987,
+ "loss": 2.270155906677246,
+ "step": 1002
+ },
+ {
+ "epoch": 13.933797909407666,
+ "grad_norm": 0.045255087316036224,
+ "learning_rate": 0.0005078599014141318,
+ "loss": 2.2554101943969727,
+ "step": 1003
+ },
+ {
+ "epoch": 13.94773519163763,
+ "grad_norm": 0.04559073969721794,
+ "learning_rate": 0.0005076668010910425,
+ "loss": 2.2913122177124023,
+ "step": 1004
+ },
+ {
+ "epoch": 13.961672473867596,
+ "grad_norm": 0.04300642013549805,
+ "learning_rate": 0.0005074735358716083,
+ "loss": 2.241891860961914,
+ "step": 1005
+ },
+ {
+ "epoch": 13.975609756097562,
+ "grad_norm": 0.04328060522675514,
+ "learning_rate": 0.0005072801059115394,
+ "loss": 2.2659969329833984,
+ "step": 1006
+ },
+ {
+ "epoch": 13.989547038327526,
+ "grad_norm": 0.0425153523683548,
+ "learning_rate": 0.000507086511366679,
+ "loss": 2.266413450241089,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.03479035571217537,
+ "learning_rate": 0.0005068927523930027,
+ "loss": 1.6806477308273315,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 0.6199555993080139,
+ "eval_runtime": 42.3013,
+ "eval_samples_per_second": 57.729,
+ "eval_steps_per_second": 0.473,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013937282229966,
+ "grad_norm": 0.04759897664189339,
+ "learning_rate": 0.0005066988291466184,
+ "loss": 2.1937670707702637,
+ "step": 1009
+ },
+ {
+ "epoch": 14.02787456445993,
+ "grad_norm": 0.06862346827983856,
+ "learning_rate": 0.0005065047417837669,
+ "loss": 2.2141411304473877,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041811846689896,
+ "grad_norm": 0.07168037444353104,
+ "learning_rate": 0.0005063104904608206,
+ "loss": 2.198908805847168,
+ "step": 1011
+ },
+ {
+ "epoch": 14.05574912891986,
+ "grad_norm": 0.06659573316574097,
+ "learning_rate": 0.0005061160753342843,
+ "loss": 2.218000888824463,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069686411149826,
+ "grad_norm": 0.06285326927900314,
+ "learning_rate": 0.0005059214965607948,
+ "loss": 2.1995139122009277,
+ "step": 1013
+ },
+ {
+ "epoch": 14.08362369337979,
+ "grad_norm": 0.061170000582933426,
+ "learning_rate": 0.0005057267542971207,
+ "loss": 2.2026236057281494,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097560975609756,
+ "grad_norm": 0.06091141700744629,
+ "learning_rate": 0.0005055318487001624,
+ "loss": 2.2087340354919434,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111498257839722,
+ "grad_norm": 0.05953513830900192,
+ "learning_rate": 0.0005053367799269518,
+ "loss": 2.1985390186309814,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125435540069686,
+ "grad_norm": 0.06126454845070839,
+ "learning_rate": 0.0005051415481346522,
+ "loss": 2.176772117614746,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139372822299652,
+ "grad_norm": 0.0675380751490593,
+ "learning_rate": 0.0005049461534805585,
+ "loss": 2.2045438289642334,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153310104529616,
+ "grad_norm": 0.07128442823886871,
+ "learning_rate": 0.0005047505961220964,
+ "loss": 2.197822332382202,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167247386759582,
+ "grad_norm": 0.06793799996376038,
+ "learning_rate": 0.0005045548762168231,
+ "loss": 2.1957449913024902,
+ "step": 1020
+ },
+ {
+ "epoch": 14.181184668989546,
+ "grad_norm": 0.05969219282269478,
+ "learning_rate": 0.0005043589939224266,
+ "loss": 2.206712245941162,
+ "step": 1021
+ },
+ {
+ "epoch": 14.195121951219512,
+ "grad_norm": 0.061422668397426605,
+ "learning_rate": 0.0005041629493967257,
+ "loss": 2.199829578399658,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209059233449477,
+ "grad_norm": 0.06352506577968597,
+ "learning_rate": 0.0005039667427976697,
+ "loss": 2.208404064178467,
+ "step": 1023
+ },
+ {
+ "epoch": 14.222996515679442,
+ "grad_norm": 0.06349361687898636,
+ "learning_rate": 0.0005037703742833391,
+ "loss": 2.2045750617980957,
+ "step": 1024
+ },
+ {
+ "epoch": 14.236933797909408,
+ "grad_norm": 0.05827466771006584,
+ "learning_rate": 0.0005035738440119442,
+ "loss": 2.204209566116333,
+ "step": 1025
+ },
+ {
+ "epoch": 14.250871080139373,
+ "grad_norm": 0.055201269686222076,
+ "learning_rate": 0.0005033771521418261,
+ "loss": 2.210240364074707,
+ "step": 1026
+ },
+ {
+ "epoch": 14.264808362369338,
+ "grad_norm": 0.05749988183379173,
+ "learning_rate": 0.0005031802988314557,
+ "loss": 2.2068967819213867,
+ "step": 1027
+ },
+ {
+ "epoch": 14.278745644599303,
+ "grad_norm": 0.061330124735832214,
+ "learning_rate": 0.0005029832842394342,
+ "loss": 2.194495439529419,
+ "step": 1028
+ },
+ {
+ "epoch": 14.292682926829269,
+ "grad_norm": 0.05682205408811569,
+ "learning_rate": 0.0005027861085244927,
+ "loss": 2.1934378147125244,
+ "step": 1029
+ },
+ {
+ "epoch": 14.306620209059233,
+ "grad_norm": 0.054082732647657394,
+ "learning_rate": 0.0005025887718454922,
+ "loss": 2.1993770599365234,
+ "step": 1030
+ },
+ {
+ "epoch": 14.320557491289199,
+ "grad_norm": 0.05460484325885773,
+ "learning_rate": 0.0005023912743614232,
+ "loss": 2.2270498275756836,
+ "step": 1031
+ },
+ {
+ "epoch": 14.334494773519165,
+ "grad_norm": 0.05222999304533005,
+ "learning_rate": 0.0005021936162314058,
+ "loss": 2.1926186084747314,
+ "step": 1032
+ },
+ {
+ "epoch": 14.348432055749129,
+ "grad_norm": 0.04854818806052208,
+ "learning_rate": 0.0005019957976146898,
+ "loss": 2.209700584411621,
+ "step": 1033
+ },
+ {
+ "epoch": 14.362369337979095,
+ "grad_norm": 0.051000695675611496,
+ "learning_rate": 0.0005017978186706538,
+ "loss": 2.207035541534424,
+ "step": 1034
+ },
+ {
+ "epoch": 14.376306620209059,
+ "grad_norm": 0.05035366490483284,
+ "learning_rate": 0.0005015996795588062,
+ "loss": 2.227447032928467,
+ "step": 1035
+ },
+ {
+ "epoch": 14.390243902439025,
+ "grad_norm": 0.048412274569272995,
+ "learning_rate": 0.0005014013804387838,
+ "loss": 2.229435443878174,
+ "step": 1036
+ },
+ {
+ "epoch": 14.404181184668989,
+ "grad_norm": 0.04643386974930763,
+ "learning_rate": 0.0005012029214703529,
+ "loss": 2.212726593017578,
+ "step": 1037
+ },
+ {
+ "epoch": 14.418118466898955,
+ "grad_norm": 0.05282546207308769,
+ "learning_rate": 0.000501004302813408,
+ "loss": 2.2133121490478516,
+ "step": 1038
+ },
+ {
+ "epoch": 14.43205574912892,
+ "grad_norm": 0.04976656660437584,
+ "learning_rate": 0.0005008055246279727,
+ "loss": 2.222738265991211,
+ "step": 1039
+ },
+ {
+ "epoch": 14.445993031358885,
+ "grad_norm": 0.04937833175063133,
+ "learning_rate": 0.000500606587074199,
+ "loss": 2.2278215885162354,
+ "step": 1040
+ },
+ {
+ "epoch": 14.45993031358885,
+ "grad_norm": 0.05218666046857834,
+ "learning_rate": 0.0005004074903123674,
+ "loss": 2.2277817726135254,
+ "step": 1041
+ },
+ {
+ "epoch": 14.473867595818815,
+ "grad_norm": 0.05176419019699097,
+ "learning_rate": 0.0005002082345028864,
+ "loss": 2.231154203414917,
+ "step": 1042
+ },
+ {
+ "epoch": 14.487804878048781,
+ "grad_norm": 0.049131155014038086,
+ "learning_rate": 0.0005000088198062929,
+ "loss": 2.2321465015411377,
+ "step": 1043
+ },
+ {
+ "epoch": 14.501742160278745,
+ "grad_norm": 0.04980473965406418,
+ "learning_rate": 0.0004998092463832516,
+ "loss": 2.191263198852539,
+ "step": 1044
+ },
+ {
+ "epoch": 14.515679442508711,
+ "grad_norm": 0.048349328339099884,
+ "learning_rate": 0.0004996095143945554,
+ "loss": 2.2167882919311523,
+ "step": 1045
+ },
+ {
+ "epoch": 14.529616724738675,
+ "grad_norm": 0.04662036523222923,
+ "learning_rate": 0.0004994096240011246,
+ "loss": 2.213564395904541,
+ "step": 1046
+ },
+ {
+ "epoch": 14.543554006968641,
+ "grad_norm": 0.04783051833510399,
+ "learning_rate": 0.0004992095753640072,
+ "loss": 2.225752592086792,
+ "step": 1047
+ },
+ {
+ "epoch": 14.557491289198607,
+ "grad_norm": 0.05093488097190857,
+ "learning_rate": 0.0004990093686443791,
+ "loss": 2.2382640838623047,
+ "step": 1048
+ },
+ {
+ "epoch": 14.571428571428571,
+ "grad_norm": 0.05354484170675278,
+ "learning_rate": 0.000498809004003543,
+ "loss": 2.226134777069092,
+ "step": 1049
+ },
+ {
+ "epoch": 14.585365853658537,
+ "grad_norm": 0.04998788982629776,
+ "learning_rate": 0.0004986084816029291,
+ "loss": 2.2372093200683594,
+ "step": 1050
+ },
+ {
+ "epoch": 14.599303135888501,
+ "grad_norm": 0.04952755197882652,
+ "learning_rate": 0.0004984078016040946,
+ "loss": 2.232860565185547,
+ "step": 1051
+ },
+ {
+ "epoch": 14.613240418118467,
+ "grad_norm": 0.04750008508563042,
+ "learning_rate": 0.000498206964168724,
+ "loss": 2.223733901977539,
+ "step": 1052
+ },
+ {
+ "epoch": 14.627177700348431,
+ "grad_norm": 0.04636282101273537,
+ "learning_rate": 0.000498005969458628,
+ "loss": 2.227602958679199,
+ "step": 1053
+ },
+ {
+ "epoch": 14.641114982578397,
+ "grad_norm": 0.0465775765478611,
+ "learning_rate": 0.0004978048176357447,
+ "loss": 2.228397846221924,
+ "step": 1054
+ },
+ {
+ "epoch": 14.655052264808361,
+ "grad_norm": 0.04467611759901047,
+ "learning_rate": 0.0004976035088621385,
+ "loss": 2.2124547958374023,
+ "step": 1055
+ },
+ {
+ "epoch": 14.668989547038327,
+ "grad_norm": 0.04734990745782852,
+ "learning_rate": 0.0004974020433000003,
+ "loss": 2.2278337478637695,
+ "step": 1056
+ },
+ {
+ "epoch": 14.682926829268293,
+ "grad_norm": 0.048105571419000626,
+ "learning_rate": 0.000497200421111647,
+ "loss": 2.2506489753723145,
+ "step": 1057
+ },
+ {
+ "epoch": 14.696864111498257,
+ "grad_norm": 0.04658956825733185,
+ "learning_rate": 0.0004969986424595221,
+ "loss": 2.2176156044006348,
+ "step": 1058
+ },
+ {
+ "epoch": 14.710801393728223,
+ "grad_norm": 0.04707225784659386,
+ "learning_rate": 0.0004967967075061949,
+ "loss": 2.235560894012451,
+ "step": 1059
+ },
+ {
+ "epoch": 14.724738675958188,
+ "grad_norm": 0.04652702435851097,
+ "learning_rate": 0.0004965946164143609,
+ "loss": 2.2421717643737793,
+ "step": 1060
+ },
+ {
+ "epoch": 14.738675958188153,
+ "grad_norm": 0.045091014355421066,
+ "learning_rate": 0.0004963923693468413,
+ "loss": 2.233527183532715,
+ "step": 1061
+ },
+ {
+ "epoch": 14.752613240418118,
+ "grad_norm": 0.0467996746301651,
+ "learning_rate": 0.0004961899664665827,
+ "loss": 2.208993673324585,
+ "step": 1062
+ },
+ {
+ "epoch": 14.766550522648084,
+ "grad_norm": 0.04628554731607437,
+ "learning_rate": 0.0004959874079366576,
+ "loss": 2.230579376220703,
+ "step": 1063
+ },
+ {
+ "epoch": 14.78048780487805,
+ "grad_norm": 0.04599257931113243,
+ "learning_rate": 0.0004957846939202637,
+ "loss": 2.2343482971191406,
+ "step": 1064
+ },
+ {
+ "epoch": 14.794425087108014,
+ "grad_norm": 0.045816246420145035,
+ "learning_rate": 0.000495581824580724,
+ "loss": 2.242190361022949,
+ "step": 1065
+ },
+ {
+ "epoch": 14.80836236933798,
+ "grad_norm": 0.04708870127797127,
+ "learning_rate": 0.0004953788000814866,
+ "loss": 2.2468795776367188,
+ "step": 1066
+ },
+ {
+ "epoch": 14.822299651567944,
+ "grad_norm": 0.049605369567871094,
+ "learning_rate": 0.000495175620586125,
+ "loss": 2.21968412399292,
+ "step": 1067
+ },
+ {
+ "epoch": 14.83623693379791,
+ "grad_norm": 0.044056523591279984,
+ "learning_rate": 0.0004949722862583368,
+ "loss": 2.2316298484802246,
+ "step": 1068
+ },
+ {
+ "epoch": 14.850174216027874,
+ "grad_norm": 0.042938072234392166,
+ "learning_rate": 0.000494768797261945,
+ "loss": 2.252958059310913,
+ "step": 1069
+ },
+ {
+ "epoch": 14.86411149825784,
+ "grad_norm": 0.04511357098817825,
+ "learning_rate": 0.000494565153760897,
+ "loss": 2.2274842262268066,
+ "step": 1070
+ },
+ {
+ "epoch": 14.878048780487806,
+ "grad_norm": 0.04632679745554924,
+ "learning_rate": 0.0004943613559192648,
+ "loss": 2.2324767112731934,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89198606271777,
+ "grad_norm": 0.045614346861839294,
+ "learning_rate": 0.0004941574039012444,
+ "loss": 2.2428746223449707,
+ "step": 1072
+ },
+ {
+ "epoch": 14.905923344947736,
+ "grad_norm": 0.04592366889119148,
+ "learning_rate": 0.0004939532978711566,
+ "loss": 2.2330827713012695,
+ "step": 1073
+ },
+ {
+ "epoch": 14.9198606271777,
+ "grad_norm": 0.04424305632710457,
+ "learning_rate": 0.0004937490379934456,
+ "loss": 2.2334916591644287,
+ "step": 1074
+ },
+ {
+ "epoch": 14.933797909407666,
+ "grad_norm": 0.0463118739426136,
+ "learning_rate": 0.00049354462443268,
+ "loss": 2.2362606525421143,
+ "step": 1075
+ },
+ {
+ "epoch": 14.94773519163763,
+ "grad_norm": 0.04408831149339676,
+ "learning_rate": 0.0004933400573535521,
+ "loss": 2.2407727241516113,
+ "step": 1076
+ },
+ {
+ "epoch": 14.961672473867596,
+ "grad_norm": 0.04300303012132645,
+ "learning_rate": 0.000493135336920878,
+ "loss": 2.222532272338867,
+ "step": 1077
+ },
+ {
+ "epoch": 14.975609756097562,
+ "grad_norm": 0.04180522635579109,
+ "learning_rate": 0.0004929304632995973,
+ "loss": 2.242893695831299,
+ "step": 1078
+ },
+ {
+ "epoch": 14.989547038327526,
+ "grad_norm": 0.043276574462652206,
+ "learning_rate": 0.0004927254366547727,
+ "loss": 2.2241783142089844,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.036254994571208954,
+ "learning_rate": 0.0004925202571515908,
+ "loss": 1.6649963855743408,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 0.6207222938537598,
+ "eval_runtime": 37.3466,
+ "eval_samples_per_second": 65.388,
+ "eval_steps_per_second": 0.536,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013937282229966,
+ "grad_norm": 0.045301277190446854,
+ "learning_rate": 0.0004923149249553608,
+ "loss": 2.184032917022705,
+ "step": 1081
+ },
+ {
+ "epoch": 15.02787456445993,
+ "grad_norm": 0.05988018214702606,
+ "learning_rate": 0.0004921094402315152,
+ "loss": 2.1630473136901855,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041811846689896,
+ "grad_norm": 0.06664786487817764,
+ "learning_rate": 0.0004919038031456093,
+ "loss": 2.172067642211914,
+ "step": 1083
+ },
+ {
+ "epoch": 15.05574912891986,
+ "grad_norm": 0.06994126737117767,
+ "learning_rate": 0.0004916980138633213,
+ "loss": 2.185060501098633,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069686411149826,
+ "grad_norm": 0.07145395129919052,
+ "learning_rate": 0.0004914920725504518,
+ "loss": 2.173717498779297,
+ "step": 1085
+ },
+ {
+ "epoch": 15.08362369337979,
+ "grad_norm": 0.07037318497896194,
+ "learning_rate": 0.000491285979372924,
+ "loss": 2.1818294525146484,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097560975609756,
+ "grad_norm": 0.07752140611410141,
+ "learning_rate": 0.0004910797344967834,
+ "loss": 2.179530620574951,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111498257839722,
+ "grad_norm": 0.07689100503921509,
+ "learning_rate": 0.000490873338088198,
+ "loss": 2.167066812515259,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125435540069686,
+ "grad_norm": 0.07060840725898743,
+ "learning_rate": 0.0004906667903134573,
+ "loss": 2.166823387145996,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139372822299652,
+ "grad_norm": 0.07528708130121231,
+ "learning_rate": 0.0004904600913389735,
+ "loss": 2.1838769912719727,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153310104529616,
+ "grad_norm": 0.07452721893787384,
+ "learning_rate": 0.0004902532413312799,
+ "loss": 2.1846580505371094,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167247386759582,
+ "grad_norm": 0.08076248317956924,
+ "learning_rate": 0.0004900462404570321,
+ "loss": 2.1811747550964355,
+ "step": 1092
+ },
+ {
+ "epoch": 15.181184668989546,
+ "grad_norm": 0.07249059528112411,
+ "learning_rate": 0.0004898390888830067,
+ "loss": 2.187530279159546,
+ "step": 1093
+ },
+ {
+ "epoch": 15.195121951219512,
+ "grad_norm": 0.06610925495624542,
+ "learning_rate": 0.0004896317867761022,
+ "loss": 2.1889264583587646,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209059233449477,
+ "grad_norm": 0.07099732756614685,
+ "learning_rate": 0.000489424334303338,
+ "loss": 2.188560962677002,
+ "step": 1095
+ },
+ {
+ "epoch": 15.222996515679442,
+ "grad_norm": 0.0737202987074852,
+ "learning_rate": 0.0004892167316318548,
+ "loss": 2.186715841293335,
+ "step": 1096
+ },
+ {
+ "epoch": 15.236933797909408,
+ "grad_norm": 0.06986237317323685,
+ "learning_rate": 0.0004890089789289147,
+ "loss": 2.1962318420410156,
+ "step": 1097
+ },
+ {
+ "epoch": 15.250871080139373,
+ "grad_norm": 0.07112278789281845,
+ "learning_rate": 0.0004888010763618997,
+ "loss": 2.194401502609253,
+ "step": 1098
+ },
+ {
+ "epoch": 15.264808362369338,
+ "grad_norm": 0.06746342778205872,
+ "learning_rate": 0.0004885930240983136,
+ "loss": 2.188718795776367,
+ "step": 1099
+ },
+ {
+ "epoch": 15.278745644599303,
+ "grad_norm": 0.06471215933561325,
+ "learning_rate": 0.0004883848223057801,
+ "loss": 2.198849678039551,
+ "step": 1100
+ },
+ {
+ "epoch": 15.292682926829269,
+ "grad_norm": 0.05913659557700157,
+ "learning_rate": 0.00048817647115204386,
+ "loss": 2.183661937713623,
+ "step": 1101
+ },
+ {
+ "epoch": 15.306620209059233,
+ "grad_norm": 0.060666151344776154,
+ "learning_rate": 0.00048796797080496936,
+ "loss": 2.1805803775787354,
+ "step": 1102
+ },
+ {
+ "epoch": 15.320557491289199,
+ "grad_norm": 0.06026238948106766,
+ "learning_rate": 0.00048775932143254176,
+ "loss": 2.1778993606567383,
+ "step": 1103
+ },
+ {
+ "epoch": 15.334494773519165,
+ "grad_norm": 0.054371971637010574,
+ "learning_rate": 0.0004875505232028661,
+ "loss": 2.193100690841675,
+ "step": 1104
+ },
+ {
+ "epoch": 15.348432055749129,
+ "grad_norm": 0.051084667444229126,
+ "learning_rate": 0.0004873415762841672,
+ "loss": 2.1867239475250244,
+ "step": 1105
+ },
+ {
+ "epoch": 15.362369337979095,
+ "grad_norm": 0.05281403660774231,
+ "learning_rate": 0.00048713248084478986,
+ "loss": 2.1998157501220703,
+ "step": 1106
+ },
+ {
+ "epoch": 15.376306620209059,
+ "grad_norm": 0.04957163333892822,
+ "learning_rate": 0.0004869232370531986,
+ "loss": 2.1781673431396484,
+ "step": 1107
+ },
+ {
+ "epoch": 15.390243902439025,
+ "grad_norm": 0.04794200882315636,
+ "learning_rate": 0.0004867138450779773,
+ "loss": 2.1990952491760254,
+ "step": 1108
+ },
+ {
+ "epoch": 15.404181184668989,
+ "grad_norm": 0.05102508142590523,
+ "learning_rate": 0.0004865043050878293,
+ "loss": 2.199371814727783,
+ "step": 1109
+ },
+ {
+ "epoch": 15.418118466898955,
+ "grad_norm": 0.049935199320316315,
+ "learning_rate": 0.0004862946172515771,
+ "loss": 2.191676616668701,
+ "step": 1110
+ },
+ {
+ "epoch": 15.43205574912892,
+ "grad_norm": 0.05205542966723442,
+ "learning_rate": 0.0004860847817381625,
+ "loss": 2.2015931606292725,
+ "step": 1111
+ },
+ {
+ "epoch": 15.445993031358885,
+ "grad_norm": 0.051782310009002686,
+ "learning_rate": 0.0004858747987166463,
+ "loss": 2.200479030609131,
+ "step": 1112
+ },
+ {
+ "epoch": 15.45993031358885,
+ "grad_norm": 0.04914203658699989,
+ "learning_rate": 0.00048566466835620774,
+ "loss": 2.19816517829895,
+ "step": 1113
+ },
+ {
+ "epoch": 15.473867595818815,
+ "grad_norm": 0.04609949141740799,
+ "learning_rate": 0.0004854543908261453,
+ "loss": 2.1905436515808105,
+ "step": 1114
+ },
+ {
+ "epoch": 15.487804878048781,
+ "grad_norm": 0.04916610196232796,
+ "learning_rate": 0.0004852439662958756,
+ "loss": 2.203505516052246,
+ "step": 1115
+ },
+ {
+ "epoch": 15.501742160278745,
+ "grad_norm": 0.04806613177061081,
+ "learning_rate": 0.000485033394934934,
+ "loss": 2.2004809379577637,
+ "step": 1116
+ },
+ {
+ "epoch": 15.515679442508711,
+ "grad_norm": 0.04937082529067993,
+ "learning_rate": 0.000484822676912974,
+ "loss": 2.1941723823547363,
+ "step": 1117
+ },
+ {
+ "epoch": 15.529616724738675,
+ "grad_norm": 0.049360860139131546,
+ "learning_rate": 0.0004846118123997674,
+ "loss": 2.1975173950195312,
+ "step": 1118
+ },
+ {
+ "epoch": 15.543554006968641,
+ "grad_norm": 0.04772219434380531,
+ "learning_rate": 0.00048440080156520387,
+ "loss": 2.211244583129883,
+ "step": 1119
+ },
+ {
+ "epoch": 15.557491289198607,
+ "grad_norm": 0.04961530491709709,
+ "learning_rate": 0.0004841896445792909,
+ "loss": 2.191709041595459,
+ "step": 1120
+ },
+ {
+ "epoch": 15.571428571428571,
+ "grad_norm": 0.049396563321352005,
+ "learning_rate": 0.000483978341612154,
+ "loss": 2.2178797721862793,
+ "step": 1121
+ },
+ {
+ "epoch": 15.585365853658537,
+ "grad_norm": 0.0474911704659462,
+ "learning_rate": 0.0004837668928340362,
+ "loss": 2.1883950233459473,
+ "step": 1122
+ },
+ {
+ "epoch": 15.599303135888501,
+ "grad_norm": 0.0497126504778862,
+ "learning_rate": 0.0004835552984152978,
+ "loss": 2.194390296936035,
+ "step": 1123
+ },
+ {
+ "epoch": 15.613240418118467,
+ "grad_norm": 0.04819052666425705,
+ "learning_rate": 0.00048334355852641664,
+ "loss": 2.2060859203338623,
+ "step": 1124
+ },
+ {
+ "epoch": 15.627177700348431,
+ "grad_norm": 0.048422664403915405,
+ "learning_rate": 0.0004831316733379879,
+ "loss": 2.203671932220459,
+ "step": 1125
+ },
+ {
+ "epoch": 15.641114982578397,
+ "grad_norm": 0.0464651882648468,
+ "learning_rate": 0.0004829196430207235,
+ "loss": 2.193103313446045,
+ "step": 1126
+ },
+ {
+ "epoch": 15.655052264808361,
+ "grad_norm": 0.04777771607041359,
+ "learning_rate": 0.00048270746774545237,
+ "loss": 2.190608501434326,
+ "step": 1127
+ },
+ {
+ "epoch": 15.668989547038327,
+ "grad_norm": 0.048422545194625854,
+ "learning_rate": 0.0004824951476831204,
+ "loss": 2.191826105117798,
+ "step": 1128
+ },
+ {
+ "epoch": 15.682926829268293,
+ "grad_norm": 0.04907011240720749,
+ "learning_rate": 0.00048228268300479015,
+ "loss": 2.2020134925842285,
+ "step": 1129
+ },
+ {
+ "epoch": 15.696864111498257,
+ "grad_norm": 0.04749045521020889,
+ "learning_rate": 0.0004820700738816403,
+ "loss": 2.1956100463867188,
+ "step": 1130
+ },
+ {
+ "epoch": 15.710801393728223,
+ "grad_norm": 0.04741237685084343,
+ "learning_rate": 0.0004818573204849664,
+ "loss": 2.1953983306884766,
+ "step": 1131
+ },
+ {
+ "epoch": 15.724738675958188,
+ "grad_norm": 0.048426248133182526,
+ "learning_rate": 0.00048164442298617987,
+ "loss": 2.1906962394714355,
+ "step": 1132
+ },
+ {
+ "epoch": 15.738675958188153,
+ "grad_norm": 0.04688018932938576,
+ "learning_rate": 0.00048143138155680844,
+ "loss": 2.2023704051971436,
+ "step": 1133
+ },
+ {
+ "epoch": 15.752613240418118,
+ "grad_norm": 0.04573274403810501,
+ "learning_rate": 0.0004812181963684958,
+ "loss": 2.1997122764587402,
+ "step": 1134
+ },
+ {
+ "epoch": 15.766550522648084,
+ "grad_norm": 0.04500049352645874,
+ "learning_rate": 0.00048100486759300134,
+ "loss": 2.203868865966797,
+ "step": 1135
+ },
+ {
+ "epoch": 15.78048780487805,
+ "grad_norm": 0.046841904520988464,
+ "learning_rate": 0.00048079139540220024,
+ "loss": 2.2186760902404785,
+ "step": 1136
+ },
+ {
+ "epoch": 15.794425087108014,
+ "grad_norm": 0.04670709744095802,
+ "learning_rate": 0.0004805777799680831,
+ "loss": 2.2019705772399902,
+ "step": 1137
+ },
+ {
+ "epoch": 15.80836236933798,
+ "grad_norm": 0.04602878540754318,
+ "learning_rate": 0.0004803640214627561,
+ "loss": 2.21022891998291,
+ "step": 1138
+ },
+ {
+ "epoch": 15.822299651567944,
+ "grad_norm": 0.045200031250715256,
+ "learning_rate": 0.0004801501200584406,
+ "loss": 2.2007641792297363,
+ "step": 1139
+ },
+ {
+ "epoch": 15.83623693379791,
+ "grad_norm": 0.04749643802642822,
+ "learning_rate": 0.000479936075927473,
+ "loss": 2.2098441123962402,
+ "step": 1140
+ },
+ {
+ "epoch": 15.850174216027874,
+ "grad_norm": 0.04594074562191963,
+ "learning_rate": 0.000479721889242305,
+ "loss": 2.204615354537964,
+ "step": 1141
+ },
+ {
+ "epoch": 15.86411149825784,
+ "grad_norm": 0.04540146514773369,
+ "learning_rate": 0.0004795075601755027,
+ "loss": 2.2012791633605957,
+ "step": 1142
+ },
+ {
+ "epoch": 15.878048780487806,
+ "grad_norm": 0.04618830978870392,
+ "learning_rate": 0.00047929308889974737,
+ "loss": 2.1914544105529785,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89198606271777,
+ "grad_norm": 0.0450817234814167,
+ "learning_rate": 0.0004790784755878346,
+ "loss": 2.200557231903076,
+ "step": 1144
+ },
+ {
+ "epoch": 15.905923344947736,
+ "grad_norm": 0.04639074578881264,
+ "learning_rate": 0.00047886372041267434,
+ "loss": 2.204821825027466,
+ "step": 1145
+ },
+ {
+ "epoch": 15.9198606271777,
+ "grad_norm": 0.04546049237251282,
+ "learning_rate": 0.0004786488235472909,
+ "loss": 2.213542938232422,
+ "step": 1146
+ },
+ {
+ "epoch": 15.933797909407666,
+ "grad_norm": 0.04436152055859566,
+ "learning_rate": 0.0004784337851648231,
+ "loss": 2.1992855072021484,
+ "step": 1147
+ },
+ {
+ "epoch": 15.94773519163763,
+ "grad_norm": 0.04665682092308998,
+ "learning_rate": 0.0004782186054385233,
+ "loss": 2.211052417755127,
+ "step": 1148
+ },
+ {
+ "epoch": 15.961672473867596,
+ "grad_norm": 0.04532767832279205,
+ "learning_rate": 0.0004780032845417579,
+ "loss": 2.2086901664733887,
+ "step": 1149
+ },
+ {
+ "epoch": 15.975609756097562,
+ "grad_norm": 0.04679917171597481,
+ "learning_rate": 0.000477787822648007,
+ "loss": 2.1904289722442627,
+ "step": 1150
+ },
+ {
+ "epoch": 15.989547038327526,
+ "grad_norm": 0.04696613550186157,
+ "learning_rate": 0.00047757221993086443,
+ "loss": 2.17523193359375,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.03984897583723068,
+ "learning_rate": 0.00047735647656403754,
+ "loss": 1.6456931829452515,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 0.6217544674873352,
+ "eval_runtime": 36.2031,
+ "eval_samples_per_second": 67.453,
+ "eval_steps_per_second": 0.552,
+ "step": 1152
+ },
+ {
+ "epoch": 16.013937282229964,
+ "grad_norm": 0.048258837312459946,
+ "learning_rate": 0.0004771405927213467,
+ "loss": 2.149430751800537,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027874564459932,
+ "grad_norm": 0.059622205793857574,
+ "learning_rate": 0.0004769245685767255,
+ "loss": 2.146239757537842,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041811846689896,
+ "grad_norm": 0.06228978559374809,
+ "learning_rate": 0.00047670840430422113,
+ "loss": 2.1373820304870605,
+ "step": 1155
+ },
+ {
+ "epoch": 16.05574912891986,
+ "grad_norm": 0.058429088443517685,
+ "learning_rate": 0.0004764921000779928,
+ "loss": 2.153956413269043,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069686411149824,
+ "grad_norm": 0.0544302761554718,
+ "learning_rate": 0.0004762756560723131,
+ "loss": 2.1617636680603027,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083623693379792,
+ "grad_norm": 0.050771284848451614,
+ "learning_rate": 0.0004760590724615671,
+ "loss": 2.134815216064453,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097560975609756,
+ "grad_norm": 0.05482947453856468,
+ "learning_rate": 0.0004758423494202522,
+ "loss": 2.140288829803467,
+ "step": 1159
+ },
+ {
+ "epoch": 16.11149825783972,
+ "grad_norm": 0.06205987557768822,
+ "learning_rate": 0.0004756254871229782,
+ "loss": 2.1369926929473877,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125435540069688,
+ "grad_norm": 0.060936298221349716,
+ "learning_rate": 0.00047540848574446724,
+ "loss": 2.1448073387145996,
+ "step": 1161
+ },
+ {
+ "epoch": 16.139372822299652,
+ "grad_norm": 0.05571967735886574,
+ "learning_rate": 0.0004751913454595535,
+ "loss": 2.1435866355895996,
+ "step": 1162
+ },
+ {
+ "epoch": 16.153310104529616,
+ "grad_norm": 0.0552542470395565,
+ "learning_rate": 0.0004749740664431828,
+ "loss": 2.149778366088867,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16724738675958,
+ "grad_norm": 0.05414848402142525,
+ "learning_rate": 0.000474756648870413,
+ "loss": 2.149887800216675,
+ "step": 1164
+ },
+ {
+ "epoch": 16.181184668989548,
+ "grad_norm": 0.05441379174590111,
+ "learning_rate": 0.0004745390929164134,
+ "loss": 2.15389347076416,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195121951219512,
+ "grad_norm": 0.05403896048665047,
+ "learning_rate": 0.0004743213987564651,
+ "loss": 2.1331732273101807,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209059233449477,
+ "grad_norm": 0.054594095796346664,
+ "learning_rate": 0.0004741035665659603,
+ "loss": 2.158886671066284,
+ "step": 1167
+ },
+ {
+ "epoch": 16.222996515679444,
+ "grad_norm": 0.06188303232192993,
+ "learning_rate": 0.00047388559652040236,
+ "loss": 2.1471951007843018,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23693379790941,
+ "grad_norm": 0.062315408140420914,
+ "learning_rate": 0.0004736674887954059,
+ "loss": 2.147031307220459,
+ "step": 1169
+ },
+ {
+ "epoch": 16.250871080139373,
+ "grad_norm": 0.06116636097431183,
+ "learning_rate": 0.0004734492435666963,
+ "loss": 2.153916358947754,
+ "step": 1170
+ },
+ {
+ "epoch": 16.264808362369337,
+ "grad_norm": 0.05576318874955177,
+ "learning_rate": 0.0004732308610101099,
+ "loss": 2.1545660495758057,
+ "step": 1171
+ },
+ {
+ "epoch": 16.278745644599304,
+ "grad_norm": 0.05602003261446953,
+ "learning_rate": 0.00047301234130159346,
+ "loss": 2.1588096618652344,
+ "step": 1172
+ },
+ {
+ "epoch": 16.29268292682927,
+ "grad_norm": 0.05946209281682968,
+ "learning_rate": 0.00047279368461720445,
+ "loss": 2.1761999130249023,
+ "step": 1173
+ },
+ {
+ "epoch": 16.306620209059233,
+ "grad_norm": 0.062074463814496994,
+ "learning_rate": 0.0004725748911331106,
+ "loss": 2.168569326400757,
+ "step": 1174
+ },
+ {
+ "epoch": 16.320557491289197,
+ "grad_norm": 0.05756473168730736,
+ "learning_rate": 0.0004723559610255898,
+ "loss": 2.1530699729919434,
+ "step": 1175
+ },
+ {
+ "epoch": 16.334494773519165,
+ "grad_norm": 0.05881023779511452,
+ "learning_rate": 0.0004721368944710302,
+ "loss": 2.1721291542053223,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34843205574913,
+ "grad_norm": 0.06223367527127266,
+ "learning_rate": 0.00047191769164592974,
+ "loss": 2.168361186981201,
+ "step": 1177
+ },
+ {
+ "epoch": 16.362369337979093,
+ "grad_norm": 0.056093230843544006,
+ "learning_rate": 0.000471698352726896,
+ "loss": 2.164424419403076,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37630662020906,
+ "grad_norm": 0.06118649244308472,
+ "learning_rate": 0.0004714788778906467,
+ "loss": 2.158644199371338,
+ "step": 1179
+ },
+ {
+ "epoch": 16.390243902439025,
+ "grad_norm": 0.06548523902893066,
+ "learning_rate": 0.0004712592673140084,
+ "loss": 2.1728553771972656,
+ "step": 1180
+ },
+ {
+ "epoch": 16.40418118466899,
+ "grad_norm": 0.06719230860471725,
+ "learning_rate": 0.00047103952117391764,
+ "loss": 2.1555490493774414,
+ "step": 1181
+ },
+ {
+ "epoch": 16.418118466898953,
+ "grad_norm": 0.06181609630584717,
+ "learning_rate": 0.00047081963964741986,
+ "loss": 2.162527561187744,
+ "step": 1182
+ },
+ {
+ "epoch": 16.43205574912892,
+ "grad_norm": 0.05706655979156494,
+ "learning_rate": 0.0004705996229116696,
+ "loss": 2.1423912048339844,
+ "step": 1183
+ },
+ {
+ "epoch": 16.445993031358885,
+ "grad_norm": 0.05518640577793121,
+ "learning_rate": 0.0004703794711439304,
+ "loss": 2.1653032302856445,
+ "step": 1184
+ },
+ {
+ "epoch": 16.45993031358885,
+ "grad_norm": 0.05664249137043953,
+ "learning_rate": 0.0004701591845215744,
+ "loss": 2.166928291320801,
+ "step": 1185
+ },
+ {
+ "epoch": 16.473867595818817,
+ "grad_norm": 0.05873657390475273,
+ "learning_rate": 0.00046993876322208274,
+ "loss": 2.1778905391693115,
+ "step": 1186
+ },
+ {
+ "epoch": 16.48780487804878,
+ "grad_norm": 0.05944420397281647,
+ "learning_rate": 0.0004697182074230448,
+ "loss": 2.177402973175049,
+ "step": 1187
+ },
+ {
+ "epoch": 16.501742160278745,
+ "grad_norm": 0.059531547129154205,
+ "learning_rate": 0.0004694975173021586,
+ "loss": 2.1766552925109863,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51567944250871,
+ "grad_norm": 0.05503744259476662,
+ "learning_rate": 0.0004692766930372299,
+ "loss": 2.167525291442871,
+ "step": 1189
+ },
+ {
+ "epoch": 16.529616724738677,
+ "grad_norm": 0.05157329514622688,
+ "learning_rate": 0.00046905573480617285,
+ "loss": 2.1732568740844727,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54355400696864,
+ "grad_norm": 0.05355038493871689,
+ "learning_rate": 0.00046883464278700966,
+ "loss": 2.1730806827545166,
+ "step": 1191
+ },
+ {
+ "epoch": 16.557491289198605,
+ "grad_norm": 0.05118329077959061,
+ "learning_rate": 0.0004686134171578702,
+ "loss": 2.1696338653564453,
+ "step": 1192
+ },
+ {
+ "epoch": 16.571428571428573,
+ "grad_norm": 0.05029391869902611,
+ "learning_rate": 0.00046839205809699183,
+ "loss": 2.195044994354248,
+ "step": 1193
+ },
+ {
+ "epoch": 16.585365853658537,
+ "grad_norm": 0.050039373338222504,
+ "learning_rate": 0.0004681705657827195,
+ "loss": 2.1581506729125977,
+ "step": 1194
+ },
+ {
+ "epoch": 16.5993031358885,
+ "grad_norm": 0.0545598603785038,
+ "learning_rate": 0.0004679489403935058,
+ "loss": 2.1650285720825195,
+ "step": 1195
+ },
+ {
+ "epoch": 16.613240418118465,
+ "grad_norm": 0.05268346890807152,
+ "learning_rate": 0.00046772718210791005,
+ "loss": 2.184382438659668,
+ "step": 1196
+ },
+ {
+ "epoch": 16.627177700348433,
+ "grad_norm": 0.05236094444990158,
+ "learning_rate": 0.00046750529110459903,
+ "loss": 2.167102813720703,
+ "step": 1197
+ },
+ {
+ "epoch": 16.641114982578397,
+ "grad_norm": 0.052183765918016434,
+ "learning_rate": 0.0004672832675623463,
+ "loss": 2.174470901489258,
+ "step": 1198
+ },
+ {
+ "epoch": 16.65505226480836,
+ "grad_norm": 0.049528587609529495,
+ "learning_rate": 0.0004670611116600322,
+ "loss": 2.1593801975250244,
+ "step": 1199
+ },
+ {
+ "epoch": 16.66898954703833,
+ "grad_norm": 0.05077743902802467,
+ "learning_rate": 0.00046683882357664375,
+ "loss": 2.1829850673675537,
+ "step": 1200
+ },
+ {
+ "epoch": 16.682926829268293,
+ "grad_norm": 0.049165278673172,
+ "learning_rate": 0.0004666164034912744,
+ "loss": 2.1820642948150635,
+ "step": 1201
+ },
+ {
+ "epoch": 16.696864111498257,
+ "grad_norm": 0.049670539796352386,
+ "learning_rate": 0.00046639385158312406,
+ "loss": 2.1617588996887207,
+ "step": 1202
+ },
+ {
+ "epoch": 16.71080139372822,
+ "grad_norm": 0.05188990756869316,
+ "learning_rate": 0.00046617116803149874,
+ "loss": 2.1910011768341064,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72473867595819,
+ "grad_norm": 0.05106198787689209,
+ "learning_rate": 0.00046594835301581053,
+ "loss": 2.1670002937316895,
+ "step": 1204
+ },
+ {
+ "epoch": 16.738675958188153,
+ "grad_norm": 0.052352480590343475,
+ "learning_rate": 0.00046572540671557745,
+ "loss": 2.1804449558258057,
+ "step": 1205
+ },
+ {
+ "epoch": 16.752613240418118,
+ "grad_norm": 0.05456020310521126,
+ "learning_rate": 0.00046550232931042346,
+ "loss": 2.183560848236084,
+ "step": 1206
+ },
+ {
+ "epoch": 16.766550522648085,
+ "grad_norm": 0.05248325690627098,
+ "learning_rate": 0.00046527912098007787,
+ "loss": 2.1866538524627686,
+ "step": 1207
+ },
+ {
+ "epoch": 16.78048780487805,
+ "grad_norm": 0.052194926887750626,
+ "learning_rate": 0.00046505578190437564,
+ "loss": 2.179544448852539,
+ "step": 1208
+ },
+ {
+ "epoch": 16.794425087108014,
+ "grad_norm": 0.048344213515520096,
+ "learning_rate": 0.0004648323122632569,
+ "loss": 2.1895692348480225,
+ "step": 1209
+ },
+ {
+ "epoch": 16.808362369337978,
+ "grad_norm": 0.053263742476701736,
+ "learning_rate": 0.0004646087122367673,
+ "loss": 2.1922311782836914,
+ "step": 1210
+ },
+ {
+ "epoch": 16.822299651567945,
+ "grad_norm": 0.05046837404370308,
+ "learning_rate": 0.00046438498200505727,
+ "loss": 2.1986570358276367,
+ "step": 1211
+ },
+ {
+ "epoch": 16.83623693379791,
+ "grad_norm": 0.04699976369738579,
+ "learning_rate": 0.0004641611217483821,
+ "loss": 2.168755531311035,
+ "step": 1212
+ },
+ {
+ "epoch": 16.850174216027874,
+ "grad_norm": 0.0500732958316803,
+ "learning_rate": 0.00046393713164710217,
+ "loss": 2.1747398376464844,
+ "step": 1213
+ },
+ {
+ "epoch": 16.86411149825784,
+ "grad_norm": 0.048436183482408524,
+ "learning_rate": 0.00046371301188168204,
+ "loss": 2.181175947189331,
+ "step": 1214
+ },
+ {
+ "epoch": 16.878048780487806,
+ "grad_norm": 0.04788931831717491,
+ "learning_rate": 0.0004634887626326911,
+ "loss": 2.1619675159454346,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89198606271777,
+ "grad_norm": 0.04881543293595314,
+ "learning_rate": 0.00046326438408080293,
+ "loss": 2.1840174198150635,
+ "step": 1216
+ },
+ {
+ "epoch": 16.905923344947734,
+ "grad_norm": 0.049969445914030075,
+ "learning_rate": 0.00046303987640679517,
+ "loss": 2.199573040008545,
+ "step": 1217
+ },
+ {
+ "epoch": 16.9198606271777,
+ "grad_norm": 0.048629943281412125,
+ "learning_rate": 0.0004628152397915498,
+ "loss": 2.1661055088043213,
+ "step": 1218
+ },
+ {
+ "epoch": 16.933797909407666,
+ "grad_norm": 0.051450759172439575,
+ "learning_rate": 0.00046259047441605215,
+ "loss": 2.182037591934204,
+ "step": 1219
+ },
+ {
+ "epoch": 16.94773519163763,
+ "grad_norm": 0.05253942683339119,
+ "learning_rate": 0.0004623655804613919,
+ "loss": 2.1848878860473633,
+ "step": 1220
+ },
+ {
+ "epoch": 16.961672473867594,
+ "grad_norm": 0.0511169359087944,
+ "learning_rate": 0.00046214055810876194,
+ "loss": 2.181640863418579,
+ "step": 1221
+ },
+ {
+ "epoch": 16.975609756097562,
+ "grad_norm": 0.04952972009778023,
+ "learning_rate": 0.00046191540753945886,
+ "loss": 2.1824798583984375,
+ "step": 1222
+ },
+ {
+ "epoch": 16.989547038327526,
+ "grad_norm": 0.048745568841695786,
+ "learning_rate": 0.00046169012893488204,
+ "loss": 2.175996780395508,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.039088211953639984,
+ "learning_rate": 0.00046146472247653484,
+ "loss": 1.6450124979019165,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 0.6228054761886597,
+ "eval_runtime": 36.2135,
+ "eval_samples_per_second": 67.433,
+ "eval_steps_per_second": 0.552,
+ "step": 1224
+ },
+ {
+ "epoch": 17.013937282229964,
+ "grad_norm": 0.05182459577918053,
+ "learning_rate": 0.0004612391883460228,
+ "loss": 2.13407826423645,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027874564459932,
+ "grad_norm": 0.06349381804466248,
+ "learning_rate": 0.00046101352672505493,
+ "loss": 2.124786615371704,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041811846689896,
+ "grad_norm": 0.06030651181936264,
+ "learning_rate": 0.0004607877377954426,
+ "loss": 2.1319074630737305,
+ "step": 1227
+ },
+ {
+ "epoch": 17.05574912891986,
+ "grad_norm": 0.05942157283425331,
+ "learning_rate": 0.00046056182173909995,
+ "loss": 2.1155600547790527,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069686411149824,
+ "grad_norm": 0.05690222606062889,
+ "learning_rate": 0.0004603357787380435,
+ "loss": 2.1224000453948975,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083623693379792,
+ "grad_norm": 0.05549716204404831,
+ "learning_rate": 0.0004601096089743919,
+ "loss": 2.138361692428589,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097560975609756,
+ "grad_norm": 0.05572805553674698,
+ "learning_rate": 0.0004598833126303661,
+ "loss": 2.108839511871338,
+ "step": 1231
+ },
+ {
+ "epoch": 17.11149825783972,
+ "grad_norm": 0.05359194055199623,
+ "learning_rate": 0.00045965688988828884,
+ "loss": 2.111232042312622,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125435540069688,
+ "grad_norm": 0.05284698307514191,
+ "learning_rate": 0.00045943034093058507,
+ "loss": 2.111241102218628,
+ "step": 1233
+ },
+ {
+ "epoch": 17.139372822299652,
+ "grad_norm": 0.05522393807768822,
+ "learning_rate": 0.000459203665939781,
+ "loss": 2.1056082248687744,
+ "step": 1234
+ },
+ {
+ "epoch": 17.153310104529616,
+ "grad_norm": 0.05988268554210663,
+ "learning_rate": 0.00045897686509850487,
+ "loss": 2.1245055198669434,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16724738675958,
+ "grad_norm": 0.05882375314831734,
+ "learning_rate": 0.0004587499385894856,
+ "loss": 2.12105655670166,
+ "step": 1236
+ },
+ {
+ "epoch": 17.181184668989548,
+ "grad_norm": 0.05429045483469963,
+ "learning_rate": 0.000458522886595554,
+ "loss": 2.1340696811676025,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195121951219512,
+ "grad_norm": 0.05428321287035942,
+ "learning_rate": 0.0004582957092996418,
+ "loss": 2.125894546508789,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209059233449477,
+ "grad_norm": 0.05918198451399803,
+ "learning_rate": 0.0004580684068847817,
+ "loss": 2.115187168121338,
+ "step": 1239
+ },
+ {
+ "epoch": 17.222996515679444,
+ "grad_norm": 0.05467062070965767,
+ "learning_rate": 0.0004578409795341069,
+ "loss": 2.1267573833465576,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23693379790941,
+ "grad_norm": 0.05117730423808098,
+ "learning_rate": 0.0004576134274308517,
+ "loss": 2.131983757019043,
+ "step": 1241
+ },
+ {
+ "epoch": 17.250871080139373,
+ "grad_norm": 0.05354353412985802,
+ "learning_rate": 0.0004573857507583506,
+ "loss": 2.139024019241333,
+ "step": 1242
+ },
+ {
+ "epoch": 17.264808362369337,
+ "grad_norm": 0.05508217588067055,
+ "learning_rate": 0.00045715794970003874,
+ "loss": 2.123086929321289,
+ "step": 1243
+ },
+ {
+ "epoch": 17.278745644599304,
+ "grad_norm": 0.056819524616003036,
+ "learning_rate": 0.0004569300244394513,
+ "loss": 2.133049488067627,
+ "step": 1244
+ },
+ {
+ "epoch": 17.29268292682927,
+ "grad_norm": 0.06116129457950592,
+ "learning_rate": 0.0004567019751602234,
+ "loss": 2.146721601486206,
+ "step": 1245
+ },
+ {
+ "epoch": 17.306620209059233,
+ "grad_norm": 0.06482621282339096,
+ "learning_rate": 0.00045647380204609034,
+ "loss": 2.133073568344116,
+ "step": 1246
+ },
+ {
+ "epoch": 17.320557491289197,
+ "grad_norm": 0.06122269853949547,
+ "learning_rate": 0.00045624550528088704,
+ "loss": 2.1292078495025635,
+ "step": 1247
+ },
+ {
+ "epoch": 17.334494773519165,
+ "grad_norm": 0.060462113469839096,
+ "learning_rate": 0.00045601708504854803,
+ "loss": 2.1301801204681396,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34843205574913,
+ "grad_norm": 0.05775533244013786,
+ "learning_rate": 0.0004557885415331074,
+ "loss": 2.160749673843384,
+ "step": 1249
+ },
+ {
+ "epoch": 17.362369337979093,
+ "grad_norm": 0.05933118611574173,
+ "learning_rate": 0.00045555987491869865,
+ "loss": 2.138021469116211,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37630662020906,
+ "grad_norm": 0.05498939007520676,
+ "learning_rate": 0.00045533108538955416,
+ "loss": 2.1443264484405518,
+ "step": 1251
+ },
+ {
+ "epoch": 17.390243902439025,
+ "grad_norm": 0.05720233544707298,
+ "learning_rate": 0.0004551021731300055,
+ "loss": 2.1400699615478516,
+ "step": 1252
+ },
+ {
+ "epoch": 17.40418118466899,
+ "grad_norm": 0.05569229647517204,
+ "learning_rate": 0.0004548731383244834,
+ "loss": 2.1375250816345215,
+ "step": 1253
+ },
+ {
+ "epoch": 17.418118466898953,
+ "grad_norm": 0.05508109927177429,
+ "learning_rate": 0.0004546439811575169,
+ "loss": 2.1352083683013916,
+ "step": 1254
+ },
+ {
+ "epoch": 17.43205574912892,
+ "grad_norm": 0.057038020342588425,
+ "learning_rate": 0.00045441470181373375,
+ "loss": 2.1290454864501953,
+ "step": 1255
+ },
+ {
+ "epoch": 17.445993031358885,
+ "grad_norm": 0.05938584357500076,
+ "learning_rate": 0.0004541853004778603,
+ "loss": 2.14906644821167,
+ "step": 1256
+ },
+ {
+ "epoch": 17.45993031358885,
+ "grad_norm": 0.05654401332139969,
+ "learning_rate": 0.00045395577733472087,
+ "loss": 2.133410692214966,
+ "step": 1257
+ },
+ {
+ "epoch": 17.473867595818817,
+ "grad_norm": 0.05399394780397415,
+ "learning_rate": 0.0004537261325692383,
+ "loss": 2.14622163772583,
+ "step": 1258
+ },
+ {
+ "epoch": 17.48780487804878,
+ "grad_norm": 0.05683310702443123,
+ "learning_rate": 0.0004534963663664332,
+ "loss": 2.1482772827148438,
+ "step": 1259
+ },
+ {
+ "epoch": 17.501742160278745,
+ "grad_norm": 0.06314415484666824,
+ "learning_rate": 0.00045326647891142394,
+ "loss": 2.150238037109375,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51567944250871,
+ "grad_norm": 0.0595875009894371,
+ "learning_rate": 0.0004530364703894268,
+ "loss": 2.137575626373291,
+ "step": 1261
+ },
+ {
+ "epoch": 17.529616724738677,
+ "grad_norm": 0.05534850060939789,
+ "learning_rate": 0.0004528063409857554,
+ "loss": 2.169827461242676,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54355400696864,
+ "grad_norm": 0.06096148118376732,
+ "learning_rate": 0.0004525760908858209,
+ "loss": 2.142652988433838,
+ "step": 1263
+ },
+ {
+ "epoch": 17.557491289198605,
+ "grad_norm": 0.06313963979482651,
+ "learning_rate": 0.00045234572027513174,
+ "loss": 2.152920722961426,
+ "step": 1264
+ },
+ {
+ "epoch": 17.571428571428573,
+ "grad_norm": 0.058604612946510315,
+ "learning_rate": 0.00045211522933929317,
+ "loss": 2.1487669944763184,
+ "step": 1265
+ },
+ {
+ "epoch": 17.585365853658537,
+ "grad_norm": 0.056736089289188385,
+ "learning_rate": 0.0004518846182640077,
+ "loss": 2.1435699462890625,
+ "step": 1266
+ },
+ {
+ "epoch": 17.5993031358885,
+ "grad_norm": 0.05706419423222542,
+ "learning_rate": 0.0004516538872350744,
+ "loss": 2.1586122512817383,
+ "step": 1267
+ },
+ {
+ "epoch": 17.613240418118465,
+ "grad_norm": 0.05560465529561043,
+ "learning_rate": 0.0004514230364383893,
+ "loss": 2.177081346511841,
+ "step": 1268
+ },
+ {
+ "epoch": 17.627177700348433,
+ "grad_norm": 0.05601844564080238,
+ "learning_rate": 0.0004511920660599444,
+ "loss": 2.1478757858276367,
+ "step": 1269
+ },
+ {
+ "epoch": 17.641114982578397,
+ "grad_norm": 0.05756781995296478,
+ "learning_rate": 0.0004509609762858287,
+ "loss": 2.1525440216064453,
+ "step": 1270
+ },
+ {
+ "epoch": 17.65505226480836,
+ "grad_norm": 0.0531681589782238,
+ "learning_rate": 0.0004507297673022269,
+ "loss": 2.1489810943603516,
+ "step": 1271
+ },
+ {
+ "epoch": 17.66898954703833,
+ "grad_norm": 0.05216185003519058,
+ "learning_rate": 0.0004504984392954199,
+ "loss": 2.144932746887207,
+ "step": 1272
+ },
+ {
+ "epoch": 17.682926829268293,
+ "grad_norm": 0.052748095244169235,
+ "learning_rate": 0.00045026699245178444,
+ "loss": 2.148977756500244,
+ "step": 1273
+ },
+ {
+ "epoch": 17.696864111498257,
+ "grad_norm": 0.051663246005773544,
+ "learning_rate": 0.0004500354269577932,
+ "loss": 2.1617603302001953,
+ "step": 1274
+ },
+ {
+ "epoch": 17.71080139372822,
+ "grad_norm": 0.05068802461028099,
+ "learning_rate": 0.00044980374300001414,
+ "loss": 2.1467485427856445,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72473867595819,
+ "grad_norm": 0.052201591432094574,
+ "learning_rate": 0.00044957194076511095,
+ "loss": 2.1621475219726562,
+ "step": 1276
+ },
+ {
+ "epoch": 17.738675958188153,
+ "grad_norm": 0.05179779976606369,
+ "learning_rate": 0.0004493400204398426,
+ "loss": 2.1593222618103027,
+ "step": 1277
+ },
+ {
+ "epoch": 17.752613240418118,
+ "grad_norm": 0.05123918130993843,
+ "learning_rate": 0.00044910798221106283,
+ "loss": 2.1596224308013916,
+ "step": 1278
+ },
+ {
+ "epoch": 17.766550522648085,
+ "grad_norm": 0.05416003242135048,
+ "learning_rate": 0.00044887582626572105,
+ "loss": 2.156677484512329,
+ "step": 1279
+ },
+ {
+ "epoch": 17.78048780487805,
+ "grad_norm": 0.05376303568482399,
+ "learning_rate": 0.0004486435527908606,
+ "loss": 2.1515936851501465,
+ "step": 1280
+ },
+ {
+ "epoch": 17.794425087108014,
+ "grad_norm": 0.05113770812749863,
+ "learning_rate": 0.0004484111619736205,
+ "loss": 2.159501075744629,
+ "step": 1281
+ },
+ {
+ "epoch": 17.808362369337978,
+ "grad_norm": 0.05341901257634163,
+ "learning_rate": 0.0004481786540012336,
+ "loss": 2.1458449363708496,
+ "step": 1282
+ },
+ {
+ "epoch": 17.822299651567945,
+ "grad_norm": 0.05436928942799568,
+ "learning_rate": 0.00044794602906102747,
+ "loss": 2.1686582565307617,
+ "step": 1283
+ },
+ {
+ "epoch": 17.83623693379791,
+ "grad_norm": 0.05663881078362465,
+ "learning_rate": 0.00044771328734042367,
+ "loss": 2.162226676940918,
+ "step": 1284
+ },
+ {
+ "epoch": 17.850174216027874,
+ "grad_norm": 0.052064672112464905,
+ "learning_rate": 0.00044748042902693815,
+ "loss": 2.162569046020508,
+ "step": 1285
+ },
+ {
+ "epoch": 17.86411149825784,
+ "grad_norm": 0.05361185595393181,
+ "learning_rate": 0.0004472474543081805,
+ "loss": 2.156773567199707,
+ "step": 1286
+ },
+ {
+ "epoch": 17.878048780487806,
+ "grad_norm": 0.053101785480976105,
+ "learning_rate": 0.00044701436337185444,
+ "loss": 2.1460914611816406,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89198606271777,
+ "grad_norm": 0.05247222259640694,
+ "learning_rate": 0.00044678115640575704,
+ "loss": 2.1564040184020996,
+ "step": 1288
+ },
+ {
+ "epoch": 17.905923344947734,
+ "grad_norm": 0.054551344364881516,
+ "learning_rate": 0.0004465478335977788,
+ "loss": 2.1503076553344727,
+ "step": 1289
+ },
+ {
+ "epoch": 17.9198606271777,
+ "grad_norm": 0.050967201590538025,
+ "learning_rate": 0.00044631439513590393,
+ "loss": 2.165611505508423,
+ "step": 1290
+ },
+ {
+ "epoch": 17.933797909407666,
+ "grad_norm": 0.051103148609399796,
+ "learning_rate": 0.00044608084120820933,
+ "loss": 2.146416187286377,
+ "step": 1291
+ },
+ {
+ "epoch": 17.94773519163763,
+ "grad_norm": 0.04871583357453346,
+ "learning_rate": 0.0004458471720028655,
+ "loss": 2.1615967750549316,
+ "step": 1292
+ },
+ {
+ "epoch": 17.961672473867594,
+ "grad_norm": 0.05047275498509407,
+ "learning_rate": 0.0004456133877081352,
+ "loss": 2.1585195064544678,
+ "step": 1293
+ },
+ {
+ "epoch": 17.975609756097562,
+ "grad_norm": 0.05169983580708504,
+ "learning_rate": 0.0004453794885123744,
+ "loss": 2.163914680480957,
+ "step": 1294
+ },
+ {
+ "epoch": 17.989547038327526,
+ "grad_norm": 0.05178225040435791,
+ "learning_rate": 0.00044514547460403135,
+ "loss": 2.1566972732543945,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.04334854707121849,
+ "learning_rate": 0.00044491134617164694,
+ "loss": 1.6099262237548828,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 0.6236167550086975,
+ "eval_runtime": 36.363,
+ "eval_samples_per_second": 67.156,
+ "eval_steps_per_second": 0.55,
+ "step": 1296
+ },
+ {
+ "epoch": 18.013937282229964,
+ "grad_norm": 0.054574184119701385,
+ "learning_rate": 0.000444677103403854,
+ "loss": 2.097102642059326,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027874564459932,
+ "grad_norm": 0.06331679970026016,
+ "learning_rate": 0.0004444427464893779,
+ "loss": 2.113513469696045,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041811846689896,
+ "grad_norm": 0.06493321061134338,
+ "learning_rate": 0.00044420827561703573,
+ "loss": 2.1095829010009766,
+ "step": 1299
+ },
+ {
+ "epoch": 18.05574912891986,
+ "grad_norm": 0.0661960318684578,
+ "learning_rate": 0.0004439736909757365,
+ "loss": 2.0967822074890137,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069686411149824,
+ "grad_norm": 0.062145210802555084,
+ "learning_rate": 0.0004437389927544805,
+ "loss": 2.08186936378479,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083623693379792,
+ "grad_norm": 0.06310027837753296,
+ "learning_rate": 0.0004435041811423603,
+ "loss": 2.115525245666504,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097560975609756,
+ "grad_norm": 0.06527610123157501,
+ "learning_rate": 0.0004432692563285591,
+ "loss": 2.110492706298828,
+ "step": 1303
+ },
+ {
+ "epoch": 18.11149825783972,
+ "grad_norm": 0.059454720467329025,
+ "learning_rate": 0.0004430342185023517,
+ "loss": 2.105884552001953,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125435540069688,
+ "grad_norm": 0.056922316551208496,
+ "learning_rate": 0.0004427990678531038,
+ "loss": 2.1008682250976562,
+ "step": 1305
+ },
+ {
+ "epoch": 18.139372822299652,
+ "grad_norm": 0.06496447324752808,
+ "learning_rate": 0.0004425638045702719,
+ "loss": 2.0853774547576904,
+ "step": 1306
+ },
+ {
+ "epoch": 18.153310104529616,
+ "grad_norm": 0.059888552874326706,
+ "learning_rate": 0.0004423284288434035,
+ "loss": 2.1116936206817627,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16724738675958,
+ "grad_norm": 0.06061340123414993,
+ "learning_rate": 0.00044209294086213657,
+ "loss": 2.100578784942627,
+ "step": 1308
+ },
+ {
+ "epoch": 18.181184668989548,
+ "grad_norm": 0.06433615833520889,
+ "learning_rate": 0.00044185734081619957,
+ "loss": 2.0994229316711426,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195121951219512,
+ "grad_norm": 0.06373526901006699,
+ "learning_rate": 0.000441621628895411,
+ "loss": 2.1115286350250244,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209059233449477,
+ "grad_norm": 0.062120918184518814,
+ "learning_rate": 0.00044138580528967986,
+ "loss": 2.123278856277466,
+ "step": 1311
+ },
+ {
+ "epoch": 18.222996515679444,
+ "grad_norm": 0.06534294784069061,
+ "learning_rate": 0.0004411498701890051,
+ "loss": 2.0983846187591553,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23693379790941,
+ "grad_norm": 0.06486557424068451,
+ "learning_rate": 0.0004409138237834751,
+ "loss": 2.099348783493042,
+ "step": 1313
+ },
+ {
+ "epoch": 18.250871080139373,
+ "grad_norm": 0.05728910490870476,
+ "learning_rate": 0.00044067766626326835,
+ "loss": 2.0990138053894043,
+ "step": 1314
+ },
+ {
+ "epoch": 18.264808362369337,
+ "grad_norm": 0.060207612812519073,
+ "learning_rate": 0.00044044139781865255,
+ "loss": 2.1117920875549316,
+ "step": 1315
+ },
+ {
+ "epoch": 18.278745644599304,
+ "grad_norm": 0.05766129493713379,
+ "learning_rate": 0.00044020501863998516,
+ "loss": 2.101550579071045,
+ "step": 1316
+ },
+ {
+ "epoch": 18.29268292682927,
+ "grad_norm": 0.060087788850069046,
+ "learning_rate": 0.00043996852891771236,
+ "loss": 2.1135497093200684,
+ "step": 1317
+ },
+ {
+ "epoch": 18.306620209059233,
+ "grad_norm": 0.059771373867988586,
+ "learning_rate": 0.00043973192884236983,
+ "loss": 2.1124963760375977,
+ "step": 1318
+ },
+ {
+ "epoch": 18.320557491289197,
+ "grad_norm": 0.059871334582567215,
+ "learning_rate": 0.0004394952186045819,
+ "loss": 2.1254708766937256,
+ "step": 1319
+ },
+ {
+ "epoch": 18.334494773519165,
+ "grad_norm": 0.060070380568504333,
+ "learning_rate": 0.00043925839839506167,
+ "loss": 2.1019275188446045,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34843205574913,
+ "grad_norm": 0.05744089558720589,
+ "learning_rate": 0.0004390214684046111,
+ "loss": 2.112631320953369,
+ "step": 1321
+ },
+ {
+ "epoch": 18.362369337979093,
+ "grad_norm": 0.06188441440463066,
+ "learning_rate": 0.00043878442882412015,
+ "loss": 2.11454439163208,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37630662020906,
+ "grad_norm": 0.06033455580472946,
+ "learning_rate": 0.00043854727984456746,
+ "loss": 2.1136903762817383,
+ "step": 1323
+ },
+ {
+ "epoch": 18.390243902439025,
+ "grad_norm": 0.05741684511303902,
+ "learning_rate": 0.0004383100216570197,
+ "loss": 2.1244497299194336,
+ "step": 1324
+ },
+ {
+ "epoch": 18.40418118466899,
+ "grad_norm": 0.05371133238077164,
+ "learning_rate": 0.0004380726544526316,
+ "loss": 2.0973854064941406,
+ "step": 1325
+ },
+ {
+ "epoch": 18.418118466898953,
+ "grad_norm": 0.05289234593510628,
+ "learning_rate": 0.00043783517842264534,
+ "loss": 2.1062159538269043,
+ "step": 1326
+ },
+ {
+ "epoch": 18.43205574912892,
+ "grad_norm": 0.05888833478093147,
+ "learning_rate": 0.0004375975937583914,
+ "loss": 2.133770227432251,
+ "step": 1327
+ },
+ {
+ "epoch": 18.445993031358885,
+ "grad_norm": 0.057039227336645126,
+ "learning_rate": 0.0004373599006512871,
+ "loss": 2.123251438140869,
+ "step": 1328
+ },
+ {
+ "epoch": 18.45993031358885,
+ "grad_norm": 0.05389681085944176,
+ "learning_rate": 0.00043712209929283786,
+ "loss": 2.1121368408203125,
+ "step": 1329
+ },
+ {
+ "epoch": 18.473867595818817,
+ "grad_norm": 0.05782404541969299,
+ "learning_rate": 0.00043688418987463567,
+ "loss": 2.119410991668701,
+ "step": 1330
+ },
+ {
+ "epoch": 18.48780487804878,
+ "grad_norm": 0.06069990620017052,
+ "learning_rate": 0.00043664617258835995,
+ "loss": 2.1443772315979004,
+ "step": 1331
+ },
+ {
+ "epoch": 18.501742160278745,
+ "grad_norm": 0.05559232831001282,
+ "learning_rate": 0.0004364080476257769,
+ "loss": 2.1264851093292236,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51567944250871,
+ "grad_norm": 0.05432436615228653,
+ "learning_rate": 0.0004361698151787396,
+ "loss": 2.1118392944335938,
+ "step": 1333
+ },
+ {
+ "epoch": 18.529616724738677,
+ "grad_norm": 0.05471545085310936,
+ "learning_rate": 0.0004359314754391874,
+ "loss": 2.1159002780914307,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54355400696864,
+ "grad_norm": 0.05574088171124458,
+ "learning_rate": 0.0004356930285991466,
+ "loss": 2.1271533966064453,
+ "step": 1335
+ },
+ {
+ "epoch": 18.557491289198605,
+ "grad_norm": 0.05431128293275833,
+ "learning_rate": 0.00043545447485072926,
+ "loss": 2.125399589538574,
+ "step": 1336
+ },
+ {
+ "epoch": 18.571428571428573,
+ "grad_norm": 0.055981073528528214,
+ "learning_rate": 0.000435215814386134,
+ "loss": 2.113802909851074,
+ "step": 1337
+ },
+ {
+ "epoch": 18.585365853658537,
+ "grad_norm": 0.05551784485578537,
+ "learning_rate": 0.0004349770473976453,
+ "loss": 2.1233460903167725,
+ "step": 1338
+ },
+ {
+ "epoch": 18.5993031358885,
+ "grad_norm": 0.05475042760372162,
+ "learning_rate": 0.0004347381740776332,
+ "loss": 2.1365370750427246,
+ "step": 1339
+ },
+ {
+ "epoch": 18.613240418118465,
+ "grad_norm": 0.05448045954108238,
+ "learning_rate": 0.0004344991946185538,
+ "loss": 2.1288349628448486,
+ "step": 1340
+ },
+ {
+ "epoch": 18.627177700348433,
+ "grad_norm": 0.0553717240691185,
+ "learning_rate": 0.00043426010921294837,
+ "loss": 2.1383371353149414,
+ "step": 1341
+ },
+ {
+ "epoch": 18.641114982578397,
+ "grad_norm": 0.05391915515065193,
+ "learning_rate": 0.0004340209180534438,
+ "loss": 2.1390743255615234,
+ "step": 1342
+ },
+ {
+ "epoch": 18.65505226480836,
+ "grad_norm": 0.05404767021536827,
+ "learning_rate": 0.000433781621332752,
+ "loss": 2.1237120628356934,
+ "step": 1343
+ },
+ {
+ "epoch": 18.66898954703833,
+ "grad_norm": 0.05370468273758888,
+ "learning_rate": 0.0004335422192436703,
+ "loss": 2.123408079147339,
+ "step": 1344
+ },
+ {
+ "epoch": 18.682926829268293,
+ "grad_norm": 0.05490506440401077,
+ "learning_rate": 0.00043330271197908023,
+ "loss": 2.130199432373047,
+ "step": 1345
+ },
+ {
+ "epoch": 18.696864111498257,
+ "grad_norm": 0.05651344731450081,
+ "learning_rate": 0.00043306309973194874,
+ "loss": 2.1184425354003906,
+ "step": 1346
+ },
+ {
+ "epoch": 18.71080139372822,
+ "grad_norm": 0.05446930602192879,
+ "learning_rate": 0.000432823382695327,
+ "loss": 2.1391234397888184,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72473867595819,
+ "grad_norm": 0.056854017078876495,
+ "learning_rate": 0.0004325835610623508,
+ "loss": 2.1358017921447754,
+ "step": 1348
+ },
+ {
+ "epoch": 18.738675958188153,
+ "grad_norm": 0.06729792058467865,
+ "learning_rate": 0.00043234363502623994,
+ "loss": 2.1330645084381104,
+ "step": 1349
+ },
+ {
+ "epoch": 18.752613240418118,
+ "grad_norm": 0.05778411030769348,
+ "learning_rate": 0.0004321036047802985,
+ "loss": 2.1277008056640625,
+ "step": 1350
+ },
+ {
+ "epoch": 18.766550522648085,
+ "grad_norm": 0.05493835732340813,
+ "learning_rate": 0.00043186347051791466,
+ "loss": 2.1218693256378174,
+ "step": 1351
+ },
+ {
+ "epoch": 18.78048780487805,
+ "grad_norm": 0.05961703136563301,
+ "learning_rate": 0.0004316232324325602,
+ "loss": 2.141153573989868,
+ "step": 1352
+ },
+ {
+ "epoch": 18.794425087108014,
+ "grad_norm": 0.057490140199661255,
+ "learning_rate": 0.0004313828907177906,
+ "loss": 2.1218957901000977,
+ "step": 1353
+ },
+ {
+ "epoch": 18.808362369337978,
+ "grad_norm": 0.05424332618713379,
+ "learning_rate": 0.0004311424455672448,
+ "loss": 2.1294074058532715,
+ "step": 1354
+ },
+ {
+ "epoch": 18.822299651567945,
+ "grad_norm": 0.05539792776107788,
+ "learning_rate": 0.0004309018971746451,
+ "loss": 2.1287131309509277,
+ "step": 1355
+ },
+ {
+ "epoch": 18.83623693379791,
+ "grad_norm": 0.056515417993068695,
+ "learning_rate": 0.000430661245733797,
+ "loss": 2.1303625106811523,
+ "step": 1356
+ },
+ {
+ "epoch": 18.850174216027874,
+ "grad_norm": 0.053070683032274246,
+ "learning_rate": 0.00043042049143858914,
+ "loss": 2.1501715183258057,
+ "step": 1357
+ },
+ {
+ "epoch": 18.86411149825784,
+ "grad_norm": 0.05422713980078697,
+ "learning_rate": 0.0004301796344829928,
+ "loss": 2.141580581665039,
+ "step": 1358
+ },
+ {
+ "epoch": 18.878048780487806,
+ "grad_norm": 0.053621236234903336,
+ "learning_rate": 0.00042993867506106205,
+ "loss": 2.1374034881591797,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89198606271777,
+ "grad_norm": 0.05488245189189911,
+ "learning_rate": 0.0004296976133669336,
+ "loss": 2.1387908458709717,
+ "step": 1360
+ },
+ {
+ "epoch": 18.905923344947734,
+ "grad_norm": 0.05566219612956047,
+ "learning_rate": 0.0004294564495948266,
+ "loss": 2.1420421600341797,
+ "step": 1361
+ },
+ {
+ "epoch": 18.9198606271777,
+ "grad_norm": 0.05297220125794411,
+ "learning_rate": 0.0004292151839390421,
+ "loss": 2.126768112182617,
+ "step": 1362
+ },
+ {
+ "epoch": 18.933797909407666,
+ "grad_norm": 0.056281380355358124,
+ "learning_rate": 0.0004289738165939636,
+ "loss": 2.114241361618042,
+ "step": 1363
+ },
+ {
+ "epoch": 18.94773519163763,
+ "grad_norm": 0.05625050142407417,
+ "learning_rate": 0.00042873234775405654,
+ "loss": 2.134300947189331,
+ "step": 1364
+ },
+ {
+ "epoch": 18.961672473867594,
+ "grad_norm": 0.05186711251735687,
+ "learning_rate": 0.00042849077761386784,
+ "loss": 2.1409969329833984,
+ "step": 1365
+ },
+ {
+ "epoch": 18.975609756097562,
+ "grad_norm": 0.057695358991622925,
+ "learning_rate": 0.0004282491063680263,
+ "loss": 2.1331894397735596,
+ "step": 1366
+ },
+ {
+ "epoch": 18.989547038327526,
+ "grad_norm": 0.055152107030153275,
+ "learning_rate": 0.00042800733421124207,
+ "loss": 2.147555112838745,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.04286205768585205,
+ "learning_rate": 0.00042776546133830646,
+ "loss": 1.5948516130447388,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 0.6249114871025085,
+ "eval_runtime": 36.6804,
+ "eval_samples_per_second": 66.575,
+ "eval_steps_per_second": 0.545,
+ "step": 1368
+ },
+ {
+ "epoch": 19.013937282229964,
+ "grad_norm": 0.05809386819601059,
+ "learning_rate": 0.00042752348794409227,
+ "loss": 2.0782227516174316,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027874564459932,
+ "grad_norm": 0.06399382650852203,
+ "learning_rate": 0.00042728141422355287,
+ "loss": 2.078792095184326,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041811846689896,
+ "grad_norm": 0.0564531646668911,
+ "learning_rate": 0.0004270392403717229,
+ "loss": 2.083125114440918,
+ "step": 1371
+ },
+ {
+ "epoch": 19.05574912891986,
+ "grad_norm": 0.057170569896698,
+ "learning_rate": 0.00042679696658371743,
+ "loss": 2.0679214000701904,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069686411149824,
+ "grad_norm": 0.05639920011162758,
+ "learning_rate": 0.00042655459305473195,
+ "loss": 2.072279930114746,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083623693379792,
+ "grad_norm": 0.05690578371286392,
+ "learning_rate": 0.0004263121199800425,
+ "loss": 2.0732839107513428,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097560975609756,
+ "grad_norm": 0.05914883315563202,
+ "learning_rate": 0.0004260695475550054,
+ "loss": 2.0810770988464355,
+ "step": 1375
+ },
+ {
+ "epoch": 19.11149825783972,
+ "grad_norm": 0.058082643896341324,
+ "learning_rate": 0.0004258268759750566,
+ "loss": 2.074130058288574,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125435540069688,
+ "grad_norm": 0.06016257032752037,
+ "learning_rate": 0.0004255841054357124,
+ "loss": 2.084043025970459,
+ "step": 1377
+ },
+ {
+ "epoch": 19.139372822299652,
+ "grad_norm": 0.060372497886419296,
+ "learning_rate": 0.0004253412361325686,
+ "loss": 2.0811657905578613,
+ "step": 1378
+ },
+ {
+ "epoch": 19.153310104529616,
+ "grad_norm": 0.0614042803645134,
+ "learning_rate": 0.0004250982682613006,
+ "loss": 2.070756435394287,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16724738675958,
+ "grad_norm": 0.06391493231058121,
+ "learning_rate": 0.00042485520201766315,
+ "loss": 2.067322015762329,
+ "step": 1380
+ },
+ {
+ "epoch": 19.181184668989548,
+ "grad_norm": 0.06465132534503937,
+ "learning_rate": 0.0004246120375974905,
+ "loss": 2.077214002609253,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195121951219512,
+ "grad_norm": 0.06490413844585419,
+ "learning_rate": 0.0004243687751966957,
+ "loss": 2.0735957622528076,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209059233449477,
+ "grad_norm": 0.06681123375892639,
+ "learning_rate": 0.0004241254150112708,
+ "loss": 2.092386484146118,
+ "step": 1383
+ },
+ {
+ "epoch": 19.222996515679444,
+ "grad_norm": 0.07135862857103348,
+ "learning_rate": 0.000423881957237287,
+ "loss": 2.0910637378692627,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23693379790941,
+ "grad_norm": 0.06640495359897614,
+ "learning_rate": 0.0004236384020708935,
+ "loss": 2.076943874359131,
+ "step": 1385
+ },
+ {
+ "epoch": 19.250871080139373,
+ "grad_norm": 0.06542305648326874,
+ "learning_rate": 0.0004233947497083185,
+ "loss": 2.08823299407959,
+ "step": 1386
+ },
+ {
+ "epoch": 19.264808362369337,
+ "grad_norm": 0.06014764681458473,
+ "learning_rate": 0.0004231510003458682,
+ "loss": 2.0875651836395264,
+ "step": 1387
+ },
+ {
+ "epoch": 19.278745644599304,
+ "grad_norm": 0.05776312202215195,
+ "learning_rate": 0.0004229071541799272,
+ "loss": 2.097287654876709,
+ "step": 1388
+ },
+ {
+ "epoch": 19.29268292682927,
+ "grad_norm": 0.058570489287376404,
+ "learning_rate": 0.0004226632114069578,
+ "loss": 2.099949359893799,
+ "step": 1389
+ },
+ {
+ "epoch": 19.306620209059233,
+ "grad_norm": 0.059035737067461014,
+ "learning_rate": 0.0004224191722235004,
+ "loss": 2.0985028743743896,
+ "step": 1390
+ },
+ {
+ "epoch": 19.320557491289197,
+ "grad_norm": 0.05857931450009346,
+ "learning_rate": 0.00042217503682617286,
+ "loss": 2.0884578227996826,
+ "step": 1391
+ },
+ {
+ "epoch": 19.334494773519165,
+ "grad_norm": 0.057818394154310226,
+ "learning_rate": 0.0004219308054116706,
+ "loss": 2.0950827598571777,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34843205574913,
+ "grad_norm": 0.05500008538365364,
+ "learning_rate": 0.0004216864781767667,
+ "loss": 2.0837326049804688,
+ "step": 1393
+ },
+ {
+ "epoch": 19.362369337979093,
+ "grad_norm": 0.05635271221399307,
+ "learning_rate": 0.00042144205531831103,
+ "loss": 2.1017332077026367,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37630662020906,
+ "grad_norm": 0.0582125261425972,
+ "learning_rate": 0.0004211975370332308,
+ "loss": 2.0762600898742676,
+ "step": 1395
+ },
+ {
+ "epoch": 19.390243902439025,
+ "grad_norm": 0.0587347187101841,
+ "learning_rate": 0.00042095292351852976,
+ "loss": 2.0604896545410156,
+ "step": 1396
+ },
+ {
+ "epoch": 19.40418118466899,
+ "grad_norm": 0.058021727949380875,
+ "learning_rate": 0.0004207082149712888,
+ "loss": 2.0906972885131836,
+ "step": 1397
+ },
+ {
+ "epoch": 19.418118466898953,
+ "grad_norm": 0.05805983021855354,
+ "learning_rate": 0.0004204634115886651,
+ "loss": 2.0873594284057617,
+ "step": 1398
+ },
+ {
+ "epoch": 19.43205574912892,
+ "grad_norm": 0.05964788421988487,
+ "learning_rate": 0.0004202185135678924,
+ "loss": 2.1012473106384277,
+ "step": 1399
+ },
+ {
+ "epoch": 19.445993031358885,
+ "grad_norm": 0.058361511677503586,
+ "learning_rate": 0.00041997352110628033,
+ "loss": 2.09468936920166,
+ "step": 1400
+ },
+ {
+ "epoch": 19.45993031358885,
+ "grad_norm": 0.05840443819761276,
+ "learning_rate": 0.00041972843440121527,
+ "loss": 2.105898857116699,
+ "step": 1401
+ },
+ {
+ "epoch": 19.473867595818817,
+ "grad_norm": 0.06023252755403519,
+ "learning_rate": 0.00041948325365015894,
+ "loss": 2.103001594543457,
+ "step": 1402
+ },
+ {
+ "epoch": 19.48780487804878,
+ "grad_norm": 0.057779282331466675,
+ "learning_rate": 0.0004192379790506491,
+ "loss": 2.0969185829162598,
+ "step": 1403
+ },
+ {
+ "epoch": 19.501742160278745,
+ "grad_norm": 0.0592162050306797,
+ "learning_rate": 0.00041899261080029904,
+ "loss": 2.1101880073547363,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51567944250871,
+ "grad_norm": 0.06333442032337189,
+ "learning_rate": 0.00041874714909679754,
+ "loss": 2.1037089824676514,
+ "step": 1405
+ },
+ {
+ "epoch": 19.529616724738677,
+ "grad_norm": 0.06202675402164459,
+ "learning_rate": 0.00041850159413790863,
+ "loss": 2.1154634952545166,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54355400696864,
+ "grad_norm": 0.055281441658735275,
+ "learning_rate": 0.0004182559461214715,
+ "loss": 2.1098036766052246,
+ "step": 1407
+ },
+ {
+ "epoch": 19.557491289198605,
+ "grad_norm": 0.06085072085261345,
+ "learning_rate": 0.0004180102052454004,
+ "loss": 2.0985965728759766,
+ "step": 1408
+ },
+ {
+ "epoch": 19.571428571428573,
+ "grad_norm": 0.059430696070194244,
+ "learning_rate": 0.00041776437170768427,
+ "loss": 2.1063296794891357,
+ "step": 1409
+ },
+ {
+ "epoch": 19.585365853658537,
+ "grad_norm": 0.05628339946269989,
+ "learning_rate": 0.0004175184457063868,
+ "loss": 2.096975326538086,
+ "step": 1410
+ },
+ {
+ "epoch": 19.5993031358885,
+ "grad_norm": 0.056543346494436264,
+ "learning_rate": 0.000417272427439646,
+ "loss": 2.1110968589782715,
+ "step": 1411
+ },
+ {
+ "epoch": 19.613240418118465,
+ "grad_norm": 0.05971049889922142,
+ "learning_rate": 0.00041702631710567443,
+ "loss": 2.1136279106140137,
+ "step": 1412
+ },
+ {
+ "epoch": 19.627177700348433,
+ "grad_norm": 0.056699734181165695,
+ "learning_rate": 0.00041678011490275875,
+ "loss": 2.113466501235962,
+ "step": 1413
+ },
+ {
+ "epoch": 19.641114982578397,
+ "grad_norm": 0.05671929940581322,
+ "learning_rate": 0.00041653382102925957,
+ "loss": 2.1061220169067383,
+ "step": 1414
+ },
+ {
+ "epoch": 19.65505226480836,
+ "grad_norm": 0.05770038440823555,
+ "learning_rate": 0.00041628743568361147,
+ "loss": 2.1156320571899414,
+ "step": 1415
+ },
+ {
+ "epoch": 19.66898954703833,
+ "grad_norm": 0.06175893545150757,
+ "learning_rate": 0.00041604095906432265,
+ "loss": 2.112288475036621,
+ "step": 1416
+ },
+ {
+ "epoch": 19.682926829268293,
+ "grad_norm": 0.06383928656578064,
+ "learning_rate": 0.00041579439136997493,
+ "loss": 2.1029422283172607,
+ "step": 1417
+ },
+ {
+ "epoch": 19.696864111498257,
+ "grad_norm": 0.06042713671922684,
+ "learning_rate": 0.00041554773279922337,
+ "loss": 2.1106066703796387,
+ "step": 1418
+ },
+ {
+ "epoch": 19.71080139372822,
+ "grad_norm": 0.057180315256118774,
+ "learning_rate": 0.0004153009835507963,
+ "loss": 2.1148805618286133,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72473867595819,
+ "grad_norm": 0.061083171516656876,
+ "learning_rate": 0.0004150541438234952,
+ "loss": 2.0946850776672363,
+ "step": 1420
+ },
+ {
+ "epoch": 19.738675958188153,
+ "grad_norm": 0.0596432127058506,
+ "learning_rate": 0.00041480721381619435,
+ "loss": 2.1208066940307617,
+ "step": 1421
+ },
+ {
+ "epoch": 19.752613240418118,
+ "grad_norm": 0.05496669560670853,
+ "learning_rate": 0.00041456019372784086,
+ "loss": 2.1088931560516357,
+ "step": 1422
+ },
+ {
+ "epoch": 19.766550522648085,
+ "grad_norm": 0.05810244753956795,
+ "learning_rate": 0.0004143130837574543,
+ "loss": 2.1019372940063477,
+ "step": 1423
+ },
+ {
+ "epoch": 19.78048780487805,
+ "grad_norm": 0.05894653871655464,
+ "learning_rate": 0.0004140658841041267,
+ "loss": 2.1125125885009766,
+ "step": 1424
+ },
+ {
+ "epoch": 19.794425087108014,
+ "grad_norm": 0.05772726237773895,
+ "learning_rate": 0.0004138185949670224,
+ "loss": 2.126194477081299,
+ "step": 1425
+ },
+ {
+ "epoch": 19.808362369337978,
+ "grad_norm": 0.058502763509750366,
+ "learning_rate": 0.00041357121654537766,
+ "loss": 2.110621452331543,
+ "step": 1426
+ },
+ {
+ "epoch": 19.822299651567945,
+ "grad_norm": 0.058296941220760345,
+ "learning_rate": 0.00041332374903850104,
+ "loss": 2.1034765243530273,
+ "step": 1427
+ },
+ {
+ "epoch": 19.83623693379791,
+ "grad_norm": 0.05595606938004494,
+ "learning_rate": 0.00041307619264577234,
+ "loss": 2.118297815322876,
+ "step": 1428
+ },
+ {
+ "epoch": 19.850174216027874,
+ "grad_norm": 0.0563458688557148,
+ "learning_rate": 0.0004128285475666436,
+ "loss": 2.1122255325317383,
+ "step": 1429
+ },
+ {
+ "epoch": 19.86411149825784,
+ "grad_norm": 0.05421055108308792,
+ "learning_rate": 0.0004125808140006378,
+ "loss": 2.103970527648926,
+ "step": 1430
+ },
+ {
+ "epoch": 19.878048780487806,
+ "grad_norm": 0.05633455142378807,
+ "learning_rate": 0.0004123329921473494,
+ "loss": 2.11661434173584,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89198606271777,
+ "grad_norm": 0.05797342583537102,
+ "learning_rate": 0.0004120850822064439,
+ "loss": 2.1021676063537598,
+ "step": 1432
+ },
+ {
+ "epoch": 19.905923344947734,
+ "grad_norm": 0.056061360985040665,
+ "learning_rate": 0.00041183708437765815,
+ "loss": 2.123298406600952,
+ "step": 1433
+ },
+ {
+ "epoch": 19.9198606271777,
+ "grad_norm": 0.05381599813699722,
+ "learning_rate": 0.00041158899886079925,
+ "loss": 2.120389938354492,
+ "step": 1434
+ },
+ {
+ "epoch": 19.933797909407666,
+ "grad_norm": 0.05545654520392418,
+ "learning_rate": 0.00041134082585574534,
+ "loss": 2.1180779933929443,
+ "step": 1435
+ },
+ {
+ "epoch": 19.94773519163763,
+ "grad_norm": 0.056983016431331635,
+ "learning_rate": 0.00041109256556244497,
+ "loss": 2.118905544281006,
+ "step": 1436
+ },
+ {
+ "epoch": 19.961672473867594,
+ "grad_norm": 0.0575285367667675,
+ "learning_rate": 0.00041084421818091685,
+ "loss": 2.1049699783325195,
+ "step": 1437
+ },
+ {
+ "epoch": 19.975609756097562,
+ "grad_norm": 0.057964932173490524,
+ "learning_rate": 0.0004105957839112501,
+ "loss": 2.1140224933624268,
+ "step": 1438
+ },
+ {
+ "epoch": 19.989547038327526,
+ "grad_norm": 0.05869961529970169,
+ "learning_rate": 0.0004103472629536036,
+ "loss": 2.1089744567871094,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.04450551047921181,
+ "learning_rate": 0.0004100986555082063,
+ "loss": 1.579450249671936,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 0.6265780925750732,
+ "eval_runtime": 34.9259,
+ "eval_samples_per_second": 69.92,
+ "eval_steps_per_second": 0.573,
+ "step": 1440
+ },
+ {
+ "epoch": 20.013937282229964,
+ "grad_norm": 0.05954804643988609,
+ "learning_rate": 0.0004098499617753567,
+ "loss": 2.062889575958252,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027874564459932,
+ "grad_norm": 0.07035746425390244,
+ "learning_rate": 0.00040960118195542273,
+ "loss": 2.0443758964538574,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041811846689896,
+ "grad_norm": 0.0653388574719429,
+ "learning_rate": 0.00040935231624884204,
+ "loss": 2.0611963272094727,
+ "step": 1443
+ },
+ {
+ "epoch": 20.05574912891986,
+ "grad_norm": 0.06305127590894699,
+ "learning_rate": 0.0004091033648561211,
+ "loss": 2.0648036003112793,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069686411149824,
+ "grad_norm": 0.05987029895186424,
+ "learning_rate": 0.00040885432797783543,
+ "loss": 2.059682607650757,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083623693379792,
+ "grad_norm": 0.06469618529081345,
+ "learning_rate": 0.0004086052058146297,
+ "loss": 2.0656521320343018,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097560975609756,
+ "grad_norm": 0.05834262818098068,
+ "learning_rate": 0.00040835599856721725,
+ "loss": 2.0583415031433105,
+ "step": 1447
+ },
+ {
+ "epoch": 20.11149825783972,
+ "grad_norm": 0.06026774272322655,
+ "learning_rate": 0.00040810670643637954,
+ "loss": 2.0644960403442383,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125435540069688,
+ "grad_norm": 0.06032145023345947,
+ "learning_rate": 0.000407857329622967,
+ "loss": 2.050269842147827,
+ "step": 1449
+ },
+ {
+ "epoch": 20.139372822299652,
+ "grad_norm": 0.05611831694841385,
+ "learning_rate": 0.00040760786832789786,
+ "loss": 2.0559628009796143,
+ "step": 1450
+ },
+ {
+ "epoch": 20.153310104529616,
+ "grad_norm": 0.06046713516116142,
+ "learning_rate": 0.0004073583227521588,
+ "loss": 2.06439471244812,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16724738675958,
+ "grad_norm": 0.06147446483373642,
+ "learning_rate": 0.0004071086930968039,
+ "loss": 2.0606837272644043,
+ "step": 1452
+ },
+ {
+ "epoch": 20.181184668989548,
+ "grad_norm": 0.05967561900615692,
+ "learning_rate": 0.00040685897956295545,
+ "loss": 2.0494980812072754,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195121951219512,
+ "grad_norm": 0.05903508514165878,
+ "learning_rate": 0.0004066091823518031,
+ "loss": 2.059744358062744,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209059233449477,
+ "grad_norm": 0.060008060187101364,
+ "learning_rate": 0.00040635930166460385,
+ "loss": 2.0736231803894043,
+ "step": 1455
+ },
+ {
+ "epoch": 20.222996515679444,
+ "grad_norm": 0.057375747710466385,
+ "learning_rate": 0.00040610933770268226,
+ "loss": 2.062077045440674,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23693379790941,
+ "grad_norm": 0.05929991975426674,
+ "learning_rate": 0.00040585929066742964,
+ "loss": 2.059680938720703,
+ "step": 1457
+ },
+ {
+ "epoch": 20.250871080139373,
+ "grad_norm": 0.06615032255649567,
+ "learning_rate": 0.00040560916076030435,
+ "loss": 2.080033302307129,
+ "step": 1458
+ },
+ {
+ "epoch": 20.264808362369337,
+ "grad_norm": 0.06465113162994385,
+ "learning_rate": 0.00040535894818283154,
+ "loss": 2.0724852085113525,
+ "step": 1459
+ },
+ {
+ "epoch": 20.278745644599304,
+ "grad_norm": 0.0641520619392395,
+ "learning_rate": 0.0004051086531366031,
+ "loss": 2.0535552501678467,
+ "step": 1460
+ },
+ {
+ "epoch": 20.29268292682927,
+ "grad_norm": 0.060508403927087784,
+ "learning_rate": 0.000404858275823277,
+ "loss": 2.0627613067626953,
+ "step": 1461
+ },
+ {
+ "epoch": 20.306620209059233,
+ "grad_norm": 0.06028459966182709,
+ "learning_rate": 0.000404607816444578,
+ "loss": 2.062082290649414,
+ "step": 1462
+ },
+ {
+ "epoch": 20.320557491289197,
+ "grad_norm": 0.06797714531421661,
+ "learning_rate": 0.00040435727520229644,
+ "loss": 2.068223476409912,
+ "step": 1463
+ },
+ {
+ "epoch": 20.334494773519165,
+ "grad_norm": 0.07491812855005264,
+ "learning_rate": 0.0004041066522982891,
+ "loss": 2.0639474391937256,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34843205574913,
+ "grad_norm": 0.06413327902555466,
+ "learning_rate": 0.000403855947934478,
+ "loss": 2.0727763175964355,
+ "step": 1465
+ },
+ {
+ "epoch": 20.362369337979093,
+ "grad_norm": 0.05947510898113251,
+ "learning_rate": 0.00040360516231285155,
+ "loss": 2.0872607231140137,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37630662020906,
+ "grad_norm": 0.0680336281657219,
+ "learning_rate": 0.00040335429563546286,
+ "loss": 2.07262921333313,
+ "step": 1467
+ },
+ {
+ "epoch": 20.390243902439025,
+ "grad_norm": 0.06363389641046524,
+ "learning_rate": 0.0004031033481044308,
+ "loss": 2.071188449859619,
+ "step": 1468
+ },
+ {
+ "epoch": 20.40418118466899,
+ "grad_norm": 0.057794757187366486,
+ "learning_rate": 0.00040285231992193924,
+ "loss": 2.0776638984680176,
+ "step": 1469
+ },
+ {
+ "epoch": 20.418118466898953,
+ "grad_norm": 0.06159241497516632,
+ "learning_rate": 0.0004026012112902372,
+ "loss": 2.076610565185547,
+ "step": 1470
+ },
+ {
+ "epoch": 20.43205574912892,
+ "grad_norm": 0.05898696929216385,
+ "learning_rate": 0.0004023500224116381,
+ "loss": 2.0713918209075928,
+ "step": 1471
+ },
+ {
+ "epoch": 20.445993031358885,
+ "grad_norm": 0.059070803225040436,
+ "learning_rate": 0.00040209875348852037,
+ "loss": 2.073078155517578,
+ "step": 1472
+ },
+ {
+ "epoch": 20.45993031358885,
+ "grad_norm": 0.06064842641353607,
+ "learning_rate": 0.00040184740472332705,
+ "loss": 2.070858955383301,
+ "step": 1473
+ },
+ {
+ "epoch": 20.473867595818817,
+ "grad_norm": 0.060642652213573456,
+ "learning_rate": 0.000401595976318565,
+ "loss": 2.0703179836273193,
+ "step": 1474
+ },
+ {
+ "epoch": 20.48780487804878,
+ "grad_norm": 0.06281708180904388,
+ "learning_rate": 0.00040134446847680584,
+ "loss": 2.0891528129577637,
+ "step": 1475
+ },
+ {
+ "epoch": 20.501742160278745,
+ "grad_norm": 0.06964185833930969,
+ "learning_rate": 0.0004010928814006846,
+ "loss": 2.0769782066345215,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51567944250871,
+ "grad_norm": 0.0709647610783577,
+ "learning_rate": 0.0004008412152929007,
+ "loss": 2.087449550628662,
+ "step": 1477
+ },
+ {
+ "epoch": 20.529616724738677,
+ "grad_norm": 0.0604700967669487,
+ "learning_rate": 0.0004005894703562168,
+ "loss": 2.0697526931762695,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54355400696864,
+ "grad_norm": 0.066826231777668,
+ "learning_rate": 0.0004003376467934593,
+ "loss": 2.0674479007720947,
+ "step": 1479
+ },
+ {
+ "epoch": 20.557491289198605,
+ "grad_norm": 0.06124534085392952,
+ "learning_rate": 0.0004000857448075178,
+ "loss": 2.084949016571045,
+ "step": 1480
+ },
+ {
+ "epoch": 20.571428571428573,
+ "grad_norm": 0.0605972483754158,
+ "learning_rate": 0.0003998337646013455,
+ "loss": 2.0836410522460938,
+ "step": 1481
+ },
+ {
+ "epoch": 20.585365853658537,
+ "grad_norm": 0.05937602370977402,
+ "learning_rate": 0.00039958170637795806,
+ "loss": 2.085038185119629,
+ "step": 1482
+ },
+ {
+ "epoch": 20.5993031358885,
+ "grad_norm": 0.06045088917016983,
+ "learning_rate": 0.0003993295703404341,
+ "loss": 2.0811872482299805,
+ "step": 1483
+ },
+ {
+ "epoch": 20.613240418118465,
+ "grad_norm": 0.06080574169754982,
+ "learning_rate": 0.00039907735669191544,
+ "loss": 2.072998523712158,
+ "step": 1484
+ },
+ {
+ "epoch": 20.627177700348433,
+ "grad_norm": 0.06071743369102478,
+ "learning_rate": 0.00039882506563560573,
+ "loss": 2.092665672302246,
+ "step": 1485
+ },
+ {
+ "epoch": 20.641114982578397,
+ "grad_norm": 0.060432225465774536,
+ "learning_rate": 0.0003985726973747715,
+ "loss": 2.080765962600708,
+ "step": 1486
+ },
+ {
+ "epoch": 20.65505226480836,
+ "grad_norm": 0.05753706395626068,
+ "learning_rate": 0.00039832025211274113,
+ "loss": 2.0854883193969727,
+ "step": 1487
+ },
+ {
+ "epoch": 20.66898954703833,
+ "grad_norm": 0.05913816764950752,
+ "learning_rate": 0.00039806773005290544,
+ "loss": 2.0852391719818115,
+ "step": 1488
+ },
+ {
+ "epoch": 20.682926829268293,
+ "grad_norm": 0.057243719696998596,
+ "learning_rate": 0.0003978151313987168,
+ "loss": 2.069157600402832,
+ "step": 1489
+ },
+ {
+ "epoch": 20.696864111498257,
+ "grad_norm": 0.058420926332473755,
+ "learning_rate": 0.00039756245635368933,
+ "loss": 2.084345579147339,
+ "step": 1490
+ },
+ {
+ "epoch": 20.71080139372822,
+ "grad_norm": 0.057442132383584976,
+ "learning_rate": 0.00039730970512139876,
+ "loss": 2.091980218887329,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72473867595819,
+ "grad_norm": 0.05517714098095894,
+ "learning_rate": 0.0003970568779054822,
+ "loss": 2.078554153442383,
+ "step": 1492
+ },
+ {
+ "epoch": 20.738675958188153,
+ "grad_norm": 0.055716823786497116,
+ "learning_rate": 0.000396803974909638,
+ "loss": 2.094151735305786,
+ "step": 1493
+ },
+ {
+ "epoch": 20.752613240418118,
+ "grad_norm": 0.056730274111032486,
+ "learning_rate": 0.0003965509963376255,
+ "loss": 2.068563461303711,
+ "step": 1494
+ },
+ {
+ "epoch": 20.766550522648085,
+ "grad_norm": 0.05755753442645073,
+ "learning_rate": 0.000396297942393265,
+ "loss": 2.088921070098877,
+ "step": 1495
+ },
+ {
+ "epoch": 20.78048780487805,
+ "grad_norm": 0.05533437803387642,
+ "learning_rate": 0.0003960448132804375,
+ "loss": 2.0941689014434814,
+ "step": 1496
+ },
+ {
+ "epoch": 20.794425087108014,
+ "grad_norm": 0.06088414788246155,
+ "learning_rate": 0.0003957916092030845,
+ "loss": 2.0830764770507812,
+ "step": 1497
+ },
+ {
+ "epoch": 20.808362369337978,
+ "grad_norm": 0.05863271281123161,
+ "learning_rate": 0.00039553833036520803,
+ "loss": 2.090672016143799,
+ "step": 1498
+ },
+ {
+ "epoch": 20.822299651567945,
+ "grad_norm": 0.05960002914071083,
+ "learning_rate": 0.0003952849769708702,
+ "loss": 2.0864553451538086,
+ "step": 1499
+ },
+ {
+ "epoch": 20.83623693379791,
+ "grad_norm": 0.05506768077611923,
+ "learning_rate": 0.0003950315492241932,
+ "loss": 2.094161033630371,
+ "step": 1500
+ },
+ {
+ "epoch": 20.850174216027874,
+ "grad_norm": 0.05862478166818619,
+ "learning_rate": 0.0003947780473293593,
+ "loss": 2.115245819091797,
+ "step": 1501
+ },
+ {
+ "epoch": 20.86411149825784,
+ "grad_norm": 0.05872654542326927,
+ "learning_rate": 0.00039452447149061054,
+ "loss": 2.0812911987304688,
+ "step": 1502
+ },
+ {
+ "epoch": 20.878048780487806,
+ "grad_norm": 0.05998777225613594,
+ "learning_rate": 0.0003942708219122481,
+ "loss": 2.095242977142334,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89198606271777,
+ "grad_norm": 0.056095417588949203,
+ "learning_rate": 0.000394017098798633,
+ "loss": 2.092863082885742,
+ "step": 1504
+ },
+ {
+ "epoch": 20.905923344947734,
+ "grad_norm": 0.05556971952319145,
+ "learning_rate": 0.0003937633023541854,
+ "loss": 2.097186803817749,
+ "step": 1505
+ },
+ {
+ "epoch": 20.9198606271777,
+ "grad_norm": 0.055835824459791183,
+ "learning_rate": 0.0003935094327833845,
+ "loss": 2.074395179748535,
+ "step": 1506
+ },
+ {
+ "epoch": 20.933797909407666,
+ "grad_norm": 0.05587809532880783,
+ "learning_rate": 0.0003932554902907683,
+ "loss": 2.079871416091919,
+ "step": 1507
+ },
+ {
+ "epoch": 20.94773519163763,
+ "grad_norm": 0.05581265687942505,
+ "learning_rate": 0.0003930014750809338,
+ "loss": 2.097808837890625,
+ "step": 1508
+ },
+ {
+ "epoch": 20.961672473867594,
+ "grad_norm": 0.056034673005342484,
+ "learning_rate": 0.0003927473873585365,
+ "loss": 2.1134562492370605,
+ "step": 1509
+ },
+ {
+ "epoch": 20.975609756097562,
+ "grad_norm": 0.05605486407876015,
+ "learning_rate": 0.0003924932273282903,
+ "loss": 2.085361957550049,
+ "step": 1510
+ },
+ {
+ "epoch": 20.989547038327526,
+ "grad_norm": 0.056133050471544266,
+ "learning_rate": 0.00039223899519496723,
+ "loss": 2.0866618156433105,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.045700959861278534,
+ "learning_rate": 0.00039198469116339757,
+ "loss": 1.5582417249679565,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 0.6279418468475342,
+ "eval_runtime": 36.1632,
+ "eval_samples_per_second": 67.527,
+ "eval_steps_per_second": 0.553,
+ "step": 1512
+ },
+ {
+ "epoch": 21.013937282229964,
+ "grad_norm": 0.05471052974462509,
+ "learning_rate": 0.0003917303154384694,
+ "loss": 2.033940315246582,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027874564459932,
+ "grad_norm": 0.06705708801746368,
+ "learning_rate": 0.00039147586822512885,
+ "loss": 2.0360937118530273,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041811846689896,
+ "grad_norm": 0.06307924538850784,
+ "learning_rate": 0.0003912213497283793,
+ "loss": 2.0500328540802,
+ "step": 1515
+ },
+ {
+ "epoch": 21.05574912891986,
+ "grad_norm": 0.06228886917233467,
+ "learning_rate": 0.0003909667601532819,
+ "loss": 2.0308260917663574,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069686411149824,
+ "grad_norm": 0.0606699101626873,
+ "learning_rate": 0.00039071209970495445,
+ "loss": 2.0328145027160645,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083623693379792,
+ "grad_norm": 0.060405075550079346,
+ "learning_rate": 0.00039045736858857273,
+ "loss": 2.0279717445373535,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097560975609756,
+ "grad_norm": 0.0611112080514431,
+ "learning_rate": 0.0003902025670093687,
+ "loss": 2.0422918796539307,
+ "step": 1519
+ },
+ {
+ "epoch": 21.11149825783972,
+ "grad_norm": 0.05837974697351456,
+ "learning_rate": 0.00038994769517263156,
+ "loss": 2.048844337463379,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125435540069688,
+ "grad_norm": 0.06053513288497925,
+ "learning_rate": 0.0003896927532837069,
+ "loss": 2.0358529090881348,
+ "step": 1521
+ },
+ {
+ "epoch": 21.139372822299652,
+ "grad_norm": 0.06003211438655853,
+ "learning_rate": 0.0003894377415479967,
+ "loss": 2.042120933532715,
+ "step": 1522
+ },
+ {
+ "epoch": 21.153310104529616,
+ "grad_norm": 0.060802191495895386,
+ "learning_rate": 0.00038918266017095936,
+ "loss": 2.046935558319092,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16724738675958,
+ "grad_norm": 0.06367085129022598,
+ "learning_rate": 0.0003889275093581096,
+ "loss": 2.049290180206299,
+ "step": 1524
+ },
+ {
+ "epoch": 21.181184668989548,
+ "grad_norm": 0.05851449444890022,
+ "learning_rate": 0.00038867228931501737,
+ "loss": 2.052337169647217,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195121951219512,
+ "grad_norm": 0.05873304605484009,
+ "learning_rate": 0.0003884170002473091,
+ "loss": 2.0443310737609863,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209059233449477,
+ "grad_norm": 0.062345489859580994,
+ "learning_rate": 0.0003881616423606666,
+ "loss": 2.0309629440307617,
+ "step": 1527
+ },
+ {
+ "epoch": 21.222996515679444,
+ "grad_norm": 0.06157859042286873,
+ "learning_rate": 0.00038790621586082697,
+ "loss": 2.040987491607666,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23693379790941,
+ "grad_norm": 0.06326454132795334,
+ "learning_rate": 0.0003876507209535829,
+ "loss": 2.0339348316192627,
+ "step": 1529
+ },
+ {
+ "epoch": 21.250871080139373,
+ "grad_norm": 0.05967864394187927,
+ "learning_rate": 0.00038739515784478186,
+ "loss": 2.0340347290039062,
+ "step": 1530
+ },
+ {
+ "epoch": 21.264808362369337,
+ "grad_norm": 0.06237480416893959,
+ "learning_rate": 0.00038713952674032654,
+ "loss": 2.0541834831237793,
+ "step": 1531
+ },
+ {
+ "epoch": 21.278745644599304,
+ "grad_norm": 0.06269778311252594,
+ "learning_rate": 0.0003868838278461743,
+ "loss": 2.0332889556884766,
+ "step": 1532
+ },
+ {
+ "epoch": 21.29268292682927,
+ "grad_norm": 0.058931149542331696,
+ "learning_rate": 0.0003866280613683371,
+ "loss": 2.046989917755127,
+ "step": 1533
+ },
+ {
+ "epoch": 21.306620209059233,
+ "grad_norm": 0.05884654074907303,
+ "learning_rate": 0.00038637222751288126,
+ "loss": 2.0413711071014404,
+ "step": 1534
+ },
+ {
+ "epoch": 21.320557491289197,
+ "grad_norm": 0.06431130319833755,
+ "learning_rate": 0.0003861163264859277,
+ "loss": 2.043229103088379,
+ "step": 1535
+ },
+ {
+ "epoch": 21.334494773519165,
+ "grad_norm": 0.061834171414375305,
+ "learning_rate": 0.0003858603584936511,
+ "loss": 2.0472874641418457,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34843205574913,
+ "grad_norm": 0.058680370450019836,
+ "learning_rate": 0.0003856043237422803,
+ "loss": 2.058084487915039,
+ "step": 1537
+ },
+ {
+ "epoch": 21.362369337979093,
+ "grad_norm": 0.0592305064201355,
+ "learning_rate": 0.0003853482224380978,
+ "loss": 2.0515503883361816,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37630662020906,
+ "grad_norm": 0.05994146317243576,
+ "learning_rate": 0.00038509205478744,
+ "loss": 2.0377187728881836,
+ "step": 1539
+ },
+ {
+ "epoch": 21.390243902439025,
+ "grad_norm": 0.06389214843511581,
+ "learning_rate": 0.0003848358209966963,
+ "loss": 2.0533361434936523,
+ "step": 1540
+ },
+ {
+ "epoch": 21.40418118466899,
+ "grad_norm": 0.06090407446026802,
+ "learning_rate": 0.0003845795212723099,
+ "loss": 2.0553441047668457,
+ "step": 1541
+ },
+ {
+ "epoch": 21.418118466898953,
+ "grad_norm": 0.06273195147514343,
+ "learning_rate": 0.00038432315582077664,
+ "loss": 2.0590620040893555,
+ "step": 1542
+ },
+ {
+ "epoch": 21.43205574912892,
+ "grad_norm": 0.06525216996669769,
+ "learning_rate": 0.0003840667248486456,
+ "loss": 2.0517024993896484,
+ "step": 1543
+ },
+ {
+ "epoch": 21.445993031358885,
+ "grad_norm": 0.06123936176300049,
+ "learning_rate": 0.0003838102285625186,
+ "loss": 2.054276943206787,
+ "step": 1544
+ },
+ {
+ "epoch": 21.45993031358885,
+ "grad_norm": 0.06384961307048798,
+ "learning_rate": 0.00038355366716905006,
+ "loss": 2.058122396469116,
+ "step": 1545
+ },
+ {
+ "epoch": 21.473867595818817,
+ "grad_norm": 0.06391091644763947,
+ "learning_rate": 0.0003832970408749467,
+ "loss": 2.061744213104248,
+ "step": 1546
+ },
+ {
+ "epoch": 21.48780487804878,
+ "grad_norm": 0.06393741071224213,
+ "learning_rate": 0.00038304034988696816,
+ "loss": 2.0698375701904297,
+ "step": 1547
+ },
+ {
+ "epoch": 21.501742160278745,
+ "grad_norm": 0.06098850816488266,
+ "learning_rate": 0.00038278359441192516,
+ "loss": 2.0527985095977783,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51567944250871,
+ "grad_norm": 0.059852417558431625,
+ "learning_rate": 0.00038252677465668136,
+ "loss": 2.0557432174682617,
+ "step": 1549
+ },
+ {
+ "epoch": 21.529616724738677,
+ "grad_norm": 0.063257597386837,
+ "learning_rate": 0.00038226989082815156,
+ "loss": 2.0541868209838867,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54355400696864,
+ "grad_norm": 0.06203039735555649,
+ "learning_rate": 0.00038201294313330245,
+ "loss": 2.0554230213165283,
+ "step": 1551
+ },
+ {
+ "epoch": 21.557491289198605,
+ "grad_norm": 0.06832246482372284,
+ "learning_rate": 0.00038175593177915227,
+ "loss": 2.0623044967651367,
+ "step": 1552
+ },
+ {
+ "epoch": 21.571428571428573,
+ "grad_norm": 0.0681714415550232,
+ "learning_rate": 0.0003814988569727704,
+ "loss": 2.0611777305603027,
+ "step": 1553
+ },
+ {
+ "epoch": 21.585365853658537,
+ "grad_norm": 0.06245206668972969,
+ "learning_rate": 0.0003812417189212773,
+ "loss": 2.0653200149536133,
+ "step": 1554
+ },
+ {
+ "epoch": 21.5993031358885,
+ "grad_norm": 0.06456883996725082,
+ "learning_rate": 0.00038098451783184447,
+ "loss": 2.0564777851104736,
+ "step": 1555
+ },
+ {
+ "epoch": 21.613240418118465,
+ "grad_norm": 0.06580620259046555,
+ "learning_rate": 0.00038072725391169416,
+ "loss": 2.0669004917144775,
+ "step": 1556
+ },
+ {
+ "epoch": 21.627177700348433,
+ "grad_norm": 0.0615418441593647,
+ "learning_rate": 0.0003804699273680994,
+ "loss": 2.062901258468628,
+ "step": 1557
+ },
+ {
+ "epoch": 21.641114982578397,
+ "grad_norm": 0.0597493015229702,
+ "learning_rate": 0.0003802125384083834,
+ "loss": 2.051572799682617,
+ "step": 1558
+ },
+ {
+ "epoch": 21.65505226480836,
+ "grad_norm": 0.05919422581791878,
+ "learning_rate": 0.0003799550872399197,
+ "loss": 2.0755348205566406,
+ "step": 1559
+ },
+ {
+ "epoch": 21.66898954703833,
+ "grad_norm": 0.0618102103471756,
+ "learning_rate": 0.0003796975740701323,
+ "loss": 2.0373353958129883,
+ "step": 1560
+ },
+ {
+ "epoch": 21.682926829268293,
+ "grad_norm": 0.060938529670238495,
+ "learning_rate": 0.0003794399991064948,
+ "loss": 2.046900749206543,
+ "step": 1561
+ },
+ {
+ "epoch": 21.696864111498257,
+ "grad_norm": 0.059858448803424835,
+ "learning_rate": 0.00037918236255653074,
+ "loss": 2.0637502670288086,
+ "step": 1562
+ },
+ {
+ "epoch": 21.71080139372822,
+ "grad_norm": 0.061770256608724594,
+ "learning_rate": 0.00037892466462781306,
+ "loss": 2.0593981742858887,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72473867595819,
+ "grad_norm": 0.06062103807926178,
+ "learning_rate": 0.00037866690552796446,
+ "loss": 2.0643060207366943,
+ "step": 1564
+ },
+ {
+ "epoch": 21.738675958188153,
+ "grad_norm": 0.05910053849220276,
+ "learning_rate": 0.00037840908546465696,
+ "loss": 2.06599497795105,
+ "step": 1565
+ },
+ {
+ "epoch": 21.752613240418118,
+ "grad_norm": 0.057800937443971634,
+ "learning_rate": 0.0003781512046456111,
+ "loss": 2.057941198348999,
+ "step": 1566
+ },
+ {
+ "epoch": 21.766550522648085,
+ "grad_norm": 0.05939284712076187,
+ "learning_rate": 0.0003778932632785972,
+ "loss": 2.057325601577759,
+ "step": 1567
+ },
+ {
+ "epoch": 21.78048780487805,
+ "grad_norm": 0.06094905734062195,
+ "learning_rate": 0.00037763526157143376,
+ "loss": 2.058422803878784,
+ "step": 1568
+ },
+ {
+ "epoch": 21.794425087108014,
+ "grad_norm": 0.060869570821523666,
+ "learning_rate": 0.00037737719973198825,
+ "loss": 2.0537140369415283,
+ "step": 1569
+ },
+ {
+ "epoch": 21.808362369337978,
+ "grad_norm": 0.05886754021048546,
+ "learning_rate": 0.0003771190779681762,
+ "loss": 2.077362537384033,
+ "step": 1570
+ },
+ {
+ "epoch": 21.822299651567945,
+ "grad_norm": 0.061772339046001434,
+ "learning_rate": 0.0003768608964879619,
+ "loss": 2.067615032196045,
+ "step": 1571
+ },
+ {
+ "epoch": 21.83623693379791,
+ "grad_norm": 0.06018555909395218,
+ "learning_rate": 0.00037660265549935724,
+ "loss": 2.0696468353271484,
+ "step": 1572
+ },
+ {
+ "epoch": 21.850174216027874,
+ "grad_norm": 0.058483004570007324,
+ "learning_rate": 0.00037634435521042257,
+ "loss": 2.085695505142212,
+ "step": 1573
+ },
+ {
+ "epoch": 21.86411149825784,
+ "grad_norm": 0.06118083372712135,
+ "learning_rate": 0.0003760859958292656,
+ "loss": 2.0818231105804443,
+ "step": 1574
+ },
+ {
+ "epoch": 21.878048780487806,
+ "grad_norm": 0.057427361607551575,
+ "learning_rate": 0.000375827577564042,
+ "loss": 2.0525319576263428,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89198606271777,
+ "grad_norm": 0.06218957528471947,
+ "learning_rate": 0.0003755691006229545,
+ "loss": 2.0691938400268555,
+ "step": 1576
+ },
+ {
+ "epoch": 21.905923344947734,
+ "grad_norm": 0.05727244168519974,
+ "learning_rate": 0.0003753105652142534,
+ "loss": 2.0820717811584473,
+ "step": 1577
+ },
+ {
+ "epoch": 21.9198606271777,
+ "grad_norm": 0.05988473817706108,
+ "learning_rate": 0.000375051971546236,
+ "loss": 2.08701753616333,
+ "step": 1578
+ },
+ {
+ "epoch": 21.933797909407666,
+ "grad_norm": 0.05977068468928337,
+ "learning_rate": 0.0003747933198272465,
+ "loss": 2.0772976875305176,
+ "step": 1579
+ },
+ {
+ "epoch": 21.94773519163763,
+ "grad_norm": 0.05766184255480766,
+ "learning_rate": 0.00037453461026567604,
+ "loss": 2.0779075622558594,
+ "step": 1580
+ },
+ {
+ "epoch": 21.961672473867594,
+ "grad_norm": 0.06194579601287842,
+ "learning_rate": 0.00037427584306996196,
+ "loss": 2.066725254058838,
+ "step": 1581
+ },
+ {
+ "epoch": 21.975609756097562,
+ "grad_norm": 0.06117486208677292,
+ "learning_rate": 0.0003740170184485888,
+ "loss": 2.063469409942627,
+ "step": 1582
+ },
+ {
+ "epoch": 21.989547038327526,
+ "grad_norm": 0.05828284099698067,
+ "learning_rate": 0.0003737581366100864,
+ "loss": 2.0690245628356934,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.04717395827174187,
+ "learning_rate": 0.0003734991977630315,
+ "loss": 1.5481253862380981,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 0.6287422180175781,
+ "eval_runtime": 36.8966,
+ "eval_samples_per_second": 66.185,
+ "eval_steps_per_second": 0.542,
+ "step": 1584
+ },
+ {
+ "epoch": 22.013937282229964,
+ "grad_norm": 0.05935833230614662,
+ "learning_rate": 0.0003732402021160463,
+ "loss": 2.0213916301727295,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027874564459932,
+ "grad_norm": 0.0647081509232521,
+ "learning_rate": 0.00037298114987779885,
+ "loss": 2.021193504333496,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041811846689896,
+ "grad_norm": 0.060830891132354736,
+ "learning_rate": 0.000372722041257003,
+ "loss": 2.014934539794922,
+ "step": 1587
+ },
+ {
+ "epoch": 22.05574912891986,
+ "grad_norm": 0.0575600229203701,
+ "learning_rate": 0.00037246287646241783,
+ "loss": 2.0201141834259033,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069686411149824,
+ "grad_norm": 0.05999648571014404,
+ "learning_rate": 0.0003722036557028478,
+ "loss": 2.01477313041687,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083623693379792,
+ "grad_norm": 0.06243257597088814,
+ "learning_rate": 0.0003719443791871422,
+ "loss": 2.0069234371185303,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097560975609756,
+ "grad_norm": 0.061873242259025574,
+ "learning_rate": 0.0003716850471241958,
+ "loss": 2.0218544006347656,
+ "step": 1591
+ },
+ {
+ "epoch": 22.11149825783972,
+ "grad_norm": 0.0562879703938961,
+ "learning_rate": 0.0003714256597229474,
+ "loss": 2.027651786804199,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125435540069688,
+ "grad_norm": 0.06129061430692673,
+ "learning_rate": 0.0003711662171923809,
+ "loss": 2.02847957611084,
+ "step": 1593
+ },
+ {
+ "epoch": 22.139372822299652,
+ "grad_norm": 0.06575217843055725,
+ "learning_rate": 0.0003709067197415244,
+ "loss": 2.0157370567321777,
+ "step": 1594
+ },
+ {
+ "epoch": 22.153310104529616,
+ "grad_norm": 0.06006300821900368,
+ "learning_rate": 0.00037064716757945036,
+ "loss": 2.0212819576263428,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16724738675958,
+ "grad_norm": 0.05905022844672203,
+ "learning_rate": 0.0003703875609152753,
+ "loss": 2.019151449203491,
+ "step": 1596
+ },
+ {
+ "epoch": 22.181184668989548,
+ "grad_norm": 0.05942187085747719,
+ "learning_rate": 0.0003701278999581595,
+ "loss": 2.0100960731506348,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195121951219512,
+ "grad_norm": 0.06255407631397247,
+ "learning_rate": 0.0003698681849173073,
+ "loss": 2.0253348350524902,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209059233449477,
+ "grad_norm": 0.06482044607400894,
+ "learning_rate": 0.0003696084160019662,
+ "loss": 2.0148420333862305,
+ "step": 1599
+ },
+ {
+ "epoch": 22.222996515679444,
+ "grad_norm": 0.0601821169257164,
+ "learning_rate": 0.0003693485934214274,
+ "loss": 2.023470640182495,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23693379790941,
+ "grad_norm": 0.06029169633984566,
+ "learning_rate": 0.0003690887173850253,
+ "loss": 2.009469985961914,
+ "step": 1601
+ },
+ {
+ "epoch": 22.250871080139373,
+ "grad_norm": 0.059910114854574203,
+ "learning_rate": 0.0003688287881021374,
+ "loss": 2.035770893096924,
+ "step": 1602
+ },
+ {
+ "epoch": 22.264808362369337,
+ "grad_norm": 0.06215308979153633,
+ "learning_rate": 0.00036856880578218376,
+ "loss": 2.01731538772583,
+ "step": 1603
+ },
+ {
+ "epoch": 22.278745644599304,
+ "grad_norm": 0.06145225092768669,
+ "learning_rate": 0.00036830877063462786,
+ "loss": 2.026510715484619,
+ "step": 1604
+ },
+ {
+ "epoch": 22.29268292682927,
+ "grad_norm": 0.05880272388458252,
+ "learning_rate": 0.0003680486828689749,
+ "loss": 2.0214052200317383,
+ "step": 1605
+ },
+ {
+ "epoch": 22.306620209059233,
+ "grad_norm": 0.06154364347457886,
+ "learning_rate": 0.00036778854269477315,
+ "loss": 2.038039207458496,
+ "step": 1606
+ },
+ {
+ "epoch": 22.320557491289197,
+ "grad_norm": 0.06352122128009796,
+ "learning_rate": 0.0003675283503216127,
+ "loss": 2.0086398124694824,
+ "step": 1607
+ },
+ {
+ "epoch": 22.334494773519165,
+ "grad_norm": 0.06252473592758179,
+ "learning_rate": 0.000367268105959126,
+ "loss": 2.0344018936157227,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34843205574913,
+ "grad_norm": 0.05990692600607872,
+ "learning_rate": 0.00036700780981698705,
+ "loss": 2.030116558074951,
+ "step": 1609
+ },
+ {
+ "epoch": 22.362369337979093,
+ "grad_norm": 0.06241406500339508,
+ "learning_rate": 0.0003667474621049119,
+ "loss": 2.02555513381958,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37630662020906,
+ "grad_norm": 0.06356526166200638,
+ "learning_rate": 0.00036648706303265795,
+ "loss": 2.034946918487549,
+ "step": 1611
+ },
+ {
+ "epoch": 22.390243902439025,
+ "grad_norm": 0.05866849794983864,
+ "learning_rate": 0.000366226612810024,
+ "loss": 2.0180652141571045,
+ "step": 1612
+ },
+ {
+ "epoch": 22.40418118466899,
+ "grad_norm": 0.06021985039114952,
+ "learning_rate": 0.00036596611164685025,
+ "loss": 2.028763771057129,
+ "step": 1613
+ },
+ {
+ "epoch": 22.418118466898953,
+ "grad_norm": 0.0626717135310173,
+ "learning_rate": 0.0003657055597530175,
+ "loss": 2.021925926208496,
+ "step": 1614
+ },
+ {
+ "epoch": 22.43205574912892,
+ "grad_norm": 0.05952958017587662,
+ "learning_rate": 0.00036544495733844797,
+ "loss": 2.029926300048828,
+ "step": 1615
+ },
+ {
+ "epoch": 22.445993031358885,
+ "grad_norm": 0.06139490753412247,
+ "learning_rate": 0.000365184304613104,
+ "loss": 2.0357437133789062,
+ "step": 1616
+ },
+ {
+ "epoch": 22.45993031358885,
+ "grad_norm": 0.06750302016735077,
+ "learning_rate": 0.0003649236017869892,
+ "loss": 2.033015251159668,
+ "step": 1617
+ },
+ {
+ "epoch": 22.473867595818817,
+ "grad_norm": 0.06402213126420975,
+ "learning_rate": 0.00036466284907014685,
+ "loss": 2.0288286209106445,
+ "step": 1618
+ },
+ {
+ "epoch": 22.48780487804878,
+ "grad_norm": 0.06656284630298615,
+ "learning_rate": 0.0003644020466726608,
+ "loss": 2.035670042037964,
+ "step": 1619
+ },
+ {
+ "epoch": 22.501742160278745,
+ "grad_norm": 0.06058082729578018,
+ "learning_rate": 0.00036414119480465473,
+ "loss": 2.0248050689697266,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51567944250871,
+ "grad_norm": 0.0639055147767067,
+ "learning_rate": 0.0003638802936762925,
+ "loss": 2.0347347259521484,
+ "step": 1621
+ },
+ {
+ "epoch": 22.529616724738677,
+ "grad_norm": 0.06509086489677429,
+ "learning_rate": 0.0003636193434977771,
+ "loss": 2.0287723541259766,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54355400696864,
+ "grad_norm": 0.06115980073809624,
+ "learning_rate": 0.0003633583444793516,
+ "loss": 2.0428926944732666,
+ "step": 1623
+ },
+ {
+ "epoch": 22.557491289198605,
+ "grad_norm": 0.06231401860713959,
+ "learning_rate": 0.00036309729683129814,
+ "loss": 2.0409903526306152,
+ "step": 1624
+ },
+ {
+ "epoch": 22.571428571428573,
+ "grad_norm": 0.06252925843000412,
+ "learning_rate": 0.00036283620076393814,
+ "loss": 2.0263853073120117,
+ "step": 1625
+ },
+ {
+ "epoch": 22.585365853658537,
+ "grad_norm": 0.05840536579489708,
+ "learning_rate": 0.000362575056487632,
+ "loss": 2.0359339714050293,
+ "step": 1626
+ },
+ {
+ "epoch": 22.5993031358885,
+ "grad_norm": 0.06289584934711456,
+ "learning_rate": 0.00036231386421277877,
+ "loss": 2.041419267654419,
+ "step": 1627
+ },
+ {
+ "epoch": 22.613240418118465,
+ "grad_norm": 0.059172775596380234,
+ "learning_rate": 0.0003620526241498167,
+ "loss": 2.0285377502441406,
+ "step": 1628
+ },
+ {
+ "epoch": 22.627177700348433,
+ "grad_norm": 0.05929497256875038,
+ "learning_rate": 0.0003617913365092218,
+ "loss": 2.054593086242676,
+ "step": 1629
+ },
+ {
+ "epoch": 22.641114982578397,
+ "grad_norm": 0.05966512858867645,
+ "learning_rate": 0.0003615300015015091,
+ "loss": 2.0354065895080566,
+ "step": 1630
+ },
+ {
+ "epoch": 22.65505226480836,
+ "grad_norm": 0.060928668826818466,
+ "learning_rate": 0.0003612686193372312,
+ "loss": 2.0524067878723145,
+ "step": 1631
+ },
+ {
+ "epoch": 22.66898954703833,
+ "grad_norm": 0.06704723089933395,
+ "learning_rate": 0.00036100719022697924,
+ "loss": 2.0277299880981445,
+ "step": 1632
+ },
+ {
+ "epoch": 22.682926829268293,
+ "grad_norm": 0.0654405876994133,
+ "learning_rate": 0.0003607457143813819,
+ "loss": 2.0558719635009766,
+ "step": 1633
+ },
+ {
+ "epoch": 22.696864111498257,
+ "grad_norm": 0.06097044795751572,
+ "learning_rate": 0.00036048419201110553,
+ "loss": 2.064798593521118,
+ "step": 1634
+ },
+ {
+ "epoch": 22.71080139372822,
+ "grad_norm": 0.06433983147144318,
+ "learning_rate": 0.00036022262332685383,
+ "loss": 2.0563478469848633,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72473867595819,
+ "grad_norm": 0.0608518086373806,
+ "learning_rate": 0.0003599610085393681,
+ "loss": 2.034682273864746,
+ "step": 1636
+ },
+ {
+ "epoch": 22.738675958188153,
+ "grad_norm": 0.06357148289680481,
+ "learning_rate": 0.0003596993478594267,
+ "loss": 2.030651569366455,
+ "step": 1637
+ },
+ {
+ "epoch": 22.752613240418118,
+ "grad_norm": 0.05953045189380646,
+ "learning_rate": 0.0003594376414978447,
+ "loss": 2.046708345413208,
+ "step": 1638
+ },
+ {
+ "epoch": 22.766550522648085,
+ "grad_norm": 0.06323279440402985,
+ "learning_rate": 0.0003591758896654745,
+ "loss": 2.040714740753174,
+ "step": 1639
+ },
+ {
+ "epoch": 22.78048780487805,
+ "grad_norm": 0.05863328278064728,
+ "learning_rate": 0.0003589140925732045,
+ "loss": 2.0645852088928223,
+ "step": 1640
+ },
+ {
+ "epoch": 22.794425087108014,
+ "grad_norm": 0.058750979602336884,
+ "learning_rate": 0.0003586522504319602,
+ "loss": 2.0421950817108154,
+ "step": 1641
+ },
+ {
+ "epoch": 22.808362369337978,
+ "grad_norm": 0.06100532412528992,
+ "learning_rate": 0.0003583903634527029,
+ "loss": 2.037891387939453,
+ "step": 1642
+ },
+ {
+ "epoch": 22.822299651567945,
+ "grad_norm": 0.058944981545209885,
+ "learning_rate": 0.0003581284318464302,
+ "loss": 2.029283046722412,
+ "step": 1643
+ },
+ {
+ "epoch": 22.83623693379791,
+ "grad_norm": 0.060633257031440735,
+ "learning_rate": 0.00035786645582417564,
+ "loss": 2.058162212371826,
+ "step": 1644
+ },
+ {
+ "epoch": 22.850174216027874,
+ "grad_norm": 0.059548065066337585,
+ "learning_rate": 0.00035760443559700863,
+ "loss": 2.0538077354431152,
+ "step": 1645
+ },
+ {
+ "epoch": 22.86411149825784,
+ "grad_norm": 0.06102653965353966,
+ "learning_rate": 0.00035734237137603417,
+ "loss": 2.052565097808838,
+ "step": 1646
+ },
+ {
+ "epoch": 22.878048780487806,
+ "grad_norm": 0.05913171172142029,
+ "learning_rate": 0.0003570802633723927,
+ "loss": 2.0596346855163574,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89198606271777,
+ "grad_norm": 0.061698317527770996,
+ "learning_rate": 0.0003568181117972597,
+ "loss": 2.0622029304504395,
+ "step": 1648
+ },
+ {
+ "epoch": 22.905923344947734,
+ "grad_norm": 0.059588681906461716,
+ "learning_rate": 0.00035655591686184626,
+ "loss": 2.04315447807312,
+ "step": 1649
+ },
+ {
+ "epoch": 22.9198606271777,
+ "grad_norm": 0.06275669485330582,
+ "learning_rate": 0.0003562936787773979,
+ "loss": 2.0449585914611816,
+ "step": 1650
+ },
+ {
+ "epoch": 22.933797909407666,
+ "grad_norm": 0.06165294349193573,
+ "learning_rate": 0.000356031397755195,
+ "loss": 2.0373802185058594,
+ "step": 1651
+ },
+ {
+ "epoch": 22.94773519163763,
+ "grad_norm": 0.0604374073445797,
+ "learning_rate": 0.00035576907400655303,
+ "loss": 2.061960220336914,
+ "step": 1652
+ },
+ {
+ "epoch": 22.961672473867594,
+ "grad_norm": 0.05968572944402695,
+ "learning_rate": 0.00035550670774282106,
+ "loss": 2.051542282104492,
+ "step": 1653
+ },
+ {
+ "epoch": 22.975609756097562,
+ "grad_norm": 0.06063802167773247,
+ "learning_rate": 0.0003552442991753831,
+ "loss": 2.045436143875122,
+ "step": 1654
+ },
+ {
+ "epoch": 22.989547038327526,
+ "grad_norm": 0.060019318014383316,
+ "learning_rate": 0.00035498184851565697,
+ "loss": 2.0558581352233887,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.049940288066864014,
+ "learning_rate": 0.0003547193559750944,
+ "loss": 1.5244159698486328,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 0.6296067833900452,
+ "eval_runtime": 35.7678,
+ "eval_samples_per_second": 68.274,
+ "eval_steps_per_second": 0.559,
+ "step": 1656
+ },
+ {
+ "epoch": 23.013937282229964,
+ "grad_norm": 0.058643098920583725,
+ "learning_rate": 0.00035445682176518087,
+ "loss": 1.996954321861267,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027874564459932,
+ "grad_norm": 0.07890982180833817,
+ "learning_rate": 0.00035419424609743546,
+ "loss": 2.003385543823242,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041811846689896,
+ "grad_norm": 0.06572650372982025,
+ "learning_rate": 0.00035393162918341065,
+ "loss": 1.9858441352844238,
+ "step": 1659
+ },
+ {
+ "epoch": 23.05574912891986,
+ "grad_norm": 0.06063111498951912,
+ "learning_rate": 0.00035366897123469213,
+ "loss": 1.9996259212493896,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069686411149824,
+ "grad_norm": 0.06614259630441666,
+ "learning_rate": 0.0003534062724628986,
+ "loss": 2.013913869857788,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083623693379792,
+ "grad_norm": 0.06714142113924026,
+ "learning_rate": 0.00035314353307968195,
+ "loss": 1.9934425354003906,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097560975609756,
+ "grad_norm": 0.06256651133298874,
+ "learning_rate": 0.00035288075329672634,
+ "loss": 2.0107738971710205,
+ "step": 1663
+ },
+ {
+ "epoch": 23.11149825783972,
+ "grad_norm": 0.06392858177423477,
+ "learning_rate": 0.0003526179333257487,
+ "loss": 1.9977614879608154,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125435540069688,
+ "grad_norm": 0.06550068408250809,
+ "learning_rate": 0.0003523550733784984,
+ "loss": 1.9837822914123535,
+ "step": 1665
+ },
+ {
+ "epoch": 23.139372822299652,
+ "grad_norm": 0.06895361095666885,
+ "learning_rate": 0.00035209217366675706,
+ "loss": 1.9999781847000122,
+ "step": 1666
+ },
+ {
+ "epoch": 23.153310104529616,
+ "grad_norm": 0.06363921612501144,
+ "learning_rate": 0.000351829234402338,
+ "loss": 1.985809087753296,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16724738675958,
+ "grad_norm": 0.06028164550662041,
+ "learning_rate": 0.0003515662557970867,
+ "loss": 2.0019848346710205,
+ "step": 1668
+ },
+ {
+ "epoch": 23.181184668989548,
+ "grad_norm": 0.06500236690044403,
+ "learning_rate": 0.0003513032380628804,
+ "loss": 2.0089876651763916,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195121951219512,
+ "grad_norm": 0.05989453196525574,
+ "learning_rate": 0.0003510401814116277,
+ "loss": 1.9814873933792114,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209059233449477,
+ "grad_norm": 0.060608964413404465,
+ "learning_rate": 0.0003507770860552684,
+ "loss": 2.009627103805542,
+ "step": 1671
+ },
+ {
+ "epoch": 23.222996515679444,
+ "grad_norm": 0.06088849529623985,
+ "learning_rate": 0.00035051395220577397,
+ "loss": 1.9926284551620483,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23693379790941,
+ "grad_norm": 0.06073446571826935,
+ "learning_rate": 0.0003502507800751464,
+ "loss": 2.0231637954711914,
+ "step": 1673
+ },
+ {
+ "epoch": 23.250871080139373,
+ "grad_norm": 0.06006423011422157,
+ "learning_rate": 0.0003499875698754187,
+ "loss": 1.9915974140167236,
+ "step": 1674
+ },
+ {
+ "epoch": 23.264808362369337,
+ "grad_norm": 0.059542685747146606,
+ "learning_rate": 0.00034972432181865467,
+ "loss": 1.9983782768249512,
+ "step": 1675
+ },
+ {
+ "epoch": 23.278745644599304,
+ "grad_norm": 0.06081021949648857,
+ "learning_rate": 0.00034946103611694854,
+ "loss": 1.9988645315170288,
+ "step": 1676
+ },
+ {
+ "epoch": 23.29268292682927,
+ "grad_norm": 0.05827084556221962,
+ "learning_rate": 0.00034919771298242477,
+ "loss": 2.002373456954956,
+ "step": 1677
+ },
+ {
+ "epoch": 23.306620209059233,
+ "grad_norm": 0.059867121279239655,
+ "learning_rate": 0.00034893435262723814,
+ "loss": 2.0014448165893555,
+ "step": 1678
+ },
+ {
+ "epoch": 23.320557491289197,
+ "grad_norm": 0.059579163789749146,
+ "learning_rate": 0.00034867095526357325,
+ "loss": 2.018733501434326,
+ "step": 1679
+ },
+ {
+ "epoch": 23.334494773519165,
+ "grad_norm": 0.06353137642145157,
+ "learning_rate": 0.0003484075211036446,
+ "loss": 2.003769874572754,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34843205574913,
+ "grad_norm": 0.06118098273873329,
+ "learning_rate": 0.0003481440503596964,
+ "loss": 2.009033203125,
+ "step": 1681
+ },
+ {
+ "epoch": 23.362369337979093,
+ "grad_norm": 0.060457196086645126,
+ "learning_rate": 0.0003478805432440021,
+ "loss": 2.005089282989502,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37630662020906,
+ "grad_norm": 0.06178257614374161,
+ "learning_rate": 0.0003476169999688648,
+ "loss": 1.9994860887527466,
+ "step": 1683
+ },
+ {
+ "epoch": 23.390243902439025,
+ "grad_norm": 0.06617811322212219,
+ "learning_rate": 0.00034735342074661654,
+ "loss": 2.0085301399230957,
+ "step": 1684
+ },
+ {
+ "epoch": 23.40418118466899,
+ "grad_norm": 0.061164431273937225,
+ "learning_rate": 0.0003470898057896183,
+ "loss": 2.0015316009521484,
+ "step": 1685
+ },
+ {
+ "epoch": 23.418118466898953,
+ "grad_norm": 0.06309735029935837,
+ "learning_rate": 0.0003468261553102599,
+ "loss": 2.020759344100952,
+ "step": 1686
+ },
+ {
+ "epoch": 23.43205574912892,
+ "grad_norm": 0.0626831203699112,
+ "learning_rate": 0.00034656246952095984,
+ "loss": 2.009215831756592,
+ "step": 1687
+ },
+ {
+ "epoch": 23.445993031358885,
+ "grad_norm": 0.05888507142663002,
+ "learning_rate": 0.0003462987486341648,
+ "loss": 2.013838529586792,
+ "step": 1688
+ },
+ {
+ "epoch": 23.45993031358885,
+ "grad_norm": 0.0606909804046154,
+ "learning_rate": 0.00034603499286235006,
+ "loss": 2.005582571029663,
+ "step": 1689
+ },
+ {
+ "epoch": 23.473867595818817,
+ "grad_norm": 0.058872029185295105,
+ "learning_rate": 0.0003457712024180188,
+ "loss": 2.0199661254882812,
+ "step": 1690
+ },
+ {
+ "epoch": 23.48780487804878,
+ "grad_norm": 0.06124086305499077,
+ "learning_rate": 0.0003455073775137025,
+ "loss": 2.0159080028533936,
+ "step": 1691
+ },
+ {
+ "epoch": 23.501742160278745,
+ "grad_norm": 0.059814538806676865,
+ "learning_rate": 0.0003452435183619598,
+ "loss": 2.011732578277588,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51567944250871,
+ "grad_norm": 0.060436636209487915,
+ "learning_rate": 0.0003449796251753773,
+ "loss": 2.018317699432373,
+ "step": 1693
+ },
+ {
+ "epoch": 23.529616724738677,
+ "grad_norm": 0.06265381723642349,
+ "learning_rate": 0.00034471569816656915,
+ "loss": 2.010077714920044,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54355400696864,
+ "grad_norm": 0.06320856511592865,
+ "learning_rate": 0.00034445173754817646,
+ "loss": 2.0341739654541016,
+ "step": 1695
+ },
+ {
+ "epoch": 23.557491289198605,
+ "grad_norm": 0.061819177120923996,
+ "learning_rate": 0.00034418774353286747,
+ "loss": 2.032660961151123,
+ "step": 1696
+ },
+ {
+ "epoch": 23.571428571428573,
+ "grad_norm": 0.06506329029798508,
+ "learning_rate": 0.0003439237163333375,
+ "loss": 2.0272016525268555,
+ "step": 1697
+ },
+ {
+ "epoch": 23.585365853658537,
+ "grad_norm": 0.06600788235664368,
+ "learning_rate": 0.0003436596561623084,
+ "loss": 2.0060458183288574,
+ "step": 1698
+ },
+ {
+ "epoch": 23.5993031358885,
+ "grad_norm": 0.06110696122050285,
+ "learning_rate": 0.0003433955632325288,
+ "loss": 2.0102944374084473,
+ "step": 1699
+ },
+ {
+ "epoch": 23.613240418118465,
+ "grad_norm": 0.066371850669384,
+ "learning_rate": 0.00034313143775677353,
+ "loss": 2.0352327823638916,
+ "step": 1700
+ },
+ {
+ "epoch": 23.627177700348433,
+ "grad_norm": 0.06527800112962723,
+ "learning_rate": 0.00034286727994784367,
+ "loss": 2.0035440921783447,
+ "step": 1701
+ },
+ {
+ "epoch": 23.641114982578397,
+ "grad_norm": 0.06285402178764343,
+ "learning_rate": 0.0003426030900185665,
+ "loss": 2.033757448196411,
+ "step": 1702
+ },
+ {
+ "epoch": 23.65505226480836,
+ "grad_norm": 0.061433784663677216,
+ "learning_rate": 0.0003423388681817949,
+ "loss": 2.0161848068237305,
+ "step": 1703
+ },
+ {
+ "epoch": 23.66898954703833,
+ "grad_norm": 0.05987842008471489,
+ "learning_rate": 0.00034207461465040793,
+ "loss": 2.0261831283569336,
+ "step": 1704
+ },
+ {
+ "epoch": 23.682926829268293,
+ "grad_norm": 0.059953805059194565,
+ "learning_rate": 0.0003418103296373096,
+ "loss": 2.0215904712677,
+ "step": 1705
+ },
+ {
+ "epoch": 23.696864111498257,
+ "grad_norm": 0.06330372393131256,
+ "learning_rate": 0.00034154601335542964,
+ "loss": 2.025210380554199,
+ "step": 1706
+ },
+ {
+ "epoch": 23.71080139372822,
+ "grad_norm": 0.059463981539011,
+ "learning_rate": 0.00034128166601772304,
+ "loss": 2.02297306060791,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72473867595819,
+ "grad_norm": 0.05973811820149422,
+ "learning_rate": 0.0003410172878371695,
+ "loss": 2.011875629425049,
+ "step": 1708
+ },
+ {
+ "epoch": 23.738675958188153,
+ "grad_norm": 0.0624937042593956,
+ "learning_rate": 0.00034075287902677394,
+ "loss": 2.0156028270721436,
+ "step": 1709
+ },
+ {
+ "epoch": 23.752613240418118,
+ "grad_norm": 0.062002237886190414,
+ "learning_rate": 0.0003404884397995655,
+ "loss": 2.0000498294830322,
+ "step": 1710
+ },
+ {
+ "epoch": 23.766550522648085,
+ "grad_norm": 0.060854360461235046,
+ "learning_rate": 0.00034022397036859837,
+ "loss": 2.0322160720825195,
+ "step": 1711
+ },
+ {
+ "epoch": 23.78048780487805,
+ "grad_norm": 0.06054264307022095,
+ "learning_rate": 0.0003399594709469506,
+ "loss": 2.032982349395752,
+ "step": 1712
+ },
+ {
+ "epoch": 23.794425087108014,
+ "grad_norm": 0.0627431645989418,
+ "learning_rate": 0.00033969494174772465,
+ "loss": 2.020582675933838,
+ "step": 1713
+ },
+ {
+ "epoch": 23.808362369337978,
+ "grad_norm": 0.06483827531337738,
+ "learning_rate": 0.0003394303829840469,
+ "loss": 2.0398523807525635,
+ "step": 1714
+ },
+ {
+ "epoch": 23.822299651567945,
+ "grad_norm": 0.05984083190560341,
+ "learning_rate": 0.00033916579486906764,
+ "loss": 2.039645195007324,
+ "step": 1715
+ },
+ {
+ "epoch": 23.83623693379791,
+ "grad_norm": 0.06621941179037094,
+ "learning_rate": 0.0003389011776159607,
+ "loss": 2.021867275238037,
+ "step": 1716
+ },
+ {
+ "epoch": 23.850174216027874,
+ "grad_norm": 0.0623198039829731,
+ "learning_rate": 0.0003386365314379233,
+ "loss": 2.0347697734832764,
+ "step": 1717
+ },
+ {
+ "epoch": 23.86411149825784,
+ "grad_norm": 0.06399847567081451,
+ "learning_rate": 0.0003383718565481763,
+ "loss": 2.030777931213379,
+ "step": 1718
+ },
+ {
+ "epoch": 23.878048780487806,
+ "grad_norm": 0.06241384893655777,
+ "learning_rate": 0.0003381071531599633,
+ "loss": 2.011267900466919,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89198606271777,
+ "grad_norm": 0.05945252999663353,
+ "learning_rate": 0.00033784242148655115,
+ "loss": 2.0384621620178223,
+ "step": 1720
+ },
+ {
+ "epoch": 23.905923344947734,
+ "grad_norm": 0.0614384189248085,
+ "learning_rate": 0.00033757766174122934,
+ "loss": 2.030486583709717,
+ "step": 1721
+ },
+ {
+ "epoch": 23.9198606271777,
+ "grad_norm": 0.06007350608706474,
+ "learning_rate": 0.00033731287413731005,
+ "loss": 2.022603988647461,
+ "step": 1722
+ },
+ {
+ "epoch": 23.933797909407666,
+ "grad_norm": 0.059712085872888565,
+ "learning_rate": 0.0003370480588881278,
+ "loss": 2.0331850051879883,
+ "step": 1723
+ },
+ {
+ "epoch": 23.94773519163763,
+ "grad_norm": 0.0601886548101902,
+ "learning_rate": 0.0003367832162070395,
+ "loss": 2.0483477115631104,
+ "step": 1724
+ },
+ {
+ "epoch": 23.961672473867594,
+ "grad_norm": 0.06256099790334702,
+ "learning_rate": 0.000336518346307424,
+ "loss": 2.033539056777954,
+ "step": 1725
+ },
+ {
+ "epoch": 23.975609756097562,
+ "grad_norm": 0.057741131633520126,
+ "learning_rate": 0.0003362534494026824,
+ "loss": 2.024747133255005,
+ "step": 1726
+ },
+ {
+ "epoch": 23.989547038327526,
+ "grad_norm": 0.060783255845308304,
+ "learning_rate": 0.0003359885257062372,
+ "loss": 2.0209577083587646,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.04932123422622681,
+ "learning_rate": 0.0003357235754315328,
+ "loss": 1.515411376953125,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 0.6315755248069763,
+ "eval_runtime": 36.5997,
+ "eval_samples_per_second": 66.722,
+ "eval_steps_per_second": 0.546,
+ "step": 1728
+ },
+ {
+ "epoch": 24.013937282229964,
+ "grad_norm": 0.056868553161621094,
+ "learning_rate": 0.0003354585987920345,
+ "loss": 1.9798481464385986,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027874564459932,
+ "grad_norm": 0.06501385569572449,
+ "learning_rate": 0.0003351935960012296,
+ "loss": 1.9906654357910156,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041811846689896,
+ "grad_norm": 0.05838958919048309,
+ "learning_rate": 0.0003349285672726259,
+ "loss": 1.9860174655914307,
+ "step": 1731
+ },
+ {
+ "epoch": 24.05574912891986,
+ "grad_norm": 0.058145660907030106,
+ "learning_rate": 0.0003346635128197522,
+ "loss": 1.9651578664779663,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069686411149824,
+ "grad_norm": 0.060848575085401535,
+ "learning_rate": 0.0003343984328561581,
+ "loss": 1.9864778518676758,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083623693379792,
+ "grad_norm": 0.06372028589248657,
+ "learning_rate": 0.00033413332759541376,
+ "loss": 1.9852806329727173,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097560975609756,
+ "grad_norm": 0.061025235801935196,
+ "learning_rate": 0.0003338681972511098,
+ "loss": 1.9978421926498413,
+ "step": 1735
+ },
+ {
+ "epoch": 24.11149825783972,
+ "grad_norm": 0.060201771557331085,
+ "learning_rate": 0.0003336030420368568,
+ "loss": 1.9757139682769775,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125435540069688,
+ "grad_norm": 0.05975824594497681,
+ "learning_rate": 0.0003333378621662857,
+ "loss": 1.9860875606536865,
+ "step": 1737
+ },
+ {
+ "epoch": 24.139372822299652,
+ "grad_norm": 0.06081843376159668,
+ "learning_rate": 0.00033307265785304684,
+ "loss": 1.968639850616455,
+ "step": 1738
+ },
+ {
+ "epoch": 24.153310104529616,
+ "grad_norm": 0.060572270303964615,
+ "learning_rate": 0.00033280742931081076,
+ "loss": 1.9802055358886719,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16724738675958,
+ "grad_norm": 0.05910629406571388,
+ "learning_rate": 0.00033254217675326737,
+ "loss": 1.9850757122039795,
+ "step": 1740
+ },
+ {
+ "epoch": 24.181184668989548,
+ "grad_norm": 0.05974426120519638,
+ "learning_rate": 0.0003322769003941257,
+ "loss": 1.976986289024353,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195121951219512,
+ "grad_norm": 0.06145593523979187,
+ "learning_rate": 0.00033201160044711423,
+ "loss": 2.000087261199951,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209059233449477,
+ "grad_norm": 0.06071079522371292,
+ "learning_rate": 0.0003317462771259802,
+ "loss": 2.0015039443969727,
+ "step": 1743
+ },
+ {
+ "epoch": 24.222996515679444,
+ "grad_norm": 0.06183251366019249,
+ "learning_rate": 0.00033148093064449006,
+ "loss": 1.9810009002685547,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23693379790941,
+ "grad_norm": 0.05952904373407364,
+ "learning_rate": 0.0003312155612164284,
+ "loss": 1.9755181074142456,
+ "step": 1745
+ },
+ {
+ "epoch": 24.250871080139373,
+ "grad_norm": 0.06136337295174599,
+ "learning_rate": 0.00033095016905559883,
+ "loss": 1.9860830307006836,
+ "step": 1746
+ },
+ {
+ "epoch": 24.264808362369337,
+ "grad_norm": 0.05884359031915665,
+ "learning_rate": 0.0003306847543758227,
+ "loss": 1.9831082820892334,
+ "step": 1747
+ },
+ {
+ "epoch": 24.278745644599304,
+ "grad_norm": 0.06433911621570587,
+ "learning_rate": 0.0003304193173909401,
+ "loss": 1.9774551391601562,
+ "step": 1748
+ },
+ {
+ "epoch": 24.29268292682927,
+ "grad_norm": 0.06369569152593613,
+ "learning_rate": 0.00033015385831480873,
+ "loss": 1.969364881515503,
+ "step": 1749
+ },
+ {
+ "epoch": 24.306620209059233,
+ "grad_norm": 0.061907488852739334,
+ "learning_rate": 0.0003298883773613043,
+ "loss": 1.9955558776855469,
+ "step": 1750
+ },
+ {
+ "epoch": 24.320557491289197,
+ "grad_norm": 0.061493128538131714,
+ "learning_rate": 0.0003296228747443197,
+ "loss": 1.983457326889038,
+ "step": 1751
+ },
+ {
+ "epoch": 24.334494773519165,
+ "grad_norm": 0.064146488904953,
+ "learning_rate": 0.0003293573506777659,
+ "loss": 1.987483263015747,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34843205574913,
+ "grad_norm": 0.06266602128744125,
+ "learning_rate": 0.00032909180537557076,
+ "loss": 1.9783263206481934,
+ "step": 1753
+ },
+ {
+ "epoch": 24.362369337979093,
+ "grad_norm": 0.06142675131559372,
+ "learning_rate": 0.00032882623905167917,
+ "loss": 1.984071135520935,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37630662020906,
+ "grad_norm": 0.06145746260881424,
+ "learning_rate": 0.00032856065192005335,
+ "loss": 1.9964550733566284,
+ "step": 1755
+ },
+ {
+ "epoch": 24.390243902439025,
+ "grad_norm": 0.058990370482206345,
+ "learning_rate": 0.00032829504419467194,
+ "loss": 1.9879612922668457,
+ "step": 1756
+ },
+ {
+ "epoch": 24.40418118466899,
+ "grad_norm": 0.06122121214866638,
+ "learning_rate": 0.0003280294160895303,
+ "loss": 1.9812474250793457,
+ "step": 1757
+ },
+ {
+ "epoch": 24.418118466898953,
+ "grad_norm": 0.059800442308187485,
+ "learning_rate": 0.0003277637678186402,
+ "loss": 1.970646619796753,
+ "step": 1758
+ },
+ {
+ "epoch": 24.43205574912892,
+ "grad_norm": 0.0604378841817379,
+ "learning_rate": 0.00032749809959602973,
+ "loss": 2.003701686859131,
+ "step": 1759
+ },
+ {
+ "epoch": 24.445993031358885,
+ "grad_norm": 0.05989979952573776,
+ "learning_rate": 0.0003272324116357428,
+ "loss": 1.9803345203399658,
+ "step": 1760
+ },
+ {
+ "epoch": 24.45993031358885,
+ "grad_norm": 0.06310706585645676,
+ "learning_rate": 0.0003269667041518395,
+ "loss": 1.989131212234497,
+ "step": 1761
+ },
+ {
+ "epoch": 24.473867595818817,
+ "grad_norm": 0.06142299249768257,
+ "learning_rate": 0.0003267009773583956,
+ "loss": 1.9946138858795166,
+ "step": 1762
+ },
+ {
+ "epoch": 24.48780487804878,
+ "grad_norm": 0.062469176948070526,
+ "learning_rate": 0.00032643523146950234,
+ "loss": 2.001830577850342,
+ "step": 1763
+ },
+ {
+ "epoch": 24.501742160278745,
+ "grad_norm": 0.06173425912857056,
+ "learning_rate": 0.0003261694666992664,
+ "loss": 2.002091646194458,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51567944250871,
+ "grad_norm": 0.06293168663978577,
+ "learning_rate": 0.0003259036832618096,
+ "loss": 1.9954603910446167,
+ "step": 1765
+ },
+ {
+ "epoch": 24.529616724738677,
+ "grad_norm": 0.060014087706804276,
+ "learning_rate": 0.0003256378813712688,
+ "loss": 1.9944541454315186,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54355400696864,
+ "grad_norm": 0.06237431988120079,
+ "learning_rate": 0.000325372061241796,
+ "loss": 2.0007567405700684,
+ "step": 1767
+ },
+ {
+ "epoch": 24.557491289198605,
+ "grad_norm": 0.06152753531932831,
+ "learning_rate": 0.00032510622308755746,
+ "loss": 2.0018327236175537,
+ "step": 1768
+ },
+ {
+ "epoch": 24.571428571428573,
+ "grad_norm": 0.05944858118891716,
+ "learning_rate": 0.00032484036712273424,
+ "loss": 1.992608666419983,
+ "step": 1769
+ },
+ {
+ "epoch": 24.585365853658537,
+ "grad_norm": 0.062232885509729385,
+ "learning_rate": 0.0003245744935615219,
+ "loss": 2.000495433807373,
+ "step": 1770
+ },
+ {
+ "epoch": 24.5993031358885,
+ "grad_norm": 0.06566010415554047,
+ "learning_rate": 0.0003243086026181296,
+ "loss": 1.9956483840942383,
+ "step": 1771
+ },
+ {
+ "epoch": 24.613240418118465,
+ "grad_norm": 0.06141132116317749,
+ "learning_rate": 0.00032404269450678116,
+ "loss": 1.9919085502624512,
+ "step": 1772
+ },
+ {
+ "epoch": 24.627177700348433,
+ "grad_norm": 0.06355211138725281,
+ "learning_rate": 0.00032377676944171375,
+ "loss": 2.0013604164123535,
+ "step": 1773
+ },
+ {
+ "epoch": 24.641114982578397,
+ "grad_norm": 0.0633525624871254,
+ "learning_rate": 0.00032351082763717857,
+ "loss": 2.003030300140381,
+ "step": 1774
+ },
+ {
+ "epoch": 24.65505226480836,
+ "grad_norm": 0.06334961205720901,
+ "learning_rate": 0.0003232448693074399,
+ "loss": 2.0035159587860107,
+ "step": 1775
+ },
+ {
+ "epoch": 24.66898954703833,
+ "grad_norm": 0.059516388922929764,
+ "learning_rate": 0.00032297889466677575,
+ "loss": 1.9953091144561768,
+ "step": 1776
+ },
+ {
+ "epoch": 24.682926829268293,
+ "grad_norm": 0.061832234263420105,
+ "learning_rate": 0.000322712903929477,
+ "loss": 2.0096263885498047,
+ "step": 1777
+ },
+ {
+ "epoch": 24.696864111498257,
+ "grad_norm": 0.06823352724313736,
+ "learning_rate": 0.0003224468973098477,
+ "loss": 2.0014004707336426,
+ "step": 1778
+ },
+ {
+ "epoch": 24.71080139372822,
+ "grad_norm": 0.06829699873924255,
+ "learning_rate": 0.0003221808750222044,
+ "loss": 1.990633249282837,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72473867595819,
+ "grad_norm": 0.060128696262836456,
+ "learning_rate": 0.0003219148372808766,
+ "loss": 1.9862974882125854,
+ "step": 1780
+ },
+ {
+ "epoch": 24.738675958188153,
+ "grad_norm": 0.06241869926452637,
+ "learning_rate": 0.00032164878430020606,
+ "loss": 2.0125184059143066,
+ "step": 1781
+ },
+ {
+ "epoch": 24.752613240418118,
+ "grad_norm": 0.06538056582212448,
+ "learning_rate": 0.00032138271629454684,
+ "loss": 2.0079469680786133,
+ "step": 1782
+ },
+ {
+ "epoch": 24.766550522648085,
+ "grad_norm": 0.06478657573461533,
+ "learning_rate": 0.00032111663347826505,
+ "loss": 2.0092570781707764,
+ "step": 1783
+ },
+ {
+ "epoch": 24.78048780487805,
+ "grad_norm": 0.06446428596973419,
+ "learning_rate": 0.00032085053606573896,
+ "loss": 1.9926164150238037,
+ "step": 1784
+ },
+ {
+ "epoch": 24.794425087108014,
+ "grad_norm": 0.06340030580759048,
+ "learning_rate": 0.0003205844242713584,
+ "loss": 2.0052552223205566,
+ "step": 1785
+ },
+ {
+ "epoch": 24.808362369337978,
+ "grad_norm": 0.06671392917633057,
+ "learning_rate": 0.0003203182983095248,
+ "loss": 2.005016326904297,
+ "step": 1786
+ },
+ {
+ "epoch": 24.822299651567945,
+ "grad_norm": 0.06256412714719772,
+ "learning_rate": 0.0003200521583946511,
+ "loss": 1.998322606086731,
+ "step": 1787
+ },
+ {
+ "epoch": 24.83623693379791,
+ "grad_norm": 0.06253744661808014,
+ "learning_rate": 0.0003197860047411613,
+ "loss": 2.004774332046509,
+ "step": 1788
+ },
+ {
+ "epoch": 24.850174216027874,
+ "grad_norm": 0.06475425511598587,
+ "learning_rate": 0.00031951983756349066,
+ "loss": 2.010788917541504,
+ "step": 1789
+ },
+ {
+ "epoch": 24.86411149825784,
+ "grad_norm": 0.06285806000232697,
+ "learning_rate": 0.00031925365707608536,
+ "loss": 2.0189685821533203,
+ "step": 1790
+ },
+ {
+ "epoch": 24.878048780487806,
+ "grad_norm": 0.06435883790254593,
+ "learning_rate": 0.00031898746349340204,
+ "loss": 2.0078349113464355,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89198606271777,
+ "grad_norm": 0.062008004635572433,
+ "learning_rate": 0.0003187212570299082,
+ "loss": 2.005176544189453,
+ "step": 1792
+ },
+ {
+ "epoch": 24.905923344947734,
+ "grad_norm": 0.061844680458307266,
+ "learning_rate": 0.0003184550379000815,
+ "loss": 2.0120368003845215,
+ "step": 1793
+ },
+ {
+ "epoch": 24.9198606271777,
+ "grad_norm": 0.06165637448430061,
+ "learning_rate": 0.00031818880631841005,
+ "loss": 1.988783359527588,
+ "step": 1794
+ },
+ {
+ "epoch": 24.933797909407666,
+ "grad_norm": 0.061599504202604294,
+ "learning_rate": 0.0003179225624993915,
+ "loss": 2.002344846725464,
+ "step": 1795
+ },
+ {
+ "epoch": 24.94773519163763,
+ "grad_norm": 0.06298971176147461,
+ "learning_rate": 0.0003176563066575341,
+ "loss": 2.0156569480895996,
+ "step": 1796
+ },
+ {
+ "epoch": 24.961672473867594,
+ "grad_norm": 0.060080062597990036,
+ "learning_rate": 0.0003173900390073549,
+ "loss": 2.010012149810791,
+ "step": 1797
+ },
+ {
+ "epoch": 24.975609756097562,
+ "grad_norm": 0.06395968794822693,
+ "learning_rate": 0.0003171237597633813,
+ "loss": 2.0122275352478027,
+ "step": 1798
+ },
+ {
+ "epoch": 24.989547038327526,
+ "grad_norm": 0.062498848885297775,
+ "learning_rate": 0.0003168574691401496,
+ "loss": 2.0220727920532227,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.04997362941503525,
+ "learning_rate": 0.0003165911673522053,
+ "loss": 1.5085651874542236,
+ "step": 1800
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 3600,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 50,
+ "save_steps": 500,
+ "stateful_callbacks": {
+ "TrainerControl": {
+ "args": {
+ "should_epoch_stop": false,
+ "should_evaluate": true,
+ "should_log": false,
+ "should_save": false,
+ "should_training_stop": false
+ },
+ "attributes": {}
+ }
+ },
+ "total_flos": 7.694140041068544e+17,
+ "train_batch_size": 64,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/base-ssl/checkpoint-1800/training_args.bin b/runs/base-ssl/checkpoint-1800/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..cbb50e43950730a04421678098579c835c9d518d
--- /dev/null
+++ b/runs/base-ssl/checkpoint-1800/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7572b8029663dc4d810f9d514c80dc9b976de220cbe72e5abd832ec6ec2ef18b
+size 5265
diff --git a/runs/base-ssl/checkpoint-2160/chat_template.jinja b/runs/base-ssl/checkpoint-2160/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/base-ssl/checkpoint-2160/chat_template.jinja
@@ -0,0 +1,85 @@
+{%- if tools %}
+ {{- '<|im_start|>system\n' }}
+ {%- if messages[0].role == 'system' %}
+ {{- messages[0].content + '\n\n' }}
+ {%- endif %}
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }}
+ {%- for tool in tools %}
+ {{- "\n" }}
+ {{- tool | tojson }}
+ {%- endfor %}
+ {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }}
+{%- else %}
+ {%- if messages[0].role == 'system' %}
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
+ {%- endif %}
+{%- endif %}
+{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
+{%- for message in messages[::-1] %}
+ {%- set index = (messages|length - 1) - loop.index0 %}
+ {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %}
+ {%- set ns.multi_step_tool = false %}
+ {%- set ns.last_query_index = index %}
+ {%- endif %}
+{%- endfor %}
+{%- for message in messages %}
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
+ {%- elif message.role == "assistant" %}
+ {%- set content = message.content %}
+ {%- set reasoning_content = '' %}
+ {%- if message.reasoning_content is defined and message.reasoning_content is not none %}
+ {%- set reasoning_content = message.reasoning_content %}
+ {%- else %}
+ {%- if '' in message.content %}
+ {%- set content = message.content.split('')[-1].lstrip('\n') %}
+ {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %}
+ {%- endif %}
+ {%- endif %}
+ {%- if loop.index0 > ns.last_query_index %}
+ {%- if loop.last or (not loop.last and reasoning_content) %}
+ {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- if message.tool_calls %}
+ {%- for tool_call in message.tool_calls %}
+ {%- if (loop.first and content) or (not loop.first) %}
+ {{- '\n' }}
+ {%- endif %}
+ {%- if tool_call.function %}
+ {%- set tool_call = tool_call.function %}
+ {%- endif %}
+ {{- '\n{"name": "' }}
+ {{- tool_call.name }}
+ {{- '", "arguments": ' }}
+ {%- if tool_call.arguments is string %}
+ {{- tool_call.arguments }}
+ {%- else %}
+ {{- tool_call.arguments | tojson }}
+ {%- endif %}
+ {{- '}\n' }}
+ {%- endfor %}
+ {%- endif %}
+ {{- '<|im_end|>\n' }}
+ {%- elif message.role == "tool" %}
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
+ {{- '<|im_start|>user' }}
+ {%- endif %}
+ {{- '\n\n' }}
+ {{- message.content }}
+ {{- '\n' }}
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
+ {{- '<|im_end|>\n' }}
+ {%- endif %}
+ {%- endif %}
+{%- endfor %}
+{%- if add_generation_prompt %}
+ {{- '<|im_start|>assistant\n' }}
+ {%- if enable_thinking is defined and enable_thinking is false %}
+ {{- '\n\n\n\n' }}
+ {%- endif %}
+{%- endif %}
\ No newline at end of file
diff --git a/runs/base-ssl/checkpoint-2160/config.json b/runs/base-ssl/checkpoint-2160/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/base-ssl/checkpoint-2160/config.json
@@ -0,0 +1,32 @@
+{
+ "architectures": [
+ "LlamaForCausalLM"
+ ],
+ "attention_bias": false,
+ "attention_dropout": 0.0,
+ "bos_token_id": null,
+ "dtype": "float32",
+ "eos_token_id": 151645,
+ "head_dim": 128,
+ "hidden_act": "silu",
+ "hidden_size": 512,
+ "initializer_range": 0.02,
+ "intermediate_size": 1536,
+ "max_position_embeddings": 2048,
+ "mlp_bias": false,
+ "model_type": "llama",
+ "num_attention_heads": 4,
+ "num_hidden_layers": 20,
+ "num_key_value_heads": 4,
+ "pad_token_id": 151645,
+ "pretraining_tp": 1,
+ "rms_norm_eps": 1e-06,
+ "rope_parameters": {
+ "rope_theta": 10000.0,
+ "rope_type": "default"
+ },
+ "tie_word_embeddings": true,
+ "transformers_version": "5.5.0",
+ "use_cache": false,
+ "vocab_size": 151671
+}
diff --git a/runs/base-ssl/checkpoint-2160/generation_config.json b/runs/base-ssl/checkpoint-2160/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/base-ssl/checkpoint-2160/generation_config.json
@@ -0,0 +1,11 @@
+{
+ "_from_model_config": true,
+ "eos_token_id": [
+ 151645
+ ],
+ "output_attentions": false,
+ "output_hidden_states": false,
+ "pad_token_id": 151645,
+ "transformers_version": "5.5.0",
+ "use_cache": true
+}
diff --git a/runs/base-ssl/checkpoint-2160/model.safetensors b/runs/base-ssl/checkpoint-2160/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..d356c35fd3555510cce7ced8bb6286cc01dbae3c
--- /dev/null
+++ b/runs/base-ssl/checkpoint-2160/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d708aa714d3473f3688e5a98c0a176c4b735567c2b00a32b873dff4ca9090b53
+size 583356232
diff --git a/runs/base-ssl/checkpoint-2160/optimizer.pt b/runs/base-ssl/checkpoint-2160/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..393cc9f26f1b4739df4568dfab3f61779c0fadec
--- /dev/null
+++ b/runs/base-ssl/checkpoint-2160/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:29cb1342620eb34d0a46ae8380b5f39b84afc8487dfb51c5dfda8c5903a05191
+size 1166825803
diff --git a/runs/base-ssl/checkpoint-2160/rng_state_0.pth b/runs/base-ssl/checkpoint-2160/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..86ca1aad69953afb19f9f8da4c01764c2f44d22b
--- /dev/null
+++ b/runs/base-ssl/checkpoint-2160/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:253e65ee29b5e996242fd0eef4ab59e40fe385a114b29c442de150cf74084b60
+size 14917
diff --git a/runs/base-ssl/checkpoint-2160/rng_state_1.pth b/runs/base-ssl/checkpoint-2160/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..3031af55ab1520df411513147e482ece04c4d4f6
--- /dev/null
+++ b/runs/base-ssl/checkpoint-2160/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:04c9d382d23a06579a44352e657618aaf7b647b0f5de65751c81300c8f96f42a
+size 14917
diff --git a/runs/base-ssl/checkpoint-2160/scheduler.pt b/runs/base-ssl/checkpoint-2160/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..cfe439753906dadad51f11779ef9f425378a7857
--- /dev/null
+++ b/runs/base-ssl/checkpoint-2160/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5cb2a89dd39217d5729496222633b6ae963778e9f10a9c38309eff07088a5195
+size 1465
diff --git a/runs/base-ssl/checkpoint-2160/tokenizer.json b/runs/base-ssl/checkpoint-2160/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/base-ssl/checkpoint-2160/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:59b6776030505d5b441d0727cce137047df748ab15db6ba3a1bac93c123742fb
+size 11424079
diff --git a/runs/base-ssl/checkpoint-2160/tokenizer_config.json b/runs/base-ssl/checkpoint-2160/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/base-ssl/checkpoint-2160/tokenizer_config.json
@@ -0,0 +1,18 @@
+{
+ "add_prefix_space": false,
+ "backend": "tokenizers",
+ "bos_token": null,
+ "clean_up_tokenization_spaces": false,
+ "eos_token": "<|im_end|>",
+ "errors": "replace",
+ "extra_special_tokens": [
+ "<|l2r_pred|>",
+ "<|r2l_pred|>"
+ ],
+ "is_local": false,
+ "model_max_length": 131072,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/base-ssl/checkpoint-2160/trainer_state.json b/runs/base-ssl/checkpoint-2160/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..9760cbf7a46062dbbe4b64848f8f1547506dd481
--- /dev/null
+++ b/runs/base-ssl/checkpoint-2160/trainer_state.json
@@ -0,0 +1,15386 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 30.0,
+ "eval_steps": 500,
+ "global_step": 2160,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013937282229965157,
+ "grad_norm": 0.2712002694606781,
+ "learning_rate": 0.0,
+ "loss": 4.000947952270508,
+ "step": 1
+ },
+ {
+ "epoch": 0.027874564459930314,
+ "grad_norm": 0.2709888219833374,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 4.000800132751465,
+ "step": 2
+ },
+ {
+ "epoch": 0.041811846689895474,
+ "grad_norm": 0.2721220850944519,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 3.982931613922119,
+ "step": 3
+ },
+ {
+ "epoch": 0.05574912891986063,
+ "grad_norm": 0.24822379648685455,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 3.948713779449463,
+ "step": 4
+ },
+ {
+ "epoch": 0.06968641114982578,
+ "grad_norm": 0.2103811800479889,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 3.908690929412842,
+ "step": 5
+ },
+ {
+ "epoch": 0.08362369337979095,
+ "grad_norm": 0.18375654518604279,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 3.8660929203033447,
+ "step": 6
+ },
+ {
+ "epoch": 0.0975609756097561,
+ "grad_norm": 0.1471690535545349,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 3.82308030128479,
+ "step": 7
+ },
+ {
+ "epoch": 0.11149825783972125,
+ "grad_norm": 0.11132320016622543,
+ "learning_rate": 4.2e-05,
+ "loss": 3.790834426879883,
+ "step": 8
+ },
+ {
+ "epoch": 0.1254355400696864,
+ "grad_norm": 0.08796700090169907,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 3.7589545249938965,
+ "step": 9
+ },
+ {
+ "epoch": 0.13937282229965156,
+ "grad_norm": 0.07089080661535263,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 3.7346723079681396,
+ "step": 10
+ },
+ {
+ "epoch": 0.15331010452961671,
+ "grad_norm": 0.056723613291978836,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 3.7159838676452637,
+ "step": 11
+ },
+ {
+ "epoch": 0.1672473867595819,
+ "grad_norm": 0.04544799029827118,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 3.701421022415161,
+ "step": 12
+ },
+ {
+ "epoch": 0.18118466898954705,
+ "grad_norm": 0.03551485016942024,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 3.691774845123291,
+ "step": 13
+ },
+ {
+ "epoch": 0.1951219512195122,
+ "grad_norm": 0.028209710493683815,
+ "learning_rate": 7.8e-05,
+ "loss": 3.6860086917877197,
+ "step": 14
+ },
+ {
+ "epoch": 0.20905923344947736,
+ "grad_norm": 0.024290181696414948,
+ "learning_rate": 8.4e-05,
+ "loss": 3.6806883811950684,
+ "step": 15
+ },
+ {
+ "epoch": 0.2229965156794425,
+ "grad_norm": 0.022015230730175972,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 3.677751064300537,
+ "step": 16
+ },
+ {
+ "epoch": 0.23693379790940766,
+ "grad_norm": 0.01960836350917816,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 3.6738266944885254,
+ "step": 17
+ },
+ {
+ "epoch": 0.2508710801393728,
+ "grad_norm": 0.017675744369626045,
+ "learning_rate": 0.000102,
+ "loss": 3.6739063262939453,
+ "step": 18
+ },
+ {
+ "epoch": 0.26480836236933797,
+ "grad_norm": 0.01539881993085146,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 3.671247720718384,
+ "step": 19
+ },
+ {
+ "epoch": 0.2787456445993031,
+ "grad_norm": 0.013906505890190601,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 3.66833233833313,
+ "step": 20
+ },
+ {
+ "epoch": 0.2926829268292683,
+ "grad_norm": 0.01149708591401577,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 3.6706337928771973,
+ "step": 21
+ },
+ {
+ "epoch": 0.30662020905923343,
+ "grad_norm": 0.010512279346585274,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 3.667168140411377,
+ "step": 22
+ },
+ {
+ "epoch": 0.3205574912891986,
+ "grad_norm": 0.00897525716573,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 3.6630516052246094,
+ "step": 23
+ },
+ {
+ "epoch": 0.3344947735191638,
+ "grad_norm": 0.008081364445388317,
+ "learning_rate": 0.000138,
+ "loss": 3.6629021167755127,
+ "step": 24
+ },
+ {
+ "epoch": 0.34843205574912894,
+ "grad_norm": 0.0076500303111970425,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 3.66168212890625,
+ "step": 25
+ },
+ {
+ "epoch": 0.3623693379790941,
+ "grad_norm": 0.007083008531481028,
+ "learning_rate": 0.00015,
+ "loss": 3.6564559936523438,
+ "step": 26
+ },
+ {
+ "epoch": 0.37630662020905925,
+ "grad_norm": 0.006654089782387018,
+ "learning_rate": 0.000156,
+ "loss": 3.6590094566345215,
+ "step": 27
+ },
+ {
+ "epoch": 0.3902439024390244,
+ "grad_norm": 0.0073669785633683205,
+ "learning_rate": 0.000162,
+ "loss": 3.651914119720459,
+ "step": 28
+ },
+ {
+ "epoch": 0.40418118466898956,
+ "grad_norm": 0.007247959729284048,
+ "learning_rate": 0.000168,
+ "loss": 3.6557557582855225,
+ "step": 29
+ },
+ {
+ "epoch": 0.4181184668989547,
+ "grad_norm": 0.007229349110275507,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 3.651794910430908,
+ "step": 30
+ },
+ {
+ "epoch": 0.43205574912891986,
+ "grad_norm": 0.008839861489832401,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 3.653074264526367,
+ "step": 31
+ },
+ {
+ "epoch": 0.445993031358885,
+ "grad_norm": 0.009280834347009659,
+ "learning_rate": 0.000186,
+ "loss": 3.6503708362579346,
+ "step": 32
+ },
+ {
+ "epoch": 0.45993031358885017,
+ "grad_norm": 0.008585072122514248,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 3.650331497192383,
+ "step": 33
+ },
+ {
+ "epoch": 0.4738675958188153,
+ "grad_norm": 0.01164434663951397,
+ "learning_rate": 0.000198,
+ "loss": 3.6462929248809814,
+ "step": 34
+ },
+ {
+ "epoch": 0.4878048780487805,
+ "grad_norm": 0.012668018229305744,
+ "learning_rate": 0.000204,
+ "loss": 3.6516757011413574,
+ "step": 35
+ },
+ {
+ "epoch": 0.5017421602787456,
+ "grad_norm": 0.01610603742301464,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 3.647498607635498,
+ "step": 36
+ },
+ {
+ "epoch": 0.5156794425087108,
+ "grad_norm": 0.018993742763996124,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 3.642869472503662,
+ "step": 37
+ },
+ {
+ "epoch": 0.5296167247386759,
+ "grad_norm": 0.020697375759482384,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 3.639193058013916,
+ "step": 38
+ },
+ {
+ "epoch": 0.5435540069686411,
+ "grad_norm": 0.021636122837662697,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 3.630560874938965,
+ "step": 39
+ },
+ {
+ "epoch": 0.5574912891986062,
+ "grad_norm": 0.01893668621778488,
+ "learning_rate": 0.000234,
+ "loss": 3.6265769004821777,
+ "step": 40
+ },
+ {
+ "epoch": 0.5714285714285714,
+ "grad_norm": 0.025133362039923668,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 3.6185407638549805,
+ "step": 41
+ },
+ {
+ "epoch": 0.5853658536585366,
+ "grad_norm": 0.016397792845964432,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 3.609161853790283,
+ "step": 42
+ },
+ {
+ "epoch": 0.5993031358885017,
+ "grad_norm": 0.02059962786734104,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 3.5987398624420166,
+ "step": 43
+ },
+ {
+ "epoch": 0.6132404181184669,
+ "grad_norm": 0.026733839884400368,
+ "learning_rate": 0.000258,
+ "loss": 3.601898193359375,
+ "step": 44
+ },
+ {
+ "epoch": 0.627177700348432,
+ "grad_norm": 0.04592137038707733,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 3.597785472869873,
+ "step": 45
+ },
+ {
+ "epoch": 0.6411149825783972,
+ "grad_norm": 0.14618715643882751,
+ "learning_rate": 0.00027,
+ "loss": 3.597787857055664,
+ "step": 46
+ },
+ {
+ "epoch": 0.6550522648083623,
+ "grad_norm": 0.1228327602148056,
+ "learning_rate": 0.000276,
+ "loss": 3.598362922668457,
+ "step": 47
+ },
+ {
+ "epoch": 0.6689895470383276,
+ "grad_norm": 0.0651344507932663,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 3.5868940353393555,
+ "step": 48
+ },
+ {
+ "epoch": 0.6829268292682927,
+ "grad_norm": 0.030712513253092766,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 3.5800981521606445,
+ "step": 49
+ },
+ {
+ "epoch": 0.6968641114982579,
+ "grad_norm": 0.07069414854049683,
+ "learning_rate": 0.000294,
+ "loss": 3.590576171875,
+ "step": 50
+ },
+ {
+ "epoch": 0.710801393728223,
+ "grad_norm": 0.026333393529057503,
+ "learning_rate": 0.0003,
+ "loss": 3.5740621089935303,
+ "step": 51
+ },
+ {
+ "epoch": 0.7247386759581882,
+ "grad_norm": 0.050806671380996704,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 3.577582836151123,
+ "step": 52
+ },
+ {
+ "epoch": 0.7386759581881533,
+ "grad_norm": 0.04820532724261284,
+ "learning_rate": 0.000312,
+ "loss": 3.5686888694763184,
+ "step": 53
+ },
+ {
+ "epoch": 0.7526132404181185,
+ "grad_norm": 0.03834737837314606,
+ "learning_rate": 0.000318,
+ "loss": 3.571916341781616,
+ "step": 54
+ },
+ {
+ "epoch": 0.7665505226480837,
+ "grad_norm": 0.0663016214966774,
+ "learning_rate": 0.000324,
+ "loss": 3.563366413116455,
+ "step": 55
+ },
+ {
+ "epoch": 0.7804878048780488,
+ "grad_norm": 0.03111632913351059,
+ "learning_rate": 0.00033,
+ "loss": 3.555037021636963,
+ "step": 56
+ },
+ {
+ "epoch": 0.794425087108014,
+ "grad_norm": 0.06139425188302994,
+ "learning_rate": 0.000336,
+ "loss": 3.555377244949341,
+ "step": 57
+ },
+ {
+ "epoch": 0.8083623693379791,
+ "grad_norm": 0.02561746910214424,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 3.5368266105651855,
+ "step": 58
+ },
+ {
+ "epoch": 0.8222996515679443,
+ "grad_norm": 0.06502962112426758,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 3.5318264961242676,
+ "step": 59
+ },
+ {
+ "epoch": 0.8362369337979094,
+ "grad_norm": 0.06968390196561813,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 3.5210607051849365,
+ "step": 60
+ },
+ {
+ "epoch": 0.8501742160278746,
+ "grad_norm": 0.02670745924115181,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 3.5037078857421875,
+ "step": 61
+ },
+ {
+ "epoch": 0.8641114982578397,
+ "grad_norm": 0.07075569778680801,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 3.506938934326172,
+ "step": 62
+ },
+ {
+ "epoch": 0.8780487804878049,
+ "grad_norm": 0.061632659286260605,
+ "learning_rate": 0.000372,
+ "loss": 3.4960665702819824,
+ "step": 63
+ },
+ {
+ "epoch": 0.89198606271777,
+ "grad_norm": 0.10994791984558105,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 3.4926395416259766,
+ "step": 64
+ },
+ {
+ "epoch": 0.9059233449477352,
+ "grad_norm": 0.21027322113513947,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 3.502258777618408,
+ "step": 65
+ },
+ {
+ "epoch": 0.9198606271777003,
+ "grad_norm": 0.1937343329191208,
+ "learning_rate": 0.00039,
+ "loss": 3.5118448734283447,
+ "step": 66
+ },
+ {
+ "epoch": 0.9337979094076655,
+ "grad_norm": 0.07891395688056946,
+ "learning_rate": 0.000396,
+ "loss": 3.487575054168701,
+ "step": 67
+ },
+ {
+ "epoch": 0.9477351916376306,
+ "grad_norm": 0.12915678322315216,
+ "learning_rate": 0.000402,
+ "loss": 3.4890120029449463,
+ "step": 68
+ },
+ {
+ "epoch": 0.9616724738675958,
+ "grad_norm": 0.08530207723379135,
+ "learning_rate": 0.000408,
+ "loss": 3.4755735397338867,
+ "step": 69
+ },
+ {
+ "epoch": 0.975609756097561,
+ "grad_norm": 0.09704860299825668,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 3.4669318199157715,
+ "step": 70
+ },
+ {
+ "epoch": 0.9895470383275261,
+ "grad_norm": 0.07270640879869461,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 3.460634469985962,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.03984597697854042,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 2.590245485305786,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 0.8616236448287964,
+ "eval_runtime": 36.0347,
+ "eval_samples_per_second": 67.768,
+ "eval_steps_per_second": 0.555,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139372822299653,
+ "grad_norm": 0.058285508304834366,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 3.441636562347412,
+ "step": 73
+ },
+ {
+ "epoch": 1.0278745644599303,
+ "grad_norm": 0.07173695415258408,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 3.4476027488708496,
+ "step": 74
+ },
+ {
+ "epoch": 1.0418118466898956,
+ "grad_norm": 0.0367155559360981,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 3.4290428161621094,
+ "step": 75
+ },
+ {
+ "epoch": 1.0557491289198606,
+ "grad_norm": 0.05761358141899109,
+ "learning_rate": 0.00045,
+ "loss": 3.430612564086914,
+ "step": 76
+ },
+ {
+ "epoch": 1.0696864111498259,
+ "grad_norm": 0.06290662288665771,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 3.4222841262817383,
+ "step": 77
+ },
+ {
+ "epoch": 1.083623693379791,
+ "grad_norm": 0.09705018997192383,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 3.4233384132385254,
+ "step": 78
+ },
+ {
+ "epoch": 1.0975609756097562,
+ "grad_norm": 0.09656445682048798,
+ "learning_rate": 0.000468,
+ "loss": 3.422335624694824,
+ "step": 79
+ },
+ {
+ "epoch": 1.1114982578397212,
+ "grad_norm": 0.07884909957647324,
+ "learning_rate": 0.000474,
+ "loss": 3.4133338928222656,
+ "step": 80
+ },
+ {
+ "epoch": 1.1254355400696865,
+ "grad_norm": 0.06679042428731918,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 3.4053287506103516,
+ "step": 81
+ },
+ {
+ "epoch": 1.1393728222996515,
+ "grad_norm": 0.02522652968764305,
+ "learning_rate": 0.000486,
+ "loss": 3.392838478088379,
+ "step": 82
+ },
+ {
+ "epoch": 1.1533101045296168,
+ "grad_norm": 0.09408055245876312,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 3.3952789306640625,
+ "step": 83
+ },
+ {
+ "epoch": 1.1672473867595818,
+ "grad_norm": 0.08980021625757217,
+ "learning_rate": 0.000498,
+ "loss": 3.385244846343994,
+ "step": 84
+ },
+ {
+ "epoch": 1.181184668989547,
+ "grad_norm": 0.08343124389648438,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 3.382103443145752,
+ "step": 85
+ },
+ {
+ "epoch": 1.1951219512195121,
+ "grad_norm": 0.03343554213643074,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 3.374354362487793,
+ "step": 86
+ },
+ {
+ "epoch": 1.2090592334494774,
+ "grad_norm": 0.0852339118719101,
+ "learning_rate": 0.000516,
+ "loss": 3.3802456855773926,
+ "step": 87
+ },
+ {
+ "epoch": 1.2229965156794425,
+ "grad_norm": 0.09159538149833679,
+ "learning_rate": 0.000522,
+ "loss": 3.37576961517334,
+ "step": 88
+ },
+ {
+ "epoch": 1.2369337979094077,
+ "grad_norm": 0.04313444346189499,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 3.360690116882324,
+ "step": 89
+ },
+ {
+ "epoch": 1.2508710801393728,
+ "grad_norm": 0.075523741543293,
+ "learning_rate": 0.000534,
+ "loss": 3.3599460124969482,
+ "step": 90
+ },
+ {
+ "epoch": 1.264808362369338,
+ "grad_norm": 0.08516373485326767,
+ "learning_rate": 0.00054,
+ "loss": 3.3572096824645996,
+ "step": 91
+ },
+ {
+ "epoch": 1.278745644599303,
+ "grad_norm": 0.09553111344575882,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 3.3542261123657227,
+ "step": 92
+ },
+ {
+ "epoch": 1.2926829268292683,
+ "grad_norm": 0.05978025496006012,
+ "learning_rate": 0.000552,
+ "loss": 3.3440048694610596,
+ "step": 93
+ },
+ {
+ "epoch": 1.3066202090592334,
+ "grad_norm": 0.10827190428972244,
+ "learning_rate": 0.000558,
+ "loss": 3.3391332626342773,
+ "step": 94
+ },
+ {
+ "epoch": 1.3205574912891986,
+ "grad_norm": 0.1181376576423645,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 3.3493118286132812,
+ "step": 95
+ },
+ {
+ "epoch": 1.3344947735191637,
+ "grad_norm": 0.08178193867206573,
+ "learning_rate": 0.00057,
+ "loss": 3.3445382118225098,
+ "step": 96
+ },
+ {
+ "epoch": 1.348432055749129,
+ "grad_norm": 0.08283700793981552,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 3.3343238830566406,
+ "step": 97
+ },
+ {
+ "epoch": 1.3623693379790942,
+ "grad_norm": 0.11837095767259598,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 3.3336968421936035,
+ "step": 98
+ },
+ {
+ "epoch": 1.3763066202090593,
+ "grad_norm": 0.08230706304311752,
+ "learning_rate": 0.000588,
+ "loss": 3.3294646739959717,
+ "step": 99
+ },
+ {
+ "epoch": 1.3902439024390243,
+ "grad_norm": 0.09961626678705215,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 3.3242952823638916,
+ "step": 100
+ },
+ {
+ "epoch": 1.4041811846689896,
+ "grad_norm": 0.11294732987880707,
+ "learning_rate": 0.0006,
+ "loss": 3.330348491668701,
+ "step": 101
+ },
+ {
+ "epoch": 1.4181184668989548,
+ "grad_norm": 0.11236022412776947,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 3.322606086730957,
+ "step": 102
+ },
+ {
+ "epoch": 1.4320557491289199,
+ "grad_norm": 0.13230572640895844,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 3.3202784061431885,
+ "step": 103
+ },
+ {
+ "epoch": 1.445993031358885,
+ "grad_norm": 0.0783172994852066,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 3.3082056045532227,
+ "step": 104
+ },
+ {
+ "epoch": 1.4599303135888502,
+ "grad_norm": 0.07376513630151749,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 3.3011245727539062,
+ "step": 105
+ },
+ {
+ "epoch": 1.4738675958188154,
+ "grad_norm": 0.11039287596940994,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 3.2987873554229736,
+ "step": 106
+ },
+ {
+ "epoch": 1.4878048780487805,
+ "grad_norm": 0.0667329952120781,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 3.293043851852417,
+ "step": 107
+ },
+ {
+ "epoch": 1.5017421602787455,
+ "grad_norm": 0.0750635489821434,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 3.2865707874298096,
+ "step": 108
+ },
+ {
+ "epoch": 1.5156794425087108,
+ "grad_norm": 0.055155977606773376,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 3.278069496154785,
+ "step": 109
+ },
+ {
+ "epoch": 1.529616724738676,
+ "grad_norm": 0.07016722112894058,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 3.2837281227111816,
+ "step": 110
+ },
+ {
+ "epoch": 1.543554006968641,
+ "grad_norm": 0.09884901344776154,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 3.2782273292541504,
+ "step": 111
+ },
+ {
+ "epoch": 1.5574912891986061,
+ "grad_norm": 0.09402419626712799,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 3.2757701873779297,
+ "step": 112
+ },
+ {
+ "epoch": 1.5714285714285714,
+ "grad_norm": 0.06898307800292969,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 3.2636804580688477,
+ "step": 113
+ },
+ {
+ "epoch": 1.5853658536585367,
+ "grad_norm": 0.08733519911766052,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 3.2676005363464355,
+ "step": 114
+ },
+ {
+ "epoch": 1.5993031358885017,
+ "grad_norm": 0.05769918113946915,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 3.2505807876586914,
+ "step": 115
+ },
+ {
+ "epoch": 1.6132404181184667,
+ "grad_norm": 0.054460495710372925,
+ "learning_rate": 0.000599973080557108,
+ "loss": 3.259110689163208,
+ "step": 116
+ },
+ {
+ "epoch": 1.627177700348432,
+ "grad_norm": 0.055243365466594696,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 3.2438201904296875,
+ "step": 117
+ },
+ {
+ "epoch": 1.6411149825783973,
+ "grad_norm": 0.06122216582298279,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 3.2397255897521973,
+ "step": 118
+ },
+ {
+ "epoch": 1.6550522648083623,
+ "grad_norm": 0.05418086051940918,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 3.236057758331299,
+ "step": 119
+ },
+ {
+ "epoch": 1.6689895470383276,
+ "grad_norm": 0.04995540529489517,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 3.224294662475586,
+ "step": 120
+ },
+ {
+ "epoch": 1.6829268292682928,
+ "grad_norm": 0.057540878653526306,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 3.2251172065734863,
+ "step": 121
+ },
+ {
+ "epoch": 1.6968641114982579,
+ "grad_norm": 0.05698078125715256,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 3.228363513946533,
+ "step": 122
+ },
+ {
+ "epoch": 1.710801393728223,
+ "grad_norm": 0.07352662831544876,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 3.2196407318115234,
+ "step": 123
+ },
+ {
+ "epoch": 1.7247386759581882,
+ "grad_norm": 0.08591686934232712,
+ "learning_rate": 0.000599936710690505,
+ "loss": 3.2231035232543945,
+ "step": 124
+ },
+ {
+ "epoch": 1.7386759581881535,
+ "grad_norm": 0.06970733404159546,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 3.2126383781433105,
+ "step": 125
+ },
+ {
+ "epoch": 1.7526132404181185,
+ "grad_norm": 0.04472116380929947,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 3.216801881790161,
+ "step": 126
+ },
+ {
+ "epoch": 1.7665505226480835,
+ "grad_norm": 0.059133559465408325,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 3.2136807441711426,
+ "step": 127
+ },
+ {
+ "epoch": 1.7804878048780488,
+ "grad_norm": 0.08288449794054031,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 3.210519552230835,
+ "step": 128
+ },
+ {
+ "epoch": 1.794425087108014,
+ "grad_norm": 0.09659463912248611,
+ "learning_rate": 0.00059990620421714,
+ "loss": 3.205916404724121,
+ "step": 129
+ },
+ {
+ "epoch": 1.8083623693379791,
+ "grad_norm": 0.08611937612295151,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 3.206793785095215,
+ "step": 130
+ },
+ {
+ "epoch": 1.8222996515679442,
+ "grad_norm": 0.06448066979646683,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 3.2026424407958984,
+ "step": 131
+ },
+ {
+ "epoch": 1.8362369337979094,
+ "grad_norm": 0.07323113083839417,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 3.1864631175994873,
+ "step": 132
+ },
+ {
+ "epoch": 1.8501742160278747,
+ "grad_norm": 0.0739368200302124,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 3.1875557899475098,
+ "step": 133
+ },
+ {
+ "epoch": 1.8641114982578397,
+ "grad_norm": 0.08289099484682083,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 3.1901979446411133,
+ "step": 134
+ },
+ {
+ "epoch": 1.8780487804878048,
+ "grad_norm": 0.06641175597906113,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 3.1776785850524902,
+ "step": 135
+ },
+ {
+ "epoch": 1.89198606271777,
+ "grad_norm": 0.04873652383685112,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 3.1743667125701904,
+ "step": 136
+ },
+ {
+ "epoch": 1.9059233449477353,
+ "grad_norm": 0.04623038321733475,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 3.1759986877441406,
+ "step": 137
+ },
+ {
+ "epoch": 1.9198606271777003,
+ "grad_norm": 0.059709370136260986,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 3.1702799797058105,
+ "step": 138
+ },
+ {
+ "epoch": 1.9337979094076654,
+ "grad_norm": 0.040581051260232925,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 3.1607465744018555,
+ "step": 139
+ },
+ {
+ "epoch": 1.9477351916376306,
+ "grad_norm": 0.04940655827522278,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 3.1620500087738037,
+ "step": 140
+ },
+ {
+ "epoch": 1.961672473867596,
+ "grad_norm": 0.055740341544151306,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 3.1535825729370117,
+ "step": 141
+ },
+ {
+ "epoch": 1.975609756097561,
+ "grad_norm": 0.06836569309234619,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 3.1512832641601562,
+ "step": 142
+ },
+ {
+ "epoch": 1.989547038327526,
+ "grad_norm": 0.08451569080352783,
+ "learning_rate": 0.000599788973374255,
+ "loss": 3.147432804107666,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.06781627237796783,
+ "learning_rate": 0.000599778806120077,
+ "loss": 2.3624467849731445,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 0.7888243794441223,
+ "eval_runtime": 37.0572,
+ "eval_samples_per_second": 65.898,
+ "eval_steps_per_second": 0.54,
+ "step": 144
+ },
+ {
+ "epoch": 2.013937282229965,
+ "grad_norm": 0.045119598507881165,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 3.139284610748291,
+ "step": 145
+ },
+ {
+ "epoch": 2.0278745644599305,
+ "grad_norm": 0.09132017195224762,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 3.140348434448242,
+ "step": 146
+ },
+ {
+ "epoch": 2.0418118466898956,
+ "grad_norm": 0.07457596063613892,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 3.140091896057129,
+ "step": 147
+ },
+ {
+ "epoch": 2.0557491289198606,
+ "grad_norm": 0.07544369250535965,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 3.1411213874816895,
+ "step": 148
+ },
+ {
+ "epoch": 2.0696864111498257,
+ "grad_norm": 0.046033963561058044,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 3.1405649185180664,
+ "step": 149
+ },
+ {
+ "epoch": 2.083623693379791,
+ "grad_norm": 0.06651527434587479,
+ "learning_rate": 0.000599712781599403,
+ "loss": 3.135124683380127,
+ "step": 150
+ },
+ {
+ "epoch": 2.097560975609756,
+ "grad_norm": 0.07238955795764923,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 3.1302051544189453,
+ "step": 151
+ },
+ {
+ "epoch": 2.1114982578397212,
+ "grad_norm": 0.06696683913469315,
+ "learning_rate": 0.000599688860879549,
+ "loss": 3.128504991531372,
+ "step": 152
+ },
+ {
+ "epoch": 2.1254355400696863,
+ "grad_norm": 0.042010076344013214,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 3.119443893432617,
+ "step": 153
+ },
+ {
+ "epoch": 2.1393728222996518,
+ "grad_norm": 0.053164687007665634,
+ "learning_rate": 0.000599663984012462,
+ "loss": 3.1174211502075195,
+ "step": 154
+ },
+ {
+ "epoch": 2.153310104529617,
+ "grad_norm": 0.047281116247177124,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 3.1211044788360596,
+ "step": 155
+ },
+ {
+ "epoch": 2.167247386759582,
+ "grad_norm": 0.0531938374042511,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 3.1136691570281982,
+ "step": 156
+ },
+ {
+ "epoch": 2.181184668989547,
+ "grad_norm": 0.0702054500579834,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 3.112502336502075,
+ "step": 157
+ },
+ {
+ "epoch": 2.1951219512195124,
+ "grad_norm": 0.07261929661035538,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 3.1049346923828125,
+ "step": 158
+ },
+ {
+ "epoch": 2.2090592334494774,
+ "grad_norm": 0.06666582822799683,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 3.1094369888305664,
+ "step": 159
+ },
+ {
+ "epoch": 2.2229965156794425,
+ "grad_norm": 0.047446250915527344,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 3.105876922607422,
+ "step": 160
+ },
+ {
+ "epoch": 2.2369337979094075,
+ "grad_norm": 0.03833230584859848,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 3.104224681854248,
+ "step": 161
+ },
+ {
+ "epoch": 2.250871080139373,
+ "grad_norm": 0.04562874883413315,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 3.105830192565918,
+ "step": 162
+ },
+ {
+ "epoch": 2.264808362369338,
+ "grad_norm": 0.0635828971862793,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 3.1061713695526123,
+ "step": 163
+ },
+ {
+ "epoch": 2.278745644599303,
+ "grad_norm": 0.09712212532758713,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 3.108053207397461,
+ "step": 164
+ },
+ {
+ "epoch": 2.292682926829268,
+ "grad_norm": 0.15060372650623322,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 3.126777172088623,
+ "step": 165
+ },
+ {
+ "epoch": 2.3066202090592336,
+ "grad_norm": 0.12047530710697174,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 3.116323471069336,
+ "step": 166
+ },
+ {
+ "epoch": 2.3205574912891986,
+ "grad_norm": 0.07486861199140549,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 3.1138410568237305,
+ "step": 167
+ },
+ {
+ "epoch": 2.3344947735191637,
+ "grad_norm": 0.07746157795190811,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 3.1107101440429688,
+ "step": 168
+ },
+ {
+ "epoch": 2.3484320557491287,
+ "grad_norm": 0.0804097130894661,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 3.1073827743530273,
+ "step": 169
+ },
+ {
+ "epoch": 2.362369337979094,
+ "grad_norm": 0.0559227392077446,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 3.102102041244507,
+ "step": 170
+ },
+ {
+ "epoch": 2.3763066202090593,
+ "grad_norm": 0.05415646359324455,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 3.096550464630127,
+ "step": 171
+ },
+ {
+ "epoch": 2.3902439024390243,
+ "grad_norm": 0.0463285967707634,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 3.0833563804626465,
+ "step": 172
+ },
+ {
+ "epoch": 2.40418118466899,
+ "grad_norm": 0.04705670103430748,
+ "learning_rate": 0.000599379982511273,
+ "loss": 3.0935018062591553,
+ "step": 173
+ },
+ {
+ "epoch": 2.418118466898955,
+ "grad_norm": 0.03608846664428711,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 3.085629463195801,
+ "step": 174
+ },
+ {
+ "epoch": 2.43205574912892,
+ "grad_norm": 0.03648562356829643,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 3.086639165878296,
+ "step": 175
+ },
+ {
+ "epoch": 2.445993031358885,
+ "grad_norm": 0.03640111908316612,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 3.088339328765869,
+ "step": 176
+ },
+ {
+ "epoch": 2.45993031358885,
+ "grad_norm": 0.029915692284703255,
+ "learning_rate": 0.000599309205504528,
+ "loss": 3.0802769660949707,
+ "step": 177
+ },
+ {
+ "epoch": 2.4738675958188154,
+ "grad_norm": 0.031756628304719925,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 3.0739364624023438,
+ "step": 178
+ },
+ {
+ "epoch": 2.4878048780487805,
+ "grad_norm": 0.03106086328625679,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 3.07144832611084,
+ "step": 179
+ },
+ {
+ "epoch": 2.5017421602787455,
+ "grad_norm": 0.03892781585454941,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 3.074242353439331,
+ "step": 180
+ },
+ {
+ "epoch": 2.515679442508711,
+ "grad_norm": 0.05611228197813034,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 3.0675928592681885,
+ "step": 181
+ },
+ {
+ "epoch": 2.529616724738676,
+ "grad_norm": 0.03397630900144577,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 3.073423147201538,
+ "step": 182
+ },
+ {
+ "epoch": 2.543554006968641,
+ "grad_norm": 0.04135085269808769,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 3.0808069705963135,
+ "step": 183
+ },
+ {
+ "epoch": 2.557491289198606,
+ "grad_norm": 0.03421049192547798,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 3.0616936683654785,
+ "step": 184
+ },
+ {
+ "epoch": 2.571428571428571,
+ "grad_norm": 0.030827628448605537,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 3.0656299591064453,
+ "step": 185
+ },
+ {
+ "epoch": 2.5853658536585367,
+ "grad_norm": 0.033190369606018066,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 3.0479578971862793,
+ "step": 186
+ },
+ {
+ "epoch": 2.5993031358885017,
+ "grad_norm": 0.026774903759360313,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 3.054133653640747,
+ "step": 187
+ },
+ {
+ "epoch": 2.6132404181184667,
+ "grad_norm": 0.03240266814827919,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 3.0536394119262695,
+ "step": 188
+ },
+ {
+ "epoch": 2.6271777003484322,
+ "grad_norm": 0.04305516183376312,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 3.048996925354004,
+ "step": 189
+ },
+ {
+ "epoch": 2.6411149825783973,
+ "grad_norm": 0.07109381258487701,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 3.0558314323425293,
+ "step": 190
+ },
+ {
+ "epoch": 2.6550522648083623,
+ "grad_norm": 0.11467248201370239,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 3.0587801933288574,
+ "step": 191
+ },
+ {
+ "epoch": 2.6689895470383274,
+ "grad_norm": 0.13839758932590485,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 3.0634102821350098,
+ "step": 192
+ },
+ {
+ "epoch": 2.682926829268293,
+ "grad_norm": 0.09269433468580246,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 3.0586462020874023,
+ "step": 193
+ },
+ {
+ "epoch": 2.696864111498258,
+ "grad_norm": 0.0611812099814415,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 3.054201602935791,
+ "step": 194
+ },
+ {
+ "epoch": 2.710801393728223,
+ "grad_norm": 0.05347125604748726,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 3.054572105407715,
+ "step": 195
+ },
+ {
+ "epoch": 2.7247386759581884,
+ "grad_norm": 0.05996708199381828,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 3.0486035346984863,
+ "step": 196
+ },
+ {
+ "epoch": 2.7386759581881535,
+ "grad_norm": 0.06146618723869324,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 3.0344629287719727,
+ "step": 197
+ },
+ {
+ "epoch": 2.7526132404181185,
+ "grad_norm": 0.04754327982664108,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 3.0211029052734375,
+ "step": 198
+ },
+ {
+ "epoch": 2.7665505226480835,
+ "grad_norm": 0.044388528913259506,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 3.034595012664795,
+ "step": 199
+ },
+ {
+ "epoch": 2.7804878048780486,
+ "grad_norm": 0.04255649819970131,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 3.037287950515747,
+ "step": 200
+ },
+ {
+ "epoch": 2.794425087108014,
+ "grad_norm": 0.043139949440956116,
+ "learning_rate": 0.000598804365316586,
+ "loss": 3.0366177558898926,
+ "step": 201
+ },
+ {
+ "epoch": 2.808362369337979,
+ "grad_norm": 0.03383412957191467,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 3.033888101577759,
+ "step": 202
+ },
+ {
+ "epoch": 2.822299651567944,
+ "grad_norm": 0.03446805849671364,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 3.022144079208374,
+ "step": 203
+ },
+ {
+ "epoch": 2.8362369337979096,
+ "grad_norm": 0.029725519940257072,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 3.0208263397216797,
+ "step": 204
+ },
+ {
+ "epoch": 2.8501742160278747,
+ "grad_norm": 0.030237704515457153,
+ "learning_rate": 0.000598706872384039,
+ "loss": 3.0251193046569824,
+ "step": 205
+ },
+ {
+ "epoch": 2.8641114982578397,
+ "grad_norm": 0.03186488524079323,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 3.0246212482452393,
+ "step": 206
+ },
+ {
+ "epoch": 2.8780487804878048,
+ "grad_norm": 0.02844928577542305,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 3.0075716972351074,
+ "step": 207
+ },
+ {
+ "epoch": 2.89198606271777,
+ "grad_norm": 0.0350780263543129,
+ "learning_rate": 0.000598631251036868,
+ "loss": 3.0121424198150635,
+ "step": 208
+ },
+ {
+ "epoch": 2.9059233449477353,
+ "grad_norm": 0.04267824813723564,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 3.0099010467529297,
+ "step": 209
+ },
+ {
+ "epoch": 2.9198606271777003,
+ "grad_norm": 0.042932625859975815,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 3.0122969150543213,
+ "step": 210
+ },
+ {
+ "epoch": 2.9337979094076654,
+ "grad_norm": 0.04570756480097771,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 3.0111446380615234,
+ "step": 211
+ },
+ {
+ "epoch": 2.947735191637631,
+ "grad_norm": 0.04473821446299553,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 2.9976413249969482,
+ "step": 212
+ },
+ {
+ "epoch": 2.961672473867596,
+ "grad_norm": 0.040896713733673096,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 2.9942758083343506,
+ "step": 213
+ },
+ {
+ "epoch": 2.975609756097561,
+ "grad_norm": 0.04459039121866226,
+ "learning_rate": 0.000598473577921366,
+ "loss": 2.998690128326416,
+ "step": 214
+ },
+ {
+ "epoch": 2.989547038327526,
+ "grad_norm": 0.039927951991558075,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 2.988520383834839,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.030261589214205742,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 2.2433667182922363,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 0.7514154314994812,
+ "eval_runtime": 37.2184,
+ "eval_samples_per_second": 65.613,
+ "eval_steps_per_second": 0.537,
+ "step": 216
+ },
+ {
+ "epoch": 3.013937282229965,
+ "grad_norm": 0.03271438181400299,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 2.983100652694702,
+ "step": 217
+ },
+ {
+ "epoch": 3.0278745644599305,
+ "grad_norm": 0.045161835849285126,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 2.9824085235595703,
+ "step": 218
+ },
+ {
+ "epoch": 3.0418118466898956,
+ "grad_norm": 0.041259463876485825,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 2.980112075805664,
+ "step": 219
+ },
+ {
+ "epoch": 3.0557491289198606,
+ "grad_norm": 0.04854132980108261,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 2.9802699089050293,
+ "step": 220
+ },
+ {
+ "epoch": 3.0696864111498257,
+ "grad_norm": 0.06712493300437927,
+ "learning_rate": 0.000598278794687186,
+ "loss": 2.963736057281494,
+ "step": 221
+ },
+ {
+ "epoch": 3.083623693379791,
+ "grad_norm": 0.07551158964633942,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 2.9780850410461426,
+ "step": 222
+ },
+ {
+ "epoch": 3.097560975609756,
+ "grad_norm": 0.1004587933421135,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 2.982564926147461,
+ "step": 223
+ },
+ {
+ "epoch": 3.1114982578397212,
+ "grad_norm": 0.12604698538780212,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 2.994123697280884,
+ "step": 224
+ },
+ {
+ "epoch": 3.1254355400696863,
+ "grad_norm": 0.13300281763076782,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 3.0030934810638428,
+ "step": 225
+ },
+ {
+ "epoch": 3.1393728222996518,
+ "grad_norm": 0.09192433208227158,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 2.99415922164917,
+ "step": 226
+ },
+ {
+ "epoch": 3.153310104529617,
+ "grad_norm": 0.07332997024059296,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 2.9832448959350586,
+ "step": 227
+ },
+ {
+ "epoch": 3.167247386759582,
+ "grad_norm": 0.05673393979668617,
+ "learning_rate": 0.00059807235435179,
+ "loss": 2.9781603813171387,
+ "step": 228
+ },
+ {
+ "epoch": 3.181184668989547,
+ "grad_norm": 0.05591209977865219,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 2.9844987392425537,
+ "step": 229
+ },
+ {
+ "epoch": 3.1951219512195124,
+ "grad_norm": 0.04706789553165436,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 2.9794564247131348,
+ "step": 230
+ },
+ {
+ "epoch": 3.2090592334494774,
+ "grad_norm": 0.04533008486032486,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 2.963930606842041,
+ "step": 231
+ },
+ {
+ "epoch": 3.2229965156794425,
+ "grad_norm": 0.0363367535173893,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 2.9743711948394775,
+ "step": 232
+ },
+ {
+ "epoch": 3.2369337979094075,
+ "grad_norm": 0.035832252353429794,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 2.9637725353240967,
+ "step": 233
+ },
+ {
+ "epoch": 3.250871080139373,
+ "grad_norm": 0.03634851798415184,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 2.971634864807129,
+ "step": 234
+ },
+ {
+ "epoch": 3.264808362369338,
+ "grad_norm": 0.036877233535051346,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 2.960113286972046,
+ "step": 235
+ },
+ {
+ "epoch": 3.278745644599303,
+ "grad_norm": 0.02930021658539772,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 2.948853015899658,
+ "step": 236
+ },
+ {
+ "epoch": 3.292682926829268,
+ "grad_norm": 0.029241658747196198,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 2.957648277282715,
+ "step": 237
+ },
+ {
+ "epoch": 3.3066202090592336,
+ "grad_norm": 0.029683494940400124,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 2.9501960277557373,
+ "step": 238
+ },
+ {
+ "epoch": 3.3205574912891986,
+ "grad_norm": 0.028418797999620438,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 2.9593586921691895,
+ "step": 239
+ },
+ {
+ "epoch": 3.3344947735191637,
+ "grad_norm": 0.029084153473377228,
+ "learning_rate": 0.000597691359743243,
+ "loss": 2.957581043243408,
+ "step": 240
+ },
+ {
+ "epoch": 3.3484320557491287,
+ "grad_norm": 0.03031332418322563,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 2.9465126991271973,
+ "step": 241
+ },
+ {
+ "epoch": 3.362369337979094,
+ "grad_norm": 0.028176147490739822,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 2.9427034854888916,
+ "step": 242
+ },
+ {
+ "epoch": 3.3763066202090593,
+ "grad_norm": 0.025935526937246323,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 2.933248996734619,
+ "step": 243
+ },
+ {
+ "epoch": 3.3902439024390243,
+ "grad_norm": 0.026524877175688744,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 2.9334826469421387,
+ "step": 244
+ },
+ {
+ "epoch": 3.40418118466899,
+ "grad_norm": 0.026807013899087906,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 2.9502480030059814,
+ "step": 245
+ },
+ {
+ "epoch": 3.418118466898955,
+ "grad_norm": 0.026440076529979706,
+ "learning_rate": 0.000597488038559129,
+ "loss": 2.9336085319519043,
+ "step": 246
+ },
+ {
+ "epoch": 3.43205574912892,
+ "grad_norm": 0.02752632275223732,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 2.937425374984741,
+ "step": 247
+ },
+ {
+ "epoch": 3.445993031358885,
+ "grad_norm": 0.027490021660923958,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 2.9357755184173584,
+ "step": 248
+ },
+ {
+ "epoch": 3.45993031358885,
+ "grad_norm": 0.03389354050159454,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 2.934713363647461,
+ "step": 249
+ },
+ {
+ "epoch": 3.4738675958188154,
+ "grad_norm": 0.042289797216653824,
+ "learning_rate": 0.000597347745466109,
+ "loss": 2.9363629817962646,
+ "step": 250
+ },
+ {
+ "epoch": 3.4878048780487805,
+ "grad_norm": 0.07276978343725204,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 2.946735382080078,
+ "step": 251
+ },
+ {
+ "epoch": 3.5017421602787455,
+ "grad_norm": 0.09471797943115234,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 2.9240806102752686,
+ "step": 252
+ },
+ {
+ "epoch": 3.515679442508711,
+ "grad_norm": 0.09386000782251358,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 2.9194839000701904,
+ "step": 253
+ },
+ {
+ "epoch": 3.529616724738676,
+ "grad_norm": 0.1176624521613121,
+ "learning_rate": 0.000597203657966319,
+ "loss": 2.9324824810028076,
+ "step": 254
+ },
+ {
+ "epoch": 3.543554006968641,
+ "grad_norm": 0.0723927766084671,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 2.932208776473999,
+ "step": 255
+ },
+ {
+ "epoch": 3.557491289198606,
+ "grad_norm": 0.06314370036125183,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 2.936681032180786,
+ "step": 256
+ },
+ {
+ "epoch": 3.571428571428571,
+ "grad_norm": 0.06432153284549713,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 2.924858331680298,
+ "step": 257
+ },
+ {
+ "epoch": 3.5853658536585367,
+ "grad_norm": 0.07495246082544327,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 2.918736696243286,
+ "step": 258
+ },
+ {
+ "epoch": 3.5993031358885017,
+ "grad_norm": 0.058007508516311646,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 2.92120361328125,
+ "step": 259
+ },
+ {
+ "epoch": 3.6132404181184667,
+ "grad_norm": 0.047224972397089005,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 2.9181740283966064,
+ "step": 260
+ },
+ {
+ "epoch": 3.6271777003484322,
+ "grad_norm": 0.04775157943367958,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 2.9145660400390625,
+ "step": 261
+ },
+ {
+ "epoch": 3.6411149825783973,
+ "grad_norm": 0.05087953805923462,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 2.9094574451446533,
+ "step": 262
+ },
+ {
+ "epoch": 3.6550522648083623,
+ "grad_norm": 0.047325216233730316,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 2.9127790927886963,
+ "step": 263
+ },
+ {
+ "epoch": 3.6689895470383274,
+ "grad_norm": 0.04005662724375725,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 2.9124414920806885,
+ "step": 264
+ },
+ {
+ "epoch": 3.682926829268293,
+ "grad_norm": 0.03284832462668419,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 2.897369861602783,
+ "step": 265
+ },
+ {
+ "epoch": 3.696864111498258,
+ "grad_norm": 0.03538643941283226,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 2.8912787437438965,
+ "step": 266
+ },
+ {
+ "epoch": 3.710801393728223,
+ "grad_norm": 0.0338534340262413,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 2.904737949371338,
+ "step": 267
+ },
+ {
+ "epoch": 3.7247386759581884,
+ "grad_norm": 0.03059707209467888,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 2.910109519958496,
+ "step": 268
+ },
+ {
+ "epoch": 3.7386759581881535,
+ "grad_norm": 0.027421824634075165,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 2.8953540325164795,
+ "step": 269
+ },
+ {
+ "epoch": 3.7526132404181185,
+ "grad_norm": 0.031095022335648537,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 2.8983192443847656,
+ "step": 270
+ },
+ {
+ "epoch": 3.7665505226480835,
+ "grad_norm": 0.03075260855257511,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 2.9002010822296143,
+ "step": 271
+ },
+ {
+ "epoch": 3.7804878048780486,
+ "grad_norm": 0.030917232856154442,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 2.8886561393737793,
+ "step": 272
+ },
+ {
+ "epoch": 3.794425087108014,
+ "grad_norm": 0.03267431631684303,
+ "learning_rate": 0.000596467483454833,
+ "loss": 2.8845345973968506,
+ "step": 273
+ },
+ {
+ "epoch": 3.808362369337979,
+ "grad_norm": 0.034112598747015,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 2.8842294216156006,
+ "step": 274
+ },
+ {
+ "epoch": 3.822299651567944,
+ "grad_norm": 0.038153596222400665,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 2.866973400115967,
+ "step": 275
+ },
+ {
+ "epoch": 3.8362369337979096,
+ "grad_norm": 0.033103615045547485,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 2.8709988594055176,
+ "step": 276
+ },
+ {
+ "epoch": 3.8501742160278747,
+ "grad_norm": 0.030708827078342438,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 2.8715577125549316,
+ "step": 277
+ },
+ {
+ "epoch": 3.8641114982578397,
+ "grad_norm": 0.03427499905228615,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 2.8766040802001953,
+ "step": 278
+ },
+ {
+ "epoch": 3.8780487804878048,
+ "grad_norm": 0.042216721922159195,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 2.8672261238098145,
+ "step": 279
+ },
+ {
+ "epoch": 3.89198606271777,
+ "grad_norm": 0.034656424075365067,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 2.860102653503418,
+ "step": 280
+ },
+ {
+ "epoch": 3.9059233449477353,
+ "grad_norm": 0.03288520127534866,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 2.8540444374084473,
+ "step": 281
+ },
+ {
+ "epoch": 3.9198606271777003,
+ "grad_norm": 0.041709382086992264,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 2.872581958770752,
+ "step": 282
+ },
+ {
+ "epoch": 3.9337979094076654,
+ "grad_norm": 0.04955075681209564,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 2.874307632446289,
+ "step": 283
+ },
+ {
+ "epoch": 3.947735191637631,
+ "grad_norm": 0.05372118577361107,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 2.861191749572754,
+ "step": 284
+ },
+ {
+ "epoch": 3.961672473867596,
+ "grad_norm": 0.05855486914515495,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 2.8542709350585938,
+ "step": 285
+ },
+ {
+ "epoch": 3.975609756097561,
+ "grad_norm": 0.05442376434803009,
+ "learning_rate": 0.000595914592474791,
+ "loss": 2.858576536178589,
+ "step": 286
+ },
+ {
+ "epoch": 3.989547038327526,
+ "grad_norm": 0.06468870490789413,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 2.8510026931762695,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.038657791912555695,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 2.1422531604766846,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 0.7195093631744385,
+ "eval_runtime": 39.1927,
+ "eval_samples_per_second": 62.308,
+ "eval_steps_per_second": 0.51,
+ "step": 288
+ },
+ {
+ "epoch": 4.013937282229965,
+ "grad_norm": 0.041369788348674774,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 2.8407950401306152,
+ "step": 289
+ },
+ {
+ "epoch": 4.02787456445993,
+ "grad_norm": 0.045097772032022476,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 2.8446922302246094,
+ "step": 290
+ },
+ {
+ "epoch": 4.041811846689895,
+ "grad_norm": 0.05102979391813278,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 2.8316476345062256,
+ "step": 291
+ },
+ {
+ "epoch": 4.055749128919861,
+ "grad_norm": 0.05429252237081528,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 2.8510334491729736,
+ "step": 292
+ },
+ {
+ "epoch": 4.069686411149826,
+ "grad_norm": 0.0761060118675232,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 2.8289966583251953,
+ "step": 293
+ },
+ {
+ "epoch": 4.083623693379791,
+ "grad_norm": 0.09525997191667557,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 2.843992233276367,
+ "step": 294
+ },
+ {
+ "epoch": 4.097560975609756,
+ "grad_norm": 0.09715712070465088,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 2.8543810844421387,
+ "step": 295
+ },
+ {
+ "epoch": 4.111498257839721,
+ "grad_norm": 0.0634903833270073,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 2.8456456661224365,
+ "step": 296
+ },
+ {
+ "epoch": 4.125435540069686,
+ "grad_norm": 0.05771167576313019,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 2.8387022018432617,
+ "step": 297
+ },
+ {
+ "epoch": 4.139372822299651,
+ "grad_norm": 0.05440817028284073,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 2.841508388519287,
+ "step": 298
+ },
+ {
+ "epoch": 4.153310104529616,
+ "grad_norm": 0.0550493523478508,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 2.833531618118286,
+ "step": 299
+ },
+ {
+ "epoch": 4.167247386759582,
+ "grad_norm": 0.04252418503165245,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 2.8254685401916504,
+ "step": 300
+ },
+ {
+ "epoch": 4.181184668989547,
+ "grad_norm": 0.042833492159843445,
+ "learning_rate": 0.000595227087813793,
+ "loss": 2.8289575576782227,
+ "step": 301
+ },
+ {
+ "epoch": 4.195121951219512,
+ "grad_norm": 0.038360171020030975,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 2.836550712585449,
+ "step": 302
+ },
+ {
+ "epoch": 4.209059233449477,
+ "grad_norm": 0.03655572608113289,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 2.8222808837890625,
+ "step": 303
+ },
+ {
+ "epoch": 4.2229965156794425,
+ "grad_norm": 0.03215418756008148,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 2.818066120147705,
+ "step": 304
+ },
+ {
+ "epoch": 4.2369337979094075,
+ "grad_norm": 0.031601350754499435,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 2.809666395187378,
+ "step": 305
+ },
+ {
+ "epoch": 4.2508710801393725,
+ "grad_norm": 0.03221198916435242,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 2.8137047290802,
+ "step": 306
+ },
+ {
+ "epoch": 4.264808362369338,
+ "grad_norm": 0.03107992745935917,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 2.822840690612793,
+ "step": 307
+ },
+ {
+ "epoch": 4.2787456445993035,
+ "grad_norm": 0.032328397035598755,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 2.8012430667877197,
+ "step": 308
+ },
+ {
+ "epoch": 4.2926829268292686,
+ "grad_norm": 0.029429661110043526,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 2.806474447250366,
+ "step": 309
+ },
+ {
+ "epoch": 4.306620209059234,
+ "grad_norm": 0.03430404141545296,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 2.7917184829711914,
+ "step": 310
+ },
+ {
+ "epoch": 4.320557491289199,
+ "grad_norm": 0.03543714061379433,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 2.798417091369629,
+ "step": 311
+ },
+ {
+ "epoch": 4.334494773519164,
+ "grad_norm": 0.04099712520837784,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 2.793095588684082,
+ "step": 312
+ },
+ {
+ "epoch": 4.348432055749129,
+ "grad_norm": 0.046607524156570435,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 2.807809829711914,
+ "step": 313
+ },
+ {
+ "epoch": 4.362369337979094,
+ "grad_norm": 0.048917099833488464,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 2.8017094135284424,
+ "step": 314
+ },
+ {
+ "epoch": 4.376306620209059,
+ "grad_norm": 0.05221967399120331,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 2.7990846633911133,
+ "step": 315
+ },
+ {
+ "epoch": 4.390243902439025,
+ "grad_norm": 0.05263383314013481,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 2.810983657836914,
+ "step": 316
+ },
+ {
+ "epoch": 4.40418118466899,
+ "grad_norm": 0.04930173233151436,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 2.7989790439605713,
+ "step": 317
+ },
+ {
+ "epoch": 4.418118466898955,
+ "grad_norm": 0.05484982952475548,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 2.7852704524993896,
+ "step": 318
+ },
+ {
+ "epoch": 4.43205574912892,
+ "grad_norm": 0.04991631582379341,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 2.7944440841674805,
+ "step": 319
+ },
+ {
+ "epoch": 4.445993031358885,
+ "grad_norm": 0.034856196492910385,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 2.7851901054382324,
+ "step": 320
+ },
+ {
+ "epoch": 4.45993031358885,
+ "grad_norm": 0.038153354078531265,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 2.777986526489258,
+ "step": 321
+ },
+ {
+ "epoch": 4.473867595818815,
+ "grad_norm": 0.04138852655887604,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 2.7781941890716553,
+ "step": 322
+ },
+ {
+ "epoch": 4.487804878048781,
+ "grad_norm": 0.04018627852201462,
+ "learning_rate": 0.00059412296156686,
+ "loss": 2.7934627532958984,
+ "step": 323
+ },
+ {
+ "epoch": 4.501742160278746,
+ "grad_norm": 0.03592175245285034,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 2.780992031097412,
+ "step": 324
+ },
+ {
+ "epoch": 4.515679442508711,
+ "grad_norm": 0.034620169550180435,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 2.7754831314086914,
+ "step": 325
+ },
+ {
+ "epoch": 4.529616724738676,
+ "grad_norm": 0.03244427964091301,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 2.7737035751342773,
+ "step": 326
+ },
+ {
+ "epoch": 4.543554006968641,
+ "grad_norm": 0.0361688956618309,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 2.7515547275543213,
+ "step": 327
+ },
+ {
+ "epoch": 4.557491289198606,
+ "grad_norm": 0.03722141310572624,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 2.769011974334717,
+ "step": 328
+ },
+ {
+ "epoch": 4.571428571428571,
+ "grad_norm": 0.0431540347635746,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 2.7755231857299805,
+ "step": 329
+ },
+ {
+ "epoch": 4.585365853658536,
+ "grad_norm": 0.04175153374671936,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 2.767477512359619,
+ "step": 330
+ },
+ {
+ "epoch": 4.599303135888501,
+ "grad_norm": 0.04184363782405853,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 2.775984048843384,
+ "step": 331
+ },
+ {
+ "epoch": 4.613240418118467,
+ "grad_norm": 0.04054928943514824,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 2.7669193744659424,
+ "step": 332
+ },
+ {
+ "epoch": 4.627177700348432,
+ "grad_norm": 0.039442483335733414,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 2.7557153701782227,
+ "step": 333
+ },
+ {
+ "epoch": 4.641114982578397,
+ "grad_norm": 0.04334413632750511,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 2.76118803024292,
+ "step": 334
+ },
+ {
+ "epoch": 4.655052264808362,
+ "grad_norm": 0.04821610450744629,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 2.755122184753418,
+ "step": 335
+ },
+ {
+ "epoch": 4.668989547038327,
+ "grad_norm": 0.05259500443935394,
+ "learning_rate": 0.000593417134927994,
+ "loss": 2.763730764389038,
+ "step": 336
+ },
+ {
+ "epoch": 4.682926829268292,
+ "grad_norm": 0.05462924763560295,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 2.7538461685180664,
+ "step": 337
+ },
+ {
+ "epoch": 4.696864111498257,
+ "grad_norm": 0.0755213275551796,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 2.7565760612487793,
+ "step": 338
+ },
+ {
+ "epoch": 4.710801393728223,
+ "grad_norm": 0.09036742150783539,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 2.7742908000946045,
+ "step": 339
+ },
+ {
+ "epoch": 4.724738675958188,
+ "grad_norm": 0.07687609642744064,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 2.7776336669921875,
+ "step": 340
+ },
+ {
+ "epoch": 4.7386759581881535,
+ "grad_norm": 0.06167550012469292,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 2.7571194171905518,
+ "step": 341
+ },
+ {
+ "epoch": 4.7526132404181185,
+ "grad_norm": 0.05498389154672623,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 2.766094207763672,
+ "step": 342
+ },
+ {
+ "epoch": 4.7665505226480835,
+ "grad_norm": 0.056576769798994064,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 2.759814977645874,
+ "step": 343
+ },
+ {
+ "epoch": 4.780487804878049,
+ "grad_norm": 0.05287479609251022,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 2.7653424739837646,
+ "step": 344
+ },
+ {
+ "epoch": 4.794425087108014,
+ "grad_norm": 0.05006227642297745,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 2.746647357940674,
+ "step": 345
+ },
+ {
+ "epoch": 4.80836236933798,
+ "grad_norm": 0.0428367517888546,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 2.748798131942749,
+ "step": 346
+ },
+ {
+ "epoch": 4.822299651567945,
+ "grad_norm": 0.04800762981176376,
+ "learning_rate": 0.000592789007481325,
+ "loss": 2.7554736137390137,
+ "step": 347
+ },
+ {
+ "epoch": 4.83623693379791,
+ "grad_norm": 0.04984979331493378,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 2.738473415374756,
+ "step": 348
+ },
+ {
+ "epoch": 4.850174216027875,
+ "grad_norm": 0.0404483824968338,
+ "learning_rate": 0.000592671765466188,
+ "loss": 2.7486448287963867,
+ "step": 349
+ },
+ {
+ "epoch": 4.86411149825784,
+ "grad_norm": 0.03785628825426102,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 2.7317609786987305,
+ "step": 350
+ },
+ {
+ "epoch": 4.878048780487805,
+ "grad_norm": 0.04446744546294212,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 2.750211238861084,
+ "step": 351
+ },
+ {
+ "epoch": 4.89198606271777,
+ "grad_norm": 0.0561913438141346,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 2.7429988384246826,
+ "step": 352
+ },
+ {
+ "epoch": 4.905923344947735,
+ "grad_norm": 0.06165647506713867,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 2.7389450073242188,
+ "step": 353
+ },
+ {
+ "epoch": 4.9198606271777,
+ "grad_norm": 0.04764621704816818,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 2.73350191116333,
+ "step": 354
+ },
+ {
+ "epoch": 4.933797909407666,
+ "grad_norm": 0.044994648545980453,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 2.7248117923736572,
+ "step": 355
+ },
+ {
+ "epoch": 4.947735191637631,
+ "grad_norm": 0.044408753514289856,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 2.7337656021118164,
+ "step": 356
+ },
+ {
+ "epoch": 4.961672473867596,
+ "grad_norm": 0.04064524918794632,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 2.732268810272217,
+ "step": 357
+ },
+ {
+ "epoch": 4.975609756097561,
+ "grad_norm": 0.036805033683776855,
+ "learning_rate": 0.000592132629452205,
+ "loss": 2.7253570556640625,
+ "step": 358
+ },
+ {
+ "epoch": 4.989547038327526,
+ "grad_norm": 0.03321084752678871,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 2.713101863861084,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.027469763532280922,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 2.0416059494018555,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 0.6877280473709106,
+ "eval_runtime": 37.7369,
+ "eval_samples_per_second": 64.711,
+ "eval_steps_per_second": 0.53,
+ "step": 360
+ },
+ {
+ "epoch": 5.013937282229965,
+ "grad_norm": 0.035481102764606476,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 2.6966300010681152,
+ "step": 361
+ },
+ {
+ "epoch": 5.02787456445993,
+ "grad_norm": 0.04075651615858078,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 2.701756000518799,
+ "step": 362
+ },
+ {
+ "epoch": 5.041811846689895,
+ "grad_norm": 0.03847100958228111,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 2.69856333732605,
+ "step": 363
+ },
+ {
+ "epoch": 5.055749128919861,
+ "grad_norm": 0.0439726859331131,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 2.6956000328063965,
+ "step": 364
+ },
+ {
+ "epoch": 5.069686411149826,
+ "grad_norm": 0.043925508856773376,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 2.7065486907958984,
+ "step": 365
+ },
+ {
+ "epoch": 5.083623693379791,
+ "grad_norm": 0.05349253863096237,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 2.7032744884490967,
+ "step": 366
+ },
+ {
+ "epoch": 5.097560975609756,
+ "grad_norm": 0.04957803711295128,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 2.6988987922668457,
+ "step": 367
+ },
+ {
+ "epoch": 5.111498257839721,
+ "grad_norm": 0.047412872314453125,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 2.6921496391296387,
+ "step": 368
+ },
+ {
+ "epoch": 5.125435540069686,
+ "grad_norm": 0.047648534178733826,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 2.691765308380127,
+ "step": 369
+ },
+ {
+ "epoch": 5.139372822299651,
+ "grad_norm": 0.05226794257760048,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 2.7006325721740723,
+ "step": 370
+ },
+ {
+ "epoch": 5.153310104529616,
+ "grad_norm": 0.054041698575019836,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 2.692309617996216,
+ "step": 371
+ },
+ {
+ "epoch": 5.167247386759582,
+ "grad_norm": 0.039680954068899155,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 2.685819149017334,
+ "step": 372
+ },
+ {
+ "epoch": 5.181184668989547,
+ "grad_norm": 0.04104545712471008,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 2.6913204193115234,
+ "step": 373
+ },
+ {
+ "epoch": 5.195121951219512,
+ "grad_norm": 0.037274859845638275,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 2.692324161529541,
+ "step": 374
+ },
+ {
+ "epoch": 5.209059233449477,
+ "grad_norm": 0.038038160651922226,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 2.6824822425842285,
+ "step": 375
+ },
+ {
+ "epoch": 5.2229965156794425,
+ "grad_norm": 0.04105817899107933,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 2.6830384731292725,
+ "step": 376
+ },
+ {
+ "epoch": 5.2369337979094075,
+ "grad_norm": 0.04050105810165405,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 2.676032066345215,
+ "step": 377
+ },
+ {
+ "epoch": 5.2508710801393725,
+ "grad_norm": 0.03780475631356239,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 2.6765289306640625,
+ "step": 378
+ },
+ {
+ "epoch": 5.264808362369338,
+ "grad_norm": 0.03484981507062912,
+ "learning_rate": 0.000590801330015633,
+ "loss": 2.6808249950408936,
+ "step": 379
+ },
+ {
+ "epoch": 5.2787456445993035,
+ "grad_norm": 0.03091316856443882,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 2.679382562637329,
+ "step": 380
+ },
+ {
+ "epoch": 5.2926829268292686,
+ "grad_norm": 0.03255805745720863,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 2.685393810272217,
+ "step": 381
+ },
+ {
+ "epoch": 5.306620209059234,
+ "grad_norm": 0.037457507103681564,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 2.6710822582244873,
+ "step": 382
+ },
+ {
+ "epoch": 5.320557491289199,
+ "grad_norm": 0.03654669225215912,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 2.6762566566467285,
+ "step": 383
+ },
+ {
+ "epoch": 5.334494773519164,
+ "grad_norm": 0.03590100631117821,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 2.6788597106933594,
+ "step": 384
+ },
+ {
+ "epoch": 5.348432055749129,
+ "grad_norm": 0.03647424280643463,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 2.6785120964050293,
+ "step": 385
+ },
+ {
+ "epoch": 5.362369337979094,
+ "grad_norm": 0.035309527069330215,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 2.679274082183838,
+ "step": 386
+ },
+ {
+ "epoch": 5.376306620209059,
+ "grad_norm": 0.035797759890556335,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 2.663790702819824,
+ "step": 387
+ },
+ {
+ "epoch": 5.390243902439025,
+ "grad_norm": 0.034813620150089264,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 2.661909818649292,
+ "step": 388
+ },
+ {
+ "epoch": 5.40418118466899,
+ "grad_norm": 0.03814723342657089,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 2.6648290157318115,
+ "step": 389
+ },
+ {
+ "epoch": 5.418118466898955,
+ "grad_norm": 0.03819345310330391,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 2.661344528198242,
+ "step": 390
+ },
+ {
+ "epoch": 5.43205574912892,
+ "grad_norm": 0.05034249275922775,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 2.6723971366882324,
+ "step": 391
+ },
+ {
+ "epoch": 5.445993031358885,
+ "grad_norm": 0.05302279815077782,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 2.6722166538238525,
+ "step": 392
+ },
+ {
+ "epoch": 5.45993031358885,
+ "grad_norm": 0.04576520621776581,
+ "learning_rate": 0.000589856958339686,
+ "loss": 2.650954008102417,
+ "step": 393
+ },
+ {
+ "epoch": 5.473867595818815,
+ "grad_norm": 0.04785747826099396,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 2.658161163330078,
+ "step": 394
+ },
+ {
+ "epoch": 5.487804878048781,
+ "grad_norm": 0.0524369515478611,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 2.66957688331604,
+ "step": 395
+ },
+ {
+ "epoch": 5.501742160278746,
+ "grad_norm": 0.05258813500404358,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 2.66046142578125,
+ "step": 396
+ },
+ {
+ "epoch": 5.515679442508711,
+ "grad_norm": 0.05156350135803223,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 2.6339619159698486,
+ "step": 397
+ },
+ {
+ "epoch": 5.529616724738676,
+ "grad_norm": 0.04716484993696213,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 2.656726837158203,
+ "step": 398
+ },
+ {
+ "epoch": 5.543554006968641,
+ "grad_norm": 0.048213694244623184,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 2.6740832328796387,
+ "step": 399
+ },
+ {
+ "epoch": 5.557491289198606,
+ "grad_norm": 0.046243470162153244,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 2.65981125831604,
+ "step": 400
+ },
+ {
+ "epoch": 5.571428571428571,
+ "grad_norm": 0.04331960901618004,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 2.637345790863037,
+ "step": 401
+ },
+ {
+ "epoch": 5.585365853658536,
+ "grad_norm": 0.04055584594607353,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 2.6382877826690674,
+ "step": 402
+ },
+ {
+ "epoch": 5.599303135888501,
+ "grad_norm": 0.046962495893239975,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 2.642883539199829,
+ "step": 403
+ },
+ {
+ "epoch": 5.613240418118467,
+ "grad_norm": 0.055259495973587036,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 2.6498947143554688,
+ "step": 404
+ },
+ {
+ "epoch": 5.627177700348432,
+ "grad_norm": 0.05768313631415367,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 2.6472978591918945,
+ "step": 405
+ },
+ {
+ "epoch": 5.641114982578397,
+ "grad_norm": 0.04900819808244705,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 2.6596455574035645,
+ "step": 406
+ },
+ {
+ "epoch": 5.655052264808362,
+ "grad_norm": 0.053204163908958435,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 2.6456780433654785,
+ "step": 407
+ },
+ {
+ "epoch": 5.668989547038327,
+ "grad_norm": 0.05327627807855606,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 2.651031494140625,
+ "step": 408
+ },
+ {
+ "epoch": 5.682926829268292,
+ "grad_norm": 0.050564929842948914,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 2.656858444213867,
+ "step": 409
+ },
+ {
+ "epoch": 5.696864111498257,
+ "grad_norm": 0.05613167583942413,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 2.6408069133758545,
+ "step": 410
+ },
+ {
+ "epoch": 5.710801393728223,
+ "grad_norm": 0.05399465933442116,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 2.6472203731536865,
+ "step": 411
+ },
+ {
+ "epoch": 5.724738675958188,
+ "grad_norm": 0.04919342324137688,
+ "learning_rate": 0.0005885028868537,
+ "loss": 2.656099319458008,
+ "step": 412
+ },
+ {
+ "epoch": 5.7386759581881535,
+ "grad_norm": 0.0552130751311779,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 2.6422126293182373,
+ "step": 413
+ },
+ {
+ "epoch": 5.7526132404181185,
+ "grad_norm": 0.05774940922856331,
+ "learning_rate": 0.000588355515561353,
+ "loss": 2.649722099304199,
+ "step": 414
+ },
+ {
+ "epoch": 5.7665505226480835,
+ "grad_norm": 0.04623311012983322,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 2.6475892066955566,
+ "step": 415
+ },
+ {
+ "epoch": 5.780487804878049,
+ "grad_norm": 0.04961073398590088,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 2.658733606338501,
+ "step": 416
+ },
+ {
+ "epoch": 5.794425087108014,
+ "grad_norm": 0.05006693676114082,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 2.6217124462127686,
+ "step": 417
+ },
+ {
+ "epoch": 5.80836236933798,
+ "grad_norm": 0.04175165295600891,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 2.632359027862549,
+ "step": 418
+ },
+ {
+ "epoch": 5.822299651567945,
+ "grad_norm": 0.0332355760037899,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 2.6406683921813965,
+ "step": 419
+ },
+ {
+ "epoch": 5.83623693379791,
+ "grad_norm": 0.0371745266020298,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 2.630310535430908,
+ "step": 420
+ },
+ {
+ "epoch": 5.850174216027875,
+ "grad_norm": 0.02940242365002632,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 2.6451711654663086,
+ "step": 421
+ },
+ {
+ "epoch": 5.86411149825784,
+ "grad_norm": 0.03578875586390495,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 2.637753486633301,
+ "step": 422
+ },
+ {
+ "epoch": 5.878048780487805,
+ "grad_norm": 0.03402113541960716,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 2.623744487762451,
+ "step": 423
+ },
+ {
+ "epoch": 5.89198606271777,
+ "grad_norm": 0.034094467759132385,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 2.63200044631958,
+ "step": 424
+ },
+ {
+ "epoch": 5.905923344947735,
+ "grad_norm": 0.03428930044174194,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 2.6219849586486816,
+ "step": 425
+ },
+ {
+ "epoch": 5.9198606271777,
+ "grad_norm": 0.033345405012369156,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 2.611741065979004,
+ "step": 426
+ },
+ {
+ "epoch": 5.933797909407666,
+ "grad_norm": 0.031680066138505936,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 2.6227869987487793,
+ "step": 427
+ },
+ {
+ "epoch": 5.947735191637631,
+ "grad_norm": 0.028066758066415787,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 2.6249539852142334,
+ "step": 428
+ },
+ {
+ "epoch": 5.961672473867596,
+ "grad_norm": 0.032918382436037064,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 2.6176412105560303,
+ "step": 429
+ },
+ {
+ "epoch": 5.975609756097561,
+ "grad_norm": 0.033349912613630295,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 2.6159720420837402,
+ "step": 430
+ },
+ {
+ "epoch": 5.989547038327526,
+ "grad_norm": 0.03317154198884964,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 2.619137763977051,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.025815341621637344,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 1.9473658800125122,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 0.6633820533752441,
+ "eval_runtime": 37.551,
+ "eval_samples_per_second": 65.032,
+ "eval_steps_per_second": 0.533,
+ "step": 432
+ },
+ {
+ "epoch": 6.013937282229965,
+ "grad_norm": 0.031342681497335434,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 2.5931155681610107,
+ "step": 433
+ },
+ {
+ "epoch": 6.02787456445993,
+ "grad_norm": 0.04343045502901077,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 2.587559700012207,
+ "step": 434
+ },
+ {
+ "epoch": 6.041811846689895,
+ "grad_norm": 0.052591342478990555,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 2.5950260162353516,
+ "step": 435
+ },
+ {
+ "epoch": 6.055749128919861,
+ "grad_norm": 0.05538717657327652,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 2.600468635559082,
+ "step": 436
+ },
+ {
+ "epoch": 6.069686411149826,
+ "grad_norm": 0.05505542829632759,
+ "learning_rate": 0.000586594769789753,
+ "loss": 2.5905046463012695,
+ "step": 437
+ },
+ {
+ "epoch": 6.083623693379791,
+ "grad_norm": 0.05229569226503372,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 2.591856002807617,
+ "step": 438
+ },
+ {
+ "epoch": 6.097560975609756,
+ "grad_norm": 0.05032522976398468,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 2.577693462371826,
+ "step": 439
+ },
+ {
+ "epoch": 6.111498257839721,
+ "grad_norm": 0.04670557379722595,
+ "learning_rate": 0.000586356179990052,
+ "loss": 2.5835001468658447,
+ "step": 440
+ },
+ {
+ "epoch": 6.125435540069686,
+ "grad_norm": 0.0537918359041214,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 2.596343517303467,
+ "step": 441
+ },
+ {
+ "epoch": 6.139372822299651,
+ "grad_norm": 0.06328130513429642,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 2.5912466049194336,
+ "step": 442
+ },
+ {
+ "epoch": 6.153310104529616,
+ "grad_norm": 0.06647300720214844,
+ "learning_rate": 0.000586115535536849,
+ "loss": 2.589078426361084,
+ "step": 443
+ },
+ {
+ "epoch": 6.167247386759582,
+ "grad_norm": 0.06643359363079071,
+ "learning_rate": 0.000586034864430614,
+ "loss": 2.5956435203552246,
+ "step": 444
+ },
+ {
+ "epoch": 6.181184668989547,
+ "grad_norm": 0.05613892152905464,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 2.5922906398773193,
+ "step": 445
+ },
+ {
+ "epoch": 6.195121951219512,
+ "grad_norm": 0.05655102804303169,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 2.590651512145996,
+ "step": 446
+ },
+ {
+ "epoch": 6.209059233449477,
+ "grad_norm": 0.06806499511003494,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 2.589696168899536,
+ "step": 447
+ },
+ {
+ "epoch": 6.2229965156794425,
+ "grad_norm": 0.06616773456335068,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 2.5944786071777344,
+ "step": 448
+ },
+ {
+ "epoch": 6.2369337979094075,
+ "grad_norm": 0.05937796086072922,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 2.598313331604004,
+ "step": 449
+ },
+ {
+ "epoch": 6.2508710801393725,
+ "grad_norm": 0.05284281075000763,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 2.5805535316467285,
+ "step": 450
+ },
+ {
+ "epoch": 6.264808362369338,
+ "grad_norm": 0.04509073495864868,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 2.570598840713501,
+ "step": 451
+ },
+ {
+ "epoch": 6.2787456445993035,
+ "grad_norm": 0.05604032054543495,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 2.6077847480773926,
+ "step": 452
+ },
+ {
+ "epoch": 6.2926829268292686,
+ "grad_norm": 0.06662779301404953,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 2.578629493713379,
+ "step": 453
+ },
+ {
+ "epoch": 6.306620209059234,
+ "grad_norm": 0.0585545152425766,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 2.586427688598633,
+ "step": 454
+ },
+ {
+ "epoch": 6.320557491289199,
+ "grad_norm": 0.04736408591270447,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 2.5911552906036377,
+ "step": 455
+ },
+ {
+ "epoch": 6.334494773519164,
+ "grad_norm": 0.04474812000989914,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 2.5697641372680664,
+ "step": 456
+ },
+ {
+ "epoch": 6.348432055749129,
+ "grad_norm": 0.04312862828373909,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 2.566927671432495,
+ "step": 457
+ },
+ {
+ "epoch": 6.362369337979094,
+ "grad_norm": 0.03764902800321579,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 2.5947153568267822,
+ "step": 458
+ },
+ {
+ "epoch": 6.376306620209059,
+ "grad_norm": 0.03353014215826988,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 2.5777602195739746,
+ "step": 459
+ },
+ {
+ "epoch": 6.390243902439025,
+ "grad_norm": 0.033975999802351,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 2.5783305168151855,
+ "step": 460
+ },
+ {
+ "epoch": 6.40418118466899,
+ "grad_norm": 0.03363902121782303,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 2.5673155784606934,
+ "step": 461
+ },
+ {
+ "epoch": 6.418118466898955,
+ "grad_norm": 0.034326743334531784,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 2.55814790725708,
+ "step": 462
+ },
+ {
+ "epoch": 6.43205574912892,
+ "grad_norm": 0.03194424510002136,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 2.5688910484313965,
+ "step": 463
+ },
+ {
+ "epoch": 6.445993031358885,
+ "grad_norm": 0.029925566166639328,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 2.559793710708618,
+ "step": 464
+ },
+ {
+ "epoch": 6.45993031358885,
+ "grad_norm": 0.0290202796459198,
+ "learning_rate": 0.000584288196583439,
+ "loss": 2.555941581726074,
+ "step": 465
+ },
+ {
+ "epoch": 6.473867595818815,
+ "grad_norm": 0.030976103618741035,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 2.5576136112213135,
+ "step": 466
+ },
+ {
+ "epoch": 6.487804878048781,
+ "grad_norm": 0.030049985274672508,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 2.5645012855529785,
+ "step": 467
+ },
+ {
+ "epoch": 6.501742160278746,
+ "grad_norm": 0.031192071735858917,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 2.5691795349121094,
+ "step": 468
+ },
+ {
+ "epoch": 6.515679442508711,
+ "grad_norm": 0.03066888637840748,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 2.5597329139709473,
+ "step": 469
+ },
+ {
+ "epoch": 6.529616724738676,
+ "grad_norm": 0.031034760177135468,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 2.5749378204345703,
+ "step": 470
+ },
+ {
+ "epoch": 6.543554006968641,
+ "grad_norm": 0.03199351951479912,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 2.564612627029419,
+ "step": 471
+ },
+ {
+ "epoch": 6.557491289198606,
+ "grad_norm": 0.027530083432793617,
+ "learning_rate": 0.000583683733328402,
+ "loss": 2.568983793258667,
+ "step": 472
+ },
+ {
+ "epoch": 6.571428571428571,
+ "grad_norm": 0.02841697260737419,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 2.551283836364746,
+ "step": 473
+ },
+ {
+ "epoch": 6.585365853658536,
+ "grad_norm": 0.03285123407840729,
+ "learning_rate": 0.000583508993216961,
+ "loss": 2.5753087997436523,
+ "step": 474
+ },
+ {
+ "epoch": 6.599303135888501,
+ "grad_norm": 0.0347592793405056,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 2.56103253364563,
+ "step": 475
+ },
+ {
+ "epoch": 6.613240418118467,
+ "grad_norm": 0.03750046715140343,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 2.5542030334472656,
+ "step": 476
+ },
+ {
+ "epoch": 6.627177700348432,
+ "grad_norm": 0.04254816472530365,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 2.5616328716278076,
+ "step": 477
+ },
+ {
+ "epoch": 6.641114982578397,
+ "grad_norm": 0.04370047152042389,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 2.5646753311157227,
+ "step": 478
+ },
+ {
+ "epoch": 6.655052264808362,
+ "grad_norm": 0.03816768899559975,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 2.5603585243225098,
+ "step": 479
+ },
+ {
+ "epoch": 6.668989547038327,
+ "grad_norm": 0.034390103071928024,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 2.548727512359619,
+ "step": 480
+ },
+ {
+ "epoch": 6.682926829268292,
+ "grad_norm": 0.0366024374961853,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 2.555230140686035,
+ "step": 481
+ },
+ {
+ "epoch": 6.696864111498257,
+ "grad_norm": 0.03938084468245506,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 2.5586276054382324,
+ "step": 482
+ },
+ {
+ "epoch": 6.710801393728223,
+ "grad_norm": 0.04110350087285042,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 2.542633056640625,
+ "step": 483
+ },
+ {
+ "epoch": 6.724738675958188,
+ "grad_norm": 0.03961770981550217,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 2.5494391918182373,
+ "step": 484
+ },
+ {
+ "epoch": 6.7386759581881535,
+ "grad_norm": 0.03677491098642349,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 2.563061475753784,
+ "step": 485
+ },
+ {
+ "epoch": 6.7526132404181185,
+ "grad_norm": 0.03818432241678238,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 2.5586929321289062,
+ "step": 486
+ },
+ {
+ "epoch": 6.7665505226480835,
+ "grad_norm": 0.033873286098241806,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 2.5477757453918457,
+ "step": 487
+ },
+ {
+ "epoch": 6.780487804878049,
+ "grad_norm": 0.03699466213583946,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 2.541106700897217,
+ "step": 488
+ },
+ {
+ "epoch": 6.794425087108014,
+ "grad_norm": 0.03866403177380562,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 2.5336339473724365,
+ "step": 489
+ },
+ {
+ "epoch": 6.80836236933798,
+ "grad_norm": 0.03235912322998047,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 2.5439155101776123,
+ "step": 490
+ },
+ {
+ "epoch": 6.822299651567945,
+ "grad_norm": 0.03776629641652107,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 2.5592265129089355,
+ "step": 491
+ },
+ {
+ "epoch": 6.83623693379791,
+ "grad_norm": 0.04273561015725136,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 2.5432629585266113,
+ "step": 492
+ },
+ {
+ "epoch": 6.850174216027875,
+ "grad_norm": 0.04358302056789398,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 2.5543787479400635,
+ "step": 493
+ },
+ {
+ "epoch": 6.86411149825784,
+ "grad_norm": 0.03629252687096596,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 2.562788963317871,
+ "step": 494
+ },
+ {
+ "epoch": 6.878048780487805,
+ "grad_norm": 0.03263307362794876,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 2.538097381591797,
+ "step": 495
+ },
+ {
+ "epoch": 6.89198606271777,
+ "grad_norm": 0.036420464515686035,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 2.554645299911499,
+ "step": 496
+ },
+ {
+ "epoch": 6.905923344947735,
+ "grad_norm": 0.035384103655815125,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 2.5465738773345947,
+ "step": 497
+ },
+ {
+ "epoch": 6.9198606271777,
+ "grad_norm": 0.03658696636557579,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 2.536980152130127,
+ "step": 498
+ },
+ {
+ "epoch": 6.933797909407666,
+ "grad_norm": 0.036053478717803955,
+ "learning_rate": 0.00058124865204371,
+ "loss": 2.528345823287964,
+ "step": 499
+ },
+ {
+ "epoch": 6.947735191637631,
+ "grad_norm": 0.03789985179901123,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 2.544621706008911,
+ "step": 500
+ },
+ {
+ "epoch": 6.961672473867596,
+ "grad_norm": 0.03835926949977875,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 2.5407447814941406,
+ "step": 501
+ },
+ {
+ "epoch": 6.975609756097561,
+ "grad_norm": 0.04318110644817352,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 2.5537543296813965,
+ "step": 502
+ },
+ {
+ "epoch": 6.989547038327526,
+ "grad_norm": 0.0451606847345829,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 2.5201051235198975,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.03245232254266739,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 1.9085171222686768,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 0.6467739343643188,
+ "eval_runtime": 38.2431,
+ "eval_samples_per_second": 63.855,
+ "eval_steps_per_second": 0.523,
+ "step": 504
+ },
+ {
+ "epoch": 7.013937282229965,
+ "grad_norm": 0.03788387402892113,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 2.493765354156494,
+ "step": 505
+ },
+ {
+ "epoch": 7.02787456445993,
+ "grad_norm": 0.04437057301402092,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 2.509481430053711,
+ "step": 506
+ },
+ {
+ "epoch": 7.041811846689895,
+ "grad_norm": 0.047125279903411865,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 2.504810333251953,
+ "step": 507
+ },
+ {
+ "epoch": 7.055749128919861,
+ "grad_norm": 0.05385598540306091,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 2.5145554542541504,
+ "step": 508
+ },
+ {
+ "epoch": 7.069686411149826,
+ "grad_norm": 0.05404049903154373,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 2.500851631164551,
+ "step": 509
+ },
+ {
+ "epoch": 7.083623693379791,
+ "grad_norm": 0.05455894395709038,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 2.4832260608673096,
+ "step": 510
+ },
+ {
+ "epoch": 7.097560975609756,
+ "grad_norm": 0.0558103583753109,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 2.524315118789673,
+ "step": 511
+ },
+ {
+ "epoch": 7.111498257839721,
+ "grad_norm": 0.057283915579319,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 2.508044719696045,
+ "step": 512
+ },
+ {
+ "epoch": 7.125435540069686,
+ "grad_norm": 0.061027105897665024,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 2.5139050483703613,
+ "step": 513
+ },
+ {
+ "epoch": 7.139372822299651,
+ "grad_norm": 0.06873901933431625,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 2.507343053817749,
+ "step": 514
+ },
+ {
+ "epoch": 7.153310104529616,
+ "grad_norm": 0.06900028139352798,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 2.520263195037842,
+ "step": 515
+ },
+ {
+ "epoch": 7.167247386759582,
+ "grad_norm": 0.06029877811670303,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 2.5027518272399902,
+ "step": 516
+ },
+ {
+ "epoch": 7.181184668989547,
+ "grad_norm": 0.06097294017672539,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 2.512634515762329,
+ "step": 517
+ },
+ {
+ "epoch": 7.195121951219512,
+ "grad_norm": 0.06655558943748474,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 2.5014023780822754,
+ "step": 518
+ },
+ {
+ "epoch": 7.209059233449477,
+ "grad_norm": 0.06343840062618256,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 2.5144271850585938,
+ "step": 519
+ },
+ {
+ "epoch": 7.2229965156794425,
+ "grad_norm": 0.08325106650590897,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 2.5239195823669434,
+ "step": 520
+ },
+ {
+ "epoch": 7.2369337979094075,
+ "grad_norm": 0.07948101311922073,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 2.5223121643066406,
+ "step": 521
+ },
+ {
+ "epoch": 7.2508710801393725,
+ "grad_norm": 0.06717163324356079,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 2.5102391242980957,
+ "step": 522
+ },
+ {
+ "epoch": 7.264808362369338,
+ "grad_norm": 0.05896087363362312,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 2.51560640335083,
+ "step": 523
+ },
+ {
+ "epoch": 7.2787456445993035,
+ "grad_norm": 0.05562684312462807,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 2.5021753311157227,
+ "step": 524
+ },
+ {
+ "epoch": 7.2926829268292686,
+ "grad_norm": 0.043904103338718414,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 2.4952425956726074,
+ "step": 525
+ },
+ {
+ "epoch": 7.306620209059234,
+ "grad_norm": 0.0436740480363369,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 2.515303611755371,
+ "step": 526
+ },
+ {
+ "epoch": 7.320557491289199,
+ "grad_norm": 0.0395866297185421,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 2.5101678371429443,
+ "step": 527
+ },
+ {
+ "epoch": 7.334494773519164,
+ "grad_norm": 0.039552897214889526,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 2.5090293884277344,
+ "step": 528
+ },
+ {
+ "epoch": 7.348432055749129,
+ "grad_norm": 0.03839687630534172,
+ "learning_rate": 0.000578351407086301,
+ "loss": 2.505296468734741,
+ "step": 529
+ },
+ {
+ "epoch": 7.362369337979094,
+ "grad_norm": 0.042542796581983566,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 2.49535870552063,
+ "step": 530
+ },
+ {
+ "epoch": 7.376306620209059,
+ "grad_norm": 0.044322993606328964,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 2.4890050888061523,
+ "step": 531
+ },
+ {
+ "epoch": 7.390243902439025,
+ "grad_norm": 0.04029953107237816,
+ "learning_rate": 0.000578050665972623,
+ "loss": 2.500995397567749,
+ "step": 532
+ },
+ {
+ "epoch": 7.40418118466899,
+ "grad_norm": 0.044392652809619904,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 2.505852222442627,
+ "step": 533
+ },
+ {
+ "epoch": 7.418118466898955,
+ "grad_norm": 0.04363880679011345,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 2.4939942359924316,
+ "step": 534
+ },
+ {
+ "epoch": 7.43205574912892,
+ "grad_norm": 0.03960833698511124,
+ "learning_rate": 0.000577747930429834,
+ "loss": 2.507826805114746,
+ "step": 535
+ },
+ {
+ "epoch": 7.445993031358885,
+ "grad_norm": 0.03880009427666664,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 2.4876725673675537,
+ "step": 536
+ },
+ {
+ "epoch": 7.45993031358885,
+ "grad_norm": 0.034344322979450226,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 2.5032553672790527,
+ "step": 537
+ },
+ {
+ "epoch": 7.473867595818815,
+ "grad_norm": 0.030360646545886993,
+ "learning_rate": 0.00057744320265311,
+ "loss": 2.4887325763702393,
+ "step": 538
+ },
+ {
+ "epoch": 7.487804878048781,
+ "grad_norm": 0.030478516593575478,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 2.5041327476501465,
+ "step": 539
+ },
+ {
+ "epoch": 7.501742160278746,
+ "grad_norm": 0.030038833618164062,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 2.488068103790283,
+ "step": 540
+ },
+ {
+ "epoch": 7.515679442508711,
+ "grad_norm": 0.03227488324046135,
+ "learning_rate": 0.000577136484852073,
+ "loss": 2.4851627349853516,
+ "step": 541
+ },
+ {
+ "epoch": 7.529616724738676,
+ "grad_norm": 0.03053610771894455,
+ "learning_rate": 0.000577033803741424,
+ "loss": 2.48903226852417,
+ "step": 542
+ },
+ {
+ "epoch": 7.543554006968641,
+ "grad_norm": 0.030809711664915085,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 2.487685203552246,
+ "step": 543
+ },
+ {
+ "epoch": 7.557491289198606,
+ "grad_norm": 0.03001537173986435,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 2.4998037815093994,
+ "step": 544
+ },
+ {
+ "epoch": 7.571428571428571,
+ "grad_norm": 0.028761114925146103,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 2.4887194633483887,
+ "step": 545
+ },
+ {
+ "epoch": 7.585365853658536,
+ "grad_norm": 0.028289001435041428,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 2.4748306274414062,
+ "step": 546
+ },
+ {
+ "epoch": 7.599303135888501,
+ "grad_norm": 0.028406348079442978,
+ "learning_rate": 0.00057651708808768,
+ "loss": 2.490642786026001,
+ "step": 547
+ },
+ {
+ "epoch": 7.613240418118467,
+ "grad_norm": 0.027616780251264572,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 2.4816768169403076,
+ "step": 548
+ },
+ {
+ "epoch": 7.627177700348432,
+ "grad_norm": 0.028579063713550568,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 2.49285888671875,
+ "step": 549
+ },
+ {
+ "epoch": 7.641114982578397,
+ "grad_norm": 0.032302722334861755,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 2.4891176223754883,
+ "step": 550
+ },
+ {
+ "epoch": 7.655052264808362,
+ "grad_norm": 0.03428734466433525,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 2.4945361614227295,
+ "step": 551
+ },
+ {
+ "epoch": 7.668989547038327,
+ "grad_norm": 0.03326137363910675,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 2.483844518661499,
+ "step": 552
+ },
+ {
+ "epoch": 7.682926829268292,
+ "grad_norm": 0.03136003762483597,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 2.4965500831604004,
+ "step": 553
+ },
+ {
+ "epoch": 7.696864111498257,
+ "grad_norm": 0.031299516558647156,
+ "learning_rate": 0.000575784433093151,
+ "loss": 2.4755914211273193,
+ "step": 554
+ },
+ {
+ "epoch": 7.710801393728223,
+ "grad_norm": 0.030511915683746338,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 2.4844446182250977,
+ "step": 555
+ },
+ {
+ "epoch": 7.724738675958188,
+ "grad_norm": 0.03106229193508625,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 2.4614830017089844,
+ "step": 556
+ },
+ {
+ "epoch": 7.7386759581881535,
+ "grad_norm": 0.032561615109443665,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 2.476231813430786,
+ "step": 557
+ },
+ {
+ "epoch": 7.7526132404181185,
+ "grad_norm": 0.03334634751081467,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 2.4722485542297363,
+ "step": 558
+ },
+ {
+ "epoch": 7.7665505226480835,
+ "grad_norm": 0.03567497059702873,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 2.471876621246338,
+ "step": 559
+ },
+ {
+ "epoch": 7.780487804878049,
+ "grad_norm": 0.038662221282720566,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 2.4947409629821777,
+ "step": 560
+ },
+ {
+ "epoch": 7.794425087108014,
+ "grad_norm": 0.036901816725730896,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 2.470515489578247,
+ "step": 561
+ },
+ {
+ "epoch": 7.80836236933798,
+ "grad_norm": 0.03382178768515587,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 2.4678587913513184,
+ "step": 562
+ },
+ {
+ "epoch": 7.822299651567945,
+ "grad_norm": 0.03480829298496246,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 2.4690866470336914,
+ "step": 563
+ },
+ {
+ "epoch": 7.83623693379791,
+ "grad_norm": 0.03593127429485321,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 2.491703748703003,
+ "step": 564
+ },
+ {
+ "epoch": 7.850174216027875,
+ "grad_norm": 0.03532601520419121,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 2.468522548675537,
+ "step": 565
+ },
+ {
+ "epoch": 7.86411149825784,
+ "grad_norm": 0.035680219531059265,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 2.4759652614593506,
+ "step": 566
+ },
+ {
+ "epoch": 7.878048780487805,
+ "grad_norm": 0.03417263925075531,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 2.4931888580322266,
+ "step": 567
+ },
+ {
+ "epoch": 7.89198606271777,
+ "grad_norm": 0.03273053467273712,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 2.466641426086426,
+ "step": 568
+ },
+ {
+ "epoch": 7.905923344947735,
+ "grad_norm": 0.032283321022987366,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 2.466756820678711,
+ "step": 569
+ },
+ {
+ "epoch": 7.9198606271777,
+ "grad_norm": 0.03162473440170288,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 2.4725847244262695,
+ "step": 570
+ },
+ {
+ "epoch": 7.933797909407666,
+ "grad_norm": 0.03218452259898186,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 2.46532940864563,
+ "step": 571
+ },
+ {
+ "epoch": 7.947735191637631,
+ "grad_norm": 0.03216313198208809,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 2.4749364852905273,
+ "step": 572
+ },
+ {
+ "epoch": 7.961672473867596,
+ "grad_norm": 0.03091583214700222,
+ "learning_rate": 0.000573741597999996,
+ "loss": 2.470108985900879,
+ "step": 573
+ },
+ {
+ "epoch": 7.975609756097561,
+ "grad_norm": 0.028130974620580673,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 2.466053009033203,
+ "step": 574
+ },
+ {
+ "epoch": 7.989547038327526,
+ "grad_norm": 0.03071889653801918,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 2.4787344932556152,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.02555985376238823,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 1.8408641815185547,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 0.6343774199485779,
+ "eval_runtime": 38.5533,
+ "eval_samples_per_second": 63.341,
+ "eval_steps_per_second": 0.519,
+ "step": 576
+ },
+ {
+ "epoch": 8.013937282229966,
+ "grad_norm": 0.03359892964363098,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 2.4359030723571777,
+ "step": 577
+ },
+ {
+ "epoch": 8.02787456445993,
+ "grad_norm": 0.05054016411304474,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 2.4193553924560547,
+ "step": 578
+ },
+ {
+ "epoch": 8.041811846689896,
+ "grad_norm": 0.062336456030607224,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 2.4455740451812744,
+ "step": 579
+ },
+ {
+ "epoch": 8.05574912891986,
+ "grad_norm": 0.06716352701187134,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 2.4429545402526855,
+ "step": 580
+ },
+ {
+ "epoch": 8.069686411149826,
+ "grad_norm": 0.06647022068500519,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 2.4446518421173096,
+ "step": 581
+ },
+ {
+ "epoch": 8.08362369337979,
+ "grad_norm": 0.0826159194111824,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 2.436643600463867,
+ "step": 582
+ },
+ {
+ "epoch": 8.097560975609756,
+ "grad_norm": 0.08472150564193726,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 2.451641082763672,
+ "step": 583
+ },
+ {
+ "epoch": 8.111498257839722,
+ "grad_norm": 0.07912597805261612,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 2.447244167327881,
+ "step": 584
+ },
+ {
+ "epoch": 8.125435540069686,
+ "grad_norm": 0.0796087384223938,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 2.4437828063964844,
+ "step": 585
+ },
+ {
+ "epoch": 8.139372822299652,
+ "grad_norm": 0.07414955645799637,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 2.437047004699707,
+ "step": 586
+ },
+ {
+ "epoch": 8.153310104529616,
+ "grad_norm": 0.06763316690921783,
+ "learning_rate": 0.000572185929672906,
+ "loss": 2.446570873260498,
+ "step": 587
+ },
+ {
+ "epoch": 8.167247386759582,
+ "grad_norm": 0.05742042511701584,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 2.445460796356201,
+ "step": 588
+ },
+ {
+ "epoch": 8.181184668989546,
+ "grad_norm": 0.0572611466050148,
+ "learning_rate": 0.000571960215520345,
+ "loss": 2.4439504146575928,
+ "step": 589
+ },
+ {
+ "epoch": 8.195121951219512,
+ "grad_norm": 0.05339052528142929,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 2.4502882957458496,
+ "step": 590
+ },
+ {
+ "epoch": 8.209059233449477,
+ "grad_norm": 0.05900551751255989,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 2.450836658477783,
+ "step": 591
+ },
+ {
+ "epoch": 8.222996515679442,
+ "grad_norm": 0.06624466180801392,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 2.4539589881896973,
+ "step": 592
+ },
+ {
+ "epoch": 8.236933797909408,
+ "grad_norm": 0.06468363106250763,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 2.448918342590332,
+ "step": 593
+ },
+ {
+ "epoch": 8.250871080139373,
+ "grad_norm": 0.04979013651609421,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 2.447591781616211,
+ "step": 594
+ },
+ {
+ "epoch": 8.264808362369338,
+ "grad_norm": 0.047402940690517426,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 2.450143337249756,
+ "step": 595
+ },
+ {
+ "epoch": 8.278745644599303,
+ "grad_norm": 0.041620269417762756,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 2.4322123527526855,
+ "step": 596
+ },
+ {
+ "epoch": 8.292682926829269,
+ "grad_norm": 0.04016399011015892,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 2.4417006969451904,
+ "step": 597
+ },
+ {
+ "epoch": 8.306620209059233,
+ "grad_norm": 0.04293493181467056,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 2.4442501068115234,
+ "step": 598
+ },
+ {
+ "epoch": 8.320557491289199,
+ "grad_norm": 0.041785892099142075,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 2.4570703506469727,
+ "step": 599
+ },
+ {
+ "epoch": 8.334494773519165,
+ "grad_norm": 0.042869169265031815,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 2.4294066429138184,
+ "step": 600
+ },
+ {
+ "epoch": 8.348432055749129,
+ "grad_norm": 0.04059606418013573,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 2.4469175338745117,
+ "step": 601
+ },
+ {
+ "epoch": 8.362369337979095,
+ "grad_norm": 0.03664898872375488,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 2.432004451751709,
+ "step": 602
+ },
+ {
+ "epoch": 8.376306620209059,
+ "grad_norm": 0.031866125762462616,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 2.4305002689361572,
+ "step": 603
+ },
+ {
+ "epoch": 8.390243902439025,
+ "grad_norm": 0.03416220843791962,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 2.4407525062561035,
+ "step": 604
+ },
+ {
+ "epoch": 8.404181184668989,
+ "grad_norm": 0.03265870735049248,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 2.426929473876953,
+ "step": 605
+ },
+ {
+ "epoch": 8.418118466898955,
+ "grad_norm": 0.03337112441658974,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 2.443507671356201,
+ "step": 606
+ },
+ {
+ "epoch": 8.43205574912892,
+ "grad_norm": 0.0337977334856987,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 2.4583749771118164,
+ "step": 607
+ },
+ {
+ "epoch": 8.445993031358885,
+ "grad_norm": 0.02970845066010952,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 2.4297292232513428,
+ "step": 608
+ },
+ {
+ "epoch": 8.45993031358885,
+ "grad_norm": 0.03051869012415409,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 2.452547550201416,
+ "step": 609
+ },
+ {
+ "epoch": 8.473867595818815,
+ "grad_norm": 0.030234314501285553,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 2.427704334259033,
+ "step": 610
+ },
+ {
+ "epoch": 8.487804878048781,
+ "grad_norm": 0.0297533068805933,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 2.4193124771118164,
+ "step": 611
+ },
+ {
+ "epoch": 8.501742160278745,
+ "grad_norm": 0.030258657410740852,
+ "learning_rate": 0.000569302387925215,
+ "loss": 2.4159011840820312,
+ "step": 612
+ },
+ {
+ "epoch": 8.515679442508711,
+ "grad_norm": 0.029942622408270836,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 2.4217724800109863,
+ "step": 613
+ },
+ {
+ "epoch": 8.529616724738675,
+ "grad_norm": 0.030715234577655792,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 2.44870662689209,
+ "step": 614
+ },
+ {
+ "epoch": 8.543554006968641,
+ "grad_norm": 0.03252873569726944,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 2.417196750640869,
+ "step": 615
+ },
+ {
+ "epoch": 8.557491289198607,
+ "grad_norm": 0.03387020155787468,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 2.4181065559387207,
+ "step": 616
+ },
+ {
+ "epoch": 8.571428571428571,
+ "grad_norm": 0.035596199333667755,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 2.4240612983703613,
+ "step": 617
+ },
+ {
+ "epoch": 8.585365853658537,
+ "grad_norm": 0.03890643268823624,
+ "learning_rate": 0.000568590328960903,
+ "loss": 2.435359477996826,
+ "step": 618
+ },
+ {
+ "epoch": 8.599303135888501,
+ "grad_norm": 0.041447605937719345,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 2.4370574951171875,
+ "step": 619
+ },
+ {
+ "epoch": 8.613240418118467,
+ "grad_norm": 0.03584018349647522,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 2.4231667518615723,
+ "step": 620
+ },
+ {
+ "epoch": 8.627177700348431,
+ "grad_norm": 0.03309513255953789,
+ "learning_rate": 0.000568231409438027,
+ "loss": 2.4281513690948486,
+ "step": 621
+ },
+ {
+ "epoch": 8.641114982578397,
+ "grad_norm": 0.0365641750395298,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 2.4262235164642334,
+ "step": 622
+ },
+ {
+ "epoch": 8.655052264808361,
+ "grad_norm": 0.033776357769966125,
+ "learning_rate": 0.000567991061134677,
+ "loss": 2.4259705543518066,
+ "step": 623
+ },
+ {
+ "epoch": 8.668989547038327,
+ "grad_norm": 0.03251301124691963,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 2.4303622245788574,
+ "step": 624
+ },
+ {
+ "epoch": 8.682926829268293,
+ "grad_norm": 0.03311233967542648,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 2.4325923919677734,
+ "step": 625
+ },
+ {
+ "epoch": 8.696864111498257,
+ "grad_norm": 0.032762084156274796,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 2.423525333404541,
+ "step": 626
+ },
+ {
+ "epoch": 8.710801393728223,
+ "grad_norm": 0.03397396206855774,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 2.421725273132324,
+ "step": 627
+ },
+ {
+ "epoch": 8.724738675958188,
+ "grad_norm": 0.03827521204948425,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 2.417745590209961,
+ "step": 628
+ },
+ {
+ "epoch": 8.738675958188153,
+ "grad_norm": 0.03194425627589226,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 2.4408435821533203,
+ "step": 629
+ },
+ {
+ "epoch": 8.752613240418118,
+ "grad_norm": 0.02894434705376625,
+ "learning_rate": 0.000567143121979179,
+ "loss": 2.430302143096924,
+ "step": 630
+ },
+ {
+ "epoch": 8.766550522648084,
+ "grad_norm": 0.03130284696817398,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 2.4167380332946777,
+ "step": 631
+ },
+ {
+ "epoch": 8.78048780487805,
+ "grad_norm": 0.03176414966583252,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 2.4211833477020264,
+ "step": 632
+ },
+ {
+ "epoch": 8.794425087108014,
+ "grad_norm": 0.03023882955312729,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 2.4175009727478027,
+ "step": 633
+ },
+ {
+ "epoch": 8.80836236933798,
+ "grad_norm": 0.03027920238673687,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 2.4296345710754395,
+ "step": 634
+ },
+ {
+ "epoch": 8.822299651567944,
+ "grad_norm": 0.031661003828048706,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 2.4292376041412354,
+ "step": 635
+ },
+ {
+ "epoch": 8.83623693379791,
+ "grad_norm": 0.02943863719701767,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 2.422773599624634,
+ "step": 636
+ },
+ {
+ "epoch": 8.850174216027874,
+ "grad_norm": 0.02999107912182808,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 2.4288015365600586,
+ "step": 637
+ },
+ {
+ "epoch": 8.86411149825784,
+ "grad_norm": 0.03127457574009895,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 2.426997184753418,
+ "step": 638
+ },
+ {
+ "epoch": 8.878048780487806,
+ "grad_norm": 0.0321597196161747,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 2.418203353881836,
+ "step": 639
+ },
+ {
+ "epoch": 8.89198606271777,
+ "grad_norm": 0.032045748084783554,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 2.4220266342163086,
+ "step": 640
+ },
+ {
+ "epoch": 8.905923344947736,
+ "grad_norm": 0.031895119696855545,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 2.421767234802246,
+ "step": 641
+ },
+ {
+ "epoch": 8.9198606271777,
+ "grad_norm": 0.0330902598798275,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 2.418246269226074,
+ "step": 642
+ },
+ {
+ "epoch": 8.933797909407666,
+ "grad_norm": 0.03361523523926735,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 2.423337697982788,
+ "step": 643
+ },
+ {
+ "epoch": 8.94773519163763,
+ "grad_norm": 0.033133652061223984,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 2.4278783798217773,
+ "step": 644
+ },
+ {
+ "epoch": 8.961672473867596,
+ "grad_norm": 0.03747311979532242,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 2.434087038040161,
+ "step": 645
+ },
+ {
+ "epoch": 8.975609756097562,
+ "grad_norm": 0.036127083003520966,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 2.4167022705078125,
+ "step": 646
+ },
+ {
+ "epoch": 8.989547038327526,
+ "grad_norm": 0.03699145093560219,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 2.4243075847625732,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.028921982273459435,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 1.8086339235305786,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 0.6271453499794006,
+ "eval_runtime": 35.9474,
+ "eval_samples_per_second": 67.933,
+ "eval_steps_per_second": 0.556,
+ "step": 648
+ },
+ {
+ "epoch": 9.013937282229966,
+ "grad_norm": 0.0380239300429821,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 2.377704381942749,
+ "step": 649
+ },
+ {
+ "epoch": 9.02787456445993,
+ "grad_norm": 0.05574064329266548,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 2.399777889251709,
+ "step": 650
+ },
+ {
+ "epoch": 9.041811846689896,
+ "grad_norm": 0.06179674342274666,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 2.3851845264434814,
+ "step": 651
+ },
+ {
+ "epoch": 9.05574912891986,
+ "grad_norm": 0.06461436301469803,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 2.385363817214966,
+ "step": 652
+ },
+ {
+ "epoch": 9.069686411149826,
+ "grad_norm": 0.058009687811136246,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 2.3721890449523926,
+ "step": 653
+ },
+ {
+ "epoch": 9.08362369337979,
+ "grad_norm": 0.06488639861345291,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 2.386878490447998,
+ "step": 654
+ },
+ {
+ "epoch": 9.097560975609756,
+ "grad_norm": 0.05683685839176178,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 2.3946213722229004,
+ "step": 655
+ },
+ {
+ "epoch": 9.111498257839722,
+ "grad_norm": 0.05336347594857216,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 2.3708930015563965,
+ "step": 656
+ },
+ {
+ "epoch": 9.125435540069686,
+ "grad_norm": 0.05320737510919571,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 2.39091157913208,
+ "step": 657
+ },
+ {
+ "epoch": 9.139372822299652,
+ "grad_norm": 0.05641087517142296,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 2.381009578704834,
+ "step": 658
+ },
+ {
+ "epoch": 9.153310104529616,
+ "grad_norm": 0.06087775528430939,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 2.377963066101074,
+ "step": 659
+ },
+ {
+ "epoch": 9.167247386759582,
+ "grad_norm": 0.06592115014791489,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 2.392094135284424,
+ "step": 660
+ },
+ {
+ "epoch": 9.181184668989546,
+ "grad_norm": 0.061441708356142044,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 2.388850212097168,
+ "step": 661
+ },
+ {
+ "epoch": 9.195121951219512,
+ "grad_norm": 0.06311637908220291,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 2.38919734954834,
+ "step": 662
+ },
+ {
+ "epoch": 9.209059233449477,
+ "grad_norm": 0.07152658700942993,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 2.3724892139434814,
+ "step": 663
+ },
+ {
+ "epoch": 9.222996515679442,
+ "grad_norm": 0.06927355378866196,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 2.4017786979675293,
+ "step": 664
+ },
+ {
+ "epoch": 9.236933797909408,
+ "grad_norm": 0.062740758061409,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 2.376430034637451,
+ "step": 665
+ },
+ {
+ "epoch": 9.250871080139373,
+ "grad_norm": 0.051289040595293045,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 2.3926010131835938,
+ "step": 666
+ },
+ {
+ "epoch": 9.264808362369338,
+ "grad_norm": 0.055630262941122055,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 2.3605382442474365,
+ "step": 667
+ },
+ {
+ "epoch": 9.278745644599303,
+ "grad_norm": 0.052814628928899765,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 2.374608039855957,
+ "step": 668
+ },
+ {
+ "epoch": 9.292682926829269,
+ "grad_norm": 0.05927073210477829,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 2.384093999862671,
+ "step": 669
+ },
+ {
+ "epoch": 9.306620209059233,
+ "grad_norm": 0.05510697513818741,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 2.374708652496338,
+ "step": 670
+ },
+ {
+ "epoch": 9.320557491289199,
+ "grad_norm": 0.048580385744571686,
+ "learning_rate": 0.000561968326197397,
+ "loss": 2.3861031532287598,
+ "step": 671
+ },
+ {
+ "epoch": 9.334494773519165,
+ "grad_norm": 0.04905429109930992,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 2.3835110664367676,
+ "step": 672
+ },
+ {
+ "epoch": 9.348432055749129,
+ "grad_norm": 0.04621037095785141,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 2.379696846008301,
+ "step": 673
+ },
+ {
+ "epoch": 9.362369337979095,
+ "grad_norm": 0.0437726229429245,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 2.3854074478149414,
+ "step": 674
+ },
+ {
+ "epoch": 9.376306620209059,
+ "grad_norm": 0.040361031889915466,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 2.39682936668396,
+ "step": 675
+ },
+ {
+ "epoch": 9.390243902439025,
+ "grad_norm": 0.03848707675933838,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 2.3752408027648926,
+ "step": 676
+ },
+ {
+ "epoch": 9.404181184668989,
+ "grad_norm": 0.04017478972673416,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 2.3912038803100586,
+ "step": 677
+ },
+ {
+ "epoch": 9.418118466898955,
+ "grad_norm": 0.03487734496593475,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 2.389535427093506,
+ "step": 678
+ },
+ {
+ "epoch": 9.43205574912892,
+ "grad_norm": 0.03736500069499016,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 2.3840279579162598,
+ "step": 679
+ },
+ {
+ "epoch": 9.445993031358885,
+ "grad_norm": 0.03499516844749451,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 2.3752779960632324,
+ "step": 680
+ },
+ {
+ "epoch": 9.45993031358885,
+ "grad_norm": 0.03297547250986099,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 2.3991637229919434,
+ "step": 681
+ },
+ {
+ "epoch": 9.473867595818815,
+ "grad_norm": 0.03387392312288284,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 2.3872644901275635,
+ "step": 682
+ },
+ {
+ "epoch": 9.487804878048781,
+ "grad_norm": 0.03756970539689064,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 2.368522882461548,
+ "step": 683
+ },
+ {
+ "epoch": 9.501742160278745,
+ "grad_norm": 0.03686998412013054,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 2.381460189819336,
+ "step": 684
+ },
+ {
+ "epoch": 9.515679442508711,
+ "grad_norm": 0.03336082771420479,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 2.3871984481811523,
+ "step": 685
+ },
+ {
+ "epoch": 9.529616724738675,
+ "grad_norm": 0.03545147553086281,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 2.3921163082122803,
+ "step": 686
+ },
+ {
+ "epoch": 9.543554006968641,
+ "grad_norm": 0.03614704683423042,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 2.388418197631836,
+ "step": 687
+ },
+ {
+ "epoch": 9.557491289198607,
+ "grad_norm": 0.0350213497877121,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 2.399055004119873,
+ "step": 688
+ },
+ {
+ "epoch": 9.571428571428571,
+ "grad_norm": 0.035602837800979614,
+ "learning_rate": 0.000559585254906272,
+ "loss": 2.3897178173065186,
+ "step": 689
+ },
+ {
+ "epoch": 9.585365853658537,
+ "grad_norm": 0.03438388183712959,
+ "learning_rate": 0.000559450892376025,
+ "loss": 2.407155990600586,
+ "step": 690
+ },
+ {
+ "epoch": 9.599303135888501,
+ "grad_norm": 0.035386405885219574,
+ "learning_rate": 0.000559316323227926,
+ "loss": 2.390408992767334,
+ "step": 691
+ },
+ {
+ "epoch": 9.613240418118467,
+ "grad_norm": 0.03753617778420448,
+ "learning_rate": 0.000559181547570395,
+ "loss": 2.3751039505004883,
+ "step": 692
+ },
+ {
+ "epoch": 9.627177700348431,
+ "grad_norm": 0.03430183231830597,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 2.3941941261291504,
+ "step": 693
+ },
+ {
+ "epoch": 9.641114982578397,
+ "grad_norm": 0.03268825262784958,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 2.3772215843200684,
+ "step": 694
+ },
+ {
+ "epoch": 9.655052264808361,
+ "grad_norm": 0.0341268889605999,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 2.3830480575561523,
+ "step": 695
+ },
+ {
+ "epoch": 9.668989547038327,
+ "grad_norm": 0.03466663882136345,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 2.3796463012695312,
+ "step": 696
+ },
+ {
+ "epoch": 9.682926829268293,
+ "grad_norm": 0.03470399230718613,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 2.385427713394165,
+ "step": 697
+ },
+ {
+ "epoch": 9.696864111498257,
+ "grad_norm": 0.0382751040160656,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 2.3877949714660645,
+ "step": 698
+ },
+ {
+ "epoch": 9.710801393728223,
+ "grad_norm": 0.035988591611385345,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 2.378014326095581,
+ "step": 699
+ },
+ {
+ "epoch": 9.724738675958188,
+ "grad_norm": 0.03295210376381874,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 2.382502555847168,
+ "step": 700
+ },
+ {
+ "epoch": 9.738675958188153,
+ "grad_norm": 0.030723385512828827,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 2.388451099395752,
+ "step": 701
+ },
+ {
+ "epoch": 9.752613240418118,
+ "grad_norm": 0.03281056135892868,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 2.387669086456299,
+ "step": 702
+ },
+ {
+ "epoch": 9.766550522648084,
+ "grad_norm": 0.03443330153822899,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 2.381460189819336,
+ "step": 703
+ },
+ {
+ "epoch": 9.78048780487805,
+ "grad_norm": 0.03670412674546242,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 2.3756155967712402,
+ "step": 704
+ },
+ {
+ "epoch": 9.794425087108014,
+ "grad_norm": 0.03445884957909584,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 2.371798515319824,
+ "step": 705
+ },
+ {
+ "epoch": 9.80836236933798,
+ "grad_norm": 0.03341168165206909,
+ "learning_rate": 0.000557273065985207,
+ "loss": 2.366093635559082,
+ "step": 706
+ },
+ {
+ "epoch": 9.822299651567944,
+ "grad_norm": 0.035434722900390625,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 2.3876760005950928,
+ "step": 707
+ },
+ {
+ "epoch": 9.83623693379791,
+ "grad_norm": 0.036071036010980606,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 2.363477945327759,
+ "step": 708
+ },
+ {
+ "epoch": 9.850174216027874,
+ "grad_norm": 0.03642858937382698,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 2.3772635459899902,
+ "step": 709
+ },
+ {
+ "epoch": 9.86411149825784,
+ "grad_norm": 0.03974858298897743,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 2.3893399238586426,
+ "step": 710
+ },
+ {
+ "epoch": 9.878048780487806,
+ "grad_norm": 0.040428902953863144,
+ "learning_rate": 0.000556581718698499,
+ "loss": 2.385814666748047,
+ "step": 711
+ },
+ {
+ "epoch": 9.89198606271777,
+ "grad_norm": 0.03710169717669487,
+ "learning_rate": 0.000556442835876097,
+ "loss": 2.3817856311798096,
+ "step": 712
+ },
+ {
+ "epoch": 9.905923344947736,
+ "grad_norm": 0.031853094696998596,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 2.3833706378936768,
+ "step": 713
+ },
+ {
+ "epoch": 9.9198606271777,
+ "grad_norm": 0.03192576766014099,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 2.380492687225342,
+ "step": 714
+ },
+ {
+ "epoch": 9.933797909407666,
+ "grad_norm": 0.03222471475601196,
+ "learning_rate": 0.000556024962691404,
+ "loss": 2.368129014968872,
+ "step": 715
+ },
+ {
+ "epoch": 9.94773519163763,
+ "grad_norm": 0.033947065472602844,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 2.392598867416382,
+ "step": 716
+ },
+ {
+ "epoch": 9.961672473867596,
+ "grad_norm": 0.030860550701618195,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 2.392878532409668,
+ "step": 717
+ },
+ {
+ "epoch": 9.975609756097562,
+ "grad_norm": 0.03237077221274376,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 2.3881583213806152,
+ "step": 718
+ },
+ {
+ "epoch": 9.989547038327526,
+ "grad_norm": 0.03429335355758667,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 2.385345458984375,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.025040561333298683,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 1.7694379091262817,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 0.6226440668106079,
+ "eval_runtime": 35.9996,
+ "eval_samples_per_second": 67.834,
+ "eval_steps_per_second": 0.556,
+ "step": 720
+ },
+ {
+ "epoch": 10.013937282229966,
+ "grad_norm": 0.04380113258957863,
+ "learning_rate": 0.0005551837152119915,
+ "loss": 2.338531494140625,
+ "step": 721
+ },
+ {
+ "epoch": 10.02787456445993,
+ "grad_norm": 0.06502492725849152,
+ "learning_rate": 0.0005550427955088455,
+ "loss": 2.336862087249756,
+ "step": 722
+ },
+ {
+ "epoch": 10.041811846689896,
+ "grad_norm": 0.06072859466075897,
+ "learning_rate": 0.0005549016727393715,
+ "loss": 2.345121383666992,
+ "step": 723
+ },
+ {
+ "epoch": 10.05574912891986,
+ "grad_norm": 0.06489435583353043,
+ "learning_rate": 0.0005547603470172697,
+ "loss": 2.3135323524475098,
+ "step": 724
+ },
+ {
+ "epoch": 10.069686411149826,
+ "grad_norm": 0.07557415962219238,
+ "learning_rate": 0.0005546188184564036,
+ "loss": 2.346886157989502,
+ "step": 725
+ },
+ {
+ "epoch": 10.08362369337979,
+ "grad_norm": 0.07416220009326935,
+ "learning_rate": 0.0005544770871708004,
+ "loss": 2.347463607788086,
+ "step": 726
+ },
+ {
+ "epoch": 10.097560975609756,
+ "grad_norm": 0.07228727638721466,
+ "learning_rate": 0.0005543351532746501,
+ "loss": 2.351980209350586,
+ "step": 727
+ },
+ {
+ "epoch": 10.111498257839722,
+ "grad_norm": 0.07207637280225754,
+ "learning_rate": 0.0005541930168823067,
+ "loss": 2.3345837593078613,
+ "step": 728
+ },
+ {
+ "epoch": 10.125435540069686,
+ "grad_norm": 0.07364149391651154,
+ "learning_rate": 0.0005540506781082864,
+ "loss": 2.3545069694519043,
+ "step": 729
+ },
+ {
+ "epoch": 10.139372822299652,
+ "grad_norm": 0.06596208363771439,
+ "learning_rate": 0.0005539081370672695,
+ "loss": 2.3250179290771484,
+ "step": 730
+ },
+ {
+ "epoch": 10.153310104529616,
+ "grad_norm": 0.07143490016460419,
+ "learning_rate": 0.0005537653938740984,
+ "loss": 2.352842330932617,
+ "step": 731
+ },
+ {
+ "epoch": 10.167247386759582,
+ "grad_norm": 0.06986920535564423,
+ "learning_rate": 0.0005536224486437788,
+ "loss": 2.3406600952148438,
+ "step": 732
+ },
+ {
+ "epoch": 10.181184668989546,
+ "grad_norm": 0.06723238527774811,
+ "learning_rate": 0.0005534793014914793,
+ "loss": 2.36100435256958,
+ "step": 733
+ },
+ {
+ "epoch": 10.195121951219512,
+ "grad_norm": 0.07599805295467377,
+ "learning_rate": 0.0005533359525325307,
+ "loss": 2.364171028137207,
+ "step": 734
+ },
+ {
+ "epoch": 10.209059233449477,
+ "grad_norm": 0.06879840791225433,
+ "learning_rate": 0.0005531924018824266,
+ "loss": 2.3600802421569824,
+ "step": 735
+ },
+ {
+ "epoch": 10.222996515679442,
+ "grad_norm": 0.06736139208078384,
+ "learning_rate": 0.0005530486496568236,
+ "loss": 2.3630075454711914,
+ "step": 736
+ },
+ {
+ "epoch": 10.236933797909408,
+ "grad_norm": 0.073630690574646,
+ "learning_rate": 0.0005529046959715397,
+ "loss": 2.3535385131835938,
+ "step": 737
+ },
+ {
+ "epoch": 10.250871080139373,
+ "grad_norm": 0.081154465675354,
+ "learning_rate": 0.0005527605409425562,
+ "loss": 2.355775833129883,
+ "step": 738
+ },
+ {
+ "epoch": 10.264808362369338,
+ "grad_norm": 0.07517901808023453,
+ "learning_rate": 0.0005526161846860161,
+ "loss": 2.3474936485290527,
+ "step": 739
+ },
+ {
+ "epoch": 10.278745644599303,
+ "grad_norm": 0.06589196622371674,
+ "learning_rate": 0.0005524716273182245,
+ "loss": 2.356273651123047,
+ "step": 740
+ },
+ {
+ "epoch": 10.292682926829269,
+ "grad_norm": 0.07035321742296219,
+ "learning_rate": 0.0005523268689556489,
+ "loss": 2.3348515033721924,
+ "step": 741
+ },
+ {
+ "epoch": 10.306620209059233,
+ "grad_norm": 0.05464137718081474,
+ "learning_rate": 0.0005521819097149183,
+ "loss": 2.340257167816162,
+ "step": 742
+ },
+ {
+ "epoch": 10.320557491289199,
+ "grad_norm": 0.05040175840258598,
+ "learning_rate": 0.0005520367497128238,
+ "loss": 2.356626033782959,
+ "step": 743
+ },
+ {
+ "epoch": 10.334494773519165,
+ "grad_norm": 0.04544971138238907,
+ "learning_rate": 0.0005518913890663182,
+ "loss": 2.3765573501586914,
+ "step": 744
+ },
+ {
+ "epoch": 10.348432055749129,
+ "grad_norm": 0.04246767982840538,
+ "learning_rate": 0.0005517458278925161,
+ "loss": 2.3584630489349365,
+ "step": 745
+ },
+ {
+ "epoch": 10.362369337979095,
+ "grad_norm": 0.0407957099378109,
+ "learning_rate": 0.0005516000663086932,
+ "loss": 2.3562331199645996,
+ "step": 746
+ },
+ {
+ "epoch": 10.376306620209059,
+ "grad_norm": 0.04157666489481926,
+ "learning_rate": 0.0005514541044322872,
+ "loss": 2.355463743209839,
+ "step": 747
+ },
+ {
+ "epoch": 10.390243902439025,
+ "grad_norm": 0.03842373192310333,
+ "learning_rate": 0.0005513079423808967,
+ "loss": 2.3644120693206787,
+ "step": 748
+ },
+ {
+ "epoch": 10.404181184668989,
+ "grad_norm": 0.03891562297940254,
+ "learning_rate": 0.0005511615802722823,
+ "loss": 2.3579063415527344,
+ "step": 749
+ },
+ {
+ "epoch": 10.418118466898955,
+ "grad_norm": 0.03712530806660652,
+ "learning_rate": 0.0005510150182243647,
+ "loss": 2.3606715202331543,
+ "step": 750
+ },
+ {
+ "epoch": 10.43205574912892,
+ "grad_norm": 0.03664202243089676,
+ "learning_rate": 0.0005508682563552269,
+ "loss": 2.3363728523254395,
+ "step": 751
+ },
+ {
+ "epoch": 10.445993031358885,
+ "grad_norm": 0.03555043414235115,
+ "learning_rate": 0.0005507212947831119,
+ "loss": 2.357100009918213,
+ "step": 752
+ },
+ {
+ "epoch": 10.45993031358885,
+ "grad_norm": 0.0355045385658741,
+ "learning_rate": 0.0005505741336264239,
+ "loss": 2.348784923553467,
+ "step": 753
+ },
+ {
+ "epoch": 10.473867595818815,
+ "grad_norm": 0.036513347178697586,
+ "learning_rate": 0.0005504267730037283,
+ "loss": 2.3371458053588867,
+ "step": 754
+ },
+ {
+ "epoch": 10.487804878048781,
+ "grad_norm": 0.034735117107629776,
+ "learning_rate": 0.0005502792130337508,
+ "loss": 2.3379664421081543,
+ "step": 755
+ },
+ {
+ "epoch": 10.501742160278745,
+ "grad_norm": 0.032890401780605316,
+ "learning_rate": 0.0005501314538353776,
+ "loss": 2.345534563064575,
+ "step": 756
+ },
+ {
+ "epoch": 10.515679442508711,
+ "grad_norm": 0.0343078076839447,
+ "learning_rate": 0.000549983495527656,
+ "loss": 2.3425400257110596,
+ "step": 757
+ },
+ {
+ "epoch": 10.529616724738675,
+ "grad_norm": 0.036330267786979675,
+ "learning_rate": 0.000549835338229793,
+ "loss": 2.353668689727783,
+ "step": 758
+ },
+ {
+ "epoch": 10.543554006968641,
+ "grad_norm": 0.03595716878771782,
+ "learning_rate": 0.0005496869820611563,
+ "loss": 2.340348958969116,
+ "step": 759
+ },
+ {
+ "epoch": 10.557491289198607,
+ "grad_norm": 0.03567204624414444,
+ "learning_rate": 0.0005495384271412739,
+ "loss": 2.3443446159362793,
+ "step": 760
+ },
+ {
+ "epoch": 10.571428571428571,
+ "grad_norm": 0.03243366256356239,
+ "learning_rate": 0.0005493896735898338,
+ "loss": 2.328749179840088,
+ "step": 761
+ },
+ {
+ "epoch": 10.585365853658537,
+ "grad_norm": 0.033156730234622955,
+ "learning_rate": 0.000549240721526684,
+ "loss": 2.3553342819213867,
+ "step": 762
+ },
+ {
+ "epoch": 10.599303135888501,
+ "grad_norm": 0.03489018976688385,
+ "learning_rate": 0.0005490915710718325,
+ "loss": 2.329984664916992,
+ "step": 763
+ },
+ {
+ "epoch": 10.613240418118467,
+ "grad_norm": 0.0352267362177372,
+ "learning_rate": 0.0005489422223454471,
+ "loss": 2.34751033782959,
+ "step": 764
+ },
+ {
+ "epoch": 10.627177700348431,
+ "grad_norm": 0.03212668001651764,
+ "learning_rate": 0.0005487926754678556,
+ "loss": 2.341987133026123,
+ "step": 765
+ },
+ {
+ "epoch": 10.641114982578397,
+ "grad_norm": 0.03473065048456192,
+ "learning_rate": 0.0005486429305595448,
+ "loss": 2.343632221221924,
+ "step": 766
+ },
+ {
+ "epoch": 10.655052264808361,
+ "grad_norm": 0.03458387404680252,
+ "learning_rate": 0.0005484929877411618,
+ "loss": 2.3420281410217285,
+ "step": 767
+ },
+ {
+ "epoch": 10.668989547038327,
+ "grad_norm": 0.03573968634009361,
+ "learning_rate": 0.0005483428471335127,
+ "loss": 2.349421501159668,
+ "step": 768
+ },
+ {
+ "epoch": 10.682926829268293,
+ "grad_norm": 0.034877803176641464,
+ "learning_rate": 0.000548192508857563,
+ "loss": 2.354094982147217,
+ "step": 769
+ },
+ {
+ "epoch": 10.696864111498257,
+ "grad_norm": 0.03350481390953064,
+ "learning_rate": 0.0005480419730344377,
+ "loss": 2.334352493286133,
+ "step": 770
+ },
+ {
+ "epoch": 10.710801393728223,
+ "grad_norm": 0.03327416628599167,
+ "learning_rate": 0.0005478912397854208,
+ "loss": 2.3445448875427246,
+ "step": 771
+ },
+ {
+ "epoch": 10.724738675958188,
+ "grad_norm": 0.03491336479783058,
+ "learning_rate": 0.0005477403092319552,
+ "loss": 2.3525538444519043,
+ "step": 772
+ },
+ {
+ "epoch": 10.738675958188153,
+ "grad_norm": 0.035869523882865906,
+ "learning_rate": 0.0005475891814956429,
+ "loss": 2.3440966606140137,
+ "step": 773
+ },
+ {
+ "epoch": 10.752613240418118,
+ "grad_norm": 0.036187391728162766,
+ "learning_rate": 0.0005474378566982449,
+ "loss": 2.33382511138916,
+ "step": 774
+ },
+ {
+ "epoch": 10.766550522648084,
+ "grad_norm": 0.037324003875255585,
+ "learning_rate": 0.0005472863349616809,
+ "loss": 2.3463244438171387,
+ "step": 775
+ },
+ {
+ "epoch": 10.78048780487805,
+ "grad_norm": 0.035808268934488297,
+ "learning_rate": 0.0005471346164080292,
+ "loss": 2.3392248153686523,
+ "step": 776
+ },
+ {
+ "epoch": 10.794425087108014,
+ "grad_norm": 0.03382394090294838,
+ "learning_rate": 0.0005469827011595266,
+ "loss": 2.3399806022644043,
+ "step": 777
+ },
+ {
+ "epoch": 10.80836236933798,
+ "grad_norm": 0.03256148472428322,
+ "learning_rate": 0.0005468305893385686,
+ "loss": 2.336940050125122,
+ "step": 778
+ },
+ {
+ "epoch": 10.822299651567944,
+ "grad_norm": 0.032796118408441544,
+ "learning_rate": 0.0005466782810677088,
+ "loss": 2.3503036499023438,
+ "step": 779
+ },
+ {
+ "epoch": 10.83623693379791,
+ "grad_norm": 0.03359639272093773,
+ "learning_rate": 0.0005465257764696593,
+ "loss": 2.340160608291626,
+ "step": 780
+ },
+ {
+ "epoch": 10.850174216027874,
+ "grad_norm": 0.03725067153573036,
+ "learning_rate": 0.0005463730756672903,
+ "loss": 2.3448994159698486,
+ "step": 781
+ },
+ {
+ "epoch": 10.86411149825784,
+ "grad_norm": 0.03396180644631386,
+ "learning_rate": 0.0005462201787836301,
+ "loss": 2.337078094482422,
+ "step": 782
+ },
+ {
+ "epoch": 10.878048780487806,
+ "grad_norm": 0.034375693649053574,
+ "learning_rate": 0.0005460670859418651,
+ "loss": 2.3564600944519043,
+ "step": 783
+ },
+ {
+ "epoch": 10.89198606271777,
+ "grad_norm": 0.034513067454099655,
+ "learning_rate": 0.000545913797265339,
+ "loss": 2.3631274700164795,
+ "step": 784
+ },
+ {
+ "epoch": 10.905923344947736,
+ "grad_norm": 0.03305843099951744,
+ "learning_rate": 0.0005457603128775541,
+ "loss": 2.345407485961914,
+ "step": 785
+ },
+ {
+ "epoch": 10.9198606271777,
+ "grad_norm": 0.03236348554491997,
+ "learning_rate": 0.0005456066329021699,
+ "loss": 2.340275526046753,
+ "step": 786
+ },
+ {
+ "epoch": 10.933797909407666,
+ "grad_norm": 0.03411583974957466,
+ "learning_rate": 0.0005454527574630037,
+ "loss": 2.341548442840576,
+ "step": 787
+ },
+ {
+ "epoch": 10.94773519163763,
+ "grad_norm": 0.03641803562641144,
+ "learning_rate": 0.0005452986866840298,
+ "loss": 2.3475522994995117,
+ "step": 788
+ },
+ {
+ "epoch": 10.961672473867596,
+ "grad_norm": 0.03492163494229317,
+ "learning_rate": 0.0005451444206893806,
+ "loss": 2.3415870666503906,
+ "step": 789
+ },
+ {
+ "epoch": 10.975609756097562,
+ "grad_norm": 0.03789013251662254,
+ "learning_rate": 0.0005449899596033453,
+ "loss": 2.3574557304382324,
+ "step": 790
+ },
+ {
+ "epoch": 10.989547038327526,
+ "grad_norm": 0.034537237137556076,
+ "learning_rate": 0.0005448353035503704,
+ "loss": 2.350353717803955,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.026393387466669083,
+ "learning_rate": 0.0005446804526550596,
+ "loss": 1.7534164190292358,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 0.6207266449928284,
+ "eval_runtime": 36.6286,
+ "eval_samples_per_second": 66.669,
+ "eval_steps_per_second": 0.546,
+ "step": 792
+ },
+ {
+ "epoch": 11.013937282229966,
+ "grad_norm": 0.04500797390937805,
+ "learning_rate": 0.0005445254070421732,
+ "loss": 2.29563570022583,
+ "step": 793
+ },
+ {
+ "epoch": 11.02787456445993,
+ "grad_norm": 0.058218058198690414,
+ "learning_rate": 0.0005443701668366288,
+ "loss": 2.285862445831299,
+ "step": 794
+ },
+ {
+ "epoch": 11.041811846689896,
+ "grad_norm": 0.06746228039264679,
+ "learning_rate": 0.0005442147321635007,
+ "loss": 2.2930586338043213,
+ "step": 795
+ },
+ {
+ "epoch": 11.05574912891986,
+ "grad_norm": 0.07853464037179947,
+ "learning_rate": 0.00054405910314802,
+ "loss": 2.2999796867370605,
+ "step": 796
+ },
+ {
+ "epoch": 11.069686411149826,
+ "grad_norm": 0.0743563324213028,
+ "learning_rate": 0.0005439032799155737,
+ "loss": 2.3127989768981934,
+ "step": 797
+ },
+ {
+ "epoch": 11.08362369337979,
+ "grad_norm": 0.06950018554925919,
+ "learning_rate": 0.000543747262591706,
+ "loss": 2.302677631378174,
+ "step": 798
+ },
+ {
+ "epoch": 11.097560975609756,
+ "grad_norm": 0.0668293684720993,
+ "learning_rate": 0.0005435910513021172,
+ "loss": 2.3067705631256104,
+ "step": 799
+ },
+ {
+ "epoch": 11.111498257839722,
+ "grad_norm": 0.05805148929357529,
+ "learning_rate": 0.0005434346461726641,
+ "loss": 2.2972123622894287,
+ "step": 800
+ },
+ {
+ "epoch": 11.125435540069686,
+ "grad_norm": 0.059285592287778854,
+ "learning_rate": 0.0005432780473293593,
+ "loss": 2.302372932434082,
+ "step": 801
+ },
+ {
+ "epoch": 11.139372822299652,
+ "grad_norm": 0.054501719772815704,
+ "learning_rate": 0.0005431212548983718,
+ "loss": 2.305246353149414,
+ "step": 802
+ },
+ {
+ "epoch": 11.153310104529616,
+ "grad_norm": 0.05490308254957199,
+ "learning_rate": 0.0005429642690060262,
+ "loss": 2.300204277038574,
+ "step": 803
+ },
+ {
+ "epoch": 11.167247386759582,
+ "grad_norm": 0.05564664676785469,
+ "learning_rate": 0.0005428070897788034,
+ "loss": 2.295349597930908,
+ "step": 804
+ },
+ {
+ "epoch": 11.181184668989546,
+ "grad_norm": 0.04841756820678711,
+ "learning_rate": 0.0005426497173433398,
+ "loss": 2.3083786964416504,
+ "step": 805
+ },
+ {
+ "epoch": 11.195121951219512,
+ "grad_norm": 0.05090150982141495,
+ "learning_rate": 0.0005424921518264275,
+ "loss": 2.2890477180480957,
+ "step": 806
+ },
+ {
+ "epoch": 11.209059233449477,
+ "grad_norm": 0.049588896334171295,
+ "learning_rate": 0.0005423343933550143,
+ "loss": 2.3092164993286133,
+ "step": 807
+ },
+ {
+ "epoch": 11.222996515679442,
+ "grad_norm": 0.059266265481710434,
+ "learning_rate": 0.0005421764420562032,
+ "loss": 2.3087329864501953,
+ "step": 808
+ },
+ {
+ "epoch": 11.236933797909408,
+ "grad_norm": 0.061635106801986694,
+ "learning_rate": 0.0005420182980572527,
+ "loss": 2.310224771499634,
+ "step": 809
+ },
+ {
+ "epoch": 11.250871080139373,
+ "grad_norm": 0.058707281947135925,
+ "learning_rate": 0.0005418599614855768,
+ "loss": 2.3094818592071533,
+ "step": 810
+ },
+ {
+ "epoch": 11.264808362369338,
+ "grad_norm": 0.05711625888943672,
+ "learning_rate": 0.0005417014324687442,
+ "loss": 2.320720672607422,
+ "step": 811
+ },
+ {
+ "epoch": 11.278745644599303,
+ "grad_norm": 0.04941999912261963,
+ "learning_rate": 0.000541542711134479,
+ "loss": 2.3037776947021484,
+ "step": 812
+ },
+ {
+ "epoch": 11.292682926829269,
+ "grad_norm": 0.0481753945350647,
+ "learning_rate": 0.0005413837976106599,
+ "loss": 2.307615280151367,
+ "step": 813
+ },
+ {
+ "epoch": 11.306620209059233,
+ "grad_norm": 0.05005398392677307,
+ "learning_rate": 0.0005412246920253208,
+ "loss": 2.302461624145508,
+ "step": 814
+ },
+ {
+ "epoch": 11.320557491289199,
+ "grad_norm": 0.051312051713466644,
+ "learning_rate": 0.0005410653945066503,
+ "loss": 2.3107659816741943,
+ "step": 815
+ },
+ {
+ "epoch": 11.334494773519165,
+ "grad_norm": 0.047787491232156754,
+ "learning_rate": 0.0005409059051829914,
+ "loss": 2.303896903991699,
+ "step": 816
+ },
+ {
+ "epoch": 11.348432055749129,
+ "grad_norm": 0.044105708599090576,
+ "learning_rate": 0.0005407462241828417,
+ "loss": 2.3028616905212402,
+ "step": 817
+ },
+ {
+ "epoch": 11.362369337979095,
+ "grad_norm": 0.04771425202488899,
+ "learning_rate": 0.0005405863516348535,
+ "loss": 2.3242416381835938,
+ "step": 818
+ },
+ {
+ "epoch": 11.376306620209059,
+ "grad_norm": 0.049508776515722275,
+ "learning_rate": 0.000540426287667833,
+ "loss": 2.317350387573242,
+ "step": 819
+ },
+ {
+ "epoch": 11.390243902439025,
+ "grad_norm": 0.04476630315184593,
+ "learning_rate": 0.000540266032410741,
+ "loss": 2.3019609451293945,
+ "step": 820
+ },
+ {
+ "epoch": 11.404181184668989,
+ "grad_norm": 0.044484466314315796,
+ "learning_rate": 0.0005401055859926923,
+ "loss": 2.3157167434692383,
+ "step": 821
+ },
+ {
+ "epoch": 11.418118466898955,
+ "grad_norm": 0.04700213670730591,
+ "learning_rate": 0.0005399449485429555,
+ "loss": 2.31441330909729,
+ "step": 822
+ },
+ {
+ "epoch": 11.43205574912892,
+ "grad_norm": 0.04357650876045227,
+ "learning_rate": 0.0005397841201909535,
+ "loss": 2.309573173522949,
+ "step": 823
+ },
+ {
+ "epoch": 11.445993031358885,
+ "grad_norm": 0.04270123690366745,
+ "learning_rate": 0.0005396231010662627,
+ "loss": 2.2956438064575195,
+ "step": 824
+ },
+ {
+ "epoch": 11.45993031358885,
+ "grad_norm": 0.04122788831591606,
+ "learning_rate": 0.0005394618912986132,
+ "loss": 2.3093338012695312,
+ "step": 825
+ },
+ {
+ "epoch": 11.473867595818815,
+ "grad_norm": 0.040944404900074005,
+ "learning_rate": 0.0005393004910178889,
+ "loss": 2.3245465755462646,
+ "step": 826
+ },
+ {
+ "epoch": 11.487804878048781,
+ "grad_norm": 0.04059522598981857,
+ "learning_rate": 0.0005391389003541271,
+ "loss": 2.307492733001709,
+ "step": 827
+ },
+ {
+ "epoch": 11.501742160278745,
+ "grad_norm": 0.04292140156030655,
+ "learning_rate": 0.0005389771194375185,
+ "loss": 2.32723069190979,
+ "step": 828
+ },
+ {
+ "epoch": 11.515679442508711,
+ "grad_norm": 0.041085343807935715,
+ "learning_rate": 0.0005388151483984071,
+ "loss": 2.3025991916656494,
+ "step": 829
+ },
+ {
+ "epoch": 11.529616724738675,
+ "grad_norm": 0.040302127599716187,
+ "learning_rate": 0.0005386529873672898,
+ "loss": 2.306711196899414,
+ "step": 830
+ },
+ {
+ "epoch": 11.543554006968641,
+ "grad_norm": 0.04179452359676361,
+ "learning_rate": 0.0005384906364748172,
+ "loss": 2.299077033996582,
+ "step": 831
+ },
+ {
+ "epoch": 11.557491289198607,
+ "grad_norm": 0.04052369296550751,
+ "learning_rate": 0.000538328095851792,
+ "loss": 2.3212227821350098,
+ "step": 832
+ },
+ {
+ "epoch": 11.571428571428571,
+ "grad_norm": 0.03855585679411888,
+ "learning_rate": 0.0005381653656291707,
+ "loss": 2.2905197143554688,
+ "step": 833
+ },
+ {
+ "epoch": 11.585365853658537,
+ "grad_norm": 0.04159102961421013,
+ "learning_rate": 0.0005380024459380619,
+ "loss": 2.2973320484161377,
+ "step": 834
+ },
+ {
+ "epoch": 11.599303135888501,
+ "grad_norm": 0.044633787125349045,
+ "learning_rate": 0.000537839336909727,
+ "loss": 2.3214757442474365,
+ "step": 835
+ },
+ {
+ "epoch": 11.613240418118467,
+ "grad_norm": 0.03999071940779686,
+ "learning_rate": 0.00053767603867558,
+ "loss": 2.332554817199707,
+ "step": 836
+ },
+ {
+ "epoch": 11.627177700348431,
+ "grad_norm": 0.03866419568657875,
+ "learning_rate": 0.0005375125513671874,
+ "loss": 2.3050875663757324,
+ "step": 837
+ },
+ {
+ "epoch": 11.641114982578397,
+ "grad_norm": 0.041100166738033295,
+ "learning_rate": 0.0005373488751162681,
+ "loss": 2.316553831100464,
+ "step": 838
+ },
+ {
+ "epoch": 11.655052264808361,
+ "grad_norm": 0.040330950170755386,
+ "learning_rate": 0.0005371850100546929,
+ "loss": 2.310610294342041,
+ "step": 839
+ },
+ {
+ "epoch": 11.668989547038327,
+ "grad_norm": 0.03405703231692314,
+ "learning_rate": 0.000537020956314485,
+ "loss": 2.311572313308716,
+ "step": 840
+ },
+ {
+ "epoch": 11.682926829268293,
+ "grad_norm": 0.038694240152835846,
+ "learning_rate": 0.0005368567140278196,
+ "loss": 2.291428565979004,
+ "step": 841
+ },
+ {
+ "epoch": 11.696864111498257,
+ "grad_norm": 0.03937961906194687,
+ "learning_rate": 0.0005366922833270235,
+ "loss": 2.315734386444092,
+ "step": 842
+ },
+ {
+ "epoch": 11.710801393728223,
+ "grad_norm": 0.038759566843509674,
+ "learning_rate": 0.0005365276643445757,
+ "loss": 2.3142471313476562,
+ "step": 843
+ },
+ {
+ "epoch": 11.724738675958188,
+ "grad_norm": 0.03737666830420494,
+ "learning_rate": 0.0005363628572131069,
+ "loss": 2.305859088897705,
+ "step": 844
+ },
+ {
+ "epoch": 11.738675958188153,
+ "grad_norm": 0.039980217814445496,
+ "learning_rate": 0.0005361978620653991,
+ "loss": 2.3132710456848145,
+ "step": 845
+ },
+ {
+ "epoch": 11.752613240418118,
+ "grad_norm": 0.040231477469205856,
+ "learning_rate": 0.0005360326790343858,
+ "loss": 2.307582139968872,
+ "step": 846
+ },
+ {
+ "epoch": 11.766550522648084,
+ "grad_norm": 0.03938363865017891,
+ "learning_rate": 0.000535867308253152,
+ "loss": 2.33015775680542,
+ "step": 847
+ },
+ {
+ "epoch": 11.78048780487805,
+ "grad_norm": 0.03871415555477142,
+ "learning_rate": 0.0005357017498549341,
+ "loss": 2.315992832183838,
+ "step": 848
+ },
+ {
+ "epoch": 11.794425087108014,
+ "grad_norm": 0.03816714137792587,
+ "learning_rate": 0.0005355360039731196,
+ "loss": 2.315371513366699,
+ "step": 849
+ },
+ {
+ "epoch": 11.80836236933798,
+ "grad_norm": 0.03860654681921005,
+ "learning_rate": 0.0005353700707412466,
+ "loss": 2.3099796772003174,
+ "step": 850
+ },
+ {
+ "epoch": 11.822299651567944,
+ "grad_norm": 0.04050910845398903,
+ "learning_rate": 0.0005352039502930048,
+ "loss": 2.331601142883301,
+ "step": 851
+ },
+ {
+ "epoch": 11.83623693379791,
+ "grad_norm": 0.040455542504787445,
+ "learning_rate": 0.0005350376427622343,
+ "loss": 2.3153774738311768,
+ "step": 852
+ },
+ {
+ "epoch": 11.850174216027874,
+ "grad_norm": 0.03606412559747696,
+ "learning_rate": 0.0005348711482829261,
+ "loss": 2.3196091651916504,
+ "step": 853
+ },
+ {
+ "epoch": 11.86411149825784,
+ "grad_norm": 0.03540179878473282,
+ "learning_rate": 0.000534704466989222,
+ "loss": 2.3175747394561768,
+ "step": 854
+ },
+ {
+ "epoch": 11.878048780487806,
+ "grad_norm": 0.03594037890434265,
+ "learning_rate": 0.0005345375990154138,
+ "loss": 2.3123281002044678,
+ "step": 855
+ },
+ {
+ "epoch": 11.89198606271777,
+ "grad_norm": 0.037316273897886276,
+ "learning_rate": 0.0005343705444959441,
+ "loss": 2.326590061187744,
+ "step": 856
+ },
+ {
+ "epoch": 11.905923344947736,
+ "grad_norm": 0.03534175828099251,
+ "learning_rate": 0.000534203303565406,
+ "loss": 2.289609670639038,
+ "step": 857
+ },
+ {
+ "epoch": 11.9198606271777,
+ "grad_norm": 0.03645944595336914,
+ "learning_rate": 0.000534035876358542,
+ "loss": 2.310405731201172,
+ "step": 858
+ },
+ {
+ "epoch": 11.933797909407666,
+ "grad_norm": 0.033878158777952194,
+ "learning_rate": 0.0005338682630102454,
+ "loss": 2.3025999069213867,
+ "step": 859
+ },
+ {
+ "epoch": 11.94773519163763,
+ "grad_norm": 0.03515630215406418,
+ "learning_rate": 0.0005337004636555595,
+ "loss": 2.3085150718688965,
+ "step": 860
+ },
+ {
+ "epoch": 11.961672473867596,
+ "grad_norm": 0.034178491681814194,
+ "learning_rate": 0.0005335324784296768,
+ "loss": 2.3223443031311035,
+ "step": 861
+ },
+ {
+ "epoch": 11.975609756097562,
+ "grad_norm": 0.0340011864900589,
+ "learning_rate": 0.0005333643074679403,
+ "loss": 2.324476957321167,
+ "step": 862
+ },
+ {
+ "epoch": 11.989547038327526,
+ "grad_norm": 0.03569193184375763,
+ "learning_rate": 0.000533195950905842,
+ "loss": 2.3087520599365234,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.030978869646787643,
+ "learning_rate": 0.0005330274088790239,
+ "loss": 1.733755350112915,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 0.6196663975715637,
+ "eval_runtime": 38.4411,
+ "eval_samples_per_second": 63.526,
+ "eval_steps_per_second": 0.52,
+ "step": 864
+ },
+ {
+ "epoch": 12.013937282229966,
+ "grad_norm": 0.04311290383338928,
+ "learning_rate": 0.0005328586815232773,
+ "loss": 2.267500638961792,
+ "step": 865
+ },
+ {
+ "epoch": 12.02787456445993,
+ "grad_norm": 0.05809512361884117,
+ "learning_rate": 0.0005326897689745428,
+ "loss": 2.269824981689453,
+ "step": 866
+ },
+ {
+ "epoch": 12.041811846689896,
+ "grad_norm": 0.06641583144664764,
+ "learning_rate": 0.0005325206713689101,
+ "loss": 2.2579562664031982,
+ "step": 867
+ },
+ {
+ "epoch": 12.05574912891986,
+ "grad_norm": 0.06946069747209549,
+ "learning_rate": 0.0005323513888426181,
+ "loss": 2.2649731636047363,
+ "step": 868
+ },
+ {
+ "epoch": 12.069686411149826,
+ "grad_norm": 0.07457753270864487,
+ "learning_rate": 0.0005321819215320546,
+ "loss": 2.271296501159668,
+ "step": 869
+ },
+ {
+ "epoch": 12.08362369337979,
+ "grad_norm": 0.08557604998350143,
+ "learning_rate": 0.0005320122695737565,
+ "loss": 2.2977068424224854,
+ "step": 870
+ },
+ {
+ "epoch": 12.097560975609756,
+ "grad_norm": 0.07865381985902786,
+ "learning_rate": 0.0005318424331044094,
+ "loss": 2.2831926345825195,
+ "step": 871
+ },
+ {
+ "epoch": 12.111498257839722,
+ "grad_norm": 0.07406128942966461,
+ "learning_rate": 0.0005316724122608473,
+ "loss": 2.280620574951172,
+ "step": 872
+ },
+ {
+ "epoch": 12.125435540069686,
+ "grad_norm": 0.08649969846010208,
+ "learning_rate": 0.0005315022071800527,
+ "loss": 2.2639617919921875,
+ "step": 873
+ },
+ {
+ "epoch": 12.139372822299652,
+ "grad_norm": 0.08262167125940323,
+ "learning_rate": 0.0005313318179991574,
+ "loss": 2.271108627319336,
+ "step": 874
+ },
+ {
+ "epoch": 12.153310104529616,
+ "grad_norm": 0.0752791240811348,
+ "learning_rate": 0.0005311612448554402,
+ "loss": 2.273391008377075,
+ "step": 875
+ },
+ {
+ "epoch": 12.167247386759582,
+ "grad_norm": 0.07095267623662949,
+ "learning_rate": 0.0005309904878863293,
+ "loss": 2.276211977005005,
+ "step": 876
+ },
+ {
+ "epoch": 12.181184668989546,
+ "grad_norm": 0.061625171452760696,
+ "learning_rate": 0.0005308195472294001,
+ "loss": 2.2848544120788574,
+ "step": 877
+ },
+ {
+ "epoch": 12.195121951219512,
+ "grad_norm": 0.06082753837108612,
+ "learning_rate": 0.0005306484230223769,
+ "loss": 2.2795495986938477,
+ "step": 878
+ },
+ {
+ "epoch": 12.209059233449477,
+ "grad_norm": 0.0587560310959816,
+ "learning_rate": 0.000530477115403131,
+ "loss": 2.257300853729248,
+ "step": 879
+ },
+ {
+ "epoch": 12.222996515679442,
+ "grad_norm": 0.05483998730778694,
+ "learning_rate": 0.0005303056245096817,
+ "loss": 2.2889161109924316,
+ "step": 880
+ },
+ {
+ "epoch": 12.236933797909408,
+ "grad_norm": 0.05021355301141739,
+ "learning_rate": 0.0005301339504801967,
+ "loss": 2.2778401374816895,
+ "step": 881
+ },
+ {
+ "epoch": 12.250871080139373,
+ "grad_norm": 0.05440690740942955,
+ "learning_rate": 0.0005299620934529902,
+ "loss": 2.2760677337646484,
+ "step": 882
+ },
+ {
+ "epoch": 12.264808362369338,
+ "grad_norm": 0.05961807072162628,
+ "learning_rate": 0.0005297900535665244,
+ "loss": 2.276120185852051,
+ "step": 883
+ },
+ {
+ "epoch": 12.278745644599303,
+ "grad_norm": 0.054035380482673645,
+ "learning_rate": 0.0005296178309594087,
+ "loss": 2.255659341812134,
+ "step": 884
+ },
+ {
+ "epoch": 12.292682926829269,
+ "grad_norm": 0.05121298506855965,
+ "learning_rate": 0.0005294454257704,
+ "loss": 2.2852983474731445,
+ "step": 885
+ },
+ {
+ "epoch": 12.306620209059233,
+ "grad_norm": 0.04890505596995354,
+ "learning_rate": 0.0005292728381384018,
+ "loss": 2.2752151489257812,
+ "step": 886
+ },
+ {
+ "epoch": 12.320557491289199,
+ "grad_norm": 0.05019564554095268,
+ "learning_rate": 0.0005291000682024647,
+ "loss": 2.261242389678955,
+ "step": 887
+ },
+ {
+ "epoch": 12.334494773519165,
+ "grad_norm": 0.04824003204703331,
+ "learning_rate": 0.0005289271161017867,
+ "loss": 2.2752835750579834,
+ "step": 888
+ },
+ {
+ "epoch": 12.348432055749129,
+ "grad_norm": 0.04195769876241684,
+ "learning_rate": 0.0005287539819757119,
+ "loss": 2.2705702781677246,
+ "step": 889
+ },
+ {
+ "epoch": 12.362369337979095,
+ "grad_norm": 0.046239253133535385,
+ "learning_rate": 0.0005285806659637315,
+ "loss": 2.2981534004211426,
+ "step": 890
+ },
+ {
+ "epoch": 12.376306620209059,
+ "grad_norm": 0.04743665084242821,
+ "learning_rate": 0.000528407168205483,
+ "loss": 2.278078079223633,
+ "step": 891
+ },
+ {
+ "epoch": 12.390243902439025,
+ "grad_norm": 0.04690218344330788,
+ "learning_rate": 0.0005282334888407503,
+ "loss": 2.2809972763061523,
+ "step": 892
+ },
+ {
+ "epoch": 12.404181184668989,
+ "grad_norm": 0.0444699302315712,
+ "learning_rate": 0.000528059628009464,
+ "loss": 2.2702579498291016,
+ "step": 893
+ },
+ {
+ "epoch": 12.418118466898955,
+ "grad_norm": 0.04225282371044159,
+ "learning_rate": 0.0005278855858517003,
+ "loss": 2.2717671394348145,
+ "step": 894
+ },
+ {
+ "epoch": 12.43205574912892,
+ "grad_norm": 0.041407857090234756,
+ "learning_rate": 0.0005277113625076822,
+ "loss": 2.266977548599243,
+ "step": 895
+ },
+ {
+ "epoch": 12.445993031358885,
+ "grad_norm": 0.042014770209789276,
+ "learning_rate": 0.000527536958117778,
+ "loss": 2.269441604614258,
+ "step": 896
+ },
+ {
+ "epoch": 12.45993031358885,
+ "grad_norm": 0.04196929931640625,
+ "learning_rate": 0.0005273623728225022,
+ "loss": 2.246767997741699,
+ "step": 897
+ },
+ {
+ "epoch": 12.473867595818815,
+ "grad_norm": 0.04507727175951004,
+ "learning_rate": 0.0005271876067625153,
+ "loss": 2.2929835319519043,
+ "step": 898
+ },
+ {
+ "epoch": 12.487804878048781,
+ "grad_norm": 0.043129295110702515,
+ "learning_rate": 0.0005270126600786228,
+ "loss": 2.280632257461548,
+ "step": 899
+ },
+ {
+ "epoch": 12.501742160278745,
+ "grad_norm": 0.041876427829265594,
+ "learning_rate": 0.0005268375329117762,
+ "loss": 2.2524752616882324,
+ "step": 900
+ },
+ {
+ "epoch": 12.515679442508711,
+ "grad_norm": 0.04281412810087204,
+ "learning_rate": 0.0005266622254030724,
+ "loss": 2.278818130493164,
+ "step": 901
+ },
+ {
+ "epoch": 12.529616724738675,
+ "grad_norm": 0.040438197553157806,
+ "learning_rate": 0.0005264867376937534,
+ "loss": 2.2771482467651367,
+ "step": 902
+ },
+ {
+ "epoch": 12.543554006968641,
+ "grad_norm": 0.03930707275867462,
+ "learning_rate": 0.0005263110699252065,
+ "loss": 2.273127555847168,
+ "step": 903
+ },
+ {
+ "epoch": 12.557491289198607,
+ "grad_norm": 0.04181307926774025,
+ "learning_rate": 0.000526135222238964,
+ "loss": 2.2839956283569336,
+ "step": 904
+ },
+ {
+ "epoch": 12.571428571428571,
+ "grad_norm": 0.042597733438014984,
+ "learning_rate": 0.0005259591947767032,
+ "loss": 2.262939929962158,
+ "step": 905
+ },
+ {
+ "epoch": 12.585365853658537,
+ "grad_norm": 0.04178392142057419,
+ "learning_rate": 0.0005257829876802464,
+ "loss": 2.286794662475586,
+ "step": 906
+ },
+ {
+ "epoch": 12.599303135888501,
+ "grad_norm": 0.04041772708296776,
+ "learning_rate": 0.0005256066010915603,
+ "loss": 2.276432991027832,
+ "step": 907
+ },
+ {
+ "epoch": 12.613240418118467,
+ "grad_norm": 0.04161509871482849,
+ "learning_rate": 0.0005254300351527566,
+ "loss": 2.2779972553253174,
+ "step": 908
+ },
+ {
+ "epoch": 12.627177700348431,
+ "grad_norm": 0.04206471145153046,
+ "learning_rate": 0.000525253290006091,
+ "loss": 2.282811164855957,
+ "step": 909
+ },
+ {
+ "epoch": 12.641114982578397,
+ "grad_norm": 0.04001585766673088,
+ "learning_rate": 0.0005250763657939641,
+ "loss": 2.29434871673584,
+ "step": 910
+ },
+ {
+ "epoch": 12.655052264808361,
+ "grad_norm": 0.041886743158102036,
+ "learning_rate": 0.0005248992626589203,
+ "loss": 2.278651237487793,
+ "step": 911
+ },
+ {
+ "epoch": 12.668989547038327,
+ "grad_norm": 0.0404231883585453,
+ "learning_rate": 0.0005247219807436489,
+ "loss": 2.2875375747680664,
+ "step": 912
+ },
+ {
+ "epoch": 12.682926829268293,
+ "grad_norm": 0.037211328744888306,
+ "learning_rate": 0.000524544520190982,
+ "loss": 2.294013023376465,
+ "step": 913
+ },
+ {
+ "epoch": 12.696864111498257,
+ "grad_norm": 0.03906721621751785,
+ "learning_rate": 0.000524366881143897,
+ "loss": 2.2899856567382812,
+ "step": 914
+ },
+ {
+ "epoch": 12.710801393728223,
+ "grad_norm": 0.04206228628754616,
+ "learning_rate": 0.0005241890637455141,
+ "loss": 2.282346248626709,
+ "step": 915
+ },
+ {
+ "epoch": 12.724738675958188,
+ "grad_norm": 0.03915264084935188,
+ "learning_rate": 0.0005240110681390978,
+ "loss": 2.2995424270629883,
+ "step": 916
+ },
+ {
+ "epoch": 12.738675958188153,
+ "grad_norm": 0.03919649496674538,
+ "learning_rate": 0.0005238328944680558,
+ "loss": 2.282196044921875,
+ "step": 917
+ },
+ {
+ "epoch": 12.752613240418118,
+ "grad_norm": 0.039669446647167206,
+ "learning_rate": 0.0005236545428759394,
+ "loss": 2.2758240699768066,
+ "step": 918
+ },
+ {
+ "epoch": 12.766550522648084,
+ "grad_norm": 0.04075023531913757,
+ "learning_rate": 0.0005234760135064434,
+ "loss": 2.278747320175171,
+ "step": 919
+ },
+ {
+ "epoch": 12.78048780487805,
+ "grad_norm": 0.03815247863531113,
+ "learning_rate": 0.0005232973065034055,
+ "loss": 2.2989745140075684,
+ "step": 920
+ },
+ {
+ "epoch": 12.794425087108014,
+ "grad_norm": 0.039577171206474304,
+ "learning_rate": 0.0005231184220108069,
+ "loss": 2.278186321258545,
+ "step": 921
+ },
+ {
+ "epoch": 12.80836236933798,
+ "grad_norm": 0.04091718792915344,
+ "learning_rate": 0.0005229393601727713,
+ "loss": 2.3046107292175293,
+ "step": 922
+ },
+ {
+ "epoch": 12.822299651567944,
+ "grad_norm": 0.04034758731722832,
+ "learning_rate": 0.000522760121133566,
+ "loss": 2.2959580421447754,
+ "step": 923
+ },
+ {
+ "epoch": 12.83623693379791,
+ "grad_norm": 0.041219793260097504,
+ "learning_rate": 0.0005225807050376004,
+ "loss": 2.289950370788574,
+ "step": 924
+ },
+ {
+ "epoch": 12.850174216027874,
+ "grad_norm": 0.042124949395656586,
+ "learning_rate": 0.0005224011120294269,
+ "loss": 2.2865607738494873,
+ "step": 925
+ },
+ {
+ "epoch": 12.86411149825784,
+ "grad_norm": 0.04259328171610832,
+ "learning_rate": 0.0005222213422537401,
+ "loss": 2.2798972129821777,
+ "step": 926
+ },
+ {
+ "epoch": 12.878048780487806,
+ "grad_norm": 0.0413426011800766,
+ "learning_rate": 0.0005220413958553777,
+ "loss": 2.2765798568725586,
+ "step": 927
+ },
+ {
+ "epoch": 12.89198606271777,
+ "grad_norm": 0.04276851564645767,
+ "learning_rate": 0.0005218612729793188,
+ "loss": 2.292202949523926,
+ "step": 928
+ },
+ {
+ "epoch": 12.905923344947736,
+ "grad_norm": 0.038679834455251694,
+ "learning_rate": 0.0005216809737706856,
+ "loss": 2.2641711235046387,
+ "step": 929
+ },
+ {
+ "epoch": 12.9198606271777,
+ "grad_norm": 0.04027910903096199,
+ "learning_rate": 0.0005215004983747415,
+ "loss": 2.297112464904785,
+ "step": 930
+ },
+ {
+ "epoch": 12.933797909407666,
+ "grad_norm": 0.037091903388500214,
+ "learning_rate": 0.0005213198469368925,
+ "loss": 2.2731027603149414,
+ "step": 931
+ },
+ {
+ "epoch": 12.94773519163763,
+ "grad_norm": 0.0381062775850296,
+ "learning_rate": 0.0005211390196026861,
+ "loss": 2.276169538497925,
+ "step": 932
+ },
+ {
+ "epoch": 12.961672473867596,
+ "grad_norm": 0.03912157565355301,
+ "learning_rate": 0.0005209580165178117,
+ "loss": 2.2855257987976074,
+ "step": 933
+ },
+ {
+ "epoch": 12.975609756097562,
+ "grad_norm": 0.03726741299033165,
+ "learning_rate": 0.0005207768378281003,
+ "loss": 2.285484790802002,
+ "step": 934
+ },
+ {
+ "epoch": 12.989547038327526,
+ "grad_norm": 0.03863261640071869,
+ "learning_rate": 0.0005205954836795241,
+ "loss": 2.2770638465881348,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.03204738348722458,
+ "learning_rate": 0.000520413954218197,
+ "loss": 1.7078638076782227,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 0.6196639537811279,
+ "eval_runtime": 36.3518,
+ "eval_samples_per_second": 67.177,
+ "eval_steps_per_second": 0.55,
+ "step": 936
+ },
+ {
+ "epoch": 13.013937282229966,
+ "grad_norm": 0.04385007545351982,
+ "learning_rate": 0.0005202322495903739,
+ "loss": 2.2220354080200195,
+ "step": 937
+ },
+ {
+ "epoch": 13.02787456445993,
+ "grad_norm": 0.05723090469837189,
+ "learning_rate": 0.0005200503699424509,
+ "loss": 2.223271369934082,
+ "step": 938
+ },
+ {
+ "epoch": 13.041811846689896,
+ "grad_norm": 0.06027279794216156,
+ "learning_rate": 0.0005198683154209654,
+ "loss": 2.2302541732788086,
+ "step": 939
+ },
+ {
+ "epoch": 13.05574912891986,
+ "grad_norm": 0.06342783570289612,
+ "learning_rate": 0.0005196860861725952,
+ "loss": 2.2211854457855225,
+ "step": 940
+ },
+ {
+ "epoch": 13.069686411149826,
+ "grad_norm": 0.06265735626220703,
+ "learning_rate": 0.0005195036823441592,
+ "loss": 2.222750425338745,
+ "step": 941
+ },
+ {
+ "epoch": 13.08362369337979,
+ "grad_norm": 0.0661185085773468,
+ "learning_rate": 0.0005193211040826169,
+ "loss": 2.230656862258911,
+ "step": 942
+ },
+ {
+ "epoch": 13.097560975609756,
+ "grad_norm": 0.06665238738059998,
+ "learning_rate": 0.0005191383515350681,
+ "loss": 2.220534563064575,
+ "step": 943
+ },
+ {
+ "epoch": 13.111498257839722,
+ "grad_norm": 0.06432333588600159,
+ "learning_rate": 0.0005189554248487536,
+ "loss": 2.2317209243774414,
+ "step": 944
+ },
+ {
+ "epoch": 13.125435540069686,
+ "grad_norm": 0.057658061385154724,
+ "learning_rate": 0.0005187723241710539,
+ "loss": 2.20767879486084,
+ "step": 945
+ },
+ {
+ "epoch": 13.139372822299652,
+ "grad_norm": 0.06340344250202179,
+ "learning_rate": 0.0005185890496494899,
+ "loss": 2.240220546722412,
+ "step": 946
+ },
+ {
+ "epoch": 13.153310104529616,
+ "grad_norm": 0.0649016872048378,
+ "learning_rate": 0.0005184056014317225,
+ "loss": 2.2353672981262207,
+ "step": 947
+ },
+ {
+ "epoch": 13.167247386759582,
+ "grad_norm": 0.05792258679866791,
+ "learning_rate": 0.0005182219796655528,
+ "loss": 2.2480835914611816,
+ "step": 948
+ },
+ {
+ "epoch": 13.181184668989546,
+ "grad_norm": 0.059482429176568985,
+ "learning_rate": 0.0005180381844989214,
+ "loss": 2.2432656288146973,
+ "step": 949
+ },
+ {
+ "epoch": 13.195121951219512,
+ "grad_norm": 0.05838126689195633,
+ "learning_rate": 0.0005178542160799088,
+ "loss": 2.237567901611328,
+ "step": 950
+ },
+ {
+ "epoch": 13.209059233449477,
+ "grad_norm": 0.05699385702610016,
+ "learning_rate": 0.0005176700745567353,
+ "loss": 2.243746280670166,
+ "step": 951
+ },
+ {
+ "epoch": 13.222996515679442,
+ "grad_norm": 0.05618268996477127,
+ "learning_rate": 0.0005174857600777599,
+ "loss": 2.2216076850891113,
+ "step": 952
+ },
+ {
+ "epoch": 13.236933797909408,
+ "grad_norm": 0.05328221991658211,
+ "learning_rate": 0.0005173012727914816,
+ "loss": 2.2413382530212402,
+ "step": 953
+ },
+ {
+ "epoch": 13.250871080139373,
+ "grad_norm": 0.05254136770963669,
+ "learning_rate": 0.0005171166128465389,
+ "loss": 2.2317683696746826,
+ "step": 954
+ },
+ {
+ "epoch": 13.264808362369338,
+ "grad_norm": 0.05144176259636879,
+ "learning_rate": 0.0005169317803917083,
+ "loss": 2.2372474670410156,
+ "step": 955
+ },
+ {
+ "epoch": 13.278745644599303,
+ "grad_norm": 0.05258858576416969,
+ "learning_rate": 0.0005167467755759065,
+ "loss": 2.2383830547332764,
+ "step": 956
+ },
+ {
+ "epoch": 13.292682926829269,
+ "grad_norm": 0.0550001785159111,
+ "learning_rate": 0.0005165615985481881,
+ "loss": 2.2456729412078857,
+ "step": 957
+ },
+ {
+ "epoch": 13.306620209059233,
+ "grad_norm": 0.050276629626750946,
+ "learning_rate": 0.0005163762494577474,
+ "loss": 2.262298345565796,
+ "step": 958
+ },
+ {
+ "epoch": 13.320557491289199,
+ "grad_norm": 0.05388111621141434,
+ "learning_rate": 0.0005161907284539165,
+ "loss": 2.250800609588623,
+ "step": 959
+ },
+ {
+ "epoch": 13.334494773519165,
+ "grad_norm": 0.05154367536306381,
+ "learning_rate": 0.0005160050356861663,
+ "loss": 2.2442479133605957,
+ "step": 960
+ },
+ {
+ "epoch": 13.348432055749129,
+ "grad_norm": 0.04562186077237129,
+ "learning_rate": 0.0005158191713041063,
+ "loss": 2.237484931945801,
+ "step": 961
+ },
+ {
+ "epoch": 13.362369337979095,
+ "grad_norm": 0.049510203301906586,
+ "learning_rate": 0.0005156331354574838,
+ "loss": 2.243274688720703,
+ "step": 962
+ },
+ {
+ "epoch": 13.376306620209059,
+ "grad_norm": 0.050305187702178955,
+ "learning_rate": 0.0005154469282961847,
+ "loss": 2.2452855110168457,
+ "step": 963
+ },
+ {
+ "epoch": 13.390243902439025,
+ "grad_norm": 0.049128562211990356,
+ "learning_rate": 0.0005152605499702328,
+ "loss": 2.2562594413757324,
+ "step": 964
+ },
+ {
+ "epoch": 13.404181184668989,
+ "grad_norm": 0.04948648437857628,
+ "learning_rate": 0.0005150740006297896,
+ "loss": 2.2388229370117188,
+ "step": 965
+ },
+ {
+ "epoch": 13.418118466898955,
+ "grad_norm": 0.053290050476789474,
+ "learning_rate": 0.0005148872804251548,
+ "loss": 2.2601318359375,
+ "step": 966
+ },
+ {
+ "epoch": 13.43205574912892,
+ "grad_norm": 0.04839639738202095,
+ "learning_rate": 0.000514700389506765,
+ "loss": 2.2303178310394287,
+ "step": 967
+ },
+ {
+ "epoch": 13.445993031358885,
+ "grad_norm": 0.04883972555398941,
+ "learning_rate": 0.0005145133280251954,
+ "loss": 2.246448040008545,
+ "step": 968
+ },
+ {
+ "epoch": 13.45993031358885,
+ "grad_norm": 0.04747871682047844,
+ "learning_rate": 0.0005143260961311578,
+ "loss": 2.259640693664551,
+ "step": 969
+ },
+ {
+ "epoch": 13.473867595818815,
+ "grad_norm": 0.046724554151296616,
+ "learning_rate": 0.0005141386939755014,
+ "loss": 2.2453014850616455,
+ "step": 970
+ },
+ {
+ "epoch": 13.487804878048781,
+ "grad_norm": 0.045614756643772125,
+ "learning_rate": 0.0005139511217092129,
+ "loss": 2.2351949214935303,
+ "step": 971
+ },
+ {
+ "epoch": 13.501742160278745,
+ "grad_norm": 0.04794120043516159,
+ "learning_rate": 0.000513763379483416,
+ "loss": 2.2457003593444824,
+ "step": 972
+ },
+ {
+ "epoch": 13.515679442508711,
+ "grad_norm": 0.05043521523475647,
+ "learning_rate": 0.0005135754674493709,
+ "loss": 2.258542060852051,
+ "step": 973
+ },
+ {
+ "epoch": 13.529616724738675,
+ "grad_norm": 0.046207673847675323,
+ "learning_rate": 0.0005133873857584753,
+ "loss": 2.2370145320892334,
+ "step": 974
+ },
+ {
+ "epoch": 13.543554006968641,
+ "grad_norm": 0.04402166232466698,
+ "learning_rate": 0.0005131991345622629,
+ "loss": 2.2408246994018555,
+ "step": 975
+ },
+ {
+ "epoch": 13.557491289198607,
+ "grad_norm": 0.04337441921234131,
+ "learning_rate": 0.0005130107140124046,
+ "loss": 2.2634308338165283,
+ "step": 976
+ },
+ {
+ "epoch": 13.571428571428571,
+ "grad_norm": 0.047244030982255936,
+ "learning_rate": 0.0005128221242607072,
+ "loss": 2.2571523189544678,
+ "step": 977
+ },
+ {
+ "epoch": 13.585365853658537,
+ "grad_norm": 0.04867873340845108,
+ "learning_rate": 0.0005126333654591141,
+ "loss": 2.248501777648926,
+ "step": 978
+ },
+ {
+ "epoch": 13.599303135888501,
+ "grad_norm": 0.048512108623981476,
+ "learning_rate": 0.0005124444377597049,
+ "loss": 2.2579822540283203,
+ "step": 979
+ },
+ {
+ "epoch": 13.613240418118467,
+ "grad_norm": 0.04615626111626625,
+ "learning_rate": 0.0005122553413146951,
+ "loss": 2.2446889877319336,
+ "step": 980
+ },
+ {
+ "epoch": 13.627177700348431,
+ "grad_norm": 0.044876713305711746,
+ "learning_rate": 0.0005120660762764366,
+ "loss": 2.2439627647399902,
+ "step": 981
+ },
+ {
+ "epoch": 13.641114982578397,
+ "grad_norm": 0.046021413058042526,
+ "learning_rate": 0.0005118766427974166,
+ "loss": 2.262195587158203,
+ "step": 982
+ },
+ {
+ "epoch": 13.655052264808361,
+ "grad_norm": 0.04974699020385742,
+ "learning_rate": 0.0005116870410302582,
+ "loss": 2.2783303260803223,
+ "step": 983
+ },
+ {
+ "epoch": 13.668989547038327,
+ "grad_norm": 0.044128481298685074,
+ "learning_rate": 0.0005114972711277202,
+ "loss": 2.2566471099853516,
+ "step": 984
+ },
+ {
+ "epoch": 13.682926829268293,
+ "grad_norm": 0.042579326778650284,
+ "learning_rate": 0.0005113073332426968,
+ "loss": 2.2596194744110107,
+ "step": 985
+ },
+ {
+ "epoch": 13.696864111498257,
+ "grad_norm": 0.044022977352142334,
+ "learning_rate": 0.0005111172275282174,
+ "loss": 2.270303726196289,
+ "step": 986
+ },
+ {
+ "epoch": 13.710801393728223,
+ "grad_norm": 0.04324937239289284,
+ "learning_rate": 0.0005109269541374469,
+ "loss": 2.2393593788146973,
+ "step": 987
+ },
+ {
+ "epoch": 13.724738675958188,
+ "grad_norm": 0.04146691411733627,
+ "learning_rate": 0.000510736513223685,
+ "loss": 2.2541770935058594,
+ "step": 988
+ },
+ {
+ "epoch": 13.738675958188153,
+ "grad_norm": 0.04146251827478409,
+ "learning_rate": 0.0005105459049403665,
+ "loss": 2.260561943054199,
+ "step": 989
+ },
+ {
+ "epoch": 13.752613240418118,
+ "grad_norm": 0.042454298585653305,
+ "learning_rate": 0.0005103551294410614,
+ "loss": 2.2623369693756104,
+ "step": 990
+ },
+ {
+ "epoch": 13.766550522648084,
+ "grad_norm": 0.04376888647675514,
+ "learning_rate": 0.0005101641868794736,
+ "loss": 2.2560131549835205,
+ "step": 991
+ },
+ {
+ "epoch": 13.78048780487805,
+ "grad_norm": 0.04379274323582649,
+ "learning_rate": 0.0005099730774094423,
+ "loss": 2.2503037452697754,
+ "step": 992
+ },
+ {
+ "epoch": 13.794425087108014,
+ "grad_norm": 0.04411308094859123,
+ "learning_rate": 0.0005097818011849408,
+ "loss": 2.244288921356201,
+ "step": 993
+ },
+ {
+ "epoch": 13.80836236933798,
+ "grad_norm": 0.04043621942400932,
+ "learning_rate": 0.0005095903583600772,
+ "loss": 2.244035243988037,
+ "step": 994
+ },
+ {
+ "epoch": 13.822299651567944,
+ "grad_norm": 0.04722495377063751,
+ "learning_rate": 0.0005093987490890933,
+ "loss": 2.269280433654785,
+ "step": 995
+ },
+ {
+ "epoch": 13.83623693379791,
+ "grad_norm": 0.049322471022605896,
+ "learning_rate": 0.0005092069735263651,
+ "loss": 2.249361515045166,
+ "step": 996
+ },
+ {
+ "epoch": 13.850174216027874,
+ "grad_norm": 0.04808150604367256,
+ "learning_rate": 0.000509015031826403,
+ "loss": 2.255721092224121,
+ "step": 997
+ },
+ {
+ "epoch": 13.86411149825784,
+ "grad_norm": 0.044958360493183136,
+ "learning_rate": 0.0005088229241438509,
+ "loss": 2.2578060626983643,
+ "step": 998
+ },
+ {
+ "epoch": 13.878048780487806,
+ "grad_norm": 0.04442335292696953,
+ "learning_rate": 0.0005086306506334864,
+ "loss": 2.2553436756134033,
+ "step": 999
+ },
+ {
+ "epoch": 13.89198606271777,
+ "grad_norm": 0.0487419068813324,
+ "learning_rate": 0.0005084382114502208,
+ "loss": 2.2526695728302,
+ "step": 1000
+ },
+ {
+ "epoch": 13.905923344947736,
+ "grad_norm": 0.047398749738931656,
+ "learning_rate": 0.0005082456067490988,
+ "loss": 2.259551763534546,
+ "step": 1001
+ },
+ {
+ "epoch": 13.9198606271777,
+ "grad_norm": 0.04429299384355545,
+ "learning_rate": 0.0005080528366852987,
+ "loss": 2.270155906677246,
+ "step": 1002
+ },
+ {
+ "epoch": 13.933797909407666,
+ "grad_norm": 0.045255087316036224,
+ "learning_rate": 0.0005078599014141318,
+ "loss": 2.2554101943969727,
+ "step": 1003
+ },
+ {
+ "epoch": 13.94773519163763,
+ "grad_norm": 0.04559073969721794,
+ "learning_rate": 0.0005076668010910425,
+ "loss": 2.2913122177124023,
+ "step": 1004
+ },
+ {
+ "epoch": 13.961672473867596,
+ "grad_norm": 0.04300642013549805,
+ "learning_rate": 0.0005074735358716083,
+ "loss": 2.241891860961914,
+ "step": 1005
+ },
+ {
+ "epoch": 13.975609756097562,
+ "grad_norm": 0.04328060522675514,
+ "learning_rate": 0.0005072801059115394,
+ "loss": 2.2659969329833984,
+ "step": 1006
+ },
+ {
+ "epoch": 13.989547038327526,
+ "grad_norm": 0.0425153523683548,
+ "learning_rate": 0.000507086511366679,
+ "loss": 2.266413450241089,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.03479035571217537,
+ "learning_rate": 0.0005068927523930027,
+ "loss": 1.6806477308273315,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 0.6199555993080139,
+ "eval_runtime": 42.3013,
+ "eval_samples_per_second": 57.729,
+ "eval_steps_per_second": 0.473,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013937282229966,
+ "grad_norm": 0.04759897664189339,
+ "learning_rate": 0.0005066988291466184,
+ "loss": 2.1937670707702637,
+ "step": 1009
+ },
+ {
+ "epoch": 14.02787456445993,
+ "grad_norm": 0.06862346827983856,
+ "learning_rate": 0.0005065047417837669,
+ "loss": 2.2141411304473877,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041811846689896,
+ "grad_norm": 0.07168037444353104,
+ "learning_rate": 0.0005063104904608206,
+ "loss": 2.198908805847168,
+ "step": 1011
+ },
+ {
+ "epoch": 14.05574912891986,
+ "grad_norm": 0.06659573316574097,
+ "learning_rate": 0.0005061160753342843,
+ "loss": 2.218000888824463,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069686411149826,
+ "grad_norm": 0.06285326927900314,
+ "learning_rate": 0.0005059214965607948,
+ "loss": 2.1995139122009277,
+ "step": 1013
+ },
+ {
+ "epoch": 14.08362369337979,
+ "grad_norm": 0.061170000582933426,
+ "learning_rate": 0.0005057267542971207,
+ "loss": 2.2026236057281494,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097560975609756,
+ "grad_norm": 0.06091141700744629,
+ "learning_rate": 0.0005055318487001624,
+ "loss": 2.2087340354919434,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111498257839722,
+ "grad_norm": 0.05953513830900192,
+ "learning_rate": 0.0005053367799269518,
+ "loss": 2.1985390186309814,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125435540069686,
+ "grad_norm": 0.06126454845070839,
+ "learning_rate": 0.0005051415481346522,
+ "loss": 2.176772117614746,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139372822299652,
+ "grad_norm": 0.0675380751490593,
+ "learning_rate": 0.0005049461534805585,
+ "loss": 2.2045438289642334,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153310104529616,
+ "grad_norm": 0.07128442823886871,
+ "learning_rate": 0.0005047505961220964,
+ "loss": 2.197822332382202,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167247386759582,
+ "grad_norm": 0.06793799996376038,
+ "learning_rate": 0.0005045548762168231,
+ "loss": 2.1957449913024902,
+ "step": 1020
+ },
+ {
+ "epoch": 14.181184668989546,
+ "grad_norm": 0.05969219282269478,
+ "learning_rate": 0.0005043589939224266,
+ "loss": 2.206712245941162,
+ "step": 1021
+ },
+ {
+ "epoch": 14.195121951219512,
+ "grad_norm": 0.061422668397426605,
+ "learning_rate": 0.0005041629493967257,
+ "loss": 2.199829578399658,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209059233449477,
+ "grad_norm": 0.06352506577968597,
+ "learning_rate": 0.0005039667427976697,
+ "loss": 2.208404064178467,
+ "step": 1023
+ },
+ {
+ "epoch": 14.222996515679442,
+ "grad_norm": 0.06349361687898636,
+ "learning_rate": 0.0005037703742833391,
+ "loss": 2.2045750617980957,
+ "step": 1024
+ },
+ {
+ "epoch": 14.236933797909408,
+ "grad_norm": 0.05827466771006584,
+ "learning_rate": 0.0005035738440119442,
+ "loss": 2.204209566116333,
+ "step": 1025
+ },
+ {
+ "epoch": 14.250871080139373,
+ "grad_norm": 0.055201269686222076,
+ "learning_rate": 0.0005033771521418261,
+ "loss": 2.210240364074707,
+ "step": 1026
+ },
+ {
+ "epoch": 14.264808362369338,
+ "grad_norm": 0.05749988183379173,
+ "learning_rate": 0.0005031802988314557,
+ "loss": 2.2068967819213867,
+ "step": 1027
+ },
+ {
+ "epoch": 14.278745644599303,
+ "grad_norm": 0.061330124735832214,
+ "learning_rate": 0.0005029832842394342,
+ "loss": 2.194495439529419,
+ "step": 1028
+ },
+ {
+ "epoch": 14.292682926829269,
+ "grad_norm": 0.05682205408811569,
+ "learning_rate": 0.0005027861085244927,
+ "loss": 2.1934378147125244,
+ "step": 1029
+ },
+ {
+ "epoch": 14.306620209059233,
+ "grad_norm": 0.054082732647657394,
+ "learning_rate": 0.0005025887718454922,
+ "loss": 2.1993770599365234,
+ "step": 1030
+ },
+ {
+ "epoch": 14.320557491289199,
+ "grad_norm": 0.05460484325885773,
+ "learning_rate": 0.0005023912743614232,
+ "loss": 2.2270498275756836,
+ "step": 1031
+ },
+ {
+ "epoch": 14.334494773519165,
+ "grad_norm": 0.05222999304533005,
+ "learning_rate": 0.0005021936162314058,
+ "loss": 2.1926186084747314,
+ "step": 1032
+ },
+ {
+ "epoch": 14.348432055749129,
+ "grad_norm": 0.04854818806052208,
+ "learning_rate": 0.0005019957976146898,
+ "loss": 2.209700584411621,
+ "step": 1033
+ },
+ {
+ "epoch": 14.362369337979095,
+ "grad_norm": 0.051000695675611496,
+ "learning_rate": 0.0005017978186706538,
+ "loss": 2.207035541534424,
+ "step": 1034
+ },
+ {
+ "epoch": 14.376306620209059,
+ "grad_norm": 0.05035366490483284,
+ "learning_rate": 0.0005015996795588062,
+ "loss": 2.227447032928467,
+ "step": 1035
+ },
+ {
+ "epoch": 14.390243902439025,
+ "grad_norm": 0.048412274569272995,
+ "learning_rate": 0.0005014013804387838,
+ "loss": 2.229435443878174,
+ "step": 1036
+ },
+ {
+ "epoch": 14.404181184668989,
+ "grad_norm": 0.04643386974930763,
+ "learning_rate": 0.0005012029214703529,
+ "loss": 2.212726593017578,
+ "step": 1037
+ },
+ {
+ "epoch": 14.418118466898955,
+ "grad_norm": 0.05282546207308769,
+ "learning_rate": 0.000501004302813408,
+ "loss": 2.2133121490478516,
+ "step": 1038
+ },
+ {
+ "epoch": 14.43205574912892,
+ "grad_norm": 0.04976656660437584,
+ "learning_rate": 0.0005008055246279727,
+ "loss": 2.222738265991211,
+ "step": 1039
+ },
+ {
+ "epoch": 14.445993031358885,
+ "grad_norm": 0.04937833175063133,
+ "learning_rate": 0.000500606587074199,
+ "loss": 2.2278215885162354,
+ "step": 1040
+ },
+ {
+ "epoch": 14.45993031358885,
+ "grad_norm": 0.05218666046857834,
+ "learning_rate": 0.0005004074903123674,
+ "loss": 2.2277817726135254,
+ "step": 1041
+ },
+ {
+ "epoch": 14.473867595818815,
+ "grad_norm": 0.05176419019699097,
+ "learning_rate": 0.0005002082345028864,
+ "loss": 2.231154203414917,
+ "step": 1042
+ },
+ {
+ "epoch": 14.487804878048781,
+ "grad_norm": 0.049131155014038086,
+ "learning_rate": 0.0005000088198062929,
+ "loss": 2.2321465015411377,
+ "step": 1043
+ },
+ {
+ "epoch": 14.501742160278745,
+ "grad_norm": 0.04980473965406418,
+ "learning_rate": 0.0004998092463832516,
+ "loss": 2.191263198852539,
+ "step": 1044
+ },
+ {
+ "epoch": 14.515679442508711,
+ "grad_norm": 0.048349328339099884,
+ "learning_rate": 0.0004996095143945554,
+ "loss": 2.2167882919311523,
+ "step": 1045
+ },
+ {
+ "epoch": 14.529616724738675,
+ "grad_norm": 0.04662036523222923,
+ "learning_rate": 0.0004994096240011246,
+ "loss": 2.213564395904541,
+ "step": 1046
+ },
+ {
+ "epoch": 14.543554006968641,
+ "grad_norm": 0.04783051833510399,
+ "learning_rate": 0.0004992095753640072,
+ "loss": 2.225752592086792,
+ "step": 1047
+ },
+ {
+ "epoch": 14.557491289198607,
+ "grad_norm": 0.05093488097190857,
+ "learning_rate": 0.0004990093686443791,
+ "loss": 2.2382640838623047,
+ "step": 1048
+ },
+ {
+ "epoch": 14.571428571428571,
+ "grad_norm": 0.05354484170675278,
+ "learning_rate": 0.000498809004003543,
+ "loss": 2.226134777069092,
+ "step": 1049
+ },
+ {
+ "epoch": 14.585365853658537,
+ "grad_norm": 0.04998788982629776,
+ "learning_rate": 0.0004986084816029291,
+ "loss": 2.2372093200683594,
+ "step": 1050
+ },
+ {
+ "epoch": 14.599303135888501,
+ "grad_norm": 0.04952755197882652,
+ "learning_rate": 0.0004984078016040946,
+ "loss": 2.232860565185547,
+ "step": 1051
+ },
+ {
+ "epoch": 14.613240418118467,
+ "grad_norm": 0.04750008508563042,
+ "learning_rate": 0.000498206964168724,
+ "loss": 2.223733901977539,
+ "step": 1052
+ },
+ {
+ "epoch": 14.627177700348431,
+ "grad_norm": 0.04636282101273537,
+ "learning_rate": 0.000498005969458628,
+ "loss": 2.227602958679199,
+ "step": 1053
+ },
+ {
+ "epoch": 14.641114982578397,
+ "grad_norm": 0.0465775765478611,
+ "learning_rate": 0.0004978048176357447,
+ "loss": 2.228397846221924,
+ "step": 1054
+ },
+ {
+ "epoch": 14.655052264808361,
+ "grad_norm": 0.04467611759901047,
+ "learning_rate": 0.0004976035088621385,
+ "loss": 2.2124547958374023,
+ "step": 1055
+ },
+ {
+ "epoch": 14.668989547038327,
+ "grad_norm": 0.04734990745782852,
+ "learning_rate": 0.0004974020433000003,
+ "loss": 2.2278337478637695,
+ "step": 1056
+ },
+ {
+ "epoch": 14.682926829268293,
+ "grad_norm": 0.048105571419000626,
+ "learning_rate": 0.000497200421111647,
+ "loss": 2.2506489753723145,
+ "step": 1057
+ },
+ {
+ "epoch": 14.696864111498257,
+ "grad_norm": 0.04658956825733185,
+ "learning_rate": 0.0004969986424595221,
+ "loss": 2.2176156044006348,
+ "step": 1058
+ },
+ {
+ "epoch": 14.710801393728223,
+ "grad_norm": 0.04707225784659386,
+ "learning_rate": 0.0004967967075061949,
+ "loss": 2.235560894012451,
+ "step": 1059
+ },
+ {
+ "epoch": 14.724738675958188,
+ "grad_norm": 0.04652702435851097,
+ "learning_rate": 0.0004965946164143609,
+ "loss": 2.2421717643737793,
+ "step": 1060
+ },
+ {
+ "epoch": 14.738675958188153,
+ "grad_norm": 0.045091014355421066,
+ "learning_rate": 0.0004963923693468413,
+ "loss": 2.233527183532715,
+ "step": 1061
+ },
+ {
+ "epoch": 14.752613240418118,
+ "grad_norm": 0.0467996746301651,
+ "learning_rate": 0.0004961899664665827,
+ "loss": 2.208993673324585,
+ "step": 1062
+ },
+ {
+ "epoch": 14.766550522648084,
+ "grad_norm": 0.04628554731607437,
+ "learning_rate": 0.0004959874079366576,
+ "loss": 2.230579376220703,
+ "step": 1063
+ },
+ {
+ "epoch": 14.78048780487805,
+ "grad_norm": 0.04599257931113243,
+ "learning_rate": 0.0004957846939202637,
+ "loss": 2.2343482971191406,
+ "step": 1064
+ },
+ {
+ "epoch": 14.794425087108014,
+ "grad_norm": 0.045816246420145035,
+ "learning_rate": 0.000495581824580724,
+ "loss": 2.242190361022949,
+ "step": 1065
+ },
+ {
+ "epoch": 14.80836236933798,
+ "grad_norm": 0.04708870127797127,
+ "learning_rate": 0.0004953788000814866,
+ "loss": 2.2468795776367188,
+ "step": 1066
+ },
+ {
+ "epoch": 14.822299651567944,
+ "grad_norm": 0.049605369567871094,
+ "learning_rate": 0.000495175620586125,
+ "loss": 2.21968412399292,
+ "step": 1067
+ },
+ {
+ "epoch": 14.83623693379791,
+ "grad_norm": 0.044056523591279984,
+ "learning_rate": 0.0004949722862583368,
+ "loss": 2.2316298484802246,
+ "step": 1068
+ },
+ {
+ "epoch": 14.850174216027874,
+ "grad_norm": 0.042938072234392166,
+ "learning_rate": 0.000494768797261945,
+ "loss": 2.252958059310913,
+ "step": 1069
+ },
+ {
+ "epoch": 14.86411149825784,
+ "grad_norm": 0.04511357098817825,
+ "learning_rate": 0.000494565153760897,
+ "loss": 2.2274842262268066,
+ "step": 1070
+ },
+ {
+ "epoch": 14.878048780487806,
+ "grad_norm": 0.04632679745554924,
+ "learning_rate": 0.0004943613559192648,
+ "loss": 2.2324767112731934,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89198606271777,
+ "grad_norm": 0.045614346861839294,
+ "learning_rate": 0.0004941574039012444,
+ "loss": 2.2428746223449707,
+ "step": 1072
+ },
+ {
+ "epoch": 14.905923344947736,
+ "grad_norm": 0.04592366889119148,
+ "learning_rate": 0.0004939532978711566,
+ "loss": 2.2330827713012695,
+ "step": 1073
+ },
+ {
+ "epoch": 14.9198606271777,
+ "grad_norm": 0.04424305632710457,
+ "learning_rate": 0.0004937490379934456,
+ "loss": 2.2334916591644287,
+ "step": 1074
+ },
+ {
+ "epoch": 14.933797909407666,
+ "grad_norm": 0.0463118739426136,
+ "learning_rate": 0.00049354462443268,
+ "loss": 2.2362606525421143,
+ "step": 1075
+ },
+ {
+ "epoch": 14.94773519163763,
+ "grad_norm": 0.04408831149339676,
+ "learning_rate": 0.0004933400573535521,
+ "loss": 2.2407727241516113,
+ "step": 1076
+ },
+ {
+ "epoch": 14.961672473867596,
+ "grad_norm": 0.04300303012132645,
+ "learning_rate": 0.000493135336920878,
+ "loss": 2.222532272338867,
+ "step": 1077
+ },
+ {
+ "epoch": 14.975609756097562,
+ "grad_norm": 0.04180522635579109,
+ "learning_rate": 0.0004929304632995973,
+ "loss": 2.242893695831299,
+ "step": 1078
+ },
+ {
+ "epoch": 14.989547038327526,
+ "grad_norm": 0.043276574462652206,
+ "learning_rate": 0.0004927254366547727,
+ "loss": 2.2241783142089844,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.036254994571208954,
+ "learning_rate": 0.0004925202571515908,
+ "loss": 1.6649963855743408,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 0.6207222938537598,
+ "eval_runtime": 37.3466,
+ "eval_samples_per_second": 65.388,
+ "eval_steps_per_second": 0.536,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013937282229966,
+ "grad_norm": 0.045301277190446854,
+ "learning_rate": 0.0004923149249553608,
+ "loss": 2.184032917022705,
+ "step": 1081
+ },
+ {
+ "epoch": 15.02787456445993,
+ "grad_norm": 0.05988018214702606,
+ "learning_rate": 0.0004921094402315152,
+ "loss": 2.1630473136901855,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041811846689896,
+ "grad_norm": 0.06664786487817764,
+ "learning_rate": 0.0004919038031456093,
+ "loss": 2.172067642211914,
+ "step": 1083
+ },
+ {
+ "epoch": 15.05574912891986,
+ "grad_norm": 0.06994126737117767,
+ "learning_rate": 0.0004916980138633213,
+ "loss": 2.185060501098633,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069686411149826,
+ "grad_norm": 0.07145395129919052,
+ "learning_rate": 0.0004914920725504518,
+ "loss": 2.173717498779297,
+ "step": 1085
+ },
+ {
+ "epoch": 15.08362369337979,
+ "grad_norm": 0.07037318497896194,
+ "learning_rate": 0.000491285979372924,
+ "loss": 2.1818294525146484,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097560975609756,
+ "grad_norm": 0.07752140611410141,
+ "learning_rate": 0.0004910797344967834,
+ "loss": 2.179530620574951,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111498257839722,
+ "grad_norm": 0.07689100503921509,
+ "learning_rate": 0.000490873338088198,
+ "loss": 2.167066812515259,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125435540069686,
+ "grad_norm": 0.07060840725898743,
+ "learning_rate": 0.0004906667903134573,
+ "loss": 2.166823387145996,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139372822299652,
+ "grad_norm": 0.07528708130121231,
+ "learning_rate": 0.0004904600913389735,
+ "loss": 2.1838769912719727,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153310104529616,
+ "grad_norm": 0.07452721893787384,
+ "learning_rate": 0.0004902532413312799,
+ "loss": 2.1846580505371094,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167247386759582,
+ "grad_norm": 0.08076248317956924,
+ "learning_rate": 0.0004900462404570321,
+ "loss": 2.1811747550964355,
+ "step": 1092
+ },
+ {
+ "epoch": 15.181184668989546,
+ "grad_norm": 0.07249059528112411,
+ "learning_rate": 0.0004898390888830067,
+ "loss": 2.187530279159546,
+ "step": 1093
+ },
+ {
+ "epoch": 15.195121951219512,
+ "grad_norm": 0.06610925495624542,
+ "learning_rate": 0.0004896317867761022,
+ "loss": 2.1889264583587646,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209059233449477,
+ "grad_norm": 0.07099732756614685,
+ "learning_rate": 0.000489424334303338,
+ "loss": 2.188560962677002,
+ "step": 1095
+ },
+ {
+ "epoch": 15.222996515679442,
+ "grad_norm": 0.0737202987074852,
+ "learning_rate": 0.0004892167316318548,
+ "loss": 2.186715841293335,
+ "step": 1096
+ },
+ {
+ "epoch": 15.236933797909408,
+ "grad_norm": 0.06986237317323685,
+ "learning_rate": 0.0004890089789289147,
+ "loss": 2.1962318420410156,
+ "step": 1097
+ },
+ {
+ "epoch": 15.250871080139373,
+ "grad_norm": 0.07112278789281845,
+ "learning_rate": 0.0004888010763618997,
+ "loss": 2.194401502609253,
+ "step": 1098
+ },
+ {
+ "epoch": 15.264808362369338,
+ "grad_norm": 0.06746342778205872,
+ "learning_rate": 0.0004885930240983136,
+ "loss": 2.188718795776367,
+ "step": 1099
+ },
+ {
+ "epoch": 15.278745644599303,
+ "grad_norm": 0.06471215933561325,
+ "learning_rate": 0.0004883848223057801,
+ "loss": 2.198849678039551,
+ "step": 1100
+ },
+ {
+ "epoch": 15.292682926829269,
+ "grad_norm": 0.05913659557700157,
+ "learning_rate": 0.00048817647115204386,
+ "loss": 2.183661937713623,
+ "step": 1101
+ },
+ {
+ "epoch": 15.306620209059233,
+ "grad_norm": 0.060666151344776154,
+ "learning_rate": 0.00048796797080496936,
+ "loss": 2.1805803775787354,
+ "step": 1102
+ },
+ {
+ "epoch": 15.320557491289199,
+ "grad_norm": 0.06026238948106766,
+ "learning_rate": 0.00048775932143254176,
+ "loss": 2.1778993606567383,
+ "step": 1103
+ },
+ {
+ "epoch": 15.334494773519165,
+ "grad_norm": 0.054371971637010574,
+ "learning_rate": 0.0004875505232028661,
+ "loss": 2.193100690841675,
+ "step": 1104
+ },
+ {
+ "epoch": 15.348432055749129,
+ "grad_norm": 0.051084667444229126,
+ "learning_rate": 0.0004873415762841672,
+ "loss": 2.1867239475250244,
+ "step": 1105
+ },
+ {
+ "epoch": 15.362369337979095,
+ "grad_norm": 0.05281403660774231,
+ "learning_rate": 0.00048713248084478986,
+ "loss": 2.1998157501220703,
+ "step": 1106
+ },
+ {
+ "epoch": 15.376306620209059,
+ "grad_norm": 0.04957163333892822,
+ "learning_rate": 0.0004869232370531986,
+ "loss": 2.1781673431396484,
+ "step": 1107
+ },
+ {
+ "epoch": 15.390243902439025,
+ "grad_norm": 0.04794200882315636,
+ "learning_rate": 0.0004867138450779773,
+ "loss": 2.1990952491760254,
+ "step": 1108
+ },
+ {
+ "epoch": 15.404181184668989,
+ "grad_norm": 0.05102508142590523,
+ "learning_rate": 0.0004865043050878293,
+ "loss": 2.199371814727783,
+ "step": 1109
+ },
+ {
+ "epoch": 15.418118466898955,
+ "grad_norm": 0.049935199320316315,
+ "learning_rate": 0.0004862946172515771,
+ "loss": 2.191676616668701,
+ "step": 1110
+ },
+ {
+ "epoch": 15.43205574912892,
+ "grad_norm": 0.05205542966723442,
+ "learning_rate": 0.0004860847817381625,
+ "loss": 2.2015931606292725,
+ "step": 1111
+ },
+ {
+ "epoch": 15.445993031358885,
+ "grad_norm": 0.051782310009002686,
+ "learning_rate": 0.0004858747987166463,
+ "loss": 2.200479030609131,
+ "step": 1112
+ },
+ {
+ "epoch": 15.45993031358885,
+ "grad_norm": 0.04914203658699989,
+ "learning_rate": 0.00048566466835620774,
+ "loss": 2.19816517829895,
+ "step": 1113
+ },
+ {
+ "epoch": 15.473867595818815,
+ "grad_norm": 0.04609949141740799,
+ "learning_rate": 0.0004854543908261453,
+ "loss": 2.1905436515808105,
+ "step": 1114
+ },
+ {
+ "epoch": 15.487804878048781,
+ "grad_norm": 0.04916610196232796,
+ "learning_rate": 0.0004852439662958756,
+ "loss": 2.203505516052246,
+ "step": 1115
+ },
+ {
+ "epoch": 15.501742160278745,
+ "grad_norm": 0.04806613177061081,
+ "learning_rate": 0.000485033394934934,
+ "loss": 2.2004809379577637,
+ "step": 1116
+ },
+ {
+ "epoch": 15.515679442508711,
+ "grad_norm": 0.04937082529067993,
+ "learning_rate": 0.000484822676912974,
+ "loss": 2.1941723823547363,
+ "step": 1117
+ },
+ {
+ "epoch": 15.529616724738675,
+ "grad_norm": 0.049360860139131546,
+ "learning_rate": 0.0004846118123997674,
+ "loss": 2.1975173950195312,
+ "step": 1118
+ },
+ {
+ "epoch": 15.543554006968641,
+ "grad_norm": 0.04772219434380531,
+ "learning_rate": 0.00048440080156520387,
+ "loss": 2.211244583129883,
+ "step": 1119
+ },
+ {
+ "epoch": 15.557491289198607,
+ "grad_norm": 0.04961530491709709,
+ "learning_rate": 0.0004841896445792909,
+ "loss": 2.191709041595459,
+ "step": 1120
+ },
+ {
+ "epoch": 15.571428571428571,
+ "grad_norm": 0.049396563321352005,
+ "learning_rate": 0.000483978341612154,
+ "loss": 2.2178797721862793,
+ "step": 1121
+ },
+ {
+ "epoch": 15.585365853658537,
+ "grad_norm": 0.0474911704659462,
+ "learning_rate": 0.0004837668928340362,
+ "loss": 2.1883950233459473,
+ "step": 1122
+ },
+ {
+ "epoch": 15.599303135888501,
+ "grad_norm": 0.0497126504778862,
+ "learning_rate": 0.0004835552984152978,
+ "loss": 2.194390296936035,
+ "step": 1123
+ },
+ {
+ "epoch": 15.613240418118467,
+ "grad_norm": 0.04819052666425705,
+ "learning_rate": 0.00048334355852641664,
+ "loss": 2.2060859203338623,
+ "step": 1124
+ },
+ {
+ "epoch": 15.627177700348431,
+ "grad_norm": 0.048422664403915405,
+ "learning_rate": 0.0004831316733379879,
+ "loss": 2.203671932220459,
+ "step": 1125
+ },
+ {
+ "epoch": 15.641114982578397,
+ "grad_norm": 0.0464651882648468,
+ "learning_rate": 0.0004829196430207235,
+ "loss": 2.193103313446045,
+ "step": 1126
+ },
+ {
+ "epoch": 15.655052264808361,
+ "grad_norm": 0.04777771607041359,
+ "learning_rate": 0.00048270746774545237,
+ "loss": 2.190608501434326,
+ "step": 1127
+ },
+ {
+ "epoch": 15.668989547038327,
+ "grad_norm": 0.048422545194625854,
+ "learning_rate": 0.0004824951476831204,
+ "loss": 2.191826105117798,
+ "step": 1128
+ },
+ {
+ "epoch": 15.682926829268293,
+ "grad_norm": 0.04907011240720749,
+ "learning_rate": 0.00048228268300479015,
+ "loss": 2.2020134925842285,
+ "step": 1129
+ },
+ {
+ "epoch": 15.696864111498257,
+ "grad_norm": 0.04749045521020889,
+ "learning_rate": 0.0004820700738816403,
+ "loss": 2.1956100463867188,
+ "step": 1130
+ },
+ {
+ "epoch": 15.710801393728223,
+ "grad_norm": 0.04741237685084343,
+ "learning_rate": 0.0004818573204849664,
+ "loss": 2.1953983306884766,
+ "step": 1131
+ },
+ {
+ "epoch": 15.724738675958188,
+ "grad_norm": 0.048426248133182526,
+ "learning_rate": 0.00048164442298617987,
+ "loss": 2.1906962394714355,
+ "step": 1132
+ },
+ {
+ "epoch": 15.738675958188153,
+ "grad_norm": 0.04688018932938576,
+ "learning_rate": 0.00048143138155680844,
+ "loss": 2.2023704051971436,
+ "step": 1133
+ },
+ {
+ "epoch": 15.752613240418118,
+ "grad_norm": 0.04573274403810501,
+ "learning_rate": 0.0004812181963684958,
+ "loss": 2.1997122764587402,
+ "step": 1134
+ },
+ {
+ "epoch": 15.766550522648084,
+ "grad_norm": 0.04500049352645874,
+ "learning_rate": 0.00048100486759300134,
+ "loss": 2.203868865966797,
+ "step": 1135
+ },
+ {
+ "epoch": 15.78048780487805,
+ "grad_norm": 0.046841904520988464,
+ "learning_rate": 0.00048079139540220024,
+ "loss": 2.2186760902404785,
+ "step": 1136
+ },
+ {
+ "epoch": 15.794425087108014,
+ "grad_norm": 0.04670709744095802,
+ "learning_rate": 0.0004805777799680831,
+ "loss": 2.2019705772399902,
+ "step": 1137
+ },
+ {
+ "epoch": 15.80836236933798,
+ "grad_norm": 0.04602878540754318,
+ "learning_rate": 0.0004803640214627561,
+ "loss": 2.21022891998291,
+ "step": 1138
+ },
+ {
+ "epoch": 15.822299651567944,
+ "grad_norm": 0.045200031250715256,
+ "learning_rate": 0.0004801501200584406,
+ "loss": 2.2007641792297363,
+ "step": 1139
+ },
+ {
+ "epoch": 15.83623693379791,
+ "grad_norm": 0.04749643802642822,
+ "learning_rate": 0.000479936075927473,
+ "loss": 2.2098441123962402,
+ "step": 1140
+ },
+ {
+ "epoch": 15.850174216027874,
+ "grad_norm": 0.04594074562191963,
+ "learning_rate": 0.000479721889242305,
+ "loss": 2.204615354537964,
+ "step": 1141
+ },
+ {
+ "epoch": 15.86411149825784,
+ "grad_norm": 0.04540146514773369,
+ "learning_rate": 0.0004795075601755027,
+ "loss": 2.2012791633605957,
+ "step": 1142
+ },
+ {
+ "epoch": 15.878048780487806,
+ "grad_norm": 0.04618830978870392,
+ "learning_rate": 0.00047929308889974737,
+ "loss": 2.1914544105529785,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89198606271777,
+ "grad_norm": 0.0450817234814167,
+ "learning_rate": 0.0004790784755878346,
+ "loss": 2.200557231903076,
+ "step": 1144
+ },
+ {
+ "epoch": 15.905923344947736,
+ "grad_norm": 0.04639074578881264,
+ "learning_rate": 0.00047886372041267434,
+ "loss": 2.204821825027466,
+ "step": 1145
+ },
+ {
+ "epoch": 15.9198606271777,
+ "grad_norm": 0.04546049237251282,
+ "learning_rate": 0.0004786488235472909,
+ "loss": 2.213542938232422,
+ "step": 1146
+ },
+ {
+ "epoch": 15.933797909407666,
+ "grad_norm": 0.04436152055859566,
+ "learning_rate": 0.0004784337851648231,
+ "loss": 2.1992855072021484,
+ "step": 1147
+ },
+ {
+ "epoch": 15.94773519163763,
+ "grad_norm": 0.04665682092308998,
+ "learning_rate": 0.0004782186054385233,
+ "loss": 2.211052417755127,
+ "step": 1148
+ },
+ {
+ "epoch": 15.961672473867596,
+ "grad_norm": 0.04532767832279205,
+ "learning_rate": 0.0004780032845417579,
+ "loss": 2.2086901664733887,
+ "step": 1149
+ },
+ {
+ "epoch": 15.975609756097562,
+ "grad_norm": 0.04679917171597481,
+ "learning_rate": 0.000477787822648007,
+ "loss": 2.1904289722442627,
+ "step": 1150
+ },
+ {
+ "epoch": 15.989547038327526,
+ "grad_norm": 0.04696613550186157,
+ "learning_rate": 0.00047757221993086443,
+ "loss": 2.17523193359375,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.03984897583723068,
+ "learning_rate": 0.00047735647656403754,
+ "loss": 1.6456931829452515,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 0.6217544674873352,
+ "eval_runtime": 36.2031,
+ "eval_samples_per_second": 67.453,
+ "eval_steps_per_second": 0.552,
+ "step": 1152
+ },
+ {
+ "epoch": 16.013937282229964,
+ "grad_norm": 0.048258837312459946,
+ "learning_rate": 0.0004771405927213467,
+ "loss": 2.149430751800537,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027874564459932,
+ "grad_norm": 0.059622205793857574,
+ "learning_rate": 0.0004769245685767255,
+ "loss": 2.146239757537842,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041811846689896,
+ "grad_norm": 0.06228978559374809,
+ "learning_rate": 0.00047670840430422113,
+ "loss": 2.1373820304870605,
+ "step": 1155
+ },
+ {
+ "epoch": 16.05574912891986,
+ "grad_norm": 0.058429088443517685,
+ "learning_rate": 0.0004764921000779928,
+ "loss": 2.153956413269043,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069686411149824,
+ "grad_norm": 0.0544302761554718,
+ "learning_rate": 0.0004762756560723131,
+ "loss": 2.1617636680603027,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083623693379792,
+ "grad_norm": 0.050771284848451614,
+ "learning_rate": 0.0004760590724615671,
+ "loss": 2.134815216064453,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097560975609756,
+ "grad_norm": 0.05482947453856468,
+ "learning_rate": 0.0004758423494202522,
+ "loss": 2.140288829803467,
+ "step": 1159
+ },
+ {
+ "epoch": 16.11149825783972,
+ "grad_norm": 0.06205987557768822,
+ "learning_rate": 0.0004756254871229782,
+ "loss": 2.1369926929473877,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125435540069688,
+ "grad_norm": 0.060936298221349716,
+ "learning_rate": 0.00047540848574446724,
+ "loss": 2.1448073387145996,
+ "step": 1161
+ },
+ {
+ "epoch": 16.139372822299652,
+ "grad_norm": 0.05571967735886574,
+ "learning_rate": 0.0004751913454595535,
+ "loss": 2.1435866355895996,
+ "step": 1162
+ },
+ {
+ "epoch": 16.153310104529616,
+ "grad_norm": 0.0552542470395565,
+ "learning_rate": 0.0004749740664431828,
+ "loss": 2.149778366088867,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16724738675958,
+ "grad_norm": 0.05414848402142525,
+ "learning_rate": 0.000474756648870413,
+ "loss": 2.149887800216675,
+ "step": 1164
+ },
+ {
+ "epoch": 16.181184668989548,
+ "grad_norm": 0.05441379174590111,
+ "learning_rate": 0.0004745390929164134,
+ "loss": 2.15389347076416,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195121951219512,
+ "grad_norm": 0.05403896048665047,
+ "learning_rate": 0.0004743213987564651,
+ "loss": 2.1331732273101807,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209059233449477,
+ "grad_norm": 0.054594095796346664,
+ "learning_rate": 0.0004741035665659603,
+ "loss": 2.158886671066284,
+ "step": 1167
+ },
+ {
+ "epoch": 16.222996515679444,
+ "grad_norm": 0.06188303232192993,
+ "learning_rate": 0.00047388559652040236,
+ "loss": 2.1471951007843018,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23693379790941,
+ "grad_norm": 0.062315408140420914,
+ "learning_rate": 0.0004736674887954059,
+ "loss": 2.147031307220459,
+ "step": 1169
+ },
+ {
+ "epoch": 16.250871080139373,
+ "grad_norm": 0.06116636097431183,
+ "learning_rate": 0.0004734492435666963,
+ "loss": 2.153916358947754,
+ "step": 1170
+ },
+ {
+ "epoch": 16.264808362369337,
+ "grad_norm": 0.05576318874955177,
+ "learning_rate": 0.0004732308610101099,
+ "loss": 2.1545660495758057,
+ "step": 1171
+ },
+ {
+ "epoch": 16.278745644599304,
+ "grad_norm": 0.05602003261446953,
+ "learning_rate": 0.00047301234130159346,
+ "loss": 2.1588096618652344,
+ "step": 1172
+ },
+ {
+ "epoch": 16.29268292682927,
+ "grad_norm": 0.05946209281682968,
+ "learning_rate": 0.00047279368461720445,
+ "loss": 2.1761999130249023,
+ "step": 1173
+ },
+ {
+ "epoch": 16.306620209059233,
+ "grad_norm": 0.062074463814496994,
+ "learning_rate": 0.0004725748911331106,
+ "loss": 2.168569326400757,
+ "step": 1174
+ },
+ {
+ "epoch": 16.320557491289197,
+ "grad_norm": 0.05756473168730736,
+ "learning_rate": 0.0004723559610255898,
+ "loss": 2.1530699729919434,
+ "step": 1175
+ },
+ {
+ "epoch": 16.334494773519165,
+ "grad_norm": 0.05881023779511452,
+ "learning_rate": 0.0004721368944710302,
+ "loss": 2.1721291542053223,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34843205574913,
+ "grad_norm": 0.06223367527127266,
+ "learning_rate": 0.00047191769164592974,
+ "loss": 2.168361186981201,
+ "step": 1177
+ },
+ {
+ "epoch": 16.362369337979093,
+ "grad_norm": 0.056093230843544006,
+ "learning_rate": 0.000471698352726896,
+ "loss": 2.164424419403076,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37630662020906,
+ "grad_norm": 0.06118649244308472,
+ "learning_rate": 0.0004714788778906467,
+ "loss": 2.158644199371338,
+ "step": 1179
+ },
+ {
+ "epoch": 16.390243902439025,
+ "grad_norm": 0.06548523902893066,
+ "learning_rate": 0.0004712592673140084,
+ "loss": 2.1728553771972656,
+ "step": 1180
+ },
+ {
+ "epoch": 16.40418118466899,
+ "grad_norm": 0.06719230860471725,
+ "learning_rate": 0.00047103952117391764,
+ "loss": 2.1555490493774414,
+ "step": 1181
+ },
+ {
+ "epoch": 16.418118466898953,
+ "grad_norm": 0.06181609630584717,
+ "learning_rate": 0.00047081963964741986,
+ "loss": 2.162527561187744,
+ "step": 1182
+ },
+ {
+ "epoch": 16.43205574912892,
+ "grad_norm": 0.05706655979156494,
+ "learning_rate": 0.0004705996229116696,
+ "loss": 2.1423912048339844,
+ "step": 1183
+ },
+ {
+ "epoch": 16.445993031358885,
+ "grad_norm": 0.05518640577793121,
+ "learning_rate": 0.0004703794711439304,
+ "loss": 2.1653032302856445,
+ "step": 1184
+ },
+ {
+ "epoch": 16.45993031358885,
+ "grad_norm": 0.05664249137043953,
+ "learning_rate": 0.0004701591845215744,
+ "loss": 2.166928291320801,
+ "step": 1185
+ },
+ {
+ "epoch": 16.473867595818817,
+ "grad_norm": 0.05873657390475273,
+ "learning_rate": 0.00046993876322208274,
+ "loss": 2.1778905391693115,
+ "step": 1186
+ },
+ {
+ "epoch": 16.48780487804878,
+ "grad_norm": 0.05944420397281647,
+ "learning_rate": 0.0004697182074230448,
+ "loss": 2.177402973175049,
+ "step": 1187
+ },
+ {
+ "epoch": 16.501742160278745,
+ "grad_norm": 0.059531547129154205,
+ "learning_rate": 0.0004694975173021586,
+ "loss": 2.1766552925109863,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51567944250871,
+ "grad_norm": 0.05503744259476662,
+ "learning_rate": 0.0004692766930372299,
+ "loss": 2.167525291442871,
+ "step": 1189
+ },
+ {
+ "epoch": 16.529616724738677,
+ "grad_norm": 0.05157329514622688,
+ "learning_rate": 0.00046905573480617285,
+ "loss": 2.1732568740844727,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54355400696864,
+ "grad_norm": 0.05355038493871689,
+ "learning_rate": 0.00046883464278700966,
+ "loss": 2.1730806827545166,
+ "step": 1191
+ },
+ {
+ "epoch": 16.557491289198605,
+ "grad_norm": 0.05118329077959061,
+ "learning_rate": 0.0004686134171578702,
+ "loss": 2.1696338653564453,
+ "step": 1192
+ },
+ {
+ "epoch": 16.571428571428573,
+ "grad_norm": 0.05029391869902611,
+ "learning_rate": 0.00046839205809699183,
+ "loss": 2.195044994354248,
+ "step": 1193
+ },
+ {
+ "epoch": 16.585365853658537,
+ "grad_norm": 0.050039373338222504,
+ "learning_rate": 0.0004681705657827195,
+ "loss": 2.1581506729125977,
+ "step": 1194
+ },
+ {
+ "epoch": 16.5993031358885,
+ "grad_norm": 0.0545598603785038,
+ "learning_rate": 0.0004679489403935058,
+ "loss": 2.1650285720825195,
+ "step": 1195
+ },
+ {
+ "epoch": 16.613240418118465,
+ "grad_norm": 0.05268346890807152,
+ "learning_rate": 0.00046772718210791005,
+ "loss": 2.184382438659668,
+ "step": 1196
+ },
+ {
+ "epoch": 16.627177700348433,
+ "grad_norm": 0.05236094444990158,
+ "learning_rate": 0.00046750529110459903,
+ "loss": 2.167102813720703,
+ "step": 1197
+ },
+ {
+ "epoch": 16.641114982578397,
+ "grad_norm": 0.052183765918016434,
+ "learning_rate": 0.0004672832675623463,
+ "loss": 2.174470901489258,
+ "step": 1198
+ },
+ {
+ "epoch": 16.65505226480836,
+ "grad_norm": 0.049528587609529495,
+ "learning_rate": 0.0004670611116600322,
+ "loss": 2.1593801975250244,
+ "step": 1199
+ },
+ {
+ "epoch": 16.66898954703833,
+ "grad_norm": 0.05077743902802467,
+ "learning_rate": 0.00046683882357664375,
+ "loss": 2.1829850673675537,
+ "step": 1200
+ },
+ {
+ "epoch": 16.682926829268293,
+ "grad_norm": 0.049165278673172,
+ "learning_rate": 0.0004666164034912744,
+ "loss": 2.1820642948150635,
+ "step": 1201
+ },
+ {
+ "epoch": 16.696864111498257,
+ "grad_norm": 0.049670539796352386,
+ "learning_rate": 0.00046639385158312406,
+ "loss": 2.1617588996887207,
+ "step": 1202
+ },
+ {
+ "epoch": 16.71080139372822,
+ "grad_norm": 0.05188990756869316,
+ "learning_rate": 0.00046617116803149874,
+ "loss": 2.1910011768341064,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72473867595819,
+ "grad_norm": 0.05106198787689209,
+ "learning_rate": 0.00046594835301581053,
+ "loss": 2.1670002937316895,
+ "step": 1204
+ },
+ {
+ "epoch": 16.738675958188153,
+ "grad_norm": 0.052352480590343475,
+ "learning_rate": 0.00046572540671557745,
+ "loss": 2.1804449558258057,
+ "step": 1205
+ },
+ {
+ "epoch": 16.752613240418118,
+ "grad_norm": 0.05456020310521126,
+ "learning_rate": 0.00046550232931042346,
+ "loss": 2.183560848236084,
+ "step": 1206
+ },
+ {
+ "epoch": 16.766550522648085,
+ "grad_norm": 0.05248325690627098,
+ "learning_rate": 0.00046527912098007787,
+ "loss": 2.1866538524627686,
+ "step": 1207
+ },
+ {
+ "epoch": 16.78048780487805,
+ "grad_norm": 0.052194926887750626,
+ "learning_rate": 0.00046505578190437564,
+ "loss": 2.179544448852539,
+ "step": 1208
+ },
+ {
+ "epoch": 16.794425087108014,
+ "grad_norm": 0.048344213515520096,
+ "learning_rate": 0.0004648323122632569,
+ "loss": 2.1895692348480225,
+ "step": 1209
+ },
+ {
+ "epoch": 16.808362369337978,
+ "grad_norm": 0.053263742476701736,
+ "learning_rate": 0.0004646087122367673,
+ "loss": 2.1922311782836914,
+ "step": 1210
+ },
+ {
+ "epoch": 16.822299651567945,
+ "grad_norm": 0.05046837404370308,
+ "learning_rate": 0.00046438498200505727,
+ "loss": 2.1986570358276367,
+ "step": 1211
+ },
+ {
+ "epoch": 16.83623693379791,
+ "grad_norm": 0.04699976369738579,
+ "learning_rate": 0.0004641611217483821,
+ "loss": 2.168755531311035,
+ "step": 1212
+ },
+ {
+ "epoch": 16.850174216027874,
+ "grad_norm": 0.0500732958316803,
+ "learning_rate": 0.00046393713164710217,
+ "loss": 2.1747398376464844,
+ "step": 1213
+ },
+ {
+ "epoch": 16.86411149825784,
+ "grad_norm": 0.048436183482408524,
+ "learning_rate": 0.00046371301188168204,
+ "loss": 2.181175947189331,
+ "step": 1214
+ },
+ {
+ "epoch": 16.878048780487806,
+ "grad_norm": 0.04788931831717491,
+ "learning_rate": 0.0004634887626326911,
+ "loss": 2.1619675159454346,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89198606271777,
+ "grad_norm": 0.04881543293595314,
+ "learning_rate": 0.00046326438408080293,
+ "loss": 2.1840174198150635,
+ "step": 1216
+ },
+ {
+ "epoch": 16.905923344947734,
+ "grad_norm": 0.049969445914030075,
+ "learning_rate": 0.00046303987640679517,
+ "loss": 2.199573040008545,
+ "step": 1217
+ },
+ {
+ "epoch": 16.9198606271777,
+ "grad_norm": 0.048629943281412125,
+ "learning_rate": 0.0004628152397915498,
+ "loss": 2.1661055088043213,
+ "step": 1218
+ },
+ {
+ "epoch": 16.933797909407666,
+ "grad_norm": 0.051450759172439575,
+ "learning_rate": 0.00046259047441605215,
+ "loss": 2.182037591934204,
+ "step": 1219
+ },
+ {
+ "epoch": 16.94773519163763,
+ "grad_norm": 0.05253942683339119,
+ "learning_rate": 0.0004623655804613919,
+ "loss": 2.1848878860473633,
+ "step": 1220
+ },
+ {
+ "epoch": 16.961672473867594,
+ "grad_norm": 0.0511169359087944,
+ "learning_rate": 0.00046214055810876194,
+ "loss": 2.181640863418579,
+ "step": 1221
+ },
+ {
+ "epoch": 16.975609756097562,
+ "grad_norm": 0.04952972009778023,
+ "learning_rate": 0.00046191540753945886,
+ "loss": 2.1824798583984375,
+ "step": 1222
+ },
+ {
+ "epoch": 16.989547038327526,
+ "grad_norm": 0.048745568841695786,
+ "learning_rate": 0.00046169012893488204,
+ "loss": 2.175996780395508,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.039088211953639984,
+ "learning_rate": 0.00046146472247653484,
+ "loss": 1.6450124979019165,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 0.6228054761886597,
+ "eval_runtime": 36.2135,
+ "eval_samples_per_second": 67.433,
+ "eval_steps_per_second": 0.552,
+ "step": 1224
+ },
+ {
+ "epoch": 17.013937282229964,
+ "grad_norm": 0.05182459577918053,
+ "learning_rate": 0.0004612391883460228,
+ "loss": 2.13407826423645,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027874564459932,
+ "grad_norm": 0.06349381804466248,
+ "learning_rate": 0.00046101352672505493,
+ "loss": 2.124786615371704,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041811846689896,
+ "grad_norm": 0.06030651181936264,
+ "learning_rate": 0.0004607877377954426,
+ "loss": 2.1319074630737305,
+ "step": 1227
+ },
+ {
+ "epoch": 17.05574912891986,
+ "grad_norm": 0.05942157283425331,
+ "learning_rate": 0.00046056182173909995,
+ "loss": 2.1155600547790527,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069686411149824,
+ "grad_norm": 0.05690222606062889,
+ "learning_rate": 0.0004603357787380435,
+ "loss": 2.1224000453948975,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083623693379792,
+ "grad_norm": 0.05549716204404831,
+ "learning_rate": 0.0004601096089743919,
+ "loss": 2.138361692428589,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097560975609756,
+ "grad_norm": 0.05572805553674698,
+ "learning_rate": 0.0004598833126303661,
+ "loss": 2.108839511871338,
+ "step": 1231
+ },
+ {
+ "epoch": 17.11149825783972,
+ "grad_norm": 0.05359194055199623,
+ "learning_rate": 0.00045965688988828884,
+ "loss": 2.111232042312622,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125435540069688,
+ "grad_norm": 0.05284698307514191,
+ "learning_rate": 0.00045943034093058507,
+ "loss": 2.111241102218628,
+ "step": 1233
+ },
+ {
+ "epoch": 17.139372822299652,
+ "grad_norm": 0.05522393807768822,
+ "learning_rate": 0.000459203665939781,
+ "loss": 2.1056082248687744,
+ "step": 1234
+ },
+ {
+ "epoch": 17.153310104529616,
+ "grad_norm": 0.05988268554210663,
+ "learning_rate": 0.00045897686509850487,
+ "loss": 2.1245055198669434,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16724738675958,
+ "grad_norm": 0.05882375314831734,
+ "learning_rate": 0.0004587499385894856,
+ "loss": 2.12105655670166,
+ "step": 1236
+ },
+ {
+ "epoch": 17.181184668989548,
+ "grad_norm": 0.05429045483469963,
+ "learning_rate": 0.000458522886595554,
+ "loss": 2.1340696811676025,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195121951219512,
+ "grad_norm": 0.05428321287035942,
+ "learning_rate": 0.0004582957092996418,
+ "loss": 2.125894546508789,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209059233449477,
+ "grad_norm": 0.05918198451399803,
+ "learning_rate": 0.0004580684068847817,
+ "loss": 2.115187168121338,
+ "step": 1239
+ },
+ {
+ "epoch": 17.222996515679444,
+ "grad_norm": 0.05467062070965767,
+ "learning_rate": 0.0004578409795341069,
+ "loss": 2.1267573833465576,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23693379790941,
+ "grad_norm": 0.05117730423808098,
+ "learning_rate": 0.0004576134274308517,
+ "loss": 2.131983757019043,
+ "step": 1241
+ },
+ {
+ "epoch": 17.250871080139373,
+ "grad_norm": 0.05354353412985802,
+ "learning_rate": 0.0004573857507583506,
+ "loss": 2.139024019241333,
+ "step": 1242
+ },
+ {
+ "epoch": 17.264808362369337,
+ "grad_norm": 0.05508217588067055,
+ "learning_rate": 0.00045715794970003874,
+ "loss": 2.123086929321289,
+ "step": 1243
+ },
+ {
+ "epoch": 17.278745644599304,
+ "grad_norm": 0.056819524616003036,
+ "learning_rate": 0.0004569300244394513,
+ "loss": 2.133049488067627,
+ "step": 1244
+ },
+ {
+ "epoch": 17.29268292682927,
+ "grad_norm": 0.06116129457950592,
+ "learning_rate": 0.0004567019751602234,
+ "loss": 2.146721601486206,
+ "step": 1245
+ },
+ {
+ "epoch": 17.306620209059233,
+ "grad_norm": 0.06482621282339096,
+ "learning_rate": 0.00045647380204609034,
+ "loss": 2.133073568344116,
+ "step": 1246
+ },
+ {
+ "epoch": 17.320557491289197,
+ "grad_norm": 0.06122269853949547,
+ "learning_rate": 0.00045624550528088704,
+ "loss": 2.1292078495025635,
+ "step": 1247
+ },
+ {
+ "epoch": 17.334494773519165,
+ "grad_norm": 0.060462113469839096,
+ "learning_rate": 0.00045601708504854803,
+ "loss": 2.1301801204681396,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34843205574913,
+ "grad_norm": 0.05775533244013786,
+ "learning_rate": 0.0004557885415331074,
+ "loss": 2.160749673843384,
+ "step": 1249
+ },
+ {
+ "epoch": 17.362369337979093,
+ "grad_norm": 0.05933118611574173,
+ "learning_rate": 0.00045555987491869865,
+ "loss": 2.138021469116211,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37630662020906,
+ "grad_norm": 0.05498939007520676,
+ "learning_rate": 0.00045533108538955416,
+ "loss": 2.1443264484405518,
+ "step": 1251
+ },
+ {
+ "epoch": 17.390243902439025,
+ "grad_norm": 0.05720233544707298,
+ "learning_rate": 0.0004551021731300055,
+ "loss": 2.1400699615478516,
+ "step": 1252
+ },
+ {
+ "epoch": 17.40418118466899,
+ "grad_norm": 0.05569229647517204,
+ "learning_rate": 0.0004548731383244834,
+ "loss": 2.1375250816345215,
+ "step": 1253
+ },
+ {
+ "epoch": 17.418118466898953,
+ "grad_norm": 0.05508109927177429,
+ "learning_rate": 0.0004546439811575169,
+ "loss": 2.1352083683013916,
+ "step": 1254
+ },
+ {
+ "epoch": 17.43205574912892,
+ "grad_norm": 0.057038020342588425,
+ "learning_rate": 0.00045441470181373375,
+ "loss": 2.1290454864501953,
+ "step": 1255
+ },
+ {
+ "epoch": 17.445993031358885,
+ "grad_norm": 0.05938584357500076,
+ "learning_rate": 0.0004541853004778603,
+ "loss": 2.14906644821167,
+ "step": 1256
+ },
+ {
+ "epoch": 17.45993031358885,
+ "grad_norm": 0.05654401332139969,
+ "learning_rate": 0.00045395577733472087,
+ "loss": 2.133410692214966,
+ "step": 1257
+ },
+ {
+ "epoch": 17.473867595818817,
+ "grad_norm": 0.05399394780397415,
+ "learning_rate": 0.0004537261325692383,
+ "loss": 2.14622163772583,
+ "step": 1258
+ },
+ {
+ "epoch": 17.48780487804878,
+ "grad_norm": 0.05683310702443123,
+ "learning_rate": 0.0004534963663664332,
+ "loss": 2.1482772827148438,
+ "step": 1259
+ },
+ {
+ "epoch": 17.501742160278745,
+ "grad_norm": 0.06314415484666824,
+ "learning_rate": 0.00045326647891142394,
+ "loss": 2.150238037109375,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51567944250871,
+ "grad_norm": 0.0595875009894371,
+ "learning_rate": 0.0004530364703894268,
+ "loss": 2.137575626373291,
+ "step": 1261
+ },
+ {
+ "epoch": 17.529616724738677,
+ "grad_norm": 0.05534850060939789,
+ "learning_rate": 0.0004528063409857554,
+ "loss": 2.169827461242676,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54355400696864,
+ "grad_norm": 0.06096148118376732,
+ "learning_rate": 0.0004525760908858209,
+ "loss": 2.142652988433838,
+ "step": 1263
+ },
+ {
+ "epoch": 17.557491289198605,
+ "grad_norm": 0.06313963979482651,
+ "learning_rate": 0.00045234572027513174,
+ "loss": 2.152920722961426,
+ "step": 1264
+ },
+ {
+ "epoch": 17.571428571428573,
+ "grad_norm": 0.058604612946510315,
+ "learning_rate": 0.00045211522933929317,
+ "loss": 2.1487669944763184,
+ "step": 1265
+ },
+ {
+ "epoch": 17.585365853658537,
+ "grad_norm": 0.056736089289188385,
+ "learning_rate": 0.0004518846182640077,
+ "loss": 2.1435699462890625,
+ "step": 1266
+ },
+ {
+ "epoch": 17.5993031358885,
+ "grad_norm": 0.05706419423222542,
+ "learning_rate": 0.0004516538872350744,
+ "loss": 2.1586122512817383,
+ "step": 1267
+ },
+ {
+ "epoch": 17.613240418118465,
+ "grad_norm": 0.05560465529561043,
+ "learning_rate": 0.0004514230364383893,
+ "loss": 2.177081346511841,
+ "step": 1268
+ },
+ {
+ "epoch": 17.627177700348433,
+ "grad_norm": 0.05601844564080238,
+ "learning_rate": 0.0004511920660599444,
+ "loss": 2.1478757858276367,
+ "step": 1269
+ },
+ {
+ "epoch": 17.641114982578397,
+ "grad_norm": 0.05756781995296478,
+ "learning_rate": 0.0004509609762858287,
+ "loss": 2.1525440216064453,
+ "step": 1270
+ },
+ {
+ "epoch": 17.65505226480836,
+ "grad_norm": 0.0531681589782238,
+ "learning_rate": 0.0004507297673022269,
+ "loss": 2.1489810943603516,
+ "step": 1271
+ },
+ {
+ "epoch": 17.66898954703833,
+ "grad_norm": 0.05216185003519058,
+ "learning_rate": 0.0004504984392954199,
+ "loss": 2.144932746887207,
+ "step": 1272
+ },
+ {
+ "epoch": 17.682926829268293,
+ "grad_norm": 0.052748095244169235,
+ "learning_rate": 0.00045026699245178444,
+ "loss": 2.148977756500244,
+ "step": 1273
+ },
+ {
+ "epoch": 17.696864111498257,
+ "grad_norm": 0.051663246005773544,
+ "learning_rate": 0.0004500354269577932,
+ "loss": 2.1617603302001953,
+ "step": 1274
+ },
+ {
+ "epoch": 17.71080139372822,
+ "grad_norm": 0.05068802461028099,
+ "learning_rate": 0.00044980374300001414,
+ "loss": 2.1467485427856445,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72473867595819,
+ "grad_norm": 0.052201591432094574,
+ "learning_rate": 0.00044957194076511095,
+ "loss": 2.1621475219726562,
+ "step": 1276
+ },
+ {
+ "epoch": 17.738675958188153,
+ "grad_norm": 0.05179779976606369,
+ "learning_rate": 0.0004493400204398426,
+ "loss": 2.1593222618103027,
+ "step": 1277
+ },
+ {
+ "epoch": 17.752613240418118,
+ "grad_norm": 0.05123918130993843,
+ "learning_rate": 0.00044910798221106283,
+ "loss": 2.1596224308013916,
+ "step": 1278
+ },
+ {
+ "epoch": 17.766550522648085,
+ "grad_norm": 0.05416003242135048,
+ "learning_rate": 0.00044887582626572105,
+ "loss": 2.156677484512329,
+ "step": 1279
+ },
+ {
+ "epoch": 17.78048780487805,
+ "grad_norm": 0.05376303568482399,
+ "learning_rate": 0.0004486435527908606,
+ "loss": 2.1515936851501465,
+ "step": 1280
+ },
+ {
+ "epoch": 17.794425087108014,
+ "grad_norm": 0.05113770812749863,
+ "learning_rate": 0.0004484111619736205,
+ "loss": 2.159501075744629,
+ "step": 1281
+ },
+ {
+ "epoch": 17.808362369337978,
+ "grad_norm": 0.05341901257634163,
+ "learning_rate": 0.0004481786540012336,
+ "loss": 2.1458449363708496,
+ "step": 1282
+ },
+ {
+ "epoch": 17.822299651567945,
+ "grad_norm": 0.05436928942799568,
+ "learning_rate": 0.00044794602906102747,
+ "loss": 2.1686582565307617,
+ "step": 1283
+ },
+ {
+ "epoch": 17.83623693379791,
+ "grad_norm": 0.05663881078362465,
+ "learning_rate": 0.00044771328734042367,
+ "loss": 2.162226676940918,
+ "step": 1284
+ },
+ {
+ "epoch": 17.850174216027874,
+ "grad_norm": 0.052064672112464905,
+ "learning_rate": 0.00044748042902693815,
+ "loss": 2.162569046020508,
+ "step": 1285
+ },
+ {
+ "epoch": 17.86411149825784,
+ "grad_norm": 0.05361185595393181,
+ "learning_rate": 0.0004472474543081805,
+ "loss": 2.156773567199707,
+ "step": 1286
+ },
+ {
+ "epoch": 17.878048780487806,
+ "grad_norm": 0.053101785480976105,
+ "learning_rate": 0.00044701436337185444,
+ "loss": 2.1460914611816406,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89198606271777,
+ "grad_norm": 0.05247222259640694,
+ "learning_rate": 0.00044678115640575704,
+ "loss": 2.1564040184020996,
+ "step": 1288
+ },
+ {
+ "epoch": 17.905923344947734,
+ "grad_norm": 0.054551344364881516,
+ "learning_rate": 0.0004465478335977788,
+ "loss": 2.1503076553344727,
+ "step": 1289
+ },
+ {
+ "epoch": 17.9198606271777,
+ "grad_norm": 0.050967201590538025,
+ "learning_rate": 0.00044631439513590393,
+ "loss": 2.165611505508423,
+ "step": 1290
+ },
+ {
+ "epoch": 17.933797909407666,
+ "grad_norm": 0.051103148609399796,
+ "learning_rate": 0.00044608084120820933,
+ "loss": 2.146416187286377,
+ "step": 1291
+ },
+ {
+ "epoch": 17.94773519163763,
+ "grad_norm": 0.04871583357453346,
+ "learning_rate": 0.0004458471720028655,
+ "loss": 2.1615967750549316,
+ "step": 1292
+ },
+ {
+ "epoch": 17.961672473867594,
+ "grad_norm": 0.05047275498509407,
+ "learning_rate": 0.0004456133877081352,
+ "loss": 2.1585195064544678,
+ "step": 1293
+ },
+ {
+ "epoch": 17.975609756097562,
+ "grad_norm": 0.05169983580708504,
+ "learning_rate": 0.0004453794885123744,
+ "loss": 2.163914680480957,
+ "step": 1294
+ },
+ {
+ "epoch": 17.989547038327526,
+ "grad_norm": 0.05178225040435791,
+ "learning_rate": 0.00044514547460403135,
+ "loss": 2.1566972732543945,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.04334854707121849,
+ "learning_rate": 0.00044491134617164694,
+ "loss": 1.6099262237548828,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 0.6236167550086975,
+ "eval_runtime": 36.363,
+ "eval_samples_per_second": 67.156,
+ "eval_steps_per_second": 0.55,
+ "step": 1296
+ },
+ {
+ "epoch": 18.013937282229964,
+ "grad_norm": 0.054574184119701385,
+ "learning_rate": 0.000444677103403854,
+ "loss": 2.097102642059326,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027874564459932,
+ "grad_norm": 0.06331679970026016,
+ "learning_rate": 0.0004444427464893779,
+ "loss": 2.113513469696045,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041811846689896,
+ "grad_norm": 0.06493321061134338,
+ "learning_rate": 0.00044420827561703573,
+ "loss": 2.1095829010009766,
+ "step": 1299
+ },
+ {
+ "epoch": 18.05574912891986,
+ "grad_norm": 0.0661960318684578,
+ "learning_rate": 0.0004439736909757365,
+ "loss": 2.0967822074890137,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069686411149824,
+ "grad_norm": 0.062145210802555084,
+ "learning_rate": 0.0004437389927544805,
+ "loss": 2.08186936378479,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083623693379792,
+ "grad_norm": 0.06310027837753296,
+ "learning_rate": 0.0004435041811423603,
+ "loss": 2.115525245666504,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097560975609756,
+ "grad_norm": 0.06527610123157501,
+ "learning_rate": 0.0004432692563285591,
+ "loss": 2.110492706298828,
+ "step": 1303
+ },
+ {
+ "epoch": 18.11149825783972,
+ "grad_norm": 0.059454720467329025,
+ "learning_rate": 0.0004430342185023517,
+ "loss": 2.105884552001953,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125435540069688,
+ "grad_norm": 0.056922316551208496,
+ "learning_rate": 0.0004427990678531038,
+ "loss": 2.1008682250976562,
+ "step": 1305
+ },
+ {
+ "epoch": 18.139372822299652,
+ "grad_norm": 0.06496447324752808,
+ "learning_rate": 0.0004425638045702719,
+ "loss": 2.0853774547576904,
+ "step": 1306
+ },
+ {
+ "epoch": 18.153310104529616,
+ "grad_norm": 0.059888552874326706,
+ "learning_rate": 0.0004423284288434035,
+ "loss": 2.1116936206817627,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16724738675958,
+ "grad_norm": 0.06061340123414993,
+ "learning_rate": 0.00044209294086213657,
+ "loss": 2.100578784942627,
+ "step": 1308
+ },
+ {
+ "epoch": 18.181184668989548,
+ "grad_norm": 0.06433615833520889,
+ "learning_rate": 0.00044185734081619957,
+ "loss": 2.0994229316711426,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195121951219512,
+ "grad_norm": 0.06373526901006699,
+ "learning_rate": 0.000441621628895411,
+ "loss": 2.1115286350250244,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209059233449477,
+ "grad_norm": 0.062120918184518814,
+ "learning_rate": 0.00044138580528967986,
+ "loss": 2.123278856277466,
+ "step": 1311
+ },
+ {
+ "epoch": 18.222996515679444,
+ "grad_norm": 0.06534294784069061,
+ "learning_rate": 0.0004411498701890051,
+ "loss": 2.0983846187591553,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23693379790941,
+ "grad_norm": 0.06486557424068451,
+ "learning_rate": 0.0004409138237834751,
+ "loss": 2.099348783493042,
+ "step": 1313
+ },
+ {
+ "epoch": 18.250871080139373,
+ "grad_norm": 0.05728910490870476,
+ "learning_rate": 0.00044067766626326835,
+ "loss": 2.0990138053894043,
+ "step": 1314
+ },
+ {
+ "epoch": 18.264808362369337,
+ "grad_norm": 0.060207612812519073,
+ "learning_rate": 0.00044044139781865255,
+ "loss": 2.1117920875549316,
+ "step": 1315
+ },
+ {
+ "epoch": 18.278745644599304,
+ "grad_norm": 0.05766129493713379,
+ "learning_rate": 0.00044020501863998516,
+ "loss": 2.101550579071045,
+ "step": 1316
+ },
+ {
+ "epoch": 18.29268292682927,
+ "grad_norm": 0.060087788850069046,
+ "learning_rate": 0.00043996852891771236,
+ "loss": 2.1135497093200684,
+ "step": 1317
+ },
+ {
+ "epoch": 18.306620209059233,
+ "grad_norm": 0.059771373867988586,
+ "learning_rate": 0.00043973192884236983,
+ "loss": 2.1124963760375977,
+ "step": 1318
+ },
+ {
+ "epoch": 18.320557491289197,
+ "grad_norm": 0.059871334582567215,
+ "learning_rate": 0.0004394952186045819,
+ "loss": 2.1254708766937256,
+ "step": 1319
+ },
+ {
+ "epoch": 18.334494773519165,
+ "grad_norm": 0.060070380568504333,
+ "learning_rate": 0.00043925839839506167,
+ "loss": 2.1019275188446045,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34843205574913,
+ "grad_norm": 0.05744089558720589,
+ "learning_rate": 0.0004390214684046111,
+ "loss": 2.112631320953369,
+ "step": 1321
+ },
+ {
+ "epoch": 18.362369337979093,
+ "grad_norm": 0.06188441440463066,
+ "learning_rate": 0.00043878442882412015,
+ "loss": 2.11454439163208,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37630662020906,
+ "grad_norm": 0.06033455580472946,
+ "learning_rate": 0.00043854727984456746,
+ "loss": 2.1136903762817383,
+ "step": 1323
+ },
+ {
+ "epoch": 18.390243902439025,
+ "grad_norm": 0.05741684511303902,
+ "learning_rate": 0.0004383100216570197,
+ "loss": 2.1244497299194336,
+ "step": 1324
+ },
+ {
+ "epoch": 18.40418118466899,
+ "grad_norm": 0.05371133238077164,
+ "learning_rate": 0.0004380726544526316,
+ "loss": 2.0973854064941406,
+ "step": 1325
+ },
+ {
+ "epoch": 18.418118466898953,
+ "grad_norm": 0.05289234593510628,
+ "learning_rate": 0.00043783517842264534,
+ "loss": 2.1062159538269043,
+ "step": 1326
+ },
+ {
+ "epoch": 18.43205574912892,
+ "grad_norm": 0.05888833478093147,
+ "learning_rate": 0.0004375975937583914,
+ "loss": 2.133770227432251,
+ "step": 1327
+ },
+ {
+ "epoch": 18.445993031358885,
+ "grad_norm": 0.057039227336645126,
+ "learning_rate": 0.0004373599006512871,
+ "loss": 2.123251438140869,
+ "step": 1328
+ },
+ {
+ "epoch": 18.45993031358885,
+ "grad_norm": 0.05389681085944176,
+ "learning_rate": 0.00043712209929283786,
+ "loss": 2.1121368408203125,
+ "step": 1329
+ },
+ {
+ "epoch": 18.473867595818817,
+ "grad_norm": 0.05782404541969299,
+ "learning_rate": 0.00043688418987463567,
+ "loss": 2.119410991668701,
+ "step": 1330
+ },
+ {
+ "epoch": 18.48780487804878,
+ "grad_norm": 0.06069990620017052,
+ "learning_rate": 0.00043664617258835995,
+ "loss": 2.1443772315979004,
+ "step": 1331
+ },
+ {
+ "epoch": 18.501742160278745,
+ "grad_norm": 0.05559232831001282,
+ "learning_rate": 0.0004364080476257769,
+ "loss": 2.1264851093292236,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51567944250871,
+ "grad_norm": 0.05432436615228653,
+ "learning_rate": 0.0004361698151787396,
+ "loss": 2.1118392944335938,
+ "step": 1333
+ },
+ {
+ "epoch": 18.529616724738677,
+ "grad_norm": 0.05471545085310936,
+ "learning_rate": 0.0004359314754391874,
+ "loss": 2.1159002780914307,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54355400696864,
+ "grad_norm": 0.05574088171124458,
+ "learning_rate": 0.0004356930285991466,
+ "loss": 2.1271533966064453,
+ "step": 1335
+ },
+ {
+ "epoch": 18.557491289198605,
+ "grad_norm": 0.05431128293275833,
+ "learning_rate": 0.00043545447485072926,
+ "loss": 2.125399589538574,
+ "step": 1336
+ },
+ {
+ "epoch": 18.571428571428573,
+ "grad_norm": 0.055981073528528214,
+ "learning_rate": 0.000435215814386134,
+ "loss": 2.113802909851074,
+ "step": 1337
+ },
+ {
+ "epoch": 18.585365853658537,
+ "grad_norm": 0.05551784485578537,
+ "learning_rate": 0.0004349770473976453,
+ "loss": 2.1233460903167725,
+ "step": 1338
+ },
+ {
+ "epoch": 18.5993031358885,
+ "grad_norm": 0.05475042760372162,
+ "learning_rate": 0.0004347381740776332,
+ "loss": 2.1365370750427246,
+ "step": 1339
+ },
+ {
+ "epoch": 18.613240418118465,
+ "grad_norm": 0.05448045954108238,
+ "learning_rate": 0.0004344991946185538,
+ "loss": 2.1288349628448486,
+ "step": 1340
+ },
+ {
+ "epoch": 18.627177700348433,
+ "grad_norm": 0.0553717240691185,
+ "learning_rate": 0.00043426010921294837,
+ "loss": 2.1383371353149414,
+ "step": 1341
+ },
+ {
+ "epoch": 18.641114982578397,
+ "grad_norm": 0.05391915515065193,
+ "learning_rate": 0.0004340209180534438,
+ "loss": 2.1390743255615234,
+ "step": 1342
+ },
+ {
+ "epoch": 18.65505226480836,
+ "grad_norm": 0.05404767021536827,
+ "learning_rate": 0.000433781621332752,
+ "loss": 2.1237120628356934,
+ "step": 1343
+ },
+ {
+ "epoch": 18.66898954703833,
+ "grad_norm": 0.05370468273758888,
+ "learning_rate": 0.0004335422192436703,
+ "loss": 2.123408079147339,
+ "step": 1344
+ },
+ {
+ "epoch": 18.682926829268293,
+ "grad_norm": 0.05490506440401077,
+ "learning_rate": 0.00043330271197908023,
+ "loss": 2.130199432373047,
+ "step": 1345
+ },
+ {
+ "epoch": 18.696864111498257,
+ "grad_norm": 0.05651344731450081,
+ "learning_rate": 0.00043306309973194874,
+ "loss": 2.1184425354003906,
+ "step": 1346
+ },
+ {
+ "epoch": 18.71080139372822,
+ "grad_norm": 0.05446930602192879,
+ "learning_rate": 0.000432823382695327,
+ "loss": 2.1391234397888184,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72473867595819,
+ "grad_norm": 0.056854017078876495,
+ "learning_rate": 0.0004325835610623508,
+ "loss": 2.1358017921447754,
+ "step": 1348
+ },
+ {
+ "epoch": 18.738675958188153,
+ "grad_norm": 0.06729792058467865,
+ "learning_rate": 0.00043234363502623994,
+ "loss": 2.1330645084381104,
+ "step": 1349
+ },
+ {
+ "epoch": 18.752613240418118,
+ "grad_norm": 0.05778411030769348,
+ "learning_rate": 0.0004321036047802985,
+ "loss": 2.1277008056640625,
+ "step": 1350
+ },
+ {
+ "epoch": 18.766550522648085,
+ "grad_norm": 0.05493835732340813,
+ "learning_rate": 0.00043186347051791466,
+ "loss": 2.1218693256378174,
+ "step": 1351
+ },
+ {
+ "epoch": 18.78048780487805,
+ "grad_norm": 0.05961703136563301,
+ "learning_rate": 0.0004316232324325602,
+ "loss": 2.141153573989868,
+ "step": 1352
+ },
+ {
+ "epoch": 18.794425087108014,
+ "grad_norm": 0.057490140199661255,
+ "learning_rate": 0.0004313828907177906,
+ "loss": 2.1218957901000977,
+ "step": 1353
+ },
+ {
+ "epoch": 18.808362369337978,
+ "grad_norm": 0.05424332618713379,
+ "learning_rate": 0.0004311424455672448,
+ "loss": 2.1294074058532715,
+ "step": 1354
+ },
+ {
+ "epoch": 18.822299651567945,
+ "grad_norm": 0.05539792776107788,
+ "learning_rate": 0.0004309018971746451,
+ "loss": 2.1287131309509277,
+ "step": 1355
+ },
+ {
+ "epoch": 18.83623693379791,
+ "grad_norm": 0.056515417993068695,
+ "learning_rate": 0.000430661245733797,
+ "loss": 2.1303625106811523,
+ "step": 1356
+ },
+ {
+ "epoch": 18.850174216027874,
+ "grad_norm": 0.053070683032274246,
+ "learning_rate": 0.00043042049143858914,
+ "loss": 2.1501715183258057,
+ "step": 1357
+ },
+ {
+ "epoch": 18.86411149825784,
+ "grad_norm": 0.05422713980078697,
+ "learning_rate": 0.0004301796344829928,
+ "loss": 2.141580581665039,
+ "step": 1358
+ },
+ {
+ "epoch": 18.878048780487806,
+ "grad_norm": 0.053621236234903336,
+ "learning_rate": 0.00042993867506106205,
+ "loss": 2.1374034881591797,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89198606271777,
+ "grad_norm": 0.05488245189189911,
+ "learning_rate": 0.0004296976133669336,
+ "loss": 2.1387908458709717,
+ "step": 1360
+ },
+ {
+ "epoch": 18.905923344947734,
+ "grad_norm": 0.05566219612956047,
+ "learning_rate": 0.0004294564495948266,
+ "loss": 2.1420421600341797,
+ "step": 1361
+ },
+ {
+ "epoch": 18.9198606271777,
+ "grad_norm": 0.05297220125794411,
+ "learning_rate": 0.0004292151839390421,
+ "loss": 2.126768112182617,
+ "step": 1362
+ },
+ {
+ "epoch": 18.933797909407666,
+ "grad_norm": 0.056281380355358124,
+ "learning_rate": 0.0004289738165939636,
+ "loss": 2.114241361618042,
+ "step": 1363
+ },
+ {
+ "epoch": 18.94773519163763,
+ "grad_norm": 0.05625050142407417,
+ "learning_rate": 0.00042873234775405654,
+ "loss": 2.134300947189331,
+ "step": 1364
+ },
+ {
+ "epoch": 18.961672473867594,
+ "grad_norm": 0.05186711251735687,
+ "learning_rate": 0.00042849077761386784,
+ "loss": 2.1409969329833984,
+ "step": 1365
+ },
+ {
+ "epoch": 18.975609756097562,
+ "grad_norm": 0.057695358991622925,
+ "learning_rate": 0.0004282491063680263,
+ "loss": 2.1331894397735596,
+ "step": 1366
+ },
+ {
+ "epoch": 18.989547038327526,
+ "grad_norm": 0.055152107030153275,
+ "learning_rate": 0.00042800733421124207,
+ "loss": 2.147555112838745,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.04286205768585205,
+ "learning_rate": 0.00042776546133830646,
+ "loss": 1.5948516130447388,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 0.6249114871025085,
+ "eval_runtime": 36.6804,
+ "eval_samples_per_second": 66.575,
+ "eval_steps_per_second": 0.545,
+ "step": 1368
+ },
+ {
+ "epoch": 19.013937282229964,
+ "grad_norm": 0.05809386819601059,
+ "learning_rate": 0.00042752348794409227,
+ "loss": 2.0782227516174316,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027874564459932,
+ "grad_norm": 0.06399382650852203,
+ "learning_rate": 0.00042728141422355287,
+ "loss": 2.078792095184326,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041811846689896,
+ "grad_norm": 0.0564531646668911,
+ "learning_rate": 0.0004270392403717229,
+ "loss": 2.083125114440918,
+ "step": 1371
+ },
+ {
+ "epoch": 19.05574912891986,
+ "grad_norm": 0.057170569896698,
+ "learning_rate": 0.00042679696658371743,
+ "loss": 2.0679214000701904,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069686411149824,
+ "grad_norm": 0.05639920011162758,
+ "learning_rate": 0.00042655459305473195,
+ "loss": 2.072279930114746,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083623693379792,
+ "grad_norm": 0.05690578371286392,
+ "learning_rate": 0.0004263121199800425,
+ "loss": 2.0732839107513428,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097560975609756,
+ "grad_norm": 0.05914883315563202,
+ "learning_rate": 0.0004260695475550054,
+ "loss": 2.0810770988464355,
+ "step": 1375
+ },
+ {
+ "epoch": 19.11149825783972,
+ "grad_norm": 0.058082643896341324,
+ "learning_rate": 0.0004258268759750566,
+ "loss": 2.074130058288574,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125435540069688,
+ "grad_norm": 0.06016257032752037,
+ "learning_rate": 0.0004255841054357124,
+ "loss": 2.084043025970459,
+ "step": 1377
+ },
+ {
+ "epoch": 19.139372822299652,
+ "grad_norm": 0.060372497886419296,
+ "learning_rate": 0.0004253412361325686,
+ "loss": 2.0811657905578613,
+ "step": 1378
+ },
+ {
+ "epoch": 19.153310104529616,
+ "grad_norm": 0.0614042803645134,
+ "learning_rate": 0.0004250982682613006,
+ "loss": 2.070756435394287,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16724738675958,
+ "grad_norm": 0.06391493231058121,
+ "learning_rate": 0.00042485520201766315,
+ "loss": 2.067322015762329,
+ "step": 1380
+ },
+ {
+ "epoch": 19.181184668989548,
+ "grad_norm": 0.06465132534503937,
+ "learning_rate": 0.0004246120375974905,
+ "loss": 2.077214002609253,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195121951219512,
+ "grad_norm": 0.06490413844585419,
+ "learning_rate": 0.0004243687751966957,
+ "loss": 2.0735957622528076,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209059233449477,
+ "grad_norm": 0.06681123375892639,
+ "learning_rate": 0.0004241254150112708,
+ "loss": 2.092386484146118,
+ "step": 1383
+ },
+ {
+ "epoch": 19.222996515679444,
+ "grad_norm": 0.07135862857103348,
+ "learning_rate": 0.000423881957237287,
+ "loss": 2.0910637378692627,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23693379790941,
+ "grad_norm": 0.06640495359897614,
+ "learning_rate": 0.0004236384020708935,
+ "loss": 2.076943874359131,
+ "step": 1385
+ },
+ {
+ "epoch": 19.250871080139373,
+ "grad_norm": 0.06542305648326874,
+ "learning_rate": 0.0004233947497083185,
+ "loss": 2.08823299407959,
+ "step": 1386
+ },
+ {
+ "epoch": 19.264808362369337,
+ "grad_norm": 0.06014764681458473,
+ "learning_rate": 0.0004231510003458682,
+ "loss": 2.0875651836395264,
+ "step": 1387
+ },
+ {
+ "epoch": 19.278745644599304,
+ "grad_norm": 0.05776312202215195,
+ "learning_rate": 0.0004229071541799272,
+ "loss": 2.097287654876709,
+ "step": 1388
+ },
+ {
+ "epoch": 19.29268292682927,
+ "grad_norm": 0.058570489287376404,
+ "learning_rate": 0.0004226632114069578,
+ "loss": 2.099949359893799,
+ "step": 1389
+ },
+ {
+ "epoch": 19.306620209059233,
+ "grad_norm": 0.059035737067461014,
+ "learning_rate": 0.0004224191722235004,
+ "loss": 2.0985028743743896,
+ "step": 1390
+ },
+ {
+ "epoch": 19.320557491289197,
+ "grad_norm": 0.05857931450009346,
+ "learning_rate": 0.00042217503682617286,
+ "loss": 2.0884578227996826,
+ "step": 1391
+ },
+ {
+ "epoch": 19.334494773519165,
+ "grad_norm": 0.057818394154310226,
+ "learning_rate": 0.0004219308054116706,
+ "loss": 2.0950827598571777,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34843205574913,
+ "grad_norm": 0.05500008538365364,
+ "learning_rate": 0.0004216864781767667,
+ "loss": 2.0837326049804688,
+ "step": 1393
+ },
+ {
+ "epoch": 19.362369337979093,
+ "grad_norm": 0.05635271221399307,
+ "learning_rate": 0.00042144205531831103,
+ "loss": 2.1017332077026367,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37630662020906,
+ "grad_norm": 0.0582125261425972,
+ "learning_rate": 0.0004211975370332308,
+ "loss": 2.0762600898742676,
+ "step": 1395
+ },
+ {
+ "epoch": 19.390243902439025,
+ "grad_norm": 0.0587347187101841,
+ "learning_rate": 0.00042095292351852976,
+ "loss": 2.0604896545410156,
+ "step": 1396
+ },
+ {
+ "epoch": 19.40418118466899,
+ "grad_norm": 0.058021727949380875,
+ "learning_rate": 0.0004207082149712888,
+ "loss": 2.0906972885131836,
+ "step": 1397
+ },
+ {
+ "epoch": 19.418118466898953,
+ "grad_norm": 0.05805983021855354,
+ "learning_rate": 0.0004204634115886651,
+ "loss": 2.0873594284057617,
+ "step": 1398
+ },
+ {
+ "epoch": 19.43205574912892,
+ "grad_norm": 0.05964788421988487,
+ "learning_rate": 0.0004202185135678924,
+ "loss": 2.1012473106384277,
+ "step": 1399
+ },
+ {
+ "epoch": 19.445993031358885,
+ "grad_norm": 0.058361511677503586,
+ "learning_rate": 0.00041997352110628033,
+ "loss": 2.09468936920166,
+ "step": 1400
+ },
+ {
+ "epoch": 19.45993031358885,
+ "grad_norm": 0.05840443819761276,
+ "learning_rate": 0.00041972843440121527,
+ "loss": 2.105898857116699,
+ "step": 1401
+ },
+ {
+ "epoch": 19.473867595818817,
+ "grad_norm": 0.06023252755403519,
+ "learning_rate": 0.00041948325365015894,
+ "loss": 2.103001594543457,
+ "step": 1402
+ },
+ {
+ "epoch": 19.48780487804878,
+ "grad_norm": 0.057779282331466675,
+ "learning_rate": 0.0004192379790506491,
+ "loss": 2.0969185829162598,
+ "step": 1403
+ },
+ {
+ "epoch": 19.501742160278745,
+ "grad_norm": 0.0592162050306797,
+ "learning_rate": 0.00041899261080029904,
+ "loss": 2.1101880073547363,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51567944250871,
+ "grad_norm": 0.06333442032337189,
+ "learning_rate": 0.00041874714909679754,
+ "loss": 2.1037089824676514,
+ "step": 1405
+ },
+ {
+ "epoch": 19.529616724738677,
+ "grad_norm": 0.06202675402164459,
+ "learning_rate": 0.00041850159413790863,
+ "loss": 2.1154634952545166,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54355400696864,
+ "grad_norm": 0.055281441658735275,
+ "learning_rate": 0.0004182559461214715,
+ "loss": 2.1098036766052246,
+ "step": 1407
+ },
+ {
+ "epoch": 19.557491289198605,
+ "grad_norm": 0.06085072085261345,
+ "learning_rate": 0.0004180102052454004,
+ "loss": 2.0985965728759766,
+ "step": 1408
+ },
+ {
+ "epoch": 19.571428571428573,
+ "grad_norm": 0.059430696070194244,
+ "learning_rate": 0.00041776437170768427,
+ "loss": 2.1063296794891357,
+ "step": 1409
+ },
+ {
+ "epoch": 19.585365853658537,
+ "grad_norm": 0.05628339946269989,
+ "learning_rate": 0.0004175184457063868,
+ "loss": 2.096975326538086,
+ "step": 1410
+ },
+ {
+ "epoch": 19.5993031358885,
+ "grad_norm": 0.056543346494436264,
+ "learning_rate": 0.000417272427439646,
+ "loss": 2.1110968589782715,
+ "step": 1411
+ },
+ {
+ "epoch": 19.613240418118465,
+ "grad_norm": 0.05971049889922142,
+ "learning_rate": 0.00041702631710567443,
+ "loss": 2.1136279106140137,
+ "step": 1412
+ },
+ {
+ "epoch": 19.627177700348433,
+ "grad_norm": 0.056699734181165695,
+ "learning_rate": 0.00041678011490275875,
+ "loss": 2.113466501235962,
+ "step": 1413
+ },
+ {
+ "epoch": 19.641114982578397,
+ "grad_norm": 0.05671929940581322,
+ "learning_rate": 0.00041653382102925957,
+ "loss": 2.1061220169067383,
+ "step": 1414
+ },
+ {
+ "epoch": 19.65505226480836,
+ "grad_norm": 0.05770038440823555,
+ "learning_rate": 0.00041628743568361147,
+ "loss": 2.1156320571899414,
+ "step": 1415
+ },
+ {
+ "epoch": 19.66898954703833,
+ "grad_norm": 0.06175893545150757,
+ "learning_rate": 0.00041604095906432265,
+ "loss": 2.112288475036621,
+ "step": 1416
+ },
+ {
+ "epoch": 19.682926829268293,
+ "grad_norm": 0.06383928656578064,
+ "learning_rate": 0.00041579439136997493,
+ "loss": 2.1029422283172607,
+ "step": 1417
+ },
+ {
+ "epoch": 19.696864111498257,
+ "grad_norm": 0.06042713671922684,
+ "learning_rate": 0.00041554773279922337,
+ "loss": 2.1106066703796387,
+ "step": 1418
+ },
+ {
+ "epoch": 19.71080139372822,
+ "grad_norm": 0.057180315256118774,
+ "learning_rate": 0.0004153009835507963,
+ "loss": 2.1148805618286133,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72473867595819,
+ "grad_norm": 0.061083171516656876,
+ "learning_rate": 0.0004150541438234952,
+ "loss": 2.0946850776672363,
+ "step": 1420
+ },
+ {
+ "epoch": 19.738675958188153,
+ "grad_norm": 0.0596432127058506,
+ "learning_rate": 0.00041480721381619435,
+ "loss": 2.1208066940307617,
+ "step": 1421
+ },
+ {
+ "epoch": 19.752613240418118,
+ "grad_norm": 0.05496669560670853,
+ "learning_rate": 0.00041456019372784086,
+ "loss": 2.1088931560516357,
+ "step": 1422
+ },
+ {
+ "epoch": 19.766550522648085,
+ "grad_norm": 0.05810244753956795,
+ "learning_rate": 0.0004143130837574543,
+ "loss": 2.1019372940063477,
+ "step": 1423
+ },
+ {
+ "epoch": 19.78048780487805,
+ "grad_norm": 0.05894653871655464,
+ "learning_rate": 0.0004140658841041267,
+ "loss": 2.1125125885009766,
+ "step": 1424
+ },
+ {
+ "epoch": 19.794425087108014,
+ "grad_norm": 0.05772726237773895,
+ "learning_rate": 0.0004138185949670224,
+ "loss": 2.126194477081299,
+ "step": 1425
+ },
+ {
+ "epoch": 19.808362369337978,
+ "grad_norm": 0.058502763509750366,
+ "learning_rate": 0.00041357121654537766,
+ "loss": 2.110621452331543,
+ "step": 1426
+ },
+ {
+ "epoch": 19.822299651567945,
+ "grad_norm": 0.058296941220760345,
+ "learning_rate": 0.00041332374903850104,
+ "loss": 2.1034765243530273,
+ "step": 1427
+ },
+ {
+ "epoch": 19.83623693379791,
+ "grad_norm": 0.05595606938004494,
+ "learning_rate": 0.00041307619264577234,
+ "loss": 2.118297815322876,
+ "step": 1428
+ },
+ {
+ "epoch": 19.850174216027874,
+ "grad_norm": 0.0563458688557148,
+ "learning_rate": 0.0004128285475666436,
+ "loss": 2.1122255325317383,
+ "step": 1429
+ },
+ {
+ "epoch": 19.86411149825784,
+ "grad_norm": 0.05421055108308792,
+ "learning_rate": 0.0004125808140006378,
+ "loss": 2.103970527648926,
+ "step": 1430
+ },
+ {
+ "epoch": 19.878048780487806,
+ "grad_norm": 0.05633455142378807,
+ "learning_rate": 0.0004123329921473494,
+ "loss": 2.11661434173584,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89198606271777,
+ "grad_norm": 0.05797342583537102,
+ "learning_rate": 0.0004120850822064439,
+ "loss": 2.1021676063537598,
+ "step": 1432
+ },
+ {
+ "epoch": 19.905923344947734,
+ "grad_norm": 0.056061360985040665,
+ "learning_rate": 0.00041183708437765815,
+ "loss": 2.123298406600952,
+ "step": 1433
+ },
+ {
+ "epoch": 19.9198606271777,
+ "grad_norm": 0.05381599813699722,
+ "learning_rate": 0.00041158899886079925,
+ "loss": 2.120389938354492,
+ "step": 1434
+ },
+ {
+ "epoch": 19.933797909407666,
+ "grad_norm": 0.05545654520392418,
+ "learning_rate": 0.00041134082585574534,
+ "loss": 2.1180779933929443,
+ "step": 1435
+ },
+ {
+ "epoch": 19.94773519163763,
+ "grad_norm": 0.056983016431331635,
+ "learning_rate": 0.00041109256556244497,
+ "loss": 2.118905544281006,
+ "step": 1436
+ },
+ {
+ "epoch": 19.961672473867594,
+ "grad_norm": 0.0575285367667675,
+ "learning_rate": 0.00041084421818091685,
+ "loss": 2.1049699783325195,
+ "step": 1437
+ },
+ {
+ "epoch": 19.975609756097562,
+ "grad_norm": 0.057964932173490524,
+ "learning_rate": 0.0004105957839112501,
+ "loss": 2.1140224933624268,
+ "step": 1438
+ },
+ {
+ "epoch": 19.989547038327526,
+ "grad_norm": 0.05869961529970169,
+ "learning_rate": 0.0004103472629536036,
+ "loss": 2.1089744567871094,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.04450551047921181,
+ "learning_rate": 0.0004100986555082063,
+ "loss": 1.579450249671936,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 0.6265780925750732,
+ "eval_runtime": 34.9259,
+ "eval_samples_per_second": 69.92,
+ "eval_steps_per_second": 0.573,
+ "step": 1440
+ },
+ {
+ "epoch": 20.013937282229964,
+ "grad_norm": 0.05954804643988609,
+ "learning_rate": 0.0004098499617753567,
+ "loss": 2.062889575958252,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027874564459932,
+ "grad_norm": 0.07035746425390244,
+ "learning_rate": 0.00040960118195542273,
+ "loss": 2.0443758964538574,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041811846689896,
+ "grad_norm": 0.0653388574719429,
+ "learning_rate": 0.00040935231624884204,
+ "loss": 2.0611963272094727,
+ "step": 1443
+ },
+ {
+ "epoch": 20.05574912891986,
+ "grad_norm": 0.06305127590894699,
+ "learning_rate": 0.0004091033648561211,
+ "loss": 2.0648036003112793,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069686411149824,
+ "grad_norm": 0.05987029895186424,
+ "learning_rate": 0.00040885432797783543,
+ "loss": 2.059682607650757,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083623693379792,
+ "grad_norm": 0.06469618529081345,
+ "learning_rate": 0.0004086052058146297,
+ "loss": 2.0656521320343018,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097560975609756,
+ "grad_norm": 0.05834262818098068,
+ "learning_rate": 0.00040835599856721725,
+ "loss": 2.0583415031433105,
+ "step": 1447
+ },
+ {
+ "epoch": 20.11149825783972,
+ "grad_norm": 0.06026774272322655,
+ "learning_rate": 0.00040810670643637954,
+ "loss": 2.0644960403442383,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125435540069688,
+ "grad_norm": 0.06032145023345947,
+ "learning_rate": 0.000407857329622967,
+ "loss": 2.050269842147827,
+ "step": 1449
+ },
+ {
+ "epoch": 20.139372822299652,
+ "grad_norm": 0.05611831694841385,
+ "learning_rate": 0.00040760786832789786,
+ "loss": 2.0559628009796143,
+ "step": 1450
+ },
+ {
+ "epoch": 20.153310104529616,
+ "grad_norm": 0.06046713516116142,
+ "learning_rate": 0.0004073583227521588,
+ "loss": 2.06439471244812,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16724738675958,
+ "grad_norm": 0.06147446483373642,
+ "learning_rate": 0.0004071086930968039,
+ "loss": 2.0606837272644043,
+ "step": 1452
+ },
+ {
+ "epoch": 20.181184668989548,
+ "grad_norm": 0.05967561900615692,
+ "learning_rate": 0.00040685897956295545,
+ "loss": 2.0494980812072754,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195121951219512,
+ "grad_norm": 0.05903508514165878,
+ "learning_rate": 0.0004066091823518031,
+ "loss": 2.059744358062744,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209059233449477,
+ "grad_norm": 0.060008060187101364,
+ "learning_rate": 0.00040635930166460385,
+ "loss": 2.0736231803894043,
+ "step": 1455
+ },
+ {
+ "epoch": 20.222996515679444,
+ "grad_norm": 0.057375747710466385,
+ "learning_rate": 0.00040610933770268226,
+ "loss": 2.062077045440674,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23693379790941,
+ "grad_norm": 0.05929991975426674,
+ "learning_rate": 0.00040585929066742964,
+ "loss": 2.059680938720703,
+ "step": 1457
+ },
+ {
+ "epoch": 20.250871080139373,
+ "grad_norm": 0.06615032255649567,
+ "learning_rate": 0.00040560916076030435,
+ "loss": 2.080033302307129,
+ "step": 1458
+ },
+ {
+ "epoch": 20.264808362369337,
+ "grad_norm": 0.06465113162994385,
+ "learning_rate": 0.00040535894818283154,
+ "loss": 2.0724852085113525,
+ "step": 1459
+ },
+ {
+ "epoch": 20.278745644599304,
+ "grad_norm": 0.0641520619392395,
+ "learning_rate": 0.0004051086531366031,
+ "loss": 2.0535552501678467,
+ "step": 1460
+ },
+ {
+ "epoch": 20.29268292682927,
+ "grad_norm": 0.060508403927087784,
+ "learning_rate": 0.000404858275823277,
+ "loss": 2.0627613067626953,
+ "step": 1461
+ },
+ {
+ "epoch": 20.306620209059233,
+ "grad_norm": 0.06028459966182709,
+ "learning_rate": 0.000404607816444578,
+ "loss": 2.062082290649414,
+ "step": 1462
+ },
+ {
+ "epoch": 20.320557491289197,
+ "grad_norm": 0.06797714531421661,
+ "learning_rate": 0.00040435727520229644,
+ "loss": 2.068223476409912,
+ "step": 1463
+ },
+ {
+ "epoch": 20.334494773519165,
+ "grad_norm": 0.07491812855005264,
+ "learning_rate": 0.0004041066522982891,
+ "loss": 2.0639474391937256,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34843205574913,
+ "grad_norm": 0.06413327902555466,
+ "learning_rate": 0.000403855947934478,
+ "loss": 2.0727763175964355,
+ "step": 1465
+ },
+ {
+ "epoch": 20.362369337979093,
+ "grad_norm": 0.05947510898113251,
+ "learning_rate": 0.00040360516231285155,
+ "loss": 2.0872607231140137,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37630662020906,
+ "grad_norm": 0.0680336281657219,
+ "learning_rate": 0.00040335429563546286,
+ "loss": 2.07262921333313,
+ "step": 1467
+ },
+ {
+ "epoch": 20.390243902439025,
+ "grad_norm": 0.06363389641046524,
+ "learning_rate": 0.0004031033481044308,
+ "loss": 2.071188449859619,
+ "step": 1468
+ },
+ {
+ "epoch": 20.40418118466899,
+ "grad_norm": 0.057794757187366486,
+ "learning_rate": 0.00040285231992193924,
+ "loss": 2.0776638984680176,
+ "step": 1469
+ },
+ {
+ "epoch": 20.418118466898953,
+ "grad_norm": 0.06159241497516632,
+ "learning_rate": 0.0004026012112902372,
+ "loss": 2.076610565185547,
+ "step": 1470
+ },
+ {
+ "epoch": 20.43205574912892,
+ "grad_norm": 0.05898696929216385,
+ "learning_rate": 0.0004023500224116381,
+ "loss": 2.0713918209075928,
+ "step": 1471
+ },
+ {
+ "epoch": 20.445993031358885,
+ "grad_norm": 0.059070803225040436,
+ "learning_rate": 0.00040209875348852037,
+ "loss": 2.073078155517578,
+ "step": 1472
+ },
+ {
+ "epoch": 20.45993031358885,
+ "grad_norm": 0.06064842641353607,
+ "learning_rate": 0.00040184740472332705,
+ "loss": 2.070858955383301,
+ "step": 1473
+ },
+ {
+ "epoch": 20.473867595818817,
+ "grad_norm": 0.060642652213573456,
+ "learning_rate": 0.000401595976318565,
+ "loss": 2.0703179836273193,
+ "step": 1474
+ },
+ {
+ "epoch": 20.48780487804878,
+ "grad_norm": 0.06281708180904388,
+ "learning_rate": 0.00040134446847680584,
+ "loss": 2.0891528129577637,
+ "step": 1475
+ },
+ {
+ "epoch": 20.501742160278745,
+ "grad_norm": 0.06964185833930969,
+ "learning_rate": 0.0004010928814006846,
+ "loss": 2.0769782066345215,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51567944250871,
+ "grad_norm": 0.0709647610783577,
+ "learning_rate": 0.0004008412152929007,
+ "loss": 2.087449550628662,
+ "step": 1477
+ },
+ {
+ "epoch": 20.529616724738677,
+ "grad_norm": 0.0604700967669487,
+ "learning_rate": 0.0004005894703562168,
+ "loss": 2.0697526931762695,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54355400696864,
+ "grad_norm": 0.066826231777668,
+ "learning_rate": 0.0004003376467934593,
+ "loss": 2.0674479007720947,
+ "step": 1479
+ },
+ {
+ "epoch": 20.557491289198605,
+ "grad_norm": 0.06124534085392952,
+ "learning_rate": 0.0004000857448075178,
+ "loss": 2.084949016571045,
+ "step": 1480
+ },
+ {
+ "epoch": 20.571428571428573,
+ "grad_norm": 0.0605972483754158,
+ "learning_rate": 0.0003998337646013455,
+ "loss": 2.0836410522460938,
+ "step": 1481
+ },
+ {
+ "epoch": 20.585365853658537,
+ "grad_norm": 0.05937602370977402,
+ "learning_rate": 0.00039958170637795806,
+ "loss": 2.085038185119629,
+ "step": 1482
+ },
+ {
+ "epoch": 20.5993031358885,
+ "grad_norm": 0.06045088917016983,
+ "learning_rate": 0.0003993295703404341,
+ "loss": 2.0811872482299805,
+ "step": 1483
+ },
+ {
+ "epoch": 20.613240418118465,
+ "grad_norm": 0.06080574169754982,
+ "learning_rate": 0.00039907735669191544,
+ "loss": 2.072998523712158,
+ "step": 1484
+ },
+ {
+ "epoch": 20.627177700348433,
+ "grad_norm": 0.06071743369102478,
+ "learning_rate": 0.00039882506563560573,
+ "loss": 2.092665672302246,
+ "step": 1485
+ },
+ {
+ "epoch": 20.641114982578397,
+ "grad_norm": 0.060432225465774536,
+ "learning_rate": 0.0003985726973747715,
+ "loss": 2.080765962600708,
+ "step": 1486
+ },
+ {
+ "epoch": 20.65505226480836,
+ "grad_norm": 0.05753706395626068,
+ "learning_rate": 0.00039832025211274113,
+ "loss": 2.0854883193969727,
+ "step": 1487
+ },
+ {
+ "epoch": 20.66898954703833,
+ "grad_norm": 0.05913816764950752,
+ "learning_rate": 0.00039806773005290544,
+ "loss": 2.0852391719818115,
+ "step": 1488
+ },
+ {
+ "epoch": 20.682926829268293,
+ "grad_norm": 0.057243719696998596,
+ "learning_rate": 0.0003978151313987168,
+ "loss": 2.069157600402832,
+ "step": 1489
+ },
+ {
+ "epoch": 20.696864111498257,
+ "grad_norm": 0.058420926332473755,
+ "learning_rate": 0.00039756245635368933,
+ "loss": 2.084345579147339,
+ "step": 1490
+ },
+ {
+ "epoch": 20.71080139372822,
+ "grad_norm": 0.057442132383584976,
+ "learning_rate": 0.00039730970512139876,
+ "loss": 2.091980218887329,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72473867595819,
+ "grad_norm": 0.05517714098095894,
+ "learning_rate": 0.0003970568779054822,
+ "loss": 2.078554153442383,
+ "step": 1492
+ },
+ {
+ "epoch": 20.738675958188153,
+ "grad_norm": 0.055716823786497116,
+ "learning_rate": 0.000396803974909638,
+ "loss": 2.094151735305786,
+ "step": 1493
+ },
+ {
+ "epoch": 20.752613240418118,
+ "grad_norm": 0.056730274111032486,
+ "learning_rate": 0.0003965509963376255,
+ "loss": 2.068563461303711,
+ "step": 1494
+ },
+ {
+ "epoch": 20.766550522648085,
+ "grad_norm": 0.05755753442645073,
+ "learning_rate": 0.000396297942393265,
+ "loss": 2.088921070098877,
+ "step": 1495
+ },
+ {
+ "epoch": 20.78048780487805,
+ "grad_norm": 0.05533437803387642,
+ "learning_rate": 0.0003960448132804375,
+ "loss": 2.0941689014434814,
+ "step": 1496
+ },
+ {
+ "epoch": 20.794425087108014,
+ "grad_norm": 0.06088414788246155,
+ "learning_rate": 0.0003957916092030845,
+ "loss": 2.0830764770507812,
+ "step": 1497
+ },
+ {
+ "epoch": 20.808362369337978,
+ "grad_norm": 0.05863271281123161,
+ "learning_rate": 0.00039553833036520803,
+ "loss": 2.090672016143799,
+ "step": 1498
+ },
+ {
+ "epoch": 20.822299651567945,
+ "grad_norm": 0.05960002914071083,
+ "learning_rate": 0.0003952849769708702,
+ "loss": 2.0864553451538086,
+ "step": 1499
+ },
+ {
+ "epoch": 20.83623693379791,
+ "grad_norm": 0.05506768077611923,
+ "learning_rate": 0.0003950315492241932,
+ "loss": 2.094161033630371,
+ "step": 1500
+ },
+ {
+ "epoch": 20.850174216027874,
+ "grad_norm": 0.05862478166818619,
+ "learning_rate": 0.0003947780473293593,
+ "loss": 2.115245819091797,
+ "step": 1501
+ },
+ {
+ "epoch": 20.86411149825784,
+ "grad_norm": 0.05872654542326927,
+ "learning_rate": 0.00039452447149061054,
+ "loss": 2.0812911987304688,
+ "step": 1502
+ },
+ {
+ "epoch": 20.878048780487806,
+ "grad_norm": 0.05998777225613594,
+ "learning_rate": 0.0003942708219122481,
+ "loss": 2.095242977142334,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89198606271777,
+ "grad_norm": 0.056095417588949203,
+ "learning_rate": 0.000394017098798633,
+ "loss": 2.092863082885742,
+ "step": 1504
+ },
+ {
+ "epoch": 20.905923344947734,
+ "grad_norm": 0.05556971952319145,
+ "learning_rate": 0.0003937633023541854,
+ "loss": 2.097186803817749,
+ "step": 1505
+ },
+ {
+ "epoch": 20.9198606271777,
+ "grad_norm": 0.055835824459791183,
+ "learning_rate": 0.0003935094327833845,
+ "loss": 2.074395179748535,
+ "step": 1506
+ },
+ {
+ "epoch": 20.933797909407666,
+ "grad_norm": 0.05587809532880783,
+ "learning_rate": 0.0003932554902907683,
+ "loss": 2.079871416091919,
+ "step": 1507
+ },
+ {
+ "epoch": 20.94773519163763,
+ "grad_norm": 0.05581265687942505,
+ "learning_rate": 0.0003930014750809338,
+ "loss": 2.097808837890625,
+ "step": 1508
+ },
+ {
+ "epoch": 20.961672473867594,
+ "grad_norm": 0.056034673005342484,
+ "learning_rate": 0.0003927473873585365,
+ "loss": 2.1134562492370605,
+ "step": 1509
+ },
+ {
+ "epoch": 20.975609756097562,
+ "grad_norm": 0.05605486407876015,
+ "learning_rate": 0.0003924932273282903,
+ "loss": 2.085361957550049,
+ "step": 1510
+ },
+ {
+ "epoch": 20.989547038327526,
+ "grad_norm": 0.056133050471544266,
+ "learning_rate": 0.00039223899519496723,
+ "loss": 2.0866618156433105,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.045700959861278534,
+ "learning_rate": 0.00039198469116339757,
+ "loss": 1.5582417249679565,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 0.6279418468475342,
+ "eval_runtime": 36.1632,
+ "eval_samples_per_second": 67.527,
+ "eval_steps_per_second": 0.553,
+ "step": 1512
+ },
+ {
+ "epoch": 21.013937282229964,
+ "grad_norm": 0.05471052974462509,
+ "learning_rate": 0.0003917303154384694,
+ "loss": 2.033940315246582,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027874564459932,
+ "grad_norm": 0.06705708801746368,
+ "learning_rate": 0.00039147586822512885,
+ "loss": 2.0360937118530273,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041811846689896,
+ "grad_norm": 0.06307924538850784,
+ "learning_rate": 0.0003912213497283793,
+ "loss": 2.0500328540802,
+ "step": 1515
+ },
+ {
+ "epoch": 21.05574912891986,
+ "grad_norm": 0.06228886917233467,
+ "learning_rate": 0.0003909667601532819,
+ "loss": 2.0308260917663574,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069686411149824,
+ "grad_norm": 0.0606699101626873,
+ "learning_rate": 0.00039071209970495445,
+ "loss": 2.0328145027160645,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083623693379792,
+ "grad_norm": 0.060405075550079346,
+ "learning_rate": 0.00039045736858857273,
+ "loss": 2.0279717445373535,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097560975609756,
+ "grad_norm": 0.0611112080514431,
+ "learning_rate": 0.0003902025670093687,
+ "loss": 2.0422918796539307,
+ "step": 1519
+ },
+ {
+ "epoch": 21.11149825783972,
+ "grad_norm": 0.05837974697351456,
+ "learning_rate": 0.00038994769517263156,
+ "loss": 2.048844337463379,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125435540069688,
+ "grad_norm": 0.06053513288497925,
+ "learning_rate": 0.0003896927532837069,
+ "loss": 2.0358529090881348,
+ "step": 1521
+ },
+ {
+ "epoch": 21.139372822299652,
+ "grad_norm": 0.06003211438655853,
+ "learning_rate": 0.0003894377415479967,
+ "loss": 2.042120933532715,
+ "step": 1522
+ },
+ {
+ "epoch": 21.153310104529616,
+ "grad_norm": 0.060802191495895386,
+ "learning_rate": 0.00038918266017095936,
+ "loss": 2.046935558319092,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16724738675958,
+ "grad_norm": 0.06367085129022598,
+ "learning_rate": 0.0003889275093581096,
+ "loss": 2.049290180206299,
+ "step": 1524
+ },
+ {
+ "epoch": 21.181184668989548,
+ "grad_norm": 0.05851449444890022,
+ "learning_rate": 0.00038867228931501737,
+ "loss": 2.052337169647217,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195121951219512,
+ "grad_norm": 0.05873304605484009,
+ "learning_rate": 0.0003884170002473091,
+ "loss": 2.0443310737609863,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209059233449477,
+ "grad_norm": 0.062345489859580994,
+ "learning_rate": 0.0003881616423606666,
+ "loss": 2.0309629440307617,
+ "step": 1527
+ },
+ {
+ "epoch": 21.222996515679444,
+ "grad_norm": 0.06157859042286873,
+ "learning_rate": 0.00038790621586082697,
+ "loss": 2.040987491607666,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23693379790941,
+ "grad_norm": 0.06326454132795334,
+ "learning_rate": 0.0003876507209535829,
+ "loss": 2.0339348316192627,
+ "step": 1529
+ },
+ {
+ "epoch": 21.250871080139373,
+ "grad_norm": 0.05967864394187927,
+ "learning_rate": 0.00038739515784478186,
+ "loss": 2.0340347290039062,
+ "step": 1530
+ },
+ {
+ "epoch": 21.264808362369337,
+ "grad_norm": 0.06237480416893959,
+ "learning_rate": 0.00038713952674032654,
+ "loss": 2.0541834831237793,
+ "step": 1531
+ },
+ {
+ "epoch": 21.278745644599304,
+ "grad_norm": 0.06269778311252594,
+ "learning_rate": 0.0003868838278461743,
+ "loss": 2.0332889556884766,
+ "step": 1532
+ },
+ {
+ "epoch": 21.29268292682927,
+ "grad_norm": 0.058931149542331696,
+ "learning_rate": 0.0003866280613683371,
+ "loss": 2.046989917755127,
+ "step": 1533
+ },
+ {
+ "epoch": 21.306620209059233,
+ "grad_norm": 0.05884654074907303,
+ "learning_rate": 0.00038637222751288126,
+ "loss": 2.0413711071014404,
+ "step": 1534
+ },
+ {
+ "epoch": 21.320557491289197,
+ "grad_norm": 0.06431130319833755,
+ "learning_rate": 0.0003861163264859277,
+ "loss": 2.043229103088379,
+ "step": 1535
+ },
+ {
+ "epoch": 21.334494773519165,
+ "grad_norm": 0.061834171414375305,
+ "learning_rate": 0.0003858603584936511,
+ "loss": 2.0472874641418457,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34843205574913,
+ "grad_norm": 0.058680370450019836,
+ "learning_rate": 0.0003856043237422803,
+ "loss": 2.058084487915039,
+ "step": 1537
+ },
+ {
+ "epoch": 21.362369337979093,
+ "grad_norm": 0.0592305064201355,
+ "learning_rate": 0.0003853482224380978,
+ "loss": 2.0515503883361816,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37630662020906,
+ "grad_norm": 0.05994146317243576,
+ "learning_rate": 0.00038509205478744,
+ "loss": 2.0377187728881836,
+ "step": 1539
+ },
+ {
+ "epoch": 21.390243902439025,
+ "grad_norm": 0.06389214843511581,
+ "learning_rate": 0.0003848358209966963,
+ "loss": 2.0533361434936523,
+ "step": 1540
+ },
+ {
+ "epoch": 21.40418118466899,
+ "grad_norm": 0.06090407446026802,
+ "learning_rate": 0.0003845795212723099,
+ "loss": 2.0553441047668457,
+ "step": 1541
+ },
+ {
+ "epoch": 21.418118466898953,
+ "grad_norm": 0.06273195147514343,
+ "learning_rate": 0.00038432315582077664,
+ "loss": 2.0590620040893555,
+ "step": 1542
+ },
+ {
+ "epoch": 21.43205574912892,
+ "grad_norm": 0.06525216996669769,
+ "learning_rate": 0.0003840667248486456,
+ "loss": 2.0517024993896484,
+ "step": 1543
+ },
+ {
+ "epoch": 21.445993031358885,
+ "grad_norm": 0.06123936176300049,
+ "learning_rate": 0.0003838102285625186,
+ "loss": 2.054276943206787,
+ "step": 1544
+ },
+ {
+ "epoch": 21.45993031358885,
+ "grad_norm": 0.06384961307048798,
+ "learning_rate": 0.00038355366716905006,
+ "loss": 2.058122396469116,
+ "step": 1545
+ },
+ {
+ "epoch": 21.473867595818817,
+ "grad_norm": 0.06391091644763947,
+ "learning_rate": 0.0003832970408749467,
+ "loss": 2.061744213104248,
+ "step": 1546
+ },
+ {
+ "epoch": 21.48780487804878,
+ "grad_norm": 0.06393741071224213,
+ "learning_rate": 0.00038304034988696816,
+ "loss": 2.0698375701904297,
+ "step": 1547
+ },
+ {
+ "epoch": 21.501742160278745,
+ "grad_norm": 0.06098850816488266,
+ "learning_rate": 0.00038278359441192516,
+ "loss": 2.0527985095977783,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51567944250871,
+ "grad_norm": 0.059852417558431625,
+ "learning_rate": 0.00038252677465668136,
+ "loss": 2.0557432174682617,
+ "step": 1549
+ },
+ {
+ "epoch": 21.529616724738677,
+ "grad_norm": 0.063257597386837,
+ "learning_rate": 0.00038226989082815156,
+ "loss": 2.0541868209838867,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54355400696864,
+ "grad_norm": 0.06203039735555649,
+ "learning_rate": 0.00038201294313330245,
+ "loss": 2.0554230213165283,
+ "step": 1551
+ },
+ {
+ "epoch": 21.557491289198605,
+ "grad_norm": 0.06832246482372284,
+ "learning_rate": 0.00038175593177915227,
+ "loss": 2.0623044967651367,
+ "step": 1552
+ },
+ {
+ "epoch": 21.571428571428573,
+ "grad_norm": 0.0681714415550232,
+ "learning_rate": 0.0003814988569727704,
+ "loss": 2.0611777305603027,
+ "step": 1553
+ },
+ {
+ "epoch": 21.585365853658537,
+ "grad_norm": 0.06245206668972969,
+ "learning_rate": 0.0003812417189212773,
+ "loss": 2.0653200149536133,
+ "step": 1554
+ },
+ {
+ "epoch": 21.5993031358885,
+ "grad_norm": 0.06456883996725082,
+ "learning_rate": 0.00038098451783184447,
+ "loss": 2.0564777851104736,
+ "step": 1555
+ },
+ {
+ "epoch": 21.613240418118465,
+ "grad_norm": 0.06580620259046555,
+ "learning_rate": 0.00038072725391169416,
+ "loss": 2.0669004917144775,
+ "step": 1556
+ },
+ {
+ "epoch": 21.627177700348433,
+ "grad_norm": 0.0615418441593647,
+ "learning_rate": 0.0003804699273680994,
+ "loss": 2.062901258468628,
+ "step": 1557
+ },
+ {
+ "epoch": 21.641114982578397,
+ "grad_norm": 0.0597493015229702,
+ "learning_rate": 0.0003802125384083834,
+ "loss": 2.051572799682617,
+ "step": 1558
+ },
+ {
+ "epoch": 21.65505226480836,
+ "grad_norm": 0.05919422581791878,
+ "learning_rate": 0.0003799550872399197,
+ "loss": 2.0755348205566406,
+ "step": 1559
+ },
+ {
+ "epoch": 21.66898954703833,
+ "grad_norm": 0.0618102103471756,
+ "learning_rate": 0.0003796975740701323,
+ "loss": 2.0373353958129883,
+ "step": 1560
+ },
+ {
+ "epoch": 21.682926829268293,
+ "grad_norm": 0.060938529670238495,
+ "learning_rate": 0.0003794399991064948,
+ "loss": 2.046900749206543,
+ "step": 1561
+ },
+ {
+ "epoch": 21.696864111498257,
+ "grad_norm": 0.059858448803424835,
+ "learning_rate": 0.00037918236255653074,
+ "loss": 2.0637502670288086,
+ "step": 1562
+ },
+ {
+ "epoch": 21.71080139372822,
+ "grad_norm": 0.061770256608724594,
+ "learning_rate": 0.00037892466462781306,
+ "loss": 2.0593981742858887,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72473867595819,
+ "grad_norm": 0.06062103807926178,
+ "learning_rate": 0.00037866690552796446,
+ "loss": 2.0643060207366943,
+ "step": 1564
+ },
+ {
+ "epoch": 21.738675958188153,
+ "grad_norm": 0.05910053849220276,
+ "learning_rate": 0.00037840908546465696,
+ "loss": 2.06599497795105,
+ "step": 1565
+ },
+ {
+ "epoch": 21.752613240418118,
+ "grad_norm": 0.057800937443971634,
+ "learning_rate": 0.0003781512046456111,
+ "loss": 2.057941198348999,
+ "step": 1566
+ },
+ {
+ "epoch": 21.766550522648085,
+ "grad_norm": 0.05939284712076187,
+ "learning_rate": 0.0003778932632785972,
+ "loss": 2.057325601577759,
+ "step": 1567
+ },
+ {
+ "epoch": 21.78048780487805,
+ "grad_norm": 0.06094905734062195,
+ "learning_rate": 0.00037763526157143376,
+ "loss": 2.058422803878784,
+ "step": 1568
+ },
+ {
+ "epoch": 21.794425087108014,
+ "grad_norm": 0.060869570821523666,
+ "learning_rate": 0.00037737719973198825,
+ "loss": 2.0537140369415283,
+ "step": 1569
+ },
+ {
+ "epoch": 21.808362369337978,
+ "grad_norm": 0.05886754021048546,
+ "learning_rate": 0.0003771190779681762,
+ "loss": 2.077362537384033,
+ "step": 1570
+ },
+ {
+ "epoch": 21.822299651567945,
+ "grad_norm": 0.061772339046001434,
+ "learning_rate": 0.0003768608964879619,
+ "loss": 2.067615032196045,
+ "step": 1571
+ },
+ {
+ "epoch": 21.83623693379791,
+ "grad_norm": 0.06018555909395218,
+ "learning_rate": 0.00037660265549935724,
+ "loss": 2.0696468353271484,
+ "step": 1572
+ },
+ {
+ "epoch": 21.850174216027874,
+ "grad_norm": 0.058483004570007324,
+ "learning_rate": 0.00037634435521042257,
+ "loss": 2.085695505142212,
+ "step": 1573
+ },
+ {
+ "epoch": 21.86411149825784,
+ "grad_norm": 0.06118083372712135,
+ "learning_rate": 0.0003760859958292656,
+ "loss": 2.0818231105804443,
+ "step": 1574
+ },
+ {
+ "epoch": 21.878048780487806,
+ "grad_norm": 0.057427361607551575,
+ "learning_rate": 0.000375827577564042,
+ "loss": 2.0525319576263428,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89198606271777,
+ "grad_norm": 0.06218957528471947,
+ "learning_rate": 0.0003755691006229545,
+ "loss": 2.0691938400268555,
+ "step": 1576
+ },
+ {
+ "epoch": 21.905923344947734,
+ "grad_norm": 0.05727244168519974,
+ "learning_rate": 0.0003753105652142534,
+ "loss": 2.0820717811584473,
+ "step": 1577
+ },
+ {
+ "epoch": 21.9198606271777,
+ "grad_norm": 0.05988473817706108,
+ "learning_rate": 0.000375051971546236,
+ "loss": 2.08701753616333,
+ "step": 1578
+ },
+ {
+ "epoch": 21.933797909407666,
+ "grad_norm": 0.05977068468928337,
+ "learning_rate": 0.0003747933198272465,
+ "loss": 2.0772976875305176,
+ "step": 1579
+ },
+ {
+ "epoch": 21.94773519163763,
+ "grad_norm": 0.05766184255480766,
+ "learning_rate": 0.00037453461026567604,
+ "loss": 2.0779075622558594,
+ "step": 1580
+ },
+ {
+ "epoch": 21.961672473867594,
+ "grad_norm": 0.06194579601287842,
+ "learning_rate": 0.00037427584306996196,
+ "loss": 2.066725254058838,
+ "step": 1581
+ },
+ {
+ "epoch": 21.975609756097562,
+ "grad_norm": 0.06117486208677292,
+ "learning_rate": 0.0003740170184485888,
+ "loss": 2.063469409942627,
+ "step": 1582
+ },
+ {
+ "epoch": 21.989547038327526,
+ "grad_norm": 0.05828284099698067,
+ "learning_rate": 0.0003737581366100864,
+ "loss": 2.0690245628356934,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.04717395827174187,
+ "learning_rate": 0.0003734991977630315,
+ "loss": 1.5481253862380981,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 0.6287422180175781,
+ "eval_runtime": 36.8966,
+ "eval_samples_per_second": 66.185,
+ "eval_steps_per_second": 0.542,
+ "step": 1584
+ },
+ {
+ "epoch": 22.013937282229964,
+ "grad_norm": 0.05935833230614662,
+ "learning_rate": 0.0003732402021160463,
+ "loss": 2.0213916301727295,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027874564459932,
+ "grad_norm": 0.0647081509232521,
+ "learning_rate": 0.00037298114987779885,
+ "loss": 2.021193504333496,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041811846689896,
+ "grad_norm": 0.060830891132354736,
+ "learning_rate": 0.000372722041257003,
+ "loss": 2.014934539794922,
+ "step": 1587
+ },
+ {
+ "epoch": 22.05574912891986,
+ "grad_norm": 0.0575600229203701,
+ "learning_rate": 0.00037246287646241783,
+ "loss": 2.0201141834259033,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069686411149824,
+ "grad_norm": 0.05999648571014404,
+ "learning_rate": 0.0003722036557028478,
+ "loss": 2.01477313041687,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083623693379792,
+ "grad_norm": 0.06243257597088814,
+ "learning_rate": 0.0003719443791871422,
+ "loss": 2.0069234371185303,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097560975609756,
+ "grad_norm": 0.061873242259025574,
+ "learning_rate": 0.0003716850471241958,
+ "loss": 2.0218544006347656,
+ "step": 1591
+ },
+ {
+ "epoch": 22.11149825783972,
+ "grad_norm": 0.0562879703938961,
+ "learning_rate": 0.0003714256597229474,
+ "loss": 2.027651786804199,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125435540069688,
+ "grad_norm": 0.06129061430692673,
+ "learning_rate": 0.0003711662171923809,
+ "loss": 2.02847957611084,
+ "step": 1593
+ },
+ {
+ "epoch": 22.139372822299652,
+ "grad_norm": 0.06575217843055725,
+ "learning_rate": 0.0003709067197415244,
+ "loss": 2.0157370567321777,
+ "step": 1594
+ },
+ {
+ "epoch": 22.153310104529616,
+ "grad_norm": 0.06006300821900368,
+ "learning_rate": 0.00037064716757945036,
+ "loss": 2.0212819576263428,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16724738675958,
+ "grad_norm": 0.05905022844672203,
+ "learning_rate": 0.0003703875609152753,
+ "loss": 2.019151449203491,
+ "step": 1596
+ },
+ {
+ "epoch": 22.181184668989548,
+ "grad_norm": 0.05942187085747719,
+ "learning_rate": 0.0003701278999581595,
+ "loss": 2.0100960731506348,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195121951219512,
+ "grad_norm": 0.06255407631397247,
+ "learning_rate": 0.0003698681849173073,
+ "loss": 2.0253348350524902,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209059233449477,
+ "grad_norm": 0.06482044607400894,
+ "learning_rate": 0.0003696084160019662,
+ "loss": 2.0148420333862305,
+ "step": 1599
+ },
+ {
+ "epoch": 22.222996515679444,
+ "grad_norm": 0.0601821169257164,
+ "learning_rate": 0.0003693485934214274,
+ "loss": 2.023470640182495,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23693379790941,
+ "grad_norm": 0.06029169633984566,
+ "learning_rate": 0.0003690887173850253,
+ "loss": 2.009469985961914,
+ "step": 1601
+ },
+ {
+ "epoch": 22.250871080139373,
+ "grad_norm": 0.059910114854574203,
+ "learning_rate": 0.0003688287881021374,
+ "loss": 2.035770893096924,
+ "step": 1602
+ },
+ {
+ "epoch": 22.264808362369337,
+ "grad_norm": 0.06215308979153633,
+ "learning_rate": 0.00036856880578218376,
+ "loss": 2.01731538772583,
+ "step": 1603
+ },
+ {
+ "epoch": 22.278745644599304,
+ "grad_norm": 0.06145225092768669,
+ "learning_rate": 0.00036830877063462786,
+ "loss": 2.026510715484619,
+ "step": 1604
+ },
+ {
+ "epoch": 22.29268292682927,
+ "grad_norm": 0.05880272388458252,
+ "learning_rate": 0.0003680486828689749,
+ "loss": 2.0214052200317383,
+ "step": 1605
+ },
+ {
+ "epoch": 22.306620209059233,
+ "grad_norm": 0.06154364347457886,
+ "learning_rate": 0.00036778854269477315,
+ "loss": 2.038039207458496,
+ "step": 1606
+ },
+ {
+ "epoch": 22.320557491289197,
+ "grad_norm": 0.06352122128009796,
+ "learning_rate": 0.0003675283503216127,
+ "loss": 2.0086398124694824,
+ "step": 1607
+ },
+ {
+ "epoch": 22.334494773519165,
+ "grad_norm": 0.06252473592758179,
+ "learning_rate": 0.000367268105959126,
+ "loss": 2.0344018936157227,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34843205574913,
+ "grad_norm": 0.05990692600607872,
+ "learning_rate": 0.00036700780981698705,
+ "loss": 2.030116558074951,
+ "step": 1609
+ },
+ {
+ "epoch": 22.362369337979093,
+ "grad_norm": 0.06241406500339508,
+ "learning_rate": 0.0003667474621049119,
+ "loss": 2.02555513381958,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37630662020906,
+ "grad_norm": 0.06356526166200638,
+ "learning_rate": 0.00036648706303265795,
+ "loss": 2.034946918487549,
+ "step": 1611
+ },
+ {
+ "epoch": 22.390243902439025,
+ "grad_norm": 0.05866849794983864,
+ "learning_rate": 0.000366226612810024,
+ "loss": 2.0180652141571045,
+ "step": 1612
+ },
+ {
+ "epoch": 22.40418118466899,
+ "grad_norm": 0.06021985039114952,
+ "learning_rate": 0.00036596611164685025,
+ "loss": 2.028763771057129,
+ "step": 1613
+ },
+ {
+ "epoch": 22.418118466898953,
+ "grad_norm": 0.0626717135310173,
+ "learning_rate": 0.0003657055597530175,
+ "loss": 2.021925926208496,
+ "step": 1614
+ },
+ {
+ "epoch": 22.43205574912892,
+ "grad_norm": 0.05952958017587662,
+ "learning_rate": 0.00036544495733844797,
+ "loss": 2.029926300048828,
+ "step": 1615
+ },
+ {
+ "epoch": 22.445993031358885,
+ "grad_norm": 0.06139490753412247,
+ "learning_rate": 0.000365184304613104,
+ "loss": 2.0357437133789062,
+ "step": 1616
+ },
+ {
+ "epoch": 22.45993031358885,
+ "grad_norm": 0.06750302016735077,
+ "learning_rate": 0.0003649236017869892,
+ "loss": 2.033015251159668,
+ "step": 1617
+ },
+ {
+ "epoch": 22.473867595818817,
+ "grad_norm": 0.06402213126420975,
+ "learning_rate": 0.00036466284907014685,
+ "loss": 2.0288286209106445,
+ "step": 1618
+ },
+ {
+ "epoch": 22.48780487804878,
+ "grad_norm": 0.06656284630298615,
+ "learning_rate": 0.0003644020466726608,
+ "loss": 2.035670042037964,
+ "step": 1619
+ },
+ {
+ "epoch": 22.501742160278745,
+ "grad_norm": 0.06058082729578018,
+ "learning_rate": 0.00036414119480465473,
+ "loss": 2.0248050689697266,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51567944250871,
+ "grad_norm": 0.0639055147767067,
+ "learning_rate": 0.0003638802936762925,
+ "loss": 2.0347347259521484,
+ "step": 1621
+ },
+ {
+ "epoch": 22.529616724738677,
+ "grad_norm": 0.06509086489677429,
+ "learning_rate": 0.0003636193434977771,
+ "loss": 2.0287723541259766,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54355400696864,
+ "grad_norm": 0.06115980073809624,
+ "learning_rate": 0.0003633583444793516,
+ "loss": 2.0428926944732666,
+ "step": 1623
+ },
+ {
+ "epoch": 22.557491289198605,
+ "grad_norm": 0.06231401860713959,
+ "learning_rate": 0.00036309729683129814,
+ "loss": 2.0409903526306152,
+ "step": 1624
+ },
+ {
+ "epoch": 22.571428571428573,
+ "grad_norm": 0.06252925843000412,
+ "learning_rate": 0.00036283620076393814,
+ "loss": 2.0263853073120117,
+ "step": 1625
+ },
+ {
+ "epoch": 22.585365853658537,
+ "grad_norm": 0.05840536579489708,
+ "learning_rate": 0.000362575056487632,
+ "loss": 2.0359339714050293,
+ "step": 1626
+ },
+ {
+ "epoch": 22.5993031358885,
+ "grad_norm": 0.06289584934711456,
+ "learning_rate": 0.00036231386421277877,
+ "loss": 2.041419267654419,
+ "step": 1627
+ },
+ {
+ "epoch": 22.613240418118465,
+ "grad_norm": 0.059172775596380234,
+ "learning_rate": 0.0003620526241498167,
+ "loss": 2.0285377502441406,
+ "step": 1628
+ },
+ {
+ "epoch": 22.627177700348433,
+ "grad_norm": 0.05929497256875038,
+ "learning_rate": 0.0003617913365092218,
+ "loss": 2.054593086242676,
+ "step": 1629
+ },
+ {
+ "epoch": 22.641114982578397,
+ "grad_norm": 0.05966512858867645,
+ "learning_rate": 0.0003615300015015091,
+ "loss": 2.0354065895080566,
+ "step": 1630
+ },
+ {
+ "epoch": 22.65505226480836,
+ "grad_norm": 0.060928668826818466,
+ "learning_rate": 0.0003612686193372312,
+ "loss": 2.0524067878723145,
+ "step": 1631
+ },
+ {
+ "epoch": 22.66898954703833,
+ "grad_norm": 0.06704723089933395,
+ "learning_rate": 0.00036100719022697924,
+ "loss": 2.0277299880981445,
+ "step": 1632
+ },
+ {
+ "epoch": 22.682926829268293,
+ "grad_norm": 0.0654405876994133,
+ "learning_rate": 0.0003607457143813819,
+ "loss": 2.0558719635009766,
+ "step": 1633
+ },
+ {
+ "epoch": 22.696864111498257,
+ "grad_norm": 0.06097044795751572,
+ "learning_rate": 0.00036048419201110553,
+ "loss": 2.064798593521118,
+ "step": 1634
+ },
+ {
+ "epoch": 22.71080139372822,
+ "grad_norm": 0.06433983147144318,
+ "learning_rate": 0.00036022262332685383,
+ "loss": 2.0563478469848633,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72473867595819,
+ "grad_norm": 0.0608518086373806,
+ "learning_rate": 0.0003599610085393681,
+ "loss": 2.034682273864746,
+ "step": 1636
+ },
+ {
+ "epoch": 22.738675958188153,
+ "grad_norm": 0.06357148289680481,
+ "learning_rate": 0.0003596993478594267,
+ "loss": 2.030651569366455,
+ "step": 1637
+ },
+ {
+ "epoch": 22.752613240418118,
+ "grad_norm": 0.05953045189380646,
+ "learning_rate": 0.0003594376414978447,
+ "loss": 2.046708345413208,
+ "step": 1638
+ },
+ {
+ "epoch": 22.766550522648085,
+ "grad_norm": 0.06323279440402985,
+ "learning_rate": 0.0003591758896654745,
+ "loss": 2.040714740753174,
+ "step": 1639
+ },
+ {
+ "epoch": 22.78048780487805,
+ "grad_norm": 0.05863328278064728,
+ "learning_rate": 0.0003589140925732045,
+ "loss": 2.0645852088928223,
+ "step": 1640
+ },
+ {
+ "epoch": 22.794425087108014,
+ "grad_norm": 0.058750979602336884,
+ "learning_rate": 0.0003586522504319602,
+ "loss": 2.0421950817108154,
+ "step": 1641
+ },
+ {
+ "epoch": 22.808362369337978,
+ "grad_norm": 0.06100532412528992,
+ "learning_rate": 0.0003583903634527029,
+ "loss": 2.037891387939453,
+ "step": 1642
+ },
+ {
+ "epoch": 22.822299651567945,
+ "grad_norm": 0.058944981545209885,
+ "learning_rate": 0.0003581284318464302,
+ "loss": 2.029283046722412,
+ "step": 1643
+ },
+ {
+ "epoch": 22.83623693379791,
+ "grad_norm": 0.060633257031440735,
+ "learning_rate": 0.00035786645582417564,
+ "loss": 2.058162212371826,
+ "step": 1644
+ },
+ {
+ "epoch": 22.850174216027874,
+ "grad_norm": 0.059548065066337585,
+ "learning_rate": 0.00035760443559700863,
+ "loss": 2.0538077354431152,
+ "step": 1645
+ },
+ {
+ "epoch": 22.86411149825784,
+ "grad_norm": 0.06102653965353966,
+ "learning_rate": 0.00035734237137603417,
+ "loss": 2.052565097808838,
+ "step": 1646
+ },
+ {
+ "epoch": 22.878048780487806,
+ "grad_norm": 0.05913171172142029,
+ "learning_rate": 0.0003570802633723927,
+ "loss": 2.0596346855163574,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89198606271777,
+ "grad_norm": 0.061698317527770996,
+ "learning_rate": 0.0003568181117972597,
+ "loss": 2.0622029304504395,
+ "step": 1648
+ },
+ {
+ "epoch": 22.905923344947734,
+ "grad_norm": 0.059588681906461716,
+ "learning_rate": 0.00035655591686184626,
+ "loss": 2.04315447807312,
+ "step": 1649
+ },
+ {
+ "epoch": 22.9198606271777,
+ "grad_norm": 0.06275669485330582,
+ "learning_rate": 0.0003562936787773979,
+ "loss": 2.0449585914611816,
+ "step": 1650
+ },
+ {
+ "epoch": 22.933797909407666,
+ "grad_norm": 0.06165294349193573,
+ "learning_rate": 0.000356031397755195,
+ "loss": 2.0373802185058594,
+ "step": 1651
+ },
+ {
+ "epoch": 22.94773519163763,
+ "grad_norm": 0.0604374073445797,
+ "learning_rate": 0.00035576907400655303,
+ "loss": 2.061960220336914,
+ "step": 1652
+ },
+ {
+ "epoch": 22.961672473867594,
+ "grad_norm": 0.05968572944402695,
+ "learning_rate": 0.00035550670774282106,
+ "loss": 2.051542282104492,
+ "step": 1653
+ },
+ {
+ "epoch": 22.975609756097562,
+ "grad_norm": 0.06063802167773247,
+ "learning_rate": 0.0003552442991753831,
+ "loss": 2.045436143875122,
+ "step": 1654
+ },
+ {
+ "epoch": 22.989547038327526,
+ "grad_norm": 0.060019318014383316,
+ "learning_rate": 0.00035498184851565697,
+ "loss": 2.0558581352233887,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.049940288066864014,
+ "learning_rate": 0.0003547193559750944,
+ "loss": 1.5244159698486328,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 0.6296067833900452,
+ "eval_runtime": 35.7678,
+ "eval_samples_per_second": 68.274,
+ "eval_steps_per_second": 0.559,
+ "step": 1656
+ },
+ {
+ "epoch": 23.013937282229964,
+ "grad_norm": 0.058643098920583725,
+ "learning_rate": 0.00035445682176518087,
+ "loss": 1.996954321861267,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027874564459932,
+ "grad_norm": 0.07890982180833817,
+ "learning_rate": 0.00035419424609743546,
+ "loss": 2.003385543823242,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041811846689896,
+ "grad_norm": 0.06572650372982025,
+ "learning_rate": 0.00035393162918341065,
+ "loss": 1.9858441352844238,
+ "step": 1659
+ },
+ {
+ "epoch": 23.05574912891986,
+ "grad_norm": 0.06063111498951912,
+ "learning_rate": 0.00035366897123469213,
+ "loss": 1.9996259212493896,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069686411149824,
+ "grad_norm": 0.06614259630441666,
+ "learning_rate": 0.0003534062724628986,
+ "loss": 2.013913869857788,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083623693379792,
+ "grad_norm": 0.06714142113924026,
+ "learning_rate": 0.00035314353307968195,
+ "loss": 1.9934425354003906,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097560975609756,
+ "grad_norm": 0.06256651133298874,
+ "learning_rate": 0.00035288075329672634,
+ "loss": 2.0107738971710205,
+ "step": 1663
+ },
+ {
+ "epoch": 23.11149825783972,
+ "grad_norm": 0.06392858177423477,
+ "learning_rate": 0.0003526179333257487,
+ "loss": 1.9977614879608154,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125435540069688,
+ "grad_norm": 0.06550068408250809,
+ "learning_rate": 0.0003523550733784984,
+ "loss": 1.9837822914123535,
+ "step": 1665
+ },
+ {
+ "epoch": 23.139372822299652,
+ "grad_norm": 0.06895361095666885,
+ "learning_rate": 0.00035209217366675706,
+ "loss": 1.9999781847000122,
+ "step": 1666
+ },
+ {
+ "epoch": 23.153310104529616,
+ "grad_norm": 0.06363921612501144,
+ "learning_rate": 0.000351829234402338,
+ "loss": 1.985809087753296,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16724738675958,
+ "grad_norm": 0.06028164550662041,
+ "learning_rate": 0.0003515662557970867,
+ "loss": 2.0019848346710205,
+ "step": 1668
+ },
+ {
+ "epoch": 23.181184668989548,
+ "grad_norm": 0.06500236690044403,
+ "learning_rate": 0.0003513032380628804,
+ "loss": 2.0089876651763916,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195121951219512,
+ "grad_norm": 0.05989453196525574,
+ "learning_rate": 0.0003510401814116277,
+ "loss": 1.9814873933792114,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209059233449477,
+ "grad_norm": 0.060608964413404465,
+ "learning_rate": 0.0003507770860552684,
+ "loss": 2.009627103805542,
+ "step": 1671
+ },
+ {
+ "epoch": 23.222996515679444,
+ "grad_norm": 0.06088849529623985,
+ "learning_rate": 0.00035051395220577397,
+ "loss": 1.9926284551620483,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23693379790941,
+ "grad_norm": 0.06073446571826935,
+ "learning_rate": 0.0003502507800751464,
+ "loss": 2.0231637954711914,
+ "step": 1673
+ },
+ {
+ "epoch": 23.250871080139373,
+ "grad_norm": 0.06006423011422157,
+ "learning_rate": 0.0003499875698754187,
+ "loss": 1.9915974140167236,
+ "step": 1674
+ },
+ {
+ "epoch": 23.264808362369337,
+ "grad_norm": 0.059542685747146606,
+ "learning_rate": 0.00034972432181865467,
+ "loss": 1.9983782768249512,
+ "step": 1675
+ },
+ {
+ "epoch": 23.278745644599304,
+ "grad_norm": 0.06081021949648857,
+ "learning_rate": 0.00034946103611694854,
+ "loss": 1.9988645315170288,
+ "step": 1676
+ },
+ {
+ "epoch": 23.29268292682927,
+ "grad_norm": 0.05827084556221962,
+ "learning_rate": 0.00034919771298242477,
+ "loss": 2.002373456954956,
+ "step": 1677
+ },
+ {
+ "epoch": 23.306620209059233,
+ "grad_norm": 0.059867121279239655,
+ "learning_rate": 0.00034893435262723814,
+ "loss": 2.0014448165893555,
+ "step": 1678
+ },
+ {
+ "epoch": 23.320557491289197,
+ "grad_norm": 0.059579163789749146,
+ "learning_rate": 0.00034867095526357325,
+ "loss": 2.018733501434326,
+ "step": 1679
+ },
+ {
+ "epoch": 23.334494773519165,
+ "grad_norm": 0.06353137642145157,
+ "learning_rate": 0.0003484075211036446,
+ "loss": 2.003769874572754,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34843205574913,
+ "grad_norm": 0.06118098273873329,
+ "learning_rate": 0.0003481440503596964,
+ "loss": 2.009033203125,
+ "step": 1681
+ },
+ {
+ "epoch": 23.362369337979093,
+ "grad_norm": 0.060457196086645126,
+ "learning_rate": 0.0003478805432440021,
+ "loss": 2.005089282989502,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37630662020906,
+ "grad_norm": 0.06178257614374161,
+ "learning_rate": 0.0003476169999688648,
+ "loss": 1.9994860887527466,
+ "step": 1683
+ },
+ {
+ "epoch": 23.390243902439025,
+ "grad_norm": 0.06617811322212219,
+ "learning_rate": 0.00034735342074661654,
+ "loss": 2.0085301399230957,
+ "step": 1684
+ },
+ {
+ "epoch": 23.40418118466899,
+ "grad_norm": 0.061164431273937225,
+ "learning_rate": 0.0003470898057896183,
+ "loss": 2.0015316009521484,
+ "step": 1685
+ },
+ {
+ "epoch": 23.418118466898953,
+ "grad_norm": 0.06309735029935837,
+ "learning_rate": 0.0003468261553102599,
+ "loss": 2.020759344100952,
+ "step": 1686
+ },
+ {
+ "epoch": 23.43205574912892,
+ "grad_norm": 0.0626831203699112,
+ "learning_rate": 0.00034656246952095984,
+ "loss": 2.009215831756592,
+ "step": 1687
+ },
+ {
+ "epoch": 23.445993031358885,
+ "grad_norm": 0.05888507142663002,
+ "learning_rate": 0.0003462987486341648,
+ "loss": 2.013838529586792,
+ "step": 1688
+ },
+ {
+ "epoch": 23.45993031358885,
+ "grad_norm": 0.0606909804046154,
+ "learning_rate": 0.00034603499286235006,
+ "loss": 2.005582571029663,
+ "step": 1689
+ },
+ {
+ "epoch": 23.473867595818817,
+ "grad_norm": 0.058872029185295105,
+ "learning_rate": 0.0003457712024180188,
+ "loss": 2.0199661254882812,
+ "step": 1690
+ },
+ {
+ "epoch": 23.48780487804878,
+ "grad_norm": 0.06124086305499077,
+ "learning_rate": 0.0003455073775137025,
+ "loss": 2.0159080028533936,
+ "step": 1691
+ },
+ {
+ "epoch": 23.501742160278745,
+ "grad_norm": 0.059814538806676865,
+ "learning_rate": 0.0003452435183619598,
+ "loss": 2.011732578277588,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51567944250871,
+ "grad_norm": 0.060436636209487915,
+ "learning_rate": 0.0003449796251753773,
+ "loss": 2.018317699432373,
+ "step": 1693
+ },
+ {
+ "epoch": 23.529616724738677,
+ "grad_norm": 0.06265381723642349,
+ "learning_rate": 0.00034471569816656915,
+ "loss": 2.010077714920044,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54355400696864,
+ "grad_norm": 0.06320856511592865,
+ "learning_rate": 0.00034445173754817646,
+ "loss": 2.0341739654541016,
+ "step": 1695
+ },
+ {
+ "epoch": 23.557491289198605,
+ "grad_norm": 0.061819177120923996,
+ "learning_rate": 0.00034418774353286747,
+ "loss": 2.032660961151123,
+ "step": 1696
+ },
+ {
+ "epoch": 23.571428571428573,
+ "grad_norm": 0.06506329029798508,
+ "learning_rate": 0.0003439237163333375,
+ "loss": 2.0272016525268555,
+ "step": 1697
+ },
+ {
+ "epoch": 23.585365853658537,
+ "grad_norm": 0.06600788235664368,
+ "learning_rate": 0.0003436596561623084,
+ "loss": 2.0060458183288574,
+ "step": 1698
+ },
+ {
+ "epoch": 23.5993031358885,
+ "grad_norm": 0.06110696122050285,
+ "learning_rate": 0.0003433955632325288,
+ "loss": 2.0102944374084473,
+ "step": 1699
+ },
+ {
+ "epoch": 23.613240418118465,
+ "grad_norm": 0.066371850669384,
+ "learning_rate": 0.00034313143775677353,
+ "loss": 2.0352327823638916,
+ "step": 1700
+ },
+ {
+ "epoch": 23.627177700348433,
+ "grad_norm": 0.06527800112962723,
+ "learning_rate": 0.00034286727994784367,
+ "loss": 2.0035440921783447,
+ "step": 1701
+ },
+ {
+ "epoch": 23.641114982578397,
+ "grad_norm": 0.06285402178764343,
+ "learning_rate": 0.0003426030900185665,
+ "loss": 2.033757448196411,
+ "step": 1702
+ },
+ {
+ "epoch": 23.65505226480836,
+ "grad_norm": 0.061433784663677216,
+ "learning_rate": 0.0003423388681817949,
+ "loss": 2.0161848068237305,
+ "step": 1703
+ },
+ {
+ "epoch": 23.66898954703833,
+ "grad_norm": 0.05987842008471489,
+ "learning_rate": 0.00034207461465040793,
+ "loss": 2.0261831283569336,
+ "step": 1704
+ },
+ {
+ "epoch": 23.682926829268293,
+ "grad_norm": 0.059953805059194565,
+ "learning_rate": 0.0003418103296373096,
+ "loss": 2.0215904712677,
+ "step": 1705
+ },
+ {
+ "epoch": 23.696864111498257,
+ "grad_norm": 0.06330372393131256,
+ "learning_rate": 0.00034154601335542964,
+ "loss": 2.025210380554199,
+ "step": 1706
+ },
+ {
+ "epoch": 23.71080139372822,
+ "grad_norm": 0.059463981539011,
+ "learning_rate": 0.00034128166601772304,
+ "loss": 2.02297306060791,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72473867595819,
+ "grad_norm": 0.05973811820149422,
+ "learning_rate": 0.0003410172878371695,
+ "loss": 2.011875629425049,
+ "step": 1708
+ },
+ {
+ "epoch": 23.738675958188153,
+ "grad_norm": 0.0624937042593956,
+ "learning_rate": 0.00034075287902677394,
+ "loss": 2.0156028270721436,
+ "step": 1709
+ },
+ {
+ "epoch": 23.752613240418118,
+ "grad_norm": 0.062002237886190414,
+ "learning_rate": 0.0003404884397995655,
+ "loss": 2.0000498294830322,
+ "step": 1710
+ },
+ {
+ "epoch": 23.766550522648085,
+ "grad_norm": 0.060854360461235046,
+ "learning_rate": 0.00034022397036859837,
+ "loss": 2.0322160720825195,
+ "step": 1711
+ },
+ {
+ "epoch": 23.78048780487805,
+ "grad_norm": 0.06054264307022095,
+ "learning_rate": 0.0003399594709469506,
+ "loss": 2.032982349395752,
+ "step": 1712
+ },
+ {
+ "epoch": 23.794425087108014,
+ "grad_norm": 0.0627431645989418,
+ "learning_rate": 0.00033969494174772465,
+ "loss": 2.020582675933838,
+ "step": 1713
+ },
+ {
+ "epoch": 23.808362369337978,
+ "grad_norm": 0.06483827531337738,
+ "learning_rate": 0.0003394303829840469,
+ "loss": 2.0398523807525635,
+ "step": 1714
+ },
+ {
+ "epoch": 23.822299651567945,
+ "grad_norm": 0.05984083190560341,
+ "learning_rate": 0.00033916579486906764,
+ "loss": 2.039645195007324,
+ "step": 1715
+ },
+ {
+ "epoch": 23.83623693379791,
+ "grad_norm": 0.06621941179037094,
+ "learning_rate": 0.0003389011776159607,
+ "loss": 2.021867275238037,
+ "step": 1716
+ },
+ {
+ "epoch": 23.850174216027874,
+ "grad_norm": 0.0623198039829731,
+ "learning_rate": 0.0003386365314379233,
+ "loss": 2.0347697734832764,
+ "step": 1717
+ },
+ {
+ "epoch": 23.86411149825784,
+ "grad_norm": 0.06399847567081451,
+ "learning_rate": 0.0003383718565481763,
+ "loss": 2.030777931213379,
+ "step": 1718
+ },
+ {
+ "epoch": 23.878048780487806,
+ "grad_norm": 0.06241384893655777,
+ "learning_rate": 0.0003381071531599633,
+ "loss": 2.011267900466919,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89198606271777,
+ "grad_norm": 0.05945252999663353,
+ "learning_rate": 0.00033784242148655115,
+ "loss": 2.0384621620178223,
+ "step": 1720
+ },
+ {
+ "epoch": 23.905923344947734,
+ "grad_norm": 0.0614384189248085,
+ "learning_rate": 0.00033757766174122934,
+ "loss": 2.030486583709717,
+ "step": 1721
+ },
+ {
+ "epoch": 23.9198606271777,
+ "grad_norm": 0.06007350608706474,
+ "learning_rate": 0.00033731287413731005,
+ "loss": 2.022603988647461,
+ "step": 1722
+ },
+ {
+ "epoch": 23.933797909407666,
+ "grad_norm": 0.059712085872888565,
+ "learning_rate": 0.0003370480588881278,
+ "loss": 2.0331850051879883,
+ "step": 1723
+ },
+ {
+ "epoch": 23.94773519163763,
+ "grad_norm": 0.0601886548101902,
+ "learning_rate": 0.0003367832162070395,
+ "loss": 2.0483477115631104,
+ "step": 1724
+ },
+ {
+ "epoch": 23.961672473867594,
+ "grad_norm": 0.06256099790334702,
+ "learning_rate": 0.000336518346307424,
+ "loss": 2.033539056777954,
+ "step": 1725
+ },
+ {
+ "epoch": 23.975609756097562,
+ "grad_norm": 0.057741131633520126,
+ "learning_rate": 0.0003362534494026824,
+ "loss": 2.024747133255005,
+ "step": 1726
+ },
+ {
+ "epoch": 23.989547038327526,
+ "grad_norm": 0.060783255845308304,
+ "learning_rate": 0.0003359885257062372,
+ "loss": 2.0209577083587646,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.04932123422622681,
+ "learning_rate": 0.0003357235754315328,
+ "loss": 1.515411376953125,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 0.6315755248069763,
+ "eval_runtime": 36.5997,
+ "eval_samples_per_second": 66.722,
+ "eval_steps_per_second": 0.546,
+ "step": 1728
+ },
+ {
+ "epoch": 24.013937282229964,
+ "grad_norm": 0.056868553161621094,
+ "learning_rate": 0.0003354585987920345,
+ "loss": 1.9798481464385986,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027874564459932,
+ "grad_norm": 0.06501385569572449,
+ "learning_rate": 0.0003351935960012296,
+ "loss": 1.9906654357910156,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041811846689896,
+ "grad_norm": 0.05838958919048309,
+ "learning_rate": 0.0003349285672726259,
+ "loss": 1.9860174655914307,
+ "step": 1731
+ },
+ {
+ "epoch": 24.05574912891986,
+ "grad_norm": 0.058145660907030106,
+ "learning_rate": 0.0003346635128197522,
+ "loss": 1.9651578664779663,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069686411149824,
+ "grad_norm": 0.060848575085401535,
+ "learning_rate": 0.0003343984328561581,
+ "loss": 1.9864778518676758,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083623693379792,
+ "grad_norm": 0.06372028589248657,
+ "learning_rate": 0.00033413332759541376,
+ "loss": 1.9852806329727173,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097560975609756,
+ "grad_norm": 0.061025235801935196,
+ "learning_rate": 0.0003338681972511098,
+ "loss": 1.9978421926498413,
+ "step": 1735
+ },
+ {
+ "epoch": 24.11149825783972,
+ "grad_norm": 0.060201771557331085,
+ "learning_rate": 0.0003336030420368568,
+ "loss": 1.9757139682769775,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125435540069688,
+ "grad_norm": 0.05975824594497681,
+ "learning_rate": 0.0003333378621662857,
+ "loss": 1.9860875606536865,
+ "step": 1737
+ },
+ {
+ "epoch": 24.139372822299652,
+ "grad_norm": 0.06081843376159668,
+ "learning_rate": 0.00033307265785304684,
+ "loss": 1.968639850616455,
+ "step": 1738
+ },
+ {
+ "epoch": 24.153310104529616,
+ "grad_norm": 0.060572270303964615,
+ "learning_rate": 0.00033280742931081076,
+ "loss": 1.9802055358886719,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16724738675958,
+ "grad_norm": 0.05910629406571388,
+ "learning_rate": 0.00033254217675326737,
+ "loss": 1.9850757122039795,
+ "step": 1740
+ },
+ {
+ "epoch": 24.181184668989548,
+ "grad_norm": 0.05974426120519638,
+ "learning_rate": 0.0003322769003941257,
+ "loss": 1.976986289024353,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195121951219512,
+ "grad_norm": 0.06145593523979187,
+ "learning_rate": 0.00033201160044711423,
+ "loss": 2.000087261199951,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209059233449477,
+ "grad_norm": 0.06071079522371292,
+ "learning_rate": 0.0003317462771259802,
+ "loss": 2.0015039443969727,
+ "step": 1743
+ },
+ {
+ "epoch": 24.222996515679444,
+ "grad_norm": 0.06183251366019249,
+ "learning_rate": 0.00033148093064449006,
+ "loss": 1.9810009002685547,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23693379790941,
+ "grad_norm": 0.05952904373407364,
+ "learning_rate": 0.0003312155612164284,
+ "loss": 1.9755181074142456,
+ "step": 1745
+ },
+ {
+ "epoch": 24.250871080139373,
+ "grad_norm": 0.06136337295174599,
+ "learning_rate": 0.00033095016905559883,
+ "loss": 1.9860830307006836,
+ "step": 1746
+ },
+ {
+ "epoch": 24.264808362369337,
+ "grad_norm": 0.05884359031915665,
+ "learning_rate": 0.0003306847543758227,
+ "loss": 1.9831082820892334,
+ "step": 1747
+ },
+ {
+ "epoch": 24.278745644599304,
+ "grad_norm": 0.06433911621570587,
+ "learning_rate": 0.0003304193173909401,
+ "loss": 1.9774551391601562,
+ "step": 1748
+ },
+ {
+ "epoch": 24.29268292682927,
+ "grad_norm": 0.06369569152593613,
+ "learning_rate": 0.00033015385831480873,
+ "loss": 1.969364881515503,
+ "step": 1749
+ },
+ {
+ "epoch": 24.306620209059233,
+ "grad_norm": 0.061907488852739334,
+ "learning_rate": 0.0003298883773613043,
+ "loss": 1.9955558776855469,
+ "step": 1750
+ },
+ {
+ "epoch": 24.320557491289197,
+ "grad_norm": 0.061493128538131714,
+ "learning_rate": 0.0003296228747443197,
+ "loss": 1.983457326889038,
+ "step": 1751
+ },
+ {
+ "epoch": 24.334494773519165,
+ "grad_norm": 0.064146488904953,
+ "learning_rate": 0.0003293573506777659,
+ "loss": 1.987483263015747,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34843205574913,
+ "grad_norm": 0.06266602128744125,
+ "learning_rate": 0.00032909180537557076,
+ "loss": 1.9783263206481934,
+ "step": 1753
+ },
+ {
+ "epoch": 24.362369337979093,
+ "grad_norm": 0.06142675131559372,
+ "learning_rate": 0.00032882623905167917,
+ "loss": 1.984071135520935,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37630662020906,
+ "grad_norm": 0.06145746260881424,
+ "learning_rate": 0.00032856065192005335,
+ "loss": 1.9964550733566284,
+ "step": 1755
+ },
+ {
+ "epoch": 24.390243902439025,
+ "grad_norm": 0.058990370482206345,
+ "learning_rate": 0.00032829504419467194,
+ "loss": 1.9879612922668457,
+ "step": 1756
+ },
+ {
+ "epoch": 24.40418118466899,
+ "grad_norm": 0.06122121214866638,
+ "learning_rate": 0.0003280294160895303,
+ "loss": 1.9812474250793457,
+ "step": 1757
+ },
+ {
+ "epoch": 24.418118466898953,
+ "grad_norm": 0.059800442308187485,
+ "learning_rate": 0.0003277637678186402,
+ "loss": 1.970646619796753,
+ "step": 1758
+ },
+ {
+ "epoch": 24.43205574912892,
+ "grad_norm": 0.0604378841817379,
+ "learning_rate": 0.00032749809959602973,
+ "loss": 2.003701686859131,
+ "step": 1759
+ },
+ {
+ "epoch": 24.445993031358885,
+ "grad_norm": 0.05989979952573776,
+ "learning_rate": 0.0003272324116357428,
+ "loss": 1.9803345203399658,
+ "step": 1760
+ },
+ {
+ "epoch": 24.45993031358885,
+ "grad_norm": 0.06310706585645676,
+ "learning_rate": 0.0003269667041518395,
+ "loss": 1.989131212234497,
+ "step": 1761
+ },
+ {
+ "epoch": 24.473867595818817,
+ "grad_norm": 0.06142299249768257,
+ "learning_rate": 0.0003267009773583956,
+ "loss": 1.9946138858795166,
+ "step": 1762
+ },
+ {
+ "epoch": 24.48780487804878,
+ "grad_norm": 0.062469176948070526,
+ "learning_rate": 0.00032643523146950234,
+ "loss": 2.001830577850342,
+ "step": 1763
+ },
+ {
+ "epoch": 24.501742160278745,
+ "grad_norm": 0.06173425912857056,
+ "learning_rate": 0.0003261694666992664,
+ "loss": 2.002091646194458,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51567944250871,
+ "grad_norm": 0.06293168663978577,
+ "learning_rate": 0.0003259036832618096,
+ "loss": 1.9954603910446167,
+ "step": 1765
+ },
+ {
+ "epoch": 24.529616724738677,
+ "grad_norm": 0.060014087706804276,
+ "learning_rate": 0.0003256378813712688,
+ "loss": 1.9944541454315186,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54355400696864,
+ "grad_norm": 0.06237431988120079,
+ "learning_rate": 0.000325372061241796,
+ "loss": 2.0007567405700684,
+ "step": 1767
+ },
+ {
+ "epoch": 24.557491289198605,
+ "grad_norm": 0.06152753531932831,
+ "learning_rate": 0.00032510622308755746,
+ "loss": 2.0018327236175537,
+ "step": 1768
+ },
+ {
+ "epoch": 24.571428571428573,
+ "grad_norm": 0.05944858118891716,
+ "learning_rate": 0.00032484036712273424,
+ "loss": 1.992608666419983,
+ "step": 1769
+ },
+ {
+ "epoch": 24.585365853658537,
+ "grad_norm": 0.062232885509729385,
+ "learning_rate": 0.0003245744935615219,
+ "loss": 2.000495433807373,
+ "step": 1770
+ },
+ {
+ "epoch": 24.5993031358885,
+ "grad_norm": 0.06566010415554047,
+ "learning_rate": 0.0003243086026181296,
+ "loss": 1.9956483840942383,
+ "step": 1771
+ },
+ {
+ "epoch": 24.613240418118465,
+ "grad_norm": 0.06141132116317749,
+ "learning_rate": 0.00032404269450678116,
+ "loss": 1.9919085502624512,
+ "step": 1772
+ },
+ {
+ "epoch": 24.627177700348433,
+ "grad_norm": 0.06355211138725281,
+ "learning_rate": 0.00032377676944171375,
+ "loss": 2.0013604164123535,
+ "step": 1773
+ },
+ {
+ "epoch": 24.641114982578397,
+ "grad_norm": 0.0633525624871254,
+ "learning_rate": 0.00032351082763717857,
+ "loss": 2.003030300140381,
+ "step": 1774
+ },
+ {
+ "epoch": 24.65505226480836,
+ "grad_norm": 0.06334961205720901,
+ "learning_rate": 0.0003232448693074399,
+ "loss": 2.0035159587860107,
+ "step": 1775
+ },
+ {
+ "epoch": 24.66898954703833,
+ "grad_norm": 0.059516388922929764,
+ "learning_rate": 0.00032297889466677575,
+ "loss": 1.9953091144561768,
+ "step": 1776
+ },
+ {
+ "epoch": 24.682926829268293,
+ "grad_norm": 0.061832234263420105,
+ "learning_rate": 0.000322712903929477,
+ "loss": 2.0096263885498047,
+ "step": 1777
+ },
+ {
+ "epoch": 24.696864111498257,
+ "grad_norm": 0.06823352724313736,
+ "learning_rate": 0.0003224468973098477,
+ "loss": 2.0014004707336426,
+ "step": 1778
+ },
+ {
+ "epoch": 24.71080139372822,
+ "grad_norm": 0.06829699873924255,
+ "learning_rate": 0.0003221808750222044,
+ "loss": 1.990633249282837,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72473867595819,
+ "grad_norm": 0.060128696262836456,
+ "learning_rate": 0.0003219148372808766,
+ "loss": 1.9862974882125854,
+ "step": 1780
+ },
+ {
+ "epoch": 24.738675958188153,
+ "grad_norm": 0.06241869926452637,
+ "learning_rate": 0.00032164878430020606,
+ "loss": 2.0125184059143066,
+ "step": 1781
+ },
+ {
+ "epoch": 24.752613240418118,
+ "grad_norm": 0.06538056582212448,
+ "learning_rate": 0.00032138271629454684,
+ "loss": 2.0079469680786133,
+ "step": 1782
+ },
+ {
+ "epoch": 24.766550522648085,
+ "grad_norm": 0.06478657573461533,
+ "learning_rate": 0.00032111663347826505,
+ "loss": 2.0092570781707764,
+ "step": 1783
+ },
+ {
+ "epoch": 24.78048780487805,
+ "grad_norm": 0.06446428596973419,
+ "learning_rate": 0.00032085053606573896,
+ "loss": 1.9926164150238037,
+ "step": 1784
+ },
+ {
+ "epoch": 24.794425087108014,
+ "grad_norm": 0.06340030580759048,
+ "learning_rate": 0.0003205844242713584,
+ "loss": 2.0052552223205566,
+ "step": 1785
+ },
+ {
+ "epoch": 24.808362369337978,
+ "grad_norm": 0.06671392917633057,
+ "learning_rate": 0.0003203182983095248,
+ "loss": 2.005016326904297,
+ "step": 1786
+ },
+ {
+ "epoch": 24.822299651567945,
+ "grad_norm": 0.06256412714719772,
+ "learning_rate": 0.0003200521583946511,
+ "loss": 1.998322606086731,
+ "step": 1787
+ },
+ {
+ "epoch": 24.83623693379791,
+ "grad_norm": 0.06253744661808014,
+ "learning_rate": 0.0003197860047411613,
+ "loss": 2.004774332046509,
+ "step": 1788
+ },
+ {
+ "epoch": 24.850174216027874,
+ "grad_norm": 0.06475425511598587,
+ "learning_rate": 0.00031951983756349066,
+ "loss": 2.010788917541504,
+ "step": 1789
+ },
+ {
+ "epoch": 24.86411149825784,
+ "grad_norm": 0.06285806000232697,
+ "learning_rate": 0.00031925365707608536,
+ "loss": 2.0189685821533203,
+ "step": 1790
+ },
+ {
+ "epoch": 24.878048780487806,
+ "grad_norm": 0.06435883790254593,
+ "learning_rate": 0.00031898746349340204,
+ "loss": 2.0078349113464355,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89198606271777,
+ "grad_norm": 0.062008004635572433,
+ "learning_rate": 0.0003187212570299082,
+ "loss": 2.005176544189453,
+ "step": 1792
+ },
+ {
+ "epoch": 24.905923344947734,
+ "grad_norm": 0.061844680458307266,
+ "learning_rate": 0.0003184550379000815,
+ "loss": 2.0120368003845215,
+ "step": 1793
+ },
+ {
+ "epoch": 24.9198606271777,
+ "grad_norm": 0.06165637448430061,
+ "learning_rate": 0.00031818880631841005,
+ "loss": 1.988783359527588,
+ "step": 1794
+ },
+ {
+ "epoch": 24.933797909407666,
+ "grad_norm": 0.061599504202604294,
+ "learning_rate": 0.0003179225624993915,
+ "loss": 2.002344846725464,
+ "step": 1795
+ },
+ {
+ "epoch": 24.94773519163763,
+ "grad_norm": 0.06298971176147461,
+ "learning_rate": 0.0003176563066575341,
+ "loss": 2.0156569480895996,
+ "step": 1796
+ },
+ {
+ "epoch": 24.961672473867594,
+ "grad_norm": 0.060080062597990036,
+ "learning_rate": 0.0003173900390073549,
+ "loss": 2.010012149810791,
+ "step": 1797
+ },
+ {
+ "epoch": 24.975609756097562,
+ "grad_norm": 0.06395968794822693,
+ "learning_rate": 0.0003171237597633813,
+ "loss": 2.0122275352478027,
+ "step": 1798
+ },
+ {
+ "epoch": 24.989547038327526,
+ "grad_norm": 0.062498848885297775,
+ "learning_rate": 0.0003168574691401496,
+ "loss": 2.0220727920532227,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.04997362941503525,
+ "learning_rate": 0.0003165911673522053,
+ "loss": 1.5085651874542236,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 0.6326767206192017,
+ "eval_runtime": 35.1333,
+ "eval_samples_per_second": 69.507,
+ "eval_steps_per_second": 0.569,
+ "step": 1800
+ },
+ {
+ "epoch": 25.013937282229964,
+ "grad_norm": 0.06232205778360367,
+ "learning_rate": 0.00031632485461410294,
+ "loss": 1.960073709487915,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027874564459932,
+ "grad_norm": 0.07617080211639404,
+ "learning_rate": 0.00031605853114040583,
+ "loss": 1.9570682048797607,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041811846689896,
+ "grad_norm": 0.06312266737222672,
+ "learning_rate": 0.00031579219714568613,
+ "loss": 1.9653043746948242,
+ "step": 1803
+ },
+ {
+ "epoch": 25.05574912891986,
+ "grad_norm": 0.06101902946829796,
+ "learning_rate": 0.0003155258528445242,
+ "loss": 1.9481754302978516,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069686411149824,
+ "grad_norm": 0.06738974899053574,
+ "learning_rate": 0.0003152594984515089,
+ "loss": 1.9733099937438965,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083623693379792,
+ "grad_norm": 0.06208112835884094,
+ "learning_rate": 0.00031499313418123704,
+ "loss": 1.9604226350784302,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097560975609756,
+ "grad_norm": 0.0632297471165657,
+ "learning_rate": 0.0003147267602483138,
+ "loss": 1.9748514890670776,
+ "step": 1807
+ },
+ {
+ "epoch": 25.11149825783972,
+ "grad_norm": 0.06286419183015823,
+ "learning_rate": 0.00031446037686735153,
+ "loss": 1.9705591201782227,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125435540069688,
+ "grad_norm": 0.061676930636167526,
+ "learning_rate": 0.0003141939842529706,
+ "loss": 1.966292381286621,
+ "step": 1809
+ },
+ {
+ "epoch": 25.139372822299652,
+ "grad_norm": 0.059966422617435455,
+ "learning_rate": 0.0003139275826197987,
+ "loss": 1.960801124572754,
+ "step": 1810
+ },
+ {
+ "epoch": 25.153310104529616,
+ "grad_norm": 0.06130777299404144,
+ "learning_rate": 0.00031366117218247094,
+ "loss": 1.9645764827728271,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16724738675958,
+ "grad_norm": 0.061480022966861725,
+ "learning_rate": 0.00031339475315562916,
+ "loss": 1.9640815258026123,
+ "step": 1812
+ },
+ {
+ "epoch": 25.181184668989548,
+ "grad_norm": 0.05976599082350731,
+ "learning_rate": 0.00031312832575392267,
+ "loss": 1.9709453582763672,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195121951219512,
+ "grad_norm": 0.06432078778743744,
+ "learning_rate": 0.0003128618901920071,
+ "loss": 1.9676944017410278,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209059233449477,
+ "grad_norm": 0.060974858701229095,
+ "learning_rate": 0.0003125954466845446,
+ "loss": 1.9607110023498535,
+ "step": 1815
+ },
+ {
+ "epoch": 25.222996515679444,
+ "grad_norm": 0.06553254276514053,
+ "learning_rate": 0.00031232899544620404,
+ "loss": 1.9504101276397705,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23693379790941,
+ "grad_norm": 0.06467615813016891,
+ "learning_rate": 0.00031206253669166045,
+ "loss": 1.962750792503357,
+ "step": 1817
+ },
+ {
+ "epoch": 25.250871080139373,
+ "grad_norm": 0.061078183352947235,
+ "learning_rate": 0.0003117960706355947,
+ "loss": 1.9658128023147583,
+ "step": 1818
+ },
+ {
+ "epoch": 25.264808362369337,
+ "grad_norm": 0.0656590387225151,
+ "learning_rate": 0.0003115295974926936,
+ "loss": 1.9687200784683228,
+ "step": 1819
+ },
+ {
+ "epoch": 25.278745644599304,
+ "grad_norm": 0.061022087931632996,
+ "learning_rate": 0.00031126311747765005,
+ "loss": 1.9684455394744873,
+ "step": 1820
+ },
+ {
+ "epoch": 25.29268292682927,
+ "grad_norm": 0.0625755786895752,
+ "learning_rate": 0.00031099663080516186,
+ "loss": 1.962731957435608,
+ "step": 1821
+ },
+ {
+ "epoch": 25.306620209059233,
+ "grad_norm": 0.06357678025960922,
+ "learning_rate": 0.0003107301376899327,
+ "loss": 1.9442671537399292,
+ "step": 1822
+ },
+ {
+ "epoch": 25.320557491289197,
+ "grad_norm": 0.062150172889232635,
+ "learning_rate": 0.00031046363834667123,
+ "loss": 1.9566235542297363,
+ "step": 1823
+ },
+ {
+ "epoch": 25.334494773519165,
+ "grad_norm": 0.061118803918361664,
+ "learning_rate": 0.00031019713299009123,
+ "loss": 1.9761946201324463,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34843205574913,
+ "grad_norm": 0.06331022083759308,
+ "learning_rate": 0.000309930621834911,
+ "loss": 1.9509797096252441,
+ "step": 1825
+ },
+ {
+ "epoch": 25.362369337979093,
+ "grad_norm": 0.06341579556465149,
+ "learning_rate": 0.0003096641050958541,
+ "loss": 1.9654616117477417,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37630662020906,
+ "grad_norm": 0.061316221952438354,
+ "learning_rate": 0.00030939758298764795,
+ "loss": 1.9767422676086426,
+ "step": 1827
+ },
+ {
+ "epoch": 25.390243902439025,
+ "grad_norm": 0.06411541253328323,
+ "learning_rate": 0.00030913105572502483,
+ "loss": 1.985473394393921,
+ "step": 1828
+ },
+ {
+ "epoch": 25.40418118466899,
+ "grad_norm": 0.061624426394701004,
+ "learning_rate": 0.00030886452352272095,
+ "loss": 1.9730801582336426,
+ "step": 1829
+ },
+ {
+ "epoch": 25.418118466898953,
+ "grad_norm": 0.06127973645925522,
+ "learning_rate": 0.00030859798659547624,
+ "loss": 1.9568986892700195,
+ "step": 1830
+ },
+ {
+ "epoch": 25.43205574912892,
+ "grad_norm": 0.06366631388664246,
+ "learning_rate": 0.0003083314451580349,
+ "loss": 1.9778714179992676,
+ "step": 1831
+ },
+ {
+ "epoch": 25.445993031358885,
+ "grad_norm": 0.06436672061681747,
+ "learning_rate": 0.0003080648994251445,
+ "loss": 1.9750032424926758,
+ "step": 1832
+ },
+ {
+ "epoch": 25.45993031358885,
+ "grad_norm": 0.06266232579946518,
+ "learning_rate": 0.0003077983496115561,
+ "loss": 1.9691630601882935,
+ "step": 1833
+ },
+ {
+ "epoch": 25.473867595818817,
+ "grad_norm": 0.06091330945491791,
+ "learning_rate": 0.00030753179593202406,
+ "loss": 1.9596004486083984,
+ "step": 1834
+ },
+ {
+ "epoch": 25.48780487804878,
+ "grad_norm": 0.0609268881380558,
+ "learning_rate": 0.0003072652386013059,
+ "loss": 1.9919569492340088,
+ "step": 1835
+ },
+ {
+ "epoch": 25.501742160278745,
+ "grad_norm": 0.06318292021751404,
+ "learning_rate": 0.00030699867783416207,
+ "loss": 1.9675531387329102,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51567944250871,
+ "grad_norm": 0.061429619789123535,
+ "learning_rate": 0.0003067321138453557,
+ "loss": 1.966346263885498,
+ "step": 1837
+ },
+ {
+ "epoch": 25.529616724738677,
+ "grad_norm": 0.06276095658540726,
+ "learning_rate": 0.0003064655468496527,
+ "loss": 1.9983158111572266,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54355400696864,
+ "grad_norm": 0.06198902055621147,
+ "learning_rate": 0.0003061989770618211,
+ "loss": 1.9685490131378174,
+ "step": 1839
+ },
+ {
+ "epoch": 25.557491289198605,
+ "grad_norm": 0.06335171312093735,
+ "learning_rate": 0.00030593240469663154,
+ "loss": 1.9861736297607422,
+ "step": 1840
+ },
+ {
+ "epoch": 25.571428571428573,
+ "grad_norm": 0.06267495453357697,
+ "learning_rate": 0.0003056658299688563,
+ "loss": 1.9693151712417603,
+ "step": 1841
+ },
+ {
+ "epoch": 25.585365853658537,
+ "grad_norm": 0.061308011412620544,
+ "learning_rate": 0.00030539925309327017,
+ "loss": 1.9826204776763916,
+ "step": 1842
+ },
+ {
+ "epoch": 25.5993031358885,
+ "grad_norm": 0.06606099754571915,
+ "learning_rate": 0.0003051326742846491,
+ "loss": 1.985427737236023,
+ "step": 1843
+ },
+ {
+ "epoch": 25.613240418118465,
+ "grad_norm": 0.06353887170553207,
+ "learning_rate": 0.000304866093757771,
+ "loss": 1.963585615158081,
+ "step": 1844
+ },
+ {
+ "epoch": 25.627177700348433,
+ "grad_norm": 0.06360059976577759,
+ "learning_rate": 0.00030459951172741474,
+ "loss": 1.9840047359466553,
+ "step": 1845
+ },
+ {
+ "epoch": 25.641114982578397,
+ "grad_norm": 0.06275399029254913,
+ "learning_rate": 0.0003043329284083609,
+ "loss": 1.9865367412567139,
+ "step": 1846
+ },
+ {
+ "epoch": 25.65505226480836,
+ "grad_norm": 0.061826832592487335,
+ "learning_rate": 0.00030406634401539053,
+ "loss": 1.9746454954147339,
+ "step": 1847
+ },
+ {
+ "epoch": 25.66898954703833,
+ "grad_norm": 0.06373758614063263,
+ "learning_rate": 0.00030379975876328614,
+ "loss": 1.970570683479309,
+ "step": 1848
+ },
+ {
+ "epoch": 25.682926829268293,
+ "grad_norm": 0.06198093667626381,
+ "learning_rate": 0.00030353317286683053,
+ "loss": 1.9856860637664795,
+ "step": 1849
+ },
+ {
+ "epoch": 25.696864111498257,
+ "grad_norm": 0.06512428820133209,
+ "learning_rate": 0.0003032665865408073,
+ "loss": 1.9919607639312744,
+ "step": 1850
+ },
+ {
+ "epoch": 25.71080139372822,
+ "grad_norm": 0.06516636162996292,
+ "learning_rate": 0.000303,
+ "loss": 1.9930028915405273,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72473867595819,
+ "grad_norm": 0.06129363179206848,
+ "learning_rate": 0.0003027334134591926,
+ "loss": 1.9975836277008057,
+ "step": 1852
+ },
+ {
+ "epoch": 25.738675958188153,
+ "grad_norm": 0.06420517712831497,
+ "learning_rate": 0.00030246682713316945,
+ "loss": 1.9728800058364868,
+ "step": 1853
+ },
+ {
+ "epoch": 25.752613240418118,
+ "grad_norm": 0.06342366337776184,
+ "learning_rate": 0.0003022002412367138,
+ "loss": 1.989312767982483,
+ "step": 1854
+ },
+ {
+ "epoch": 25.766550522648085,
+ "grad_norm": 0.061576031148433685,
+ "learning_rate": 0.00030193365598460946,
+ "loss": 1.9859075546264648,
+ "step": 1855
+ },
+ {
+ "epoch": 25.78048780487805,
+ "grad_norm": 0.0607769675552845,
+ "learning_rate": 0.0003016670715916391,
+ "loss": 1.967139482498169,
+ "step": 1856
+ },
+ {
+ "epoch": 25.794425087108014,
+ "grad_norm": 0.06282363831996918,
+ "learning_rate": 0.00030140048827258524,
+ "loss": 1.9849177598953247,
+ "step": 1857
+ },
+ {
+ "epoch": 25.808362369337978,
+ "grad_norm": 0.06485171616077423,
+ "learning_rate": 0.0003011339062422289,
+ "loss": 1.9944510459899902,
+ "step": 1858
+ },
+ {
+ "epoch": 25.822299651567945,
+ "grad_norm": 0.06280137598514557,
+ "learning_rate": 0.00030086732571535076,
+ "loss": 1.9957447052001953,
+ "step": 1859
+ },
+ {
+ "epoch": 25.83623693379791,
+ "grad_norm": 0.06692720204591751,
+ "learning_rate": 0.0003006007469067297,
+ "loss": 1.9829119443893433,
+ "step": 1860
+ },
+ {
+ "epoch": 25.850174216027874,
+ "grad_norm": 0.06662958860397339,
+ "learning_rate": 0.0003003341700311436,
+ "loss": 1.9788072109222412,
+ "step": 1861
+ },
+ {
+ "epoch": 25.86411149825784,
+ "grad_norm": 0.06748583912849426,
+ "learning_rate": 0.0003000675953033685,
+ "loss": 1.9959502220153809,
+ "step": 1862
+ },
+ {
+ "epoch": 25.878048780487806,
+ "grad_norm": 0.06759459525346756,
+ "learning_rate": 0.0002998010229381789,
+ "loss": 1.9947572946548462,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89198606271777,
+ "grad_norm": 0.06492980569601059,
+ "learning_rate": 0.0002995344531503474,
+ "loss": 1.9897825717926025,
+ "step": 1864
+ },
+ {
+ "epoch": 25.905923344947734,
+ "grad_norm": 0.06660535931587219,
+ "learning_rate": 0.0002992678861546442,
+ "loss": 1.9906097650527954,
+ "step": 1865
+ },
+ {
+ "epoch": 25.9198606271777,
+ "grad_norm": 0.06545855104923248,
+ "learning_rate": 0.00029900132216583786,
+ "loss": 1.9963207244873047,
+ "step": 1866
+ },
+ {
+ "epoch": 25.933797909407666,
+ "grad_norm": 0.06479988992214203,
+ "learning_rate": 0.0002987347613986941,
+ "loss": 1.994144082069397,
+ "step": 1867
+ },
+ {
+ "epoch": 25.94773519163763,
+ "grad_norm": 0.06334878504276276,
+ "learning_rate": 0.0002984682040679759,
+ "loss": 1.9909017086029053,
+ "step": 1868
+ },
+ {
+ "epoch": 25.961672473867594,
+ "grad_norm": 0.06454301625490189,
+ "learning_rate": 0.00029820165038844395,
+ "loss": 1.985898494720459,
+ "step": 1869
+ },
+ {
+ "epoch": 25.975609756097562,
+ "grad_norm": 0.06418111175298691,
+ "learning_rate": 0.00029793510057485556,
+ "loss": 1.9789021015167236,
+ "step": 1870
+ },
+ {
+ "epoch": 25.989547038327526,
+ "grad_norm": 0.06766562163829803,
+ "learning_rate": 0.00029766855484196513,
+ "loss": 2.0054125785827637,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.05154159665107727,
+ "learning_rate": 0.0002974020134045238,
+ "loss": 1.4703314304351807,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 0.6342733502388,
+ "eval_runtime": 40.7553,
+ "eval_samples_per_second": 59.919,
+ "eval_steps_per_second": 0.491,
+ "step": 1872
+ },
+ {
+ "epoch": 26.013937282229964,
+ "grad_norm": 0.06601504236459732,
+ "learning_rate": 0.00029713547647727904,
+ "loss": 1.9541187286376953,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027874564459932,
+ "grad_norm": 0.06637415289878845,
+ "learning_rate": 0.00029686894427497515,
+ "loss": 1.9444429874420166,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041811846689896,
+ "grad_norm": 0.06102657690644264,
+ "learning_rate": 0.0002966024170123519,
+ "loss": 1.9523404836654663,
+ "step": 1875
+ },
+ {
+ "epoch": 26.05574912891986,
+ "grad_norm": 0.06154332309961319,
+ "learning_rate": 0.0002963358949041459,
+ "loss": 1.9392805099487305,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069686411149824,
+ "grad_norm": 0.06383806467056274,
+ "learning_rate": 0.00029606937816508897,
+ "loss": 1.9280699491500854,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083623693379792,
+ "grad_norm": 0.05950536951422691,
+ "learning_rate": 0.00029580286700990887,
+ "loss": 1.9510209560394287,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097560975609756,
+ "grad_norm": 0.06285396963357925,
+ "learning_rate": 0.00029553636165332876,
+ "loss": 1.9589542150497437,
+ "step": 1879
+ },
+ {
+ "epoch": 26.11149825783972,
+ "grad_norm": 0.06018277257680893,
+ "learning_rate": 0.0002952698623100673,
+ "loss": 1.9556975364685059,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125435540069688,
+ "grad_norm": 0.06558576226234436,
+ "learning_rate": 0.0002950033691948382,
+ "loss": 1.9427529573440552,
+ "step": 1881
+ },
+ {
+ "epoch": 26.139372822299652,
+ "grad_norm": 0.06511088460683823,
+ "learning_rate": 0.00029473688252234994,
+ "loss": 1.9552985429763794,
+ "step": 1882
+ },
+ {
+ "epoch": 26.153310104529616,
+ "grad_norm": 0.06098657473921776,
+ "learning_rate": 0.0002944704025073064,
+ "loss": 1.9433622360229492,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16724738675958,
+ "grad_norm": 0.059983622282743454,
+ "learning_rate": 0.00029420392936440525,
+ "loss": 1.940507411956787,
+ "step": 1884
+ },
+ {
+ "epoch": 26.181184668989548,
+ "grad_norm": 0.06048520654439926,
+ "learning_rate": 0.00029393746330833953,
+ "loss": 1.936924695968628,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195121951219512,
+ "grad_norm": 0.06227855011820793,
+ "learning_rate": 0.0002936710045537959,
+ "loss": 1.93827486038208,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209059233449477,
+ "grad_norm": 0.06222425028681755,
+ "learning_rate": 0.0002934045533154554,
+ "loss": 1.9474766254425049,
+ "step": 1887
+ },
+ {
+ "epoch": 26.222996515679444,
+ "grad_norm": 0.06104688346385956,
+ "learning_rate": 0.00029313810980799296,
+ "loss": 1.9336830377578735,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23693379790941,
+ "grad_norm": 0.061554424464702606,
+ "learning_rate": 0.00029287167424607726,
+ "loss": 1.9518358707427979,
+ "step": 1889
+ },
+ {
+ "epoch": 26.250871080139373,
+ "grad_norm": 0.06273443251848221,
+ "learning_rate": 0.00029260524684437077,
+ "loss": 1.940516710281372,
+ "step": 1890
+ },
+ {
+ "epoch": 26.264808362369337,
+ "grad_norm": 0.05902065709233284,
+ "learning_rate": 0.00029233882781752905,
+ "loss": 1.9311795234680176,
+ "step": 1891
+ },
+ {
+ "epoch": 26.278745644599304,
+ "grad_norm": 0.0626775324344635,
+ "learning_rate": 0.00029207241738020136,
+ "loss": 1.9473145008087158,
+ "step": 1892
+ },
+ {
+ "epoch": 26.29268292682927,
+ "grad_norm": 0.05936308950185776,
+ "learning_rate": 0.0002918060157470294,
+ "loss": 1.946176290512085,
+ "step": 1893
+ },
+ {
+ "epoch": 26.306620209059233,
+ "grad_norm": 0.06098832190036774,
+ "learning_rate": 0.00029153962313264856,
+ "loss": 1.9415948390960693,
+ "step": 1894
+ },
+ {
+ "epoch": 26.320557491289197,
+ "grad_norm": 0.06257472187280655,
+ "learning_rate": 0.0002912732397516862,
+ "loss": 1.9476375579833984,
+ "step": 1895
+ },
+ {
+ "epoch": 26.334494773519165,
+ "grad_norm": 0.06173890084028244,
+ "learning_rate": 0.00029100686581876283,
+ "loss": 1.9434869289398193,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34843205574913,
+ "grad_norm": 0.0614108070731163,
+ "learning_rate": 0.0002907405015484911,
+ "loss": 1.9595987796783447,
+ "step": 1897
+ },
+ {
+ "epoch": 26.362369337979093,
+ "grad_norm": 0.06131064146757126,
+ "learning_rate": 0.0002904741471554758,
+ "loss": 1.9638384580612183,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37630662020906,
+ "grad_norm": 0.0620097853243351,
+ "learning_rate": 0.0002902078028543139,
+ "loss": 1.9308812618255615,
+ "step": 1899
+ },
+ {
+ "epoch": 26.390243902439025,
+ "grad_norm": 0.06417243927717209,
+ "learning_rate": 0.00028994146885959416,
+ "loss": 1.9541051387786865,
+ "step": 1900
+ },
+ {
+ "epoch": 26.40418118466899,
+ "grad_norm": 0.061548616737127304,
+ "learning_rate": 0.00028967514538589715,
+ "loss": 1.9431400299072266,
+ "step": 1901
+ },
+ {
+ "epoch": 26.418118466898953,
+ "grad_norm": 0.0631798654794693,
+ "learning_rate": 0.0002894088326477947,
+ "loss": 1.9591906070709229,
+ "step": 1902
+ },
+ {
+ "epoch": 26.43205574912892,
+ "grad_norm": 0.06283508986234665,
+ "learning_rate": 0.0002891425308598503,
+ "loss": 1.943403720855713,
+ "step": 1903
+ },
+ {
+ "epoch": 26.445993031358885,
+ "grad_norm": 0.06297212839126587,
+ "learning_rate": 0.00028887624023661866,
+ "loss": 1.9608395099639893,
+ "step": 1904
+ },
+ {
+ "epoch": 26.45993031358885,
+ "grad_norm": 0.06354014575481415,
+ "learning_rate": 0.00028860996099264505,
+ "loss": 1.9444423913955688,
+ "step": 1905
+ },
+ {
+ "epoch": 26.473867595818817,
+ "grad_norm": 0.06168603152036667,
+ "learning_rate": 0.000288343693342466,
+ "loss": 1.9628558158874512,
+ "step": 1906
+ },
+ {
+ "epoch": 26.48780487804878,
+ "grad_norm": 0.06447484344244003,
+ "learning_rate": 0.00028807743750060847,
+ "loss": 1.9654959440231323,
+ "step": 1907
+ },
+ {
+ "epoch": 26.501742160278745,
+ "grad_norm": 0.06281430274248123,
+ "learning_rate": 0.00028781119368159004,
+ "loss": 1.9553298950195312,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51567944250871,
+ "grad_norm": 0.06198422610759735,
+ "learning_rate": 0.00028754496209991843,
+ "loss": 1.9523322582244873,
+ "step": 1909
+ },
+ {
+ "epoch": 26.529616724738677,
+ "grad_norm": 0.062765933573246,
+ "learning_rate": 0.0002872787429700917,
+ "loss": 1.9606122970581055,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54355400696864,
+ "grad_norm": 0.06762545555830002,
+ "learning_rate": 0.0002870125365065979,
+ "loss": 1.9565579891204834,
+ "step": 1911
+ },
+ {
+ "epoch": 26.557491289198605,
+ "grad_norm": 0.06395747512578964,
+ "learning_rate": 0.00028674634292391463,
+ "loss": 1.962345838546753,
+ "step": 1912
+ },
+ {
+ "epoch": 26.571428571428573,
+ "grad_norm": 0.060820501297712326,
+ "learning_rate": 0.0002864801624365093,
+ "loss": 1.9698963165283203,
+ "step": 1913
+ },
+ {
+ "epoch": 26.585365853658537,
+ "grad_norm": 0.0644717738032341,
+ "learning_rate": 0.0002862139952588387,
+ "loss": 1.9503817558288574,
+ "step": 1914
+ },
+ {
+ "epoch": 26.5993031358885,
+ "grad_norm": 0.06223372370004654,
+ "learning_rate": 0.000285947841605349,
+ "loss": 1.9556928873062134,
+ "step": 1915
+ },
+ {
+ "epoch": 26.613240418118465,
+ "grad_norm": 0.0660606324672699,
+ "learning_rate": 0.00028568170169047523,
+ "loss": 1.9794392585754395,
+ "step": 1916
+ },
+ {
+ "epoch": 26.627177700348433,
+ "grad_norm": 0.06215149909257889,
+ "learning_rate": 0.00028541557572864154,
+ "loss": 1.956440806388855,
+ "step": 1917
+ },
+ {
+ "epoch": 26.641114982578397,
+ "grad_norm": 0.06647448241710663,
+ "learning_rate": 0.000285149463934261,
+ "loss": 1.9618154764175415,
+ "step": 1918
+ },
+ {
+ "epoch": 26.65505226480836,
+ "grad_norm": 0.06702937185764313,
+ "learning_rate": 0.0002848833665217349,
+ "loss": 1.9652760028839111,
+ "step": 1919
+ },
+ {
+ "epoch": 26.66898954703833,
+ "grad_norm": 0.06669468432664871,
+ "learning_rate": 0.0002846172837054532,
+ "loss": 1.9627275466918945,
+ "step": 1920
+ },
+ {
+ "epoch": 26.682926829268293,
+ "grad_norm": 0.06321994960308075,
+ "learning_rate": 0.0002843512156997939,
+ "loss": 1.966722846031189,
+ "step": 1921
+ },
+ {
+ "epoch": 26.696864111498257,
+ "grad_norm": 0.06267281621694565,
+ "learning_rate": 0.0002840851627191234,
+ "loss": 1.9646657705307007,
+ "step": 1922
+ },
+ {
+ "epoch": 26.71080139372822,
+ "grad_norm": 0.06576424092054367,
+ "learning_rate": 0.0002838191249777955,
+ "loss": 1.950223445892334,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72473867595819,
+ "grad_norm": 0.06047007441520691,
+ "learning_rate": 0.00028355310269015225,
+ "loss": 1.9768667221069336,
+ "step": 1924
+ },
+ {
+ "epoch": 26.738675958188153,
+ "grad_norm": 0.06493274867534637,
+ "learning_rate": 0.00028328709607052297,
+ "loss": 1.9484598636627197,
+ "step": 1925
+ },
+ {
+ "epoch": 26.752613240418118,
+ "grad_norm": 0.06330715864896774,
+ "learning_rate": 0.0002830211053332242,
+ "loss": 1.9732015132904053,
+ "step": 1926
+ },
+ {
+ "epoch": 26.766550522648085,
+ "grad_norm": 0.06184522062540054,
+ "learning_rate": 0.0002827551306925601,
+ "loss": 1.9706918001174927,
+ "step": 1927
+ },
+ {
+ "epoch": 26.78048780487805,
+ "grad_norm": 0.06290240585803986,
+ "learning_rate": 0.00028248917236282147,
+ "loss": 1.9614533185958862,
+ "step": 1928
+ },
+ {
+ "epoch": 26.794425087108014,
+ "grad_norm": 0.06381867825984955,
+ "learning_rate": 0.0002822232305582863,
+ "loss": 1.960871934890747,
+ "step": 1929
+ },
+ {
+ "epoch": 26.808362369337978,
+ "grad_norm": 0.061407096683979034,
+ "learning_rate": 0.0002819573054932188,
+ "loss": 1.970398187637329,
+ "step": 1930
+ },
+ {
+ "epoch": 26.822299651567945,
+ "grad_norm": 0.06511857360601425,
+ "learning_rate": 0.0002816913973818703,
+ "loss": 1.9459114074707031,
+ "step": 1931
+ },
+ {
+ "epoch": 26.83623693379791,
+ "grad_norm": 0.06411094218492508,
+ "learning_rate": 0.0002814255064384781,
+ "loss": 1.948549509048462,
+ "step": 1932
+ },
+ {
+ "epoch": 26.850174216027874,
+ "grad_norm": 0.06509149819612503,
+ "learning_rate": 0.00028115963287726563,
+ "loss": 1.9682888984680176,
+ "step": 1933
+ },
+ {
+ "epoch": 26.86411149825784,
+ "grad_norm": 0.06972374022006989,
+ "learning_rate": 0.0002808937769124425,
+ "loss": 1.9887568950653076,
+ "step": 1934
+ },
+ {
+ "epoch": 26.878048780487806,
+ "grad_norm": 0.07100297510623932,
+ "learning_rate": 0.000280627938758204,
+ "loss": 1.9728631973266602,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89198606271777,
+ "grad_norm": 0.06550271809101105,
+ "learning_rate": 0.00028036211862873117,
+ "loss": 1.9675276279449463,
+ "step": 1936
+ },
+ {
+ "epoch": 26.905923344947734,
+ "grad_norm": 0.06671806424856186,
+ "learning_rate": 0.0002800963167381904,
+ "loss": 1.985438346862793,
+ "step": 1937
+ },
+ {
+ "epoch": 26.9198606271777,
+ "grad_norm": 0.0698300451040268,
+ "learning_rate": 0.00027983053330073355,
+ "loss": 1.9645981788635254,
+ "step": 1938
+ },
+ {
+ "epoch": 26.933797909407666,
+ "grad_norm": 0.06594336032867432,
+ "learning_rate": 0.00027956476853049765,
+ "loss": 1.9659535884857178,
+ "step": 1939
+ },
+ {
+ "epoch": 26.94773519163763,
+ "grad_norm": 0.06825239211320877,
+ "learning_rate": 0.00027929902264160435,
+ "loss": 1.9709006547927856,
+ "step": 1940
+ },
+ {
+ "epoch": 26.961672473867594,
+ "grad_norm": 0.06996344029903412,
+ "learning_rate": 0.00027903329584816046,
+ "loss": 1.9777134656906128,
+ "step": 1941
+ },
+ {
+ "epoch": 26.975609756097562,
+ "grad_norm": 0.06491006910800934,
+ "learning_rate": 0.0002787675883642572,
+ "loss": 1.9659584760665894,
+ "step": 1942
+ },
+ {
+ "epoch": 26.989547038327526,
+ "grad_norm": 0.06465473026037216,
+ "learning_rate": 0.00027850190040397036,
+ "loss": 1.9739830493927002,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.05315341055393219,
+ "learning_rate": 0.00027823623218135976,
+ "loss": 1.480682373046875,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 0.6356088519096375,
+ "eval_runtime": 36.5058,
+ "eval_samples_per_second": 66.893,
+ "eval_steps_per_second": 0.548,
+ "step": 1944
+ },
+ {
+ "epoch": 27.013937282229964,
+ "grad_norm": 0.061814989894628525,
+ "learning_rate": 0.0002779705839104697,
+ "loss": 1.9167797565460205,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027874564459932,
+ "grad_norm": 0.06356564909219742,
+ "learning_rate": 0.0002777049558053281,
+ "loss": 1.927583932876587,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041811846689896,
+ "grad_norm": 0.06118980795145035,
+ "learning_rate": 0.0002774393480799466,
+ "loss": 1.9252214431762695,
+ "step": 1947
+ },
+ {
+ "epoch": 27.05574912891986,
+ "grad_norm": 0.059413257986307144,
+ "learning_rate": 0.00027717376094832076,
+ "loss": 1.9219372272491455,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069686411149824,
+ "grad_norm": 0.06260813027620316,
+ "learning_rate": 0.0002769081946244293,
+ "loss": 1.922504186630249,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083623693379792,
+ "grad_norm": 0.061976976692676544,
+ "learning_rate": 0.00027664264932223407,
+ "loss": 1.9327895641326904,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097560975609756,
+ "grad_norm": 0.059954315423965454,
+ "learning_rate": 0.00027637712525568024,
+ "loss": 1.9138646125793457,
+ "step": 1951
+ },
+ {
+ "epoch": 27.11149825783972,
+ "grad_norm": 0.06157257780432701,
+ "learning_rate": 0.0002761116226386958,
+ "loss": 1.9266639947891235,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125435540069688,
+ "grad_norm": 0.06179584190249443,
+ "learning_rate": 0.00027584614168519125,
+ "loss": 1.9255129098892212,
+ "step": 1953
+ },
+ {
+ "epoch": 27.139372822299652,
+ "grad_norm": 0.0608953982591629,
+ "learning_rate": 0.00027558068260905976,
+ "loss": 1.9159553050994873,
+ "step": 1954
+ },
+ {
+ "epoch": 27.153310104529616,
+ "grad_norm": 0.06067467853426933,
+ "learning_rate": 0.00027531524562417734,
+ "loss": 1.9260437488555908,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16724738675958,
+ "grad_norm": 0.06343036144971848,
+ "learning_rate": 0.00027504983094440126,
+ "loss": 1.9118573665618896,
+ "step": 1956
+ },
+ {
+ "epoch": 27.181184668989548,
+ "grad_norm": 0.06201693415641785,
+ "learning_rate": 0.0002747844387835716,
+ "loss": 1.9324994087219238,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195121951219512,
+ "grad_norm": 0.06198827177286148,
+ "learning_rate": 0.0002745190693555099,
+ "loss": 1.9376416206359863,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209059233449477,
+ "grad_norm": 0.06404320895671844,
+ "learning_rate": 0.0002742537228740197,
+ "loss": 1.9419097900390625,
+ "step": 1959
+ },
+ {
+ "epoch": 27.222996515679444,
+ "grad_norm": 0.062050990760326385,
+ "learning_rate": 0.00027398839955288575,
+ "loss": 1.9205586910247803,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23693379790941,
+ "grad_norm": 0.05903782323002815,
+ "learning_rate": 0.00027372309960587424,
+ "loss": 1.9344040155410767,
+ "step": 1961
+ },
+ {
+ "epoch": 27.250871080139373,
+ "grad_norm": 0.06662431359291077,
+ "learning_rate": 0.0002734578232467327,
+ "loss": 1.9293982982635498,
+ "step": 1962
+ },
+ {
+ "epoch": 27.264808362369337,
+ "grad_norm": 0.06605469435453415,
+ "learning_rate": 0.0002731925706891891,
+ "loss": 1.9288328886032104,
+ "step": 1963
+ },
+ {
+ "epoch": 27.278745644599304,
+ "grad_norm": 0.062087010592222214,
+ "learning_rate": 0.0002729273421469532,
+ "loss": 1.9324290752410889,
+ "step": 1964
+ },
+ {
+ "epoch": 27.29268292682927,
+ "grad_norm": 0.062059979885816574,
+ "learning_rate": 0.00027266213783371434,
+ "loss": 1.933382272720337,
+ "step": 1965
+ },
+ {
+ "epoch": 27.306620209059233,
+ "grad_norm": 0.06283893436193466,
+ "learning_rate": 0.00027239695796314327,
+ "loss": 1.9310166835784912,
+ "step": 1966
+ },
+ {
+ "epoch": 27.320557491289197,
+ "grad_norm": 0.062266793102025986,
+ "learning_rate": 0.0002721318027488902,
+ "loss": 1.9510637521743774,
+ "step": 1967
+ },
+ {
+ "epoch": 27.334494773519165,
+ "grad_norm": 0.0629708543419838,
+ "learning_rate": 0.00027186667240458617,
+ "loss": 1.921417236328125,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34843205574913,
+ "grad_norm": 0.0634312853217125,
+ "learning_rate": 0.0002716015671438419,
+ "loss": 1.9262259006500244,
+ "step": 1969
+ },
+ {
+ "epoch": 27.362369337979093,
+ "grad_norm": 0.062355365604162216,
+ "learning_rate": 0.0002713364871802478,
+ "loss": 1.9553534984588623,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37630662020906,
+ "grad_norm": 0.06175858899950981,
+ "learning_rate": 0.0002710714327273741,
+ "loss": 1.939396858215332,
+ "step": 1971
+ },
+ {
+ "epoch": 27.390243902439025,
+ "grad_norm": 0.06311390548944473,
+ "learning_rate": 0.0002708064039987704,
+ "loss": 1.9329023361206055,
+ "step": 1972
+ },
+ {
+ "epoch": 27.40418118466899,
+ "grad_norm": 0.062033023685216904,
+ "learning_rate": 0.00027054140120796546,
+ "loss": 1.9308583736419678,
+ "step": 1973
+ },
+ {
+ "epoch": 27.418118466898953,
+ "grad_norm": 0.06312143802642822,
+ "learning_rate": 0.0002702764245684672,
+ "loss": 1.9487743377685547,
+ "step": 1974
+ },
+ {
+ "epoch": 27.43205574912892,
+ "grad_norm": 0.0649493932723999,
+ "learning_rate": 0.0002700114742937627,
+ "loss": 1.9450247287750244,
+ "step": 1975
+ },
+ {
+ "epoch": 27.445993031358885,
+ "grad_norm": 0.0623517744243145,
+ "learning_rate": 0.00026974655059731754,
+ "loss": 1.9420899152755737,
+ "step": 1976
+ },
+ {
+ "epoch": 27.45993031358885,
+ "grad_norm": 0.06679189950227737,
+ "learning_rate": 0.0002694816536925759,
+ "loss": 1.9443024396896362,
+ "step": 1977
+ },
+ {
+ "epoch": 27.473867595818817,
+ "grad_norm": 0.06560137122869492,
+ "learning_rate": 0.00026921678379296057,
+ "loss": 1.953552484512329,
+ "step": 1978
+ },
+ {
+ "epoch": 27.48780487804878,
+ "grad_norm": 0.06294484436511993,
+ "learning_rate": 0.0002689519411118722,
+ "loss": 1.9333667755126953,
+ "step": 1979
+ },
+ {
+ "epoch": 27.501742160278745,
+ "grad_norm": 0.06416776031255722,
+ "learning_rate": 0.00026868712586269,
+ "loss": 1.950608491897583,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51567944250871,
+ "grad_norm": 0.06297886371612549,
+ "learning_rate": 0.00026842233825877064,
+ "loss": 1.9374010562896729,
+ "step": 1981
+ },
+ {
+ "epoch": 27.529616724738677,
+ "grad_norm": 0.06346481293439865,
+ "learning_rate": 0.0002681575785134487,
+ "loss": 1.9292755126953125,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54355400696864,
+ "grad_norm": 0.06401345133781433,
+ "learning_rate": 0.0002678928468400366,
+ "loss": 1.9518835544586182,
+ "step": 1983
+ },
+ {
+ "epoch": 27.557491289198605,
+ "grad_norm": 0.06174371764063835,
+ "learning_rate": 0.00026762814345182367,
+ "loss": 1.9246001243591309,
+ "step": 1984
+ },
+ {
+ "epoch": 27.571428571428573,
+ "grad_norm": 0.06687969714403152,
+ "learning_rate": 0.0002673634685620767,
+ "loss": 1.9456532001495361,
+ "step": 1985
+ },
+ {
+ "epoch": 27.585365853658537,
+ "grad_norm": 0.06487233936786652,
+ "learning_rate": 0.0002670988223840393,
+ "loss": 1.9369590282440186,
+ "step": 1986
+ },
+ {
+ "epoch": 27.5993031358885,
+ "grad_norm": 0.06265441328287125,
+ "learning_rate": 0.0002668342051309324,
+ "loss": 1.9478905200958252,
+ "step": 1987
+ },
+ {
+ "epoch": 27.613240418118465,
+ "grad_norm": 0.06444588303565979,
+ "learning_rate": 0.00026656961701595306,
+ "loss": 1.923633098602295,
+ "step": 1988
+ },
+ {
+ "epoch": 27.627177700348433,
+ "grad_norm": 0.06363383680582047,
+ "learning_rate": 0.0002663050582522753,
+ "loss": 1.9642283916473389,
+ "step": 1989
+ },
+ {
+ "epoch": 27.641114982578397,
+ "grad_norm": 0.06589404493570328,
+ "learning_rate": 0.00026604052905304946,
+ "loss": 1.9349925518035889,
+ "step": 1990
+ },
+ {
+ "epoch": 27.65505226480836,
+ "grad_norm": 0.0630272924900055,
+ "learning_rate": 0.00026577602963140156,
+ "loss": 1.9420092105865479,
+ "step": 1991
+ },
+ {
+ "epoch": 27.66898954703833,
+ "grad_norm": 0.06480628997087479,
+ "learning_rate": 0.0002655115602004345,
+ "loss": 1.9431254863739014,
+ "step": 1992
+ },
+ {
+ "epoch": 27.682926829268293,
+ "grad_norm": 0.0632273331284523,
+ "learning_rate": 0.00026524712097322604,
+ "loss": 1.9446561336517334,
+ "step": 1993
+ },
+ {
+ "epoch": 27.696864111498257,
+ "grad_norm": 0.06315293163061142,
+ "learning_rate": 0.0002649827121628305,
+ "loss": 1.9283469915390015,
+ "step": 1994
+ },
+ {
+ "epoch": 27.71080139372822,
+ "grad_norm": 0.0651608556509018,
+ "learning_rate": 0.00026471833398227694,
+ "loss": 1.938418984413147,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72473867595819,
+ "grad_norm": 0.06380520761013031,
+ "learning_rate": 0.0002644539866445703,
+ "loss": 1.9424567222595215,
+ "step": 1996
+ },
+ {
+ "epoch": 27.738675958188153,
+ "grad_norm": 0.0646371841430664,
+ "learning_rate": 0.00026418967036269045,
+ "loss": 1.9451972246170044,
+ "step": 1997
+ },
+ {
+ "epoch": 27.752613240418118,
+ "grad_norm": 0.06506325304508209,
+ "learning_rate": 0.0002639253853495921,
+ "loss": 1.9419035911560059,
+ "step": 1998
+ },
+ {
+ "epoch": 27.766550522648085,
+ "grad_norm": 0.06286903470754623,
+ "learning_rate": 0.00026366113181820506,
+ "loss": 1.9452807903289795,
+ "step": 1999
+ },
+ {
+ "epoch": 27.78048780487805,
+ "grad_norm": 0.06661684811115265,
+ "learning_rate": 0.00026339690998143346,
+ "loss": 1.9469493627548218,
+ "step": 2000
+ },
+ {
+ "epoch": 27.794425087108014,
+ "grad_norm": 0.06329949200153351,
+ "learning_rate": 0.00026313272005215637,
+ "loss": 1.935401201248169,
+ "step": 2001
+ },
+ {
+ "epoch": 27.808362369337978,
+ "grad_norm": 0.06465955078601837,
+ "learning_rate": 0.00026286856224322645,
+ "loss": 1.9547067880630493,
+ "step": 2002
+ },
+ {
+ "epoch": 27.822299651567945,
+ "grad_norm": 0.06732604652643204,
+ "learning_rate": 0.00026260443676747114,
+ "loss": 1.9547715187072754,
+ "step": 2003
+ },
+ {
+ "epoch": 27.83623693379791,
+ "grad_norm": 0.0651276484131813,
+ "learning_rate": 0.00026234034383769157,
+ "loss": 1.9498482942581177,
+ "step": 2004
+ },
+ {
+ "epoch": 27.850174216027874,
+ "grad_norm": 0.06699621677398682,
+ "learning_rate": 0.0002620762836666625,
+ "loss": 1.9338326454162598,
+ "step": 2005
+ },
+ {
+ "epoch": 27.86411149825784,
+ "grad_norm": 0.0657275915145874,
+ "learning_rate": 0.00026181225646713257,
+ "loss": 1.9473168849945068,
+ "step": 2006
+ },
+ {
+ "epoch": 27.878048780487806,
+ "grad_norm": 0.06368435174226761,
+ "learning_rate": 0.0002615482624518236,
+ "loss": 1.9568496942520142,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89198606271777,
+ "grad_norm": 0.06439761072397232,
+ "learning_rate": 0.0002612843018334309,
+ "loss": 1.9380487203598022,
+ "step": 2008
+ },
+ {
+ "epoch": 27.905923344947734,
+ "grad_norm": 0.06287812441587448,
+ "learning_rate": 0.00026102037482462256,
+ "loss": 1.9562499523162842,
+ "step": 2009
+ },
+ {
+ "epoch": 27.9198606271777,
+ "grad_norm": 0.06544869393110275,
+ "learning_rate": 0.0002607564816380403,
+ "loss": 1.9567855596542358,
+ "step": 2010
+ },
+ {
+ "epoch": 27.933797909407666,
+ "grad_norm": 0.06412878632545471,
+ "learning_rate": 0.0002604926224862975,
+ "loss": 1.9528976678848267,
+ "step": 2011
+ },
+ {
+ "epoch": 27.94773519163763,
+ "grad_norm": 0.06460773944854736,
+ "learning_rate": 0.0002602287975819811,
+ "loss": 1.9536967277526855,
+ "step": 2012
+ },
+ {
+ "epoch": 27.961672473867594,
+ "grad_norm": 0.06466975808143616,
+ "learning_rate": 0.00025996500713765,
+ "loss": 1.9486842155456543,
+ "step": 2013
+ },
+ {
+ "epoch": 27.975609756097562,
+ "grad_norm": 0.0657997727394104,
+ "learning_rate": 0.0002597012513658352,
+ "loss": 1.9634342193603516,
+ "step": 2014
+ },
+ {
+ "epoch": 27.989547038327526,
+ "grad_norm": 0.06382985413074493,
+ "learning_rate": 0.00025943753047904026,
+ "loss": 1.951185941696167,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.05184071138501167,
+ "learning_rate": 0.0002591738446897401,
+ "loss": 1.450034737586975,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 0.6368818283081055,
+ "eval_runtime": 36.4264,
+ "eval_samples_per_second": 67.039,
+ "eval_steps_per_second": 0.549,
+ "step": 2016
+ },
+ {
+ "epoch": 28.013937282229964,
+ "grad_norm": 0.06179628521203995,
+ "learning_rate": 0.00025891019421038177,
+ "loss": 1.8983266353607178,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027874564459932,
+ "grad_norm": 0.06494797021150589,
+ "learning_rate": 0.00025864657925338345,
+ "loss": 1.9054467678070068,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041811846689896,
+ "grad_norm": 0.0576489195227623,
+ "learning_rate": 0.00025838300003113514,
+ "loss": 1.9130041599273682,
+ "step": 2019
+ },
+ {
+ "epoch": 28.05574912891986,
+ "grad_norm": 0.06085439771413803,
+ "learning_rate": 0.0002581194567559979,
+ "loss": 1.913049578666687,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069686411149824,
+ "grad_norm": 0.06129859387874603,
+ "learning_rate": 0.00025785594964030365,
+ "loss": 1.9181420803070068,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083623693379792,
+ "grad_norm": 0.06114889681339264,
+ "learning_rate": 0.0002575924788963554,
+ "loss": 1.905306339263916,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097560975609756,
+ "grad_norm": 0.05999523028731346,
+ "learning_rate": 0.0002573290447364268,
+ "loss": 1.9111361503601074,
+ "step": 2023
+ },
+ {
+ "epoch": 28.11149825783972,
+ "grad_norm": 0.059980180114507675,
+ "learning_rate": 0.0002570656473727619,
+ "loss": 1.9141806364059448,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125435540069688,
+ "grad_norm": 0.06263387203216553,
+ "learning_rate": 0.0002568022870175752,
+ "loss": 1.9160103797912598,
+ "step": 2025
+ },
+ {
+ "epoch": 28.139372822299652,
+ "grad_norm": 0.06106845661997795,
+ "learning_rate": 0.00025653896388305134,
+ "loss": 1.9279768466949463,
+ "step": 2026
+ },
+ {
+ "epoch": 28.153310104529616,
+ "grad_norm": 0.060402341187000275,
+ "learning_rate": 0.0002562756781813453,
+ "loss": 1.9093596935272217,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16724738675958,
+ "grad_norm": 0.062007319182157516,
+ "learning_rate": 0.00025601243012458126,
+ "loss": 1.9311325550079346,
+ "step": 2028
+ },
+ {
+ "epoch": 28.181184668989548,
+ "grad_norm": 0.06392303109169006,
+ "learning_rate": 0.00025574921992485366,
+ "loss": 1.9102120399475098,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195121951219512,
+ "grad_norm": 0.06318432092666626,
+ "learning_rate": 0.000255486047794226,
+ "loss": 1.919282078742981,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209059233449477,
+ "grad_norm": 0.06065482273697853,
+ "learning_rate": 0.0002552229139447316,
+ "loss": 1.9156081676483154,
+ "step": 2031
+ },
+ {
+ "epoch": 28.222996515679444,
+ "grad_norm": 0.061966441571712494,
+ "learning_rate": 0.00025495981858837235,
+ "loss": 1.914115071296692,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23693379790941,
+ "grad_norm": 0.06226721405982971,
+ "learning_rate": 0.0002546967619371195,
+ "loss": 1.9121596813201904,
+ "step": 2033
+ },
+ {
+ "epoch": 28.250871080139373,
+ "grad_norm": 0.06150427833199501,
+ "learning_rate": 0.0002544337442029133,
+ "loss": 1.9173963069915771,
+ "step": 2034
+ },
+ {
+ "epoch": 28.264808362369337,
+ "grad_norm": 0.06378372013568878,
+ "learning_rate": 0.00025417076559766194,
+ "loss": 1.909637451171875,
+ "step": 2035
+ },
+ {
+ "epoch": 28.278745644599304,
+ "grad_norm": 0.06366439908742905,
+ "learning_rate": 0.000253907826333243,
+ "loss": 1.9096641540527344,
+ "step": 2036
+ },
+ {
+ "epoch": 28.29268292682927,
+ "grad_norm": 0.0645628497004509,
+ "learning_rate": 0.00025364492662150145,
+ "loss": 1.919980525970459,
+ "step": 2037
+ },
+ {
+ "epoch": 28.306620209059233,
+ "grad_norm": 0.06325099617242813,
+ "learning_rate": 0.0002533820666742514,
+ "loss": 1.9110815525054932,
+ "step": 2038
+ },
+ {
+ "epoch": 28.320557491289197,
+ "grad_norm": 0.06190553680062294,
+ "learning_rate": 0.00025311924670327364,
+ "loss": 1.9132925271987915,
+ "step": 2039
+ },
+ {
+ "epoch": 28.334494773519165,
+ "grad_norm": 0.066350057721138,
+ "learning_rate": 0.00025285646692031804,
+ "loss": 1.9073128700256348,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34843205574913,
+ "grad_norm": 0.06301865726709366,
+ "learning_rate": 0.0002525937275371013,
+ "loss": 1.8958029747009277,
+ "step": 2041
+ },
+ {
+ "epoch": 28.362369337979093,
+ "grad_norm": 0.06601684540510178,
+ "learning_rate": 0.00025233102876530785,
+ "loss": 1.9298090934753418,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37630662020906,
+ "grad_norm": 0.06607081741094589,
+ "learning_rate": 0.0002520683708165894,
+ "loss": 1.9166982173919678,
+ "step": 2043
+ },
+ {
+ "epoch": 28.390243902439025,
+ "grad_norm": 0.06442136317491531,
+ "learning_rate": 0.0002518057539025646,
+ "loss": 1.901548981666565,
+ "step": 2044
+ },
+ {
+ "epoch": 28.40418118466899,
+ "grad_norm": 0.06346907466650009,
+ "learning_rate": 0.00025154317823481917,
+ "loss": 1.913223147392273,
+ "step": 2045
+ },
+ {
+ "epoch": 28.418118466898953,
+ "grad_norm": 0.06854342669248581,
+ "learning_rate": 0.0002512806440249056,
+ "loss": 1.912400722503662,
+ "step": 2046
+ },
+ {
+ "epoch": 28.43205574912892,
+ "grad_norm": 0.0666179209947586,
+ "learning_rate": 0.00025101815148434296,
+ "loss": 1.917931318283081,
+ "step": 2047
+ },
+ {
+ "epoch": 28.445993031358885,
+ "grad_norm": 0.06367912888526917,
+ "learning_rate": 0.00025075570082461684,
+ "loss": 1.9296393394470215,
+ "step": 2048
+ },
+ {
+ "epoch": 28.45993031358885,
+ "grad_norm": 0.06878827512264252,
+ "learning_rate": 0.0002504932922571789,
+ "loss": 1.9146850109100342,
+ "step": 2049
+ },
+ {
+ "epoch": 28.473867595818817,
+ "grad_norm": 0.06371448934078217,
+ "learning_rate": 0.00025023092599344706,
+ "loss": 1.909759521484375,
+ "step": 2050
+ },
+ {
+ "epoch": 28.48780487804878,
+ "grad_norm": 0.06354286521673203,
+ "learning_rate": 0.0002499686022448049,
+ "loss": 1.9349541664123535,
+ "step": 2051
+ },
+ {
+ "epoch": 28.501742160278745,
+ "grad_norm": 0.06779763847589493,
+ "learning_rate": 0.00024970632122260216,
+ "loss": 1.913719654083252,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51567944250871,
+ "grad_norm": 0.06543827801942825,
+ "learning_rate": 0.0002494440831381538,
+ "loss": 1.9296395778656006,
+ "step": 2053
+ },
+ {
+ "epoch": 28.529616724738677,
+ "grad_norm": 0.06395813822746277,
+ "learning_rate": 0.00024918188820274016,
+ "loss": 1.9255974292755127,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54355400696864,
+ "grad_norm": 0.0646572858095169,
+ "learning_rate": 0.0002489197366276073,
+ "loss": 1.9387515783309937,
+ "step": 2055
+ },
+ {
+ "epoch": 28.557491289198605,
+ "grad_norm": 0.06319864094257355,
+ "learning_rate": 0.0002486576286239657,
+ "loss": 1.9284127950668335,
+ "step": 2056
+ },
+ {
+ "epoch": 28.571428571428573,
+ "grad_norm": 0.065260149538517,
+ "learning_rate": 0.0002483955644029913,
+ "loss": 1.9322850704193115,
+ "step": 2057
+ },
+ {
+ "epoch": 28.585365853658537,
+ "grad_norm": 0.06620555371046066,
+ "learning_rate": 0.0002481335441758243,
+ "loss": 1.9043277502059937,
+ "step": 2058
+ },
+ {
+ "epoch": 28.5993031358885,
+ "grad_norm": 0.06358697265386581,
+ "learning_rate": 0.0002478715681535699,
+ "loss": 1.9008917808532715,
+ "step": 2059
+ },
+ {
+ "epoch": 28.613240418118465,
+ "grad_norm": 0.06863846629858017,
+ "learning_rate": 0.00024760963654729717,
+ "loss": 1.9327411651611328,
+ "step": 2060
+ },
+ {
+ "epoch": 28.627177700348433,
+ "grad_norm": 0.06971991807222366,
+ "learning_rate": 0.0002473477495680397,
+ "loss": 1.9262962341308594,
+ "step": 2061
+ },
+ {
+ "epoch": 28.641114982578397,
+ "grad_norm": 0.06454122811555862,
+ "learning_rate": 0.00024708590742679546,
+ "loss": 1.9252219200134277,
+ "step": 2062
+ },
+ {
+ "epoch": 28.65505226480836,
+ "grad_norm": 0.0696180909872055,
+ "learning_rate": 0.00024682411033452546,
+ "loss": 1.909650444984436,
+ "step": 2063
+ },
+ {
+ "epoch": 28.66898954703833,
+ "grad_norm": 0.06893020123243332,
+ "learning_rate": 0.0002465623585021553,
+ "loss": 1.9374496936798096,
+ "step": 2064
+ },
+ {
+ "epoch": 28.682926829268293,
+ "grad_norm": 0.06522615998983383,
+ "learning_rate": 0.0002463006521405733,
+ "loss": 1.9298205375671387,
+ "step": 2065
+ },
+ {
+ "epoch": 28.696864111498257,
+ "grad_norm": 0.06601646542549133,
+ "learning_rate": 0.0002460389914606319,
+ "loss": 1.921603798866272,
+ "step": 2066
+ },
+ {
+ "epoch": 28.71080139372822,
+ "grad_norm": 0.06664327532052994,
+ "learning_rate": 0.00024577737667314615,
+ "loss": 1.9233787059783936,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72473867595819,
+ "grad_norm": 0.06673416495323181,
+ "learning_rate": 0.00024551580798889446,
+ "loss": 1.9446074962615967,
+ "step": 2068
+ },
+ {
+ "epoch": 28.738675958188153,
+ "grad_norm": 0.06593875586986542,
+ "learning_rate": 0.00024525428561861804,
+ "loss": 1.92313814163208,
+ "step": 2069
+ },
+ {
+ "epoch": 28.752613240418118,
+ "grad_norm": 0.06456844508647919,
+ "learning_rate": 0.0002449928097730207,
+ "loss": 1.944153070449829,
+ "step": 2070
+ },
+ {
+ "epoch": 28.766550522648085,
+ "grad_norm": 0.06549357622861862,
+ "learning_rate": 0.00024473138066276876,
+ "loss": 1.9299695491790771,
+ "step": 2071
+ },
+ {
+ "epoch": 28.78048780487805,
+ "grad_norm": 0.0650298222899437,
+ "learning_rate": 0.0002444699984984909,
+ "loss": 1.9266353845596313,
+ "step": 2072
+ },
+ {
+ "epoch": 28.794425087108014,
+ "grad_norm": 0.06307881325483322,
+ "learning_rate": 0.0002442086634907782,
+ "loss": 1.9165664911270142,
+ "step": 2073
+ },
+ {
+ "epoch": 28.808362369337978,
+ "grad_norm": 0.06324006617069244,
+ "learning_rate": 0.00024394737585018328,
+ "loss": 1.9054509401321411,
+ "step": 2074
+ },
+ {
+ "epoch": 28.822299651567945,
+ "grad_norm": 0.06384851038455963,
+ "learning_rate": 0.00024368613578722113,
+ "loss": 1.9158889055252075,
+ "step": 2075
+ },
+ {
+ "epoch": 28.83623693379791,
+ "grad_norm": 0.06377598643302917,
+ "learning_rate": 0.00024342494351236799,
+ "loss": 1.919345736503601,
+ "step": 2076
+ },
+ {
+ "epoch": 28.850174216027874,
+ "grad_norm": 0.0630112960934639,
+ "learning_rate": 0.0002431637992360618,
+ "loss": 1.935530662536621,
+ "step": 2077
+ },
+ {
+ "epoch": 28.86411149825784,
+ "grad_norm": 0.06481339782476425,
+ "learning_rate": 0.00024290270316870184,
+ "loss": 1.927825927734375,
+ "step": 2078
+ },
+ {
+ "epoch": 28.878048780487806,
+ "grad_norm": 0.06289646029472351,
+ "learning_rate": 0.0002426416555206484,
+ "loss": 1.9241056442260742,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89198606271777,
+ "grad_norm": 0.06385444849729538,
+ "learning_rate": 0.000242380656502223,
+ "loss": 1.9496092796325684,
+ "step": 2080
+ },
+ {
+ "epoch": 28.905923344947734,
+ "grad_norm": 0.06434157490730286,
+ "learning_rate": 0.00024211970632370756,
+ "loss": 1.945327639579773,
+ "step": 2081
+ },
+ {
+ "epoch": 28.9198606271777,
+ "grad_norm": 0.06392986327409744,
+ "learning_rate": 0.0002418588051953453,
+ "loss": 1.935096025466919,
+ "step": 2082
+ },
+ {
+ "epoch": 28.933797909407666,
+ "grad_norm": 0.06517285853624344,
+ "learning_rate": 0.0002415979533273392,
+ "loss": 1.9311943054199219,
+ "step": 2083
+ },
+ {
+ "epoch": 28.94773519163763,
+ "grad_norm": 0.06618054956197739,
+ "learning_rate": 0.0002413371509298531,
+ "loss": 1.9326963424682617,
+ "step": 2084
+ },
+ {
+ "epoch": 28.961672473867594,
+ "grad_norm": 0.06552256643772125,
+ "learning_rate": 0.00024107639821301078,
+ "loss": 1.918696403503418,
+ "step": 2085
+ },
+ {
+ "epoch": 28.975609756097562,
+ "grad_norm": 0.06556595861911774,
+ "learning_rate": 0.00024081569538689587,
+ "loss": 1.9261362552642822,
+ "step": 2086
+ },
+ {
+ "epoch": 28.989547038327526,
+ "grad_norm": 0.06585165858268738,
+ "learning_rate": 0.0002405550426615521,
+ "loss": 1.9310712814331055,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.053358353674411774,
+ "learning_rate": 0.00024029444024698248,
+ "loss": 1.4310487508773804,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 0.6385146975517273,
+ "eval_runtime": 37.1743,
+ "eval_samples_per_second": 65.691,
+ "eval_steps_per_second": 0.538,
+ "step": 2088
+ },
+ {
+ "epoch": 29.013937282229964,
+ "grad_norm": 0.06348510086536407,
+ "learning_rate": 0.00024003388835314981,
+ "loss": 1.902433156967163,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027874564459932,
+ "grad_norm": 0.06517558544874191,
+ "learning_rate": 0.00023977338718997595,
+ "loss": 1.9010097980499268,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041811846689896,
+ "grad_norm": 0.06065843999385834,
+ "learning_rate": 0.00023951293696734195,
+ "loss": 1.8971004486083984,
+ "step": 2091
+ },
+ {
+ "epoch": 29.05574912891986,
+ "grad_norm": 0.06288564950227737,
+ "learning_rate": 0.00023925253789508806,
+ "loss": 1.895255208015442,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069686411149824,
+ "grad_norm": 0.06176576018333435,
+ "learning_rate": 0.00023899219018301286,
+ "loss": 1.895385503768921,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083623693379792,
+ "grad_norm": 0.06371054798364639,
+ "learning_rate": 0.00023873189404087405,
+ "loss": 1.8836419582366943,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097560975609756,
+ "grad_norm": 0.06175517290830612,
+ "learning_rate": 0.00023847164967838726,
+ "loss": 1.8960576057434082,
+ "step": 2095
+ },
+ {
+ "epoch": 29.11149825783972,
+ "grad_norm": 0.06139659136533737,
+ "learning_rate": 0.00023821145730522692,
+ "loss": 1.8820221424102783,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125435540069688,
+ "grad_norm": 0.06477366387844086,
+ "learning_rate": 0.0002379513171310251,
+ "loss": 1.8959964513778687,
+ "step": 2097
+ },
+ {
+ "epoch": 29.139372822299652,
+ "grad_norm": 0.060843080282211304,
+ "learning_rate": 0.00023769122936537207,
+ "loss": 1.8921177387237549,
+ "step": 2098
+ },
+ {
+ "epoch": 29.153310104529616,
+ "grad_norm": 0.06286641955375671,
+ "learning_rate": 0.00023743119421781614,
+ "loss": 1.883134365081787,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16724738675958,
+ "grad_norm": 0.0616721510887146,
+ "learning_rate": 0.00023717121189786256,
+ "loss": 1.8961443901062012,
+ "step": 2100
+ },
+ {
+ "epoch": 29.181184668989548,
+ "grad_norm": 0.06490568071603775,
+ "learning_rate": 0.00023691128261497463,
+ "loss": 1.8786497116088867,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195121951219512,
+ "grad_norm": 0.06612647324800491,
+ "learning_rate": 0.0002366514065785725,
+ "loss": 1.8977265357971191,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209059233449477,
+ "grad_norm": 0.0625205710530281,
+ "learning_rate": 0.00023639158399803382,
+ "loss": 1.8995720148086548,
+ "step": 2103
+ },
+ {
+ "epoch": 29.222996515679444,
+ "grad_norm": 0.0733620822429657,
+ "learning_rate": 0.0002361318150826927,
+ "loss": 1.896169662475586,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23693379790941,
+ "grad_norm": 0.0632617399096489,
+ "learning_rate": 0.0002358721000418404,
+ "loss": 1.8905175924301147,
+ "step": 2105
+ },
+ {
+ "epoch": 29.250871080139373,
+ "grad_norm": 0.06658294796943665,
+ "learning_rate": 0.00023561243908472472,
+ "loss": 1.9076403379440308,
+ "step": 2106
+ },
+ {
+ "epoch": 29.264808362369337,
+ "grad_norm": 0.066060371696949,
+ "learning_rate": 0.00023535283242054954,
+ "loss": 1.8913660049438477,
+ "step": 2107
+ },
+ {
+ "epoch": 29.278745644599304,
+ "grad_norm": 0.0640917718410492,
+ "learning_rate": 0.00023509328025847565,
+ "loss": 1.902782678604126,
+ "step": 2108
+ },
+ {
+ "epoch": 29.29268292682927,
+ "grad_norm": 0.06251244992017746,
+ "learning_rate": 0.00023483378280761907,
+ "loss": 1.8909555673599243,
+ "step": 2109
+ },
+ {
+ "epoch": 29.306620209059233,
+ "grad_norm": 0.06345900148153305,
+ "learning_rate": 0.0002345743402770527,
+ "loss": 1.8921617269515991,
+ "step": 2110
+ },
+ {
+ "epoch": 29.320557491289197,
+ "grad_norm": 0.0616324357688427,
+ "learning_rate": 0.0002343149528758042,
+ "loss": 1.908210277557373,
+ "step": 2111
+ },
+ {
+ "epoch": 29.334494773519165,
+ "grad_norm": 0.06260500848293304,
+ "learning_rate": 0.00023405562081285766,
+ "loss": 1.8987236022949219,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34843205574913,
+ "grad_norm": 0.06122080609202385,
+ "learning_rate": 0.0002337963442971522,
+ "loss": 1.8801190853118896,
+ "step": 2113
+ },
+ {
+ "epoch": 29.362369337979093,
+ "grad_norm": 0.06256433576345444,
+ "learning_rate": 0.00023353712353758212,
+ "loss": 1.8950425386428833,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37630662020906,
+ "grad_norm": 0.06358595192432404,
+ "learning_rate": 0.00023327795874299704,
+ "loss": 1.8783059120178223,
+ "step": 2115
+ },
+ {
+ "epoch": 29.390243902439025,
+ "grad_norm": 0.06162576004862785,
+ "learning_rate": 0.0002330188501222012,
+ "loss": 1.9105693101882935,
+ "step": 2116
+ },
+ {
+ "epoch": 29.40418118466899,
+ "grad_norm": 0.06342068314552307,
+ "learning_rate": 0.0002327597978839538,
+ "loss": 1.90647554397583,
+ "step": 2117
+ },
+ {
+ "epoch": 29.418118466898953,
+ "grad_norm": 0.06257889419794083,
+ "learning_rate": 0.00023250080223696852,
+ "loss": 1.9060969352722168,
+ "step": 2118
+ },
+ {
+ "epoch": 29.43205574912892,
+ "grad_norm": 0.06276524066925049,
+ "learning_rate": 0.00023224186338991352,
+ "loss": 1.9064395427703857,
+ "step": 2119
+ },
+ {
+ "epoch": 29.445993031358885,
+ "grad_norm": 0.06155265495181084,
+ "learning_rate": 0.0002319829815514112,
+ "loss": 1.906682014465332,
+ "step": 2120
+ },
+ {
+ "epoch": 29.45993031358885,
+ "grad_norm": 0.06252801418304443,
+ "learning_rate": 0.00023172415693003789,
+ "loss": 1.9077496528625488,
+ "step": 2121
+ },
+ {
+ "epoch": 29.473867595818817,
+ "grad_norm": 0.06420299410820007,
+ "learning_rate": 0.000231465389734324,
+ "loss": 1.9100978374481201,
+ "step": 2122
+ },
+ {
+ "epoch": 29.48780487804878,
+ "grad_norm": 0.06297800689935684,
+ "learning_rate": 0.00023120668017275346,
+ "loss": 1.8885812759399414,
+ "step": 2123
+ },
+ {
+ "epoch": 29.501742160278745,
+ "grad_norm": 0.06437410414218903,
+ "learning_rate": 0.00023094802845376403,
+ "loss": 1.9056107997894287,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51567944250871,
+ "grad_norm": 0.06496672332286835,
+ "learning_rate": 0.00023068943478574662,
+ "loss": 1.8950653076171875,
+ "step": 2125
+ },
+ {
+ "epoch": 29.529616724738677,
+ "grad_norm": 0.06434459984302521,
+ "learning_rate": 0.00023043089937704541,
+ "loss": 1.9208341836929321,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54355400696864,
+ "grad_norm": 0.0647054985165596,
+ "learning_rate": 0.00023017242243595796,
+ "loss": 1.9089730978012085,
+ "step": 2127
+ },
+ {
+ "epoch": 29.557491289198605,
+ "grad_norm": 0.06392117589712143,
+ "learning_rate": 0.00022991400417073427,
+ "loss": 1.895066261291504,
+ "step": 2128
+ },
+ {
+ "epoch": 29.571428571428573,
+ "grad_norm": 0.0638301819562912,
+ "learning_rate": 0.00022965564478957739,
+ "loss": 1.9062610864639282,
+ "step": 2129
+ },
+ {
+ "epoch": 29.585365853658537,
+ "grad_norm": 0.06492150574922562,
+ "learning_rate": 0.0002293973445006427,
+ "loss": 1.9190309047698975,
+ "step": 2130
+ },
+ {
+ "epoch": 29.5993031358885,
+ "grad_norm": 0.06228528916835785,
+ "learning_rate": 0.00022913910351203816,
+ "loss": 1.9015860557556152,
+ "step": 2131
+ },
+ {
+ "epoch": 29.613240418118465,
+ "grad_norm": 0.06274473667144775,
+ "learning_rate": 0.00022888092203182377,
+ "loss": 1.9092034101486206,
+ "step": 2132
+ },
+ {
+ "epoch": 29.627177700348433,
+ "grad_norm": 0.06517026573419571,
+ "learning_rate": 0.00022862280026801182,
+ "loss": 1.9104348421096802,
+ "step": 2133
+ },
+ {
+ "epoch": 29.641114982578397,
+ "grad_norm": 0.06522919237613678,
+ "learning_rate": 0.00022836473842856623,
+ "loss": 1.906738042831421,
+ "step": 2134
+ },
+ {
+ "epoch": 29.65505226480836,
+ "grad_norm": 0.06278976052999496,
+ "learning_rate": 0.00022810673672140272,
+ "loss": 1.9056813716888428,
+ "step": 2135
+ },
+ {
+ "epoch": 29.66898954703833,
+ "grad_norm": 0.06465253978967667,
+ "learning_rate": 0.0002278487953543889,
+ "loss": 1.9165875911712646,
+ "step": 2136
+ },
+ {
+ "epoch": 29.682926829268293,
+ "grad_norm": 0.0656580775976181,
+ "learning_rate": 0.00022759091453534308,
+ "loss": 1.9225130081176758,
+ "step": 2137
+ },
+ {
+ "epoch": 29.696864111498257,
+ "grad_norm": 0.0625176951289177,
+ "learning_rate": 0.00022733309447203553,
+ "loss": 1.9104106426239014,
+ "step": 2138
+ },
+ {
+ "epoch": 29.71080139372822,
+ "grad_norm": 0.06598987430334091,
+ "learning_rate": 0.00022707533537218695,
+ "loss": 1.9182713031768799,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72473867595819,
+ "grad_norm": 0.063861183822155,
+ "learning_rate": 0.00022681763744346938,
+ "loss": 1.9201741218566895,
+ "step": 2140
+ },
+ {
+ "epoch": 29.738675958188153,
+ "grad_norm": 0.065862737596035,
+ "learning_rate": 0.00022656000089350524,
+ "loss": 1.8971748352050781,
+ "step": 2141
+ },
+ {
+ "epoch": 29.752613240418118,
+ "grad_norm": 0.06543151289224625,
+ "learning_rate": 0.00022630242592986766,
+ "loss": 1.9031867980957031,
+ "step": 2142
+ },
+ {
+ "epoch": 29.766550522648085,
+ "grad_norm": 0.06437384337186813,
+ "learning_rate": 0.0002260449127600803,
+ "loss": 1.9082727432250977,
+ "step": 2143
+ },
+ {
+ "epoch": 29.78048780487805,
+ "grad_norm": 0.06707995384931564,
+ "learning_rate": 0.0002257874615916166,
+ "loss": 1.920899748802185,
+ "step": 2144
+ },
+ {
+ "epoch": 29.794425087108014,
+ "grad_norm": 0.06488589942455292,
+ "learning_rate": 0.00022553007263190067,
+ "loss": 1.901809811592102,
+ "step": 2145
+ },
+ {
+ "epoch": 29.808362369337978,
+ "grad_norm": 0.06581971049308777,
+ "learning_rate": 0.00022527274608830574,
+ "loss": 1.9137091636657715,
+ "step": 2146
+ },
+ {
+ "epoch": 29.822299651567945,
+ "grad_norm": 0.06502900272607803,
+ "learning_rate": 0.0002250154821681555,
+ "loss": 1.9089921712875366,
+ "step": 2147
+ },
+ {
+ "epoch": 29.83623693379791,
+ "grad_norm": 0.06428463757038116,
+ "learning_rate": 0.0002247582810787227,
+ "loss": 1.907055139541626,
+ "step": 2148
+ },
+ {
+ "epoch": 29.850174216027874,
+ "grad_norm": 0.06490083038806915,
+ "learning_rate": 0.00022450114302722957,
+ "loss": 1.8931684494018555,
+ "step": 2149
+ },
+ {
+ "epoch": 29.86411149825784,
+ "grad_norm": 0.06519338488578796,
+ "learning_rate": 0.0002242440682208477,
+ "loss": 1.924349308013916,
+ "step": 2150
+ },
+ {
+ "epoch": 29.878048780487806,
+ "grad_norm": 0.06435994058847427,
+ "learning_rate": 0.00022398705686669748,
+ "loss": 1.9001131057739258,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89198606271777,
+ "grad_norm": 0.06389366835355759,
+ "learning_rate": 0.0002237301091718485,
+ "loss": 1.9222545623779297,
+ "step": 2152
+ },
+ {
+ "epoch": 29.905923344947734,
+ "grad_norm": 0.06635434180498123,
+ "learning_rate": 0.00022347322534331865,
+ "loss": 1.9115610122680664,
+ "step": 2153
+ },
+ {
+ "epoch": 29.9198606271777,
+ "grad_norm": 0.06362872570753098,
+ "learning_rate": 0.00022321640558807488,
+ "loss": 1.9033440351486206,
+ "step": 2154
+ },
+ {
+ "epoch": 29.933797909407666,
+ "grad_norm": 0.06656860560178757,
+ "learning_rate": 0.00022295965011303188,
+ "loss": 1.9024994373321533,
+ "step": 2155
+ },
+ {
+ "epoch": 29.94773519163763,
+ "grad_norm": 0.06287530809640884,
+ "learning_rate": 0.00022270295912505317,
+ "loss": 1.9141626358032227,
+ "step": 2156
+ },
+ {
+ "epoch": 29.961672473867594,
+ "grad_norm": 0.06594341993331909,
+ "learning_rate": 0.00022244633283095,
+ "loss": 1.9281123876571655,
+ "step": 2157
+ },
+ {
+ "epoch": 29.975609756097562,
+ "grad_norm": 0.06367179751396179,
+ "learning_rate": 0.0002221897714374814,
+ "loss": 1.9032683372497559,
+ "step": 2158
+ },
+ {
+ "epoch": 29.989547038327526,
+ "grad_norm": 0.06714081764221191,
+ "learning_rate": 0.00022193327515135445,
+ "loss": 1.9118046760559082,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.05437680333852768,
+ "learning_rate": 0.00022167684417922337,
+ "loss": 1.4319559335708618,
+ "step": 2160
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 3600,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 50,
+ "save_steps": 500,
+ "stateful_callbacks": {
+ "TrainerControl": {
+ "args": {
+ "should_epoch_stop": false,
+ "should_evaluate": true,
+ "should_log": false,
+ "should_save": false,
+ "should_training_stop": false
+ },
+ "attributes": {}
+ }
+ },
+ "total_flos": 9.232968049282253e+17,
+ "train_batch_size": 64,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/base-ssl/checkpoint-2160/training_args.bin b/runs/base-ssl/checkpoint-2160/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..cbb50e43950730a04421678098579c835c9d518d
--- /dev/null
+++ b/runs/base-ssl/checkpoint-2160/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7572b8029663dc4d810f9d514c80dc9b976de220cbe72e5abd832ec6ec2ef18b
+size 5265
diff --git a/runs/base-ssl/checkpoint-2520/chat_template.jinja b/runs/base-ssl/checkpoint-2520/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/base-ssl/checkpoint-2520/chat_template.jinja
@@ -0,0 +1,85 @@
+{%- if tools %}
+ {{- '<|im_start|>system\n' }}
+ {%- if messages[0].role == 'system' %}
+ {{- messages[0].content + '\n\n' }}
+ {%- endif %}
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }}
+ {%- for tool in tools %}
+ {{- "\n" }}
+ {{- tool | tojson }}
+ {%- endfor %}
+ {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }}
+{%- else %}
+ {%- if messages[0].role == 'system' %}
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
+ {%- endif %}
+{%- endif %}
+{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
+{%- for message in messages[::-1] %}
+ {%- set index = (messages|length - 1) - loop.index0 %}
+ {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %}
+ {%- set ns.multi_step_tool = false %}
+ {%- set ns.last_query_index = index %}
+ {%- endif %}
+{%- endfor %}
+{%- for message in messages %}
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
+ {%- elif message.role == "assistant" %}
+ {%- set content = message.content %}
+ {%- set reasoning_content = '' %}
+ {%- if message.reasoning_content is defined and message.reasoning_content is not none %}
+ {%- set reasoning_content = message.reasoning_content %}
+ {%- else %}
+ {%- if '' in message.content %}
+ {%- set content = message.content.split('')[-1].lstrip('\n') %}
+ {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %}
+ {%- endif %}
+ {%- endif %}
+ {%- if loop.index0 > ns.last_query_index %}
+ {%- if loop.last or (not loop.last and reasoning_content) %}
+ {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- if message.tool_calls %}
+ {%- for tool_call in message.tool_calls %}
+ {%- if (loop.first and content) or (not loop.first) %}
+ {{- '\n' }}
+ {%- endif %}
+ {%- if tool_call.function %}
+ {%- set tool_call = tool_call.function %}
+ {%- endif %}
+ {{- '\n{"name": "' }}
+ {{- tool_call.name }}
+ {{- '", "arguments": ' }}
+ {%- if tool_call.arguments is string %}
+ {{- tool_call.arguments }}
+ {%- else %}
+ {{- tool_call.arguments | tojson }}
+ {%- endif %}
+ {{- '}\n' }}
+ {%- endfor %}
+ {%- endif %}
+ {{- '<|im_end|>\n' }}
+ {%- elif message.role == "tool" %}
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
+ {{- '<|im_start|>user' }}
+ {%- endif %}
+ {{- '\n\n' }}
+ {{- message.content }}
+ {{- '\n' }}
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
+ {{- '<|im_end|>\n' }}
+ {%- endif %}
+ {%- endif %}
+{%- endfor %}
+{%- if add_generation_prompt %}
+ {{- '<|im_start|>assistant\n' }}
+ {%- if enable_thinking is defined and enable_thinking is false %}
+ {{- '\n\n\n\n' }}
+ {%- endif %}
+{%- endif %}
\ No newline at end of file
diff --git a/runs/base-ssl/checkpoint-2520/config.json b/runs/base-ssl/checkpoint-2520/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/base-ssl/checkpoint-2520/config.json
@@ -0,0 +1,32 @@
+{
+ "architectures": [
+ "LlamaForCausalLM"
+ ],
+ "attention_bias": false,
+ "attention_dropout": 0.0,
+ "bos_token_id": null,
+ "dtype": "float32",
+ "eos_token_id": 151645,
+ "head_dim": 128,
+ "hidden_act": "silu",
+ "hidden_size": 512,
+ "initializer_range": 0.02,
+ "intermediate_size": 1536,
+ "max_position_embeddings": 2048,
+ "mlp_bias": false,
+ "model_type": "llama",
+ "num_attention_heads": 4,
+ "num_hidden_layers": 20,
+ "num_key_value_heads": 4,
+ "pad_token_id": 151645,
+ "pretraining_tp": 1,
+ "rms_norm_eps": 1e-06,
+ "rope_parameters": {
+ "rope_theta": 10000.0,
+ "rope_type": "default"
+ },
+ "tie_word_embeddings": true,
+ "transformers_version": "5.5.0",
+ "use_cache": false,
+ "vocab_size": 151671
+}
diff --git a/runs/base-ssl/checkpoint-2520/generation_config.json b/runs/base-ssl/checkpoint-2520/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/base-ssl/checkpoint-2520/generation_config.json
@@ -0,0 +1,11 @@
+{
+ "_from_model_config": true,
+ "eos_token_id": [
+ 151645
+ ],
+ "output_attentions": false,
+ "output_hidden_states": false,
+ "pad_token_id": 151645,
+ "transformers_version": "5.5.0",
+ "use_cache": true
+}
diff --git a/runs/base-ssl/checkpoint-2520/model.safetensors b/runs/base-ssl/checkpoint-2520/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..96bdab97fa70161d451bfb7cc97318dd19f12baa
--- /dev/null
+++ b/runs/base-ssl/checkpoint-2520/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:c5bdd682d5be85c8d01ea811a56294b03ec4e0bd05d85e00f92c26d8ee7f5d09
+size 583356232
diff --git a/runs/base-ssl/checkpoint-2520/optimizer.pt b/runs/base-ssl/checkpoint-2520/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..6d4803bace35ad161de47f06f884aed690a3a204
--- /dev/null
+++ b/runs/base-ssl/checkpoint-2520/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:eec2b64a5f88e09183fd625e48e61a3d9cb5a185ad10dc639e1542f72534a6fb
+size 1166825803
diff --git a/runs/base-ssl/checkpoint-2520/rng_state_0.pth b/runs/base-ssl/checkpoint-2520/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..f6a767b5a760715c982d5f3b7abf7f7ae7024858
--- /dev/null
+++ b/runs/base-ssl/checkpoint-2520/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:77a1aaa8594be4aeac424d02802142f8409ed1e2897c1e46e3c37ed12b93e83c
+size 14917
diff --git a/runs/base-ssl/checkpoint-2520/rng_state_1.pth b/runs/base-ssl/checkpoint-2520/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..b0b2ce7324fa0e3d93e84f806452f72a932cb665
--- /dev/null
+++ b/runs/base-ssl/checkpoint-2520/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:8be9b03fd0264df00f58b952952d0e7adf408ae412c760c45b6919b81dd07768
+size 14917
diff --git a/runs/base-ssl/checkpoint-2520/scheduler.pt b/runs/base-ssl/checkpoint-2520/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..809e415b980a88e74111733a8fbd497a2408afe5
--- /dev/null
+++ b/runs/base-ssl/checkpoint-2520/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:0f5902b2719418cfd49abef69bf26be14b2bfe0841a35d7789b90886cf8ba0fb
+size 1465
diff --git a/runs/base-ssl/checkpoint-2520/tokenizer.json b/runs/base-ssl/checkpoint-2520/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/base-ssl/checkpoint-2520/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:59b6776030505d5b441d0727cce137047df748ab15db6ba3a1bac93c123742fb
+size 11424079
diff --git a/runs/base-ssl/checkpoint-2520/tokenizer_config.json b/runs/base-ssl/checkpoint-2520/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/base-ssl/checkpoint-2520/tokenizer_config.json
@@ -0,0 +1,18 @@
+{
+ "add_prefix_space": false,
+ "backend": "tokenizers",
+ "bos_token": null,
+ "clean_up_tokenization_spaces": false,
+ "eos_token": "<|im_end|>",
+ "errors": "replace",
+ "extra_special_tokens": [
+ "<|l2r_pred|>",
+ "<|r2l_pred|>"
+ ],
+ "is_local": false,
+ "model_max_length": 131072,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/base-ssl/checkpoint-2520/trainer_state.json b/runs/base-ssl/checkpoint-2520/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..90c65984386a880ef52a1983c58a41d614b3f77c
--- /dev/null
+++ b/runs/base-ssl/checkpoint-2520/trainer_state.json
@@ -0,0 +1,17946 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 35.0,
+ "eval_steps": 500,
+ "global_step": 2520,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013937282229965157,
+ "grad_norm": 0.2712002694606781,
+ "learning_rate": 0.0,
+ "loss": 4.000947952270508,
+ "step": 1
+ },
+ {
+ "epoch": 0.027874564459930314,
+ "grad_norm": 0.2709888219833374,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 4.000800132751465,
+ "step": 2
+ },
+ {
+ "epoch": 0.041811846689895474,
+ "grad_norm": 0.2721220850944519,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 3.982931613922119,
+ "step": 3
+ },
+ {
+ "epoch": 0.05574912891986063,
+ "grad_norm": 0.24822379648685455,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 3.948713779449463,
+ "step": 4
+ },
+ {
+ "epoch": 0.06968641114982578,
+ "grad_norm": 0.2103811800479889,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 3.908690929412842,
+ "step": 5
+ },
+ {
+ "epoch": 0.08362369337979095,
+ "grad_norm": 0.18375654518604279,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 3.8660929203033447,
+ "step": 6
+ },
+ {
+ "epoch": 0.0975609756097561,
+ "grad_norm": 0.1471690535545349,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 3.82308030128479,
+ "step": 7
+ },
+ {
+ "epoch": 0.11149825783972125,
+ "grad_norm": 0.11132320016622543,
+ "learning_rate": 4.2e-05,
+ "loss": 3.790834426879883,
+ "step": 8
+ },
+ {
+ "epoch": 0.1254355400696864,
+ "grad_norm": 0.08796700090169907,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 3.7589545249938965,
+ "step": 9
+ },
+ {
+ "epoch": 0.13937282229965156,
+ "grad_norm": 0.07089080661535263,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 3.7346723079681396,
+ "step": 10
+ },
+ {
+ "epoch": 0.15331010452961671,
+ "grad_norm": 0.056723613291978836,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 3.7159838676452637,
+ "step": 11
+ },
+ {
+ "epoch": 0.1672473867595819,
+ "grad_norm": 0.04544799029827118,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 3.701421022415161,
+ "step": 12
+ },
+ {
+ "epoch": 0.18118466898954705,
+ "grad_norm": 0.03551485016942024,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 3.691774845123291,
+ "step": 13
+ },
+ {
+ "epoch": 0.1951219512195122,
+ "grad_norm": 0.028209710493683815,
+ "learning_rate": 7.8e-05,
+ "loss": 3.6860086917877197,
+ "step": 14
+ },
+ {
+ "epoch": 0.20905923344947736,
+ "grad_norm": 0.024290181696414948,
+ "learning_rate": 8.4e-05,
+ "loss": 3.6806883811950684,
+ "step": 15
+ },
+ {
+ "epoch": 0.2229965156794425,
+ "grad_norm": 0.022015230730175972,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 3.677751064300537,
+ "step": 16
+ },
+ {
+ "epoch": 0.23693379790940766,
+ "grad_norm": 0.01960836350917816,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 3.6738266944885254,
+ "step": 17
+ },
+ {
+ "epoch": 0.2508710801393728,
+ "grad_norm": 0.017675744369626045,
+ "learning_rate": 0.000102,
+ "loss": 3.6739063262939453,
+ "step": 18
+ },
+ {
+ "epoch": 0.26480836236933797,
+ "grad_norm": 0.01539881993085146,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 3.671247720718384,
+ "step": 19
+ },
+ {
+ "epoch": 0.2787456445993031,
+ "grad_norm": 0.013906505890190601,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 3.66833233833313,
+ "step": 20
+ },
+ {
+ "epoch": 0.2926829268292683,
+ "grad_norm": 0.01149708591401577,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 3.6706337928771973,
+ "step": 21
+ },
+ {
+ "epoch": 0.30662020905923343,
+ "grad_norm": 0.010512279346585274,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 3.667168140411377,
+ "step": 22
+ },
+ {
+ "epoch": 0.3205574912891986,
+ "grad_norm": 0.00897525716573,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 3.6630516052246094,
+ "step": 23
+ },
+ {
+ "epoch": 0.3344947735191638,
+ "grad_norm": 0.008081364445388317,
+ "learning_rate": 0.000138,
+ "loss": 3.6629021167755127,
+ "step": 24
+ },
+ {
+ "epoch": 0.34843205574912894,
+ "grad_norm": 0.0076500303111970425,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 3.66168212890625,
+ "step": 25
+ },
+ {
+ "epoch": 0.3623693379790941,
+ "grad_norm": 0.007083008531481028,
+ "learning_rate": 0.00015,
+ "loss": 3.6564559936523438,
+ "step": 26
+ },
+ {
+ "epoch": 0.37630662020905925,
+ "grad_norm": 0.006654089782387018,
+ "learning_rate": 0.000156,
+ "loss": 3.6590094566345215,
+ "step": 27
+ },
+ {
+ "epoch": 0.3902439024390244,
+ "grad_norm": 0.0073669785633683205,
+ "learning_rate": 0.000162,
+ "loss": 3.651914119720459,
+ "step": 28
+ },
+ {
+ "epoch": 0.40418118466898956,
+ "grad_norm": 0.007247959729284048,
+ "learning_rate": 0.000168,
+ "loss": 3.6557557582855225,
+ "step": 29
+ },
+ {
+ "epoch": 0.4181184668989547,
+ "grad_norm": 0.007229349110275507,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 3.651794910430908,
+ "step": 30
+ },
+ {
+ "epoch": 0.43205574912891986,
+ "grad_norm": 0.008839861489832401,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 3.653074264526367,
+ "step": 31
+ },
+ {
+ "epoch": 0.445993031358885,
+ "grad_norm": 0.009280834347009659,
+ "learning_rate": 0.000186,
+ "loss": 3.6503708362579346,
+ "step": 32
+ },
+ {
+ "epoch": 0.45993031358885017,
+ "grad_norm": 0.008585072122514248,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 3.650331497192383,
+ "step": 33
+ },
+ {
+ "epoch": 0.4738675958188153,
+ "grad_norm": 0.01164434663951397,
+ "learning_rate": 0.000198,
+ "loss": 3.6462929248809814,
+ "step": 34
+ },
+ {
+ "epoch": 0.4878048780487805,
+ "grad_norm": 0.012668018229305744,
+ "learning_rate": 0.000204,
+ "loss": 3.6516757011413574,
+ "step": 35
+ },
+ {
+ "epoch": 0.5017421602787456,
+ "grad_norm": 0.01610603742301464,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 3.647498607635498,
+ "step": 36
+ },
+ {
+ "epoch": 0.5156794425087108,
+ "grad_norm": 0.018993742763996124,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 3.642869472503662,
+ "step": 37
+ },
+ {
+ "epoch": 0.5296167247386759,
+ "grad_norm": 0.020697375759482384,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 3.639193058013916,
+ "step": 38
+ },
+ {
+ "epoch": 0.5435540069686411,
+ "grad_norm": 0.021636122837662697,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 3.630560874938965,
+ "step": 39
+ },
+ {
+ "epoch": 0.5574912891986062,
+ "grad_norm": 0.01893668621778488,
+ "learning_rate": 0.000234,
+ "loss": 3.6265769004821777,
+ "step": 40
+ },
+ {
+ "epoch": 0.5714285714285714,
+ "grad_norm": 0.025133362039923668,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 3.6185407638549805,
+ "step": 41
+ },
+ {
+ "epoch": 0.5853658536585366,
+ "grad_norm": 0.016397792845964432,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 3.609161853790283,
+ "step": 42
+ },
+ {
+ "epoch": 0.5993031358885017,
+ "grad_norm": 0.02059962786734104,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 3.5987398624420166,
+ "step": 43
+ },
+ {
+ "epoch": 0.6132404181184669,
+ "grad_norm": 0.026733839884400368,
+ "learning_rate": 0.000258,
+ "loss": 3.601898193359375,
+ "step": 44
+ },
+ {
+ "epoch": 0.627177700348432,
+ "grad_norm": 0.04592137038707733,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 3.597785472869873,
+ "step": 45
+ },
+ {
+ "epoch": 0.6411149825783972,
+ "grad_norm": 0.14618715643882751,
+ "learning_rate": 0.00027,
+ "loss": 3.597787857055664,
+ "step": 46
+ },
+ {
+ "epoch": 0.6550522648083623,
+ "grad_norm": 0.1228327602148056,
+ "learning_rate": 0.000276,
+ "loss": 3.598362922668457,
+ "step": 47
+ },
+ {
+ "epoch": 0.6689895470383276,
+ "grad_norm": 0.0651344507932663,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 3.5868940353393555,
+ "step": 48
+ },
+ {
+ "epoch": 0.6829268292682927,
+ "grad_norm": 0.030712513253092766,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 3.5800981521606445,
+ "step": 49
+ },
+ {
+ "epoch": 0.6968641114982579,
+ "grad_norm": 0.07069414854049683,
+ "learning_rate": 0.000294,
+ "loss": 3.590576171875,
+ "step": 50
+ },
+ {
+ "epoch": 0.710801393728223,
+ "grad_norm": 0.026333393529057503,
+ "learning_rate": 0.0003,
+ "loss": 3.5740621089935303,
+ "step": 51
+ },
+ {
+ "epoch": 0.7247386759581882,
+ "grad_norm": 0.050806671380996704,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 3.577582836151123,
+ "step": 52
+ },
+ {
+ "epoch": 0.7386759581881533,
+ "grad_norm": 0.04820532724261284,
+ "learning_rate": 0.000312,
+ "loss": 3.5686888694763184,
+ "step": 53
+ },
+ {
+ "epoch": 0.7526132404181185,
+ "grad_norm": 0.03834737837314606,
+ "learning_rate": 0.000318,
+ "loss": 3.571916341781616,
+ "step": 54
+ },
+ {
+ "epoch": 0.7665505226480837,
+ "grad_norm": 0.0663016214966774,
+ "learning_rate": 0.000324,
+ "loss": 3.563366413116455,
+ "step": 55
+ },
+ {
+ "epoch": 0.7804878048780488,
+ "grad_norm": 0.03111632913351059,
+ "learning_rate": 0.00033,
+ "loss": 3.555037021636963,
+ "step": 56
+ },
+ {
+ "epoch": 0.794425087108014,
+ "grad_norm": 0.06139425188302994,
+ "learning_rate": 0.000336,
+ "loss": 3.555377244949341,
+ "step": 57
+ },
+ {
+ "epoch": 0.8083623693379791,
+ "grad_norm": 0.02561746910214424,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 3.5368266105651855,
+ "step": 58
+ },
+ {
+ "epoch": 0.8222996515679443,
+ "grad_norm": 0.06502962112426758,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 3.5318264961242676,
+ "step": 59
+ },
+ {
+ "epoch": 0.8362369337979094,
+ "grad_norm": 0.06968390196561813,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 3.5210607051849365,
+ "step": 60
+ },
+ {
+ "epoch": 0.8501742160278746,
+ "grad_norm": 0.02670745924115181,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 3.5037078857421875,
+ "step": 61
+ },
+ {
+ "epoch": 0.8641114982578397,
+ "grad_norm": 0.07075569778680801,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 3.506938934326172,
+ "step": 62
+ },
+ {
+ "epoch": 0.8780487804878049,
+ "grad_norm": 0.061632659286260605,
+ "learning_rate": 0.000372,
+ "loss": 3.4960665702819824,
+ "step": 63
+ },
+ {
+ "epoch": 0.89198606271777,
+ "grad_norm": 0.10994791984558105,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 3.4926395416259766,
+ "step": 64
+ },
+ {
+ "epoch": 0.9059233449477352,
+ "grad_norm": 0.21027322113513947,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 3.502258777618408,
+ "step": 65
+ },
+ {
+ "epoch": 0.9198606271777003,
+ "grad_norm": 0.1937343329191208,
+ "learning_rate": 0.00039,
+ "loss": 3.5118448734283447,
+ "step": 66
+ },
+ {
+ "epoch": 0.9337979094076655,
+ "grad_norm": 0.07891395688056946,
+ "learning_rate": 0.000396,
+ "loss": 3.487575054168701,
+ "step": 67
+ },
+ {
+ "epoch": 0.9477351916376306,
+ "grad_norm": 0.12915678322315216,
+ "learning_rate": 0.000402,
+ "loss": 3.4890120029449463,
+ "step": 68
+ },
+ {
+ "epoch": 0.9616724738675958,
+ "grad_norm": 0.08530207723379135,
+ "learning_rate": 0.000408,
+ "loss": 3.4755735397338867,
+ "step": 69
+ },
+ {
+ "epoch": 0.975609756097561,
+ "grad_norm": 0.09704860299825668,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 3.4669318199157715,
+ "step": 70
+ },
+ {
+ "epoch": 0.9895470383275261,
+ "grad_norm": 0.07270640879869461,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 3.460634469985962,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.03984597697854042,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 2.590245485305786,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 0.8616236448287964,
+ "eval_runtime": 36.0347,
+ "eval_samples_per_second": 67.768,
+ "eval_steps_per_second": 0.555,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139372822299653,
+ "grad_norm": 0.058285508304834366,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 3.441636562347412,
+ "step": 73
+ },
+ {
+ "epoch": 1.0278745644599303,
+ "grad_norm": 0.07173695415258408,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 3.4476027488708496,
+ "step": 74
+ },
+ {
+ "epoch": 1.0418118466898956,
+ "grad_norm": 0.0367155559360981,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 3.4290428161621094,
+ "step": 75
+ },
+ {
+ "epoch": 1.0557491289198606,
+ "grad_norm": 0.05761358141899109,
+ "learning_rate": 0.00045,
+ "loss": 3.430612564086914,
+ "step": 76
+ },
+ {
+ "epoch": 1.0696864111498259,
+ "grad_norm": 0.06290662288665771,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 3.4222841262817383,
+ "step": 77
+ },
+ {
+ "epoch": 1.083623693379791,
+ "grad_norm": 0.09705018997192383,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 3.4233384132385254,
+ "step": 78
+ },
+ {
+ "epoch": 1.0975609756097562,
+ "grad_norm": 0.09656445682048798,
+ "learning_rate": 0.000468,
+ "loss": 3.422335624694824,
+ "step": 79
+ },
+ {
+ "epoch": 1.1114982578397212,
+ "grad_norm": 0.07884909957647324,
+ "learning_rate": 0.000474,
+ "loss": 3.4133338928222656,
+ "step": 80
+ },
+ {
+ "epoch": 1.1254355400696865,
+ "grad_norm": 0.06679042428731918,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 3.4053287506103516,
+ "step": 81
+ },
+ {
+ "epoch": 1.1393728222996515,
+ "grad_norm": 0.02522652968764305,
+ "learning_rate": 0.000486,
+ "loss": 3.392838478088379,
+ "step": 82
+ },
+ {
+ "epoch": 1.1533101045296168,
+ "grad_norm": 0.09408055245876312,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 3.3952789306640625,
+ "step": 83
+ },
+ {
+ "epoch": 1.1672473867595818,
+ "grad_norm": 0.08980021625757217,
+ "learning_rate": 0.000498,
+ "loss": 3.385244846343994,
+ "step": 84
+ },
+ {
+ "epoch": 1.181184668989547,
+ "grad_norm": 0.08343124389648438,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 3.382103443145752,
+ "step": 85
+ },
+ {
+ "epoch": 1.1951219512195121,
+ "grad_norm": 0.03343554213643074,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 3.374354362487793,
+ "step": 86
+ },
+ {
+ "epoch": 1.2090592334494774,
+ "grad_norm": 0.0852339118719101,
+ "learning_rate": 0.000516,
+ "loss": 3.3802456855773926,
+ "step": 87
+ },
+ {
+ "epoch": 1.2229965156794425,
+ "grad_norm": 0.09159538149833679,
+ "learning_rate": 0.000522,
+ "loss": 3.37576961517334,
+ "step": 88
+ },
+ {
+ "epoch": 1.2369337979094077,
+ "grad_norm": 0.04313444346189499,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 3.360690116882324,
+ "step": 89
+ },
+ {
+ "epoch": 1.2508710801393728,
+ "grad_norm": 0.075523741543293,
+ "learning_rate": 0.000534,
+ "loss": 3.3599460124969482,
+ "step": 90
+ },
+ {
+ "epoch": 1.264808362369338,
+ "grad_norm": 0.08516373485326767,
+ "learning_rate": 0.00054,
+ "loss": 3.3572096824645996,
+ "step": 91
+ },
+ {
+ "epoch": 1.278745644599303,
+ "grad_norm": 0.09553111344575882,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 3.3542261123657227,
+ "step": 92
+ },
+ {
+ "epoch": 1.2926829268292683,
+ "grad_norm": 0.05978025496006012,
+ "learning_rate": 0.000552,
+ "loss": 3.3440048694610596,
+ "step": 93
+ },
+ {
+ "epoch": 1.3066202090592334,
+ "grad_norm": 0.10827190428972244,
+ "learning_rate": 0.000558,
+ "loss": 3.3391332626342773,
+ "step": 94
+ },
+ {
+ "epoch": 1.3205574912891986,
+ "grad_norm": 0.1181376576423645,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 3.3493118286132812,
+ "step": 95
+ },
+ {
+ "epoch": 1.3344947735191637,
+ "grad_norm": 0.08178193867206573,
+ "learning_rate": 0.00057,
+ "loss": 3.3445382118225098,
+ "step": 96
+ },
+ {
+ "epoch": 1.348432055749129,
+ "grad_norm": 0.08283700793981552,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 3.3343238830566406,
+ "step": 97
+ },
+ {
+ "epoch": 1.3623693379790942,
+ "grad_norm": 0.11837095767259598,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 3.3336968421936035,
+ "step": 98
+ },
+ {
+ "epoch": 1.3763066202090593,
+ "grad_norm": 0.08230706304311752,
+ "learning_rate": 0.000588,
+ "loss": 3.3294646739959717,
+ "step": 99
+ },
+ {
+ "epoch": 1.3902439024390243,
+ "grad_norm": 0.09961626678705215,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 3.3242952823638916,
+ "step": 100
+ },
+ {
+ "epoch": 1.4041811846689896,
+ "grad_norm": 0.11294732987880707,
+ "learning_rate": 0.0006,
+ "loss": 3.330348491668701,
+ "step": 101
+ },
+ {
+ "epoch": 1.4181184668989548,
+ "grad_norm": 0.11236022412776947,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 3.322606086730957,
+ "step": 102
+ },
+ {
+ "epoch": 1.4320557491289199,
+ "grad_norm": 0.13230572640895844,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 3.3202784061431885,
+ "step": 103
+ },
+ {
+ "epoch": 1.445993031358885,
+ "grad_norm": 0.0783172994852066,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 3.3082056045532227,
+ "step": 104
+ },
+ {
+ "epoch": 1.4599303135888502,
+ "grad_norm": 0.07376513630151749,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 3.3011245727539062,
+ "step": 105
+ },
+ {
+ "epoch": 1.4738675958188154,
+ "grad_norm": 0.11039287596940994,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 3.2987873554229736,
+ "step": 106
+ },
+ {
+ "epoch": 1.4878048780487805,
+ "grad_norm": 0.0667329952120781,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 3.293043851852417,
+ "step": 107
+ },
+ {
+ "epoch": 1.5017421602787455,
+ "grad_norm": 0.0750635489821434,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 3.2865707874298096,
+ "step": 108
+ },
+ {
+ "epoch": 1.5156794425087108,
+ "grad_norm": 0.055155977606773376,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 3.278069496154785,
+ "step": 109
+ },
+ {
+ "epoch": 1.529616724738676,
+ "grad_norm": 0.07016722112894058,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 3.2837281227111816,
+ "step": 110
+ },
+ {
+ "epoch": 1.543554006968641,
+ "grad_norm": 0.09884901344776154,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 3.2782273292541504,
+ "step": 111
+ },
+ {
+ "epoch": 1.5574912891986061,
+ "grad_norm": 0.09402419626712799,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 3.2757701873779297,
+ "step": 112
+ },
+ {
+ "epoch": 1.5714285714285714,
+ "grad_norm": 0.06898307800292969,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 3.2636804580688477,
+ "step": 113
+ },
+ {
+ "epoch": 1.5853658536585367,
+ "grad_norm": 0.08733519911766052,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 3.2676005363464355,
+ "step": 114
+ },
+ {
+ "epoch": 1.5993031358885017,
+ "grad_norm": 0.05769918113946915,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 3.2505807876586914,
+ "step": 115
+ },
+ {
+ "epoch": 1.6132404181184667,
+ "grad_norm": 0.054460495710372925,
+ "learning_rate": 0.000599973080557108,
+ "loss": 3.259110689163208,
+ "step": 116
+ },
+ {
+ "epoch": 1.627177700348432,
+ "grad_norm": 0.055243365466594696,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 3.2438201904296875,
+ "step": 117
+ },
+ {
+ "epoch": 1.6411149825783973,
+ "grad_norm": 0.06122216582298279,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 3.2397255897521973,
+ "step": 118
+ },
+ {
+ "epoch": 1.6550522648083623,
+ "grad_norm": 0.05418086051940918,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 3.236057758331299,
+ "step": 119
+ },
+ {
+ "epoch": 1.6689895470383276,
+ "grad_norm": 0.04995540529489517,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 3.224294662475586,
+ "step": 120
+ },
+ {
+ "epoch": 1.6829268292682928,
+ "grad_norm": 0.057540878653526306,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 3.2251172065734863,
+ "step": 121
+ },
+ {
+ "epoch": 1.6968641114982579,
+ "grad_norm": 0.05698078125715256,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 3.228363513946533,
+ "step": 122
+ },
+ {
+ "epoch": 1.710801393728223,
+ "grad_norm": 0.07352662831544876,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 3.2196407318115234,
+ "step": 123
+ },
+ {
+ "epoch": 1.7247386759581882,
+ "grad_norm": 0.08591686934232712,
+ "learning_rate": 0.000599936710690505,
+ "loss": 3.2231035232543945,
+ "step": 124
+ },
+ {
+ "epoch": 1.7386759581881535,
+ "grad_norm": 0.06970733404159546,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 3.2126383781433105,
+ "step": 125
+ },
+ {
+ "epoch": 1.7526132404181185,
+ "grad_norm": 0.04472116380929947,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 3.216801881790161,
+ "step": 126
+ },
+ {
+ "epoch": 1.7665505226480835,
+ "grad_norm": 0.059133559465408325,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 3.2136807441711426,
+ "step": 127
+ },
+ {
+ "epoch": 1.7804878048780488,
+ "grad_norm": 0.08288449794054031,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 3.210519552230835,
+ "step": 128
+ },
+ {
+ "epoch": 1.794425087108014,
+ "grad_norm": 0.09659463912248611,
+ "learning_rate": 0.00059990620421714,
+ "loss": 3.205916404724121,
+ "step": 129
+ },
+ {
+ "epoch": 1.8083623693379791,
+ "grad_norm": 0.08611937612295151,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 3.206793785095215,
+ "step": 130
+ },
+ {
+ "epoch": 1.8222996515679442,
+ "grad_norm": 0.06448066979646683,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 3.2026424407958984,
+ "step": 131
+ },
+ {
+ "epoch": 1.8362369337979094,
+ "grad_norm": 0.07323113083839417,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 3.1864631175994873,
+ "step": 132
+ },
+ {
+ "epoch": 1.8501742160278747,
+ "grad_norm": 0.0739368200302124,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 3.1875557899475098,
+ "step": 133
+ },
+ {
+ "epoch": 1.8641114982578397,
+ "grad_norm": 0.08289099484682083,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 3.1901979446411133,
+ "step": 134
+ },
+ {
+ "epoch": 1.8780487804878048,
+ "grad_norm": 0.06641175597906113,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 3.1776785850524902,
+ "step": 135
+ },
+ {
+ "epoch": 1.89198606271777,
+ "grad_norm": 0.04873652383685112,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 3.1743667125701904,
+ "step": 136
+ },
+ {
+ "epoch": 1.9059233449477353,
+ "grad_norm": 0.04623038321733475,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 3.1759986877441406,
+ "step": 137
+ },
+ {
+ "epoch": 1.9198606271777003,
+ "grad_norm": 0.059709370136260986,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 3.1702799797058105,
+ "step": 138
+ },
+ {
+ "epoch": 1.9337979094076654,
+ "grad_norm": 0.040581051260232925,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 3.1607465744018555,
+ "step": 139
+ },
+ {
+ "epoch": 1.9477351916376306,
+ "grad_norm": 0.04940655827522278,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 3.1620500087738037,
+ "step": 140
+ },
+ {
+ "epoch": 1.961672473867596,
+ "grad_norm": 0.055740341544151306,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 3.1535825729370117,
+ "step": 141
+ },
+ {
+ "epoch": 1.975609756097561,
+ "grad_norm": 0.06836569309234619,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 3.1512832641601562,
+ "step": 142
+ },
+ {
+ "epoch": 1.989547038327526,
+ "grad_norm": 0.08451569080352783,
+ "learning_rate": 0.000599788973374255,
+ "loss": 3.147432804107666,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.06781627237796783,
+ "learning_rate": 0.000599778806120077,
+ "loss": 2.3624467849731445,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 0.7888243794441223,
+ "eval_runtime": 37.0572,
+ "eval_samples_per_second": 65.898,
+ "eval_steps_per_second": 0.54,
+ "step": 144
+ },
+ {
+ "epoch": 2.013937282229965,
+ "grad_norm": 0.045119598507881165,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 3.139284610748291,
+ "step": 145
+ },
+ {
+ "epoch": 2.0278745644599305,
+ "grad_norm": 0.09132017195224762,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 3.140348434448242,
+ "step": 146
+ },
+ {
+ "epoch": 2.0418118466898956,
+ "grad_norm": 0.07457596063613892,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 3.140091896057129,
+ "step": 147
+ },
+ {
+ "epoch": 2.0557491289198606,
+ "grad_norm": 0.07544369250535965,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 3.1411213874816895,
+ "step": 148
+ },
+ {
+ "epoch": 2.0696864111498257,
+ "grad_norm": 0.046033963561058044,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 3.1405649185180664,
+ "step": 149
+ },
+ {
+ "epoch": 2.083623693379791,
+ "grad_norm": 0.06651527434587479,
+ "learning_rate": 0.000599712781599403,
+ "loss": 3.135124683380127,
+ "step": 150
+ },
+ {
+ "epoch": 2.097560975609756,
+ "grad_norm": 0.07238955795764923,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 3.1302051544189453,
+ "step": 151
+ },
+ {
+ "epoch": 2.1114982578397212,
+ "grad_norm": 0.06696683913469315,
+ "learning_rate": 0.000599688860879549,
+ "loss": 3.128504991531372,
+ "step": 152
+ },
+ {
+ "epoch": 2.1254355400696863,
+ "grad_norm": 0.042010076344013214,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 3.119443893432617,
+ "step": 153
+ },
+ {
+ "epoch": 2.1393728222996518,
+ "grad_norm": 0.053164687007665634,
+ "learning_rate": 0.000599663984012462,
+ "loss": 3.1174211502075195,
+ "step": 154
+ },
+ {
+ "epoch": 2.153310104529617,
+ "grad_norm": 0.047281116247177124,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 3.1211044788360596,
+ "step": 155
+ },
+ {
+ "epoch": 2.167247386759582,
+ "grad_norm": 0.0531938374042511,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 3.1136691570281982,
+ "step": 156
+ },
+ {
+ "epoch": 2.181184668989547,
+ "grad_norm": 0.0702054500579834,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 3.112502336502075,
+ "step": 157
+ },
+ {
+ "epoch": 2.1951219512195124,
+ "grad_norm": 0.07261929661035538,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 3.1049346923828125,
+ "step": 158
+ },
+ {
+ "epoch": 2.2090592334494774,
+ "grad_norm": 0.06666582822799683,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 3.1094369888305664,
+ "step": 159
+ },
+ {
+ "epoch": 2.2229965156794425,
+ "grad_norm": 0.047446250915527344,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 3.105876922607422,
+ "step": 160
+ },
+ {
+ "epoch": 2.2369337979094075,
+ "grad_norm": 0.03833230584859848,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 3.104224681854248,
+ "step": 161
+ },
+ {
+ "epoch": 2.250871080139373,
+ "grad_norm": 0.04562874883413315,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 3.105830192565918,
+ "step": 162
+ },
+ {
+ "epoch": 2.264808362369338,
+ "grad_norm": 0.0635828971862793,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 3.1061713695526123,
+ "step": 163
+ },
+ {
+ "epoch": 2.278745644599303,
+ "grad_norm": 0.09712212532758713,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 3.108053207397461,
+ "step": 164
+ },
+ {
+ "epoch": 2.292682926829268,
+ "grad_norm": 0.15060372650623322,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 3.126777172088623,
+ "step": 165
+ },
+ {
+ "epoch": 2.3066202090592336,
+ "grad_norm": 0.12047530710697174,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 3.116323471069336,
+ "step": 166
+ },
+ {
+ "epoch": 2.3205574912891986,
+ "grad_norm": 0.07486861199140549,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 3.1138410568237305,
+ "step": 167
+ },
+ {
+ "epoch": 2.3344947735191637,
+ "grad_norm": 0.07746157795190811,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 3.1107101440429688,
+ "step": 168
+ },
+ {
+ "epoch": 2.3484320557491287,
+ "grad_norm": 0.0804097130894661,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 3.1073827743530273,
+ "step": 169
+ },
+ {
+ "epoch": 2.362369337979094,
+ "grad_norm": 0.0559227392077446,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 3.102102041244507,
+ "step": 170
+ },
+ {
+ "epoch": 2.3763066202090593,
+ "grad_norm": 0.05415646359324455,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 3.096550464630127,
+ "step": 171
+ },
+ {
+ "epoch": 2.3902439024390243,
+ "grad_norm": 0.0463285967707634,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 3.0833563804626465,
+ "step": 172
+ },
+ {
+ "epoch": 2.40418118466899,
+ "grad_norm": 0.04705670103430748,
+ "learning_rate": 0.000599379982511273,
+ "loss": 3.0935018062591553,
+ "step": 173
+ },
+ {
+ "epoch": 2.418118466898955,
+ "grad_norm": 0.03608846664428711,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 3.085629463195801,
+ "step": 174
+ },
+ {
+ "epoch": 2.43205574912892,
+ "grad_norm": 0.03648562356829643,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 3.086639165878296,
+ "step": 175
+ },
+ {
+ "epoch": 2.445993031358885,
+ "grad_norm": 0.03640111908316612,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 3.088339328765869,
+ "step": 176
+ },
+ {
+ "epoch": 2.45993031358885,
+ "grad_norm": 0.029915692284703255,
+ "learning_rate": 0.000599309205504528,
+ "loss": 3.0802769660949707,
+ "step": 177
+ },
+ {
+ "epoch": 2.4738675958188154,
+ "grad_norm": 0.031756628304719925,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 3.0739364624023438,
+ "step": 178
+ },
+ {
+ "epoch": 2.4878048780487805,
+ "grad_norm": 0.03106086328625679,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 3.07144832611084,
+ "step": 179
+ },
+ {
+ "epoch": 2.5017421602787455,
+ "grad_norm": 0.03892781585454941,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 3.074242353439331,
+ "step": 180
+ },
+ {
+ "epoch": 2.515679442508711,
+ "grad_norm": 0.05611228197813034,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 3.0675928592681885,
+ "step": 181
+ },
+ {
+ "epoch": 2.529616724738676,
+ "grad_norm": 0.03397630900144577,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 3.073423147201538,
+ "step": 182
+ },
+ {
+ "epoch": 2.543554006968641,
+ "grad_norm": 0.04135085269808769,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 3.0808069705963135,
+ "step": 183
+ },
+ {
+ "epoch": 2.557491289198606,
+ "grad_norm": 0.03421049192547798,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 3.0616936683654785,
+ "step": 184
+ },
+ {
+ "epoch": 2.571428571428571,
+ "grad_norm": 0.030827628448605537,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 3.0656299591064453,
+ "step": 185
+ },
+ {
+ "epoch": 2.5853658536585367,
+ "grad_norm": 0.033190369606018066,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 3.0479578971862793,
+ "step": 186
+ },
+ {
+ "epoch": 2.5993031358885017,
+ "grad_norm": 0.026774903759360313,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 3.054133653640747,
+ "step": 187
+ },
+ {
+ "epoch": 2.6132404181184667,
+ "grad_norm": 0.03240266814827919,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 3.0536394119262695,
+ "step": 188
+ },
+ {
+ "epoch": 2.6271777003484322,
+ "grad_norm": 0.04305516183376312,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 3.048996925354004,
+ "step": 189
+ },
+ {
+ "epoch": 2.6411149825783973,
+ "grad_norm": 0.07109381258487701,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 3.0558314323425293,
+ "step": 190
+ },
+ {
+ "epoch": 2.6550522648083623,
+ "grad_norm": 0.11467248201370239,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 3.0587801933288574,
+ "step": 191
+ },
+ {
+ "epoch": 2.6689895470383274,
+ "grad_norm": 0.13839758932590485,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 3.0634102821350098,
+ "step": 192
+ },
+ {
+ "epoch": 2.682926829268293,
+ "grad_norm": 0.09269433468580246,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 3.0586462020874023,
+ "step": 193
+ },
+ {
+ "epoch": 2.696864111498258,
+ "grad_norm": 0.0611812099814415,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 3.054201602935791,
+ "step": 194
+ },
+ {
+ "epoch": 2.710801393728223,
+ "grad_norm": 0.05347125604748726,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 3.054572105407715,
+ "step": 195
+ },
+ {
+ "epoch": 2.7247386759581884,
+ "grad_norm": 0.05996708199381828,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 3.0486035346984863,
+ "step": 196
+ },
+ {
+ "epoch": 2.7386759581881535,
+ "grad_norm": 0.06146618723869324,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 3.0344629287719727,
+ "step": 197
+ },
+ {
+ "epoch": 2.7526132404181185,
+ "grad_norm": 0.04754327982664108,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 3.0211029052734375,
+ "step": 198
+ },
+ {
+ "epoch": 2.7665505226480835,
+ "grad_norm": 0.044388528913259506,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 3.034595012664795,
+ "step": 199
+ },
+ {
+ "epoch": 2.7804878048780486,
+ "grad_norm": 0.04255649819970131,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 3.037287950515747,
+ "step": 200
+ },
+ {
+ "epoch": 2.794425087108014,
+ "grad_norm": 0.043139949440956116,
+ "learning_rate": 0.000598804365316586,
+ "loss": 3.0366177558898926,
+ "step": 201
+ },
+ {
+ "epoch": 2.808362369337979,
+ "grad_norm": 0.03383412957191467,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 3.033888101577759,
+ "step": 202
+ },
+ {
+ "epoch": 2.822299651567944,
+ "grad_norm": 0.03446805849671364,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 3.022144079208374,
+ "step": 203
+ },
+ {
+ "epoch": 2.8362369337979096,
+ "grad_norm": 0.029725519940257072,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 3.0208263397216797,
+ "step": 204
+ },
+ {
+ "epoch": 2.8501742160278747,
+ "grad_norm": 0.030237704515457153,
+ "learning_rate": 0.000598706872384039,
+ "loss": 3.0251193046569824,
+ "step": 205
+ },
+ {
+ "epoch": 2.8641114982578397,
+ "grad_norm": 0.03186488524079323,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 3.0246212482452393,
+ "step": 206
+ },
+ {
+ "epoch": 2.8780487804878048,
+ "grad_norm": 0.02844928577542305,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 3.0075716972351074,
+ "step": 207
+ },
+ {
+ "epoch": 2.89198606271777,
+ "grad_norm": 0.0350780263543129,
+ "learning_rate": 0.000598631251036868,
+ "loss": 3.0121424198150635,
+ "step": 208
+ },
+ {
+ "epoch": 2.9059233449477353,
+ "grad_norm": 0.04267824813723564,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 3.0099010467529297,
+ "step": 209
+ },
+ {
+ "epoch": 2.9198606271777003,
+ "grad_norm": 0.042932625859975815,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 3.0122969150543213,
+ "step": 210
+ },
+ {
+ "epoch": 2.9337979094076654,
+ "grad_norm": 0.04570756480097771,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 3.0111446380615234,
+ "step": 211
+ },
+ {
+ "epoch": 2.947735191637631,
+ "grad_norm": 0.04473821446299553,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 2.9976413249969482,
+ "step": 212
+ },
+ {
+ "epoch": 2.961672473867596,
+ "grad_norm": 0.040896713733673096,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 2.9942758083343506,
+ "step": 213
+ },
+ {
+ "epoch": 2.975609756097561,
+ "grad_norm": 0.04459039121866226,
+ "learning_rate": 0.000598473577921366,
+ "loss": 2.998690128326416,
+ "step": 214
+ },
+ {
+ "epoch": 2.989547038327526,
+ "grad_norm": 0.039927951991558075,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 2.988520383834839,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.030261589214205742,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 2.2433667182922363,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 0.7514154314994812,
+ "eval_runtime": 37.2184,
+ "eval_samples_per_second": 65.613,
+ "eval_steps_per_second": 0.537,
+ "step": 216
+ },
+ {
+ "epoch": 3.013937282229965,
+ "grad_norm": 0.03271438181400299,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 2.983100652694702,
+ "step": 217
+ },
+ {
+ "epoch": 3.0278745644599305,
+ "grad_norm": 0.045161835849285126,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 2.9824085235595703,
+ "step": 218
+ },
+ {
+ "epoch": 3.0418118466898956,
+ "grad_norm": 0.041259463876485825,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 2.980112075805664,
+ "step": 219
+ },
+ {
+ "epoch": 3.0557491289198606,
+ "grad_norm": 0.04854132980108261,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 2.9802699089050293,
+ "step": 220
+ },
+ {
+ "epoch": 3.0696864111498257,
+ "grad_norm": 0.06712493300437927,
+ "learning_rate": 0.000598278794687186,
+ "loss": 2.963736057281494,
+ "step": 221
+ },
+ {
+ "epoch": 3.083623693379791,
+ "grad_norm": 0.07551158964633942,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 2.9780850410461426,
+ "step": 222
+ },
+ {
+ "epoch": 3.097560975609756,
+ "grad_norm": 0.1004587933421135,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 2.982564926147461,
+ "step": 223
+ },
+ {
+ "epoch": 3.1114982578397212,
+ "grad_norm": 0.12604698538780212,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 2.994123697280884,
+ "step": 224
+ },
+ {
+ "epoch": 3.1254355400696863,
+ "grad_norm": 0.13300281763076782,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 3.0030934810638428,
+ "step": 225
+ },
+ {
+ "epoch": 3.1393728222996518,
+ "grad_norm": 0.09192433208227158,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 2.99415922164917,
+ "step": 226
+ },
+ {
+ "epoch": 3.153310104529617,
+ "grad_norm": 0.07332997024059296,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 2.9832448959350586,
+ "step": 227
+ },
+ {
+ "epoch": 3.167247386759582,
+ "grad_norm": 0.05673393979668617,
+ "learning_rate": 0.00059807235435179,
+ "loss": 2.9781603813171387,
+ "step": 228
+ },
+ {
+ "epoch": 3.181184668989547,
+ "grad_norm": 0.05591209977865219,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 2.9844987392425537,
+ "step": 229
+ },
+ {
+ "epoch": 3.1951219512195124,
+ "grad_norm": 0.04706789553165436,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 2.9794564247131348,
+ "step": 230
+ },
+ {
+ "epoch": 3.2090592334494774,
+ "grad_norm": 0.04533008486032486,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 2.963930606842041,
+ "step": 231
+ },
+ {
+ "epoch": 3.2229965156794425,
+ "grad_norm": 0.0363367535173893,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 2.9743711948394775,
+ "step": 232
+ },
+ {
+ "epoch": 3.2369337979094075,
+ "grad_norm": 0.035832252353429794,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 2.9637725353240967,
+ "step": 233
+ },
+ {
+ "epoch": 3.250871080139373,
+ "grad_norm": 0.03634851798415184,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 2.971634864807129,
+ "step": 234
+ },
+ {
+ "epoch": 3.264808362369338,
+ "grad_norm": 0.036877233535051346,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 2.960113286972046,
+ "step": 235
+ },
+ {
+ "epoch": 3.278745644599303,
+ "grad_norm": 0.02930021658539772,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 2.948853015899658,
+ "step": 236
+ },
+ {
+ "epoch": 3.292682926829268,
+ "grad_norm": 0.029241658747196198,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 2.957648277282715,
+ "step": 237
+ },
+ {
+ "epoch": 3.3066202090592336,
+ "grad_norm": 0.029683494940400124,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 2.9501960277557373,
+ "step": 238
+ },
+ {
+ "epoch": 3.3205574912891986,
+ "grad_norm": 0.028418797999620438,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 2.9593586921691895,
+ "step": 239
+ },
+ {
+ "epoch": 3.3344947735191637,
+ "grad_norm": 0.029084153473377228,
+ "learning_rate": 0.000597691359743243,
+ "loss": 2.957581043243408,
+ "step": 240
+ },
+ {
+ "epoch": 3.3484320557491287,
+ "grad_norm": 0.03031332418322563,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 2.9465126991271973,
+ "step": 241
+ },
+ {
+ "epoch": 3.362369337979094,
+ "grad_norm": 0.028176147490739822,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 2.9427034854888916,
+ "step": 242
+ },
+ {
+ "epoch": 3.3763066202090593,
+ "grad_norm": 0.025935526937246323,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 2.933248996734619,
+ "step": 243
+ },
+ {
+ "epoch": 3.3902439024390243,
+ "grad_norm": 0.026524877175688744,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 2.9334826469421387,
+ "step": 244
+ },
+ {
+ "epoch": 3.40418118466899,
+ "grad_norm": 0.026807013899087906,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 2.9502480030059814,
+ "step": 245
+ },
+ {
+ "epoch": 3.418118466898955,
+ "grad_norm": 0.026440076529979706,
+ "learning_rate": 0.000597488038559129,
+ "loss": 2.9336085319519043,
+ "step": 246
+ },
+ {
+ "epoch": 3.43205574912892,
+ "grad_norm": 0.02752632275223732,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 2.937425374984741,
+ "step": 247
+ },
+ {
+ "epoch": 3.445993031358885,
+ "grad_norm": 0.027490021660923958,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 2.9357755184173584,
+ "step": 248
+ },
+ {
+ "epoch": 3.45993031358885,
+ "grad_norm": 0.03389354050159454,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 2.934713363647461,
+ "step": 249
+ },
+ {
+ "epoch": 3.4738675958188154,
+ "grad_norm": 0.042289797216653824,
+ "learning_rate": 0.000597347745466109,
+ "loss": 2.9363629817962646,
+ "step": 250
+ },
+ {
+ "epoch": 3.4878048780487805,
+ "grad_norm": 0.07276978343725204,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 2.946735382080078,
+ "step": 251
+ },
+ {
+ "epoch": 3.5017421602787455,
+ "grad_norm": 0.09471797943115234,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 2.9240806102752686,
+ "step": 252
+ },
+ {
+ "epoch": 3.515679442508711,
+ "grad_norm": 0.09386000782251358,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 2.9194839000701904,
+ "step": 253
+ },
+ {
+ "epoch": 3.529616724738676,
+ "grad_norm": 0.1176624521613121,
+ "learning_rate": 0.000597203657966319,
+ "loss": 2.9324824810028076,
+ "step": 254
+ },
+ {
+ "epoch": 3.543554006968641,
+ "grad_norm": 0.0723927766084671,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 2.932208776473999,
+ "step": 255
+ },
+ {
+ "epoch": 3.557491289198606,
+ "grad_norm": 0.06314370036125183,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 2.936681032180786,
+ "step": 256
+ },
+ {
+ "epoch": 3.571428571428571,
+ "grad_norm": 0.06432153284549713,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 2.924858331680298,
+ "step": 257
+ },
+ {
+ "epoch": 3.5853658536585367,
+ "grad_norm": 0.07495246082544327,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 2.918736696243286,
+ "step": 258
+ },
+ {
+ "epoch": 3.5993031358885017,
+ "grad_norm": 0.058007508516311646,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 2.92120361328125,
+ "step": 259
+ },
+ {
+ "epoch": 3.6132404181184667,
+ "grad_norm": 0.047224972397089005,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 2.9181740283966064,
+ "step": 260
+ },
+ {
+ "epoch": 3.6271777003484322,
+ "grad_norm": 0.04775157943367958,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 2.9145660400390625,
+ "step": 261
+ },
+ {
+ "epoch": 3.6411149825783973,
+ "grad_norm": 0.05087953805923462,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 2.9094574451446533,
+ "step": 262
+ },
+ {
+ "epoch": 3.6550522648083623,
+ "grad_norm": 0.047325216233730316,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 2.9127790927886963,
+ "step": 263
+ },
+ {
+ "epoch": 3.6689895470383274,
+ "grad_norm": 0.04005662724375725,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 2.9124414920806885,
+ "step": 264
+ },
+ {
+ "epoch": 3.682926829268293,
+ "grad_norm": 0.03284832462668419,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 2.897369861602783,
+ "step": 265
+ },
+ {
+ "epoch": 3.696864111498258,
+ "grad_norm": 0.03538643941283226,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 2.8912787437438965,
+ "step": 266
+ },
+ {
+ "epoch": 3.710801393728223,
+ "grad_norm": 0.0338534340262413,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 2.904737949371338,
+ "step": 267
+ },
+ {
+ "epoch": 3.7247386759581884,
+ "grad_norm": 0.03059707209467888,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 2.910109519958496,
+ "step": 268
+ },
+ {
+ "epoch": 3.7386759581881535,
+ "grad_norm": 0.027421824634075165,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 2.8953540325164795,
+ "step": 269
+ },
+ {
+ "epoch": 3.7526132404181185,
+ "grad_norm": 0.031095022335648537,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 2.8983192443847656,
+ "step": 270
+ },
+ {
+ "epoch": 3.7665505226480835,
+ "grad_norm": 0.03075260855257511,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 2.9002010822296143,
+ "step": 271
+ },
+ {
+ "epoch": 3.7804878048780486,
+ "grad_norm": 0.030917232856154442,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 2.8886561393737793,
+ "step": 272
+ },
+ {
+ "epoch": 3.794425087108014,
+ "grad_norm": 0.03267431631684303,
+ "learning_rate": 0.000596467483454833,
+ "loss": 2.8845345973968506,
+ "step": 273
+ },
+ {
+ "epoch": 3.808362369337979,
+ "grad_norm": 0.034112598747015,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 2.8842294216156006,
+ "step": 274
+ },
+ {
+ "epoch": 3.822299651567944,
+ "grad_norm": 0.038153596222400665,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 2.866973400115967,
+ "step": 275
+ },
+ {
+ "epoch": 3.8362369337979096,
+ "grad_norm": 0.033103615045547485,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 2.8709988594055176,
+ "step": 276
+ },
+ {
+ "epoch": 3.8501742160278747,
+ "grad_norm": 0.030708827078342438,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 2.8715577125549316,
+ "step": 277
+ },
+ {
+ "epoch": 3.8641114982578397,
+ "grad_norm": 0.03427499905228615,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 2.8766040802001953,
+ "step": 278
+ },
+ {
+ "epoch": 3.8780487804878048,
+ "grad_norm": 0.042216721922159195,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 2.8672261238098145,
+ "step": 279
+ },
+ {
+ "epoch": 3.89198606271777,
+ "grad_norm": 0.034656424075365067,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 2.860102653503418,
+ "step": 280
+ },
+ {
+ "epoch": 3.9059233449477353,
+ "grad_norm": 0.03288520127534866,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 2.8540444374084473,
+ "step": 281
+ },
+ {
+ "epoch": 3.9198606271777003,
+ "grad_norm": 0.041709382086992264,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 2.872581958770752,
+ "step": 282
+ },
+ {
+ "epoch": 3.9337979094076654,
+ "grad_norm": 0.04955075681209564,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 2.874307632446289,
+ "step": 283
+ },
+ {
+ "epoch": 3.947735191637631,
+ "grad_norm": 0.05372118577361107,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 2.861191749572754,
+ "step": 284
+ },
+ {
+ "epoch": 3.961672473867596,
+ "grad_norm": 0.05855486914515495,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 2.8542709350585938,
+ "step": 285
+ },
+ {
+ "epoch": 3.975609756097561,
+ "grad_norm": 0.05442376434803009,
+ "learning_rate": 0.000595914592474791,
+ "loss": 2.858576536178589,
+ "step": 286
+ },
+ {
+ "epoch": 3.989547038327526,
+ "grad_norm": 0.06468870490789413,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 2.8510026931762695,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.038657791912555695,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 2.1422531604766846,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 0.7195093631744385,
+ "eval_runtime": 39.1927,
+ "eval_samples_per_second": 62.308,
+ "eval_steps_per_second": 0.51,
+ "step": 288
+ },
+ {
+ "epoch": 4.013937282229965,
+ "grad_norm": 0.041369788348674774,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 2.8407950401306152,
+ "step": 289
+ },
+ {
+ "epoch": 4.02787456445993,
+ "grad_norm": 0.045097772032022476,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 2.8446922302246094,
+ "step": 290
+ },
+ {
+ "epoch": 4.041811846689895,
+ "grad_norm": 0.05102979391813278,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 2.8316476345062256,
+ "step": 291
+ },
+ {
+ "epoch": 4.055749128919861,
+ "grad_norm": 0.05429252237081528,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 2.8510334491729736,
+ "step": 292
+ },
+ {
+ "epoch": 4.069686411149826,
+ "grad_norm": 0.0761060118675232,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 2.8289966583251953,
+ "step": 293
+ },
+ {
+ "epoch": 4.083623693379791,
+ "grad_norm": 0.09525997191667557,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 2.843992233276367,
+ "step": 294
+ },
+ {
+ "epoch": 4.097560975609756,
+ "grad_norm": 0.09715712070465088,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 2.8543810844421387,
+ "step": 295
+ },
+ {
+ "epoch": 4.111498257839721,
+ "grad_norm": 0.0634903833270073,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 2.8456456661224365,
+ "step": 296
+ },
+ {
+ "epoch": 4.125435540069686,
+ "grad_norm": 0.05771167576313019,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 2.8387022018432617,
+ "step": 297
+ },
+ {
+ "epoch": 4.139372822299651,
+ "grad_norm": 0.05440817028284073,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 2.841508388519287,
+ "step": 298
+ },
+ {
+ "epoch": 4.153310104529616,
+ "grad_norm": 0.0550493523478508,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 2.833531618118286,
+ "step": 299
+ },
+ {
+ "epoch": 4.167247386759582,
+ "grad_norm": 0.04252418503165245,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 2.8254685401916504,
+ "step": 300
+ },
+ {
+ "epoch": 4.181184668989547,
+ "grad_norm": 0.042833492159843445,
+ "learning_rate": 0.000595227087813793,
+ "loss": 2.8289575576782227,
+ "step": 301
+ },
+ {
+ "epoch": 4.195121951219512,
+ "grad_norm": 0.038360171020030975,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 2.836550712585449,
+ "step": 302
+ },
+ {
+ "epoch": 4.209059233449477,
+ "grad_norm": 0.03655572608113289,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 2.8222808837890625,
+ "step": 303
+ },
+ {
+ "epoch": 4.2229965156794425,
+ "grad_norm": 0.03215418756008148,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 2.818066120147705,
+ "step": 304
+ },
+ {
+ "epoch": 4.2369337979094075,
+ "grad_norm": 0.031601350754499435,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 2.809666395187378,
+ "step": 305
+ },
+ {
+ "epoch": 4.2508710801393725,
+ "grad_norm": 0.03221198916435242,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 2.8137047290802,
+ "step": 306
+ },
+ {
+ "epoch": 4.264808362369338,
+ "grad_norm": 0.03107992745935917,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 2.822840690612793,
+ "step": 307
+ },
+ {
+ "epoch": 4.2787456445993035,
+ "grad_norm": 0.032328397035598755,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 2.8012430667877197,
+ "step": 308
+ },
+ {
+ "epoch": 4.2926829268292686,
+ "grad_norm": 0.029429661110043526,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 2.806474447250366,
+ "step": 309
+ },
+ {
+ "epoch": 4.306620209059234,
+ "grad_norm": 0.03430404141545296,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 2.7917184829711914,
+ "step": 310
+ },
+ {
+ "epoch": 4.320557491289199,
+ "grad_norm": 0.03543714061379433,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 2.798417091369629,
+ "step": 311
+ },
+ {
+ "epoch": 4.334494773519164,
+ "grad_norm": 0.04099712520837784,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 2.793095588684082,
+ "step": 312
+ },
+ {
+ "epoch": 4.348432055749129,
+ "grad_norm": 0.046607524156570435,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 2.807809829711914,
+ "step": 313
+ },
+ {
+ "epoch": 4.362369337979094,
+ "grad_norm": 0.048917099833488464,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 2.8017094135284424,
+ "step": 314
+ },
+ {
+ "epoch": 4.376306620209059,
+ "grad_norm": 0.05221967399120331,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 2.7990846633911133,
+ "step": 315
+ },
+ {
+ "epoch": 4.390243902439025,
+ "grad_norm": 0.05263383314013481,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 2.810983657836914,
+ "step": 316
+ },
+ {
+ "epoch": 4.40418118466899,
+ "grad_norm": 0.04930173233151436,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 2.7989790439605713,
+ "step": 317
+ },
+ {
+ "epoch": 4.418118466898955,
+ "grad_norm": 0.05484982952475548,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 2.7852704524993896,
+ "step": 318
+ },
+ {
+ "epoch": 4.43205574912892,
+ "grad_norm": 0.04991631582379341,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 2.7944440841674805,
+ "step": 319
+ },
+ {
+ "epoch": 4.445993031358885,
+ "grad_norm": 0.034856196492910385,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 2.7851901054382324,
+ "step": 320
+ },
+ {
+ "epoch": 4.45993031358885,
+ "grad_norm": 0.038153354078531265,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 2.777986526489258,
+ "step": 321
+ },
+ {
+ "epoch": 4.473867595818815,
+ "grad_norm": 0.04138852655887604,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 2.7781941890716553,
+ "step": 322
+ },
+ {
+ "epoch": 4.487804878048781,
+ "grad_norm": 0.04018627852201462,
+ "learning_rate": 0.00059412296156686,
+ "loss": 2.7934627532958984,
+ "step": 323
+ },
+ {
+ "epoch": 4.501742160278746,
+ "grad_norm": 0.03592175245285034,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 2.780992031097412,
+ "step": 324
+ },
+ {
+ "epoch": 4.515679442508711,
+ "grad_norm": 0.034620169550180435,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 2.7754831314086914,
+ "step": 325
+ },
+ {
+ "epoch": 4.529616724738676,
+ "grad_norm": 0.03244427964091301,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 2.7737035751342773,
+ "step": 326
+ },
+ {
+ "epoch": 4.543554006968641,
+ "grad_norm": 0.0361688956618309,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 2.7515547275543213,
+ "step": 327
+ },
+ {
+ "epoch": 4.557491289198606,
+ "grad_norm": 0.03722141310572624,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 2.769011974334717,
+ "step": 328
+ },
+ {
+ "epoch": 4.571428571428571,
+ "grad_norm": 0.0431540347635746,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 2.7755231857299805,
+ "step": 329
+ },
+ {
+ "epoch": 4.585365853658536,
+ "grad_norm": 0.04175153374671936,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 2.767477512359619,
+ "step": 330
+ },
+ {
+ "epoch": 4.599303135888501,
+ "grad_norm": 0.04184363782405853,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 2.775984048843384,
+ "step": 331
+ },
+ {
+ "epoch": 4.613240418118467,
+ "grad_norm": 0.04054928943514824,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 2.7669193744659424,
+ "step": 332
+ },
+ {
+ "epoch": 4.627177700348432,
+ "grad_norm": 0.039442483335733414,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 2.7557153701782227,
+ "step": 333
+ },
+ {
+ "epoch": 4.641114982578397,
+ "grad_norm": 0.04334413632750511,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 2.76118803024292,
+ "step": 334
+ },
+ {
+ "epoch": 4.655052264808362,
+ "grad_norm": 0.04821610450744629,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 2.755122184753418,
+ "step": 335
+ },
+ {
+ "epoch": 4.668989547038327,
+ "grad_norm": 0.05259500443935394,
+ "learning_rate": 0.000593417134927994,
+ "loss": 2.763730764389038,
+ "step": 336
+ },
+ {
+ "epoch": 4.682926829268292,
+ "grad_norm": 0.05462924763560295,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 2.7538461685180664,
+ "step": 337
+ },
+ {
+ "epoch": 4.696864111498257,
+ "grad_norm": 0.0755213275551796,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 2.7565760612487793,
+ "step": 338
+ },
+ {
+ "epoch": 4.710801393728223,
+ "grad_norm": 0.09036742150783539,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 2.7742908000946045,
+ "step": 339
+ },
+ {
+ "epoch": 4.724738675958188,
+ "grad_norm": 0.07687609642744064,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 2.7776336669921875,
+ "step": 340
+ },
+ {
+ "epoch": 4.7386759581881535,
+ "grad_norm": 0.06167550012469292,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 2.7571194171905518,
+ "step": 341
+ },
+ {
+ "epoch": 4.7526132404181185,
+ "grad_norm": 0.05498389154672623,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 2.766094207763672,
+ "step": 342
+ },
+ {
+ "epoch": 4.7665505226480835,
+ "grad_norm": 0.056576769798994064,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 2.759814977645874,
+ "step": 343
+ },
+ {
+ "epoch": 4.780487804878049,
+ "grad_norm": 0.05287479609251022,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 2.7653424739837646,
+ "step": 344
+ },
+ {
+ "epoch": 4.794425087108014,
+ "grad_norm": 0.05006227642297745,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 2.746647357940674,
+ "step": 345
+ },
+ {
+ "epoch": 4.80836236933798,
+ "grad_norm": 0.0428367517888546,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 2.748798131942749,
+ "step": 346
+ },
+ {
+ "epoch": 4.822299651567945,
+ "grad_norm": 0.04800762981176376,
+ "learning_rate": 0.000592789007481325,
+ "loss": 2.7554736137390137,
+ "step": 347
+ },
+ {
+ "epoch": 4.83623693379791,
+ "grad_norm": 0.04984979331493378,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 2.738473415374756,
+ "step": 348
+ },
+ {
+ "epoch": 4.850174216027875,
+ "grad_norm": 0.0404483824968338,
+ "learning_rate": 0.000592671765466188,
+ "loss": 2.7486448287963867,
+ "step": 349
+ },
+ {
+ "epoch": 4.86411149825784,
+ "grad_norm": 0.03785628825426102,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 2.7317609786987305,
+ "step": 350
+ },
+ {
+ "epoch": 4.878048780487805,
+ "grad_norm": 0.04446744546294212,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 2.750211238861084,
+ "step": 351
+ },
+ {
+ "epoch": 4.89198606271777,
+ "grad_norm": 0.0561913438141346,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 2.7429988384246826,
+ "step": 352
+ },
+ {
+ "epoch": 4.905923344947735,
+ "grad_norm": 0.06165647506713867,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 2.7389450073242188,
+ "step": 353
+ },
+ {
+ "epoch": 4.9198606271777,
+ "grad_norm": 0.04764621704816818,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 2.73350191116333,
+ "step": 354
+ },
+ {
+ "epoch": 4.933797909407666,
+ "grad_norm": 0.044994648545980453,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 2.7248117923736572,
+ "step": 355
+ },
+ {
+ "epoch": 4.947735191637631,
+ "grad_norm": 0.044408753514289856,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 2.7337656021118164,
+ "step": 356
+ },
+ {
+ "epoch": 4.961672473867596,
+ "grad_norm": 0.04064524918794632,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 2.732268810272217,
+ "step": 357
+ },
+ {
+ "epoch": 4.975609756097561,
+ "grad_norm": 0.036805033683776855,
+ "learning_rate": 0.000592132629452205,
+ "loss": 2.7253570556640625,
+ "step": 358
+ },
+ {
+ "epoch": 4.989547038327526,
+ "grad_norm": 0.03321084752678871,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 2.713101863861084,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.027469763532280922,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 2.0416059494018555,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 0.6877280473709106,
+ "eval_runtime": 37.7369,
+ "eval_samples_per_second": 64.711,
+ "eval_steps_per_second": 0.53,
+ "step": 360
+ },
+ {
+ "epoch": 5.013937282229965,
+ "grad_norm": 0.035481102764606476,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 2.6966300010681152,
+ "step": 361
+ },
+ {
+ "epoch": 5.02787456445993,
+ "grad_norm": 0.04075651615858078,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 2.701756000518799,
+ "step": 362
+ },
+ {
+ "epoch": 5.041811846689895,
+ "grad_norm": 0.03847100958228111,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 2.69856333732605,
+ "step": 363
+ },
+ {
+ "epoch": 5.055749128919861,
+ "grad_norm": 0.0439726859331131,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 2.6956000328063965,
+ "step": 364
+ },
+ {
+ "epoch": 5.069686411149826,
+ "grad_norm": 0.043925508856773376,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 2.7065486907958984,
+ "step": 365
+ },
+ {
+ "epoch": 5.083623693379791,
+ "grad_norm": 0.05349253863096237,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 2.7032744884490967,
+ "step": 366
+ },
+ {
+ "epoch": 5.097560975609756,
+ "grad_norm": 0.04957803711295128,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 2.6988987922668457,
+ "step": 367
+ },
+ {
+ "epoch": 5.111498257839721,
+ "grad_norm": 0.047412872314453125,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 2.6921496391296387,
+ "step": 368
+ },
+ {
+ "epoch": 5.125435540069686,
+ "grad_norm": 0.047648534178733826,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 2.691765308380127,
+ "step": 369
+ },
+ {
+ "epoch": 5.139372822299651,
+ "grad_norm": 0.05226794257760048,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 2.7006325721740723,
+ "step": 370
+ },
+ {
+ "epoch": 5.153310104529616,
+ "grad_norm": 0.054041698575019836,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 2.692309617996216,
+ "step": 371
+ },
+ {
+ "epoch": 5.167247386759582,
+ "grad_norm": 0.039680954068899155,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 2.685819149017334,
+ "step": 372
+ },
+ {
+ "epoch": 5.181184668989547,
+ "grad_norm": 0.04104545712471008,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 2.6913204193115234,
+ "step": 373
+ },
+ {
+ "epoch": 5.195121951219512,
+ "grad_norm": 0.037274859845638275,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 2.692324161529541,
+ "step": 374
+ },
+ {
+ "epoch": 5.209059233449477,
+ "grad_norm": 0.038038160651922226,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 2.6824822425842285,
+ "step": 375
+ },
+ {
+ "epoch": 5.2229965156794425,
+ "grad_norm": 0.04105817899107933,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 2.6830384731292725,
+ "step": 376
+ },
+ {
+ "epoch": 5.2369337979094075,
+ "grad_norm": 0.04050105810165405,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 2.676032066345215,
+ "step": 377
+ },
+ {
+ "epoch": 5.2508710801393725,
+ "grad_norm": 0.03780475631356239,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 2.6765289306640625,
+ "step": 378
+ },
+ {
+ "epoch": 5.264808362369338,
+ "grad_norm": 0.03484981507062912,
+ "learning_rate": 0.000590801330015633,
+ "loss": 2.6808249950408936,
+ "step": 379
+ },
+ {
+ "epoch": 5.2787456445993035,
+ "grad_norm": 0.03091316856443882,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 2.679382562637329,
+ "step": 380
+ },
+ {
+ "epoch": 5.2926829268292686,
+ "grad_norm": 0.03255805745720863,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 2.685393810272217,
+ "step": 381
+ },
+ {
+ "epoch": 5.306620209059234,
+ "grad_norm": 0.037457507103681564,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 2.6710822582244873,
+ "step": 382
+ },
+ {
+ "epoch": 5.320557491289199,
+ "grad_norm": 0.03654669225215912,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 2.6762566566467285,
+ "step": 383
+ },
+ {
+ "epoch": 5.334494773519164,
+ "grad_norm": 0.03590100631117821,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 2.6788597106933594,
+ "step": 384
+ },
+ {
+ "epoch": 5.348432055749129,
+ "grad_norm": 0.03647424280643463,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 2.6785120964050293,
+ "step": 385
+ },
+ {
+ "epoch": 5.362369337979094,
+ "grad_norm": 0.035309527069330215,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 2.679274082183838,
+ "step": 386
+ },
+ {
+ "epoch": 5.376306620209059,
+ "grad_norm": 0.035797759890556335,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 2.663790702819824,
+ "step": 387
+ },
+ {
+ "epoch": 5.390243902439025,
+ "grad_norm": 0.034813620150089264,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 2.661909818649292,
+ "step": 388
+ },
+ {
+ "epoch": 5.40418118466899,
+ "grad_norm": 0.03814723342657089,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 2.6648290157318115,
+ "step": 389
+ },
+ {
+ "epoch": 5.418118466898955,
+ "grad_norm": 0.03819345310330391,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 2.661344528198242,
+ "step": 390
+ },
+ {
+ "epoch": 5.43205574912892,
+ "grad_norm": 0.05034249275922775,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 2.6723971366882324,
+ "step": 391
+ },
+ {
+ "epoch": 5.445993031358885,
+ "grad_norm": 0.05302279815077782,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 2.6722166538238525,
+ "step": 392
+ },
+ {
+ "epoch": 5.45993031358885,
+ "grad_norm": 0.04576520621776581,
+ "learning_rate": 0.000589856958339686,
+ "loss": 2.650954008102417,
+ "step": 393
+ },
+ {
+ "epoch": 5.473867595818815,
+ "grad_norm": 0.04785747826099396,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 2.658161163330078,
+ "step": 394
+ },
+ {
+ "epoch": 5.487804878048781,
+ "grad_norm": 0.0524369515478611,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 2.66957688331604,
+ "step": 395
+ },
+ {
+ "epoch": 5.501742160278746,
+ "grad_norm": 0.05258813500404358,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 2.66046142578125,
+ "step": 396
+ },
+ {
+ "epoch": 5.515679442508711,
+ "grad_norm": 0.05156350135803223,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 2.6339619159698486,
+ "step": 397
+ },
+ {
+ "epoch": 5.529616724738676,
+ "grad_norm": 0.04716484993696213,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 2.656726837158203,
+ "step": 398
+ },
+ {
+ "epoch": 5.543554006968641,
+ "grad_norm": 0.048213694244623184,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 2.6740832328796387,
+ "step": 399
+ },
+ {
+ "epoch": 5.557491289198606,
+ "grad_norm": 0.046243470162153244,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 2.65981125831604,
+ "step": 400
+ },
+ {
+ "epoch": 5.571428571428571,
+ "grad_norm": 0.04331960901618004,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 2.637345790863037,
+ "step": 401
+ },
+ {
+ "epoch": 5.585365853658536,
+ "grad_norm": 0.04055584594607353,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 2.6382877826690674,
+ "step": 402
+ },
+ {
+ "epoch": 5.599303135888501,
+ "grad_norm": 0.046962495893239975,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 2.642883539199829,
+ "step": 403
+ },
+ {
+ "epoch": 5.613240418118467,
+ "grad_norm": 0.055259495973587036,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 2.6498947143554688,
+ "step": 404
+ },
+ {
+ "epoch": 5.627177700348432,
+ "grad_norm": 0.05768313631415367,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 2.6472978591918945,
+ "step": 405
+ },
+ {
+ "epoch": 5.641114982578397,
+ "grad_norm": 0.04900819808244705,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 2.6596455574035645,
+ "step": 406
+ },
+ {
+ "epoch": 5.655052264808362,
+ "grad_norm": 0.053204163908958435,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 2.6456780433654785,
+ "step": 407
+ },
+ {
+ "epoch": 5.668989547038327,
+ "grad_norm": 0.05327627807855606,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 2.651031494140625,
+ "step": 408
+ },
+ {
+ "epoch": 5.682926829268292,
+ "grad_norm": 0.050564929842948914,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 2.656858444213867,
+ "step": 409
+ },
+ {
+ "epoch": 5.696864111498257,
+ "grad_norm": 0.05613167583942413,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 2.6408069133758545,
+ "step": 410
+ },
+ {
+ "epoch": 5.710801393728223,
+ "grad_norm": 0.05399465933442116,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 2.6472203731536865,
+ "step": 411
+ },
+ {
+ "epoch": 5.724738675958188,
+ "grad_norm": 0.04919342324137688,
+ "learning_rate": 0.0005885028868537,
+ "loss": 2.656099319458008,
+ "step": 412
+ },
+ {
+ "epoch": 5.7386759581881535,
+ "grad_norm": 0.0552130751311779,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 2.6422126293182373,
+ "step": 413
+ },
+ {
+ "epoch": 5.7526132404181185,
+ "grad_norm": 0.05774940922856331,
+ "learning_rate": 0.000588355515561353,
+ "loss": 2.649722099304199,
+ "step": 414
+ },
+ {
+ "epoch": 5.7665505226480835,
+ "grad_norm": 0.04623311012983322,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 2.6475892066955566,
+ "step": 415
+ },
+ {
+ "epoch": 5.780487804878049,
+ "grad_norm": 0.04961073398590088,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 2.658733606338501,
+ "step": 416
+ },
+ {
+ "epoch": 5.794425087108014,
+ "grad_norm": 0.05006693676114082,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 2.6217124462127686,
+ "step": 417
+ },
+ {
+ "epoch": 5.80836236933798,
+ "grad_norm": 0.04175165295600891,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 2.632359027862549,
+ "step": 418
+ },
+ {
+ "epoch": 5.822299651567945,
+ "grad_norm": 0.0332355760037899,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 2.6406683921813965,
+ "step": 419
+ },
+ {
+ "epoch": 5.83623693379791,
+ "grad_norm": 0.0371745266020298,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 2.630310535430908,
+ "step": 420
+ },
+ {
+ "epoch": 5.850174216027875,
+ "grad_norm": 0.02940242365002632,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 2.6451711654663086,
+ "step": 421
+ },
+ {
+ "epoch": 5.86411149825784,
+ "grad_norm": 0.03578875586390495,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 2.637753486633301,
+ "step": 422
+ },
+ {
+ "epoch": 5.878048780487805,
+ "grad_norm": 0.03402113541960716,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 2.623744487762451,
+ "step": 423
+ },
+ {
+ "epoch": 5.89198606271777,
+ "grad_norm": 0.034094467759132385,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 2.63200044631958,
+ "step": 424
+ },
+ {
+ "epoch": 5.905923344947735,
+ "grad_norm": 0.03428930044174194,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 2.6219849586486816,
+ "step": 425
+ },
+ {
+ "epoch": 5.9198606271777,
+ "grad_norm": 0.033345405012369156,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 2.611741065979004,
+ "step": 426
+ },
+ {
+ "epoch": 5.933797909407666,
+ "grad_norm": 0.031680066138505936,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 2.6227869987487793,
+ "step": 427
+ },
+ {
+ "epoch": 5.947735191637631,
+ "grad_norm": 0.028066758066415787,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 2.6249539852142334,
+ "step": 428
+ },
+ {
+ "epoch": 5.961672473867596,
+ "grad_norm": 0.032918382436037064,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 2.6176412105560303,
+ "step": 429
+ },
+ {
+ "epoch": 5.975609756097561,
+ "grad_norm": 0.033349912613630295,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 2.6159720420837402,
+ "step": 430
+ },
+ {
+ "epoch": 5.989547038327526,
+ "grad_norm": 0.03317154198884964,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 2.619137763977051,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.025815341621637344,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 1.9473658800125122,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 0.6633820533752441,
+ "eval_runtime": 37.551,
+ "eval_samples_per_second": 65.032,
+ "eval_steps_per_second": 0.533,
+ "step": 432
+ },
+ {
+ "epoch": 6.013937282229965,
+ "grad_norm": 0.031342681497335434,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 2.5931155681610107,
+ "step": 433
+ },
+ {
+ "epoch": 6.02787456445993,
+ "grad_norm": 0.04343045502901077,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 2.587559700012207,
+ "step": 434
+ },
+ {
+ "epoch": 6.041811846689895,
+ "grad_norm": 0.052591342478990555,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 2.5950260162353516,
+ "step": 435
+ },
+ {
+ "epoch": 6.055749128919861,
+ "grad_norm": 0.05538717657327652,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 2.600468635559082,
+ "step": 436
+ },
+ {
+ "epoch": 6.069686411149826,
+ "grad_norm": 0.05505542829632759,
+ "learning_rate": 0.000586594769789753,
+ "loss": 2.5905046463012695,
+ "step": 437
+ },
+ {
+ "epoch": 6.083623693379791,
+ "grad_norm": 0.05229569226503372,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 2.591856002807617,
+ "step": 438
+ },
+ {
+ "epoch": 6.097560975609756,
+ "grad_norm": 0.05032522976398468,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 2.577693462371826,
+ "step": 439
+ },
+ {
+ "epoch": 6.111498257839721,
+ "grad_norm": 0.04670557379722595,
+ "learning_rate": 0.000586356179990052,
+ "loss": 2.5835001468658447,
+ "step": 440
+ },
+ {
+ "epoch": 6.125435540069686,
+ "grad_norm": 0.0537918359041214,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 2.596343517303467,
+ "step": 441
+ },
+ {
+ "epoch": 6.139372822299651,
+ "grad_norm": 0.06328130513429642,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 2.5912466049194336,
+ "step": 442
+ },
+ {
+ "epoch": 6.153310104529616,
+ "grad_norm": 0.06647300720214844,
+ "learning_rate": 0.000586115535536849,
+ "loss": 2.589078426361084,
+ "step": 443
+ },
+ {
+ "epoch": 6.167247386759582,
+ "grad_norm": 0.06643359363079071,
+ "learning_rate": 0.000586034864430614,
+ "loss": 2.5956435203552246,
+ "step": 444
+ },
+ {
+ "epoch": 6.181184668989547,
+ "grad_norm": 0.05613892152905464,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 2.5922906398773193,
+ "step": 445
+ },
+ {
+ "epoch": 6.195121951219512,
+ "grad_norm": 0.05655102804303169,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 2.590651512145996,
+ "step": 446
+ },
+ {
+ "epoch": 6.209059233449477,
+ "grad_norm": 0.06806499511003494,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 2.589696168899536,
+ "step": 447
+ },
+ {
+ "epoch": 6.2229965156794425,
+ "grad_norm": 0.06616773456335068,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 2.5944786071777344,
+ "step": 448
+ },
+ {
+ "epoch": 6.2369337979094075,
+ "grad_norm": 0.05937796086072922,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 2.598313331604004,
+ "step": 449
+ },
+ {
+ "epoch": 6.2508710801393725,
+ "grad_norm": 0.05284281075000763,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 2.5805535316467285,
+ "step": 450
+ },
+ {
+ "epoch": 6.264808362369338,
+ "grad_norm": 0.04509073495864868,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 2.570598840713501,
+ "step": 451
+ },
+ {
+ "epoch": 6.2787456445993035,
+ "grad_norm": 0.05604032054543495,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 2.6077847480773926,
+ "step": 452
+ },
+ {
+ "epoch": 6.2926829268292686,
+ "grad_norm": 0.06662779301404953,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 2.578629493713379,
+ "step": 453
+ },
+ {
+ "epoch": 6.306620209059234,
+ "grad_norm": 0.0585545152425766,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 2.586427688598633,
+ "step": 454
+ },
+ {
+ "epoch": 6.320557491289199,
+ "grad_norm": 0.04736408591270447,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 2.5911552906036377,
+ "step": 455
+ },
+ {
+ "epoch": 6.334494773519164,
+ "grad_norm": 0.04474812000989914,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 2.5697641372680664,
+ "step": 456
+ },
+ {
+ "epoch": 6.348432055749129,
+ "grad_norm": 0.04312862828373909,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 2.566927671432495,
+ "step": 457
+ },
+ {
+ "epoch": 6.362369337979094,
+ "grad_norm": 0.03764902800321579,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 2.5947153568267822,
+ "step": 458
+ },
+ {
+ "epoch": 6.376306620209059,
+ "grad_norm": 0.03353014215826988,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 2.5777602195739746,
+ "step": 459
+ },
+ {
+ "epoch": 6.390243902439025,
+ "grad_norm": 0.033975999802351,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 2.5783305168151855,
+ "step": 460
+ },
+ {
+ "epoch": 6.40418118466899,
+ "grad_norm": 0.03363902121782303,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 2.5673155784606934,
+ "step": 461
+ },
+ {
+ "epoch": 6.418118466898955,
+ "grad_norm": 0.034326743334531784,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 2.55814790725708,
+ "step": 462
+ },
+ {
+ "epoch": 6.43205574912892,
+ "grad_norm": 0.03194424510002136,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 2.5688910484313965,
+ "step": 463
+ },
+ {
+ "epoch": 6.445993031358885,
+ "grad_norm": 0.029925566166639328,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 2.559793710708618,
+ "step": 464
+ },
+ {
+ "epoch": 6.45993031358885,
+ "grad_norm": 0.0290202796459198,
+ "learning_rate": 0.000584288196583439,
+ "loss": 2.555941581726074,
+ "step": 465
+ },
+ {
+ "epoch": 6.473867595818815,
+ "grad_norm": 0.030976103618741035,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 2.5576136112213135,
+ "step": 466
+ },
+ {
+ "epoch": 6.487804878048781,
+ "grad_norm": 0.030049985274672508,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 2.5645012855529785,
+ "step": 467
+ },
+ {
+ "epoch": 6.501742160278746,
+ "grad_norm": 0.031192071735858917,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 2.5691795349121094,
+ "step": 468
+ },
+ {
+ "epoch": 6.515679442508711,
+ "grad_norm": 0.03066888637840748,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 2.5597329139709473,
+ "step": 469
+ },
+ {
+ "epoch": 6.529616724738676,
+ "grad_norm": 0.031034760177135468,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 2.5749378204345703,
+ "step": 470
+ },
+ {
+ "epoch": 6.543554006968641,
+ "grad_norm": 0.03199351951479912,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 2.564612627029419,
+ "step": 471
+ },
+ {
+ "epoch": 6.557491289198606,
+ "grad_norm": 0.027530083432793617,
+ "learning_rate": 0.000583683733328402,
+ "loss": 2.568983793258667,
+ "step": 472
+ },
+ {
+ "epoch": 6.571428571428571,
+ "grad_norm": 0.02841697260737419,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 2.551283836364746,
+ "step": 473
+ },
+ {
+ "epoch": 6.585365853658536,
+ "grad_norm": 0.03285123407840729,
+ "learning_rate": 0.000583508993216961,
+ "loss": 2.5753087997436523,
+ "step": 474
+ },
+ {
+ "epoch": 6.599303135888501,
+ "grad_norm": 0.0347592793405056,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 2.56103253364563,
+ "step": 475
+ },
+ {
+ "epoch": 6.613240418118467,
+ "grad_norm": 0.03750046715140343,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 2.5542030334472656,
+ "step": 476
+ },
+ {
+ "epoch": 6.627177700348432,
+ "grad_norm": 0.04254816472530365,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 2.5616328716278076,
+ "step": 477
+ },
+ {
+ "epoch": 6.641114982578397,
+ "grad_norm": 0.04370047152042389,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 2.5646753311157227,
+ "step": 478
+ },
+ {
+ "epoch": 6.655052264808362,
+ "grad_norm": 0.03816768899559975,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 2.5603585243225098,
+ "step": 479
+ },
+ {
+ "epoch": 6.668989547038327,
+ "grad_norm": 0.034390103071928024,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 2.548727512359619,
+ "step": 480
+ },
+ {
+ "epoch": 6.682926829268292,
+ "grad_norm": 0.0366024374961853,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 2.555230140686035,
+ "step": 481
+ },
+ {
+ "epoch": 6.696864111498257,
+ "grad_norm": 0.03938084468245506,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 2.5586276054382324,
+ "step": 482
+ },
+ {
+ "epoch": 6.710801393728223,
+ "grad_norm": 0.04110350087285042,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 2.542633056640625,
+ "step": 483
+ },
+ {
+ "epoch": 6.724738675958188,
+ "grad_norm": 0.03961770981550217,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 2.5494391918182373,
+ "step": 484
+ },
+ {
+ "epoch": 6.7386759581881535,
+ "grad_norm": 0.03677491098642349,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 2.563061475753784,
+ "step": 485
+ },
+ {
+ "epoch": 6.7526132404181185,
+ "grad_norm": 0.03818432241678238,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 2.5586929321289062,
+ "step": 486
+ },
+ {
+ "epoch": 6.7665505226480835,
+ "grad_norm": 0.033873286098241806,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 2.5477757453918457,
+ "step": 487
+ },
+ {
+ "epoch": 6.780487804878049,
+ "grad_norm": 0.03699466213583946,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 2.541106700897217,
+ "step": 488
+ },
+ {
+ "epoch": 6.794425087108014,
+ "grad_norm": 0.03866403177380562,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 2.5336339473724365,
+ "step": 489
+ },
+ {
+ "epoch": 6.80836236933798,
+ "grad_norm": 0.03235912322998047,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 2.5439155101776123,
+ "step": 490
+ },
+ {
+ "epoch": 6.822299651567945,
+ "grad_norm": 0.03776629641652107,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 2.5592265129089355,
+ "step": 491
+ },
+ {
+ "epoch": 6.83623693379791,
+ "grad_norm": 0.04273561015725136,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 2.5432629585266113,
+ "step": 492
+ },
+ {
+ "epoch": 6.850174216027875,
+ "grad_norm": 0.04358302056789398,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 2.5543787479400635,
+ "step": 493
+ },
+ {
+ "epoch": 6.86411149825784,
+ "grad_norm": 0.03629252687096596,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 2.562788963317871,
+ "step": 494
+ },
+ {
+ "epoch": 6.878048780487805,
+ "grad_norm": 0.03263307362794876,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 2.538097381591797,
+ "step": 495
+ },
+ {
+ "epoch": 6.89198606271777,
+ "grad_norm": 0.036420464515686035,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 2.554645299911499,
+ "step": 496
+ },
+ {
+ "epoch": 6.905923344947735,
+ "grad_norm": 0.035384103655815125,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 2.5465738773345947,
+ "step": 497
+ },
+ {
+ "epoch": 6.9198606271777,
+ "grad_norm": 0.03658696636557579,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 2.536980152130127,
+ "step": 498
+ },
+ {
+ "epoch": 6.933797909407666,
+ "grad_norm": 0.036053478717803955,
+ "learning_rate": 0.00058124865204371,
+ "loss": 2.528345823287964,
+ "step": 499
+ },
+ {
+ "epoch": 6.947735191637631,
+ "grad_norm": 0.03789985179901123,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 2.544621706008911,
+ "step": 500
+ },
+ {
+ "epoch": 6.961672473867596,
+ "grad_norm": 0.03835926949977875,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 2.5407447814941406,
+ "step": 501
+ },
+ {
+ "epoch": 6.975609756097561,
+ "grad_norm": 0.04318110644817352,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 2.5537543296813965,
+ "step": 502
+ },
+ {
+ "epoch": 6.989547038327526,
+ "grad_norm": 0.0451606847345829,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 2.5201051235198975,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.03245232254266739,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 1.9085171222686768,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 0.6467739343643188,
+ "eval_runtime": 38.2431,
+ "eval_samples_per_second": 63.855,
+ "eval_steps_per_second": 0.523,
+ "step": 504
+ },
+ {
+ "epoch": 7.013937282229965,
+ "grad_norm": 0.03788387402892113,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 2.493765354156494,
+ "step": 505
+ },
+ {
+ "epoch": 7.02787456445993,
+ "grad_norm": 0.04437057301402092,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 2.509481430053711,
+ "step": 506
+ },
+ {
+ "epoch": 7.041811846689895,
+ "grad_norm": 0.047125279903411865,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 2.504810333251953,
+ "step": 507
+ },
+ {
+ "epoch": 7.055749128919861,
+ "grad_norm": 0.05385598540306091,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 2.5145554542541504,
+ "step": 508
+ },
+ {
+ "epoch": 7.069686411149826,
+ "grad_norm": 0.05404049903154373,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 2.500851631164551,
+ "step": 509
+ },
+ {
+ "epoch": 7.083623693379791,
+ "grad_norm": 0.05455894395709038,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 2.4832260608673096,
+ "step": 510
+ },
+ {
+ "epoch": 7.097560975609756,
+ "grad_norm": 0.0558103583753109,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 2.524315118789673,
+ "step": 511
+ },
+ {
+ "epoch": 7.111498257839721,
+ "grad_norm": 0.057283915579319,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 2.508044719696045,
+ "step": 512
+ },
+ {
+ "epoch": 7.125435540069686,
+ "grad_norm": 0.061027105897665024,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 2.5139050483703613,
+ "step": 513
+ },
+ {
+ "epoch": 7.139372822299651,
+ "grad_norm": 0.06873901933431625,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 2.507343053817749,
+ "step": 514
+ },
+ {
+ "epoch": 7.153310104529616,
+ "grad_norm": 0.06900028139352798,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 2.520263195037842,
+ "step": 515
+ },
+ {
+ "epoch": 7.167247386759582,
+ "grad_norm": 0.06029877811670303,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 2.5027518272399902,
+ "step": 516
+ },
+ {
+ "epoch": 7.181184668989547,
+ "grad_norm": 0.06097294017672539,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 2.512634515762329,
+ "step": 517
+ },
+ {
+ "epoch": 7.195121951219512,
+ "grad_norm": 0.06655558943748474,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 2.5014023780822754,
+ "step": 518
+ },
+ {
+ "epoch": 7.209059233449477,
+ "grad_norm": 0.06343840062618256,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 2.5144271850585938,
+ "step": 519
+ },
+ {
+ "epoch": 7.2229965156794425,
+ "grad_norm": 0.08325106650590897,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 2.5239195823669434,
+ "step": 520
+ },
+ {
+ "epoch": 7.2369337979094075,
+ "grad_norm": 0.07948101311922073,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 2.5223121643066406,
+ "step": 521
+ },
+ {
+ "epoch": 7.2508710801393725,
+ "grad_norm": 0.06717163324356079,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 2.5102391242980957,
+ "step": 522
+ },
+ {
+ "epoch": 7.264808362369338,
+ "grad_norm": 0.05896087363362312,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 2.51560640335083,
+ "step": 523
+ },
+ {
+ "epoch": 7.2787456445993035,
+ "grad_norm": 0.05562684312462807,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 2.5021753311157227,
+ "step": 524
+ },
+ {
+ "epoch": 7.2926829268292686,
+ "grad_norm": 0.043904103338718414,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 2.4952425956726074,
+ "step": 525
+ },
+ {
+ "epoch": 7.306620209059234,
+ "grad_norm": 0.0436740480363369,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 2.515303611755371,
+ "step": 526
+ },
+ {
+ "epoch": 7.320557491289199,
+ "grad_norm": 0.0395866297185421,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 2.5101678371429443,
+ "step": 527
+ },
+ {
+ "epoch": 7.334494773519164,
+ "grad_norm": 0.039552897214889526,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 2.5090293884277344,
+ "step": 528
+ },
+ {
+ "epoch": 7.348432055749129,
+ "grad_norm": 0.03839687630534172,
+ "learning_rate": 0.000578351407086301,
+ "loss": 2.505296468734741,
+ "step": 529
+ },
+ {
+ "epoch": 7.362369337979094,
+ "grad_norm": 0.042542796581983566,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 2.49535870552063,
+ "step": 530
+ },
+ {
+ "epoch": 7.376306620209059,
+ "grad_norm": 0.044322993606328964,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 2.4890050888061523,
+ "step": 531
+ },
+ {
+ "epoch": 7.390243902439025,
+ "grad_norm": 0.04029953107237816,
+ "learning_rate": 0.000578050665972623,
+ "loss": 2.500995397567749,
+ "step": 532
+ },
+ {
+ "epoch": 7.40418118466899,
+ "grad_norm": 0.044392652809619904,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 2.505852222442627,
+ "step": 533
+ },
+ {
+ "epoch": 7.418118466898955,
+ "grad_norm": 0.04363880679011345,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 2.4939942359924316,
+ "step": 534
+ },
+ {
+ "epoch": 7.43205574912892,
+ "grad_norm": 0.03960833698511124,
+ "learning_rate": 0.000577747930429834,
+ "loss": 2.507826805114746,
+ "step": 535
+ },
+ {
+ "epoch": 7.445993031358885,
+ "grad_norm": 0.03880009427666664,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 2.4876725673675537,
+ "step": 536
+ },
+ {
+ "epoch": 7.45993031358885,
+ "grad_norm": 0.034344322979450226,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 2.5032553672790527,
+ "step": 537
+ },
+ {
+ "epoch": 7.473867595818815,
+ "grad_norm": 0.030360646545886993,
+ "learning_rate": 0.00057744320265311,
+ "loss": 2.4887325763702393,
+ "step": 538
+ },
+ {
+ "epoch": 7.487804878048781,
+ "grad_norm": 0.030478516593575478,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 2.5041327476501465,
+ "step": 539
+ },
+ {
+ "epoch": 7.501742160278746,
+ "grad_norm": 0.030038833618164062,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 2.488068103790283,
+ "step": 540
+ },
+ {
+ "epoch": 7.515679442508711,
+ "grad_norm": 0.03227488324046135,
+ "learning_rate": 0.000577136484852073,
+ "loss": 2.4851627349853516,
+ "step": 541
+ },
+ {
+ "epoch": 7.529616724738676,
+ "grad_norm": 0.03053610771894455,
+ "learning_rate": 0.000577033803741424,
+ "loss": 2.48903226852417,
+ "step": 542
+ },
+ {
+ "epoch": 7.543554006968641,
+ "grad_norm": 0.030809711664915085,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 2.487685203552246,
+ "step": 543
+ },
+ {
+ "epoch": 7.557491289198606,
+ "grad_norm": 0.03001537173986435,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 2.4998037815093994,
+ "step": 544
+ },
+ {
+ "epoch": 7.571428571428571,
+ "grad_norm": 0.028761114925146103,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 2.4887194633483887,
+ "step": 545
+ },
+ {
+ "epoch": 7.585365853658536,
+ "grad_norm": 0.028289001435041428,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 2.4748306274414062,
+ "step": 546
+ },
+ {
+ "epoch": 7.599303135888501,
+ "grad_norm": 0.028406348079442978,
+ "learning_rate": 0.00057651708808768,
+ "loss": 2.490642786026001,
+ "step": 547
+ },
+ {
+ "epoch": 7.613240418118467,
+ "grad_norm": 0.027616780251264572,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 2.4816768169403076,
+ "step": 548
+ },
+ {
+ "epoch": 7.627177700348432,
+ "grad_norm": 0.028579063713550568,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 2.49285888671875,
+ "step": 549
+ },
+ {
+ "epoch": 7.641114982578397,
+ "grad_norm": 0.032302722334861755,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 2.4891176223754883,
+ "step": 550
+ },
+ {
+ "epoch": 7.655052264808362,
+ "grad_norm": 0.03428734466433525,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 2.4945361614227295,
+ "step": 551
+ },
+ {
+ "epoch": 7.668989547038327,
+ "grad_norm": 0.03326137363910675,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 2.483844518661499,
+ "step": 552
+ },
+ {
+ "epoch": 7.682926829268292,
+ "grad_norm": 0.03136003762483597,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 2.4965500831604004,
+ "step": 553
+ },
+ {
+ "epoch": 7.696864111498257,
+ "grad_norm": 0.031299516558647156,
+ "learning_rate": 0.000575784433093151,
+ "loss": 2.4755914211273193,
+ "step": 554
+ },
+ {
+ "epoch": 7.710801393728223,
+ "grad_norm": 0.030511915683746338,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 2.4844446182250977,
+ "step": 555
+ },
+ {
+ "epoch": 7.724738675958188,
+ "grad_norm": 0.03106229193508625,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 2.4614830017089844,
+ "step": 556
+ },
+ {
+ "epoch": 7.7386759581881535,
+ "grad_norm": 0.032561615109443665,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 2.476231813430786,
+ "step": 557
+ },
+ {
+ "epoch": 7.7526132404181185,
+ "grad_norm": 0.03334634751081467,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 2.4722485542297363,
+ "step": 558
+ },
+ {
+ "epoch": 7.7665505226480835,
+ "grad_norm": 0.03567497059702873,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 2.471876621246338,
+ "step": 559
+ },
+ {
+ "epoch": 7.780487804878049,
+ "grad_norm": 0.038662221282720566,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 2.4947409629821777,
+ "step": 560
+ },
+ {
+ "epoch": 7.794425087108014,
+ "grad_norm": 0.036901816725730896,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 2.470515489578247,
+ "step": 561
+ },
+ {
+ "epoch": 7.80836236933798,
+ "grad_norm": 0.03382178768515587,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 2.4678587913513184,
+ "step": 562
+ },
+ {
+ "epoch": 7.822299651567945,
+ "grad_norm": 0.03480829298496246,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 2.4690866470336914,
+ "step": 563
+ },
+ {
+ "epoch": 7.83623693379791,
+ "grad_norm": 0.03593127429485321,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 2.491703748703003,
+ "step": 564
+ },
+ {
+ "epoch": 7.850174216027875,
+ "grad_norm": 0.03532601520419121,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 2.468522548675537,
+ "step": 565
+ },
+ {
+ "epoch": 7.86411149825784,
+ "grad_norm": 0.035680219531059265,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 2.4759652614593506,
+ "step": 566
+ },
+ {
+ "epoch": 7.878048780487805,
+ "grad_norm": 0.03417263925075531,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 2.4931888580322266,
+ "step": 567
+ },
+ {
+ "epoch": 7.89198606271777,
+ "grad_norm": 0.03273053467273712,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 2.466641426086426,
+ "step": 568
+ },
+ {
+ "epoch": 7.905923344947735,
+ "grad_norm": 0.032283321022987366,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 2.466756820678711,
+ "step": 569
+ },
+ {
+ "epoch": 7.9198606271777,
+ "grad_norm": 0.03162473440170288,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 2.4725847244262695,
+ "step": 570
+ },
+ {
+ "epoch": 7.933797909407666,
+ "grad_norm": 0.03218452259898186,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 2.46532940864563,
+ "step": 571
+ },
+ {
+ "epoch": 7.947735191637631,
+ "grad_norm": 0.03216313198208809,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 2.4749364852905273,
+ "step": 572
+ },
+ {
+ "epoch": 7.961672473867596,
+ "grad_norm": 0.03091583214700222,
+ "learning_rate": 0.000573741597999996,
+ "loss": 2.470108985900879,
+ "step": 573
+ },
+ {
+ "epoch": 7.975609756097561,
+ "grad_norm": 0.028130974620580673,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 2.466053009033203,
+ "step": 574
+ },
+ {
+ "epoch": 7.989547038327526,
+ "grad_norm": 0.03071889653801918,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 2.4787344932556152,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.02555985376238823,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 1.8408641815185547,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 0.6343774199485779,
+ "eval_runtime": 38.5533,
+ "eval_samples_per_second": 63.341,
+ "eval_steps_per_second": 0.519,
+ "step": 576
+ },
+ {
+ "epoch": 8.013937282229966,
+ "grad_norm": 0.03359892964363098,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 2.4359030723571777,
+ "step": 577
+ },
+ {
+ "epoch": 8.02787456445993,
+ "grad_norm": 0.05054016411304474,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 2.4193553924560547,
+ "step": 578
+ },
+ {
+ "epoch": 8.041811846689896,
+ "grad_norm": 0.062336456030607224,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 2.4455740451812744,
+ "step": 579
+ },
+ {
+ "epoch": 8.05574912891986,
+ "grad_norm": 0.06716352701187134,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 2.4429545402526855,
+ "step": 580
+ },
+ {
+ "epoch": 8.069686411149826,
+ "grad_norm": 0.06647022068500519,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 2.4446518421173096,
+ "step": 581
+ },
+ {
+ "epoch": 8.08362369337979,
+ "grad_norm": 0.0826159194111824,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 2.436643600463867,
+ "step": 582
+ },
+ {
+ "epoch": 8.097560975609756,
+ "grad_norm": 0.08472150564193726,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 2.451641082763672,
+ "step": 583
+ },
+ {
+ "epoch": 8.111498257839722,
+ "grad_norm": 0.07912597805261612,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 2.447244167327881,
+ "step": 584
+ },
+ {
+ "epoch": 8.125435540069686,
+ "grad_norm": 0.0796087384223938,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 2.4437828063964844,
+ "step": 585
+ },
+ {
+ "epoch": 8.139372822299652,
+ "grad_norm": 0.07414955645799637,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 2.437047004699707,
+ "step": 586
+ },
+ {
+ "epoch": 8.153310104529616,
+ "grad_norm": 0.06763316690921783,
+ "learning_rate": 0.000572185929672906,
+ "loss": 2.446570873260498,
+ "step": 587
+ },
+ {
+ "epoch": 8.167247386759582,
+ "grad_norm": 0.05742042511701584,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 2.445460796356201,
+ "step": 588
+ },
+ {
+ "epoch": 8.181184668989546,
+ "grad_norm": 0.0572611466050148,
+ "learning_rate": 0.000571960215520345,
+ "loss": 2.4439504146575928,
+ "step": 589
+ },
+ {
+ "epoch": 8.195121951219512,
+ "grad_norm": 0.05339052528142929,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 2.4502882957458496,
+ "step": 590
+ },
+ {
+ "epoch": 8.209059233449477,
+ "grad_norm": 0.05900551751255989,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 2.450836658477783,
+ "step": 591
+ },
+ {
+ "epoch": 8.222996515679442,
+ "grad_norm": 0.06624466180801392,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 2.4539589881896973,
+ "step": 592
+ },
+ {
+ "epoch": 8.236933797909408,
+ "grad_norm": 0.06468363106250763,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 2.448918342590332,
+ "step": 593
+ },
+ {
+ "epoch": 8.250871080139373,
+ "grad_norm": 0.04979013651609421,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 2.447591781616211,
+ "step": 594
+ },
+ {
+ "epoch": 8.264808362369338,
+ "grad_norm": 0.047402940690517426,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 2.450143337249756,
+ "step": 595
+ },
+ {
+ "epoch": 8.278745644599303,
+ "grad_norm": 0.041620269417762756,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 2.4322123527526855,
+ "step": 596
+ },
+ {
+ "epoch": 8.292682926829269,
+ "grad_norm": 0.04016399011015892,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 2.4417006969451904,
+ "step": 597
+ },
+ {
+ "epoch": 8.306620209059233,
+ "grad_norm": 0.04293493181467056,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 2.4442501068115234,
+ "step": 598
+ },
+ {
+ "epoch": 8.320557491289199,
+ "grad_norm": 0.041785892099142075,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 2.4570703506469727,
+ "step": 599
+ },
+ {
+ "epoch": 8.334494773519165,
+ "grad_norm": 0.042869169265031815,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 2.4294066429138184,
+ "step": 600
+ },
+ {
+ "epoch": 8.348432055749129,
+ "grad_norm": 0.04059606418013573,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 2.4469175338745117,
+ "step": 601
+ },
+ {
+ "epoch": 8.362369337979095,
+ "grad_norm": 0.03664898872375488,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 2.432004451751709,
+ "step": 602
+ },
+ {
+ "epoch": 8.376306620209059,
+ "grad_norm": 0.031866125762462616,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 2.4305002689361572,
+ "step": 603
+ },
+ {
+ "epoch": 8.390243902439025,
+ "grad_norm": 0.03416220843791962,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 2.4407525062561035,
+ "step": 604
+ },
+ {
+ "epoch": 8.404181184668989,
+ "grad_norm": 0.03265870735049248,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 2.426929473876953,
+ "step": 605
+ },
+ {
+ "epoch": 8.418118466898955,
+ "grad_norm": 0.03337112441658974,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 2.443507671356201,
+ "step": 606
+ },
+ {
+ "epoch": 8.43205574912892,
+ "grad_norm": 0.0337977334856987,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 2.4583749771118164,
+ "step": 607
+ },
+ {
+ "epoch": 8.445993031358885,
+ "grad_norm": 0.02970845066010952,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 2.4297292232513428,
+ "step": 608
+ },
+ {
+ "epoch": 8.45993031358885,
+ "grad_norm": 0.03051869012415409,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 2.452547550201416,
+ "step": 609
+ },
+ {
+ "epoch": 8.473867595818815,
+ "grad_norm": 0.030234314501285553,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 2.427704334259033,
+ "step": 610
+ },
+ {
+ "epoch": 8.487804878048781,
+ "grad_norm": 0.0297533068805933,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 2.4193124771118164,
+ "step": 611
+ },
+ {
+ "epoch": 8.501742160278745,
+ "grad_norm": 0.030258657410740852,
+ "learning_rate": 0.000569302387925215,
+ "loss": 2.4159011840820312,
+ "step": 612
+ },
+ {
+ "epoch": 8.515679442508711,
+ "grad_norm": 0.029942622408270836,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 2.4217724800109863,
+ "step": 613
+ },
+ {
+ "epoch": 8.529616724738675,
+ "grad_norm": 0.030715234577655792,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 2.44870662689209,
+ "step": 614
+ },
+ {
+ "epoch": 8.543554006968641,
+ "grad_norm": 0.03252873569726944,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 2.417196750640869,
+ "step": 615
+ },
+ {
+ "epoch": 8.557491289198607,
+ "grad_norm": 0.03387020155787468,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 2.4181065559387207,
+ "step": 616
+ },
+ {
+ "epoch": 8.571428571428571,
+ "grad_norm": 0.035596199333667755,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 2.4240612983703613,
+ "step": 617
+ },
+ {
+ "epoch": 8.585365853658537,
+ "grad_norm": 0.03890643268823624,
+ "learning_rate": 0.000568590328960903,
+ "loss": 2.435359477996826,
+ "step": 618
+ },
+ {
+ "epoch": 8.599303135888501,
+ "grad_norm": 0.041447605937719345,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 2.4370574951171875,
+ "step": 619
+ },
+ {
+ "epoch": 8.613240418118467,
+ "grad_norm": 0.03584018349647522,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 2.4231667518615723,
+ "step": 620
+ },
+ {
+ "epoch": 8.627177700348431,
+ "grad_norm": 0.03309513255953789,
+ "learning_rate": 0.000568231409438027,
+ "loss": 2.4281513690948486,
+ "step": 621
+ },
+ {
+ "epoch": 8.641114982578397,
+ "grad_norm": 0.0365641750395298,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 2.4262235164642334,
+ "step": 622
+ },
+ {
+ "epoch": 8.655052264808361,
+ "grad_norm": 0.033776357769966125,
+ "learning_rate": 0.000567991061134677,
+ "loss": 2.4259705543518066,
+ "step": 623
+ },
+ {
+ "epoch": 8.668989547038327,
+ "grad_norm": 0.03251301124691963,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 2.4303622245788574,
+ "step": 624
+ },
+ {
+ "epoch": 8.682926829268293,
+ "grad_norm": 0.03311233967542648,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 2.4325923919677734,
+ "step": 625
+ },
+ {
+ "epoch": 8.696864111498257,
+ "grad_norm": 0.032762084156274796,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 2.423525333404541,
+ "step": 626
+ },
+ {
+ "epoch": 8.710801393728223,
+ "grad_norm": 0.03397396206855774,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 2.421725273132324,
+ "step": 627
+ },
+ {
+ "epoch": 8.724738675958188,
+ "grad_norm": 0.03827521204948425,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 2.417745590209961,
+ "step": 628
+ },
+ {
+ "epoch": 8.738675958188153,
+ "grad_norm": 0.03194425627589226,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 2.4408435821533203,
+ "step": 629
+ },
+ {
+ "epoch": 8.752613240418118,
+ "grad_norm": 0.02894434705376625,
+ "learning_rate": 0.000567143121979179,
+ "loss": 2.430302143096924,
+ "step": 630
+ },
+ {
+ "epoch": 8.766550522648084,
+ "grad_norm": 0.03130284696817398,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 2.4167380332946777,
+ "step": 631
+ },
+ {
+ "epoch": 8.78048780487805,
+ "grad_norm": 0.03176414966583252,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 2.4211833477020264,
+ "step": 632
+ },
+ {
+ "epoch": 8.794425087108014,
+ "grad_norm": 0.03023882955312729,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 2.4175009727478027,
+ "step": 633
+ },
+ {
+ "epoch": 8.80836236933798,
+ "grad_norm": 0.03027920238673687,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 2.4296345710754395,
+ "step": 634
+ },
+ {
+ "epoch": 8.822299651567944,
+ "grad_norm": 0.031661003828048706,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 2.4292376041412354,
+ "step": 635
+ },
+ {
+ "epoch": 8.83623693379791,
+ "grad_norm": 0.02943863719701767,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 2.422773599624634,
+ "step": 636
+ },
+ {
+ "epoch": 8.850174216027874,
+ "grad_norm": 0.02999107912182808,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 2.4288015365600586,
+ "step": 637
+ },
+ {
+ "epoch": 8.86411149825784,
+ "grad_norm": 0.03127457574009895,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 2.426997184753418,
+ "step": 638
+ },
+ {
+ "epoch": 8.878048780487806,
+ "grad_norm": 0.0321597196161747,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 2.418203353881836,
+ "step": 639
+ },
+ {
+ "epoch": 8.89198606271777,
+ "grad_norm": 0.032045748084783554,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 2.4220266342163086,
+ "step": 640
+ },
+ {
+ "epoch": 8.905923344947736,
+ "grad_norm": 0.031895119696855545,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 2.421767234802246,
+ "step": 641
+ },
+ {
+ "epoch": 8.9198606271777,
+ "grad_norm": 0.0330902598798275,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 2.418246269226074,
+ "step": 642
+ },
+ {
+ "epoch": 8.933797909407666,
+ "grad_norm": 0.03361523523926735,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 2.423337697982788,
+ "step": 643
+ },
+ {
+ "epoch": 8.94773519163763,
+ "grad_norm": 0.033133652061223984,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 2.4278783798217773,
+ "step": 644
+ },
+ {
+ "epoch": 8.961672473867596,
+ "grad_norm": 0.03747311979532242,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 2.434087038040161,
+ "step": 645
+ },
+ {
+ "epoch": 8.975609756097562,
+ "grad_norm": 0.036127083003520966,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 2.4167022705078125,
+ "step": 646
+ },
+ {
+ "epoch": 8.989547038327526,
+ "grad_norm": 0.03699145093560219,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 2.4243075847625732,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.028921982273459435,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 1.8086339235305786,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 0.6271453499794006,
+ "eval_runtime": 35.9474,
+ "eval_samples_per_second": 67.933,
+ "eval_steps_per_second": 0.556,
+ "step": 648
+ },
+ {
+ "epoch": 9.013937282229966,
+ "grad_norm": 0.0380239300429821,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 2.377704381942749,
+ "step": 649
+ },
+ {
+ "epoch": 9.02787456445993,
+ "grad_norm": 0.05574064329266548,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 2.399777889251709,
+ "step": 650
+ },
+ {
+ "epoch": 9.041811846689896,
+ "grad_norm": 0.06179674342274666,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 2.3851845264434814,
+ "step": 651
+ },
+ {
+ "epoch": 9.05574912891986,
+ "grad_norm": 0.06461436301469803,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 2.385363817214966,
+ "step": 652
+ },
+ {
+ "epoch": 9.069686411149826,
+ "grad_norm": 0.058009687811136246,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 2.3721890449523926,
+ "step": 653
+ },
+ {
+ "epoch": 9.08362369337979,
+ "grad_norm": 0.06488639861345291,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 2.386878490447998,
+ "step": 654
+ },
+ {
+ "epoch": 9.097560975609756,
+ "grad_norm": 0.05683685839176178,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 2.3946213722229004,
+ "step": 655
+ },
+ {
+ "epoch": 9.111498257839722,
+ "grad_norm": 0.05336347594857216,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 2.3708930015563965,
+ "step": 656
+ },
+ {
+ "epoch": 9.125435540069686,
+ "grad_norm": 0.05320737510919571,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 2.39091157913208,
+ "step": 657
+ },
+ {
+ "epoch": 9.139372822299652,
+ "grad_norm": 0.05641087517142296,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 2.381009578704834,
+ "step": 658
+ },
+ {
+ "epoch": 9.153310104529616,
+ "grad_norm": 0.06087775528430939,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 2.377963066101074,
+ "step": 659
+ },
+ {
+ "epoch": 9.167247386759582,
+ "grad_norm": 0.06592115014791489,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 2.392094135284424,
+ "step": 660
+ },
+ {
+ "epoch": 9.181184668989546,
+ "grad_norm": 0.061441708356142044,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 2.388850212097168,
+ "step": 661
+ },
+ {
+ "epoch": 9.195121951219512,
+ "grad_norm": 0.06311637908220291,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 2.38919734954834,
+ "step": 662
+ },
+ {
+ "epoch": 9.209059233449477,
+ "grad_norm": 0.07152658700942993,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 2.3724892139434814,
+ "step": 663
+ },
+ {
+ "epoch": 9.222996515679442,
+ "grad_norm": 0.06927355378866196,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 2.4017786979675293,
+ "step": 664
+ },
+ {
+ "epoch": 9.236933797909408,
+ "grad_norm": 0.062740758061409,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 2.376430034637451,
+ "step": 665
+ },
+ {
+ "epoch": 9.250871080139373,
+ "grad_norm": 0.051289040595293045,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 2.3926010131835938,
+ "step": 666
+ },
+ {
+ "epoch": 9.264808362369338,
+ "grad_norm": 0.055630262941122055,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 2.3605382442474365,
+ "step": 667
+ },
+ {
+ "epoch": 9.278745644599303,
+ "grad_norm": 0.052814628928899765,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 2.374608039855957,
+ "step": 668
+ },
+ {
+ "epoch": 9.292682926829269,
+ "grad_norm": 0.05927073210477829,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 2.384093999862671,
+ "step": 669
+ },
+ {
+ "epoch": 9.306620209059233,
+ "grad_norm": 0.05510697513818741,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 2.374708652496338,
+ "step": 670
+ },
+ {
+ "epoch": 9.320557491289199,
+ "grad_norm": 0.048580385744571686,
+ "learning_rate": 0.000561968326197397,
+ "loss": 2.3861031532287598,
+ "step": 671
+ },
+ {
+ "epoch": 9.334494773519165,
+ "grad_norm": 0.04905429109930992,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 2.3835110664367676,
+ "step": 672
+ },
+ {
+ "epoch": 9.348432055749129,
+ "grad_norm": 0.04621037095785141,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 2.379696846008301,
+ "step": 673
+ },
+ {
+ "epoch": 9.362369337979095,
+ "grad_norm": 0.0437726229429245,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 2.3854074478149414,
+ "step": 674
+ },
+ {
+ "epoch": 9.376306620209059,
+ "grad_norm": 0.040361031889915466,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 2.39682936668396,
+ "step": 675
+ },
+ {
+ "epoch": 9.390243902439025,
+ "grad_norm": 0.03848707675933838,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 2.3752408027648926,
+ "step": 676
+ },
+ {
+ "epoch": 9.404181184668989,
+ "grad_norm": 0.04017478972673416,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 2.3912038803100586,
+ "step": 677
+ },
+ {
+ "epoch": 9.418118466898955,
+ "grad_norm": 0.03487734496593475,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 2.389535427093506,
+ "step": 678
+ },
+ {
+ "epoch": 9.43205574912892,
+ "grad_norm": 0.03736500069499016,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 2.3840279579162598,
+ "step": 679
+ },
+ {
+ "epoch": 9.445993031358885,
+ "grad_norm": 0.03499516844749451,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 2.3752779960632324,
+ "step": 680
+ },
+ {
+ "epoch": 9.45993031358885,
+ "grad_norm": 0.03297547250986099,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 2.3991637229919434,
+ "step": 681
+ },
+ {
+ "epoch": 9.473867595818815,
+ "grad_norm": 0.03387392312288284,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 2.3872644901275635,
+ "step": 682
+ },
+ {
+ "epoch": 9.487804878048781,
+ "grad_norm": 0.03756970539689064,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 2.368522882461548,
+ "step": 683
+ },
+ {
+ "epoch": 9.501742160278745,
+ "grad_norm": 0.03686998412013054,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 2.381460189819336,
+ "step": 684
+ },
+ {
+ "epoch": 9.515679442508711,
+ "grad_norm": 0.03336082771420479,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 2.3871984481811523,
+ "step": 685
+ },
+ {
+ "epoch": 9.529616724738675,
+ "grad_norm": 0.03545147553086281,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 2.3921163082122803,
+ "step": 686
+ },
+ {
+ "epoch": 9.543554006968641,
+ "grad_norm": 0.03614704683423042,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 2.388418197631836,
+ "step": 687
+ },
+ {
+ "epoch": 9.557491289198607,
+ "grad_norm": 0.0350213497877121,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 2.399055004119873,
+ "step": 688
+ },
+ {
+ "epoch": 9.571428571428571,
+ "grad_norm": 0.035602837800979614,
+ "learning_rate": 0.000559585254906272,
+ "loss": 2.3897178173065186,
+ "step": 689
+ },
+ {
+ "epoch": 9.585365853658537,
+ "grad_norm": 0.03438388183712959,
+ "learning_rate": 0.000559450892376025,
+ "loss": 2.407155990600586,
+ "step": 690
+ },
+ {
+ "epoch": 9.599303135888501,
+ "grad_norm": 0.035386405885219574,
+ "learning_rate": 0.000559316323227926,
+ "loss": 2.390408992767334,
+ "step": 691
+ },
+ {
+ "epoch": 9.613240418118467,
+ "grad_norm": 0.03753617778420448,
+ "learning_rate": 0.000559181547570395,
+ "loss": 2.3751039505004883,
+ "step": 692
+ },
+ {
+ "epoch": 9.627177700348431,
+ "grad_norm": 0.03430183231830597,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 2.3941941261291504,
+ "step": 693
+ },
+ {
+ "epoch": 9.641114982578397,
+ "grad_norm": 0.03268825262784958,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 2.3772215843200684,
+ "step": 694
+ },
+ {
+ "epoch": 9.655052264808361,
+ "grad_norm": 0.0341268889605999,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 2.3830480575561523,
+ "step": 695
+ },
+ {
+ "epoch": 9.668989547038327,
+ "grad_norm": 0.03466663882136345,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 2.3796463012695312,
+ "step": 696
+ },
+ {
+ "epoch": 9.682926829268293,
+ "grad_norm": 0.03470399230718613,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 2.385427713394165,
+ "step": 697
+ },
+ {
+ "epoch": 9.696864111498257,
+ "grad_norm": 0.0382751040160656,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 2.3877949714660645,
+ "step": 698
+ },
+ {
+ "epoch": 9.710801393728223,
+ "grad_norm": 0.035988591611385345,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 2.378014326095581,
+ "step": 699
+ },
+ {
+ "epoch": 9.724738675958188,
+ "grad_norm": 0.03295210376381874,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 2.382502555847168,
+ "step": 700
+ },
+ {
+ "epoch": 9.738675958188153,
+ "grad_norm": 0.030723385512828827,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 2.388451099395752,
+ "step": 701
+ },
+ {
+ "epoch": 9.752613240418118,
+ "grad_norm": 0.03281056135892868,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 2.387669086456299,
+ "step": 702
+ },
+ {
+ "epoch": 9.766550522648084,
+ "grad_norm": 0.03443330153822899,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 2.381460189819336,
+ "step": 703
+ },
+ {
+ "epoch": 9.78048780487805,
+ "grad_norm": 0.03670412674546242,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 2.3756155967712402,
+ "step": 704
+ },
+ {
+ "epoch": 9.794425087108014,
+ "grad_norm": 0.03445884957909584,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 2.371798515319824,
+ "step": 705
+ },
+ {
+ "epoch": 9.80836236933798,
+ "grad_norm": 0.03341168165206909,
+ "learning_rate": 0.000557273065985207,
+ "loss": 2.366093635559082,
+ "step": 706
+ },
+ {
+ "epoch": 9.822299651567944,
+ "grad_norm": 0.035434722900390625,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 2.3876760005950928,
+ "step": 707
+ },
+ {
+ "epoch": 9.83623693379791,
+ "grad_norm": 0.036071036010980606,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 2.363477945327759,
+ "step": 708
+ },
+ {
+ "epoch": 9.850174216027874,
+ "grad_norm": 0.03642858937382698,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 2.3772635459899902,
+ "step": 709
+ },
+ {
+ "epoch": 9.86411149825784,
+ "grad_norm": 0.03974858298897743,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 2.3893399238586426,
+ "step": 710
+ },
+ {
+ "epoch": 9.878048780487806,
+ "grad_norm": 0.040428902953863144,
+ "learning_rate": 0.000556581718698499,
+ "loss": 2.385814666748047,
+ "step": 711
+ },
+ {
+ "epoch": 9.89198606271777,
+ "grad_norm": 0.03710169717669487,
+ "learning_rate": 0.000556442835876097,
+ "loss": 2.3817856311798096,
+ "step": 712
+ },
+ {
+ "epoch": 9.905923344947736,
+ "grad_norm": 0.031853094696998596,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 2.3833706378936768,
+ "step": 713
+ },
+ {
+ "epoch": 9.9198606271777,
+ "grad_norm": 0.03192576766014099,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 2.380492687225342,
+ "step": 714
+ },
+ {
+ "epoch": 9.933797909407666,
+ "grad_norm": 0.03222471475601196,
+ "learning_rate": 0.000556024962691404,
+ "loss": 2.368129014968872,
+ "step": 715
+ },
+ {
+ "epoch": 9.94773519163763,
+ "grad_norm": 0.033947065472602844,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 2.392598867416382,
+ "step": 716
+ },
+ {
+ "epoch": 9.961672473867596,
+ "grad_norm": 0.030860550701618195,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 2.392878532409668,
+ "step": 717
+ },
+ {
+ "epoch": 9.975609756097562,
+ "grad_norm": 0.03237077221274376,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 2.3881583213806152,
+ "step": 718
+ },
+ {
+ "epoch": 9.989547038327526,
+ "grad_norm": 0.03429335355758667,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 2.385345458984375,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.025040561333298683,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 1.7694379091262817,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 0.6226440668106079,
+ "eval_runtime": 35.9996,
+ "eval_samples_per_second": 67.834,
+ "eval_steps_per_second": 0.556,
+ "step": 720
+ },
+ {
+ "epoch": 10.013937282229966,
+ "grad_norm": 0.04380113258957863,
+ "learning_rate": 0.0005551837152119915,
+ "loss": 2.338531494140625,
+ "step": 721
+ },
+ {
+ "epoch": 10.02787456445993,
+ "grad_norm": 0.06502492725849152,
+ "learning_rate": 0.0005550427955088455,
+ "loss": 2.336862087249756,
+ "step": 722
+ },
+ {
+ "epoch": 10.041811846689896,
+ "grad_norm": 0.06072859466075897,
+ "learning_rate": 0.0005549016727393715,
+ "loss": 2.345121383666992,
+ "step": 723
+ },
+ {
+ "epoch": 10.05574912891986,
+ "grad_norm": 0.06489435583353043,
+ "learning_rate": 0.0005547603470172697,
+ "loss": 2.3135323524475098,
+ "step": 724
+ },
+ {
+ "epoch": 10.069686411149826,
+ "grad_norm": 0.07557415962219238,
+ "learning_rate": 0.0005546188184564036,
+ "loss": 2.346886157989502,
+ "step": 725
+ },
+ {
+ "epoch": 10.08362369337979,
+ "grad_norm": 0.07416220009326935,
+ "learning_rate": 0.0005544770871708004,
+ "loss": 2.347463607788086,
+ "step": 726
+ },
+ {
+ "epoch": 10.097560975609756,
+ "grad_norm": 0.07228727638721466,
+ "learning_rate": 0.0005543351532746501,
+ "loss": 2.351980209350586,
+ "step": 727
+ },
+ {
+ "epoch": 10.111498257839722,
+ "grad_norm": 0.07207637280225754,
+ "learning_rate": 0.0005541930168823067,
+ "loss": 2.3345837593078613,
+ "step": 728
+ },
+ {
+ "epoch": 10.125435540069686,
+ "grad_norm": 0.07364149391651154,
+ "learning_rate": 0.0005540506781082864,
+ "loss": 2.3545069694519043,
+ "step": 729
+ },
+ {
+ "epoch": 10.139372822299652,
+ "grad_norm": 0.06596208363771439,
+ "learning_rate": 0.0005539081370672695,
+ "loss": 2.3250179290771484,
+ "step": 730
+ },
+ {
+ "epoch": 10.153310104529616,
+ "grad_norm": 0.07143490016460419,
+ "learning_rate": 0.0005537653938740984,
+ "loss": 2.352842330932617,
+ "step": 731
+ },
+ {
+ "epoch": 10.167247386759582,
+ "grad_norm": 0.06986920535564423,
+ "learning_rate": 0.0005536224486437788,
+ "loss": 2.3406600952148438,
+ "step": 732
+ },
+ {
+ "epoch": 10.181184668989546,
+ "grad_norm": 0.06723238527774811,
+ "learning_rate": 0.0005534793014914793,
+ "loss": 2.36100435256958,
+ "step": 733
+ },
+ {
+ "epoch": 10.195121951219512,
+ "grad_norm": 0.07599805295467377,
+ "learning_rate": 0.0005533359525325307,
+ "loss": 2.364171028137207,
+ "step": 734
+ },
+ {
+ "epoch": 10.209059233449477,
+ "grad_norm": 0.06879840791225433,
+ "learning_rate": 0.0005531924018824266,
+ "loss": 2.3600802421569824,
+ "step": 735
+ },
+ {
+ "epoch": 10.222996515679442,
+ "grad_norm": 0.06736139208078384,
+ "learning_rate": 0.0005530486496568236,
+ "loss": 2.3630075454711914,
+ "step": 736
+ },
+ {
+ "epoch": 10.236933797909408,
+ "grad_norm": 0.073630690574646,
+ "learning_rate": 0.0005529046959715397,
+ "loss": 2.3535385131835938,
+ "step": 737
+ },
+ {
+ "epoch": 10.250871080139373,
+ "grad_norm": 0.081154465675354,
+ "learning_rate": 0.0005527605409425562,
+ "loss": 2.355775833129883,
+ "step": 738
+ },
+ {
+ "epoch": 10.264808362369338,
+ "grad_norm": 0.07517901808023453,
+ "learning_rate": 0.0005526161846860161,
+ "loss": 2.3474936485290527,
+ "step": 739
+ },
+ {
+ "epoch": 10.278745644599303,
+ "grad_norm": 0.06589196622371674,
+ "learning_rate": 0.0005524716273182245,
+ "loss": 2.356273651123047,
+ "step": 740
+ },
+ {
+ "epoch": 10.292682926829269,
+ "grad_norm": 0.07035321742296219,
+ "learning_rate": 0.0005523268689556489,
+ "loss": 2.3348515033721924,
+ "step": 741
+ },
+ {
+ "epoch": 10.306620209059233,
+ "grad_norm": 0.05464137718081474,
+ "learning_rate": 0.0005521819097149183,
+ "loss": 2.340257167816162,
+ "step": 742
+ },
+ {
+ "epoch": 10.320557491289199,
+ "grad_norm": 0.05040175840258598,
+ "learning_rate": 0.0005520367497128238,
+ "loss": 2.356626033782959,
+ "step": 743
+ },
+ {
+ "epoch": 10.334494773519165,
+ "grad_norm": 0.04544971138238907,
+ "learning_rate": 0.0005518913890663182,
+ "loss": 2.3765573501586914,
+ "step": 744
+ },
+ {
+ "epoch": 10.348432055749129,
+ "grad_norm": 0.04246767982840538,
+ "learning_rate": 0.0005517458278925161,
+ "loss": 2.3584630489349365,
+ "step": 745
+ },
+ {
+ "epoch": 10.362369337979095,
+ "grad_norm": 0.0407957099378109,
+ "learning_rate": 0.0005516000663086932,
+ "loss": 2.3562331199645996,
+ "step": 746
+ },
+ {
+ "epoch": 10.376306620209059,
+ "grad_norm": 0.04157666489481926,
+ "learning_rate": 0.0005514541044322872,
+ "loss": 2.355463743209839,
+ "step": 747
+ },
+ {
+ "epoch": 10.390243902439025,
+ "grad_norm": 0.03842373192310333,
+ "learning_rate": 0.0005513079423808967,
+ "loss": 2.3644120693206787,
+ "step": 748
+ },
+ {
+ "epoch": 10.404181184668989,
+ "grad_norm": 0.03891562297940254,
+ "learning_rate": 0.0005511615802722823,
+ "loss": 2.3579063415527344,
+ "step": 749
+ },
+ {
+ "epoch": 10.418118466898955,
+ "grad_norm": 0.03712530806660652,
+ "learning_rate": 0.0005510150182243647,
+ "loss": 2.3606715202331543,
+ "step": 750
+ },
+ {
+ "epoch": 10.43205574912892,
+ "grad_norm": 0.03664202243089676,
+ "learning_rate": 0.0005508682563552269,
+ "loss": 2.3363728523254395,
+ "step": 751
+ },
+ {
+ "epoch": 10.445993031358885,
+ "grad_norm": 0.03555043414235115,
+ "learning_rate": 0.0005507212947831119,
+ "loss": 2.357100009918213,
+ "step": 752
+ },
+ {
+ "epoch": 10.45993031358885,
+ "grad_norm": 0.0355045385658741,
+ "learning_rate": 0.0005505741336264239,
+ "loss": 2.348784923553467,
+ "step": 753
+ },
+ {
+ "epoch": 10.473867595818815,
+ "grad_norm": 0.036513347178697586,
+ "learning_rate": 0.0005504267730037283,
+ "loss": 2.3371458053588867,
+ "step": 754
+ },
+ {
+ "epoch": 10.487804878048781,
+ "grad_norm": 0.034735117107629776,
+ "learning_rate": 0.0005502792130337508,
+ "loss": 2.3379664421081543,
+ "step": 755
+ },
+ {
+ "epoch": 10.501742160278745,
+ "grad_norm": 0.032890401780605316,
+ "learning_rate": 0.0005501314538353776,
+ "loss": 2.345534563064575,
+ "step": 756
+ },
+ {
+ "epoch": 10.515679442508711,
+ "grad_norm": 0.0343078076839447,
+ "learning_rate": 0.000549983495527656,
+ "loss": 2.3425400257110596,
+ "step": 757
+ },
+ {
+ "epoch": 10.529616724738675,
+ "grad_norm": 0.036330267786979675,
+ "learning_rate": 0.000549835338229793,
+ "loss": 2.353668689727783,
+ "step": 758
+ },
+ {
+ "epoch": 10.543554006968641,
+ "grad_norm": 0.03595716878771782,
+ "learning_rate": 0.0005496869820611563,
+ "loss": 2.340348958969116,
+ "step": 759
+ },
+ {
+ "epoch": 10.557491289198607,
+ "grad_norm": 0.03567204624414444,
+ "learning_rate": 0.0005495384271412739,
+ "loss": 2.3443446159362793,
+ "step": 760
+ },
+ {
+ "epoch": 10.571428571428571,
+ "grad_norm": 0.03243366256356239,
+ "learning_rate": 0.0005493896735898338,
+ "loss": 2.328749179840088,
+ "step": 761
+ },
+ {
+ "epoch": 10.585365853658537,
+ "grad_norm": 0.033156730234622955,
+ "learning_rate": 0.000549240721526684,
+ "loss": 2.3553342819213867,
+ "step": 762
+ },
+ {
+ "epoch": 10.599303135888501,
+ "grad_norm": 0.03489018976688385,
+ "learning_rate": 0.0005490915710718325,
+ "loss": 2.329984664916992,
+ "step": 763
+ },
+ {
+ "epoch": 10.613240418118467,
+ "grad_norm": 0.0352267362177372,
+ "learning_rate": 0.0005489422223454471,
+ "loss": 2.34751033782959,
+ "step": 764
+ },
+ {
+ "epoch": 10.627177700348431,
+ "grad_norm": 0.03212668001651764,
+ "learning_rate": 0.0005487926754678556,
+ "loss": 2.341987133026123,
+ "step": 765
+ },
+ {
+ "epoch": 10.641114982578397,
+ "grad_norm": 0.03473065048456192,
+ "learning_rate": 0.0005486429305595448,
+ "loss": 2.343632221221924,
+ "step": 766
+ },
+ {
+ "epoch": 10.655052264808361,
+ "grad_norm": 0.03458387404680252,
+ "learning_rate": 0.0005484929877411618,
+ "loss": 2.3420281410217285,
+ "step": 767
+ },
+ {
+ "epoch": 10.668989547038327,
+ "grad_norm": 0.03573968634009361,
+ "learning_rate": 0.0005483428471335127,
+ "loss": 2.349421501159668,
+ "step": 768
+ },
+ {
+ "epoch": 10.682926829268293,
+ "grad_norm": 0.034877803176641464,
+ "learning_rate": 0.000548192508857563,
+ "loss": 2.354094982147217,
+ "step": 769
+ },
+ {
+ "epoch": 10.696864111498257,
+ "grad_norm": 0.03350481390953064,
+ "learning_rate": 0.0005480419730344377,
+ "loss": 2.334352493286133,
+ "step": 770
+ },
+ {
+ "epoch": 10.710801393728223,
+ "grad_norm": 0.03327416628599167,
+ "learning_rate": 0.0005478912397854208,
+ "loss": 2.3445448875427246,
+ "step": 771
+ },
+ {
+ "epoch": 10.724738675958188,
+ "grad_norm": 0.03491336479783058,
+ "learning_rate": 0.0005477403092319552,
+ "loss": 2.3525538444519043,
+ "step": 772
+ },
+ {
+ "epoch": 10.738675958188153,
+ "grad_norm": 0.035869523882865906,
+ "learning_rate": 0.0005475891814956429,
+ "loss": 2.3440966606140137,
+ "step": 773
+ },
+ {
+ "epoch": 10.752613240418118,
+ "grad_norm": 0.036187391728162766,
+ "learning_rate": 0.0005474378566982449,
+ "loss": 2.33382511138916,
+ "step": 774
+ },
+ {
+ "epoch": 10.766550522648084,
+ "grad_norm": 0.037324003875255585,
+ "learning_rate": 0.0005472863349616809,
+ "loss": 2.3463244438171387,
+ "step": 775
+ },
+ {
+ "epoch": 10.78048780487805,
+ "grad_norm": 0.035808268934488297,
+ "learning_rate": 0.0005471346164080292,
+ "loss": 2.3392248153686523,
+ "step": 776
+ },
+ {
+ "epoch": 10.794425087108014,
+ "grad_norm": 0.03382394090294838,
+ "learning_rate": 0.0005469827011595266,
+ "loss": 2.3399806022644043,
+ "step": 777
+ },
+ {
+ "epoch": 10.80836236933798,
+ "grad_norm": 0.03256148472428322,
+ "learning_rate": 0.0005468305893385686,
+ "loss": 2.336940050125122,
+ "step": 778
+ },
+ {
+ "epoch": 10.822299651567944,
+ "grad_norm": 0.032796118408441544,
+ "learning_rate": 0.0005466782810677088,
+ "loss": 2.3503036499023438,
+ "step": 779
+ },
+ {
+ "epoch": 10.83623693379791,
+ "grad_norm": 0.03359639272093773,
+ "learning_rate": 0.0005465257764696593,
+ "loss": 2.340160608291626,
+ "step": 780
+ },
+ {
+ "epoch": 10.850174216027874,
+ "grad_norm": 0.03725067153573036,
+ "learning_rate": 0.0005463730756672903,
+ "loss": 2.3448994159698486,
+ "step": 781
+ },
+ {
+ "epoch": 10.86411149825784,
+ "grad_norm": 0.03396180644631386,
+ "learning_rate": 0.0005462201787836301,
+ "loss": 2.337078094482422,
+ "step": 782
+ },
+ {
+ "epoch": 10.878048780487806,
+ "grad_norm": 0.034375693649053574,
+ "learning_rate": 0.0005460670859418651,
+ "loss": 2.3564600944519043,
+ "step": 783
+ },
+ {
+ "epoch": 10.89198606271777,
+ "grad_norm": 0.034513067454099655,
+ "learning_rate": 0.000545913797265339,
+ "loss": 2.3631274700164795,
+ "step": 784
+ },
+ {
+ "epoch": 10.905923344947736,
+ "grad_norm": 0.03305843099951744,
+ "learning_rate": 0.0005457603128775541,
+ "loss": 2.345407485961914,
+ "step": 785
+ },
+ {
+ "epoch": 10.9198606271777,
+ "grad_norm": 0.03236348554491997,
+ "learning_rate": 0.0005456066329021699,
+ "loss": 2.340275526046753,
+ "step": 786
+ },
+ {
+ "epoch": 10.933797909407666,
+ "grad_norm": 0.03411583974957466,
+ "learning_rate": 0.0005454527574630037,
+ "loss": 2.341548442840576,
+ "step": 787
+ },
+ {
+ "epoch": 10.94773519163763,
+ "grad_norm": 0.03641803562641144,
+ "learning_rate": 0.0005452986866840298,
+ "loss": 2.3475522994995117,
+ "step": 788
+ },
+ {
+ "epoch": 10.961672473867596,
+ "grad_norm": 0.03492163494229317,
+ "learning_rate": 0.0005451444206893806,
+ "loss": 2.3415870666503906,
+ "step": 789
+ },
+ {
+ "epoch": 10.975609756097562,
+ "grad_norm": 0.03789013251662254,
+ "learning_rate": 0.0005449899596033453,
+ "loss": 2.3574557304382324,
+ "step": 790
+ },
+ {
+ "epoch": 10.989547038327526,
+ "grad_norm": 0.034537237137556076,
+ "learning_rate": 0.0005448353035503704,
+ "loss": 2.350353717803955,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.026393387466669083,
+ "learning_rate": 0.0005446804526550596,
+ "loss": 1.7534164190292358,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 0.6207266449928284,
+ "eval_runtime": 36.6286,
+ "eval_samples_per_second": 66.669,
+ "eval_steps_per_second": 0.546,
+ "step": 792
+ },
+ {
+ "epoch": 11.013937282229966,
+ "grad_norm": 0.04500797390937805,
+ "learning_rate": 0.0005445254070421732,
+ "loss": 2.29563570022583,
+ "step": 793
+ },
+ {
+ "epoch": 11.02787456445993,
+ "grad_norm": 0.058218058198690414,
+ "learning_rate": 0.0005443701668366288,
+ "loss": 2.285862445831299,
+ "step": 794
+ },
+ {
+ "epoch": 11.041811846689896,
+ "grad_norm": 0.06746228039264679,
+ "learning_rate": 0.0005442147321635007,
+ "loss": 2.2930586338043213,
+ "step": 795
+ },
+ {
+ "epoch": 11.05574912891986,
+ "grad_norm": 0.07853464037179947,
+ "learning_rate": 0.00054405910314802,
+ "loss": 2.2999796867370605,
+ "step": 796
+ },
+ {
+ "epoch": 11.069686411149826,
+ "grad_norm": 0.0743563324213028,
+ "learning_rate": 0.0005439032799155737,
+ "loss": 2.3127989768981934,
+ "step": 797
+ },
+ {
+ "epoch": 11.08362369337979,
+ "grad_norm": 0.06950018554925919,
+ "learning_rate": 0.000543747262591706,
+ "loss": 2.302677631378174,
+ "step": 798
+ },
+ {
+ "epoch": 11.097560975609756,
+ "grad_norm": 0.0668293684720993,
+ "learning_rate": 0.0005435910513021172,
+ "loss": 2.3067705631256104,
+ "step": 799
+ },
+ {
+ "epoch": 11.111498257839722,
+ "grad_norm": 0.05805148929357529,
+ "learning_rate": 0.0005434346461726641,
+ "loss": 2.2972123622894287,
+ "step": 800
+ },
+ {
+ "epoch": 11.125435540069686,
+ "grad_norm": 0.059285592287778854,
+ "learning_rate": 0.0005432780473293593,
+ "loss": 2.302372932434082,
+ "step": 801
+ },
+ {
+ "epoch": 11.139372822299652,
+ "grad_norm": 0.054501719772815704,
+ "learning_rate": 0.0005431212548983718,
+ "loss": 2.305246353149414,
+ "step": 802
+ },
+ {
+ "epoch": 11.153310104529616,
+ "grad_norm": 0.05490308254957199,
+ "learning_rate": 0.0005429642690060262,
+ "loss": 2.300204277038574,
+ "step": 803
+ },
+ {
+ "epoch": 11.167247386759582,
+ "grad_norm": 0.05564664676785469,
+ "learning_rate": 0.0005428070897788034,
+ "loss": 2.295349597930908,
+ "step": 804
+ },
+ {
+ "epoch": 11.181184668989546,
+ "grad_norm": 0.04841756820678711,
+ "learning_rate": 0.0005426497173433398,
+ "loss": 2.3083786964416504,
+ "step": 805
+ },
+ {
+ "epoch": 11.195121951219512,
+ "grad_norm": 0.05090150982141495,
+ "learning_rate": 0.0005424921518264275,
+ "loss": 2.2890477180480957,
+ "step": 806
+ },
+ {
+ "epoch": 11.209059233449477,
+ "grad_norm": 0.049588896334171295,
+ "learning_rate": 0.0005423343933550143,
+ "loss": 2.3092164993286133,
+ "step": 807
+ },
+ {
+ "epoch": 11.222996515679442,
+ "grad_norm": 0.059266265481710434,
+ "learning_rate": 0.0005421764420562032,
+ "loss": 2.3087329864501953,
+ "step": 808
+ },
+ {
+ "epoch": 11.236933797909408,
+ "grad_norm": 0.061635106801986694,
+ "learning_rate": 0.0005420182980572527,
+ "loss": 2.310224771499634,
+ "step": 809
+ },
+ {
+ "epoch": 11.250871080139373,
+ "grad_norm": 0.058707281947135925,
+ "learning_rate": 0.0005418599614855768,
+ "loss": 2.3094818592071533,
+ "step": 810
+ },
+ {
+ "epoch": 11.264808362369338,
+ "grad_norm": 0.05711625888943672,
+ "learning_rate": 0.0005417014324687442,
+ "loss": 2.320720672607422,
+ "step": 811
+ },
+ {
+ "epoch": 11.278745644599303,
+ "grad_norm": 0.04941999912261963,
+ "learning_rate": 0.000541542711134479,
+ "loss": 2.3037776947021484,
+ "step": 812
+ },
+ {
+ "epoch": 11.292682926829269,
+ "grad_norm": 0.0481753945350647,
+ "learning_rate": 0.0005413837976106599,
+ "loss": 2.307615280151367,
+ "step": 813
+ },
+ {
+ "epoch": 11.306620209059233,
+ "grad_norm": 0.05005398392677307,
+ "learning_rate": 0.0005412246920253208,
+ "loss": 2.302461624145508,
+ "step": 814
+ },
+ {
+ "epoch": 11.320557491289199,
+ "grad_norm": 0.051312051713466644,
+ "learning_rate": 0.0005410653945066503,
+ "loss": 2.3107659816741943,
+ "step": 815
+ },
+ {
+ "epoch": 11.334494773519165,
+ "grad_norm": 0.047787491232156754,
+ "learning_rate": 0.0005409059051829914,
+ "loss": 2.303896903991699,
+ "step": 816
+ },
+ {
+ "epoch": 11.348432055749129,
+ "grad_norm": 0.044105708599090576,
+ "learning_rate": 0.0005407462241828417,
+ "loss": 2.3028616905212402,
+ "step": 817
+ },
+ {
+ "epoch": 11.362369337979095,
+ "grad_norm": 0.04771425202488899,
+ "learning_rate": 0.0005405863516348535,
+ "loss": 2.3242416381835938,
+ "step": 818
+ },
+ {
+ "epoch": 11.376306620209059,
+ "grad_norm": 0.049508776515722275,
+ "learning_rate": 0.000540426287667833,
+ "loss": 2.317350387573242,
+ "step": 819
+ },
+ {
+ "epoch": 11.390243902439025,
+ "grad_norm": 0.04476630315184593,
+ "learning_rate": 0.000540266032410741,
+ "loss": 2.3019609451293945,
+ "step": 820
+ },
+ {
+ "epoch": 11.404181184668989,
+ "grad_norm": 0.044484466314315796,
+ "learning_rate": 0.0005401055859926923,
+ "loss": 2.3157167434692383,
+ "step": 821
+ },
+ {
+ "epoch": 11.418118466898955,
+ "grad_norm": 0.04700213670730591,
+ "learning_rate": 0.0005399449485429555,
+ "loss": 2.31441330909729,
+ "step": 822
+ },
+ {
+ "epoch": 11.43205574912892,
+ "grad_norm": 0.04357650876045227,
+ "learning_rate": 0.0005397841201909535,
+ "loss": 2.309573173522949,
+ "step": 823
+ },
+ {
+ "epoch": 11.445993031358885,
+ "grad_norm": 0.04270123690366745,
+ "learning_rate": 0.0005396231010662627,
+ "loss": 2.2956438064575195,
+ "step": 824
+ },
+ {
+ "epoch": 11.45993031358885,
+ "grad_norm": 0.04122788831591606,
+ "learning_rate": 0.0005394618912986132,
+ "loss": 2.3093338012695312,
+ "step": 825
+ },
+ {
+ "epoch": 11.473867595818815,
+ "grad_norm": 0.040944404900074005,
+ "learning_rate": 0.0005393004910178889,
+ "loss": 2.3245465755462646,
+ "step": 826
+ },
+ {
+ "epoch": 11.487804878048781,
+ "grad_norm": 0.04059522598981857,
+ "learning_rate": 0.0005391389003541271,
+ "loss": 2.307492733001709,
+ "step": 827
+ },
+ {
+ "epoch": 11.501742160278745,
+ "grad_norm": 0.04292140156030655,
+ "learning_rate": 0.0005389771194375185,
+ "loss": 2.32723069190979,
+ "step": 828
+ },
+ {
+ "epoch": 11.515679442508711,
+ "grad_norm": 0.041085343807935715,
+ "learning_rate": 0.0005388151483984071,
+ "loss": 2.3025991916656494,
+ "step": 829
+ },
+ {
+ "epoch": 11.529616724738675,
+ "grad_norm": 0.040302127599716187,
+ "learning_rate": 0.0005386529873672898,
+ "loss": 2.306711196899414,
+ "step": 830
+ },
+ {
+ "epoch": 11.543554006968641,
+ "grad_norm": 0.04179452359676361,
+ "learning_rate": 0.0005384906364748172,
+ "loss": 2.299077033996582,
+ "step": 831
+ },
+ {
+ "epoch": 11.557491289198607,
+ "grad_norm": 0.04052369296550751,
+ "learning_rate": 0.000538328095851792,
+ "loss": 2.3212227821350098,
+ "step": 832
+ },
+ {
+ "epoch": 11.571428571428571,
+ "grad_norm": 0.03855585679411888,
+ "learning_rate": 0.0005381653656291707,
+ "loss": 2.2905197143554688,
+ "step": 833
+ },
+ {
+ "epoch": 11.585365853658537,
+ "grad_norm": 0.04159102961421013,
+ "learning_rate": 0.0005380024459380619,
+ "loss": 2.2973320484161377,
+ "step": 834
+ },
+ {
+ "epoch": 11.599303135888501,
+ "grad_norm": 0.044633787125349045,
+ "learning_rate": 0.000537839336909727,
+ "loss": 2.3214757442474365,
+ "step": 835
+ },
+ {
+ "epoch": 11.613240418118467,
+ "grad_norm": 0.03999071940779686,
+ "learning_rate": 0.00053767603867558,
+ "loss": 2.332554817199707,
+ "step": 836
+ },
+ {
+ "epoch": 11.627177700348431,
+ "grad_norm": 0.03866419568657875,
+ "learning_rate": 0.0005375125513671874,
+ "loss": 2.3050875663757324,
+ "step": 837
+ },
+ {
+ "epoch": 11.641114982578397,
+ "grad_norm": 0.041100166738033295,
+ "learning_rate": 0.0005373488751162681,
+ "loss": 2.316553831100464,
+ "step": 838
+ },
+ {
+ "epoch": 11.655052264808361,
+ "grad_norm": 0.040330950170755386,
+ "learning_rate": 0.0005371850100546929,
+ "loss": 2.310610294342041,
+ "step": 839
+ },
+ {
+ "epoch": 11.668989547038327,
+ "grad_norm": 0.03405703231692314,
+ "learning_rate": 0.000537020956314485,
+ "loss": 2.311572313308716,
+ "step": 840
+ },
+ {
+ "epoch": 11.682926829268293,
+ "grad_norm": 0.038694240152835846,
+ "learning_rate": 0.0005368567140278196,
+ "loss": 2.291428565979004,
+ "step": 841
+ },
+ {
+ "epoch": 11.696864111498257,
+ "grad_norm": 0.03937961906194687,
+ "learning_rate": 0.0005366922833270235,
+ "loss": 2.315734386444092,
+ "step": 842
+ },
+ {
+ "epoch": 11.710801393728223,
+ "grad_norm": 0.038759566843509674,
+ "learning_rate": 0.0005365276643445757,
+ "loss": 2.3142471313476562,
+ "step": 843
+ },
+ {
+ "epoch": 11.724738675958188,
+ "grad_norm": 0.03737666830420494,
+ "learning_rate": 0.0005363628572131069,
+ "loss": 2.305859088897705,
+ "step": 844
+ },
+ {
+ "epoch": 11.738675958188153,
+ "grad_norm": 0.039980217814445496,
+ "learning_rate": 0.0005361978620653991,
+ "loss": 2.3132710456848145,
+ "step": 845
+ },
+ {
+ "epoch": 11.752613240418118,
+ "grad_norm": 0.040231477469205856,
+ "learning_rate": 0.0005360326790343858,
+ "loss": 2.307582139968872,
+ "step": 846
+ },
+ {
+ "epoch": 11.766550522648084,
+ "grad_norm": 0.03938363865017891,
+ "learning_rate": 0.000535867308253152,
+ "loss": 2.33015775680542,
+ "step": 847
+ },
+ {
+ "epoch": 11.78048780487805,
+ "grad_norm": 0.03871415555477142,
+ "learning_rate": 0.0005357017498549341,
+ "loss": 2.315992832183838,
+ "step": 848
+ },
+ {
+ "epoch": 11.794425087108014,
+ "grad_norm": 0.03816714137792587,
+ "learning_rate": 0.0005355360039731196,
+ "loss": 2.315371513366699,
+ "step": 849
+ },
+ {
+ "epoch": 11.80836236933798,
+ "grad_norm": 0.03860654681921005,
+ "learning_rate": 0.0005353700707412466,
+ "loss": 2.3099796772003174,
+ "step": 850
+ },
+ {
+ "epoch": 11.822299651567944,
+ "grad_norm": 0.04050910845398903,
+ "learning_rate": 0.0005352039502930048,
+ "loss": 2.331601142883301,
+ "step": 851
+ },
+ {
+ "epoch": 11.83623693379791,
+ "grad_norm": 0.040455542504787445,
+ "learning_rate": 0.0005350376427622343,
+ "loss": 2.3153774738311768,
+ "step": 852
+ },
+ {
+ "epoch": 11.850174216027874,
+ "grad_norm": 0.03606412559747696,
+ "learning_rate": 0.0005348711482829261,
+ "loss": 2.3196091651916504,
+ "step": 853
+ },
+ {
+ "epoch": 11.86411149825784,
+ "grad_norm": 0.03540179878473282,
+ "learning_rate": 0.000534704466989222,
+ "loss": 2.3175747394561768,
+ "step": 854
+ },
+ {
+ "epoch": 11.878048780487806,
+ "grad_norm": 0.03594037890434265,
+ "learning_rate": 0.0005345375990154138,
+ "loss": 2.3123281002044678,
+ "step": 855
+ },
+ {
+ "epoch": 11.89198606271777,
+ "grad_norm": 0.037316273897886276,
+ "learning_rate": 0.0005343705444959441,
+ "loss": 2.326590061187744,
+ "step": 856
+ },
+ {
+ "epoch": 11.905923344947736,
+ "grad_norm": 0.03534175828099251,
+ "learning_rate": 0.000534203303565406,
+ "loss": 2.289609670639038,
+ "step": 857
+ },
+ {
+ "epoch": 11.9198606271777,
+ "grad_norm": 0.03645944595336914,
+ "learning_rate": 0.000534035876358542,
+ "loss": 2.310405731201172,
+ "step": 858
+ },
+ {
+ "epoch": 11.933797909407666,
+ "grad_norm": 0.033878158777952194,
+ "learning_rate": 0.0005338682630102454,
+ "loss": 2.3025999069213867,
+ "step": 859
+ },
+ {
+ "epoch": 11.94773519163763,
+ "grad_norm": 0.03515630215406418,
+ "learning_rate": 0.0005337004636555595,
+ "loss": 2.3085150718688965,
+ "step": 860
+ },
+ {
+ "epoch": 11.961672473867596,
+ "grad_norm": 0.034178491681814194,
+ "learning_rate": 0.0005335324784296768,
+ "loss": 2.3223443031311035,
+ "step": 861
+ },
+ {
+ "epoch": 11.975609756097562,
+ "grad_norm": 0.0340011864900589,
+ "learning_rate": 0.0005333643074679403,
+ "loss": 2.324476957321167,
+ "step": 862
+ },
+ {
+ "epoch": 11.989547038327526,
+ "grad_norm": 0.03569193184375763,
+ "learning_rate": 0.000533195950905842,
+ "loss": 2.3087520599365234,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.030978869646787643,
+ "learning_rate": 0.0005330274088790239,
+ "loss": 1.733755350112915,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 0.6196663975715637,
+ "eval_runtime": 38.4411,
+ "eval_samples_per_second": 63.526,
+ "eval_steps_per_second": 0.52,
+ "step": 864
+ },
+ {
+ "epoch": 12.013937282229966,
+ "grad_norm": 0.04311290383338928,
+ "learning_rate": 0.0005328586815232773,
+ "loss": 2.267500638961792,
+ "step": 865
+ },
+ {
+ "epoch": 12.02787456445993,
+ "grad_norm": 0.05809512361884117,
+ "learning_rate": 0.0005326897689745428,
+ "loss": 2.269824981689453,
+ "step": 866
+ },
+ {
+ "epoch": 12.041811846689896,
+ "grad_norm": 0.06641583144664764,
+ "learning_rate": 0.0005325206713689101,
+ "loss": 2.2579562664031982,
+ "step": 867
+ },
+ {
+ "epoch": 12.05574912891986,
+ "grad_norm": 0.06946069747209549,
+ "learning_rate": 0.0005323513888426181,
+ "loss": 2.2649731636047363,
+ "step": 868
+ },
+ {
+ "epoch": 12.069686411149826,
+ "grad_norm": 0.07457753270864487,
+ "learning_rate": 0.0005321819215320546,
+ "loss": 2.271296501159668,
+ "step": 869
+ },
+ {
+ "epoch": 12.08362369337979,
+ "grad_norm": 0.08557604998350143,
+ "learning_rate": 0.0005320122695737565,
+ "loss": 2.2977068424224854,
+ "step": 870
+ },
+ {
+ "epoch": 12.097560975609756,
+ "grad_norm": 0.07865381985902786,
+ "learning_rate": 0.0005318424331044094,
+ "loss": 2.2831926345825195,
+ "step": 871
+ },
+ {
+ "epoch": 12.111498257839722,
+ "grad_norm": 0.07406128942966461,
+ "learning_rate": 0.0005316724122608473,
+ "loss": 2.280620574951172,
+ "step": 872
+ },
+ {
+ "epoch": 12.125435540069686,
+ "grad_norm": 0.08649969846010208,
+ "learning_rate": 0.0005315022071800527,
+ "loss": 2.2639617919921875,
+ "step": 873
+ },
+ {
+ "epoch": 12.139372822299652,
+ "grad_norm": 0.08262167125940323,
+ "learning_rate": 0.0005313318179991574,
+ "loss": 2.271108627319336,
+ "step": 874
+ },
+ {
+ "epoch": 12.153310104529616,
+ "grad_norm": 0.0752791240811348,
+ "learning_rate": 0.0005311612448554402,
+ "loss": 2.273391008377075,
+ "step": 875
+ },
+ {
+ "epoch": 12.167247386759582,
+ "grad_norm": 0.07095267623662949,
+ "learning_rate": 0.0005309904878863293,
+ "loss": 2.276211977005005,
+ "step": 876
+ },
+ {
+ "epoch": 12.181184668989546,
+ "grad_norm": 0.061625171452760696,
+ "learning_rate": 0.0005308195472294001,
+ "loss": 2.2848544120788574,
+ "step": 877
+ },
+ {
+ "epoch": 12.195121951219512,
+ "grad_norm": 0.06082753837108612,
+ "learning_rate": 0.0005306484230223769,
+ "loss": 2.2795495986938477,
+ "step": 878
+ },
+ {
+ "epoch": 12.209059233449477,
+ "grad_norm": 0.0587560310959816,
+ "learning_rate": 0.000530477115403131,
+ "loss": 2.257300853729248,
+ "step": 879
+ },
+ {
+ "epoch": 12.222996515679442,
+ "grad_norm": 0.05483998730778694,
+ "learning_rate": 0.0005303056245096817,
+ "loss": 2.2889161109924316,
+ "step": 880
+ },
+ {
+ "epoch": 12.236933797909408,
+ "grad_norm": 0.05021355301141739,
+ "learning_rate": 0.0005301339504801967,
+ "loss": 2.2778401374816895,
+ "step": 881
+ },
+ {
+ "epoch": 12.250871080139373,
+ "grad_norm": 0.05440690740942955,
+ "learning_rate": 0.0005299620934529902,
+ "loss": 2.2760677337646484,
+ "step": 882
+ },
+ {
+ "epoch": 12.264808362369338,
+ "grad_norm": 0.05961807072162628,
+ "learning_rate": 0.0005297900535665244,
+ "loss": 2.276120185852051,
+ "step": 883
+ },
+ {
+ "epoch": 12.278745644599303,
+ "grad_norm": 0.054035380482673645,
+ "learning_rate": 0.0005296178309594087,
+ "loss": 2.255659341812134,
+ "step": 884
+ },
+ {
+ "epoch": 12.292682926829269,
+ "grad_norm": 0.05121298506855965,
+ "learning_rate": 0.0005294454257704,
+ "loss": 2.2852983474731445,
+ "step": 885
+ },
+ {
+ "epoch": 12.306620209059233,
+ "grad_norm": 0.04890505596995354,
+ "learning_rate": 0.0005292728381384018,
+ "loss": 2.2752151489257812,
+ "step": 886
+ },
+ {
+ "epoch": 12.320557491289199,
+ "grad_norm": 0.05019564554095268,
+ "learning_rate": 0.0005291000682024647,
+ "loss": 2.261242389678955,
+ "step": 887
+ },
+ {
+ "epoch": 12.334494773519165,
+ "grad_norm": 0.04824003204703331,
+ "learning_rate": 0.0005289271161017867,
+ "loss": 2.2752835750579834,
+ "step": 888
+ },
+ {
+ "epoch": 12.348432055749129,
+ "grad_norm": 0.04195769876241684,
+ "learning_rate": 0.0005287539819757119,
+ "loss": 2.2705702781677246,
+ "step": 889
+ },
+ {
+ "epoch": 12.362369337979095,
+ "grad_norm": 0.046239253133535385,
+ "learning_rate": 0.0005285806659637315,
+ "loss": 2.2981534004211426,
+ "step": 890
+ },
+ {
+ "epoch": 12.376306620209059,
+ "grad_norm": 0.04743665084242821,
+ "learning_rate": 0.000528407168205483,
+ "loss": 2.278078079223633,
+ "step": 891
+ },
+ {
+ "epoch": 12.390243902439025,
+ "grad_norm": 0.04690218344330788,
+ "learning_rate": 0.0005282334888407503,
+ "loss": 2.2809972763061523,
+ "step": 892
+ },
+ {
+ "epoch": 12.404181184668989,
+ "grad_norm": 0.0444699302315712,
+ "learning_rate": 0.000528059628009464,
+ "loss": 2.2702579498291016,
+ "step": 893
+ },
+ {
+ "epoch": 12.418118466898955,
+ "grad_norm": 0.04225282371044159,
+ "learning_rate": 0.0005278855858517003,
+ "loss": 2.2717671394348145,
+ "step": 894
+ },
+ {
+ "epoch": 12.43205574912892,
+ "grad_norm": 0.041407857090234756,
+ "learning_rate": 0.0005277113625076822,
+ "loss": 2.266977548599243,
+ "step": 895
+ },
+ {
+ "epoch": 12.445993031358885,
+ "grad_norm": 0.042014770209789276,
+ "learning_rate": 0.000527536958117778,
+ "loss": 2.269441604614258,
+ "step": 896
+ },
+ {
+ "epoch": 12.45993031358885,
+ "grad_norm": 0.04196929931640625,
+ "learning_rate": 0.0005273623728225022,
+ "loss": 2.246767997741699,
+ "step": 897
+ },
+ {
+ "epoch": 12.473867595818815,
+ "grad_norm": 0.04507727175951004,
+ "learning_rate": 0.0005271876067625153,
+ "loss": 2.2929835319519043,
+ "step": 898
+ },
+ {
+ "epoch": 12.487804878048781,
+ "grad_norm": 0.043129295110702515,
+ "learning_rate": 0.0005270126600786228,
+ "loss": 2.280632257461548,
+ "step": 899
+ },
+ {
+ "epoch": 12.501742160278745,
+ "grad_norm": 0.041876427829265594,
+ "learning_rate": 0.0005268375329117762,
+ "loss": 2.2524752616882324,
+ "step": 900
+ },
+ {
+ "epoch": 12.515679442508711,
+ "grad_norm": 0.04281412810087204,
+ "learning_rate": 0.0005266622254030724,
+ "loss": 2.278818130493164,
+ "step": 901
+ },
+ {
+ "epoch": 12.529616724738675,
+ "grad_norm": 0.040438197553157806,
+ "learning_rate": 0.0005264867376937534,
+ "loss": 2.2771482467651367,
+ "step": 902
+ },
+ {
+ "epoch": 12.543554006968641,
+ "grad_norm": 0.03930707275867462,
+ "learning_rate": 0.0005263110699252065,
+ "loss": 2.273127555847168,
+ "step": 903
+ },
+ {
+ "epoch": 12.557491289198607,
+ "grad_norm": 0.04181307926774025,
+ "learning_rate": 0.000526135222238964,
+ "loss": 2.2839956283569336,
+ "step": 904
+ },
+ {
+ "epoch": 12.571428571428571,
+ "grad_norm": 0.042597733438014984,
+ "learning_rate": 0.0005259591947767032,
+ "loss": 2.262939929962158,
+ "step": 905
+ },
+ {
+ "epoch": 12.585365853658537,
+ "grad_norm": 0.04178392142057419,
+ "learning_rate": 0.0005257829876802464,
+ "loss": 2.286794662475586,
+ "step": 906
+ },
+ {
+ "epoch": 12.599303135888501,
+ "grad_norm": 0.04041772708296776,
+ "learning_rate": 0.0005256066010915603,
+ "loss": 2.276432991027832,
+ "step": 907
+ },
+ {
+ "epoch": 12.613240418118467,
+ "grad_norm": 0.04161509871482849,
+ "learning_rate": 0.0005254300351527566,
+ "loss": 2.2779972553253174,
+ "step": 908
+ },
+ {
+ "epoch": 12.627177700348431,
+ "grad_norm": 0.04206471145153046,
+ "learning_rate": 0.000525253290006091,
+ "loss": 2.282811164855957,
+ "step": 909
+ },
+ {
+ "epoch": 12.641114982578397,
+ "grad_norm": 0.04001585766673088,
+ "learning_rate": 0.0005250763657939641,
+ "loss": 2.29434871673584,
+ "step": 910
+ },
+ {
+ "epoch": 12.655052264808361,
+ "grad_norm": 0.041886743158102036,
+ "learning_rate": 0.0005248992626589203,
+ "loss": 2.278651237487793,
+ "step": 911
+ },
+ {
+ "epoch": 12.668989547038327,
+ "grad_norm": 0.0404231883585453,
+ "learning_rate": 0.0005247219807436489,
+ "loss": 2.2875375747680664,
+ "step": 912
+ },
+ {
+ "epoch": 12.682926829268293,
+ "grad_norm": 0.037211328744888306,
+ "learning_rate": 0.000524544520190982,
+ "loss": 2.294013023376465,
+ "step": 913
+ },
+ {
+ "epoch": 12.696864111498257,
+ "grad_norm": 0.03906721621751785,
+ "learning_rate": 0.000524366881143897,
+ "loss": 2.2899856567382812,
+ "step": 914
+ },
+ {
+ "epoch": 12.710801393728223,
+ "grad_norm": 0.04206228628754616,
+ "learning_rate": 0.0005241890637455141,
+ "loss": 2.282346248626709,
+ "step": 915
+ },
+ {
+ "epoch": 12.724738675958188,
+ "grad_norm": 0.03915264084935188,
+ "learning_rate": 0.0005240110681390978,
+ "loss": 2.2995424270629883,
+ "step": 916
+ },
+ {
+ "epoch": 12.738675958188153,
+ "grad_norm": 0.03919649496674538,
+ "learning_rate": 0.0005238328944680558,
+ "loss": 2.282196044921875,
+ "step": 917
+ },
+ {
+ "epoch": 12.752613240418118,
+ "grad_norm": 0.039669446647167206,
+ "learning_rate": 0.0005236545428759394,
+ "loss": 2.2758240699768066,
+ "step": 918
+ },
+ {
+ "epoch": 12.766550522648084,
+ "grad_norm": 0.04075023531913757,
+ "learning_rate": 0.0005234760135064434,
+ "loss": 2.278747320175171,
+ "step": 919
+ },
+ {
+ "epoch": 12.78048780487805,
+ "grad_norm": 0.03815247863531113,
+ "learning_rate": 0.0005232973065034055,
+ "loss": 2.2989745140075684,
+ "step": 920
+ },
+ {
+ "epoch": 12.794425087108014,
+ "grad_norm": 0.039577171206474304,
+ "learning_rate": 0.0005231184220108069,
+ "loss": 2.278186321258545,
+ "step": 921
+ },
+ {
+ "epoch": 12.80836236933798,
+ "grad_norm": 0.04091718792915344,
+ "learning_rate": 0.0005229393601727713,
+ "loss": 2.3046107292175293,
+ "step": 922
+ },
+ {
+ "epoch": 12.822299651567944,
+ "grad_norm": 0.04034758731722832,
+ "learning_rate": 0.000522760121133566,
+ "loss": 2.2959580421447754,
+ "step": 923
+ },
+ {
+ "epoch": 12.83623693379791,
+ "grad_norm": 0.041219793260097504,
+ "learning_rate": 0.0005225807050376004,
+ "loss": 2.289950370788574,
+ "step": 924
+ },
+ {
+ "epoch": 12.850174216027874,
+ "grad_norm": 0.042124949395656586,
+ "learning_rate": 0.0005224011120294269,
+ "loss": 2.2865607738494873,
+ "step": 925
+ },
+ {
+ "epoch": 12.86411149825784,
+ "grad_norm": 0.04259328171610832,
+ "learning_rate": 0.0005222213422537401,
+ "loss": 2.2798972129821777,
+ "step": 926
+ },
+ {
+ "epoch": 12.878048780487806,
+ "grad_norm": 0.0413426011800766,
+ "learning_rate": 0.0005220413958553777,
+ "loss": 2.2765798568725586,
+ "step": 927
+ },
+ {
+ "epoch": 12.89198606271777,
+ "grad_norm": 0.04276851564645767,
+ "learning_rate": 0.0005218612729793188,
+ "loss": 2.292202949523926,
+ "step": 928
+ },
+ {
+ "epoch": 12.905923344947736,
+ "grad_norm": 0.038679834455251694,
+ "learning_rate": 0.0005216809737706856,
+ "loss": 2.2641711235046387,
+ "step": 929
+ },
+ {
+ "epoch": 12.9198606271777,
+ "grad_norm": 0.04027910903096199,
+ "learning_rate": 0.0005215004983747415,
+ "loss": 2.297112464904785,
+ "step": 930
+ },
+ {
+ "epoch": 12.933797909407666,
+ "grad_norm": 0.037091903388500214,
+ "learning_rate": 0.0005213198469368925,
+ "loss": 2.2731027603149414,
+ "step": 931
+ },
+ {
+ "epoch": 12.94773519163763,
+ "grad_norm": 0.0381062775850296,
+ "learning_rate": 0.0005211390196026861,
+ "loss": 2.276169538497925,
+ "step": 932
+ },
+ {
+ "epoch": 12.961672473867596,
+ "grad_norm": 0.03912157565355301,
+ "learning_rate": 0.0005209580165178117,
+ "loss": 2.2855257987976074,
+ "step": 933
+ },
+ {
+ "epoch": 12.975609756097562,
+ "grad_norm": 0.03726741299033165,
+ "learning_rate": 0.0005207768378281003,
+ "loss": 2.285484790802002,
+ "step": 934
+ },
+ {
+ "epoch": 12.989547038327526,
+ "grad_norm": 0.03863261640071869,
+ "learning_rate": 0.0005205954836795241,
+ "loss": 2.2770638465881348,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.03204738348722458,
+ "learning_rate": 0.000520413954218197,
+ "loss": 1.7078638076782227,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 0.6196639537811279,
+ "eval_runtime": 36.3518,
+ "eval_samples_per_second": 67.177,
+ "eval_steps_per_second": 0.55,
+ "step": 936
+ },
+ {
+ "epoch": 13.013937282229966,
+ "grad_norm": 0.04385007545351982,
+ "learning_rate": 0.0005202322495903739,
+ "loss": 2.2220354080200195,
+ "step": 937
+ },
+ {
+ "epoch": 13.02787456445993,
+ "grad_norm": 0.05723090469837189,
+ "learning_rate": 0.0005200503699424509,
+ "loss": 2.223271369934082,
+ "step": 938
+ },
+ {
+ "epoch": 13.041811846689896,
+ "grad_norm": 0.06027279794216156,
+ "learning_rate": 0.0005198683154209654,
+ "loss": 2.2302541732788086,
+ "step": 939
+ },
+ {
+ "epoch": 13.05574912891986,
+ "grad_norm": 0.06342783570289612,
+ "learning_rate": 0.0005196860861725952,
+ "loss": 2.2211854457855225,
+ "step": 940
+ },
+ {
+ "epoch": 13.069686411149826,
+ "grad_norm": 0.06265735626220703,
+ "learning_rate": 0.0005195036823441592,
+ "loss": 2.222750425338745,
+ "step": 941
+ },
+ {
+ "epoch": 13.08362369337979,
+ "grad_norm": 0.0661185085773468,
+ "learning_rate": 0.0005193211040826169,
+ "loss": 2.230656862258911,
+ "step": 942
+ },
+ {
+ "epoch": 13.097560975609756,
+ "grad_norm": 0.06665238738059998,
+ "learning_rate": 0.0005191383515350681,
+ "loss": 2.220534563064575,
+ "step": 943
+ },
+ {
+ "epoch": 13.111498257839722,
+ "grad_norm": 0.06432333588600159,
+ "learning_rate": 0.0005189554248487536,
+ "loss": 2.2317209243774414,
+ "step": 944
+ },
+ {
+ "epoch": 13.125435540069686,
+ "grad_norm": 0.057658061385154724,
+ "learning_rate": 0.0005187723241710539,
+ "loss": 2.20767879486084,
+ "step": 945
+ },
+ {
+ "epoch": 13.139372822299652,
+ "grad_norm": 0.06340344250202179,
+ "learning_rate": 0.0005185890496494899,
+ "loss": 2.240220546722412,
+ "step": 946
+ },
+ {
+ "epoch": 13.153310104529616,
+ "grad_norm": 0.0649016872048378,
+ "learning_rate": 0.0005184056014317225,
+ "loss": 2.2353672981262207,
+ "step": 947
+ },
+ {
+ "epoch": 13.167247386759582,
+ "grad_norm": 0.05792258679866791,
+ "learning_rate": 0.0005182219796655528,
+ "loss": 2.2480835914611816,
+ "step": 948
+ },
+ {
+ "epoch": 13.181184668989546,
+ "grad_norm": 0.059482429176568985,
+ "learning_rate": 0.0005180381844989214,
+ "loss": 2.2432656288146973,
+ "step": 949
+ },
+ {
+ "epoch": 13.195121951219512,
+ "grad_norm": 0.05838126689195633,
+ "learning_rate": 0.0005178542160799088,
+ "loss": 2.237567901611328,
+ "step": 950
+ },
+ {
+ "epoch": 13.209059233449477,
+ "grad_norm": 0.05699385702610016,
+ "learning_rate": 0.0005176700745567353,
+ "loss": 2.243746280670166,
+ "step": 951
+ },
+ {
+ "epoch": 13.222996515679442,
+ "grad_norm": 0.05618268996477127,
+ "learning_rate": 0.0005174857600777599,
+ "loss": 2.2216076850891113,
+ "step": 952
+ },
+ {
+ "epoch": 13.236933797909408,
+ "grad_norm": 0.05328221991658211,
+ "learning_rate": 0.0005173012727914816,
+ "loss": 2.2413382530212402,
+ "step": 953
+ },
+ {
+ "epoch": 13.250871080139373,
+ "grad_norm": 0.05254136770963669,
+ "learning_rate": 0.0005171166128465389,
+ "loss": 2.2317683696746826,
+ "step": 954
+ },
+ {
+ "epoch": 13.264808362369338,
+ "grad_norm": 0.05144176259636879,
+ "learning_rate": 0.0005169317803917083,
+ "loss": 2.2372474670410156,
+ "step": 955
+ },
+ {
+ "epoch": 13.278745644599303,
+ "grad_norm": 0.05258858576416969,
+ "learning_rate": 0.0005167467755759065,
+ "loss": 2.2383830547332764,
+ "step": 956
+ },
+ {
+ "epoch": 13.292682926829269,
+ "grad_norm": 0.0550001785159111,
+ "learning_rate": 0.0005165615985481881,
+ "loss": 2.2456729412078857,
+ "step": 957
+ },
+ {
+ "epoch": 13.306620209059233,
+ "grad_norm": 0.050276629626750946,
+ "learning_rate": 0.0005163762494577474,
+ "loss": 2.262298345565796,
+ "step": 958
+ },
+ {
+ "epoch": 13.320557491289199,
+ "grad_norm": 0.05388111621141434,
+ "learning_rate": 0.0005161907284539165,
+ "loss": 2.250800609588623,
+ "step": 959
+ },
+ {
+ "epoch": 13.334494773519165,
+ "grad_norm": 0.05154367536306381,
+ "learning_rate": 0.0005160050356861663,
+ "loss": 2.2442479133605957,
+ "step": 960
+ },
+ {
+ "epoch": 13.348432055749129,
+ "grad_norm": 0.04562186077237129,
+ "learning_rate": 0.0005158191713041063,
+ "loss": 2.237484931945801,
+ "step": 961
+ },
+ {
+ "epoch": 13.362369337979095,
+ "grad_norm": 0.049510203301906586,
+ "learning_rate": 0.0005156331354574838,
+ "loss": 2.243274688720703,
+ "step": 962
+ },
+ {
+ "epoch": 13.376306620209059,
+ "grad_norm": 0.050305187702178955,
+ "learning_rate": 0.0005154469282961847,
+ "loss": 2.2452855110168457,
+ "step": 963
+ },
+ {
+ "epoch": 13.390243902439025,
+ "grad_norm": 0.049128562211990356,
+ "learning_rate": 0.0005152605499702328,
+ "loss": 2.2562594413757324,
+ "step": 964
+ },
+ {
+ "epoch": 13.404181184668989,
+ "grad_norm": 0.04948648437857628,
+ "learning_rate": 0.0005150740006297896,
+ "loss": 2.2388229370117188,
+ "step": 965
+ },
+ {
+ "epoch": 13.418118466898955,
+ "grad_norm": 0.053290050476789474,
+ "learning_rate": 0.0005148872804251548,
+ "loss": 2.2601318359375,
+ "step": 966
+ },
+ {
+ "epoch": 13.43205574912892,
+ "grad_norm": 0.04839639738202095,
+ "learning_rate": 0.000514700389506765,
+ "loss": 2.2303178310394287,
+ "step": 967
+ },
+ {
+ "epoch": 13.445993031358885,
+ "grad_norm": 0.04883972555398941,
+ "learning_rate": 0.0005145133280251954,
+ "loss": 2.246448040008545,
+ "step": 968
+ },
+ {
+ "epoch": 13.45993031358885,
+ "grad_norm": 0.04747871682047844,
+ "learning_rate": 0.0005143260961311578,
+ "loss": 2.259640693664551,
+ "step": 969
+ },
+ {
+ "epoch": 13.473867595818815,
+ "grad_norm": 0.046724554151296616,
+ "learning_rate": 0.0005141386939755014,
+ "loss": 2.2453014850616455,
+ "step": 970
+ },
+ {
+ "epoch": 13.487804878048781,
+ "grad_norm": 0.045614756643772125,
+ "learning_rate": 0.0005139511217092129,
+ "loss": 2.2351949214935303,
+ "step": 971
+ },
+ {
+ "epoch": 13.501742160278745,
+ "grad_norm": 0.04794120043516159,
+ "learning_rate": 0.000513763379483416,
+ "loss": 2.2457003593444824,
+ "step": 972
+ },
+ {
+ "epoch": 13.515679442508711,
+ "grad_norm": 0.05043521523475647,
+ "learning_rate": 0.0005135754674493709,
+ "loss": 2.258542060852051,
+ "step": 973
+ },
+ {
+ "epoch": 13.529616724738675,
+ "grad_norm": 0.046207673847675323,
+ "learning_rate": 0.0005133873857584753,
+ "loss": 2.2370145320892334,
+ "step": 974
+ },
+ {
+ "epoch": 13.543554006968641,
+ "grad_norm": 0.04402166232466698,
+ "learning_rate": 0.0005131991345622629,
+ "loss": 2.2408246994018555,
+ "step": 975
+ },
+ {
+ "epoch": 13.557491289198607,
+ "grad_norm": 0.04337441921234131,
+ "learning_rate": 0.0005130107140124046,
+ "loss": 2.2634308338165283,
+ "step": 976
+ },
+ {
+ "epoch": 13.571428571428571,
+ "grad_norm": 0.047244030982255936,
+ "learning_rate": 0.0005128221242607072,
+ "loss": 2.2571523189544678,
+ "step": 977
+ },
+ {
+ "epoch": 13.585365853658537,
+ "grad_norm": 0.04867873340845108,
+ "learning_rate": 0.0005126333654591141,
+ "loss": 2.248501777648926,
+ "step": 978
+ },
+ {
+ "epoch": 13.599303135888501,
+ "grad_norm": 0.048512108623981476,
+ "learning_rate": 0.0005124444377597049,
+ "loss": 2.2579822540283203,
+ "step": 979
+ },
+ {
+ "epoch": 13.613240418118467,
+ "grad_norm": 0.04615626111626625,
+ "learning_rate": 0.0005122553413146951,
+ "loss": 2.2446889877319336,
+ "step": 980
+ },
+ {
+ "epoch": 13.627177700348431,
+ "grad_norm": 0.044876713305711746,
+ "learning_rate": 0.0005120660762764366,
+ "loss": 2.2439627647399902,
+ "step": 981
+ },
+ {
+ "epoch": 13.641114982578397,
+ "grad_norm": 0.046021413058042526,
+ "learning_rate": 0.0005118766427974166,
+ "loss": 2.262195587158203,
+ "step": 982
+ },
+ {
+ "epoch": 13.655052264808361,
+ "grad_norm": 0.04974699020385742,
+ "learning_rate": 0.0005116870410302582,
+ "loss": 2.2783303260803223,
+ "step": 983
+ },
+ {
+ "epoch": 13.668989547038327,
+ "grad_norm": 0.044128481298685074,
+ "learning_rate": 0.0005114972711277202,
+ "loss": 2.2566471099853516,
+ "step": 984
+ },
+ {
+ "epoch": 13.682926829268293,
+ "grad_norm": 0.042579326778650284,
+ "learning_rate": 0.0005113073332426968,
+ "loss": 2.2596194744110107,
+ "step": 985
+ },
+ {
+ "epoch": 13.696864111498257,
+ "grad_norm": 0.044022977352142334,
+ "learning_rate": 0.0005111172275282174,
+ "loss": 2.270303726196289,
+ "step": 986
+ },
+ {
+ "epoch": 13.710801393728223,
+ "grad_norm": 0.04324937239289284,
+ "learning_rate": 0.0005109269541374469,
+ "loss": 2.2393593788146973,
+ "step": 987
+ },
+ {
+ "epoch": 13.724738675958188,
+ "grad_norm": 0.04146691411733627,
+ "learning_rate": 0.000510736513223685,
+ "loss": 2.2541770935058594,
+ "step": 988
+ },
+ {
+ "epoch": 13.738675958188153,
+ "grad_norm": 0.04146251827478409,
+ "learning_rate": 0.0005105459049403665,
+ "loss": 2.260561943054199,
+ "step": 989
+ },
+ {
+ "epoch": 13.752613240418118,
+ "grad_norm": 0.042454298585653305,
+ "learning_rate": 0.0005103551294410614,
+ "loss": 2.2623369693756104,
+ "step": 990
+ },
+ {
+ "epoch": 13.766550522648084,
+ "grad_norm": 0.04376888647675514,
+ "learning_rate": 0.0005101641868794736,
+ "loss": 2.2560131549835205,
+ "step": 991
+ },
+ {
+ "epoch": 13.78048780487805,
+ "grad_norm": 0.04379274323582649,
+ "learning_rate": 0.0005099730774094423,
+ "loss": 2.2503037452697754,
+ "step": 992
+ },
+ {
+ "epoch": 13.794425087108014,
+ "grad_norm": 0.04411308094859123,
+ "learning_rate": 0.0005097818011849408,
+ "loss": 2.244288921356201,
+ "step": 993
+ },
+ {
+ "epoch": 13.80836236933798,
+ "grad_norm": 0.04043621942400932,
+ "learning_rate": 0.0005095903583600772,
+ "loss": 2.244035243988037,
+ "step": 994
+ },
+ {
+ "epoch": 13.822299651567944,
+ "grad_norm": 0.04722495377063751,
+ "learning_rate": 0.0005093987490890933,
+ "loss": 2.269280433654785,
+ "step": 995
+ },
+ {
+ "epoch": 13.83623693379791,
+ "grad_norm": 0.049322471022605896,
+ "learning_rate": 0.0005092069735263651,
+ "loss": 2.249361515045166,
+ "step": 996
+ },
+ {
+ "epoch": 13.850174216027874,
+ "grad_norm": 0.04808150604367256,
+ "learning_rate": 0.000509015031826403,
+ "loss": 2.255721092224121,
+ "step": 997
+ },
+ {
+ "epoch": 13.86411149825784,
+ "grad_norm": 0.044958360493183136,
+ "learning_rate": 0.0005088229241438509,
+ "loss": 2.2578060626983643,
+ "step": 998
+ },
+ {
+ "epoch": 13.878048780487806,
+ "grad_norm": 0.04442335292696953,
+ "learning_rate": 0.0005086306506334864,
+ "loss": 2.2553436756134033,
+ "step": 999
+ },
+ {
+ "epoch": 13.89198606271777,
+ "grad_norm": 0.0487419068813324,
+ "learning_rate": 0.0005084382114502208,
+ "loss": 2.2526695728302,
+ "step": 1000
+ },
+ {
+ "epoch": 13.905923344947736,
+ "grad_norm": 0.047398749738931656,
+ "learning_rate": 0.0005082456067490988,
+ "loss": 2.259551763534546,
+ "step": 1001
+ },
+ {
+ "epoch": 13.9198606271777,
+ "grad_norm": 0.04429299384355545,
+ "learning_rate": 0.0005080528366852987,
+ "loss": 2.270155906677246,
+ "step": 1002
+ },
+ {
+ "epoch": 13.933797909407666,
+ "grad_norm": 0.045255087316036224,
+ "learning_rate": 0.0005078599014141318,
+ "loss": 2.2554101943969727,
+ "step": 1003
+ },
+ {
+ "epoch": 13.94773519163763,
+ "grad_norm": 0.04559073969721794,
+ "learning_rate": 0.0005076668010910425,
+ "loss": 2.2913122177124023,
+ "step": 1004
+ },
+ {
+ "epoch": 13.961672473867596,
+ "grad_norm": 0.04300642013549805,
+ "learning_rate": 0.0005074735358716083,
+ "loss": 2.241891860961914,
+ "step": 1005
+ },
+ {
+ "epoch": 13.975609756097562,
+ "grad_norm": 0.04328060522675514,
+ "learning_rate": 0.0005072801059115394,
+ "loss": 2.2659969329833984,
+ "step": 1006
+ },
+ {
+ "epoch": 13.989547038327526,
+ "grad_norm": 0.0425153523683548,
+ "learning_rate": 0.000507086511366679,
+ "loss": 2.266413450241089,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.03479035571217537,
+ "learning_rate": 0.0005068927523930027,
+ "loss": 1.6806477308273315,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 0.6199555993080139,
+ "eval_runtime": 42.3013,
+ "eval_samples_per_second": 57.729,
+ "eval_steps_per_second": 0.473,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013937282229966,
+ "grad_norm": 0.04759897664189339,
+ "learning_rate": 0.0005066988291466184,
+ "loss": 2.1937670707702637,
+ "step": 1009
+ },
+ {
+ "epoch": 14.02787456445993,
+ "grad_norm": 0.06862346827983856,
+ "learning_rate": 0.0005065047417837669,
+ "loss": 2.2141411304473877,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041811846689896,
+ "grad_norm": 0.07168037444353104,
+ "learning_rate": 0.0005063104904608206,
+ "loss": 2.198908805847168,
+ "step": 1011
+ },
+ {
+ "epoch": 14.05574912891986,
+ "grad_norm": 0.06659573316574097,
+ "learning_rate": 0.0005061160753342843,
+ "loss": 2.218000888824463,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069686411149826,
+ "grad_norm": 0.06285326927900314,
+ "learning_rate": 0.0005059214965607948,
+ "loss": 2.1995139122009277,
+ "step": 1013
+ },
+ {
+ "epoch": 14.08362369337979,
+ "grad_norm": 0.061170000582933426,
+ "learning_rate": 0.0005057267542971207,
+ "loss": 2.2026236057281494,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097560975609756,
+ "grad_norm": 0.06091141700744629,
+ "learning_rate": 0.0005055318487001624,
+ "loss": 2.2087340354919434,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111498257839722,
+ "grad_norm": 0.05953513830900192,
+ "learning_rate": 0.0005053367799269518,
+ "loss": 2.1985390186309814,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125435540069686,
+ "grad_norm": 0.06126454845070839,
+ "learning_rate": 0.0005051415481346522,
+ "loss": 2.176772117614746,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139372822299652,
+ "grad_norm": 0.0675380751490593,
+ "learning_rate": 0.0005049461534805585,
+ "loss": 2.2045438289642334,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153310104529616,
+ "grad_norm": 0.07128442823886871,
+ "learning_rate": 0.0005047505961220964,
+ "loss": 2.197822332382202,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167247386759582,
+ "grad_norm": 0.06793799996376038,
+ "learning_rate": 0.0005045548762168231,
+ "loss": 2.1957449913024902,
+ "step": 1020
+ },
+ {
+ "epoch": 14.181184668989546,
+ "grad_norm": 0.05969219282269478,
+ "learning_rate": 0.0005043589939224266,
+ "loss": 2.206712245941162,
+ "step": 1021
+ },
+ {
+ "epoch": 14.195121951219512,
+ "grad_norm": 0.061422668397426605,
+ "learning_rate": 0.0005041629493967257,
+ "loss": 2.199829578399658,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209059233449477,
+ "grad_norm": 0.06352506577968597,
+ "learning_rate": 0.0005039667427976697,
+ "loss": 2.208404064178467,
+ "step": 1023
+ },
+ {
+ "epoch": 14.222996515679442,
+ "grad_norm": 0.06349361687898636,
+ "learning_rate": 0.0005037703742833391,
+ "loss": 2.2045750617980957,
+ "step": 1024
+ },
+ {
+ "epoch": 14.236933797909408,
+ "grad_norm": 0.05827466771006584,
+ "learning_rate": 0.0005035738440119442,
+ "loss": 2.204209566116333,
+ "step": 1025
+ },
+ {
+ "epoch": 14.250871080139373,
+ "grad_norm": 0.055201269686222076,
+ "learning_rate": 0.0005033771521418261,
+ "loss": 2.210240364074707,
+ "step": 1026
+ },
+ {
+ "epoch": 14.264808362369338,
+ "grad_norm": 0.05749988183379173,
+ "learning_rate": 0.0005031802988314557,
+ "loss": 2.2068967819213867,
+ "step": 1027
+ },
+ {
+ "epoch": 14.278745644599303,
+ "grad_norm": 0.061330124735832214,
+ "learning_rate": 0.0005029832842394342,
+ "loss": 2.194495439529419,
+ "step": 1028
+ },
+ {
+ "epoch": 14.292682926829269,
+ "grad_norm": 0.05682205408811569,
+ "learning_rate": 0.0005027861085244927,
+ "loss": 2.1934378147125244,
+ "step": 1029
+ },
+ {
+ "epoch": 14.306620209059233,
+ "grad_norm": 0.054082732647657394,
+ "learning_rate": 0.0005025887718454922,
+ "loss": 2.1993770599365234,
+ "step": 1030
+ },
+ {
+ "epoch": 14.320557491289199,
+ "grad_norm": 0.05460484325885773,
+ "learning_rate": 0.0005023912743614232,
+ "loss": 2.2270498275756836,
+ "step": 1031
+ },
+ {
+ "epoch": 14.334494773519165,
+ "grad_norm": 0.05222999304533005,
+ "learning_rate": 0.0005021936162314058,
+ "loss": 2.1926186084747314,
+ "step": 1032
+ },
+ {
+ "epoch": 14.348432055749129,
+ "grad_norm": 0.04854818806052208,
+ "learning_rate": 0.0005019957976146898,
+ "loss": 2.209700584411621,
+ "step": 1033
+ },
+ {
+ "epoch": 14.362369337979095,
+ "grad_norm": 0.051000695675611496,
+ "learning_rate": 0.0005017978186706538,
+ "loss": 2.207035541534424,
+ "step": 1034
+ },
+ {
+ "epoch": 14.376306620209059,
+ "grad_norm": 0.05035366490483284,
+ "learning_rate": 0.0005015996795588062,
+ "loss": 2.227447032928467,
+ "step": 1035
+ },
+ {
+ "epoch": 14.390243902439025,
+ "grad_norm": 0.048412274569272995,
+ "learning_rate": 0.0005014013804387838,
+ "loss": 2.229435443878174,
+ "step": 1036
+ },
+ {
+ "epoch": 14.404181184668989,
+ "grad_norm": 0.04643386974930763,
+ "learning_rate": 0.0005012029214703529,
+ "loss": 2.212726593017578,
+ "step": 1037
+ },
+ {
+ "epoch": 14.418118466898955,
+ "grad_norm": 0.05282546207308769,
+ "learning_rate": 0.000501004302813408,
+ "loss": 2.2133121490478516,
+ "step": 1038
+ },
+ {
+ "epoch": 14.43205574912892,
+ "grad_norm": 0.04976656660437584,
+ "learning_rate": 0.0005008055246279727,
+ "loss": 2.222738265991211,
+ "step": 1039
+ },
+ {
+ "epoch": 14.445993031358885,
+ "grad_norm": 0.04937833175063133,
+ "learning_rate": 0.000500606587074199,
+ "loss": 2.2278215885162354,
+ "step": 1040
+ },
+ {
+ "epoch": 14.45993031358885,
+ "grad_norm": 0.05218666046857834,
+ "learning_rate": 0.0005004074903123674,
+ "loss": 2.2277817726135254,
+ "step": 1041
+ },
+ {
+ "epoch": 14.473867595818815,
+ "grad_norm": 0.05176419019699097,
+ "learning_rate": 0.0005002082345028864,
+ "loss": 2.231154203414917,
+ "step": 1042
+ },
+ {
+ "epoch": 14.487804878048781,
+ "grad_norm": 0.049131155014038086,
+ "learning_rate": 0.0005000088198062929,
+ "loss": 2.2321465015411377,
+ "step": 1043
+ },
+ {
+ "epoch": 14.501742160278745,
+ "grad_norm": 0.04980473965406418,
+ "learning_rate": 0.0004998092463832516,
+ "loss": 2.191263198852539,
+ "step": 1044
+ },
+ {
+ "epoch": 14.515679442508711,
+ "grad_norm": 0.048349328339099884,
+ "learning_rate": 0.0004996095143945554,
+ "loss": 2.2167882919311523,
+ "step": 1045
+ },
+ {
+ "epoch": 14.529616724738675,
+ "grad_norm": 0.04662036523222923,
+ "learning_rate": 0.0004994096240011246,
+ "loss": 2.213564395904541,
+ "step": 1046
+ },
+ {
+ "epoch": 14.543554006968641,
+ "grad_norm": 0.04783051833510399,
+ "learning_rate": 0.0004992095753640072,
+ "loss": 2.225752592086792,
+ "step": 1047
+ },
+ {
+ "epoch": 14.557491289198607,
+ "grad_norm": 0.05093488097190857,
+ "learning_rate": 0.0004990093686443791,
+ "loss": 2.2382640838623047,
+ "step": 1048
+ },
+ {
+ "epoch": 14.571428571428571,
+ "grad_norm": 0.05354484170675278,
+ "learning_rate": 0.000498809004003543,
+ "loss": 2.226134777069092,
+ "step": 1049
+ },
+ {
+ "epoch": 14.585365853658537,
+ "grad_norm": 0.04998788982629776,
+ "learning_rate": 0.0004986084816029291,
+ "loss": 2.2372093200683594,
+ "step": 1050
+ },
+ {
+ "epoch": 14.599303135888501,
+ "grad_norm": 0.04952755197882652,
+ "learning_rate": 0.0004984078016040946,
+ "loss": 2.232860565185547,
+ "step": 1051
+ },
+ {
+ "epoch": 14.613240418118467,
+ "grad_norm": 0.04750008508563042,
+ "learning_rate": 0.000498206964168724,
+ "loss": 2.223733901977539,
+ "step": 1052
+ },
+ {
+ "epoch": 14.627177700348431,
+ "grad_norm": 0.04636282101273537,
+ "learning_rate": 0.000498005969458628,
+ "loss": 2.227602958679199,
+ "step": 1053
+ },
+ {
+ "epoch": 14.641114982578397,
+ "grad_norm": 0.0465775765478611,
+ "learning_rate": 0.0004978048176357447,
+ "loss": 2.228397846221924,
+ "step": 1054
+ },
+ {
+ "epoch": 14.655052264808361,
+ "grad_norm": 0.04467611759901047,
+ "learning_rate": 0.0004976035088621385,
+ "loss": 2.2124547958374023,
+ "step": 1055
+ },
+ {
+ "epoch": 14.668989547038327,
+ "grad_norm": 0.04734990745782852,
+ "learning_rate": 0.0004974020433000003,
+ "loss": 2.2278337478637695,
+ "step": 1056
+ },
+ {
+ "epoch": 14.682926829268293,
+ "grad_norm": 0.048105571419000626,
+ "learning_rate": 0.000497200421111647,
+ "loss": 2.2506489753723145,
+ "step": 1057
+ },
+ {
+ "epoch": 14.696864111498257,
+ "grad_norm": 0.04658956825733185,
+ "learning_rate": 0.0004969986424595221,
+ "loss": 2.2176156044006348,
+ "step": 1058
+ },
+ {
+ "epoch": 14.710801393728223,
+ "grad_norm": 0.04707225784659386,
+ "learning_rate": 0.0004967967075061949,
+ "loss": 2.235560894012451,
+ "step": 1059
+ },
+ {
+ "epoch": 14.724738675958188,
+ "grad_norm": 0.04652702435851097,
+ "learning_rate": 0.0004965946164143609,
+ "loss": 2.2421717643737793,
+ "step": 1060
+ },
+ {
+ "epoch": 14.738675958188153,
+ "grad_norm": 0.045091014355421066,
+ "learning_rate": 0.0004963923693468413,
+ "loss": 2.233527183532715,
+ "step": 1061
+ },
+ {
+ "epoch": 14.752613240418118,
+ "grad_norm": 0.0467996746301651,
+ "learning_rate": 0.0004961899664665827,
+ "loss": 2.208993673324585,
+ "step": 1062
+ },
+ {
+ "epoch": 14.766550522648084,
+ "grad_norm": 0.04628554731607437,
+ "learning_rate": 0.0004959874079366576,
+ "loss": 2.230579376220703,
+ "step": 1063
+ },
+ {
+ "epoch": 14.78048780487805,
+ "grad_norm": 0.04599257931113243,
+ "learning_rate": 0.0004957846939202637,
+ "loss": 2.2343482971191406,
+ "step": 1064
+ },
+ {
+ "epoch": 14.794425087108014,
+ "grad_norm": 0.045816246420145035,
+ "learning_rate": 0.000495581824580724,
+ "loss": 2.242190361022949,
+ "step": 1065
+ },
+ {
+ "epoch": 14.80836236933798,
+ "grad_norm": 0.04708870127797127,
+ "learning_rate": 0.0004953788000814866,
+ "loss": 2.2468795776367188,
+ "step": 1066
+ },
+ {
+ "epoch": 14.822299651567944,
+ "grad_norm": 0.049605369567871094,
+ "learning_rate": 0.000495175620586125,
+ "loss": 2.21968412399292,
+ "step": 1067
+ },
+ {
+ "epoch": 14.83623693379791,
+ "grad_norm": 0.044056523591279984,
+ "learning_rate": 0.0004949722862583368,
+ "loss": 2.2316298484802246,
+ "step": 1068
+ },
+ {
+ "epoch": 14.850174216027874,
+ "grad_norm": 0.042938072234392166,
+ "learning_rate": 0.000494768797261945,
+ "loss": 2.252958059310913,
+ "step": 1069
+ },
+ {
+ "epoch": 14.86411149825784,
+ "grad_norm": 0.04511357098817825,
+ "learning_rate": 0.000494565153760897,
+ "loss": 2.2274842262268066,
+ "step": 1070
+ },
+ {
+ "epoch": 14.878048780487806,
+ "grad_norm": 0.04632679745554924,
+ "learning_rate": 0.0004943613559192648,
+ "loss": 2.2324767112731934,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89198606271777,
+ "grad_norm": 0.045614346861839294,
+ "learning_rate": 0.0004941574039012444,
+ "loss": 2.2428746223449707,
+ "step": 1072
+ },
+ {
+ "epoch": 14.905923344947736,
+ "grad_norm": 0.04592366889119148,
+ "learning_rate": 0.0004939532978711566,
+ "loss": 2.2330827713012695,
+ "step": 1073
+ },
+ {
+ "epoch": 14.9198606271777,
+ "grad_norm": 0.04424305632710457,
+ "learning_rate": 0.0004937490379934456,
+ "loss": 2.2334916591644287,
+ "step": 1074
+ },
+ {
+ "epoch": 14.933797909407666,
+ "grad_norm": 0.0463118739426136,
+ "learning_rate": 0.00049354462443268,
+ "loss": 2.2362606525421143,
+ "step": 1075
+ },
+ {
+ "epoch": 14.94773519163763,
+ "grad_norm": 0.04408831149339676,
+ "learning_rate": 0.0004933400573535521,
+ "loss": 2.2407727241516113,
+ "step": 1076
+ },
+ {
+ "epoch": 14.961672473867596,
+ "grad_norm": 0.04300303012132645,
+ "learning_rate": 0.000493135336920878,
+ "loss": 2.222532272338867,
+ "step": 1077
+ },
+ {
+ "epoch": 14.975609756097562,
+ "grad_norm": 0.04180522635579109,
+ "learning_rate": 0.0004929304632995973,
+ "loss": 2.242893695831299,
+ "step": 1078
+ },
+ {
+ "epoch": 14.989547038327526,
+ "grad_norm": 0.043276574462652206,
+ "learning_rate": 0.0004927254366547727,
+ "loss": 2.2241783142089844,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.036254994571208954,
+ "learning_rate": 0.0004925202571515908,
+ "loss": 1.6649963855743408,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 0.6207222938537598,
+ "eval_runtime": 37.3466,
+ "eval_samples_per_second": 65.388,
+ "eval_steps_per_second": 0.536,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013937282229966,
+ "grad_norm": 0.045301277190446854,
+ "learning_rate": 0.0004923149249553608,
+ "loss": 2.184032917022705,
+ "step": 1081
+ },
+ {
+ "epoch": 15.02787456445993,
+ "grad_norm": 0.05988018214702606,
+ "learning_rate": 0.0004921094402315152,
+ "loss": 2.1630473136901855,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041811846689896,
+ "grad_norm": 0.06664786487817764,
+ "learning_rate": 0.0004919038031456093,
+ "loss": 2.172067642211914,
+ "step": 1083
+ },
+ {
+ "epoch": 15.05574912891986,
+ "grad_norm": 0.06994126737117767,
+ "learning_rate": 0.0004916980138633213,
+ "loss": 2.185060501098633,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069686411149826,
+ "grad_norm": 0.07145395129919052,
+ "learning_rate": 0.0004914920725504518,
+ "loss": 2.173717498779297,
+ "step": 1085
+ },
+ {
+ "epoch": 15.08362369337979,
+ "grad_norm": 0.07037318497896194,
+ "learning_rate": 0.000491285979372924,
+ "loss": 2.1818294525146484,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097560975609756,
+ "grad_norm": 0.07752140611410141,
+ "learning_rate": 0.0004910797344967834,
+ "loss": 2.179530620574951,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111498257839722,
+ "grad_norm": 0.07689100503921509,
+ "learning_rate": 0.000490873338088198,
+ "loss": 2.167066812515259,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125435540069686,
+ "grad_norm": 0.07060840725898743,
+ "learning_rate": 0.0004906667903134573,
+ "loss": 2.166823387145996,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139372822299652,
+ "grad_norm": 0.07528708130121231,
+ "learning_rate": 0.0004904600913389735,
+ "loss": 2.1838769912719727,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153310104529616,
+ "grad_norm": 0.07452721893787384,
+ "learning_rate": 0.0004902532413312799,
+ "loss": 2.1846580505371094,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167247386759582,
+ "grad_norm": 0.08076248317956924,
+ "learning_rate": 0.0004900462404570321,
+ "loss": 2.1811747550964355,
+ "step": 1092
+ },
+ {
+ "epoch": 15.181184668989546,
+ "grad_norm": 0.07249059528112411,
+ "learning_rate": 0.0004898390888830067,
+ "loss": 2.187530279159546,
+ "step": 1093
+ },
+ {
+ "epoch": 15.195121951219512,
+ "grad_norm": 0.06610925495624542,
+ "learning_rate": 0.0004896317867761022,
+ "loss": 2.1889264583587646,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209059233449477,
+ "grad_norm": 0.07099732756614685,
+ "learning_rate": 0.000489424334303338,
+ "loss": 2.188560962677002,
+ "step": 1095
+ },
+ {
+ "epoch": 15.222996515679442,
+ "grad_norm": 0.0737202987074852,
+ "learning_rate": 0.0004892167316318548,
+ "loss": 2.186715841293335,
+ "step": 1096
+ },
+ {
+ "epoch": 15.236933797909408,
+ "grad_norm": 0.06986237317323685,
+ "learning_rate": 0.0004890089789289147,
+ "loss": 2.1962318420410156,
+ "step": 1097
+ },
+ {
+ "epoch": 15.250871080139373,
+ "grad_norm": 0.07112278789281845,
+ "learning_rate": 0.0004888010763618997,
+ "loss": 2.194401502609253,
+ "step": 1098
+ },
+ {
+ "epoch": 15.264808362369338,
+ "grad_norm": 0.06746342778205872,
+ "learning_rate": 0.0004885930240983136,
+ "loss": 2.188718795776367,
+ "step": 1099
+ },
+ {
+ "epoch": 15.278745644599303,
+ "grad_norm": 0.06471215933561325,
+ "learning_rate": 0.0004883848223057801,
+ "loss": 2.198849678039551,
+ "step": 1100
+ },
+ {
+ "epoch": 15.292682926829269,
+ "grad_norm": 0.05913659557700157,
+ "learning_rate": 0.00048817647115204386,
+ "loss": 2.183661937713623,
+ "step": 1101
+ },
+ {
+ "epoch": 15.306620209059233,
+ "grad_norm": 0.060666151344776154,
+ "learning_rate": 0.00048796797080496936,
+ "loss": 2.1805803775787354,
+ "step": 1102
+ },
+ {
+ "epoch": 15.320557491289199,
+ "grad_norm": 0.06026238948106766,
+ "learning_rate": 0.00048775932143254176,
+ "loss": 2.1778993606567383,
+ "step": 1103
+ },
+ {
+ "epoch": 15.334494773519165,
+ "grad_norm": 0.054371971637010574,
+ "learning_rate": 0.0004875505232028661,
+ "loss": 2.193100690841675,
+ "step": 1104
+ },
+ {
+ "epoch": 15.348432055749129,
+ "grad_norm": 0.051084667444229126,
+ "learning_rate": 0.0004873415762841672,
+ "loss": 2.1867239475250244,
+ "step": 1105
+ },
+ {
+ "epoch": 15.362369337979095,
+ "grad_norm": 0.05281403660774231,
+ "learning_rate": 0.00048713248084478986,
+ "loss": 2.1998157501220703,
+ "step": 1106
+ },
+ {
+ "epoch": 15.376306620209059,
+ "grad_norm": 0.04957163333892822,
+ "learning_rate": 0.0004869232370531986,
+ "loss": 2.1781673431396484,
+ "step": 1107
+ },
+ {
+ "epoch": 15.390243902439025,
+ "grad_norm": 0.04794200882315636,
+ "learning_rate": 0.0004867138450779773,
+ "loss": 2.1990952491760254,
+ "step": 1108
+ },
+ {
+ "epoch": 15.404181184668989,
+ "grad_norm": 0.05102508142590523,
+ "learning_rate": 0.0004865043050878293,
+ "loss": 2.199371814727783,
+ "step": 1109
+ },
+ {
+ "epoch": 15.418118466898955,
+ "grad_norm": 0.049935199320316315,
+ "learning_rate": 0.0004862946172515771,
+ "loss": 2.191676616668701,
+ "step": 1110
+ },
+ {
+ "epoch": 15.43205574912892,
+ "grad_norm": 0.05205542966723442,
+ "learning_rate": 0.0004860847817381625,
+ "loss": 2.2015931606292725,
+ "step": 1111
+ },
+ {
+ "epoch": 15.445993031358885,
+ "grad_norm": 0.051782310009002686,
+ "learning_rate": 0.0004858747987166463,
+ "loss": 2.200479030609131,
+ "step": 1112
+ },
+ {
+ "epoch": 15.45993031358885,
+ "grad_norm": 0.04914203658699989,
+ "learning_rate": 0.00048566466835620774,
+ "loss": 2.19816517829895,
+ "step": 1113
+ },
+ {
+ "epoch": 15.473867595818815,
+ "grad_norm": 0.04609949141740799,
+ "learning_rate": 0.0004854543908261453,
+ "loss": 2.1905436515808105,
+ "step": 1114
+ },
+ {
+ "epoch": 15.487804878048781,
+ "grad_norm": 0.04916610196232796,
+ "learning_rate": 0.0004852439662958756,
+ "loss": 2.203505516052246,
+ "step": 1115
+ },
+ {
+ "epoch": 15.501742160278745,
+ "grad_norm": 0.04806613177061081,
+ "learning_rate": 0.000485033394934934,
+ "loss": 2.2004809379577637,
+ "step": 1116
+ },
+ {
+ "epoch": 15.515679442508711,
+ "grad_norm": 0.04937082529067993,
+ "learning_rate": 0.000484822676912974,
+ "loss": 2.1941723823547363,
+ "step": 1117
+ },
+ {
+ "epoch": 15.529616724738675,
+ "grad_norm": 0.049360860139131546,
+ "learning_rate": 0.0004846118123997674,
+ "loss": 2.1975173950195312,
+ "step": 1118
+ },
+ {
+ "epoch": 15.543554006968641,
+ "grad_norm": 0.04772219434380531,
+ "learning_rate": 0.00048440080156520387,
+ "loss": 2.211244583129883,
+ "step": 1119
+ },
+ {
+ "epoch": 15.557491289198607,
+ "grad_norm": 0.04961530491709709,
+ "learning_rate": 0.0004841896445792909,
+ "loss": 2.191709041595459,
+ "step": 1120
+ },
+ {
+ "epoch": 15.571428571428571,
+ "grad_norm": 0.049396563321352005,
+ "learning_rate": 0.000483978341612154,
+ "loss": 2.2178797721862793,
+ "step": 1121
+ },
+ {
+ "epoch": 15.585365853658537,
+ "grad_norm": 0.0474911704659462,
+ "learning_rate": 0.0004837668928340362,
+ "loss": 2.1883950233459473,
+ "step": 1122
+ },
+ {
+ "epoch": 15.599303135888501,
+ "grad_norm": 0.0497126504778862,
+ "learning_rate": 0.0004835552984152978,
+ "loss": 2.194390296936035,
+ "step": 1123
+ },
+ {
+ "epoch": 15.613240418118467,
+ "grad_norm": 0.04819052666425705,
+ "learning_rate": 0.00048334355852641664,
+ "loss": 2.2060859203338623,
+ "step": 1124
+ },
+ {
+ "epoch": 15.627177700348431,
+ "grad_norm": 0.048422664403915405,
+ "learning_rate": 0.0004831316733379879,
+ "loss": 2.203671932220459,
+ "step": 1125
+ },
+ {
+ "epoch": 15.641114982578397,
+ "grad_norm": 0.0464651882648468,
+ "learning_rate": 0.0004829196430207235,
+ "loss": 2.193103313446045,
+ "step": 1126
+ },
+ {
+ "epoch": 15.655052264808361,
+ "grad_norm": 0.04777771607041359,
+ "learning_rate": 0.00048270746774545237,
+ "loss": 2.190608501434326,
+ "step": 1127
+ },
+ {
+ "epoch": 15.668989547038327,
+ "grad_norm": 0.048422545194625854,
+ "learning_rate": 0.0004824951476831204,
+ "loss": 2.191826105117798,
+ "step": 1128
+ },
+ {
+ "epoch": 15.682926829268293,
+ "grad_norm": 0.04907011240720749,
+ "learning_rate": 0.00048228268300479015,
+ "loss": 2.2020134925842285,
+ "step": 1129
+ },
+ {
+ "epoch": 15.696864111498257,
+ "grad_norm": 0.04749045521020889,
+ "learning_rate": 0.0004820700738816403,
+ "loss": 2.1956100463867188,
+ "step": 1130
+ },
+ {
+ "epoch": 15.710801393728223,
+ "grad_norm": 0.04741237685084343,
+ "learning_rate": 0.0004818573204849664,
+ "loss": 2.1953983306884766,
+ "step": 1131
+ },
+ {
+ "epoch": 15.724738675958188,
+ "grad_norm": 0.048426248133182526,
+ "learning_rate": 0.00048164442298617987,
+ "loss": 2.1906962394714355,
+ "step": 1132
+ },
+ {
+ "epoch": 15.738675958188153,
+ "grad_norm": 0.04688018932938576,
+ "learning_rate": 0.00048143138155680844,
+ "loss": 2.2023704051971436,
+ "step": 1133
+ },
+ {
+ "epoch": 15.752613240418118,
+ "grad_norm": 0.04573274403810501,
+ "learning_rate": 0.0004812181963684958,
+ "loss": 2.1997122764587402,
+ "step": 1134
+ },
+ {
+ "epoch": 15.766550522648084,
+ "grad_norm": 0.04500049352645874,
+ "learning_rate": 0.00048100486759300134,
+ "loss": 2.203868865966797,
+ "step": 1135
+ },
+ {
+ "epoch": 15.78048780487805,
+ "grad_norm": 0.046841904520988464,
+ "learning_rate": 0.00048079139540220024,
+ "loss": 2.2186760902404785,
+ "step": 1136
+ },
+ {
+ "epoch": 15.794425087108014,
+ "grad_norm": 0.04670709744095802,
+ "learning_rate": 0.0004805777799680831,
+ "loss": 2.2019705772399902,
+ "step": 1137
+ },
+ {
+ "epoch": 15.80836236933798,
+ "grad_norm": 0.04602878540754318,
+ "learning_rate": 0.0004803640214627561,
+ "loss": 2.21022891998291,
+ "step": 1138
+ },
+ {
+ "epoch": 15.822299651567944,
+ "grad_norm": 0.045200031250715256,
+ "learning_rate": 0.0004801501200584406,
+ "loss": 2.2007641792297363,
+ "step": 1139
+ },
+ {
+ "epoch": 15.83623693379791,
+ "grad_norm": 0.04749643802642822,
+ "learning_rate": 0.000479936075927473,
+ "loss": 2.2098441123962402,
+ "step": 1140
+ },
+ {
+ "epoch": 15.850174216027874,
+ "grad_norm": 0.04594074562191963,
+ "learning_rate": 0.000479721889242305,
+ "loss": 2.204615354537964,
+ "step": 1141
+ },
+ {
+ "epoch": 15.86411149825784,
+ "grad_norm": 0.04540146514773369,
+ "learning_rate": 0.0004795075601755027,
+ "loss": 2.2012791633605957,
+ "step": 1142
+ },
+ {
+ "epoch": 15.878048780487806,
+ "grad_norm": 0.04618830978870392,
+ "learning_rate": 0.00047929308889974737,
+ "loss": 2.1914544105529785,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89198606271777,
+ "grad_norm": 0.0450817234814167,
+ "learning_rate": 0.0004790784755878346,
+ "loss": 2.200557231903076,
+ "step": 1144
+ },
+ {
+ "epoch": 15.905923344947736,
+ "grad_norm": 0.04639074578881264,
+ "learning_rate": 0.00047886372041267434,
+ "loss": 2.204821825027466,
+ "step": 1145
+ },
+ {
+ "epoch": 15.9198606271777,
+ "grad_norm": 0.04546049237251282,
+ "learning_rate": 0.0004786488235472909,
+ "loss": 2.213542938232422,
+ "step": 1146
+ },
+ {
+ "epoch": 15.933797909407666,
+ "grad_norm": 0.04436152055859566,
+ "learning_rate": 0.0004784337851648231,
+ "loss": 2.1992855072021484,
+ "step": 1147
+ },
+ {
+ "epoch": 15.94773519163763,
+ "grad_norm": 0.04665682092308998,
+ "learning_rate": 0.0004782186054385233,
+ "loss": 2.211052417755127,
+ "step": 1148
+ },
+ {
+ "epoch": 15.961672473867596,
+ "grad_norm": 0.04532767832279205,
+ "learning_rate": 0.0004780032845417579,
+ "loss": 2.2086901664733887,
+ "step": 1149
+ },
+ {
+ "epoch": 15.975609756097562,
+ "grad_norm": 0.04679917171597481,
+ "learning_rate": 0.000477787822648007,
+ "loss": 2.1904289722442627,
+ "step": 1150
+ },
+ {
+ "epoch": 15.989547038327526,
+ "grad_norm": 0.04696613550186157,
+ "learning_rate": 0.00047757221993086443,
+ "loss": 2.17523193359375,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.03984897583723068,
+ "learning_rate": 0.00047735647656403754,
+ "loss": 1.6456931829452515,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 0.6217544674873352,
+ "eval_runtime": 36.2031,
+ "eval_samples_per_second": 67.453,
+ "eval_steps_per_second": 0.552,
+ "step": 1152
+ },
+ {
+ "epoch": 16.013937282229964,
+ "grad_norm": 0.048258837312459946,
+ "learning_rate": 0.0004771405927213467,
+ "loss": 2.149430751800537,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027874564459932,
+ "grad_norm": 0.059622205793857574,
+ "learning_rate": 0.0004769245685767255,
+ "loss": 2.146239757537842,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041811846689896,
+ "grad_norm": 0.06228978559374809,
+ "learning_rate": 0.00047670840430422113,
+ "loss": 2.1373820304870605,
+ "step": 1155
+ },
+ {
+ "epoch": 16.05574912891986,
+ "grad_norm": 0.058429088443517685,
+ "learning_rate": 0.0004764921000779928,
+ "loss": 2.153956413269043,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069686411149824,
+ "grad_norm": 0.0544302761554718,
+ "learning_rate": 0.0004762756560723131,
+ "loss": 2.1617636680603027,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083623693379792,
+ "grad_norm": 0.050771284848451614,
+ "learning_rate": 0.0004760590724615671,
+ "loss": 2.134815216064453,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097560975609756,
+ "grad_norm": 0.05482947453856468,
+ "learning_rate": 0.0004758423494202522,
+ "loss": 2.140288829803467,
+ "step": 1159
+ },
+ {
+ "epoch": 16.11149825783972,
+ "grad_norm": 0.06205987557768822,
+ "learning_rate": 0.0004756254871229782,
+ "loss": 2.1369926929473877,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125435540069688,
+ "grad_norm": 0.060936298221349716,
+ "learning_rate": 0.00047540848574446724,
+ "loss": 2.1448073387145996,
+ "step": 1161
+ },
+ {
+ "epoch": 16.139372822299652,
+ "grad_norm": 0.05571967735886574,
+ "learning_rate": 0.0004751913454595535,
+ "loss": 2.1435866355895996,
+ "step": 1162
+ },
+ {
+ "epoch": 16.153310104529616,
+ "grad_norm": 0.0552542470395565,
+ "learning_rate": 0.0004749740664431828,
+ "loss": 2.149778366088867,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16724738675958,
+ "grad_norm": 0.05414848402142525,
+ "learning_rate": 0.000474756648870413,
+ "loss": 2.149887800216675,
+ "step": 1164
+ },
+ {
+ "epoch": 16.181184668989548,
+ "grad_norm": 0.05441379174590111,
+ "learning_rate": 0.0004745390929164134,
+ "loss": 2.15389347076416,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195121951219512,
+ "grad_norm": 0.05403896048665047,
+ "learning_rate": 0.0004743213987564651,
+ "loss": 2.1331732273101807,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209059233449477,
+ "grad_norm": 0.054594095796346664,
+ "learning_rate": 0.0004741035665659603,
+ "loss": 2.158886671066284,
+ "step": 1167
+ },
+ {
+ "epoch": 16.222996515679444,
+ "grad_norm": 0.06188303232192993,
+ "learning_rate": 0.00047388559652040236,
+ "loss": 2.1471951007843018,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23693379790941,
+ "grad_norm": 0.062315408140420914,
+ "learning_rate": 0.0004736674887954059,
+ "loss": 2.147031307220459,
+ "step": 1169
+ },
+ {
+ "epoch": 16.250871080139373,
+ "grad_norm": 0.06116636097431183,
+ "learning_rate": 0.0004734492435666963,
+ "loss": 2.153916358947754,
+ "step": 1170
+ },
+ {
+ "epoch": 16.264808362369337,
+ "grad_norm": 0.05576318874955177,
+ "learning_rate": 0.0004732308610101099,
+ "loss": 2.1545660495758057,
+ "step": 1171
+ },
+ {
+ "epoch": 16.278745644599304,
+ "grad_norm": 0.05602003261446953,
+ "learning_rate": 0.00047301234130159346,
+ "loss": 2.1588096618652344,
+ "step": 1172
+ },
+ {
+ "epoch": 16.29268292682927,
+ "grad_norm": 0.05946209281682968,
+ "learning_rate": 0.00047279368461720445,
+ "loss": 2.1761999130249023,
+ "step": 1173
+ },
+ {
+ "epoch": 16.306620209059233,
+ "grad_norm": 0.062074463814496994,
+ "learning_rate": 0.0004725748911331106,
+ "loss": 2.168569326400757,
+ "step": 1174
+ },
+ {
+ "epoch": 16.320557491289197,
+ "grad_norm": 0.05756473168730736,
+ "learning_rate": 0.0004723559610255898,
+ "loss": 2.1530699729919434,
+ "step": 1175
+ },
+ {
+ "epoch": 16.334494773519165,
+ "grad_norm": 0.05881023779511452,
+ "learning_rate": 0.0004721368944710302,
+ "loss": 2.1721291542053223,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34843205574913,
+ "grad_norm": 0.06223367527127266,
+ "learning_rate": 0.00047191769164592974,
+ "loss": 2.168361186981201,
+ "step": 1177
+ },
+ {
+ "epoch": 16.362369337979093,
+ "grad_norm": 0.056093230843544006,
+ "learning_rate": 0.000471698352726896,
+ "loss": 2.164424419403076,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37630662020906,
+ "grad_norm": 0.06118649244308472,
+ "learning_rate": 0.0004714788778906467,
+ "loss": 2.158644199371338,
+ "step": 1179
+ },
+ {
+ "epoch": 16.390243902439025,
+ "grad_norm": 0.06548523902893066,
+ "learning_rate": 0.0004712592673140084,
+ "loss": 2.1728553771972656,
+ "step": 1180
+ },
+ {
+ "epoch": 16.40418118466899,
+ "grad_norm": 0.06719230860471725,
+ "learning_rate": 0.00047103952117391764,
+ "loss": 2.1555490493774414,
+ "step": 1181
+ },
+ {
+ "epoch": 16.418118466898953,
+ "grad_norm": 0.06181609630584717,
+ "learning_rate": 0.00047081963964741986,
+ "loss": 2.162527561187744,
+ "step": 1182
+ },
+ {
+ "epoch": 16.43205574912892,
+ "grad_norm": 0.05706655979156494,
+ "learning_rate": 0.0004705996229116696,
+ "loss": 2.1423912048339844,
+ "step": 1183
+ },
+ {
+ "epoch": 16.445993031358885,
+ "grad_norm": 0.05518640577793121,
+ "learning_rate": 0.0004703794711439304,
+ "loss": 2.1653032302856445,
+ "step": 1184
+ },
+ {
+ "epoch": 16.45993031358885,
+ "grad_norm": 0.05664249137043953,
+ "learning_rate": 0.0004701591845215744,
+ "loss": 2.166928291320801,
+ "step": 1185
+ },
+ {
+ "epoch": 16.473867595818817,
+ "grad_norm": 0.05873657390475273,
+ "learning_rate": 0.00046993876322208274,
+ "loss": 2.1778905391693115,
+ "step": 1186
+ },
+ {
+ "epoch": 16.48780487804878,
+ "grad_norm": 0.05944420397281647,
+ "learning_rate": 0.0004697182074230448,
+ "loss": 2.177402973175049,
+ "step": 1187
+ },
+ {
+ "epoch": 16.501742160278745,
+ "grad_norm": 0.059531547129154205,
+ "learning_rate": 0.0004694975173021586,
+ "loss": 2.1766552925109863,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51567944250871,
+ "grad_norm": 0.05503744259476662,
+ "learning_rate": 0.0004692766930372299,
+ "loss": 2.167525291442871,
+ "step": 1189
+ },
+ {
+ "epoch": 16.529616724738677,
+ "grad_norm": 0.05157329514622688,
+ "learning_rate": 0.00046905573480617285,
+ "loss": 2.1732568740844727,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54355400696864,
+ "grad_norm": 0.05355038493871689,
+ "learning_rate": 0.00046883464278700966,
+ "loss": 2.1730806827545166,
+ "step": 1191
+ },
+ {
+ "epoch": 16.557491289198605,
+ "grad_norm": 0.05118329077959061,
+ "learning_rate": 0.0004686134171578702,
+ "loss": 2.1696338653564453,
+ "step": 1192
+ },
+ {
+ "epoch": 16.571428571428573,
+ "grad_norm": 0.05029391869902611,
+ "learning_rate": 0.00046839205809699183,
+ "loss": 2.195044994354248,
+ "step": 1193
+ },
+ {
+ "epoch": 16.585365853658537,
+ "grad_norm": 0.050039373338222504,
+ "learning_rate": 0.0004681705657827195,
+ "loss": 2.1581506729125977,
+ "step": 1194
+ },
+ {
+ "epoch": 16.5993031358885,
+ "grad_norm": 0.0545598603785038,
+ "learning_rate": 0.0004679489403935058,
+ "loss": 2.1650285720825195,
+ "step": 1195
+ },
+ {
+ "epoch": 16.613240418118465,
+ "grad_norm": 0.05268346890807152,
+ "learning_rate": 0.00046772718210791005,
+ "loss": 2.184382438659668,
+ "step": 1196
+ },
+ {
+ "epoch": 16.627177700348433,
+ "grad_norm": 0.05236094444990158,
+ "learning_rate": 0.00046750529110459903,
+ "loss": 2.167102813720703,
+ "step": 1197
+ },
+ {
+ "epoch": 16.641114982578397,
+ "grad_norm": 0.052183765918016434,
+ "learning_rate": 0.0004672832675623463,
+ "loss": 2.174470901489258,
+ "step": 1198
+ },
+ {
+ "epoch": 16.65505226480836,
+ "grad_norm": 0.049528587609529495,
+ "learning_rate": 0.0004670611116600322,
+ "loss": 2.1593801975250244,
+ "step": 1199
+ },
+ {
+ "epoch": 16.66898954703833,
+ "grad_norm": 0.05077743902802467,
+ "learning_rate": 0.00046683882357664375,
+ "loss": 2.1829850673675537,
+ "step": 1200
+ },
+ {
+ "epoch": 16.682926829268293,
+ "grad_norm": 0.049165278673172,
+ "learning_rate": 0.0004666164034912744,
+ "loss": 2.1820642948150635,
+ "step": 1201
+ },
+ {
+ "epoch": 16.696864111498257,
+ "grad_norm": 0.049670539796352386,
+ "learning_rate": 0.00046639385158312406,
+ "loss": 2.1617588996887207,
+ "step": 1202
+ },
+ {
+ "epoch": 16.71080139372822,
+ "grad_norm": 0.05188990756869316,
+ "learning_rate": 0.00046617116803149874,
+ "loss": 2.1910011768341064,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72473867595819,
+ "grad_norm": 0.05106198787689209,
+ "learning_rate": 0.00046594835301581053,
+ "loss": 2.1670002937316895,
+ "step": 1204
+ },
+ {
+ "epoch": 16.738675958188153,
+ "grad_norm": 0.052352480590343475,
+ "learning_rate": 0.00046572540671557745,
+ "loss": 2.1804449558258057,
+ "step": 1205
+ },
+ {
+ "epoch": 16.752613240418118,
+ "grad_norm": 0.05456020310521126,
+ "learning_rate": 0.00046550232931042346,
+ "loss": 2.183560848236084,
+ "step": 1206
+ },
+ {
+ "epoch": 16.766550522648085,
+ "grad_norm": 0.05248325690627098,
+ "learning_rate": 0.00046527912098007787,
+ "loss": 2.1866538524627686,
+ "step": 1207
+ },
+ {
+ "epoch": 16.78048780487805,
+ "grad_norm": 0.052194926887750626,
+ "learning_rate": 0.00046505578190437564,
+ "loss": 2.179544448852539,
+ "step": 1208
+ },
+ {
+ "epoch": 16.794425087108014,
+ "grad_norm": 0.048344213515520096,
+ "learning_rate": 0.0004648323122632569,
+ "loss": 2.1895692348480225,
+ "step": 1209
+ },
+ {
+ "epoch": 16.808362369337978,
+ "grad_norm": 0.053263742476701736,
+ "learning_rate": 0.0004646087122367673,
+ "loss": 2.1922311782836914,
+ "step": 1210
+ },
+ {
+ "epoch": 16.822299651567945,
+ "grad_norm": 0.05046837404370308,
+ "learning_rate": 0.00046438498200505727,
+ "loss": 2.1986570358276367,
+ "step": 1211
+ },
+ {
+ "epoch": 16.83623693379791,
+ "grad_norm": 0.04699976369738579,
+ "learning_rate": 0.0004641611217483821,
+ "loss": 2.168755531311035,
+ "step": 1212
+ },
+ {
+ "epoch": 16.850174216027874,
+ "grad_norm": 0.0500732958316803,
+ "learning_rate": 0.00046393713164710217,
+ "loss": 2.1747398376464844,
+ "step": 1213
+ },
+ {
+ "epoch": 16.86411149825784,
+ "grad_norm": 0.048436183482408524,
+ "learning_rate": 0.00046371301188168204,
+ "loss": 2.181175947189331,
+ "step": 1214
+ },
+ {
+ "epoch": 16.878048780487806,
+ "grad_norm": 0.04788931831717491,
+ "learning_rate": 0.0004634887626326911,
+ "loss": 2.1619675159454346,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89198606271777,
+ "grad_norm": 0.04881543293595314,
+ "learning_rate": 0.00046326438408080293,
+ "loss": 2.1840174198150635,
+ "step": 1216
+ },
+ {
+ "epoch": 16.905923344947734,
+ "grad_norm": 0.049969445914030075,
+ "learning_rate": 0.00046303987640679517,
+ "loss": 2.199573040008545,
+ "step": 1217
+ },
+ {
+ "epoch": 16.9198606271777,
+ "grad_norm": 0.048629943281412125,
+ "learning_rate": 0.0004628152397915498,
+ "loss": 2.1661055088043213,
+ "step": 1218
+ },
+ {
+ "epoch": 16.933797909407666,
+ "grad_norm": 0.051450759172439575,
+ "learning_rate": 0.00046259047441605215,
+ "loss": 2.182037591934204,
+ "step": 1219
+ },
+ {
+ "epoch": 16.94773519163763,
+ "grad_norm": 0.05253942683339119,
+ "learning_rate": 0.0004623655804613919,
+ "loss": 2.1848878860473633,
+ "step": 1220
+ },
+ {
+ "epoch": 16.961672473867594,
+ "grad_norm": 0.0511169359087944,
+ "learning_rate": 0.00046214055810876194,
+ "loss": 2.181640863418579,
+ "step": 1221
+ },
+ {
+ "epoch": 16.975609756097562,
+ "grad_norm": 0.04952972009778023,
+ "learning_rate": 0.00046191540753945886,
+ "loss": 2.1824798583984375,
+ "step": 1222
+ },
+ {
+ "epoch": 16.989547038327526,
+ "grad_norm": 0.048745568841695786,
+ "learning_rate": 0.00046169012893488204,
+ "loss": 2.175996780395508,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.039088211953639984,
+ "learning_rate": 0.00046146472247653484,
+ "loss": 1.6450124979019165,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 0.6228054761886597,
+ "eval_runtime": 36.2135,
+ "eval_samples_per_second": 67.433,
+ "eval_steps_per_second": 0.552,
+ "step": 1224
+ },
+ {
+ "epoch": 17.013937282229964,
+ "grad_norm": 0.05182459577918053,
+ "learning_rate": 0.0004612391883460228,
+ "loss": 2.13407826423645,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027874564459932,
+ "grad_norm": 0.06349381804466248,
+ "learning_rate": 0.00046101352672505493,
+ "loss": 2.124786615371704,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041811846689896,
+ "grad_norm": 0.06030651181936264,
+ "learning_rate": 0.0004607877377954426,
+ "loss": 2.1319074630737305,
+ "step": 1227
+ },
+ {
+ "epoch": 17.05574912891986,
+ "grad_norm": 0.05942157283425331,
+ "learning_rate": 0.00046056182173909995,
+ "loss": 2.1155600547790527,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069686411149824,
+ "grad_norm": 0.05690222606062889,
+ "learning_rate": 0.0004603357787380435,
+ "loss": 2.1224000453948975,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083623693379792,
+ "grad_norm": 0.05549716204404831,
+ "learning_rate": 0.0004601096089743919,
+ "loss": 2.138361692428589,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097560975609756,
+ "grad_norm": 0.05572805553674698,
+ "learning_rate": 0.0004598833126303661,
+ "loss": 2.108839511871338,
+ "step": 1231
+ },
+ {
+ "epoch": 17.11149825783972,
+ "grad_norm": 0.05359194055199623,
+ "learning_rate": 0.00045965688988828884,
+ "loss": 2.111232042312622,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125435540069688,
+ "grad_norm": 0.05284698307514191,
+ "learning_rate": 0.00045943034093058507,
+ "loss": 2.111241102218628,
+ "step": 1233
+ },
+ {
+ "epoch": 17.139372822299652,
+ "grad_norm": 0.05522393807768822,
+ "learning_rate": 0.000459203665939781,
+ "loss": 2.1056082248687744,
+ "step": 1234
+ },
+ {
+ "epoch": 17.153310104529616,
+ "grad_norm": 0.05988268554210663,
+ "learning_rate": 0.00045897686509850487,
+ "loss": 2.1245055198669434,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16724738675958,
+ "grad_norm": 0.05882375314831734,
+ "learning_rate": 0.0004587499385894856,
+ "loss": 2.12105655670166,
+ "step": 1236
+ },
+ {
+ "epoch": 17.181184668989548,
+ "grad_norm": 0.05429045483469963,
+ "learning_rate": 0.000458522886595554,
+ "loss": 2.1340696811676025,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195121951219512,
+ "grad_norm": 0.05428321287035942,
+ "learning_rate": 0.0004582957092996418,
+ "loss": 2.125894546508789,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209059233449477,
+ "grad_norm": 0.05918198451399803,
+ "learning_rate": 0.0004580684068847817,
+ "loss": 2.115187168121338,
+ "step": 1239
+ },
+ {
+ "epoch": 17.222996515679444,
+ "grad_norm": 0.05467062070965767,
+ "learning_rate": 0.0004578409795341069,
+ "loss": 2.1267573833465576,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23693379790941,
+ "grad_norm": 0.05117730423808098,
+ "learning_rate": 0.0004576134274308517,
+ "loss": 2.131983757019043,
+ "step": 1241
+ },
+ {
+ "epoch": 17.250871080139373,
+ "grad_norm": 0.05354353412985802,
+ "learning_rate": 0.0004573857507583506,
+ "loss": 2.139024019241333,
+ "step": 1242
+ },
+ {
+ "epoch": 17.264808362369337,
+ "grad_norm": 0.05508217588067055,
+ "learning_rate": 0.00045715794970003874,
+ "loss": 2.123086929321289,
+ "step": 1243
+ },
+ {
+ "epoch": 17.278745644599304,
+ "grad_norm": 0.056819524616003036,
+ "learning_rate": 0.0004569300244394513,
+ "loss": 2.133049488067627,
+ "step": 1244
+ },
+ {
+ "epoch": 17.29268292682927,
+ "grad_norm": 0.06116129457950592,
+ "learning_rate": 0.0004567019751602234,
+ "loss": 2.146721601486206,
+ "step": 1245
+ },
+ {
+ "epoch": 17.306620209059233,
+ "grad_norm": 0.06482621282339096,
+ "learning_rate": 0.00045647380204609034,
+ "loss": 2.133073568344116,
+ "step": 1246
+ },
+ {
+ "epoch": 17.320557491289197,
+ "grad_norm": 0.06122269853949547,
+ "learning_rate": 0.00045624550528088704,
+ "loss": 2.1292078495025635,
+ "step": 1247
+ },
+ {
+ "epoch": 17.334494773519165,
+ "grad_norm": 0.060462113469839096,
+ "learning_rate": 0.00045601708504854803,
+ "loss": 2.1301801204681396,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34843205574913,
+ "grad_norm": 0.05775533244013786,
+ "learning_rate": 0.0004557885415331074,
+ "loss": 2.160749673843384,
+ "step": 1249
+ },
+ {
+ "epoch": 17.362369337979093,
+ "grad_norm": 0.05933118611574173,
+ "learning_rate": 0.00045555987491869865,
+ "loss": 2.138021469116211,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37630662020906,
+ "grad_norm": 0.05498939007520676,
+ "learning_rate": 0.00045533108538955416,
+ "loss": 2.1443264484405518,
+ "step": 1251
+ },
+ {
+ "epoch": 17.390243902439025,
+ "grad_norm": 0.05720233544707298,
+ "learning_rate": 0.0004551021731300055,
+ "loss": 2.1400699615478516,
+ "step": 1252
+ },
+ {
+ "epoch": 17.40418118466899,
+ "grad_norm": 0.05569229647517204,
+ "learning_rate": 0.0004548731383244834,
+ "loss": 2.1375250816345215,
+ "step": 1253
+ },
+ {
+ "epoch": 17.418118466898953,
+ "grad_norm": 0.05508109927177429,
+ "learning_rate": 0.0004546439811575169,
+ "loss": 2.1352083683013916,
+ "step": 1254
+ },
+ {
+ "epoch": 17.43205574912892,
+ "grad_norm": 0.057038020342588425,
+ "learning_rate": 0.00045441470181373375,
+ "loss": 2.1290454864501953,
+ "step": 1255
+ },
+ {
+ "epoch": 17.445993031358885,
+ "grad_norm": 0.05938584357500076,
+ "learning_rate": 0.0004541853004778603,
+ "loss": 2.14906644821167,
+ "step": 1256
+ },
+ {
+ "epoch": 17.45993031358885,
+ "grad_norm": 0.05654401332139969,
+ "learning_rate": 0.00045395577733472087,
+ "loss": 2.133410692214966,
+ "step": 1257
+ },
+ {
+ "epoch": 17.473867595818817,
+ "grad_norm": 0.05399394780397415,
+ "learning_rate": 0.0004537261325692383,
+ "loss": 2.14622163772583,
+ "step": 1258
+ },
+ {
+ "epoch": 17.48780487804878,
+ "grad_norm": 0.05683310702443123,
+ "learning_rate": 0.0004534963663664332,
+ "loss": 2.1482772827148438,
+ "step": 1259
+ },
+ {
+ "epoch": 17.501742160278745,
+ "grad_norm": 0.06314415484666824,
+ "learning_rate": 0.00045326647891142394,
+ "loss": 2.150238037109375,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51567944250871,
+ "grad_norm": 0.0595875009894371,
+ "learning_rate": 0.0004530364703894268,
+ "loss": 2.137575626373291,
+ "step": 1261
+ },
+ {
+ "epoch": 17.529616724738677,
+ "grad_norm": 0.05534850060939789,
+ "learning_rate": 0.0004528063409857554,
+ "loss": 2.169827461242676,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54355400696864,
+ "grad_norm": 0.06096148118376732,
+ "learning_rate": 0.0004525760908858209,
+ "loss": 2.142652988433838,
+ "step": 1263
+ },
+ {
+ "epoch": 17.557491289198605,
+ "grad_norm": 0.06313963979482651,
+ "learning_rate": 0.00045234572027513174,
+ "loss": 2.152920722961426,
+ "step": 1264
+ },
+ {
+ "epoch": 17.571428571428573,
+ "grad_norm": 0.058604612946510315,
+ "learning_rate": 0.00045211522933929317,
+ "loss": 2.1487669944763184,
+ "step": 1265
+ },
+ {
+ "epoch": 17.585365853658537,
+ "grad_norm": 0.056736089289188385,
+ "learning_rate": 0.0004518846182640077,
+ "loss": 2.1435699462890625,
+ "step": 1266
+ },
+ {
+ "epoch": 17.5993031358885,
+ "grad_norm": 0.05706419423222542,
+ "learning_rate": 0.0004516538872350744,
+ "loss": 2.1586122512817383,
+ "step": 1267
+ },
+ {
+ "epoch": 17.613240418118465,
+ "grad_norm": 0.05560465529561043,
+ "learning_rate": 0.0004514230364383893,
+ "loss": 2.177081346511841,
+ "step": 1268
+ },
+ {
+ "epoch": 17.627177700348433,
+ "grad_norm": 0.05601844564080238,
+ "learning_rate": 0.0004511920660599444,
+ "loss": 2.1478757858276367,
+ "step": 1269
+ },
+ {
+ "epoch": 17.641114982578397,
+ "grad_norm": 0.05756781995296478,
+ "learning_rate": 0.0004509609762858287,
+ "loss": 2.1525440216064453,
+ "step": 1270
+ },
+ {
+ "epoch": 17.65505226480836,
+ "grad_norm": 0.0531681589782238,
+ "learning_rate": 0.0004507297673022269,
+ "loss": 2.1489810943603516,
+ "step": 1271
+ },
+ {
+ "epoch": 17.66898954703833,
+ "grad_norm": 0.05216185003519058,
+ "learning_rate": 0.0004504984392954199,
+ "loss": 2.144932746887207,
+ "step": 1272
+ },
+ {
+ "epoch": 17.682926829268293,
+ "grad_norm": 0.052748095244169235,
+ "learning_rate": 0.00045026699245178444,
+ "loss": 2.148977756500244,
+ "step": 1273
+ },
+ {
+ "epoch": 17.696864111498257,
+ "grad_norm": 0.051663246005773544,
+ "learning_rate": 0.0004500354269577932,
+ "loss": 2.1617603302001953,
+ "step": 1274
+ },
+ {
+ "epoch": 17.71080139372822,
+ "grad_norm": 0.05068802461028099,
+ "learning_rate": 0.00044980374300001414,
+ "loss": 2.1467485427856445,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72473867595819,
+ "grad_norm": 0.052201591432094574,
+ "learning_rate": 0.00044957194076511095,
+ "loss": 2.1621475219726562,
+ "step": 1276
+ },
+ {
+ "epoch": 17.738675958188153,
+ "grad_norm": 0.05179779976606369,
+ "learning_rate": 0.0004493400204398426,
+ "loss": 2.1593222618103027,
+ "step": 1277
+ },
+ {
+ "epoch": 17.752613240418118,
+ "grad_norm": 0.05123918130993843,
+ "learning_rate": 0.00044910798221106283,
+ "loss": 2.1596224308013916,
+ "step": 1278
+ },
+ {
+ "epoch": 17.766550522648085,
+ "grad_norm": 0.05416003242135048,
+ "learning_rate": 0.00044887582626572105,
+ "loss": 2.156677484512329,
+ "step": 1279
+ },
+ {
+ "epoch": 17.78048780487805,
+ "grad_norm": 0.05376303568482399,
+ "learning_rate": 0.0004486435527908606,
+ "loss": 2.1515936851501465,
+ "step": 1280
+ },
+ {
+ "epoch": 17.794425087108014,
+ "grad_norm": 0.05113770812749863,
+ "learning_rate": 0.0004484111619736205,
+ "loss": 2.159501075744629,
+ "step": 1281
+ },
+ {
+ "epoch": 17.808362369337978,
+ "grad_norm": 0.05341901257634163,
+ "learning_rate": 0.0004481786540012336,
+ "loss": 2.1458449363708496,
+ "step": 1282
+ },
+ {
+ "epoch": 17.822299651567945,
+ "grad_norm": 0.05436928942799568,
+ "learning_rate": 0.00044794602906102747,
+ "loss": 2.1686582565307617,
+ "step": 1283
+ },
+ {
+ "epoch": 17.83623693379791,
+ "grad_norm": 0.05663881078362465,
+ "learning_rate": 0.00044771328734042367,
+ "loss": 2.162226676940918,
+ "step": 1284
+ },
+ {
+ "epoch": 17.850174216027874,
+ "grad_norm": 0.052064672112464905,
+ "learning_rate": 0.00044748042902693815,
+ "loss": 2.162569046020508,
+ "step": 1285
+ },
+ {
+ "epoch": 17.86411149825784,
+ "grad_norm": 0.05361185595393181,
+ "learning_rate": 0.0004472474543081805,
+ "loss": 2.156773567199707,
+ "step": 1286
+ },
+ {
+ "epoch": 17.878048780487806,
+ "grad_norm": 0.053101785480976105,
+ "learning_rate": 0.00044701436337185444,
+ "loss": 2.1460914611816406,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89198606271777,
+ "grad_norm": 0.05247222259640694,
+ "learning_rate": 0.00044678115640575704,
+ "loss": 2.1564040184020996,
+ "step": 1288
+ },
+ {
+ "epoch": 17.905923344947734,
+ "grad_norm": 0.054551344364881516,
+ "learning_rate": 0.0004465478335977788,
+ "loss": 2.1503076553344727,
+ "step": 1289
+ },
+ {
+ "epoch": 17.9198606271777,
+ "grad_norm": 0.050967201590538025,
+ "learning_rate": 0.00044631439513590393,
+ "loss": 2.165611505508423,
+ "step": 1290
+ },
+ {
+ "epoch": 17.933797909407666,
+ "grad_norm": 0.051103148609399796,
+ "learning_rate": 0.00044608084120820933,
+ "loss": 2.146416187286377,
+ "step": 1291
+ },
+ {
+ "epoch": 17.94773519163763,
+ "grad_norm": 0.04871583357453346,
+ "learning_rate": 0.0004458471720028655,
+ "loss": 2.1615967750549316,
+ "step": 1292
+ },
+ {
+ "epoch": 17.961672473867594,
+ "grad_norm": 0.05047275498509407,
+ "learning_rate": 0.0004456133877081352,
+ "loss": 2.1585195064544678,
+ "step": 1293
+ },
+ {
+ "epoch": 17.975609756097562,
+ "grad_norm": 0.05169983580708504,
+ "learning_rate": 0.0004453794885123744,
+ "loss": 2.163914680480957,
+ "step": 1294
+ },
+ {
+ "epoch": 17.989547038327526,
+ "grad_norm": 0.05178225040435791,
+ "learning_rate": 0.00044514547460403135,
+ "loss": 2.1566972732543945,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.04334854707121849,
+ "learning_rate": 0.00044491134617164694,
+ "loss": 1.6099262237548828,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 0.6236167550086975,
+ "eval_runtime": 36.363,
+ "eval_samples_per_second": 67.156,
+ "eval_steps_per_second": 0.55,
+ "step": 1296
+ },
+ {
+ "epoch": 18.013937282229964,
+ "grad_norm": 0.054574184119701385,
+ "learning_rate": 0.000444677103403854,
+ "loss": 2.097102642059326,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027874564459932,
+ "grad_norm": 0.06331679970026016,
+ "learning_rate": 0.0004444427464893779,
+ "loss": 2.113513469696045,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041811846689896,
+ "grad_norm": 0.06493321061134338,
+ "learning_rate": 0.00044420827561703573,
+ "loss": 2.1095829010009766,
+ "step": 1299
+ },
+ {
+ "epoch": 18.05574912891986,
+ "grad_norm": 0.0661960318684578,
+ "learning_rate": 0.0004439736909757365,
+ "loss": 2.0967822074890137,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069686411149824,
+ "grad_norm": 0.062145210802555084,
+ "learning_rate": 0.0004437389927544805,
+ "loss": 2.08186936378479,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083623693379792,
+ "grad_norm": 0.06310027837753296,
+ "learning_rate": 0.0004435041811423603,
+ "loss": 2.115525245666504,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097560975609756,
+ "grad_norm": 0.06527610123157501,
+ "learning_rate": 0.0004432692563285591,
+ "loss": 2.110492706298828,
+ "step": 1303
+ },
+ {
+ "epoch": 18.11149825783972,
+ "grad_norm": 0.059454720467329025,
+ "learning_rate": 0.0004430342185023517,
+ "loss": 2.105884552001953,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125435540069688,
+ "grad_norm": 0.056922316551208496,
+ "learning_rate": 0.0004427990678531038,
+ "loss": 2.1008682250976562,
+ "step": 1305
+ },
+ {
+ "epoch": 18.139372822299652,
+ "grad_norm": 0.06496447324752808,
+ "learning_rate": 0.0004425638045702719,
+ "loss": 2.0853774547576904,
+ "step": 1306
+ },
+ {
+ "epoch": 18.153310104529616,
+ "grad_norm": 0.059888552874326706,
+ "learning_rate": 0.0004423284288434035,
+ "loss": 2.1116936206817627,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16724738675958,
+ "grad_norm": 0.06061340123414993,
+ "learning_rate": 0.00044209294086213657,
+ "loss": 2.100578784942627,
+ "step": 1308
+ },
+ {
+ "epoch": 18.181184668989548,
+ "grad_norm": 0.06433615833520889,
+ "learning_rate": 0.00044185734081619957,
+ "loss": 2.0994229316711426,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195121951219512,
+ "grad_norm": 0.06373526901006699,
+ "learning_rate": 0.000441621628895411,
+ "loss": 2.1115286350250244,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209059233449477,
+ "grad_norm": 0.062120918184518814,
+ "learning_rate": 0.00044138580528967986,
+ "loss": 2.123278856277466,
+ "step": 1311
+ },
+ {
+ "epoch": 18.222996515679444,
+ "grad_norm": 0.06534294784069061,
+ "learning_rate": 0.0004411498701890051,
+ "loss": 2.0983846187591553,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23693379790941,
+ "grad_norm": 0.06486557424068451,
+ "learning_rate": 0.0004409138237834751,
+ "loss": 2.099348783493042,
+ "step": 1313
+ },
+ {
+ "epoch": 18.250871080139373,
+ "grad_norm": 0.05728910490870476,
+ "learning_rate": 0.00044067766626326835,
+ "loss": 2.0990138053894043,
+ "step": 1314
+ },
+ {
+ "epoch": 18.264808362369337,
+ "grad_norm": 0.060207612812519073,
+ "learning_rate": 0.00044044139781865255,
+ "loss": 2.1117920875549316,
+ "step": 1315
+ },
+ {
+ "epoch": 18.278745644599304,
+ "grad_norm": 0.05766129493713379,
+ "learning_rate": 0.00044020501863998516,
+ "loss": 2.101550579071045,
+ "step": 1316
+ },
+ {
+ "epoch": 18.29268292682927,
+ "grad_norm": 0.060087788850069046,
+ "learning_rate": 0.00043996852891771236,
+ "loss": 2.1135497093200684,
+ "step": 1317
+ },
+ {
+ "epoch": 18.306620209059233,
+ "grad_norm": 0.059771373867988586,
+ "learning_rate": 0.00043973192884236983,
+ "loss": 2.1124963760375977,
+ "step": 1318
+ },
+ {
+ "epoch": 18.320557491289197,
+ "grad_norm": 0.059871334582567215,
+ "learning_rate": 0.0004394952186045819,
+ "loss": 2.1254708766937256,
+ "step": 1319
+ },
+ {
+ "epoch": 18.334494773519165,
+ "grad_norm": 0.060070380568504333,
+ "learning_rate": 0.00043925839839506167,
+ "loss": 2.1019275188446045,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34843205574913,
+ "grad_norm": 0.05744089558720589,
+ "learning_rate": 0.0004390214684046111,
+ "loss": 2.112631320953369,
+ "step": 1321
+ },
+ {
+ "epoch": 18.362369337979093,
+ "grad_norm": 0.06188441440463066,
+ "learning_rate": 0.00043878442882412015,
+ "loss": 2.11454439163208,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37630662020906,
+ "grad_norm": 0.06033455580472946,
+ "learning_rate": 0.00043854727984456746,
+ "loss": 2.1136903762817383,
+ "step": 1323
+ },
+ {
+ "epoch": 18.390243902439025,
+ "grad_norm": 0.05741684511303902,
+ "learning_rate": 0.0004383100216570197,
+ "loss": 2.1244497299194336,
+ "step": 1324
+ },
+ {
+ "epoch": 18.40418118466899,
+ "grad_norm": 0.05371133238077164,
+ "learning_rate": 0.0004380726544526316,
+ "loss": 2.0973854064941406,
+ "step": 1325
+ },
+ {
+ "epoch": 18.418118466898953,
+ "grad_norm": 0.05289234593510628,
+ "learning_rate": 0.00043783517842264534,
+ "loss": 2.1062159538269043,
+ "step": 1326
+ },
+ {
+ "epoch": 18.43205574912892,
+ "grad_norm": 0.05888833478093147,
+ "learning_rate": 0.0004375975937583914,
+ "loss": 2.133770227432251,
+ "step": 1327
+ },
+ {
+ "epoch": 18.445993031358885,
+ "grad_norm": 0.057039227336645126,
+ "learning_rate": 0.0004373599006512871,
+ "loss": 2.123251438140869,
+ "step": 1328
+ },
+ {
+ "epoch": 18.45993031358885,
+ "grad_norm": 0.05389681085944176,
+ "learning_rate": 0.00043712209929283786,
+ "loss": 2.1121368408203125,
+ "step": 1329
+ },
+ {
+ "epoch": 18.473867595818817,
+ "grad_norm": 0.05782404541969299,
+ "learning_rate": 0.00043688418987463567,
+ "loss": 2.119410991668701,
+ "step": 1330
+ },
+ {
+ "epoch": 18.48780487804878,
+ "grad_norm": 0.06069990620017052,
+ "learning_rate": 0.00043664617258835995,
+ "loss": 2.1443772315979004,
+ "step": 1331
+ },
+ {
+ "epoch": 18.501742160278745,
+ "grad_norm": 0.05559232831001282,
+ "learning_rate": 0.0004364080476257769,
+ "loss": 2.1264851093292236,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51567944250871,
+ "grad_norm": 0.05432436615228653,
+ "learning_rate": 0.0004361698151787396,
+ "loss": 2.1118392944335938,
+ "step": 1333
+ },
+ {
+ "epoch": 18.529616724738677,
+ "grad_norm": 0.05471545085310936,
+ "learning_rate": 0.0004359314754391874,
+ "loss": 2.1159002780914307,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54355400696864,
+ "grad_norm": 0.05574088171124458,
+ "learning_rate": 0.0004356930285991466,
+ "loss": 2.1271533966064453,
+ "step": 1335
+ },
+ {
+ "epoch": 18.557491289198605,
+ "grad_norm": 0.05431128293275833,
+ "learning_rate": 0.00043545447485072926,
+ "loss": 2.125399589538574,
+ "step": 1336
+ },
+ {
+ "epoch": 18.571428571428573,
+ "grad_norm": 0.055981073528528214,
+ "learning_rate": 0.000435215814386134,
+ "loss": 2.113802909851074,
+ "step": 1337
+ },
+ {
+ "epoch": 18.585365853658537,
+ "grad_norm": 0.05551784485578537,
+ "learning_rate": 0.0004349770473976453,
+ "loss": 2.1233460903167725,
+ "step": 1338
+ },
+ {
+ "epoch": 18.5993031358885,
+ "grad_norm": 0.05475042760372162,
+ "learning_rate": 0.0004347381740776332,
+ "loss": 2.1365370750427246,
+ "step": 1339
+ },
+ {
+ "epoch": 18.613240418118465,
+ "grad_norm": 0.05448045954108238,
+ "learning_rate": 0.0004344991946185538,
+ "loss": 2.1288349628448486,
+ "step": 1340
+ },
+ {
+ "epoch": 18.627177700348433,
+ "grad_norm": 0.0553717240691185,
+ "learning_rate": 0.00043426010921294837,
+ "loss": 2.1383371353149414,
+ "step": 1341
+ },
+ {
+ "epoch": 18.641114982578397,
+ "grad_norm": 0.05391915515065193,
+ "learning_rate": 0.0004340209180534438,
+ "loss": 2.1390743255615234,
+ "step": 1342
+ },
+ {
+ "epoch": 18.65505226480836,
+ "grad_norm": 0.05404767021536827,
+ "learning_rate": 0.000433781621332752,
+ "loss": 2.1237120628356934,
+ "step": 1343
+ },
+ {
+ "epoch": 18.66898954703833,
+ "grad_norm": 0.05370468273758888,
+ "learning_rate": 0.0004335422192436703,
+ "loss": 2.123408079147339,
+ "step": 1344
+ },
+ {
+ "epoch": 18.682926829268293,
+ "grad_norm": 0.05490506440401077,
+ "learning_rate": 0.00043330271197908023,
+ "loss": 2.130199432373047,
+ "step": 1345
+ },
+ {
+ "epoch": 18.696864111498257,
+ "grad_norm": 0.05651344731450081,
+ "learning_rate": 0.00043306309973194874,
+ "loss": 2.1184425354003906,
+ "step": 1346
+ },
+ {
+ "epoch": 18.71080139372822,
+ "grad_norm": 0.05446930602192879,
+ "learning_rate": 0.000432823382695327,
+ "loss": 2.1391234397888184,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72473867595819,
+ "grad_norm": 0.056854017078876495,
+ "learning_rate": 0.0004325835610623508,
+ "loss": 2.1358017921447754,
+ "step": 1348
+ },
+ {
+ "epoch": 18.738675958188153,
+ "grad_norm": 0.06729792058467865,
+ "learning_rate": 0.00043234363502623994,
+ "loss": 2.1330645084381104,
+ "step": 1349
+ },
+ {
+ "epoch": 18.752613240418118,
+ "grad_norm": 0.05778411030769348,
+ "learning_rate": 0.0004321036047802985,
+ "loss": 2.1277008056640625,
+ "step": 1350
+ },
+ {
+ "epoch": 18.766550522648085,
+ "grad_norm": 0.05493835732340813,
+ "learning_rate": 0.00043186347051791466,
+ "loss": 2.1218693256378174,
+ "step": 1351
+ },
+ {
+ "epoch": 18.78048780487805,
+ "grad_norm": 0.05961703136563301,
+ "learning_rate": 0.0004316232324325602,
+ "loss": 2.141153573989868,
+ "step": 1352
+ },
+ {
+ "epoch": 18.794425087108014,
+ "grad_norm": 0.057490140199661255,
+ "learning_rate": 0.0004313828907177906,
+ "loss": 2.1218957901000977,
+ "step": 1353
+ },
+ {
+ "epoch": 18.808362369337978,
+ "grad_norm": 0.05424332618713379,
+ "learning_rate": 0.0004311424455672448,
+ "loss": 2.1294074058532715,
+ "step": 1354
+ },
+ {
+ "epoch": 18.822299651567945,
+ "grad_norm": 0.05539792776107788,
+ "learning_rate": 0.0004309018971746451,
+ "loss": 2.1287131309509277,
+ "step": 1355
+ },
+ {
+ "epoch": 18.83623693379791,
+ "grad_norm": 0.056515417993068695,
+ "learning_rate": 0.000430661245733797,
+ "loss": 2.1303625106811523,
+ "step": 1356
+ },
+ {
+ "epoch": 18.850174216027874,
+ "grad_norm": 0.053070683032274246,
+ "learning_rate": 0.00043042049143858914,
+ "loss": 2.1501715183258057,
+ "step": 1357
+ },
+ {
+ "epoch": 18.86411149825784,
+ "grad_norm": 0.05422713980078697,
+ "learning_rate": 0.0004301796344829928,
+ "loss": 2.141580581665039,
+ "step": 1358
+ },
+ {
+ "epoch": 18.878048780487806,
+ "grad_norm": 0.053621236234903336,
+ "learning_rate": 0.00042993867506106205,
+ "loss": 2.1374034881591797,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89198606271777,
+ "grad_norm": 0.05488245189189911,
+ "learning_rate": 0.0004296976133669336,
+ "loss": 2.1387908458709717,
+ "step": 1360
+ },
+ {
+ "epoch": 18.905923344947734,
+ "grad_norm": 0.05566219612956047,
+ "learning_rate": 0.0004294564495948266,
+ "loss": 2.1420421600341797,
+ "step": 1361
+ },
+ {
+ "epoch": 18.9198606271777,
+ "grad_norm": 0.05297220125794411,
+ "learning_rate": 0.0004292151839390421,
+ "loss": 2.126768112182617,
+ "step": 1362
+ },
+ {
+ "epoch": 18.933797909407666,
+ "grad_norm": 0.056281380355358124,
+ "learning_rate": 0.0004289738165939636,
+ "loss": 2.114241361618042,
+ "step": 1363
+ },
+ {
+ "epoch": 18.94773519163763,
+ "grad_norm": 0.05625050142407417,
+ "learning_rate": 0.00042873234775405654,
+ "loss": 2.134300947189331,
+ "step": 1364
+ },
+ {
+ "epoch": 18.961672473867594,
+ "grad_norm": 0.05186711251735687,
+ "learning_rate": 0.00042849077761386784,
+ "loss": 2.1409969329833984,
+ "step": 1365
+ },
+ {
+ "epoch": 18.975609756097562,
+ "grad_norm": 0.057695358991622925,
+ "learning_rate": 0.0004282491063680263,
+ "loss": 2.1331894397735596,
+ "step": 1366
+ },
+ {
+ "epoch": 18.989547038327526,
+ "grad_norm": 0.055152107030153275,
+ "learning_rate": 0.00042800733421124207,
+ "loss": 2.147555112838745,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.04286205768585205,
+ "learning_rate": 0.00042776546133830646,
+ "loss": 1.5948516130447388,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 0.6249114871025085,
+ "eval_runtime": 36.6804,
+ "eval_samples_per_second": 66.575,
+ "eval_steps_per_second": 0.545,
+ "step": 1368
+ },
+ {
+ "epoch": 19.013937282229964,
+ "grad_norm": 0.05809386819601059,
+ "learning_rate": 0.00042752348794409227,
+ "loss": 2.0782227516174316,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027874564459932,
+ "grad_norm": 0.06399382650852203,
+ "learning_rate": 0.00042728141422355287,
+ "loss": 2.078792095184326,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041811846689896,
+ "grad_norm": 0.0564531646668911,
+ "learning_rate": 0.0004270392403717229,
+ "loss": 2.083125114440918,
+ "step": 1371
+ },
+ {
+ "epoch": 19.05574912891986,
+ "grad_norm": 0.057170569896698,
+ "learning_rate": 0.00042679696658371743,
+ "loss": 2.0679214000701904,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069686411149824,
+ "grad_norm": 0.05639920011162758,
+ "learning_rate": 0.00042655459305473195,
+ "loss": 2.072279930114746,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083623693379792,
+ "grad_norm": 0.05690578371286392,
+ "learning_rate": 0.0004263121199800425,
+ "loss": 2.0732839107513428,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097560975609756,
+ "grad_norm": 0.05914883315563202,
+ "learning_rate": 0.0004260695475550054,
+ "loss": 2.0810770988464355,
+ "step": 1375
+ },
+ {
+ "epoch": 19.11149825783972,
+ "grad_norm": 0.058082643896341324,
+ "learning_rate": 0.0004258268759750566,
+ "loss": 2.074130058288574,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125435540069688,
+ "grad_norm": 0.06016257032752037,
+ "learning_rate": 0.0004255841054357124,
+ "loss": 2.084043025970459,
+ "step": 1377
+ },
+ {
+ "epoch": 19.139372822299652,
+ "grad_norm": 0.060372497886419296,
+ "learning_rate": 0.0004253412361325686,
+ "loss": 2.0811657905578613,
+ "step": 1378
+ },
+ {
+ "epoch": 19.153310104529616,
+ "grad_norm": 0.0614042803645134,
+ "learning_rate": 0.0004250982682613006,
+ "loss": 2.070756435394287,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16724738675958,
+ "grad_norm": 0.06391493231058121,
+ "learning_rate": 0.00042485520201766315,
+ "loss": 2.067322015762329,
+ "step": 1380
+ },
+ {
+ "epoch": 19.181184668989548,
+ "grad_norm": 0.06465132534503937,
+ "learning_rate": 0.0004246120375974905,
+ "loss": 2.077214002609253,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195121951219512,
+ "grad_norm": 0.06490413844585419,
+ "learning_rate": 0.0004243687751966957,
+ "loss": 2.0735957622528076,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209059233449477,
+ "grad_norm": 0.06681123375892639,
+ "learning_rate": 0.0004241254150112708,
+ "loss": 2.092386484146118,
+ "step": 1383
+ },
+ {
+ "epoch": 19.222996515679444,
+ "grad_norm": 0.07135862857103348,
+ "learning_rate": 0.000423881957237287,
+ "loss": 2.0910637378692627,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23693379790941,
+ "grad_norm": 0.06640495359897614,
+ "learning_rate": 0.0004236384020708935,
+ "loss": 2.076943874359131,
+ "step": 1385
+ },
+ {
+ "epoch": 19.250871080139373,
+ "grad_norm": 0.06542305648326874,
+ "learning_rate": 0.0004233947497083185,
+ "loss": 2.08823299407959,
+ "step": 1386
+ },
+ {
+ "epoch": 19.264808362369337,
+ "grad_norm": 0.06014764681458473,
+ "learning_rate": 0.0004231510003458682,
+ "loss": 2.0875651836395264,
+ "step": 1387
+ },
+ {
+ "epoch": 19.278745644599304,
+ "grad_norm": 0.05776312202215195,
+ "learning_rate": 0.0004229071541799272,
+ "loss": 2.097287654876709,
+ "step": 1388
+ },
+ {
+ "epoch": 19.29268292682927,
+ "grad_norm": 0.058570489287376404,
+ "learning_rate": 0.0004226632114069578,
+ "loss": 2.099949359893799,
+ "step": 1389
+ },
+ {
+ "epoch": 19.306620209059233,
+ "grad_norm": 0.059035737067461014,
+ "learning_rate": 0.0004224191722235004,
+ "loss": 2.0985028743743896,
+ "step": 1390
+ },
+ {
+ "epoch": 19.320557491289197,
+ "grad_norm": 0.05857931450009346,
+ "learning_rate": 0.00042217503682617286,
+ "loss": 2.0884578227996826,
+ "step": 1391
+ },
+ {
+ "epoch": 19.334494773519165,
+ "grad_norm": 0.057818394154310226,
+ "learning_rate": 0.0004219308054116706,
+ "loss": 2.0950827598571777,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34843205574913,
+ "grad_norm": 0.05500008538365364,
+ "learning_rate": 0.0004216864781767667,
+ "loss": 2.0837326049804688,
+ "step": 1393
+ },
+ {
+ "epoch": 19.362369337979093,
+ "grad_norm": 0.05635271221399307,
+ "learning_rate": 0.00042144205531831103,
+ "loss": 2.1017332077026367,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37630662020906,
+ "grad_norm": 0.0582125261425972,
+ "learning_rate": 0.0004211975370332308,
+ "loss": 2.0762600898742676,
+ "step": 1395
+ },
+ {
+ "epoch": 19.390243902439025,
+ "grad_norm": 0.0587347187101841,
+ "learning_rate": 0.00042095292351852976,
+ "loss": 2.0604896545410156,
+ "step": 1396
+ },
+ {
+ "epoch": 19.40418118466899,
+ "grad_norm": 0.058021727949380875,
+ "learning_rate": 0.0004207082149712888,
+ "loss": 2.0906972885131836,
+ "step": 1397
+ },
+ {
+ "epoch": 19.418118466898953,
+ "grad_norm": 0.05805983021855354,
+ "learning_rate": 0.0004204634115886651,
+ "loss": 2.0873594284057617,
+ "step": 1398
+ },
+ {
+ "epoch": 19.43205574912892,
+ "grad_norm": 0.05964788421988487,
+ "learning_rate": 0.0004202185135678924,
+ "loss": 2.1012473106384277,
+ "step": 1399
+ },
+ {
+ "epoch": 19.445993031358885,
+ "grad_norm": 0.058361511677503586,
+ "learning_rate": 0.00041997352110628033,
+ "loss": 2.09468936920166,
+ "step": 1400
+ },
+ {
+ "epoch": 19.45993031358885,
+ "grad_norm": 0.05840443819761276,
+ "learning_rate": 0.00041972843440121527,
+ "loss": 2.105898857116699,
+ "step": 1401
+ },
+ {
+ "epoch": 19.473867595818817,
+ "grad_norm": 0.06023252755403519,
+ "learning_rate": 0.00041948325365015894,
+ "loss": 2.103001594543457,
+ "step": 1402
+ },
+ {
+ "epoch": 19.48780487804878,
+ "grad_norm": 0.057779282331466675,
+ "learning_rate": 0.0004192379790506491,
+ "loss": 2.0969185829162598,
+ "step": 1403
+ },
+ {
+ "epoch": 19.501742160278745,
+ "grad_norm": 0.0592162050306797,
+ "learning_rate": 0.00041899261080029904,
+ "loss": 2.1101880073547363,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51567944250871,
+ "grad_norm": 0.06333442032337189,
+ "learning_rate": 0.00041874714909679754,
+ "loss": 2.1037089824676514,
+ "step": 1405
+ },
+ {
+ "epoch": 19.529616724738677,
+ "grad_norm": 0.06202675402164459,
+ "learning_rate": 0.00041850159413790863,
+ "loss": 2.1154634952545166,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54355400696864,
+ "grad_norm": 0.055281441658735275,
+ "learning_rate": 0.0004182559461214715,
+ "loss": 2.1098036766052246,
+ "step": 1407
+ },
+ {
+ "epoch": 19.557491289198605,
+ "grad_norm": 0.06085072085261345,
+ "learning_rate": 0.0004180102052454004,
+ "loss": 2.0985965728759766,
+ "step": 1408
+ },
+ {
+ "epoch": 19.571428571428573,
+ "grad_norm": 0.059430696070194244,
+ "learning_rate": 0.00041776437170768427,
+ "loss": 2.1063296794891357,
+ "step": 1409
+ },
+ {
+ "epoch": 19.585365853658537,
+ "grad_norm": 0.05628339946269989,
+ "learning_rate": 0.0004175184457063868,
+ "loss": 2.096975326538086,
+ "step": 1410
+ },
+ {
+ "epoch": 19.5993031358885,
+ "grad_norm": 0.056543346494436264,
+ "learning_rate": 0.000417272427439646,
+ "loss": 2.1110968589782715,
+ "step": 1411
+ },
+ {
+ "epoch": 19.613240418118465,
+ "grad_norm": 0.05971049889922142,
+ "learning_rate": 0.00041702631710567443,
+ "loss": 2.1136279106140137,
+ "step": 1412
+ },
+ {
+ "epoch": 19.627177700348433,
+ "grad_norm": 0.056699734181165695,
+ "learning_rate": 0.00041678011490275875,
+ "loss": 2.113466501235962,
+ "step": 1413
+ },
+ {
+ "epoch": 19.641114982578397,
+ "grad_norm": 0.05671929940581322,
+ "learning_rate": 0.00041653382102925957,
+ "loss": 2.1061220169067383,
+ "step": 1414
+ },
+ {
+ "epoch": 19.65505226480836,
+ "grad_norm": 0.05770038440823555,
+ "learning_rate": 0.00041628743568361147,
+ "loss": 2.1156320571899414,
+ "step": 1415
+ },
+ {
+ "epoch": 19.66898954703833,
+ "grad_norm": 0.06175893545150757,
+ "learning_rate": 0.00041604095906432265,
+ "loss": 2.112288475036621,
+ "step": 1416
+ },
+ {
+ "epoch": 19.682926829268293,
+ "grad_norm": 0.06383928656578064,
+ "learning_rate": 0.00041579439136997493,
+ "loss": 2.1029422283172607,
+ "step": 1417
+ },
+ {
+ "epoch": 19.696864111498257,
+ "grad_norm": 0.06042713671922684,
+ "learning_rate": 0.00041554773279922337,
+ "loss": 2.1106066703796387,
+ "step": 1418
+ },
+ {
+ "epoch": 19.71080139372822,
+ "grad_norm": 0.057180315256118774,
+ "learning_rate": 0.0004153009835507963,
+ "loss": 2.1148805618286133,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72473867595819,
+ "grad_norm": 0.061083171516656876,
+ "learning_rate": 0.0004150541438234952,
+ "loss": 2.0946850776672363,
+ "step": 1420
+ },
+ {
+ "epoch": 19.738675958188153,
+ "grad_norm": 0.0596432127058506,
+ "learning_rate": 0.00041480721381619435,
+ "loss": 2.1208066940307617,
+ "step": 1421
+ },
+ {
+ "epoch": 19.752613240418118,
+ "grad_norm": 0.05496669560670853,
+ "learning_rate": 0.00041456019372784086,
+ "loss": 2.1088931560516357,
+ "step": 1422
+ },
+ {
+ "epoch": 19.766550522648085,
+ "grad_norm": 0.05810244753956795,
+ "learning_rate": 0.0004143130837574543,
+ "loss": 2.1019372940063477,
+ "step": 1423
+ },
+ {
+ "epoch": 19.78048780487805,
+ "grad_norm": 0.05894653871655464,
+ "learning_rate": 0.0004140658841041267,
+ "loss": 2.1125125885009766,
+ "step": 1424
+ },
+ {
+ "epoch": 19.794425087108014,
+ "grad_norm": 0.05772726237773895,
+ "learning_rate": 0.0004138185949670224,
+ "loss": 2.126194477081299,
+ "step": 1425
+ },
+ {
+ "epoch": 19.808362369337978,
+ "grad_norm": 0.058502763509750366,
+ "learning_rate": 0.00041357121654537766,
+ "loss": 2.110621452331543,
+ "step": 1426
+ },
+ {
+ "epoch": 19.822299651567945,
+ "grad_norm": 0.058296941220760345,
+ "learning_rate": 0.00041332374903850104,
+ "loss": 2.1034765243530273,
+ "step": 1427
+ },
+ {
+ "epoch": 19.83623693379791,
+ "grad_norm": 0.05595606938004494,
+ "learning_rate": 0.00041307619264577234,
+ "loss": 2.118297815322876,
+ "step": 1428
+ },
+ {
+ "epoch": 19.850174216027874,
+ "grad_norm": 0.0563458688557148,
+ "learning_rate": 0.0004128285475666436,
+ "loss": 2.1122255325317383,
+ "step": 1429
+ },
+ {
+ "epoch": 19.86411149825784,
+ "grad_norm": 0.05421055108308792,
+ "learning_rate": 0.0004125808140006378,
+ "loss": 2.103970527648926,
+ "step": 1430
+ },
+ {
+ "epoch": 19.878048780487806,
+ "grad_norm": 0.05633455142378807,
+ "learning_rate": 0.0004123329921473494,
+ "loss": 2.11661434173584,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89198606271777,
+ "grad_norm": 0.05797342583537102,
+ "learning_rate": 0.0004120850822064439,
+ "loss": 2.1021676063537598,
+ "step": 1432
+ },
+ {
+ "epoch": 19.905923344947734,
+ "grad_norm": 0.056061360985040665,
+ "learning_rate": 0.00041183708437765815,
+ "loss": 2.123298406600952,
+ "step": 1433
+ },
+ {
+ "epoch": 19.9198606271777,
+ "grad_norm": 0.05381599813699722,
+ "learning_rate": 0.00041158899886079925,
+ "loss": 2.120389938354492,
+ "step": 1434
+ },
+ {
+ "epoch": 19.933797909407666,
+ "grad_norm": 0.05545654520392418,
+ "learning_rate": 0.00041134082585574534,
+ "loss": 2.1180779933929443,
+ "step": 1435
+ },
+ {
+ "epoch": 19.94773519163763,
+ "grad_norm": 0.056983016431331635,
+ "learning_rate": 0.00041109256556244497,
+ "loss": 2.118905544281006,
+ "step": 1436
+ },
+ {
+ "epoch": 19.961672473867594,
+ "grad_norm": 0.0575285367667675,
+ "learning_rate": 0.00041084421818091685,
+ "loss": 2.1049699783325195,
+ "step": 1437
+ },
+ {
+ "epoch": 19.975609756097562,
+ "grad_norm": 0.057964932173490524,
+ "learning_rate": 0.0004105957839112501,
+ "loss": 2.1140224933624268,
+ "step": 1438
+ },
+ {
+ "epoch": 19.989547038327526,
+ "grad_norm": 0.05869961529970169,
+ "learning_rate": 0.0004103472629536036,
+ "loss": 2.1089744567871094,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.04450551047921181,
+ "learning_rate": 0.0004100986555082063,
+ "loss": 1.579450249671936,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 0.6265780925750732,
+ "eval_runtime": 34.9259,
+ "eval_samples_per_second": 69.92,
+ "eval_steps_per_second": 0.573,
+ "step": 1440
+ },
+ {
+ "epoch": 20.013937282229964,
+ "grad_norm": 0.05954804643988609,
+ "learning_rate": 0.0004098499617753567,
+ "loss": 2.062889575958252,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027874564459932,
+ "grad_norm": 0.07035746425390244,
+ "learning_rate": 0.00040960118195542273,
+ "loss": 2.0443758964538574,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041811846689896,
+ "grad_norm": 0.0653388574719429,
+ "learning_rate": 0.00040935231624884204,
+ "loss": 2.0611963272094727,
+ "step": 1443
+ },
+ {
+ "epoch": 20.05574912891986,
+ "grad_norm": 0.06305127590894699,
+ "learning_rate": 0.0004091033648561211,
+ "loss": 2.0648036003112793,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069686411149824,
+ "grad_norm": 0.05987029895186424,
+ "learning_rate": 0.00040885432797783543,
+ "loss": 2.059682607650757,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083623693379792,
+ "grad_norm": 0.06469618529081345,
+ "learning_rate": 0.0004086052058146297,
+ "loss": 2.0656521320343018,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097560975609756,
+ "grad_norm": 0.05834262818098068,
+ "learning_rate": 0.00040835599856721725,
+ "loss": 2.0583415031433105,
+ "step": 1447
+ },
+ {
+ "epoch": 20.11149825783972,
+ "grad_norm": 0.06026774272322655,
+ "learning_rate": 0.00040810670643637954,
+ "loss": 2.0644960403442383,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125435540069688,
+ "grad_norm": 0.06032145023345947,
+ "learning_rate": 0.000407857329622967,
+ "loss": 2.050269842147827,
+ "step": 1449
+ },
+ {
+ "epoch": 20.139372822299652,
+ "grad_norm": 0.05611831694841385,
+ "learning_rate": 0.00040760786832789786,
+ "loss": 2.0559628009796143,
+ "step": 1450
+ },
+ {
+ "epoch": 20.153310104529616,
+ "grad_norm": 0.06046713516116142,
+ "learning_rate": 0.0004073583227521588,
+ "loss": 2.06439471244812,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16724738675958,
+ "grad_norm": 0.06147446483373642,
+ "learning_rate": 0.0004071086930968039,
+ "loss": 2.0606837272644043,
+ "step": 1452
+ },
+ {
+ "epoch": 20.181184668989548,
+ "grad_norm": 0.05967561900615692,
+ "learning_rate": 0.00040685897956295545,
+ "loss": 2.0494980812072754,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195121951219512,
+ "grad_norm": 0.05903508514165878,
+ "learning_rate": 0.0004066091823518031,
+ "loss": 2.059744358062744,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209059233449477,
+ "grad_norm": 0.060008060187101364,
+ "learning_rate": 0.00040635930166460385,
+ "loss": 2.0736231803894043,
+ "step": 1455
+ },
+ {
+ "epoch": 20.222996515679444,
+ "grad_norm": 0.057375747710466385,
+ "learning_rate": 0.00040610933770268226,
+ "loss": 2.062077045440674,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23693379790941,
+ "grad_norm": 0.05929991975426674,
+ "learning_rate": 0.00040585929066742964,
+ "loss": 2.059680938720703,
+ "step": 1457
+ },
+ {
+ "epoch": 20.250871080139373,
+ "grad_norm": 0.06615032255649567,
+ "learning_rate": 0.00040560916076030435,
+ "loss": 2.080033302307129,
+ "step": 1458
+ },
+ {
+ "epoch": 20.264808362369337,
+ "grad_norm": 0.06465113162994385,
+ "learning_rate": 0.00040535894818283154,
+ "loss": 2.0724852085113525,
+ "step": 1459
+ },
+ {
+ "epoch": 20.278745644599304,
+ "grad_norm": 0.0641520619392395,
+ "learning_rate": 0.0004051086531366031,
+ "loss": 2.0535552501678467,
+ "step": 1460
+ },
+ {
+ "epoch": 20.29268292682927,
+ "grad_norm": 0.060508403927087784,
+ "learning_rate": 0.000404858275823277,
+ "loss": 2.0627613067626953,
+ "step": 1461
+ },
+ {
+ "epoch": 20.306620209059233,
+ "grad_norm": 0.06028459966182709,
+ "learning_rate": 0.000404607816444578,
+ "loss": 2.062082290649414,
+ "step": 1462
+ },
+ {
+ "epoch": 20.320557491289197,
+ "grad_norm": 0.06797714531421661,
+ "learning_rate": 0.00040435727520229644,
+ "loss": 2.068223476409912,
+ "step": 1463
+ },
+ {
+ "epoch": 20.334494773519165,
+ "grad_norm": 0.07491812855005264,
+ "learning_rate": 0.0004041066522982891,
+ "loss": 2.0639474391937256,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34843205574913,
+ "grad_norm": 0.06413327902555466,
+ "learning_rate": 0.000403855947934478,
+ "loss": 2.0727763175964355,
+ "step": 1465
+ },
+ {
+ "epoch": 20.362369337979093,
+ "grad_norm": 0.05947510898113251,
+ "learning_rate": 0.00040360516231285155,
+ "loss": 2.0872607231140137,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37630662020906,
+ "grad_norm": 0.0680336281657219,
+ "learning_rate": 0.00040335429563546286,
+ "loss": 2.07262921333313,
+ "step": 1467
+ },
+ {
+ "epoch": 20.390243902439025,
+ "grad_norm": 0.06363389641046524,
+ "learning_rate": 0.0004031033481044308,
+ "loss": 2.071188449859619,
+ "step": 1468
+ },
+ {
+ "epoch": 20.40418118466899,
+ "grad_norm": 0.057794757187366486,
+ "learning_rate": 0.00040285231992193924,
+ "loss": 2.0776638984680176,
+ "step": 1469
+ },
+ {
+ "epoch": 20.418118466898953,
+ "grad_norm": 0.06159241497516632,
+ "learning_rate": 0.0004026012112902372,
+ "loss": 2.076610565185547,
+ "step": 1470
+ },
+ {
+ "epoch": 20.43205574912892,
+ "grad_norm": 0.05898696929216385,
+ "learning_rate": 0.0004023500224116381,
+ "loss": 2.0713918209075928,
+ "step": 1471
+ },
+ {
+ "epoch": 20.445993031358885,
+ "grad_norm": 0.059070803225040436,
+ "learning_rate": 0.00040209875348852037,
+ "loss": 2.073078155517578,
+ "step": 1472
+ },
+ {
+ "epoch": 20.45993031358885,
+ "grad_norm": 0.06064842641353607,
+ "learning_rate": 0.00040184740472332705,
+ "loss": 2.070858955383301,
+ "step": 1473
+ },
+ {
+ "epoch": 20.473867595818817,
+ "grad_norm": 0.060642652213573456,
+ "learning_rate": 0.000401595976318565,
+ "loss": 2.0703179836273193,
+ "step": 1474
+ },
+ {
+ "epoch": 20.48780487804878,
+ "grad_norm": 0.06281708180904388,
+ "learning_rate": 0.00040134446847680584,
+ "loss": 2.0891528129577637,
+ "step": 1475
+ },
+ {
+ "epoch": 20.501742160278745,
+ "grad_norm": 0.06964185833930969,
+ "learning_rate": 0.0004010928814006846,
+ "loss": 2.0769782066345215,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51567944250871,
+ "grad_norm": 0.0709647610783577,
+ "learning_rate": 0.0004008412152929007,
+ "loss": 2.087449550628662,
+ "step": 1477
+ },
+ {
+ "epoch": 20.529616724738677,
+ "grad_norm": 0.0604700967669487,
+ "learning_rate": 0.0004005894703562168,
+ "loss": 2.0697526931762695,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54355400696864,
+ "grad_norm": 0.066826231777668,
+ "learning_rate": 0.0004003376467934593,
+ "loss": 2.0674479007720947,
+ "step": 1479
+ },
+ {
+ "epoch": 20.557491289198605,
+ "grad_norm": 0.06124534085392952,
+ "learning_rate": 0.0004000857448075178,
+ "loss": 2.084949016571045,
+ "step": 1480
+ },
+ {
+ "epoch": 20.571428571428573,
+ "grad_norm": 0.0605972483754158,
+ "learning_rate": 0.0003998337646013455,
+ "loss": 2.0836410522460938,
+ "step": 1481
+ },
+ {
+ "epoch": 20.585365853658537,
+ "grad_norm": 0.05937602370977402,
+ "learning_rate": 0.00039958170637795806,
+ "loss": 2.085038185119629,
+ "step": 1482
+ },
+ {
+ "epoch": 20.5993031358885,
+ "grad_norm": 0.06045088917016983,
+ "learning_rate": 0.0003993295703404341,
+ "loss": 2.0811872482299805,
+ "step": 1483
+ },
+ {
+ "epoch": 20.613240418118465,
+ "grad_norm": 0.06080574169754982,
+ "learning_rate": 0.00039907735669191544,
+ "loss": 2.072998523712158,
+ "step": 1484
+ },
+ {
+ "epoch": 20.627177700348433,
+ "grad_norm": 0.06071743369102478,
+ "learning_rate": 0.00039882506563560573,
+ "loss": 2.092665672302246,
+ "step": 1485
+ },
+ {
+ "epoch": 20.641114982578397,
+ "grad_norm": 0.060432225465774536,
+ "learning_rate": 0.0003985726973747715,
+ "loss": 2.080765962600708,
+ "step": 1486
+ },
+ {
+ "epoch": 20.65505226480836,
+ "grad_norm": 0.05753706395626068,
+ "learning_rate": 0.00039832025211274113,
+ "loss": 2.0854883193969727,
+ "step": 1487
+ },
+ {
+ "epoch": 20.66898954703833,
+ "grad_norm": 0.05913816764950752,
+ "learning_rate": 0.00039806773005290544,
+ "loss": 2.0852391719818115,
+ "step": 1488
+ },
+ {
+ "epoch": 20.682926829268293,
+ "grad_norm": 0.057243719696998596,
+ "learning_rate": 0.0003978151313987168,
+ "loss": 2.069157600402832,
+ "step": 1489
+ },
+ {
+ "epoch": 20.696864111498257,
+ "grad_norm": 0.058420926332473755,
+ "learning_rate": 0.00039756245635368933,
+ "loss": 2.084345579147339,
+ "step": 1490
+ },
+ {
+ "epoch": 20.71080139372822,
+ "grad_norm": 0.057442132383584976,
+ "learning_rate": 0.00039730970512139876,
+ "loss": 2.091980218887329,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72473867595819,
+ "grad_norm": 0.05517714098095894,
+ "learning_rate": 0.0003970568779054822,
+ "loss": 2.078554153442383,
+ "step": 1492
+ },
+ {
+ "epoch": 20.738675958188153,
+ "grad_norm": 0.055716823786497116,
+ "learning_rate": 0.000396803974909638,
+ "loss": 2.094151735305786,
+ "step": 1493
+ },
+ {
+ "epoch": 20.752613240418118,
+ "grad_norm": 0.056730274111032486,
+ "learning_rate": 0.0003965509963376255,
+ "loss": 2.068563461303711,
+ "step": 1494
+ },
+ {
+ "epoch": 20.766550522648085,
+ "grad_norm": 0.05755753442645073,
+ "learning_rate": 0.000396297942393265,
+ "loss": 2.088921070098877,
+ "step": 1495
+ },
+ {
+ "epoch": 20.78048780487805,
+ "grad_norm": 0.05533437803387642,
+ "learning_rate": 0.0003960448132804375,
+ "loss": 2.0941689014434814,
+ "step": 1496
+ },
+ {
+ "epoch": 20.794425087108014,
+ "grad_norm": 0.06088414788246155,
+ "learning_rate": 0.0003957916092030845,
+ "loss": 2.0830764770507812,
+ "step": 1497
+ },
+ {
+ "epoch": 20.808362369337978,
+ "grad_norm": 0.05863271281123161,
+ "learning_rate": 0.00039553833036520803,
+ "loss": 2.090672016143799,
+ "step": 1498
+ },
+ {
+ "epoch": 20.822299651567945,
+ "grad_norm": 0.05960002914071083,
+ "learning_rate": 0.0003952849769708702,
+ "loss": 2.0864553451538086,
+ "step": 1499
+ },
+ {
+ "epoch": 20.83623693379791,
+ "grad_norm": 0.05506768077611923,
+ "learning_rate": 0.0003950315492241932,
+ "loss": 2.094161033630371,
+ "step": 1500
+ },
+ {
+ "epoch": 20.850174216027874,
+ "grad_norm": 0.05862478166818619,
+ "learning_rate": 0.0003947780473293593,
+ "loss": 2.115245819091797,
+ "step": 1501
+ },
+ {
+ "epoch": 20.86411149825784,
+ "grad_norm": 0.05872654542326927,
+ "learning_rate": 0.00039452447149061054,
+ "loss": 2.0812911987304688,
+ "step": 1502
+ },
+ {
+ "epoch": 20.878048780487806,
+ "grad_norm": 0.05998777225613594,
+ "learning_rate": 0.0003942708219122481,
+ "loss": 2.095242977142334,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89198606271777,
+ "grad_norm": 0.056095417588949203,
+ "learning_rate": 0.000394017098798633,
+ "loss": 2.092863082885742,
+ "step": 1504
+ },
+ {
+ "epoch": 20.905923344947734,
+ "grad_norm": 0.05556971952319145,
+ "learning_rate": 0.0003937633023541854,
+ "loss": 2.097186803817749,
+ "step": 1505
+ },
+ {
+ "epoch": 20.9198606271777,
+ "grad_norm": 0.055835824459791183,
+ "learning_rate": 0.0003935094327833845,
+ "loss": 2.074395179748535,
+ "step": 1506
+ },
+ {
+ "epoch": 20.933797909407666,
+ "grad_norm": 0.05587809532880783,
+ "learning_rate": 0.0003932554902907683,
+ "loss": 2.079871416091919,
+ "step": 1507
+ },
+ {
+ "epoch": 20.94773519163763,
+ "grad_norm": 0.05581265687942505,
+ "learning_rate": 0.0003930014750809338,
+ "loss": 2.097808837890625,
+ "step": 1508
+ },
+ {
+ "epoch": 20.961672473867594,
+ "grad_norm": 0.056034673005342484,
+ "learning_rate": 0.0003927473873585365,
+ "loss": 2.1134562492370605,
+ "step": 1509
+ },
+ {
+ "epoch": 20.975609756097562,
+ "grad_norm": 0.05605486407876015,
+ "learning_rate": 0.0003924932273282903,
+ "loss": 2.085361957550049,
+ "step": 1510
+ },
+ {
+ "epoch": 20.989547038327526,
+ "grad_norm": 0.056133050471544266,
+ "learning_rate": 0.00039223899519496723,
+ "loss": 2.0866618156433105,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.045700959861278534,
+ "learning_rate": 0.00039198469116339757,
+ "loss": 1.5582417249679565,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 0.6279418468475342,
+ "eval_runtime": 36.1632,
+ "eval_samples_per_second": 67.527,
+ "eval_steps_per_second": 0.553,
+ "step": 1512
+ },
+ {
+ "epoch": 21.013937282229964,
+ "grad_norm": 0.05471052974462509,
+ "learning_rate": 0.0003917303154384694,
+ "loss": 2.033940315246582,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027874564459932,
+ "grad_norm": 0.06705708801746368,
+ "learning_rate": 0.00039147586822512885,
+ "loss": 2.0360937118530273,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041811846689896,
+ "grad_norm": 0.06307924538850784,
+ "learning_rate": 0.0003912213497283793,
+ "loss": 2.0500328540802,
+ "step": 1515
+ },
+ {
+ "epoch": 21.05574912891986,
+ "grad_norm": 0.06228886917233467,
+ "learning_rate": 0.0003909667601532819,
+ "loss": 2.0308260917663574,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069686411149824,
+ "grad_norm": 0.0606699101626873,
+ "learning_rate": 0.00039071209970495445,
+ "loss": 2.0328145027160645,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083623693379792,
+ "grad_norm": 0.060405075550079346,
+ "learning_rate": 0.00039045736858857273,
+ "loss": 2.0279717445373535,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097560975609756,
+ "grad_norm": 0.0611112080514431,
+ "learning_rate": 0.0003902025670093687,
+ "loss": 2.0422918796539307,
+ "step": 1519
+ },
+ {
+ "epoch": 21.11149825783972,
+ "grad_norm": 0.05837974697351456,
+ "learning_rate": 0.00038994769517263156,
+ "loss": 2.048844337463379,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125435540069688,
+ "grad_norm": 0.06053513288497925,
+ "learning_rate": 0.0003896927532837069,
+ "loss": 2.0358529090881348,
+ "step": 1521
+ },
+ {
+ "epoch": 21.139372822299652,
+ "grad_norm": 0.06003211438655853,
+ "learning_rate": 0.0003894377415479967,
+ "loss": 2.042120933532715,
+ "step": 1522
+ },
+ {
+ "epoch": 21.153310104529616,
+ "grad_norm": 0.060802191495895386,
+ "learning_rate": 0.00038918266017095936,
+ "loss": 2.046935558319092,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16724738675958,
+ "grad_norm": 0.06367085129022598,
+ "learning_rate": 0.0003889275093581096,
+ "loss": 2.049290180206299,
+ "step": 1524
+ },
+ {
+ "epoch": 21.181184668989548,
+ "grad_norm": 0.05851449444890022,
+ "learning_rate": 0.00038867228931501737,
+ "loss": 2.052337169647217,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195121951219512,
+ "grad_norm": 0.05873304605484009,
+ "learning_rate": 0.0003884170002473091,
+ "loss": 2.0443310737609863,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209059233449477,
+ "grad_norm": 0.062345489859580994,
+ "learning_rate": 0.0003881616423606666,
+ "loss": 2.0309629440307617,
+ "step": 1527
+ },
+ {
+ "epoch": 21.222996515679444,
+ "grad_norm": 0.06157859042286873,
+ "learning_rate": 0.00038790621586082697,
+ "loss": 2.040987491607666,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23693379790941,
+ "grad_norm": 0.06326454132795334,
+ "learning_rate": 0.0003876507209535829,
+ "loss": 2.0339348316192627,
+ "step": 1529
+ },
+ {
+ "epoch": 21.250871080139373,
+ "grad_norm": 0.05967864394187927,
+ "learning_rate": 0.00038739515784478186,
+ "loss": 2.0340347290039062,
+ "step": 1530
+ },
+ {
+ "epoch": 21.264808362369337,
+ "grad_norm": 0.06237480416893959,
+ "learning_rate": 0.00038713952674032654,
+ "loss": 2.0541834831237793,
+ "step": 1531
+ },
+ {
+ "epoch": 21.278745644599304,
+ "grad_norm": 0.06269778311252594,
+ "learning_rate": 0.0003868838278461743,
+ "loss": 2.0332889556884766,
+ "step": 1532
+ },
+ {
+ "epoch": 21.29268292682927,
+ "grad_norm": 0.058931149542331696,
+ "learning_rate": 0.0003866280613683371,
+ "loss": 2.046989917755127,
+ "step": 1533
+ },
+ {
+ "epoch": 21.306620209059233,
+ "grad_norm": 0.05884654074907303,
+ "learning_rate": 0.00038637222751288126,
+ "loss": 2.0413711071014404,
+ "step": 1534
+ },
+ {
+ "epoch": 21.320557491289197,
+ "grad_norm": 0.06431130319833755,
+ "learning_rate": 0.0003861163264859277,
+ "loss": 2.043229103088379,
+ "step": 1535
+ },
+ {
+ "epoch": 21.334494773519165,
+ "grad_norm": 0.061834171414375305,
+ "learning_rate": 0.0003858603584936511,
+ "loss": 2.0472874641418457,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34843205574913,
+ "grad_norm": 0.058680370450019836,
+ "learning_rate": 0.0003856043237422803,
+ "loss": 2.058084487915039,
+ "step": 1537
+ },
+ {
+ "epoch": 21.362369337979093,
+ "grad_norm": 0.0592305064201355,
+ "learning_rate": 0.0003853482224380978,
+ "loss": 2.0515503883361816,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37630662020906,
+ "grad_norm": 0.05994146317243576,
+ "learning_rate": 0.00038509205478744,
+ "loss": 2.0377187728881836,
+ "step": 1539
+ },
+ {
+ "epoch": 21.390243902439025,
+ "grad_norm": 0.06389214843511581,
+ "learning_rate": 0.0003848358209966963,
+ "loss": 2.0533361434936523,
+ "step": 1540
+ },
+ {
+ "epoch": 21.40418118466899,
+ "grad_norm": 0.06090407446026802,
+ "learning_rate": 0.0003845795212723099,
+ "loss": 2.0553441047668457,
+ "step": 1541
+ },
+ {
+ "epoch": 21.418118466898953,
+ "grad_norm": 0.06273195147514343,
+ "learning_rate": 0.00038432315582077664,
+ "loss": 2.0590620040893555,
+ "step": 1542
+ },
+ {
+ "epoch": 21.43205574912892,
+ "grad_norm": 0.06525216996669769,
+ "learning_rate": 0.0003840667248486456,
+ "loss": 2.0517024993896484,
+ "step": 1543
+ },
+ {
+ "epoch": 21.445993031358885,
+ "grad_norm": 0.06123936176300049,
+ "learning_rate": 0.0003838102285625186,
+ "loss": 2.054276943206787,
+ "step": 1544
+ },
+ {
+ "epoch": 21.45993031358885,
+ "grad_norm": 0.06384961307048798,
+ "learning_rate": 0.00038355366716905006,
+ "loss": 2.058122396469116,
+ "step": 1545
+ },
+ {
+ "epoch": 21.473867595818817,
+ "grad_norm": 0.06391091644763947,
+ "learning_rate": 0.0003832970408749467,
+ "loss": 2.061744213104248,
+ "step": 1546
+ },
+ {
+ "epoch": 21.48780487804878,
+ "grad_norm": 0.06393741071224213,
+ "learning_rate": 0.00038304034988696816,
+ "loss": 2.0698375701904297,
+ "step": 1547
+ },
+ {
+ "epoch": 21.501742160278745,
+ "grad_norm": 0.06098850816488266,
+ "learning_rate": 0.00038278359441192516,
+ "loss": 2.0527985095977783,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51567944250871,
+ "grad_norm": 0.059852417558431625,
+ "learning_rate": 0.00038252677465668136,
+ "loss": 2.0557432174682617,
+ "step": 1549
+ },
+ {
+ "epoch": 21.529616724738677,
+ "grad_norm": 0.063257597386837,
+ "learning_rate": 0.00038226989082815156,
+ "loss": 2.0541868209838867,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54355400696864,
+ "grad_norm": 0.06203039735555649,
+ "learning_rate": 0.00038201294313330245,
+ "loss": 2.0554230213165283,
+ "step": 1551
+ },
+ {
+ "epoch": 21.557491289198605,
+ "grad_norm": 0.06832246482372284,
+ "learning_rate": 0.00038175593177915227,
+ "loss": 2.0623044967651367,
+ "step": 1552
+ },
+ {
+ "epoch": 21.571428571428573,
+ "grad_norm": 0.0681714415550232,
+ "learning_rate": 0.0003814988569727704,
+ "loss": 2.0611777305603027,
+ "step": 1553
+ },
+ {
+ "epoch": 21.585365853658537,
+ "grad_norm": 0.06245206668972969,
+ "learning_rate": 0.0003812417189212773,
+ "loss": 2.0653200149536133,
+ "step": 1554
+ },
+ {
+ "epoch": 21.5993031358885,
+ "grad_norm": 0.06456883996725082,
+ "learning_rate": 0.00038098451783184447,
+ "loss": 2.0564777851104736,
+ "step": 1555
+ },
+ {
+ "epoch": 21.613240418118465,
+ "grad_norm": 0.06580620259046555,
+ "learning_rate": 0.00038072725391169416,
+ "loss": 2.0669004917144775,
+ "step": 1556
+ },
+ {
+ "epoch": 21.627177700348433,
+ "grad_norm": 0.0615418441593647,
+ "learning_rate": 0.0003804699273680994,
+ "loss": 2.062901258468628,
+ "step": 1557
+ },
+ {
+ "epoch": 21.641114982578397,
+ "grad_norm": 0.0597493015229702,
+ "learning_rate": 0.0003802125384083834,
+ "loss": 2.051572799682617,
+ "step": 1558
+ },
+ {
+ "epoch": 21.65505226480836,
+ "grad_norm": 0.05919422581791878,
+ "learning_rate": 0.0003799550872399197,
+ "loss": 2.0755348205566406,
+ "step": 1559
+ },
+ {
+ "epoch": 21.66898954703833,
+ "grad_norm": 0.0618102103471756,
+ "learning_rate": 0.0003796975740701323,
+ "loss": 2.0373353958129883,
+ "step": 1560
+ },
+ {
+ "epoch": 21.682926829268293,
+ "grad_norm": 0.060938529670238495,
+ "learning_rate": 0.0003794399991064948,
+ "loss": 2.046900749206543,
+ "step": 1561
+ },
+ {
+ "epoch": 21.696864111498257,
+ "grad_norm": 0.059858448803424835,
+ "learning_rate": 0.00037918236255653074,
+ "loss": 2.0637502670288086,
+ "step": 1562
+ },
+ {
+ "epoch": 21.71080139372822,
+ "grad_norm": 0.061770256608724594,
+ "learning_rate": 0.00037892466462781306,
+ "loss": 2.0593981742858887,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72473867595819,
+ "grad_norm": 0.06062103807926178,
+ "learning_rate": 0.00037866690552796446,
+ "loss": 2.0643060207366943,
+ "step": 1564
+ },
+ {
+ "epoch": 21.738675958188153,
+ "grad_norm": 0.05910053849220276,
+ "learning_rate": 0.00037840908546465696,
+ "loss": 2.06599497795105,
+ "step": 1565
+ },
+ {
+ "epoch": 21.752613240418118,
+ "grad_norm": 0.057800937443971634,
+ "learning_rate": 0.0003781512046456111,
+ "loss": 2.057941198348999,
+ "step": 1566
+ },
+ {
+ "epoch": 21.766550522648085,
+ "grad_norm": 0.05939284712076187,
+ "learning_rate": 0.0003778932632785972,
+ "loss": 2.057325601577759,
+ "step": 1567
+ },
+ {
+ "epoch": 21.78048780487805,
+ "grad_norm": 0.06094905734062195,
+ "learning_rate": 0.00037763526157143376,
+ "loss": 2.058422803878784,
+ "step": 1568
+ },
+ {
+ "epoch": 21.794425087108014,
+ "grad_norm": 0.060869570821523666,
+ "learning_rate": 0.00037737719973198825,
+ "loss": 2.0537140369415283,
+ "step": 1569
+ },
+ {
+ "epoch": 21.808362369337978,
+ "grad_norm": 0.05886754021048546,
+ "learning_rate": 0.0003771190779681762,
+ "loss": 2.077362537384033,
+ "step": 1570
+ },
+ {
+ "epoch": 21.822299651567945,
+ "grad_norm": 0.061772339046001434,
+ "learning_rate": 0.0003768608964879619,
+ "loss": 2.067615032196045,
+ "step": 1571
+ },
+ {
+ "epoch": 21.83623693379791,
+ "grad_norm": 0.06018555909395218,
+ "learning_rate": 0.00037660265549935724,
+ "loss": 2.0696468353271484,
+ "step": 1572
+ },
+ {
+ "epoch": 21.850174216027874,
+ "grad_norm": 0.058483004570007324,
+ "learning_rate": 0.00037634435521042257,
+ "loss": 2.085695505142212,
+ "step": 1573
+ },
+ {
+ "epoch": 21.86411149825784,
+ "grad_norm": 0.06118083372712135,
+ "learning_rate": 0.0003760859958292656,
+ "loss": 2.0818231105804443,
+ "step": 1574
+ },
+ {
+ "epoch": 21.878048780487806,
+ "grad_norm": 0.057427361607551575,
+ "learning_rate": 0.000375827577564042,
+ "loss": 2.0525319576263428,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89198606271777,
+ "grad_norm": 0.06218957528471947,
+ "learning_rate": 0.0003755691006229545,
+ "loss": 2.0691938400268555,
+ "step": 1576
+ },
+ {
+ "epoch": 21.905923344947734,
+ "grad_norm": 0.05727244168519974,
+ "learning_rate": 0.0003753105652142534,
+ "loss": 2.0820717811584473,
+ "step": 1577
+ },
+ {
+ "epoch": 21.9198606271777,
+ "grad_norm": 0.05988473817706108,
+ "learning_rate": 0.000375051971546236,
+ "loss": 2.08701753616333,
+ "step": 1578
+ },
+ {
+ "epoch": 21.933797909407666,
+ "grad_norm": 0.05977068468928337,
+ "learning_rate": 0.0003747933198272465,
+ "loss": 2.0772976875305176,
+ "step": 1579
+ },
+ {
+ "epoch": 21.94773519163763,
+ "grad_norm": 0.05766184255480766,
+ "learning_rate": 0.00037453461026567604,
+ "loss": 2.0779075622558594,
+ "step": 1580
+ },
+ {
+ "epoch": 21.961672473867594,
+ "grad_norm": 0.06194579601287842,
+ "learning_rate": 0.00037427584306996196,
+ "loss": 2.066725254058838,
+ "step": 1581
+ },
+ {
+ "epoch": 21.975609756097562,
+ "grad_norm": 0.06117486208677292,
+ "learning_rate": 0.0003740170184485888,
+ "loss": 2.063469409942627,
+ "step": 1582
+ },
+ {
+ "epoch": 21.989547038327526,
+ "grad_norm": 0.05828284099698067,
+ "learning_rate": 0.0003737581366100864,
+ "loss": 2.0690245628356934,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.04717395827174187,
+ "learning_rate": 0.0003734991977630315,
+ "loss": 1.5481253862380981,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 0.6287422180175781,
+ "eval_runtime": 36.8966,
+ "eval_samples_per_second": 66.185,
+ "eval_steps_per_second": 0.542,
+ "step": 1584
+ },
+ {
+ "epoch": 22.013937282229964,
+ "grad_norm": 0.05935833230614662,
+ "learning_rate": 0.0003732402021160463,
+ "loss": 2.0213916301727295,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027874564459932,
+ "grad_norm": 0.0647081509232521,
+ "learning_rate": 0.00037298114987779885,
+ "loss": 2.021193504333496,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041811846689896,
+ "grad_norm": 0.060830891132354736,
+ "learning_rate": 0.000372722041257003,
+ "loss": 2.014934539794922,
+ "step": 1587
+ },
+ {
+ "epoch": 22.05574912891986,
+ "grad_norm": 0.0575600229203701,
+ "learning_rate": 0.00037246287646241783,
+ "loss": 2.0201141834259033,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069686411149824,
+ "grad_norm": 0.05999648571014404,
+ "learning_rate": 0.0003722036557028478,
+ "loss": 2.01477313041687,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083623693379792,
+ "grad_norm": 0.06243257597088814,
+ "learning_rate": 0.0003719443791871422,
+ "loss": 2.0069234371185303,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097560975609756,
+ "grad_norm": 0.061873242259025574,
+ "learning_rate": 0.0003716850471241958,
+ "loss": 2.0218544006347656,
+ "step": 1591
+ },
+ {
+ "epoch": 22.11149825783972,
+ "grad_norm": 0.0562879703938961,
+ "learning_rate": 0.0003714256597229474,
+ "loss": 2.027651786804199,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125435540069688,
+ "grad_norm": 0.06129061430692673,
+ "learning_rate": 0.0003711662171923809,
+ "loss": 2.02847957611084,
+ "step": 1593
+ },
+ {
+ "epoch": 22.139372822299652,
+ "grad_norm": 0.06575217843055725,
+ "learning_rate": 0.0003709067197415244,
+ "loss": 2.0157370567321777,
+ "step": 1594
+ },
+ {
+ "epoch": 22.153310104529616,
+ "grad_norm": 0.06006300821900368,
+ "learning_rate": 0.00037064716757945036,
+ "loss": 2.0212819576263428,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16724738675958,
+ "grad_norm": 0.05905022844672203,
+ "learning_rate": 0.0003703875609152753,
+ "loss": 2.019151449203491,
+ "step": 1596
+ },
+ {
+ "epoch": 22.181184668989548,
+ "grad_norm": 0.05942187085747719,
+ "learning_rate": 0.0003701278999581595,
+ "loss": 2.0100960731506348,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195121951219512,
+ "grad_norm": 0.06255407631397247,
+ "learning_rate": 0.0003698681849173073,
+ "loss": 2.0253348350524902,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209059233449477,
+ "grad_norm": 0.06482044607400894,
+ "learning_rate": 0.0003696084160019662,
+ "loss": 2.0148420333862305,
+ "step": 1599
+ },
+ {
+ "epoch": 22.222996515679444,
+ "grad_norm": 0.0601821169257164,
+ "learning_rate": 0.0003693485934214274,
+ "loss": 2.023470640182495,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23693379790941,
+ "grad_norm": 0.06029169633984566,
+ "learning_rate": 0.0003690887173850253,
+ "loss": 2.009469985961914,
+ "step": 1601
+ },
+ {
+ "epoch": 22.250871080139373,
+ "grad_norm": 0.059910114854574203,
+ "learning_rate": 0.0003688287881021374,
+ "loss": 2.035770893096924,
+ "step": 1602
+ },
+ {
+ "epoch": 22.264808362369337,
+ "grad_norm": 0.06215308979153633,
+ "learning_rate": 0.00036856880578218376,
+ "loss": 2.01731538772583,
+ "step": 1603
+ },
+ {
+ "epoch": 22.278745644599304,
+ "grad_norm": 0.06145225092768669,
+ "learning_rate": 0.00036830877063462786,
+ "loss": 2.026510715484619,
+ "step": 1604
+ },
+ {
+ "epoch": 22.29268292682927,
+ "grad_norm": 0.05880272388458252,
+ "learning_rate": 0.0003680486828689749,
+ "loss": 2.0214052200317383,
+ "step": 1605
+ },
+ {
+ "epoch": 22.306620209059233,
+ "grad_norm": 0.06154364347457886,
+ "learning_rate": 0.00036778854269477315,
+ "loss": 2.038039207458496,
+ "step": 1606
+ },
+ {
+ "epoch": 22.320557491289197,
+ "grad_norm": 0.06352122128009796,
+ "learning_rate": 0.0003675283503216127,
+ "loss": 2.0086398124694824,
+ "step": 1607
+ },
+ {
+ "epoch": 22.334494773519165,
+ "grad_norm": 0.06252473592758179,
+ "learning_rate": 0.000367268105959126,
+ "loss": 2.0344018936157227,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34843205574913,
+ "grad_norm": 0.05990692600607872,
+ "learning_rate": 0.00036700780981698705,
+ "loss": 2.030116558074951,
+ "step": 1609
+ },
+ {
+ "epoch": 22.362369337979093,
+ "grad_norm": 0.06241406500339508,
+ "learning_rate": 0.0003667474621049119,
+ "loss": 2.02555513381958,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37630662020906,
+ "grad_norm": 0.06356526166200638,
+ "learning_rate": 0.00036648706303265795,
+ "loss": 2.034946918487549,
+ "step": 1611
+ },
+ {
+ "epoch": 22.390243902439025,
+ "grad_norm": 0.05866849794983864,
+ "learning_rate": 0.000366226612810024,
+ "loss": 2.0180652141571045,
+ "step": 1612
+ },
+ {
+ "epoch": 22.40418118466899,
+ "grad_norm": 0.06021985039114952,
+ "learning_rate": 0.00036596611164685025,
+ "loss": 2.028763771057129,
+ "step": 1613
+ },
+ {
+ "epoch": 22.418118466898953,
+ "grad_norm": 0.0626717135310173,
+ "learning_rate": 0.0003657055597530175,
+ "loss": 2.021925926208496,
+ "step": 1614
+ },
+ {
+ "epoch": 22.43205574912892,
+ "grad_norm": 0.05952958017587662,
+ "learning_rate": 0.00036544495733844797,
+ "loss": 2.029926300048828,
+ "step": 1615
+ },
+ {
+ "epoch": 22.445993031358885,
+ "grad_norm": 0.06139490753412247,
+ "learning_rate": 0.000365184304613104,
+ "loss": 2.0357437133789062,
+ "step": 1616
+ },
+ {
+ "epoch": 22.45993031358885,
+ "grad_norm": 0.06750302016735077,
+ "learning_rate": 0.0003649236017869892,
+ "loss": 2.033015251159668,
+ "step": 1617
+ },
+ {
+ "epoch": 22.473867595818817,
+ "grad_norm": 0.06402213126420975,
+ "learning_rate": 0.00036466284907014685,
+ "loss": 2.0288286209106445,
+ "step": 1618
+ },
+ {
+ "epoch": 22.48780487804878,
+ "grad_norm": 0.06656284630298615,
+ "learning_rate": 0.0003644020466726608,
+ "loss": 2.035670042037964,
+ "step": 1619
+ },
+ {
+ "epoch": 22.501742160278745,
+ "grad_norm": 0.06058082729578018,
+ "learning_rate": 0.00036414119480465473,
+ "loss": 2.0248050689697266,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51567944250871,
+ "grad_norm": 0.0639055147767067,
+ "learning_rate": 0.0003638802936762925,
+ "loss": 2.0347347259521484,
+ "step": 1621
+ },
+ {
+ "epoch": 22.529616724738677,
+ "grad_norm": 0.06509086489677429,
+ "learning_rate": 0.0003636193434977771,
+ "loss": 2.0287723541259766,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54355400696864,
+ "grad_norm": 0.06115980073809624,
+ "learning_rate": 0.0003633583444793516,
+ "loss": 2.0428926944732666,
+ "step": 1623
+ },
+ {
+ "epoch": 22.557491289198605,
+ "grad_norm": 0.06231401860713959,
+ "learning_rate": 0.00036309729683129814,
+ "loss": 2.0409903526306152,
+ "step": 1624
+ },
+ {
+ "epoch": 22.571428571428573,
+ "grad_norm": 0.06252925843000412,
+ "learning_rate": 0.00036283620076393814,
+ "loss": 2.0263853073120117,
+ "step": 1625
+ },
+ {
+ "epoch": 22.585365853658537,
+ "grad_norm": 0.05840536579489708,
+ "learning_rate": 0.000362575056487632,
+ "loss": 2.0359339714050293,
+ "step": 1626
+ },
+ {
+ "epoch": 22.5993031358885,
+ "grad_norm": 0.06289584934711456,
+ "learning_rate": 0.00036231386421277877,
+ "loss": 2.041419267654419,
+ "step": 1627
+ },
+ {
+ "epoch": 22.613240418118465,
+ "grad_norm": 0.059172775596380234,
+ "learning_rate": 0.0003620526241498167,
+ "loss": 2.0285377502441406,
+ "step": 1628
+ },
+ {
+ "epoch": 22.627177700348433,
+ "grad_norm": 0.05929497256875038,
+ "learning_rate": 0.0003617913365092218,
+ "loss": 2.054593086242676,
+ "step": 1629
+ },
+ {
+ "epoch": 22.641114982578397,
+ "grad_norm": 0.05966512858867645,
+ "learning_rate": 0.0003615300015015091,
+ "loss": 2.0354065895080566,
+ "step": 1630
+ },
+ {
+ "epoch": 22.65505226480836,
+ "grad_norm": 0.060928668826818466,
+ "learning_rate": 0.0003612686193372312,
+ "loss": 2.0524067878723145,
+ "step": 1631
+ },
+ {
+ "epoch": 22.66898954703833,
+ "grad_norm": 0.06704723089933395,
+ "learning_rate": 0.00036100719022697924,
+ "loss": 2.0277299880981445,
+ "step": 1632
+ },
+ {
+ "epoch": 22.682926829268293,
+ "grad_norm": 0.0654405876994133,
+ "learning_rate": 0.0003607457143813819,
+ "loss": 2.0558719635009766,
+ "step": 1633
+ },
+ {
+ "epoch": 22.696864111498257,
+ "grad_norm": 0.06097044795751572,
+ "learning_rate": 0.00036048419201110553,
+ "loss": 2.064798593521118,
+ "step": 1634
+ },
+ {
+ "epoch": 22.71080139372822,
+ "grad_norm": 0.06433983147144318,
+ "learning_rate": 0.00036022262332685383,
+ "loss": 2.0563478469848633,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72473867595819,
+ "grad_norm": 0.0608518086373806,
+ "learning_rate": 0.0003599610085393681,
+ "loss": 2.034682273864746,
+ "step": 1636
+ },
+ {
+ "epoch": 22.738675958188153,
+ "grad_norm": 0.06357148289680481,
+ "learning_rate": 0.0003596993478594267,
+ "loss": 2.030651569366455,
+ "step": 1637
+ },
+ {
+ "epoch": 22.752613240418118,
+ "grad_norm": 0.05953045189380646,
+ "learning_rate": 0.0003594376414978447,
+ "loss": 2.046708345413208,
+ "step": 1638
+ },
+ {
+ "epoch": 22.766550522648085,
+ "grad_norm": 0.06323279440402985,
+ "learning_rate": 0.0003591758896654745,
+ "loss": 2.040714740753174,
+ "step": 1639
+ },
+ {
+ "epoch": 22.78048780487805,
+ "grad_norm": 0.05863328278064728,
+ "learning_rate": 0.0003589140925732045,
+ "loss": 2.0645852088928223,
+ "step": 1640
+ },
+ {
+ "epoch": 22.794425087108014,
+ "grad_norm": 0.058750979602336884,
+ "learning_rate": 0.0003586522504319602,
+ "loss": 2.0421950817108154,
+ "step": 1641
+ },
+ {
+ "epoch": 22.808362369337978,
+ "grad_norm": 0.06100532412528992,
+ "learning_rate": 0.0003583903634527029,
+ "loss": 2.037891387939453,
+ "step": 1642
+ },
+ {
+ "epoch": 22.822299651567945,
+ "grad_norm": 0.058944981545209885,
+ "learning_rate": 0.0003581284318464302,
+ "loss": 2.029283046722412,
+ "step": 1643
+ },
+ {
+ "epoch": 22.83623693379791,
+ "grad_norm": 0.060633257031440735,
+ "learning_rate": 0.00035786645582417564,
+ "loss": 2.058162212371826,
+ "step": 1644
+ },
+ {
+ "epoch": 22.850174216027874,
+ "grad_norm": 0.059548065066337585,
+ "learning_rate": 0.00035760443559700863,
+ "loss": 2.0538077354431152,
+ "step": 1645
+ },
+ {
+ "epoch": 22.86411149825784,
+ "grad_norm": 0.06102653965353966,
+ "learning_rate": 0.00035734237137603417,
+ "loss": 2.052565097808838,
+ "step": 1646
+ },
+ {
+ "epoch": 22.878048780487806,
+ "grad_norm": 0.05913171172142029,
+ "learning_rate": 0.0003570802633723927,
+ "loss": 2.0596346855163574,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89198606271777,
+ "grad_norm": 0.061698317527770996,
+ "learning_rate": 0.0003568181117972597,
+ "loss": 2.0622029304504395,
+ "step": 1648
+ },
+ {
+ "epoch": 22.905923344947734,
+ "grad_norm": 0.059588681906461716,
+ "learning_rate": 0.00035655591686184626,
+ "loss": 2.04315447807312,
+ "step": 1649
+ },
+ {
+ "epoch": 22.9198606271777,
+ "grad_norm": 0.06275669485330582,
+ "learning_rate": 0.0003562936787773979,
+ "loss": 2.0449585914611816,
+ "step": 1650
+ },
+ {
+ "epoch": 22.933797909407666,
+ "grad_norm": 0.06165294349193573,
+ "learning_rate": 0.000356031397755195,
+ "loss": 2.0373802185058594,
+ "step": 1651
+ },
+ {
+ "epoch": 22.94773519163763,
+ "grad_norm": 0.0604374073445797,
+ "learning_rate": 0.00035576907400655303,
+ "loss": 2.061960220336914,
+ "step": 1652
+ },
+ {
+ "epoch": 22.961672473867594,
+ "grad_norm": 0.05968572944402695,
+ "learning_rate": 0.00035550670774282106,
+ "loss": 2.051542282104492,
+ "step": 1653
+ },
+ {
+ "epoch": 22.975609756097562,
+ "grad_norm": 0.06063802167773247,
+ "learning_rate": 0.0003552442991753831,
+ "loss": 2.045436143875122,
+ "step": 1654
+ },
+ {
+ "epoch": 22.989547038327526,
+ "grad_norm": 0.060019318014383316,
+ "learning_rate": 0.00035498184851565697,
+ "loss": 2.0558581352233887,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.049940288066864014,
+ "learning_rate": 0.0003547193559750944,
+ "loss": 1.5244159698486328,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 0.6296067833900452,
+ "eval_runtime": 35.7678,
+ "eval_samples_per_second": 68.274,
+ "eval_steps_per_second": 0.559,
+ "step": 1656
+ },
+ {
+ "epoch": 23.013937282229964,
+ "grad_norm": 0.058643098920583725,
+ "learning_rate": 0.00035445682176518087,
+ "loss": 1.996954321861267,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027874564459932,
+ "grad_norm": 0.07890982180833817,
+ "learning_rate": 0.00035419424609743546,
+ "loss": 2.003385543823242,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041811846689896,
+ "grad_norm": 0.06572650372982025,
+ "learning_rate": 0.00035393162918341065,
+ "loss": 1.9858441352844238,
+ "step": 1659
+ },
+ {
+ "epoch": 23.05574912891986,
+ "grad_norm": 0.06063111498951912,
+ "learning_rate": 0.00035366897123469213,
+ "loss": 1.9996259212493896,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069686411149824,
+ "grad_norm": 0.06614259630441666,
+ "learning_rate": 0.0003534062724628986,
+ "loss": 2.013913869857788,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083623693379792,
+ "grad_norm": 0.06714142113924026,
+ "learning_rate": 0.00035314353307968195,
+ "loss": 1.9934425354003906,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097560975609756,
+ "grad_norm": 0.06256651133298874,
+ "learning_rate": 0.00035288075329672634,
+ "loss": 2.0107738971710205,
+ "step": 1663
+ },
+ {
+ "epoch": 23.11149825783972,
+ "grad_norm": 0.06392858177423477,
+ "learning_rate": 0.0003526179333257487,
+ "loss": 1.9977614879608154,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125435540069688,
+ "grad_norm": 0.06550068408250809,
+ "learning_rate": 0.0003523550733784984,
+ "loss": 1.9837822914123535,
+ "step": 1665
+ },
+ {
+ "epoch": 23.139372822299652,
+ "grad_norm": 0.06895361095666885,
+ "learning_rate": 0.00035209217366675706,
+ "loss": 1.9999781847000122,
+ "step": 1666
+ },
+ {
+ "epoch": 23.153310104529616,
+ "grad_norm": 0.06363921612501144,
+ "learning_rate": 0.000351829234402338,
+ "loss": 1.985809087753296,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16724738675958,
+ "grad_norm": 0.06028164550662041,
+ "learning_rate": 0.0003515662557970867,
+ "loss": 2.0019848346710205,
+ "step": 1668
+ },
+ {
+ "epoch": 23.181184668989548,
+ "grad_norm": 0.06500236690044403,
+ "learning_rate": 0.0003513032380628804,
+ "loss": 2.0089876651763916,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195121951219512,
+ "grad_norm": 0.05989453196525574,
+ "learning_rate": 0.0003510401814116277,
+ "loss": 1.9814873933792114,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209059233449477,
+ "grad_norm": 0.060608964413404465,
+ "learning_rate": 0.0003507770860552684,
+ "loss": 2.009627103805542,
+ "step": 1671
+ },
+ {
+ "epoch": 23.222996515679444,
+ "grad_norm": 0.06088849529623985,
+ "learning_rate": 0.00035051395220577397,
+ "loss": 1.9926284551620483,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23693379790941,
+ "grad_norm": 0.06073446571826935,
+ "learning_rate": 0.0003502507800751464,
+ "loss": 2.0231637954711914,
+ "step": 1673
+ },
+ {
+ "epoch": 23.250871080139373,
+ "grad_norm": 0.06006423011422157,
+ "learning_rate": 0.0003499875698754187,
+ "loss": 1.9915974140167236,
+ "step": 1674
+ },
+ {
+ "epoch": 23.264808362369337,
+ "grad_norm": 0.059542685747146606,
+ "learning_rate": 0.00034972432181865467,
+ "loss": 1.9983782768249512,
+ "step": 1675
+ },
+ {
+ "epoch": 23.278745644599304,
+ "grad_norm": 0.06081021949648857,
+ "learning_rate": 0.00034946103611694854,
+ "loss": 1.9988645315170288,
+ "step": 1676
+ },
+ {
+ "epoch": 23.29268292682927,
+ "grad_norm": 0.05827084556221962,
+ "learning_rate": 0.00034919771298242477,
+ "loss": 2.002373456954956,
+ "step": 1677
+ },
+ {
+ "epoch": 23.306620209059233,
+ "grad_norm": 0.059867121279239655,
+ "learning_rate": 0.00034893435262723814,
+ "loss": 2.0014448165893555,
+ "step": 1678
+ },
+ {
+ "epoch": 23.320557491289197,
+ "grad_norm": 0.059579163789749146,
+ "learning_rate": 0.00034867095526357325,
+ "loss": 2.018733501434326,
+ "step": 1679
+ },
+ {
+ "epoch": 23.334494773519165,
+ "grad_norm": 0.06353137642145157,
+ "learning_rate": 0.0003484075211036446,
+ "loss": 2.003769874572754,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34843205574913,
+ "grad_norm": 0.06118098273873329,
+ "learning_rate": 0.0003481440503596964,
+ "loss": 2.009033203125,
+ "step": 1681
+ },
+ {
+ "epoch": 23.362369337979093,
+ "grad_norm": 0.060457196086645126,
+ "learning_rate": 0.0003478805432440021,
+ "loss": 2.005089282989502,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37630662020906,
+ "grad_norm": 0.06178257614374161,
+ "learning_rate": 0.0003476169999688648,
+ "loss": 1.9994860887527466,
+ "step": 1683
+ },
+ {
+ "epoch": 23.390243902439025,
+ "grad_norm": 0.06617811322212219,
+ "learning_rate": 0.00034735342074661654,
+ "loss": 2.0085301399230957,
+ "step": 1684
+ },
+ {
+ "epoch": 23.40418118466899,
+ "grad_norm": 0.061164431273937225,
+ "learning_rate": 0.0003470898057896183,
+ "loss": 2.0015316009521484,
+ "step": 1685
+ },
+ {
+ "epoch": 23.418118466898953,
+ "grad_norm": 0.06309735029935837,
+ "learning_rate": 0.0003468261553102599,
+ "loss": 2.020759344100952,
+ "step": 1686
+ },
+ {
+ "epoch": 23.43205574912892,
+ "grad_norm": 0.0626831203699112,
+ "learning_rate": 0.00034656246952095984,
+ "loss": 2.009215831756592,
+ "step": 1687
+ },
+ {
+ "epoch": 23.445993031358885,
+ "grad_norm": 0.05888507142663002,
+ "learning_rate": 0.0003462987486341648,
+ "loss": 2.013838529586792,
+ "step": 1688
+ },
+ {
+ "epoch": 23.45993031358885,
+ "grad_norm": 0.0606909804046154,
+ "learning_rate": 0.00034603499286235006,
+ "loss": 2.005582571029663,
+ "step": 1689
+ },
+ {
+ "epoch": 23.473867595818817,
+ "grad_norm": 0.058872029185295105,
+ "learning_rate": 0.0003457712024180188,
+ "loss": 2.0199661254882812,
+ "step": 1690
+ },
+ {
+ "epoch": 23.48780487804878,
+ "grad_norm": 0.06124086305499077,
+ "learning_rate": 0.0003455073775137025,
+ "loss": 2.0159080028533936,
+ "step": 1691
+ },
+ {
+ "epoch": 23.501742160278745,
+ "grad_norm": 0.059814538806676865,
+ "learning_rate": 0.0003452435183619598,
+ "loss": 2.011732578277588,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51567944250871,
+ "grad_norm": 0.060436636209487915,
+ "learning_rate": 0.0003449796251753773,
+ "loss": 2.018317699432373,
+ "step": 1693
+ },
+ {
+ "epoch": 23.529616724738677,
+ "grad_norm": 0.06265381723642349,
+ "learning_rate": 0.00034471569816656915,
+ "loss": 2.010077714920044,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54355400696864,
+ "grad_norm": 0.06320856511592865,
+ "learning_rate": 0.00034445173754817646,
+ "loss": 2.0341739654541016,
+ "step": 1695
+ },
+ {
+ "epoch": 23.557491289198605,
+ "grad_norm": 0.061819177120923996,
+ "learning_rate": 0.00034418774353286747,
+ "loss": 2.032660961151123,
+ "step": 1696
+ },
+ {
+ "epoch": 23.571428571428573,
+ "grad_norm": 0.06506329029798508,
+ "learning_rate": 0.0003439237163333375,
+ "loss": 2.0272016525268555,
+ "step": 1697
+ },
+ {
+ "epoch": 23.585365853658537,
+ "grad_norm": 0.06600788235664368,
+ "learning_rate": 0.0003436596561623084,
+ "loss": 2.0060458183288574,
+ "step": 1698
+ },
+ {
+ "epoch": 23.5993031358885,
+ "grad_norm": 0.06110696122050285,
+ "learning_rate": 0.0003433955632325288,
+ "loss": 2.0102944374084473,
+ "step": 1699
+ },
+ {
+ "epoch": 23.613240418118465,
+ "grad_norm": 0.066371850669384,
+ "learning_rate": 0.00034313143775677353,
+ "loss": 2.0352327823638916,
+ "step": 1700
+ },
+ {
+ "epoch": 23.627177700348433,
+ "grad_norm": 0.06527800112962723,
+ "learning_rate": 0.00034286727994784367,
+ "loss": 2.0035440921783447,
+ "step": 1701
+ },
+ {
+ "epoch": 23.641114982578397,
+ "grad_norm": 0.06285402178764343,
+ "learning_rate": 0.0003426030900185665,
+ "loss": 2.033757448196411,
+ "step": 1702
+ },
+ {
+ "epoch": 23.65505226480836,
+ "grad_norm": 0.061433784663677216,
+ "learning_rate": 0.0003423388681817949,
+ "loss": 2.0161848068237305,
+ "step": 1703
+ },
+ {
+ "epoch": 23.66898954703833,
+ "grad_norm": 0.05987842008471489,
+ "learning_rate": 0.00034207461465040793,
+ "loss": 2.0261831283569336,
+ "step": 1704
+ },
+ {
+ "epoch": 23.682926829268293,
+ "grad_norm": 0.059953805059194565,
+ "learning_rate": 0.0003418103296373096,
+ "loss": 2.0215904712677,
+ "step": 1705
+ },
+ {
+ "epoch": 23.696864111498257,
+ "grad_norm": 0.06330372393131256,
+ "learning_rate": 0.00034154601335542964,
+ "loss": 2.025210380554199,
+ "step": 1706
+ },
+ {
+ "epoch": 23.71080139372822,
+ "grad_norm": 0.059463981539011,
+ "learning_rate": 0.00034128166601772304,
+ "loss": 2.02297306060791,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72473867595819,
+ "grad_norm": 0.05973811820149422,
+ "learning_rate": 0.0003410172878371695,
+ "loss": 2.011875629425049,
+ "step": 1708
+ },
+ {
+ "epoch": 23.738675958188153,
+ "grad_norm": 0.0624937042593956,
+ "learning_rate": 0.00034075287902677394,
+ "loss": 2.0156028270721436,
+ "step": 1709
+ },
+ {
+ "epoch": 23.752613240418118,
+ "grad_norm": 0.062002237886190414,
+ "learning_rate": 0.0003404884397995655,
+ "loss": 2.0000498294830322,
+ "step": 1710
+ },
+ {
+ "epoch": 23.766550522648085,
+ "grad_norm": 0.060854360461235046,
+ "learning_rate": 0.00034022397036859837,
+ "loss": 2.0322160720825195,
+ "step": 1711
+ },
+ {
+ "epoch": 23.78048780487805,
+ "grad_norm": 0.06054264307022095,
+ "learning_rate": 0.0003399594709469506,
+ "loss": 2.032982349395752,
+ "step": 1712
+ },
+ {
+ "epoch": 23.794425087108014,
+ "grad_norm": 0.0627431645989418,
+ "learning_rate": 0.00033969494174772465,
+ "loss": 2.020582675933838,
+ "step": 1713
+ },
+ {
+ "epoch": 23.808362369337978,
+ "grad_norm": 0.06483827531337738,
+ "learning_rate": 0.0003394303829840469,
+ "loss": 2.0398523807525635,
+ "step": 1714
+ },
+ {
+ "epoch": 23.822299651567945,
+ "grad_norm": 0.05984083190560341,
+ "learning_rate": 0.00033916579486906764,
+ "loss": 2.039645195007324,
+ "step": 1715
+ },
+ {
+ "epoch": 23.83623693379791,
+ "grad_norm": 0.06621941179037094,
+ "learning_rate": 0.0003389011776159607,
+ "loss": 2.021867275238037,
+ "step": 1716
+ },
+ {
+ "epoch": 23.850174216027874,
+ "grad_norm": 0.0623198039829731,
+ "learning_rate": 0.0003386365314379233,
+ "loss": 2.0347697734832764,
+ "step": 1717
+ },
+ {
+ "epoch": 23.86411149825784,
+ "grad_norm": 0.06399847567081451,
+ "learning_rate": 0.0003383718565481763,
+ "loss": 2.030777931213379,
+ "step": 1718
+ },
+ {
+ "epoch": 23.878048780487806,
+ "grad_norm": 0.06241384893655777,
+ "learning_rate": 0.0003381071531599633,
+ "loss": 2.011267900466919,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89198606271777,
+ "grad_norm": 0.05945252999663353,
+ "learning_rate": 0.00033784242148655115,
+ "loss": 2.0384621620178223,
+ "step": 1720
+ },
+ {
+ "epoch": 23.905923344947734,
+ "grad_norm": 0.0614384189248085,
+ "learning_rate": 0.00033757766174122934,
+ "loss": 2.030486583709717,
+ "step": 1721
+ },
+ {
+ "epoch": 23.9198606271777,
+ "grad_norm": 0.06007350608706474,
+ "learning_rate": 0.00033731287413731005,
+ "loss": 2.022603988647461,
+ "step": 1722
+ },
+ {
+ "epoch": 23.933797909407666,
+ "grad_norm": 0.059712085872888565,
+ "learning_rate": 0.0003370480588881278,
+ "loss": 2.0331850051879883,
+ "step": 1723
+ },
+ {
+ "epoch": 23.94773519163763,
+ "grad_norm": 0.0601886548101902,
+ "learning_rate": 0.0003367832162070395,
+ "loss": 2.0483477115631104,
+ "step": 1724
+ },
+ {
+ "epoch": 23.961672473867594,
+ "grad_norm": 0.06256099790334702,
+ "learning_rate": 0.000336518346307424,
+ "loss": 2.033539056777954,
+ "step": 1725
+ },
+ {
+ "epoch": 23.975609756097562,
+ "grad_norm": 0.057741131633520126,
+ "learning_rate": 0.0003362534494026824,
+ "loss": 2.024747133255005,
+ "step": 1726
+ },
+ {
+ "epoch": 23.989547038327526,
+ "grad_norm": 0.060783255845308304,
+ "learning_rate": 0.0003359885257062372,
+ "loss": 2.0209577083587646,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.04932123422622681,
+ "learning_rate": 0.0003357235754315328,
+ "loss": 1.515411376953125,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 0.6315755248069763,
+ "eval_runtime": 36.5997,
+ "eval_samples_per_second": 66.722,
+ "eval_steps_per_second": 0.546,
+ "step": 1728
+ },
+ {
+ "epoch": 24.013937282229964,
+ "grad_norm": 0.056868553161621094,
+ "learning_rate": 0.0003354585987920345,
+ "loss": 1.9798481464385986,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027874564459932,
+ "grad_norm": 0.06501385569572449,
+ "learning_rate": 0.0003351935960012296,
+ "loss": 1.9906654357910156,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041811846689896,
+ "grad_norm": 0.05838958919048309,
+ "learning_rate": 0.0003349285672726259,
+ "loss": 1.9860174655914307,
+ "step": 1731
+ },
+ {
+ "epoch": 24.05574912891986,
+ "grad_norm": 0.058145660907030106,
+ "learning_rate": 0.0003346635128197522,
+ "loss": 1.9651578664779663,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069686411149824,
+ "grad_norm": 0.060848575085401535,
+ "learning_rate": 0.0003343984328561581,
+ "loss": 1.9864778518676758,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083623693379792,
+ "grad_norm": 0.06372028589248657,
+ "learning_rate": 0.00033413332759541376,
+ "loss": 1.9852806329727173,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097560975609756,
+ "grad_norm": 0.061025235801935196,
+ "learning_rate": 0.0003338681972511098,
+ "loss": 1.9978421926498413,
+ "step": 1735
+ },
+ {
+ "epoch": 24.11149825783972,
+ "grad_norm": 0.060201771557331085,
+ "learning_rate": 0.0003336030420368568,
+ "loss": 1.9757139682769775,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125435540069688,
+ "grad_norm": 0.05975824594497681,
+ "learning_rate": 0.0003333378621662857,
+ "loss": 1.9860875606536865,
+ "step": 1737
+ },
+ {
+ "epoch": 24.139372822299652,
+ "grad_norm": 0.06081843376159668,
+ "learning_rate": 0.00033307265785304684,
+ "loss": 1.968639850616455,
+ "step": 1738
+ },
+ {
+ "epoch": 24.153310104529616,
+ "grad_norm": 0.060572270303964615,
+ "learning_rate": 0.00033280742931081076,
+ "loss": 1.9802055358886719,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16724738675958,
+ "grad_norm": 0.05910629406571388,
+ "learning_rate": 0.00033254217675326737,
+ "loss": 1.9850757122039795,
+ "step": 1740
+ },
+ {
+ "epoch": 24.181184668989548,
+ "grad_norm": 0.05974426120519638,
+ "learning_rate": 0.0003322769003941257,
+ "loss": 1.976986289024353,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195121951219512,
+ "grad_norm": 0.06145593523979187,
+ "learning_rate": 0.00033201160044711423,
+ "loss": 2.000087261199951,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209059233449477,
+ "grad_norm": 0.06071079522371292,
+ "learning_rate": 0.0003317462771259802,
+ "loss": 2.0015039443969727,
+ "step": 1743
+ },
+ {
+ "epoch": 24.222996515679444,
+ "grad_norm": 0.06183251366019249,
+ "learning_rate": 0.00033148093064449006,
+ "loss": 1.9810009002685547,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23693379790941,
+ "grad_norm": 0.05952904373407364,
+ "learning_rate": 0.0003312155612164284,
+ "loss": 1.9755181074142456,
+ "step": 1745
+ },
+ {
+ "epoch": 24.250871080139373,
+ "grad_norm": 0.06136337295174599,
+ "learning_rate": 0.00033095016905559883,
+ "loss": 1.9860830307006836,
+ "step": 1746
+ },
+ {
+ "epoch": 24.264808362369337,
+ "grad_norm": 0.05884359031915665,
+ "learning_rate": 0.0003306847543758227,
+ "loss": 1.9831082820892334,
+ "step": 1747
+ },
+ {
+ "epoch": 24.278745644599304,
+ "grad_norm": 0.06433911621570587,
+ "learning_rate": 0.0003304193173909401,
+ "loss": 1.9774551391601562,
+ "step": 1748
+ },
+ {
+ "epoch": 24.29268292682927,
+ "grad_norm": 0.06369569152593613,
+ "learning_rate": 0.00033015385831480873,
+ "loss": 1.969364881515503,
+ "step": 1749
+ },
+ {
+ "epoch": 24.306620209059233,
+ "grad_norm": 0.061907488852739334,
+ "learning_rate": 0.0003298883773613043,
+ "loss": 1.9955558776855469,
+ "step": 1750
+ },
+ {
+ "epoch": 24.320557491289197,
+ "grad_norm": 0.061493128538131714,
+ "learning_rate": 0.0003296228747443197,
+ "loss": 1.983457326889038,
+ "step": 1751
+ },
+ {
+ "epoch": 24.334494773519165,
+ "grad_norm": 0.064146488904953,
+ "learning_rate": 0.0003293573506777659,
+ "loss": 1.987483263015747,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34843205574913,
+ "grad_norm": 0.06266602128744125,
+ "learning_rate": 0.00032909180537557076,
+ "loss": 1.9783263206481934,
+ "step": 1753
+ },
+ {
+ "epoch": 24.362369337979093,
+ "grad_norm": 0.06142675131559372,
+ "learning_rate": 0.00032882623905167917,
+ "loss": 1.984071135520935,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37630662020906,
+ "grad_norm": 0.06145746260881424,
+ "learning_rate": 0.00032856065192005335,
+ "loss": 1.9964550733566284,
+ "step": 1755
+ },
+ {
+ "epoch": 24.390243902439025,
+ "grad_norm": 0.058990370482206345,
+ "learning_rate": 0.00032829504419467194,
+ "loss": 1.9879612922668457,
+ "step": 1756
+ },
+ {
+ "epoch": 24.40418118466899,
+ "grad_norm": 0.06122121214866638,
+ "learning_rate": 0.0003280294160895303,
+ "loss": 1.9812474250793457,
+ "step": 1757
+ },
+ {
+ "epoch": 24.418118466898953,
+ "grad_norm": 0.059800442308187485,
+ "learning_rate": 0.0003277637678186402,
+ "loss": 1.970646619796753,
+ "step": 1758
+ },
+ {
+ "epoch": 24.43205574912892,
+ "grad_norm": 0.0604378841817379,
+ "learning_rate": 0.00032749809959602973,
+ "loss": 2.003701686859131,
+ "step": 1759
+ },
+ {
+ "epoch": 24.445993031358885,
+ "grad_norm": 0.05989979952573776,
+ "learning_rate": 0.0003272324116357428,
+ "loss": 1.9803345203399658,
+ "step": 1760
+ },
+ {
+ "epoch": 24.45993031358885,
+ "grad_norm": 0.06310706585645676,
+ "learning_rate": 0.0003269667041518395,
+ "loss": 1.989131212234497,
+ "step": 1761
+ },
+ {
+ "epoch": 24.473867595818817,
+ "grad_norm": 0.06142299249768257,
+ "learning_rate": 0.0003267009773583956,
+ "loss": 1.9946138858795166,
+ "step": 1762
+ },
+ {
+ "epoch": 24.48780487804878,
+ "grad_norm": 0.062469176948070526,
+ "learning_rate": 0.00032643523146950234,
+ "loss": 2.001830577850342,
+ "step": 1763
+ },
+ {
+ "epoch": 24.501742160278745,
+ "grad_norm": 0.06173425912857056,
+ "learning_rate": 0.0003261694666992664,
+ "loss": 2.002091646194458,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51567944250871,
+ "grad_norm": 0.06293168663978577,
+ "learning_rate": 0.0003259036832618096,
+ "loss": 1.9954603910446167,
+ "step": 1765
+ },
+ {
+ "epoch": 24.529616724738677,
+ "grad_norm": 0.060014087706804276,
+ "learning_rate": 0.0003256378813712688,
+ "loss": 1.9944541454315186,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54355400696864,
+ "grad_norm": 0.06237431988120079,
+ "learning_rate": 0.000325372061241796,
+ "loss": 2.0007567405700684,
+ "step": 1767
+ },
+ {
+ "epoch": 24.557491289198605,
+ "grad_norm": 0.06152753531932831,
+ "learning_rate": 0.00032510622308755746,
+ "loss": 2.0018327236175537,
+ "step": 1768
+ },
+ {
+ "epoch": 24.571428571428573,
+ "grad_norm": 0.05944858118891716,
+ "learning_rate": 0.00032484036712273424,
+ "loss": 1.992608666419983,
+ "step": 1769
+ },
+ {
+ "epoch": 24.585365853658537,
+ "grad_norm": 0.062232885509729385,
+ "learning_rate": 0.0003245744935615219,
+ "loss": 2.000495433807373,
+ "step": 1770
+ },
+ {
+ "epoch": 24.5993031358885,
+ "grad_norm": 0.06566010415554047,
+ "learning_rate": 0.0003243086026181296,
+ "loss": 1.9956483840942383,
+ "step": 1771
+ },
+ {
+ "epoch": 24.613240418118465,
+ "grad_norm": 0.06141132116317749,
+ "learning_rate": 0.00032404269450678116,
+ "loss": 1.9919085502624512,
+ "step": 1772
+ },
+ {
+ "epoch": 24.627177700348433,
+ "grad_norm": 0.06355211138725281,
+ "learning_rate": 0.00032377676944171375,
+ "loss": 2.0013604164123535,
+ "step": 1773
+ },
+ {
+ "epoch": 24.641114982578397,
+ "grad_norm": 0.0633525624871254,
+ "learning_rate": 0.00032351082763717857,
+ "loss": 2.003030300140381,
+ "step": 1774
+ },
+ {
+ "epoch": 24.65505226480836,
+ "grad_norm": 0.06334961205720901,
+ "learning_rate": 0.0003232448693074399,
+ "loss": 2.0035159587860107,
+ "step": 1775
+ },
+ {
+ "epoch": 24.66898954703833,
+ "grad_norm": 0.059516388922929764,
+ "learning_rate": 0.00032297889466677575,
+ "loss": 1.9953091144561768,
+ "step": 1776
+ },
+ {
+ "epoch": 24.682926829268293,
+ "grad_norm": 0.061832234263420105,
+ "learning_rate": 0.000322712903929477,
+ "loss": 2.0096263885498047,
+ "step": 1777
+ },
+ {
+ "epoch": 24.696864111498257,
+ "grad_norm": 0.06823352724313736,
+ "learning_rate": 0.0003224468973098477,
+ "loss": 2.0014004707336426,
+ "step": 1778
+ },
+ {
+ "epoch": 24.71080139372822,
+ "grad_norm": 0.06829699873924255,
+ "learning_rate": 0.0003221808750222044,
+ "loss": 1.990633249282837,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72473867595819,
+ "grad_norm": 0.060128696262836456,
+ "learning_rate": 0.0003219148372808766,
+ "loss": 1.9862974882125854,
+ "step": 1780
+ },
+ {
+ "epoch": 24.738675958188153,
+ "grad_norm": 0.06241869926452637,
+ "learning_rate": 0.00032164878430020606,
+ "loss": 2.0125184059143066,
+ "step": 1781
+ },
+ {
+ "epoch": 24.752613240418118,
+ "grad_norm": 0.06538056582212448,
+ "learning_rate": 0.00032138271629454684,
+ "loss": 2.0079469680786133,
+ "step": 1782
+ },
+ {
+ "epoch": 24.766550522648085,
+ "grad_norm": 0.06478657573461533,
+ "learning_rate": 0.00032111663347826505,
+ "loss": 2.0092570781707764,
+ "step": 1783
+ },
+ {
+ "epoch": 24.78048780487805,
+ "grad_norm": 0.06446428596973419,
+ "learning_rate": 0.00032085053606573896,
+ "loss": 1.9926164150238037,
+ "step": 1784
+ },
+ {
+ "epoch": 24.794425087108014,
+ "grad_norm": 0.06340030580759048,
+ "learning_rate": 0.0003205844242713584,
+ "loss": 2.0052552223205566,
+ "step": 1785
+ },
+ {
+ "epoch": 24.808362369337978,
+ "grad_norm": 0.06671392917633057,
+ "learning_rate": 0.0003203182983095248,
+ "loss": 2.005016326904297,
+ "step": 1786
+ },
+ {
+ "epoch": 24.822299651567945,
+ "grad_norm": 0.06256412714719772,
+ "learning_rate": 0.0003200521583946511,
+ "loss": 1.998322606086731,
+ "step": 1787
+ },
+ {
+ "epoch": 24.83623693379791,
+ "grad_norm": 0.06253744661808014,
+ "learning_rate": 0.0003197860047411613,
+ "loss": 2.004774332046509,
+ "step": 1788
+ },
+ {
+ "epoch": 24.850174216027874,
+ "grad_norm": 0.06475425511598587,
+ "learning_rate": 0.00031951983756349066,
+ "loss": 2.010788917541504,
+ "step": 1789
+ },
+ {
+ "epoch": 24.86411149825784,
+ "grad_norm": 0.06285806000232697,
+ "learning_rate": 0.00031925365707608536,
+ "loss": 2.0189685821533203,
+ "step": 1790
+ },
+ {
+ "epoch": 24.878048780487806,
+ "grad_norm": 0.06435883790254593,
+ "learning_rate": 0.00031898746349340204,
+ "loss": 2.0078349113464355,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89198606271777,
+ "grad_norm": 0.062008004635572433,
+ "learning_rate": 0.0003187212570299082,
+ "loss": 2.005176544189453,
+ "step": 1792
+ },
+ {
+ "epoch": 24.905923344947734,
+ "grad_norm": 0.061844680458307266,
+ "learning_rate": 0.0003184550379000815,
+ "loss": 2.0120368003845215,
+ "step": 1793
+ },
+ {
+ "epoch": 24.9198606271777,
+ "grad_norm": 0.06165637448430061,
+ "learning_rate": 0.00031818880631841005,
+ "loss": 1.988783359527588,
+ "step": 1794
+ },
+ {
+ "epoch": 24.933797909407666,
+ "grad_norm": 0.061599504202604294,
+ "learning_rate": 0.0003179225624993915,
+ "loss": 2.002344846725464,
+ "step": 1795
+ },
+ {
+ "epoch": 24.94773519163763,
+ "grad_norm": 0.06298971176147461,
+ "learning_rate": 0.0003176563066575341,
+ "loss": 2.0156569480895996,
+ "step": 1796
+ },
+ {
+ "epoch": 24.961672473867594,
+ "grad_norm": 0.060080062597990036,
+ "learning_rate": 0.0003173900390073549,
+ "loss": 2.010012149810791,
+ "step": 1797
+ },
+ {
+ "epoch": 24.975609756097562,
+ "grad_norm": 0.06395968794822693,
+ "learning_rate": 0.0003171237597633813,
+ "loss": 2.0122275352478027,
+ "step": 1798
+ },
+ {
+ "epoch": 24.989547038327526,
+ "grad_norm": 0.062498848885297775,
+ "learning_rate": 0.0003168574691401496,
+ "loss": 2.0220727920532227,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.04997362941503525,
+ "learning_rate": 0.0003165911673522053,
+ "loss": 1.5085651874542236,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 0.6326767206192017,
+ "eval_runtime": 35.1333,
+ "eval_samples_per_second": 69.507,
+ "eval_steps_per_second": 0.569,
+ "step": 1800
+ },
+ {
+ "epoch": 25.013937282229964,
+ "grad_norm": 0.06232205778360367,
+ "learning_rate": 0.00031632485461410294,
+ "loss": 1.960073709487915,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027874564459932,
+ "grad_norm": 0.07617080211639404,
+ "learning_rate": 0.00031605853114040583,
+ "loss": 1.9570682048797607,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041811846689896,
+ "grad_norm": 0.06312266737222672,
+ "learning_rate": 0.00031579219714568613,
+ "loss": 1.9653043746948242,
+ "step": 1803
+ },
+ {
+ "epoch": 25.05574912891986,
+ "grad_norm": 0.06101902946829796,
+ "learning_rate": 0.0003155258528445242,
+ "loss": 1.9481754302978516,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069686411149824,
+ "grad_norm": 0.06738974899053574,
+ "learning_rate": 0.0003152594984515089,
+ "loss": 1.9733099937438965,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083623693379792,
+ "grad_norm": 0.06208112835884094,
+ "learning_rate": 0.00031499313418123704,
+ "loss": 1.9604226350784302,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097560975609756,
+ "grad_norm": 0.0632297471165657,
+ "learning_rate": 0.0003147267602483138,
+ "loss": 1.9748514890670776,
+ "step": 1807
+ },
+ {
+ "epoch": 25.11149825783972,
+ "grad_norm": 0.06286419183015823,
+ "learning_rate": 0.00031446037686735153,
+ "loss": 1.9705591201782227,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125435540069688,
+ "grad_norm": 0.061676930636167526,
+ "learning_rate": 0.0003141939842529706,
+ "loss": 1.966292381286621,
+ "step": 1809
+ },
+ {
+ "epoch": 25.139372822299652,
+ "grad_norm": 0.059966422617435455,
+ "learning_rate": 0.0003139275826197987,
+ "loss": 1.960801124572754,
+ "step": 1810
+ },
+ {
+ "epoch": 25.153310104529616,
+ "grad_norm": 0.06130777299404144,
+ "learning_rate": 0.00031366117218247094,
+ "loss": 1.9645764827728271,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16724738675958,
+ "grad_norm": 0.061480022966861725,
+ "learning_rate": 0.00031339475315562916,
+ "loss": 1.9640815258026123,
+ "step": 1812
+ },
+ {
+ "epoch": 25.181184668989548,
+ "grad_norm": 0.05976599082350731,
+ "learning_rate": 0.00031312832575392267,
+ "loss": 1.9709453582763672,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195121951219512,
+ "grad_norm": 0.06432078778743744,
+ "learning_rate": 0.0003128618901920071,
+ "loss": 1.9676944017410278,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209059233449477,
+ "grad_norm": 0.060974858701229095,
+ "learning_rate": 0.0003125954466845446,
+ "loss": 1.9607110023498535,
+ "step": 1815
+ },
+ {
+ "epoch": 25.222996515679444,
+ "grad_norm": 0.06553254276514053,
+ "learning_rate": 0.00031232899544620404,
+ "loss": 1.9504101276397705,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23693379790941,
+ "grad_norm": 0.06467615813016891,
+ "learning_rate": 0.00031206253669166045,
+ "loss": 1.962750792503357,
+ "step": 1817
+ },
+ {
+ "epoch": 25.250871080139373,
+ "grad_norm": 0.061078183352947235,
+ "learning_rate": 0.0003117960706355947,
+ "loss": 1.9658128023147583,
+ "step": 1818
+ },
+ {
+ "epoch": 25.264808362369337,
+ "grad_norm": 0.0656590387225151,
+ "learning_rate": 0.0003115295974926936,
+ "loss": 1.9687200784683228,
+ "step": 1819
+ },
+ {
+ "epoch": 25.278745644599304,
+ "grad_norm": 0.061022087931632996,
+ "learning_rate": 0.00031126311747765005,
+ "loss": 1.9684455394744873,
+ "step": 1820
+ },
+ {
+ "epoch": 25.29268292682927,
+ "grad_norm": 0.0625755786895752,
+ "learning_rate": 0.00031099663080516186,
+ "loss": 1.962731957435608,
+ "step": 1821
+ },
+ {
+ "epoch": 25.306620209059233,
+ "grad_norm": 0.06357678025960922,
+ "learning_rate": 0.0003107301376899327,
+ "loss": 1.9442671537399292,
+ "step": 1822
+ },
+ {
+ "epoch": 25.320557491289197,
+ "grad_norm": 0.062150172889232635,
+ "learning_rate": 0.00031046363834667123,
+ "loss": 1.9566235542297363,
+ "step": 1823
+ },
+ {
+ "epoch": 25.334494773519165,
+ "grad_norm": 0.061118803918361664,
+ "learning_rate": 0.00031019713299009123,
+ "loss": 1.9761946201324463,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34843205574913,
+ "grad_norm": 0.06331022083759308,
+ "learning_rate": 0.000309930621834911,
+ "loss": 1.9509797096252441,
+ "step": 1825
+ },
+ {
+ "epoch": 25.362369337979093,
+ "grad_norm": 0.06341579556465149,
+ "learning_rate": 0.0003096641050958541,
+ "loss": 1.9654616117477417,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37630662020906,
+ "grad_norm": 0.061316221952438354,
+ "learning_rate": 0.00030939758298764795,
+ "loss": 1.9767422676086426,
+ "step": 1827
+ },
+ {
+ "epoch": 25.390243902439025,
+ "grad_norm": 0.06411541253328323,
+ "learning_rate": 0.00030913105572502483,
+ "loss": 1.985473394393921,
+ "step": 1828
+ },
+ {
+ "epoch": 25.40418118466899,
+ "grad_norm": 0.061624426394701004,
+ "learning_rate": 0.00030886452352272095,
+ "loss": 1.9730801582336426,
+ "step": 1829
+ },
+ {
+ "epoch": 25.418118466898953,
+ "grad_norm": 0.06127973645925522,
+ "learning_rate": 0.00030859798659547624,
+ "loss": 1.9568986892700195,
+ "step": 1830
+ },
+ {
+ "epoch": 25.43205574912892,
+ "grad_norm": 0.06366631388664246,
+ "learning_rate": 0.0003083314451580349,
+ "loss": 1.9778714179992676,
+ "step": 1831
+ },
+ {
+ "epoch": 25.445993031358885,
+ "grad_norm": 0.06436672061681747,
+ "learning_rate": 0.0003080648994251445,
+ "loss": 1.9750032424926758,
+ "step": 1832
+ },
+ {
+ "epoch": 25.45993031358885,
+ "grad_norm": 0.06266232579946518,
+ "learning_rate": 0.0003077983496115561,
+ "loss": 1.9691630601882935,
+ "step": 1833
+ },
+ {
+ "epoch": 25.473867595818817,
+ "grad_norm": 0.06091330945491791,
+ "learning_rate": 0.00030753179593202406,
+ "loss": 1.9596004486083984,
+ "step": 1834
+ },
+ {
+ "epoch": 25.48780487804878,
+ "grad_norm": 0.0609268881380558,
+ "learning_rate": 0.0003072652386013059,
+ "loss": 1.9919569492340088,
+ "step": 1835
+ },
+ {
+ "epoch": 25.501742160278745,
+ "grad_norm": 0.06318292021751404,
+ "learning_rate": 0.00030699867783416207,
+ "loss": 1.9675531387329102,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51567944250871,
+ "grad_norm": 0.061429619789123535,
+ "learning_rate": 0.0003067321138453557,
+ "loss": 1.966346263885498,
+ "step": 1837
+ },
+ {
+ "epoch": 25.529616724738677,
+ "grad_norm": 0.06276095658540726,
+ "learning_rate": 0.0003064655468496527,
+ "loss": 1.9983158111572266,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54355400696864,
+ "grad_norm": 0.06198902055621147,
+ "learning_rate": 0.0003061989770618211,
+ "loss": 1.9685490131378174,
+ "step": 1839
+ },
+ {
+ "epoch": 25.557491289198605,
+ "grad_norm": 0.06335171312093735,
+ "learning_rate": 0.00030593240469663154,
+ "loss": 1.9861736297607422,
+ "step": 1840
+ },
+ {
+ "epoch": 25.571428571428573,
+ "grad_norm": 0.06267495453357697,
+ "learning_rate": 0.0003056658299688563,
+ "loss": 1.9693151712417603,
+ "step": 1841
+ },
+ {
+ "epoch": 25.585365853658537,
+ "grad_norm": 0.061308011412620544,
+ "learning_rate": 0.00030539925309327017,
+ "loss": 1.9826204776763916,
+ "step": 1842
+ },
+ {
+ "epoch": 25.5993031358885,
+ "grad_norm": 0.06606099754571915,
+ "learning_rate": 0.0003051326742846491,
+ "loss": 1.985427737236023,
+ "step": 1843
+ },
+ {
+ "epoch": 25.613240418118465,
+ "grad_norm": 0.06353887170553207,
+ "learning_rate": 0.000304866093757771,
+ "loss": 1.963585615158081,
+ "step": 1844
+ },
+ {
+ "epoch": 25.627177700348433,
+ "grad_norm": 0.06360059976577759,
+ "learning_rate": 0.00030459951172741474,
+ "loss": 1.9840047359466553,
+ "step": 1845
+ },
+ {
+ "epoch": 25.641114982578397,
+ "grad_norm": 0.06275399029254913,
+ "learning_rate": 0.0003043329284083609,
+ "loss": 1.9865367412567139,
+ "step": 1846
+ },
+ {
+ "epoch": 25.65505226480836,
+ "grad_norm": 0.061826832592487335,
+ "learning_rate": 0.00030406634401539053,
+ "loss": 1.9746454954147339,
+ "step": 1847
+ },
+ {
+ "epoch": 25.66898954703833,
+ "grad_norm": 0.06373758614063263,
+ "learning_rate": 0.00030379975876328614,
+ "loss": 1.970570683479309,
+ "step": 1848
+ },
+ {
+ "epoch": 25.682926829268293,
+ "grad_norm": 0.06198093667626381,
+ "learning_rate": 0.00030353317286683053,
+ "loss": 1.9856860637664795,
+ "step": 1849
+ },
+ {
+ "epoch": 25.696864111498257,
+ "grad_norm": 0.06512428820133209,
+ "learning_rate": 0.0003032665865408073,
+ "loss": 1.9919607639312744,
+ "step": 1850
+ },
+ {
+ "epoch": 25.71080139372822,
+ "grad_norm": 0.06516636162996292,
+ "learning_rate": 0.000303,
+ "loss": 1.9930028915405273,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72473867595819,
+ "grad_norm": 0.06129363179206848,
+ "learning_rate": 0.0003027334134591926,
+ "loss": 1.9975836277008057,
+ "step": 1852
+ },
+ {
+ "epoch": 25.738675958188153,
+ "grad_norm": 0.06420517712831497,
+ "learning_rate": 0.00030246682713316945,
+ "loss": 1.9728800058364868,
+ "step": 1853
+ },
+ {
+ "epoch": 25.752613240418118,
+ "grad_norm": 0.06342366337776184,
+ "learning_rate": 0.0003022002412367138,
+ "loss": 1.989312767982483,
+ "step": 1854
+ },
+ {
+ "epoch": 25.766550522648085,
+ "grad_norm": 0.061576031148433685,
+ "learning_rate": 0.00030193365598460946,
+ "loss": 1.9859075546264648,
+ "step": 1855
+ },
+ {
+ "epoch": 25.78048780487805,
+ "grad_norm": 0.0607769675552845,
+ "learning_rate": 0.0003016670715916391,
+ "loss": 1.967139482498169,
+ "step": 1856
+ },
+ {
+ "epoch": 25.794425087108014,
+ "grad_norm": 0.06282363831996918,
+ "learning_rate": 0.00030140048827258524,
+ "loss": 1.9849177598953247,
+ "step": 1857
+ },
+ {
+ "epoch": 25.808362369337978,
+ "grad_norm": 0.06485171616077423,
+ "learning_rate": 0.0003011339062422289,
+ "loss": 1.9944510459899902,
+ "step": 1858
+ },
+ {
+ "epoch": 25.822299651567945,
+ "grad_norm": 0.06280137598514557,
+ "learning_rate": 0.00030086732571535076,
+ "loss": 1.9957447052001953,
+ "step": 1859
+ },
+ {
+ "epoch": 25.83623693379791,
+ "grad_norm": 0.06692720204591751,
+ "learning_rate": 0.0003006007469067297,
+ "loss": 1.9829119443893433,
+ "step": 1860
+ },
+ {
+ "epoch": 25.850174216027874,
+ "grad_norm": 0.06662958860397339,
+ "learning_rate": 0.0003003341700311436,
+ "loss": 1.9788072109222412,
+ "step": 1861
+ },
+ {
+ "epoch": 25.86411149825784,
+ "grad_norm": 0.06748583912849426,
+ "learning_rate": 0.0003000675953033685,
+ "loss": 1.9959502220153809,
+ "step": 1862
+ },
+ {
+ "epoch": 25.878048780487806,
+ "grad_norm": 0.06759459525346756,
+ "learning_rate": 0.0002998010229381789,
+ "loss": 1.9947572946548462,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89198606271777,
+ "grad_norm": 0.06492980569601059,
+ "learning_rate": 0.0002995344531503474,
+ "loss": 1.9897825717926025,
+ "step": 1864
+ },
+ {
+ "epoch": 25.905923344947734,
+ "grad_norm": 0.06660535931587219,
+ "learning_rate": 0.0002992678861546442,
+ "loss": 1.9906097650527954,
+ "step": 1865
+ },
+ {
+ "epoch": 25.9198606271777,
+ "grad_norm": 0.06545855104923248,
+ "learning_rate": 0.00029900132216583786,
+ "loss": 1.9963207244873047,
+ "step": 1866
+ },
+ {
+ "epoch": 25.933797909407666,
+ "grad_norm": 0.06479988992214203,
+ "learning_rate": 0.0002987347613986941,
+ "loss": 1.994144082069397,
+ "step": 1867
+ },
+ {
+ "epoch": 25.94773519163763,
+ "grad_norm": 0.06334878504276276,
+ "learning_rate": 0.0002984682040679759,
+ "loss": 1.9909017086029053,
+ "step": 1868
+ },
+ {
+ "epoch": 25.961672473867594,
+ "grad_norm": 0.06454301625490189,
+ "learning_rate": 0.00029820165038844395,
+ "loss": 1.985898494720459,
+ "step": 1869
+ },
+ {
+ "epoch": 25.975609756097562,
+ "grad_norm": 0.06418111175298691,
+ "learning_rate": 0.00029793510057485556,
+ "loss": 1.9789021015167236,
+ "step": 1870
+ },
+ {
+ "epoch": 25.989547038327526,
+ "grad_norm": 0.06766562163829803,
+ "learning_rate": 0.00029766855484196513,
+ "loss": 2.0054125785827637,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.05154159665107727,
+ "learning_rate": 0.0002974020134045238,
+ "loss": 1.4703314304351807,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 0.6342733502388,
+ "eval_runtime": 40.7553,
+ "eval_samples_per_second": 59.919,
+ "eval_steps_per_second": 0.491,
+ "step": 1872
+ },
+ {
+ "epoch": 26.013937282229964,
+ "grad_norm": 0.06601504236459732,
+ "learning_rate": 0.00029713547647727904,
+ "loss": 1.9541187286376953,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027874564459932,
+ "grad_norm": 0.06637415289878845,
+ "learning_rate": 0.00029686894427497515,
+ "loss": 1.9444429874420166,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041811846689896,
+ "grad_norm": 0.06102657690644264,
+ "learning_rate": 0.0002966024170123519,
+ "loss": 1.9523404836654663,
+ "step": 1875
+ },
+ {
+ "epoch": 26.05574912891986,
+ "grad_norm": 0.06154332309961319,
+ "learning_rate": 0.0002963358949041459,
+ "loss": 1.9392805099487305,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069686411149824,
+ "grad_norm": 0.06383806467056274,
+ "learning_rate": 0.00029606937816508897,
+ "loss": 1.9280699491500854,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083623693379792,
+ "grad_norm": 0.05950536951422691,
+ "learning_rate": 0.00029580286700990887,
+ "loss": 1.9510209560394287,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097560975609756,
+ "grad_norm": 0.06285396963357925,
+ "learning_rate": 0.00029553636165332876,
+ "loss": 1.9589542150497437,
+ "step": 1879
+ },
+ {
+ "epoch": 26.11149825783972,
+ "grad_norm": 0.06018277257680893,
+ "learning_rate": 0.0002952698623100673,
+ "loss": 1.9556975364685059,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125435540069688,
+ "grad_norm": 0.06558576226234436,
+ "learning_rate": 0.0002950033691948382,
+ "loss": 1.9427529573440552,
+ "step": 1881
+ },
+ {
+ "epoch": 26.139372822299652,
+ "grad_norm": 0.06511088460683823,
+ "learning_rate": 0.00029473688252234994,
+ "loss": 1.9552985429763794,
+ "step": 1882
+ },
+ {
+ "epoch": 26.153310104529616,
+ "grad_norm": 0.06098657473921776,
+ "learning_rate": 0.0002944704025073064,
+ "loss": 1.9433622360229492,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16724738675958,
+ "grad_norm": 0.059983622282743454,
+ "learning_rate": 0.00029420392936440525,
+ "loss": 1.940507411956787,
+ "step": 1884
+ },
+ {
+ "epoch": 26.181184668989548,
+ "grad_norm": 0.06048520654439926,
+ "learning_rate": 0.00029393746330833953,
+ "loss": 1.936924695968628,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195121951219512,
+ "grad_norm": 0.06227855011820793,
+ "learning_rate": 0.0002936710045537959,
+ "loss": 1.93827486038208,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209059233449477,
+ "grad_norm": 0.06222425028681755,
+ "learning_rate": 0.0002934045533154554,
+ "loss": 1.9474766254425049,
+ "step": 1887
+ },
+ {
+ "epoch": 26.222996515679444,
+ "grad_norm": 0.06104688346385956,
+ "learning_rate": 0.00029313810980799296,
+ "loss": 1.9336830377578735,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23693379790941,
+ "grad_norm": 0.061554424464702606,
+ "learning_rate": 0.00029287167424607726,
+ "loss": 1.9518358707427979,
+ "step": 1889
+ },
+ {
+ "epoch": 26.250871080139373,
+ "grad_norm": 0.06273443251848221,
+ "learning_rate": 0.00029260524684437077,
+ "loss": 1.940516710281372,
+ "step": 1890
+ },
+ {
+ "epoch": 26.264808362369337,
+ "grad_norm": 0.05902065709233284,
+ "learning_rate": 0.00029233882781752905,
+ "loss": 1.9311795234680176,
+ "step": 1891
+ },
+ {
+ "epoch": 26.278745644599304,
+ "grad_norm": 0.0626775324344635,
+ "learning_rate": 0.00029207241738020136,
+ "loss": 1.9473145008087158,
+ "step": 1892
+ },
+ {
+ "epoch": 26.29268292682927,
+ "grad_norm": 0.05936308950185776,
+ "learning_rate": 0.0002918060157470294,
+ "loss": 1.946176290512085,
+ "step": 1893
+ },
+ {
+ "epoch": 26.306620209059233,
+ "grad_norm": 0.06098832190036774,
+ "learning_rate": 0.00029153962313264856,
+ "loss": 1.9415948390960693,
+ "step": 1894
+ },
+ {
+ "epoch": 26.320557491289197,
+ "grad_norm": 0.06257472187280655,
+ "learning_rate": 0.0002912732397516862,
+ "loss": 1.9476375579833984,
+ "step": 1895
+ },
+ {
+ "epoch": 26.334494773519165,
+ "grad_norm": 0.06173890084028244,
+ "learning_rate": 0.00029100686581876283,
+ "loss": 1.9434869289398193,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34843205574913,
+ "grad_norm": 0.0614108070731163,
+ "learning_rate": 0.0002907405015484911,
+ "loss": 1.9595987796783447,
+ "step": 1897
+ },
+ {
+ "epoch": 26.362369337979093,
+ "grad_norm": 0.06131064146757126,
+ "learning_rate": 0.0002904741471554758,
+ "loss": 1.9638384580612183,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37630662020906,
+ "grad_norm": 0.0620097853243351,
+ "learning_rate": 0.0002902078028543139,
+ "loss": 1.9308812618255615,
+ "step": 1899
+ },
+ {
+ "epoch": 26.390243902439025,
+ "grad_norm": 0.06417243927717209,
+ "learning_rate": 0.00028994146885959416,
+ "loss": 1.9541051387786865,
+ "step": 1900
+ },
+ {
+ "epoch": 26.40418118466899,
+ "grad_norm": 0.061548616737127304,
+ "learning_rate": 0.00028967514538589715,
+ "loss": 1.9431400299072266,
+ "step": 1901
+ },
+ {
+ "epoch": 26.418118466898953,
+ "grad_norm": 0.0631798654794693,
+ "learning_rate": 0.0002894088326477947,
+ "loss": 1.9591906070709229,
+ "step": 1902
+ },
+ {
+ "epoch": 26.43205574912892,
+ "grad_norm": 0.06283508986234665,
+ "learning_rate": 0.0002891425308598503,
+ "loss": 1.943403720855713,
+ "step": 1903
+ },
+ {
+ "epoch": 26.445993031358885,
+ "grad_norm": 0.06297212839126587,
+ "learning_rate": 0.00028887624023661866,
+ "loss": 1.9608395099639893,
+ "step": 1904
+ },
+ {
+ "epoch": 26.45993031358885,
+ "grad_norm": 0.06354014575481415,
+ "learning_rate": 0.00028860996099264505,
+ "loss": 1.9444423913955688,
+ "step": 1905
+ },
+ {
+ "epoch": 26.473867595818817,
+ "grad_norm": 0.06168603152036667,
+ "learning_rate": 0.000288343693342466,
+ "loss": 1.9628558158874512,
+ "step": 1906
+ },
+ {
+ "epoch": 26.48780487804878,
+ "grad_norm": 0.06447484344244003,
+ "learning_rate": 0.00028807743750060847,
+ "loss": 1.9654959440231323,
+ "step": 1907
+ },
+ {
+ "epoch": 26.501742160278745,
+ "grad_norm": 0.06281430274248123,
+ "learning_rate": 0.00028781119368159004,
+ "loss": 1.9553298950195312,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51567944250871,
+ "grad_norm": 0.06198422610759735,
+ "learning_rate": 0.00028754496209991843,
+ "loss": 1.9523322582244873,
+ "step": 1909
+ },
+ {
+ "epoch": 26.529616724738677,
+ "grad_norm": 0.062765933573246,
+ "learning_rate": 0.0002872787429700917,
+ "loss": 1.9606122970581055,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54355400696864,
+ "grad_norm": 0.06762545555830002,
+ "learning_rate": 0.0002870125365065979,
+ "loss": 1.9565579891204834,
+ "step": 1911
+ },
+ {
+ "epoch": 26.557491289198605,
+ "grad_norm": 0.06395747512578964,
+ "learning_rate": 0.00028674634292391463,
+ "loss": 1.962345838546753,
+ "step": 1912
+ },
+ {
+ "epoch": 26.571428571428573,
+ "grad_norm": 0.060820501297712326,
+ "learning_rate": 0.0002864801624365093,
+ "loss": 1.9698963165283203,
+ "step": 1913
+ },
+ {
+ "epoch": 26.585365853658537,
+ "grad_norm": 0.0644717738032341,
+ "learning_rate": 0.0002862139952588387,
+ "loss": 1.9503817558288574,
+ "step": 1914
+ },
+ {
+ "epoch": 26.5993031358885,
+ "grad_norm": 0.06223372370004654,
+ "learning_rate": 0.000285947841605349,
+ "loss": 1.9556928873062134,
+ "step": 1915
+ },
+ {
+ "epoch": 26.613240418118465,
+ "grad_norm": 0.0660606324672699,
+ "learning_rate": 0.00028568170169047523,
+ "loss": 1.9794392585754395,
+ "step": 1916
+ },
+ {
+ "epoch": 26.627177700348433,
+ "grad_norm": 0.06215149909257889,
+ "learning_rate": 0.00028541557572864154,
+ "loss": 1.956440806388855,
+ "step": 1917
+ },
+ {
+ "epoch": 26.641114982578397,
+ "grad_norm": 0.06647448241710663,
+ "learning_rate": 0.000285149463934261,
+ "loss": 1.9618154764175415,
+ "step": 1918
+ },
+ {
+ "epoch": 26.65505226480836,
+ "grad_norm": 0.06702937185764313,
+ "learning_rate": 0.0002848833665217349,
+ "loss": 1.9652760028839111,
+ "step": 1919
+ },
+ {
+ "epoch": 26.66898954703833,
+ "grad_norm": 0.06669468432664871,
+ "learning_rate": 0.0002846172837054532,
+ "loss": 1.9627275466918945,
+ "step": 1920
+ },
+ {
+ "epoch": 26.682926829268293,
+ "grad_norm": 0.06321994960308075,
+ "learning_rate": 0.0002843512156997939,
+ "loss": 1.966722846031189,
+ "step": 1921
+ },
+ {
+ "epoch": 26.696864111498257,
+ "grad_norm": 0.06267281621694565,
+ "learning_rate": 0.0002840851627191234,
+ "loss": 1.9646657705307007,
+ "step": 1922
+ },
+ {
+ "epoch": 26.71080139372822,
+ "grad_norm": 0.06576424092054367,
+ "learning_rate": 0.0002838191249777955,
+ "loss": 1.950223445892334,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72473867595819,
+ "grad_norm": 0.06047007441520691,
+ "learning_rate": 0.00028355310269015225,
+ "loss": 1.9768667221069336,
+ "step": 1924
+ },
+ {
+ "epoch": 26.738675958188153,
+ "grad_norm": 0.06493274867534637,
+ "learning_rate": 0.00028328709607052297,
+ "loss": 1.9484598636627197,
+ "step": 1925
+ },
+ {
+ "epoch": 26.752613240418118,
+ "grad_norm": 0.06330715864896774,
+ "learning_rate": 0.0002830211053332242,
+ "loss": 1.9732015132904053,
+ "step": 1926
+ },
+ {
+ "epoch": 26.766550522648085,
+ "grad_norm": 0.06184522062540054,
+ "learning_rate": 0.0002827551306925601,
+ "loss": 1.9706918001174927,
+ "step": 1927
+ },
+ {
+ "epoch": 26.78048780487805,
+ "grad_norm": 0.06290240585803986,
+ "learning_rate": 0.00028248917236282147,
+ "loss": 1.9614533185958862,
+ "step": 1928
+ },
+ {
+ "epoch": 26.794425087108014,
+ "grad_norm": 0.06381867825984955,
+ "learning_rate": 0.0002822232305582863,
+ "loss": 1.960871934890747,
+ "step": 1929
+ },
+ {
+ "epoch": 26.808362369337978,
+ "grad_norm": 0.061407096683979034,
+ "learning_rate": 0.0002819573054932188,
+ "loss": 1.970398187637329,
+ "step": 1930
+ },
+ {
+ "epoch": 26.822299651567945,
+ "grad_norm": 0.06511857360601425,
+ "learning_rate": 0.0002816913973818703,
+ "loss": 1.9459114074707031,
+ "step": 1931
+ },
+ {
+ "epoch": 26.83623693379791,
+ "grad_norm": 0.06411094218492508,
+ "learning_rate": 0.0002814255064384781,
+ "loss": 1.948549509048462,
+ "step": 1932
+ },
+ {
+ "epoch": 26.850174216027874,
+ "grad_norm": 0.06509149819612503,
+ "learning_rate": 0.00028115963287726563,
+ "loss": 1.9682888984680176,
+ "step": 1933
+ },
+ {
+ "epoch": 26.86411149825784,
+ "grad_norm": 0.06972374022006989,
+ "learning_rate": 0.0002808937769124425,
+ "loss": 1.9887568950653076,
+ "step": 1934
+ },
+ {
+ "epoch": 26.878048780487806,
+ "grad_norm": 0.07100297510623932,
+ "learning_rate": 0.000280627938758204,
+ "loss": 1.9728631973266602,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89198606271777,
+ "grad_norm": 0.06550271809101105,
+ "learning_rate": 0.00028036211862873117,
+ "loss": 1.9675276279449463,
+ "step": 1936
+ },
+ {
+ "epoch": 26.905923344947734,
+ "grad_norm": 0.06671806424856186,
+ "learning_rate": 0.0002800963167381904,
+ "loss": 1.985438346862793,
+ "step": 1937
+ },
+ {
+ "epoch": 26.9198606271777,
+ "grad_norm": 0.0698300451040268,
+ "learning_rate": 0.00027983053330073355,
+ "loss": 1.9645981788635254,
+ "step": 1938
+ },
+ {
+ "epoch": 26.933797909407666,
+ "grad_norm": 0.06594336032867432,
+ "learning_rate": 0.00027956476853049765,
+ "loss": 1.9659535884857178,
+ "step": 1939
+ },
+ {
+ "epoch": 26.94773519163763,
+ "grad_norm": 0.06825239211320877,
+ "learning_rate": 0.00027929902264160435,
+ "loss": 1.9709006547927856,
+ "step": 1940
+ },
+ {
+ "epoch": 26.961672473867594,
+ "grad_norm": 0.06996344029903412,
+ "learning_rate": 0.00027903329584816046,
+ "loss": 1.9777134656906128,
+ "step": 1941
+ },
+ {
+ "epoch": 26.975609756097562,
+ "grad_norm": 0.06491006910800934,
+ "learning_rate": 0.0002787675883642572,
+ "loss": 1.9659584760665894,
+ "step": 1942
+ },
+ {
+ "epoch": 26.989547038327526,
+ "grad_norm": 0.06465473026037216,
+ "learning_rate": 0.00027850190040397036,
+ "loss": 1.9739830493927002,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.05315341055393219,
+ "learning_rate": 0.00027823623218135976,
+ "loss": 1.480682373046875,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 0.6356088519096375,
+ "eval_runtime": 36.5058,
+ "eval_samples_per_second": 66.893,
+ "eval_steps_per_second": 0.548,
+ "step": 1944
+ },
+ {
+ "epoch": 27.013937282229964,
+ "grad_norm": 0.061814989894628525,
+ "learning_rate": 0.0002779705839104697,
+ "loss": 1.9167797565460205,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027874564459932,
+ "grad_norm": 0.06356564909219742,
+ "learning_rate": 0.0002777049558053281,
+ "loss": 1.927583932876587,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041811846689896,
+ "grad_norm": 0.06118980795145035,
+ "learning_rate": 0.0002774393480799466,
+ "loss": 1.9252214431762695,
+ "step": 1947
+ },
+ {
+ "epoch": 27.05574912891986,
+ "grad_norm": 0.059413257986307144,
+ "learning_rate": 0.00027717376094832076,
+ "loss": 1.9219372272491455,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069686411149824,
+ "grad_norm": 0.06260813027620316,
+ "learning_rate": 0.0002769081946244293,
+ "loss": 1.922504186630249,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083623693379792,
+ "grad_norm": 0.061976976692676544,
+ "learning_rate": 0.00027664264932223407,
+ "loss": 1.9327895641326904,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097560975609756,
+ "grad_norm": 0.059954315423965454,
+ "learning_rate": 0.00027637712525568024,
+ "loss": 1.9138646125793457,
+ "step": 1951
+ },
+ {
+ "epoch": 27.11149825783972,
+ "grad_norm": 0.06157257780432701,
+ "learning_rate": 0.0002761116226386958,
+ "loss": 1.9266639947891235,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125435540069688,
+ "grad_norm": 0.06179584190249443,
+ "learning_rate": 0.00027584614168519125,
+ "loss": 1.9255129098892212,
+ "step": 1953
+ },
+ {
+ "epoch": 27.139372822299652,
+ "grad_norm": 0.0608953982591629,
+ "learning_rate": 0.00027558068260905976,
+ "loss": 1.9159553050994873,
+ "step": 1954
+ },
+ {
+ "epoch": 27.153310104529616,
+ "grad_norm": 0.06067467853426933,
+ "learning_rate": 0.00027531524562417734,
+ "loss": 1.9260437488555908,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16724738675958,
+ "grad_norm": 0.06343036144971848,
+ "learning_rate": 0.00027504983094440126,
+ "loss": 1.9118573665618896,
+ "step": 1956
+ },
+ {
+ "epoch": 27.181184668989548,
+ "grad_norm": 0.06201693415641785,
+ "learning_rate": 0.0002747844387835716,
+ "loss": 1.9324994087219238,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195121951219512,
+ "grad_norm": 0.06198827177286148,
+ "learning_rate": 0.0002745190693555099,
+ "loss": 1.9376416206359863,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209059233449477,
+ "grad_norm": 0.06404320895671844,
+ "learning_rate": 0.0002742537228740197,
+ "loss": 1.9419097900390625,
+ "step": 1959
+ },
+ {
+ "epoch": 27.222996515679444,
+ "grad_norm": 0.062050990760326385,
+ "learning_rate": 0.00027398839955288575,
+ "loss": 1.9205586910247803,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23693379790941,
+ "grad_norm": 0.05903782323002815,
+ "learning_rate": 0.00027372309960587424,
+ "loss": 1.9344040155410767,
+ "step": 1961
+ },
+ {
+ "epoch": 27.250871080139373,
+ "grad_norm": 0.06662431359291077,
+ "learning_rate": 0.0002734578232467327,
+ "loss": 1.9293982982635498,
+ "step": 1962
+ },
+ {
+ "epoch": 27.264808362369337,
+ "grad_norm": 0.06605469435453415,
+ "learning_rate": 0.0002731925706891891,
+ "loss": 1.9288328886032104,
+ "step": 1963
+ },
+ {
+ "epoch": 27.278745644599304,
+ "grad_norm": 0.062087010592222214,
+ "learning_rate": 0.0002729273421469532,
+ "loss": 1.9324290752410889,
+ "step": 1964
+ },
+ {
+ "epoch": 27.29268292682927,
+ "grad_norm": 0.062059979885816574,
+ "learning_rate": 0.00027266213783371434,
+ "loss": 1.933382272720337,
+ "step": 1965
+ },
+ {
+ "epoch": 27.306620209059233,
+ "grad_norm": 0.06283893436193466,
+ "learning_rate": 0.00027239695796314327,
+ "loss": 1.9310166835784912,
+ "step": 1966
+ },
+ {
+ "epoch": 27.320557491289197,
+ "grad_norm": 0.062266793102025986,
+ "learning_rate": 0.0002721318027488902,
+ "loss": 1.9510637521743774,
+ "step": 1967
+ },
+ {
+ "epoch": 27.334494773519165,
+ "grad_norm": 0.0629708543419838,
+ "learning_rate": 0.00027186667240458617,
+ "loss": 1.921417236328125,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34843205574913,
+ "grad_norm": 0.0634312853217125,
+ "learning_rate": 0.0002716015671438419,
+ "loss": 1.9262259006500244,
+ "step": 1969
+ },
+ {
+ "epoch": 27.362369337979093,
+ "grad_norm": 0.062355365604162216,
+ "learning_rate": 0.0002713364871802478,
+ "loss": 1.9553534984588623,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37630662020906,
+ "grad_norm": 0.06175858899950981,
+ "learning_rate": 0.0002710714327273741,
+ "loss": 1.939396858215332,
+ "step": 1971
+ },
+ {
+ "epoch": 27.390243902439025,
+ "grad_norm": 0.06311390548944473,
+ "learning_rate": 0.0002708064039987704,
+ "loss": 1.9329023361206055,
+ "step": 1972
+ },
+ {
+ "epoch": 27.40418118466899,
+ "grad_norm": 0.062033023685216904,
+ "learning_rate": 0.00027054140120796546,
+ "loss": 1.9308583736419678,
+ "step": 1973
+ },
+ {
+ "epoch": 27.418118466898953,
+ "grad_norm": 0.06312143802642822,
+ "learning_rate": 0.0002702764245684672,
+ "loss": 1.9487743377685547,
+ "step": 1974
+ },
+ {
+ "epoch": 27.43205574912892,
+ "grad_norm": 0.0649493932723999,
+ "learning_rate": 0.0002700114742937627,
+ "loss": 1.9450247287750244,
+ "step": 1975
+ },
+ {
+ "epoch": 27.445993031358885,
+ "grad_norm": 0.0623517744243145,
+ "learning_rate": 0.00026974655059731754,
+ "loss": 1.9420899152755737,
+ "step": 1976
+ },
+ {
+ "epoch": 27.45993031358885,
+ "grad_norm": 0.06679189950227737,
+ "learning_rate": 0.0002694816536925759,
+ "loss": 1.9443024396896362,
+ "step": 1977
+ },
+ {
+ "epoch": 27.473867595818817,
+ "grad_norm": 0.06560137122869492,
+ "learning_rate": 0.00026921678379296057,
+ "loss": 1.953552484512329,
+ "step": 1978
+ },
+ {
+ "epoch": 27.48780487804878,
+ "grad_norm": 0.06294484436511993,
+ "learning_rate": 0.0002689519411118722,
+ "loss": 1.9333667755126953,
+ "step": 1979
+ },
+ {
+ "epoch": 27.501742160278745,
+ "grad_norm": 0.06416776031255722,
+ "learning_rate": 0.00026868712586269,
+ "loss": 1.950608491897583,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51567944250871,
+ "grad_norm": 0.06297886371612549,
+ "learning_rate": 0.00026842233825877064,
+ "loss": 1.9374010562896729,
+ "step": 1981
+ },
+ {
+ "epoch": 27.529616724738677,
+ "grad_norm": 0.06346481293439865,
+ "learning_rate": 0.0002681575785134487,
+ "loss": 1.9292755126953125,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54355400696864,
+ "grad_norm": 0.06401345133781433,
+ "learning_rate": 0.0002678928468400366,
+ "loss": 1.9518835544586182,
+ "step": 1983
+ },
+ {
+ "epoch": 27.557491289198605,
+ "grad_norm": 0.06174371764063835,
+ "learning_rate": 0.00026762814345182367,
+ "loss": 1.9246001243591309,
+ "step": 1984
+ },
+ {
+ "epoch": 27.571428571428573,
+ "grad_norm": 0.06687969714403152,
+ "learning_rate": 0.0002673634685620767,
+ "loss": 1.9456532001495361,
+ "step": 1985
+ },
+ {
+ "epoch": 27.585365853658537,
+ "grad_norm": 0.06487233936786652,
+ "learning_rate": 0.0002670988223840393,
+ "loss": 1.9369590282440186,
+ "step": 1986
+ },
+ {
+ "epoch": 27.5993031358885,
+ "grad_norm": 0.06265441328287125,
+ "learning_rate": 0.0002668342051309324,
+ "loss": 1.9478905200958252,
+ "step": 1987
+ },
+ {
+ "epoch": 27.613240418118465,
+ "grad_norm": 0.06444588303565979,
+ "learning_rate": 0.00026656961701595306,
+ "loss": 1.923633098602295,
+ "step": 1988
+ },
+ {
+ "epoch": 27.627177700348433,
+ "grad_norm": 0.06363383680582047,
+ "learning_rate": 0.0002663050582522753,
+ "loss": 1.9642283916473389,
+ "step": 1989
+ },
+ {
+ "epoch": 27.641114982578397,
+ "grad_norm": 0.06589404493570328,
+ "learning_rate": 0.00026604052905304946,
+ "loss": 1.9349925518035889,
+ "step": 1990
+ },
+ {
+ "epoch": 27.65505226480836,
+ "grad_norm": 0.0630272924900055,
+ "learning_rate": 0.00026577602963140156,
+ "loss": 1.9420092105865479,
+ "step": 1991
+ },
+ {
+ "epoch": 27.66898954703833,
+ "grad_norm": 0.06480628997087479,
+ "learning_rate": 0.0002655115602004345,
+ "loss": 1.9431254863739014,
+ "step": 1992
+ },
+ {
+ "epoch": 27.682926829268293,
+ "grad_norm": 0.0632273331284523,
+ "learning_rate": 0.00026524712097322604,
+ "loss": 1.9446561336517334,
+ "step": 1993
+ },
+ {
+ "epoch": 27.696864111498257,
+ "grad_norm": 0.06315293163061142,
+ "learning_rate": 0.0002649827121628305,
+ "loss": 1.9283469915390015,
+ "step": 1994
+ },
+ {
+ "epoch": 27.71080139372822,
+ "grad_norm": 0.0651608556509018,
+ "learning_rate": 0.00026471833398227694,
+ "loss": 1.938418984413147,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72473867595819,
+ "grad_norm": 0.06380520761013031,
+ "learning_rate": 0.0002644539866445703,
+ "loss": 1.9424567222595215,
+ "step": 1996
+ },
+ {
+ "epoch": 27.738675958188153,
+ "grad_norm": 0.0646371841430664,
+ "learning_rate": 0.00026418967036269045,
+ "loss": 1.9451972246170044,
+ "step": 1997
+ },
+ {
+ "epoch": 27.752613240418118,
+ "grad_norm": 0.06506325304508209,
+ "learning_rate": 0.0002639253853495921,
+ "loss": 1.9419035911560059,
+ "step": 1998
+ },
+ {
+ "epoch": 27.766550522648085,
+ "grad_norm": 0.06286903470754623,
+ "learning_rate": 0.00026366113181820506,
+ "loss": 1.9452807903289795,
+ "step": 1999
+ },
+ {
+ "epoch": 27.78048780487805,
+ "grad_norm": 0.06661684811115265,
+ "learning_rate": 0.00026339690998143346,
+ "loss": 1.9469493627548218,
+ "step": 2000
+ },
+ {
+ "epoch": 27.794425087108014,
+ "grad_norm": 0.06329949200153351,
+ "learning_rate": 0.00026313272005215637,
+ "loss": 1.935401201248169,
+ "step": 2001
+ },
+ {
+ "epoch": 27.808362369337978,
+ "grad_norm": 0.06465955078601837,
+ "learning_rate": 0.00026286856224322645,
+ "loss": 1.9547067880630493,
+ "step": 2002
+ },
+ {
+ "epoch": 27.822299651567945,
+ "grad_norm": 0.06732604652643204,
+ "learning_rate": 0.00026260443676747114,
+ "loss": 1.9547715187072754,
+ "step": 2003
+ },
+ {
+ "epoch": 27.83623693379791,
+ "grad_norm": 0.0651276484131813,
+ "learning_rate": 0.00026234034383769157,
+ "loss": 1.9498482942581177,
+ "step": 2004
+ },
+ {
+ "epoch": 27.850174216027874,
+ "grad_norm": 0.06699621677398682,
+ "learning_rate": 0.0002620762836666625,
+ "loss": 1.9338326454162598,
+ "step": 2005
+ },
+ {
+ "epoch": 27.86411149825784,
+ "grad_norm": 0.0657275915145874,
+ "learning_rate": 0.00026181225646713257,
+ "loss": 1.9473168849945068,
+ "step": 2006
+ },
+ {
+ "epoch": 27.878048780487806,
+ "grad_norm": 0.06368435174226761,
+ "learning_rate": 0.0002615482624518236,
+ "loss": 1.9568496942520142,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89198606271777,
+ "grad_norm": 0.06439761072397232,
+ "learning_rate": 0.0002612843018334309,
+ "loss": 1.9380487203598022,
+ "step": 2008
+ },
+ {
+ "epoch": 27.905923344947734,
+ "grad_norm": 0.06287812441587448,
+ "learning_rate": 0.00026102037482462256,
+ "loss": 1.9562499523162842,
+ "step": 2009
+ },
+ {
+ "epoch": 27.9198606271777,
+ "grad_norm": 0.06544869393110275,
+ "learning_rate": 0.0002607564816380403,
+ "loss": 1.9567855596542358,
+ "step": 2010
+ },
+ {
+ "epoch": 27.933797909407666,
+ "grad_norm": 0.06412878632545471,
+ "learning_rate": 0.0002604926224862975,
+ "loss": 1.9528976678848267,
+ "step": 2011
+ },
+ {
+ "epoch": 27.94773519163763,
+ "grad_norm": 0.06460773944854736,
+ "learning_rate": 0.0002602287975819811,
+ "loss": 1.9536967277526855,
+ "step": 2012
+ },
+ {
+ "epoch": 27.961672473867594,
+ "grad_norm": 0.06466975808143616,
+ "learning_rate": 0.00025996500713765,
+ "loss": 1.9486842155456543,
+ "step": 2013
+ },
+ {
+ "epoch": 27.975609756097562,
+ "grad_norm": 0.0657997727394104,
+ "learning_rate": 0.0002597012513658352,
+ "loss": 1.9634342193603516,
+ "step": 2014
+ },
+ {
+ "epoch": 27.989547038327526,
+ "grad_norm": 0.06382985413074493,
+ "learning_rate": 0.00025943753047904026,
+ "loss": 1.951185941696167,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.05184071138501167,
+ "learning_rate": 0.0002591738446897401,
+ "loss": 1.450034737586975,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 0.6368818283081055,
+ "eval_runtime": 36.4264,
+ "eval_samples_per_second": 67.039,
+ "eval_steps_per_second": 0.549,
+ "step": 2016
+ },
+ {
+ "epoch": 28.013937282229964,
+ "grad_norm": 0.06179628521203995,
+ "learning_rate": 0.00025891019421038177,
+ "loss": 1.8983266353607178,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027874564459932,
+ "grad_norm": 0.06494797021150589,
+ "learning_rate": 0.00025864657925338345,
+ "loss": 1.9054467678070068,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041811846689896,
+ "grad_norm": 0.0576489195227623,
+ "learning_rate": 0.00025838300003113514,
+ "loss": 1.9130041599273682,
+ "step": 2019
+ },
+ {
+ "epoch": 28.05574912891986,
+ "grad_norm": 0.06085439771413803,
+ "learning_rate": 0.0002581194567559979,
+ "loss": 1.913049578666687,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069686411149824,
+ "grad_norm": 0.06129859387874603,
+ "learning_rate": 0.00025785594964030365,
+ "loss": 1.9181420803070068,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083623693379792,
+ "grad_norm": 0.06114889681339264,
+ "learning_rate": 0.0002575924788963554,
+ "loss": 1.905306339263916,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097560975609756,
+ "grad_norm": 0.05999523028731346,
+ "learning_rate": 0.0002573290447364268,
+ "loss": 1.9111361503601074,
+ "step": 2023
+ },
+ {
+ "epoch": 28.11149825783972,
+ "grad_norm": 0.059980180114507675,
+ "learning_rate": 0.0002570656473727619,
+ "loss": 1.9141806364059448,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125435540069688,
+ "grad_norm": 0.06263387203216553,
+ "learning_rate": 0.0002568022870175752,
+ "loss": 1.9160103797912598,
+ "step": 2025
+ },
+ {
+ "epoch": 28.139372822299652,
+ "grad_norm": 0.06106845661997795,
+ "learning_rate": 0.00025653896388305134,
+ "loss": 1.9279768466949463,
+ "step": 2026
+ },
+ {
+ "epoch": 28.153310104529616,
+ "grad_norm": 0.060402341187000275,
+ "learning_rate": 0.0002562756781813453,
+ "loss": 1.9093596935272217,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16724738675958,
+ "grad_norm": 0.062007319182157516,
+ "learning_rate": 0.00025601243012458126,
+ "loss": 1.9311325550079346,
+ "step": 2028
+ },
+ {
+ "epoch": 28.181184668989548,
+ "grad_norm": 0.06392303109169006,
+ "learning_rate": 0.00025574921992485366,
+ "loss": 1.9102120399475098,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195121951219512,
+ "grad_norm": 0.06318432092666626,
+ "learning_rate": 0.000255486047794226,
+ "loss": 1.919282078742981,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209059233449477,
+ "grad_norm": 0.06065482273697853,
+ "learning_rate": 0.0002552229139447316,
+ "loss": 1.9156081676483154,
+ "step": 2031
+ },
+ {
+ "epoch": 28.222996515679444,
+ "grad_norm": 0.061966441571712494,
+ "learning_rate": 0.00025495981858837235,
+ "loss": 1.914115071296692,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23693379790941,
+ "grad_norm": 0.06226721405982971,
+ "learning_rate": 0.0002546967619371195,
+ "loss": 1.9121596813201904,
+ "step": 2033
+ },
+ {
+ "epoch": 28.250871080139373,
+ "grad_norm": 0.06150427833199501,
+ "learning_rate": 0.0002544337442029133,
+ "loss": 1.9173963069915771,
+ "step": 2034
+ },
+ {
+ "epoch": 28.264808362369337,
+ "grad_norm": 0.06378372013568878,
+ "learning_rate": 0.00025417076559766194,
+ "loss": 1.909637451171875,
+ "step": 2035
+ },
+ {
+ "epoch": 28.278745644599304,
+ "grad_norm": 0.06366439908742905,
+ "learning_rate": 0.000253907826333243,
+ "loss": 1.9096641540527344,
+ "step": 2036
+ },
+ {
+ "epoch": 28.29268292682927,
+ "grad_norm": 0.0645628497004509,
+ "learning_rate": 0.00025364492662150145,
+ "loss": 1.919980525970459,
+ "step": 2037
+ },
+ {
+ "epoch": 28.306620209059233,
+ "grad_norm": 0.06325099617242813,
+ "learning_rate": 0.0002533820666742514,
+ "loss": 1.9110815525054932,
+ "step": 2038
+ },
+ {
+ "epoch": 28.320557491289197,
+ "grad_norm": 0.06190553680062294,
+ "learning_rate": 0.00025311924670327364,
+ "loss": 1.9132925271987915,
+ "step": 2039
+ },
+ {
+ "epoch": 28.334494773519165,
+ "grad_norm": 0.066350057721138,
+ "learning_rate": 0.00025285646692031804,
+ "loss": 1.9073128700256348,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34843205574913,
+ "grad_norm": 0.06301865726709366,
+ "learning_rate": 0.0002525937275371013,
+ "loss": 1.8958029747009277,
+ "step": 2041
+ },
+ {
+ "epoch": 28.362369337979093,
+ "grad_norm": 0.06601684540510178,
+ "learning_rate": 0.00025233102876530785,
+ "loss": 1.9298090934753418,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37630662020906,
+ "grad_norm": 0.06607081741094589,
+ "learning_rate": 0.0002520683708165894,
+ "loss": 1.9166982173919678,
+ "step": 2043
+ },
+ {
+ "epoch": 28.390243902439025,
+ "grad_norm": 0.06442136317491531,
+ "learning_rate": 0.0002518057539025646,
+ "loss": 1.901548981666565,
+ "step": 2044
+ },
+ {
+ "epoch": 28.40418118466899,
+ "grad_norm": 0.06346907466650009,
+ "learning_rate": 0.00025154317823481917,
+ "loss": 1.913223147392273,
+ "step": 2045
+ },
+ {
+ "epoch": 28.418118466898953,
+ "grad_norm": 0.06854342669248581,
+ "learning_rate": 0.0002512806440249056,
+ "loss": 1.912400722503662,
+ "step": 2046
+ },
+ {
+ "epoch": 28.43205574912892,
+ "grad_norm": 0.0666179209947586,
+ "learning_rate": 0.00025101815148434296,
+ "loss": 1.917931318283081,
+ "step": 2047
+ },
+ {
+ "epoch": 28.445993031358885,
+ "grad_norm": 0.06367912888526917,
+ "learning_rate": 0.00025075570082461684,
+ "loss": 1.9296393394470215,
+ "step": 2048
+ },
+ {
+ "epoch": 28.45993031358885,
+ "grad_norm": 0.06878827512264252,
+ "learning_rate": 0.0002504932922571789,
+ "loss": 1.9146850109100342,
+ "step": 2049
+ },
+ {
+ "epoch": 28.473867595818817,
+ "grad_norm": 0.06371448934078217,
+ "learning_rate": 0.00025023092599344706,
+ "loss": 1.909759521484375,
+ "step": 2050
+ },
+ {
+ "epoch": 28.48780487804878,
+ "grad_norm": 0.06354286521673203,
+ "learning_rate": 0.0002499686022448049,
+ "loss": 1.9349541664123535,
+ "step": 2051
+ },
+ {
+ "epoch": 28.501742160278745,
+ "grad_norm": 0.06779763847589493,
+ "learning_rate": 0.00024970632122260216,
+ "loss": 1.913719654083252,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51567944250871,
+ "grad_norm": 0.06543827801942825,
+ "learning_rate": 0.0002494440831381538,
+ "loss": 1.9296395778656006,
+ "step": 2053
+ },
+ {
+ "epoch": 28.529616724738677,
+ "grad_norm": 0.06395813822746277,
+ "learning_rate": 0.00024918188820274016,
+ "loss": 1.9255974292755127,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54355400696864,
+ "grad_norm": 0.0646572858095169,
+ "learning_rate": 0.0002489197366276073,
+ "loss": 1.9387515783309937,
+ "step": 2055
+ },
+ {
+ "epoch": 28.557491289198605,
+ "grad_norm": 0.06319864094257355,
+ "learning_rate": 0.0002486576286239657,
+ "loss": 1.9284127950668335,
+ "step": 2056
+ },
+ {
+ "epoch": 28.571428571428573,
+ "grad_norm": 0.065260149538517,
+ "learning_rate": 0.0002483955644029913,
+ "loss": 1.9322850704193115,
+ "step": 2057
+ },
+ {
+ "epoch": 28.585365853658537,
+ "grad_norm": 0.06620555371046066,
+ "learning_rate": 0.0002481335441758243,
+ "loss": 1.9043277502059937,
+ "step": 2058
+ },
+ {
+ "epoch": 28.5993031358885,
+ "grad_norm": 0.06358697265386581,
+ "learning_rate": 0.0002478715681535699,
+ "loss": 1.9008917808532715,
+ "step": 2059
+ },
+ {
+ "epoch": 28.613240418118465,
+ "grad_norm": 0.06863846629858017,
+ "learning_rate": 0.00024760963654729717,
+ "loss": 1.9327411651611328,
+ "step": 2060
+ },
+ {
+ "epoch": 28.627177700348433,
+ "grad_norm": 0.06971991807222366,
+ "learning_rate": 0.0002473477495680397,
+ "loss": 1.9262962341308594,
+ "step": 2061
+ },
+ {
+ "epoch": 28.641114982578397,
+ "grad_norm": 0.06454122811555862,
+ "learning_rate": 0.00024708590742679546,
+ "loss": 1.9252219200134277,
+ "step": 2062
+ },
+ {
+ "epoch": 28.65505226480836,
+ "grad_norm": 0.0696180909872055,
+ "learning_rate": 0.00024682411033452546,
+ "loss": 1.909650444984436,
+ "step": 2063
+ },
+ {
+ "epoch": 28.66898954703833,
+ "grad_norm": 0.06893020123243332,
+ "learning_rate": 0.0002465623585021553,
+ "loss": 1.9374496936798096,
+ "step": 2064
+ },
+ {
+ "epoch": 28.682926829268293,
+ "grad_norm": 0.06522615998983383,
+ "learning_rate": 0.0002463006521405733,
+ "loss": 1.9298205375671387,
+ "step": 2065
+ },
+ {
+ "epoch": 28.696864111498257,
+ "grad_norm": 0.06601646542549133,
+ "learning_rate": 0.0002460389914606319,
+ "loss": 1.921603798866272,
+ "step": 2066
+ },
+ {
+ "epoch": 28.71080139372822,
+ "grad_norm": 0.06664327532052994,
+ "learning_rate": 0.00024577737667314615,
+ "loss": 1.9233787059783936,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72473867595819,
+ "grad_norm": 0.06673416495323181,
+ "learning_rate": 0.00024551580798889446,
+ "loss": 1.9446074962615967,
+ "step": 2068
+ },
+ {
+ "epoch": 28.738675958188153,
+ "grad_norm": 0.06593875586986542,
+ "learning_rate": 0.00024525428561861804,
+ "loss": 1.92313814163208,
+ "step": 2069
+ },
+ {
+ "epoch": 28.752613240418118,
+ "grad_norm": 0.06456844508647919,
+ "learning_rate": 0.0002449928097730207,
+ "loss": 1.944153070449829,
+ "step": 2070
+ },
+ {
+ "epoch": 28.766550522648085,
+ "grad_norm": 0.06549357622861862,
+ "learning_rate": 0.00024473138066276876,
+ "loss": 1.9299695491790771,
+ "step": 2071
+ },
+ {
+ "epoch": 28.78048780487805,
+ "grad_norm": 0.0650298222899437,
+ "learning_rate": 0.0002444699984984909,
+ "loss": 1.9266353845596313,
+ "step": 2072
+ },
+ {
+ "epoch": 28.794425087108014,
+ "grad_norm": 0.06307881325483322,
+ "learning_rate": 0.0002442086634907782,
+ "loss": 1.9165664911270142,
+ "step": 2073
+ },
+ {
+ "epoch": 28.808362369337978,
+ "grad_norm": 0.06324006617069244,
+ "learning_rate": 0.00024394737585018328,
+ "loss": 1.9054509401321411,
+ "step": 2074
+ },
+ {
+ "epoch": 28.822299651567945,
+ "grad_norm": 0.06384851038455963,
+ "learning_rate": 0.00024368613578722113,
+ "loss": 1.9158889055252075,
+ "step": 2075
+ },
+ {
+ "epoch": 28.83623693379791,
+ "grad_norm": 0.06377598643302917,
+ "learning_rate": 0.00024342494351236799,
+ "loss": 1.919345736503601,
+ "step": 2076
+ },
+ {
+ "epoch": 28.850174216027874,
+ "grad_norm": 0.0630112960934639,
+ "learning_rate": 0.0002431637992360618,
+ "loss": 1.935530662536621,
+ "step": 2077
+ },
+ {
+ "epoch": 28.86411149825784,
+ "grad_norm": 0.06481339782476425,
+ "learning_rate": 0.00024290270316870184,
+ "loss": 1.927825927734375,
+ "step": 2078
+ },
+ {
+ "epoch": 28.878048780487806,
+ "grad_norm": 0.06289646029472351,
+ "learning_rate": 0.0002426416555206484,
+ "loss": 1.9241056442260742,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89198606271777,
+ "grad_norm": 0.06385444849729538,
+ "learning_rate": 0.000242380656502223,
+ "loss": 1.9496092796325684,
+ "step": 2080
+ },
+ {
+ "epoch": 28.905923344947734,
+ "grad_norm": 0.06434157490730286,
+ "learning_rate": 0.00024211970632370756,
+ "loss": 1.945327639579773,
+ "step": 2081
+ },
+ {
+ "epoch": 28.9198606271777,
+ "grad_norm": 0.06392986327409744,
+ "learning_rate": 0.0002418588051953453,
+ "loss": 1.935096025466919,
+ "step": 2082
+ },
+ {
+ "epoch": 28.933797909407666,
+ "grad_norm": 0.06517285853624344,
+ "learning_rate": 0.0002415979533273392,
+ "loss": 1.9311943054199219,
+ "step": 2083
+ },
+ {
+ "epoch": 28.94773519163763,
+ "grad_norm": 0.06618054956197739,
+ "learning_rate": 0.0002413371509298531,
+ "loss": 1.9326963424682617,
+ "step": 2084
+ },
+ {
+ "epoch": 28.961672473867594,
+ "grad_norm": 0.06552256643772125,
+ "learning_rate": 0.00024107639821301078,
+ "loss": 1.918696403503418,
+ "step": 2085
+ },
+ {
+ "epoch": 28.975609756097562,
+ "grad_norm": 0.06556595861911774,
+ "learning_rate": 0.00024081569538689587,
+ "loss": 1.9261362552642822,
+ "step": 2086
+ },
+ {
+ "epoch": 28.989547038327526,
+ "grad_norm": 0.06585165858268738,
+ "learning_rate": 0.0002405550426615521,
+ "loss": 1.9310712814331055,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.053358353674411774,
+ "learning_rate": 0.00024029444024698248,
+ "loss": 1.4310487508773804,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 0.6385146975517273,
+ "eval_runtime": 37.1743,
+ "eval_samples_per_second": 65.691,
+ "eval_steps_per_second": 0.538,
+ "step": 2088
+ },
+ {
+ "epoch": 29.013937282229964,
+ "grad_norm": 0.06348510086536407,
+ "learning_rate": 0.00024003388835314981,
+ "loss": 1.902433156967163,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027874564459932,
+ "grad_norm": 0.06517558544874191,
+ "learning_rate": 0.00023977338718997595,
+ "loss": 1.9010097980499268,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041811846689896,
+ "grad_norm": 0.06065843999385834,
+ "learning_rate": 0.00023951293696734195,
+ "loss": 1.8971004486083984,
+ "step": 2091
+ },
+ {
+ "epoch": 29.05574912891986,
+ "grad_norm": 0.06288564950227737,
+ "learning_rate": 0.00023925253789508806,
+ "loss": 1.895255208015442,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069686411149824,
+ "grad_norm": 0.06176576018333435,
+ "learning_rate": 0.00023899219018301286,
+ "loss": 1.895385503768921,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083623693379792,
+ "grad_norm": 0.06371054798364639,
+ "learning_rate": 0.00023873189404087405,
+ "loss": 1.8836419582366943,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097560975609756,
+ "grad_norm": 0.06175517290830612,
+ "learning_rate": 0.00023847164967838726,
+ "loss": 1.8960576057434082,
+ "step": 2095
+ },
+ {
+ "epoch": 29.11149825783972,
+ "grad_norm": 0.06139659136533737,
+ "learning_rate": 0.00023821145730522692,
+ "loss": 1.8820221424102783,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125435540069688,
+ "grad_norm": 0.06477366387844086,
+ "learning_rate": 0.0002379513171310251,
+ "loss": 1.8959964513778687,
+ "step": 2097
+ },
+ {
+ "epoch": 29.139372822299652,
+ "grad_norm": 0.060843080282211304,
+ "learning_rate": 0.00023769122936537207,
+ "loss": 1.8921177387237549,
+ "step": 2098
+ },
+ {
+ "epoch": 29.153310104529616,
+ "grad_norm": 0.06286641955375671,
+ "learning_rate": 0.00023743119421781614,
+ "loss": 1.883134365081787,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16724738675958,
+ "grad_norm": 0.0616721510887146,
+ "learning_rate": 0.00023717121189786256,
+ "loss": 1.8961443901062012,
+ "step": 2100
+ },
+ {
+ "epoch": 29.181184668989548,
+ "grad_norm": 0.06490568071603775,
+ "learning_rate": 0.00023691128261497463,
+ "loss": 1.8786497116088867,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195121951219512,
+ "grad_norm": 0.06612647324800491,
+ "learning_rate": 0.0002366514065785725,
+ "loss": 1.8977265357971191,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209059233449477,
+ "grad_norm": 0.0625205710530281,
+ "learning_rate": 0.00023639158399803382,
+ "loss": 1.8995720148086548,
+ "step": 2103
+ },
+ {
+ "epoch": 29.222996515679444,
+ "grad_norm": 0.0733620822429657,
+ "learning_rate": 0.0002361318150826927,
+ "loss": 1.896169662475586,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23693379790941,
+ "grad_norm": 0.0632617399096489,
+ "learning_rate": 0.0002358721000418404,
+ "loss": 1.8905175924301147,
+ "step": 2105
+ },
+ {
+ "epoch": 29.250871080139373,
+ "grad_norm": 0.06658294796943665,
+ "learning_rate": 0.00023561243908472472,
+ "loss": 1.9076403379440308,
+ "step": 2106
+ },
+ {
+ "epoch": 29.264808362369337,
+ "grad_norm": 0.066060371696949,
+ "learning_rate": 0.00023535283242054954,
+ "loss": 1.8913660049438477,
+ "step": 2107
+ },
+ {
+ "epoch": 29.278745644599304,
+ "grad_norm": 0.0640917718410492,
+ "learning_rate": 0.00023509328025847565,
+ "loss": 1.902782678604126,
+ "step": 2108
+ },
+ {
+ "epoch": 29.29268292682927,
+ "grad_norm": 0.06251244992017746,
+ "learning_rate": 0.00023483378280761907,
+ "loss": 1.8909555673599243,
+ "step": 2109
+ },
+ {
+ "epoch": 29.306620209059233,
+ "grad_norm": 0.06345900148153305,
+ "learning_rate": 0.0002345743402770527,
+ "loss": 1.8921617269515991,
+ "step": 2110
+ },
+ {
+ "epoch": 29.320557491289197,
+ "grad_norm": 0.0616324357688427,
+ "learning_rate": 0.0002343149528758042,
+ "loss": 1.908210277557373,
+ "step": 2111
+ },
+ {
+ "epoch": 29.334494773519165,
+ "grad_norm": 0.06260500848293304,
+ "learning_rate": 0.00023405562081285766,
+ "loss": 1.8987236022949219,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34843205574913,
+ "grad_norm": 0.06122080609202385,
+ "learning_rate": 0.0002337963442971522,
+ "loss": 1.8801190853118896,
+ "step": 2113
+ },
+ {
+ "epoch": 29.362369337979093,
+ "grad_norm": 0.06256433576345444,
+ "learning_rate": 0.00023353712353758212,
+ "loss": 1.8950425386428833,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37630662020906,
+ "grad_norm": 0.06358595192432404,
+ "learning_rate": 0.00023327795874299704,
+ "loss": 1.8783059120178223,
+ "step": 2115
+ },
+ {
+ "epoch": 29.390243902439025,
+ "grad_norm": 0.06162576004862785,
+ "learning_rate": 0.0002330188501222012,
+ "loss": 1.9105693101882935,
+ "step": 2116
+ },
+ {
+ "epoch": 29.40418118466899,
+ "grad_norm": 0.06342068314552307,
+ "learning_rate": 0.0002327597978839538,
+ "loss": 1.90647554397583,
+ "step": 2117
+ },
+ {
+ "epoch": 29.418118466898953,
+ "grad_norm": 0.06257889419794083,
+ "learning_rate": 0.00023250080223696852,
+ "loss": 1.9060969352722168,
+ "step": 2118
+ },
+ {
+ "epoch": 29.43205574912892,
+ "grad_norm": 0.06276524066925049,
+ "learning_rate": 0.00023224186338991352,
+ "loss": 1.9064395427703857,
+ "step": 2119
+ },
+ {
+ "epoch": 29.445993031358885,
+ "grad_norm": 0.06155265495181084,
+ "learning_rate": 0.0002319829815514112,
+ "loss": 1.906682014465332,
+ "step": 2120
+ },
+ {
+ "epoch": 29.45993031358885,
+ "grad_norm": 0.06252801418304443,
+ "learning_rate": 0.00023172415693003789,
+ "loss": 1.9077496528625488,
+ "step": 2121
+ },
+ {
+ "epoch": 29.473867595818817,
+ "grad_norm": 0.06420299410820007,
+ "learning_rate": 0.000231465389734324,
+ "loss": 1.9100978374481201,
+ "step": 2122
+ },
+ {
+ "epoch": 29.48780487804878,
+ "grad_norm": 0.06297800689935684,
+ "learning_rate": 0.00023120668017275346,
+ "loss": 1.8885812759399414,
+ "step": 2123
+ },
+ {
+ "epoch": 29.501742160278745,
+ "grad_norm": 0.06437410414218903,
+ "learning_rate": 0.00023094802845376403,
+ "loss": 1.9056107997894287,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51567944250871,
+ "grad_norm": 0.06496672332286835,
+ "learning_rate": 0.00023068943478574662,
+ "loss": 1.8950653076171875,
+ "step": 2125
+ },
+ {
+ "epoch": 29.529616724738677,
+ "grad_norm": 0.06434459984302521,
+ "learning_rate": 0.00023043089937704541,
+ "loss": 1.9208341836929321,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54355400696864,
+ "grad_norm": 0.0647054985165596,
+ "learning_rate": 0.00023017242243595796,
+ "loss": 1.9089730978012085,
+ "step": 2127
+ },
+ {
+ "epoch": 29.557491289198605,
+ "grad_norm": 0.06392117589712143,
+ "learning_rate": 0.00022991400417073427,
+ "loss": 1.895066261291504,
+ "step": 2128
+ },
+ {
+ "epoch": 29.571428571428573,
+ "grad_norm": 0.0638301819562912,
+ "learning_rate": 0.00022965564478957739,
+ "loss": 1.9062610864639282,
+ "step": 2129
+ },
+ {
+ "epoch": 29.585365853658537,
+ "grad_norm": 0.06492150574922562,
+ "learning_rate": 0.0002293973445006427,
+ "loss": 1.9190309047698975,
+ "step": 2130
+ },
+ {
+ "epoch": 29.5993031358885,
+ "grad_norm": 0.06228528916835785,
+ "learning_rate": 0.00022913910351203816,
+ "loss": 1.9015860557556152,
+ "step": 2131
+ },
+ {
+ "epoch": 29.613240418118465,
+ "grad_norm": 0.06274473667144775,
+ "learning_rate": 0.00022888092203182377,
+ "loss": 1.9092034101486206,
+ "step": 2132
+ },
+ {
+ "epoch": 29.627177700348433,
+ "grad_norm": 0.06517026573419571,
+ "learning_rate": 0.00022862280026801182,
+ "loss": 1.9104348421096802,
+ "step": 2133
+ },
+ {
+ "epoch": 29.641114982578397,
+ "grad_norm": 0.06522919237613678,
+ "learning_rate": 0.00022836473842856623,
+ "loss": 1.906738042831421,
+ "step": 2134
+ },
+ {
+ "epoch": 29.65505226480836,
+ "grad_norm": 0.06278976052999496,
+ "learning_rate": 0.00022810673672140272,
+ "loss": 1.9056813716888428,
+ "step": 2135
+ },
+ {
+ "epoch": 29.66898954703833,
+ "grad_norm": 0.06465253978967667,
+ "learning_rate": 0.0002278487953543889,
+ "loss": 1.9165875911712646,
+ "step": 2136
+ },
+ {
+ "epoch": 29.682926829268293,
+ "grad_norm": 0.0656580775976181,
+ "learning_rate": 0.00022759091453534308,
+ "loss": 1.9225130081176758,
+ "step": 2137
+ },
+ {
+ "epoch": 29.696864111498257,
+ "grad_norm": 0.0625176951289177,
+ "learning_rate": 0.00022733309447203553,
+ "loss": 1.9104106426239014,
+ "step": 2138
+ },
+ {
+ "epoch": 29.71080139372822,
+ "grad_norm": 0.06598987430334091,
+ "learning_rate": 0.00022707533537218695,
+ "loss": 1.9182713031768799,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72473867595819,
+ "grad_norm": 0.063861183822155,
+ "learning_rate": 0.00022681763744346938,
+ "loss": 1.9201741218566895,
+ "step": 2140
+ },
+ {
+ "epoch": 29.738675958188153,
+ "grad_norm": 0.065862737596035,
+ "learning_rate": 0.00022656000089350524,
+ "loss": 1.8971748352050781,
+ "step": 2141
+ },
+ {
+ "epoch": 29.752613240418118,
+ "grad_norm": 0.06543151289224625,
+ "learning_rate": 0.00022630242592986766,
+ "loss": 1.9031867980957031,
+ "step": 2142
+ },
+ {
+ "epoch": 29.766550522648085,
+ "grad_norm": 0.06437384337186813,
+ "learning_rate": 0.0002260449127600803,
+ "loss": 1.9082727432250977,
+ "step": 2143
+ },
+ {
+ "epoch": 29.78048780487805,
+ "grad_norm": 0.06707995384931564,
+ "learning_rate": 0.0002257874615916166,
+ "loss": 1.920899748802185,
+ "step": 2144
+ },
+ {
+ "epoch": 29.794425087108014,
+ "grad_norm": 0.06488589942455292,
+ "learning_rate": 0.00022553007263190067,
+ "loss": 1.901809811592102,
+ "step": 2145
+ },
+ {
+ "epoch": 29.808362369337978,
+ "grad_norm": 0.06581971049308777,
+ "learning_rate": 0.00022527274608830574,
+ "loss": 1.9137091636657715,
+ "step": 2146
+ },
+ {
+ "epoch": 29.822299651567945,
+ "grad_norm": 0.06502900272607803,
+ "learning_rate": 0.0002250154821681555,
+ "loss": 1.9089921712875366,
+ "step": 2147
+ },
+ {
+ "epoch": 29.83623693379791,
+ "grad_norm": 0.06428463757038116,
+ "learning_rate": 0.0002247582810787227,
+ "loss": 1.907055139541626,
+ "step": 2148
+ },
+ {
+ "epoch": 29.850174216027874,
+ "grad_norm": 0.06490083038806915,
+ "learning_rate": 0.00022450114302722957,
+ "loss": 1.8931684494018555,
+ "step": 2149
+ },
+ {
+ "epoch": 29.86411149825784,
+ "grad_norm": 0.06519338488578796,
+ "learning_rate": 0.0002242440682208477,
+ "loss": 1.924349308013916,
+ "step": 2150
+ },
+ {
+ "epoch": 29.878048780487806,
+ "grad_norm": 0.06435994058847427,
+ "learning_rate": 0.00022398705686669748,
+ "loss": 1.9001131057739258,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89198606271777,
+ "grad_norm": 0.06389366835355759,
+ "learning_rate": 0.0002237301091718485,
+ "loss": 1.9222545623779297,
+ "step": 2152
+ },
+ {
+ "epoch": 29.905923344947734,
+ "grad_norm": 0.06635434180498123,
+ "learning_rate": 0.00022347322534331865,
+ "loss": 1.9115610122680664,
+ "step": 2153
+ },
+ {
+ "epoch": 29.9198606271777,
+ "grad_norm": 0.06362872570753098,
+ "learning_rate": 0.00022321640558807488,
+ "loss": 1.9033440351486206,
+ "step": 2154
+ },
+ {
+ "epoch": 29.933797909407666,
+ "grad_norm": 0.06656860560178757,
+ "learning_rate": 0.00022295965011303188,
+ "loss": 1.9024994373321533,
+ "step": 2155
+ },
+ {
+ "epoch": 29.94773519163763,
+ "grad_norm": 0.06287530809640884,
+ "learning_rate": 0.00022270295912505317,
+ "loss": 1.9141626358032227,
+ "step": 2156
+ },
+ {
+ "epoch": 29.961672473867594,
+ "grad_norm": 0.06594341993331909,
+ "learning_rate": 0.00022244633283095,
+ "loss": 1.9281123876571655,
+ "step": 2157
+ },
+ {
+ "epoch": 29.975609756097562,
+ "grad_norm": 0.06367179751396179,
+ "learning_rate": 0.0002221897714374814,
+ "loss": 1.9032683372497559,
+ "step": 2158
+ },
+ {
+ "epoch": 29.989547038327526,
+ "grad_norm": 0.06714081764221191,
+ "learning_rate": 0.00022193327515135445,
+ "loss": 1.9118046760559082,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.05437680333852768,
+ "learning_rate": 0.00022167684417922337,
+ "loss": 1.4319559335708618,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 0.6395835280418396,
+ "eval_runtime": 47.0869,
+ "eval_samples_per_second": 51.862,
+ "eval_steps_per_second": 0.425,
+ "step": 2160
+ },
+ {
+ "epoch": 30.013937282229964,
+ "grad_norm": 0.061811935156583786,
+ "learning_rate": 0.00022142047872769014,
+ "loss": 1.8821682929992676,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027874564459932,
+ "grad_norm": 0.060412414371967316,
+ "learning_rate": 0.00022116417900330365,
+ "loss": 1.8725709915161133,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041811846689896,
+ "grad_norm": 0.06219486892223358,
+ "learning_rate": 0.00022090794521255997,
+ "loss": 1.8726820945739746,
+ "step": 2163
+ },
+ {
+ "epoch": 30.05574912891986,
+ "grad_norm": 0.061067480593919754,
+ "learning_rate": 0.00022065177756190214,
+ "loss": 1.8728303909301758,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069686411149824,
+ "grad_norm": 0.05880453437566757,
+ "learning_rate": 0.00022039567625771968,
+ "loss": 1.8877463340759277,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083623693379792,
+ "grad_norm": 0.06127414479851723,
+ "learning_rate": 0.0002201396415063489,
+ "loss": 1.8891685009002686,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097560975609756,
+ "grad_norm": 0.05931060016155243,
+ "learning_rate": 0.00021988367351407227,
+ "loss": 1.8739129304885864,
+ "step": 2167
+ },
+ {
+ "epoch": 30.11149825783972,
+ "grad_norm": 0.06235767528414726,
+ "learning_rate": 0.00021962777248711872,
+ "loss": 1.8802381753921509,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125435540069688,
+ "grad_norm": 0.05874861031770706,
+ "learning_rate": 0.00021937193863166292,
+ "loss": 1.8802909851074219,
+ "step": 2169
+ },
+ {
+ "epoch": 30.139372822299652,
+ "grad_norm": 0.061103034764528275,
+ "learning_rate": 0.00021911617215382564,
+ "loss": 1.884058952331543,
+ "step": 2170
+ },
+ {
+ "epoch": 30.153310104529616,
+ "grad_norm": 0.05980055406689644,
+ "learning_rate": 0.00021886047325967348,
+ "loss": 1.8738408088684082,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16724738675958,
+ "grad_norm": 0.061332255601882935,
+ "learning_rate": 0.00021860484215521805,
+ "loss": 1.8697137832641602,
+ "step": 2172
+ },
+ {
+ "epoch": 30.181184668989548,
+ "grad_norm": 0.05897640436887741,
+ "learning_rate": 0.00021834927904641708,
+ "loss": 1.887247920036316,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195121951219512,
+ "grad_norm": 0.06039821356534958,
+ "learning_rate": 0.00021809378413917296,
+ "loss": 1.8843746185302734,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209059233449477,
+ "grad_norm": 0.06140084192156792,
+ "learning_rate": 0.00021783835763933344,
+ "loss": 1.8834288120269775,
+ "step": 2175
+ },
+ {
+ "epoch": 30.222996515679444,
+ "grad_norm": 0.06152097508311272,
+ "learning_rate": 0.0002175829997526909,
+ "loss": 1.881451964378357,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23693379790941,
+ "grad_norm": 0.06128741800785065,
+ "learning_rate": 0.0002173277106849826,
+ "loss": 1.8756582736968994,
+ "step": 2177
+ },
+ {
+ "epoch": 30.250871080139373,
+ "grad_norm": 0.0608304888010025,
+ "learning_rate": 0.0002170724906418905,
+ "loss": 1.8877084255218506,
+ "step": 2178
+ },
+ {
+ "epoch": 30.264808362369337,
+ "grad_norm": 0.05938803777098656,
+ "learning_rate": 0.00021681733982904046,
+ "loss": 1.8796486854553223,
+ "step": 2179
+ },
+ {
+ "epoch": 30.278745644599304,
+ "grad_norm": 0.06101052463054657,
+ "learning_rate": 0.00021656225845200332,
+ "loss": 1.8800137042999268,
+ "step": 2180
+ },
+ {
+ "epoch": 30.29268292682927,
+ "grad_norm": 0.06140942499041557,
+ "learning_rate": 0.0002163072467162931,
+ "loss": 1.907020092010498,
+ "step": 2181
+ },
+ {
+ "epoch": 30.306620209059233,
+ "grad_norm": 0.06322148442268372,
+ "learning_rate": 0.00021605230482736845,
+ "loss": 1.8778784275054932,
+ "step": 2182
+ },
+ {
+ "epoch": 30.320557491289197,
+ "grad_norm": 0.06144942715764046,
+ "learning_rate": 0.00021579743299063122,
+ "loss": 1.8906503915786743,
+ "step": 2183
+ },
+ {
+ "epoch": 30.334494773519165,
+ "grad_norm": 0.06323464214801788,
+ "learning_rate": 0.00021554263141142726,
+ "loss": 1.892274260520935,
+ "step": 2184
+ },
+ {
+ "epoch": 30.34843205574913,
+ "grad_norm": 0.06276610493659973,
+ "learning_rate": 0.00021528790029504548,
+ "loss": 1.8861984014511108,
+ "step": 2185
+ },
+ {
+ "epoch": 30.362369337979093,
+ "grad_norm": 0.06291946768760681,
+ "learning_rate": 0.00021503323984671814,
+ "loss": 1.8812167644500732,
+ "step": 2186
+ },
+ {
+ "epoch": 30.37630662020906,
+ "grad_norm": 0.06449956446886063,
+ "learning_rate": 0.00021477865027162067,
+ "loss": 1.8725450038909912,
+ "step": 2187
+ },
+ {
+ "epoch": 30.390243902439025,
+ "grad_norm": 0.062199078500270844,
+ "learning_rate": 0.0002145241317748711,
+ "loss": 1.8660006523132324,
+ "step": 2188
+ },
+ {
+ "epoch": 30.40418118466899,
+ "grad_norm": 0.06578577309846878,
+ "learning_rate": 0.0002142696845615306,
+ "loss": 1.8998687267303467,
+ "step": 2189
+ },
+ {
+ "epoch": 30.418118466898953,
+ "grad_norm": 0.06263040006160736,
+ "learning_rate": 0.0002140153088366024,
+ "loss": 1.8895599842071533,
+ "step": 2190
+ },
+ {
+ "epoch": 30.43205574912892,
+ "grad_norm": 0.06379809230566025,
+ "learning_rate": 0.00021376100480503276,
+ "loss": 1.888756275177002,
+ "step": 2191
+ },
+ {
+ "epoch": 30.445993031358885,
+ "grad_norm": 0.06144513934850693,
+ "learning_rate": 0.00021350677267170973,
+ "loss": 1.8797111511230469,
+ "step": 2192
+ },
+ {
+ "epoch": 30.45993031358885,
+ "grad_norm": 0.06551753729581833,
+ "learning_rate": 0.00021325261264146342,
+ "loss": 1.8898788690567017,
+ "step": 2193
+ },
+ {
+ "epoch": 30.473867595818817,
+ "grad_norm": 0.0634821429848671,
+ "learning_rate": 0.00021299852491906616,
+ "loss": 1.9081072807312012,
+ "step": 2194
+ },
+ {
+ "epoch": 30.48780487804878,
+ "grad_norm": 0.06261540949344635,
+ "learning_rate": 0.00021274450970923167,
+ "loss": 1.8862106800079346,
+ "step": 2195
+ },
+ {
+ "epoch": 30.501742160278745,
+ "grad_norm": 0.06235577166080475,
+ "learning_rate": 0.0002124905672166156,
+ "loss": 1.8701283931732178,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51567944250871,
+ "grad_norm": 0.06507014483213425,
+ "learning_rate": 0.0002122366976458146,
+ "loss": 1.906468152999878,
+ "step": 2197
+ },
+ {
+ "epoch": 30.529616724738677,
+ "grad_norm": 0.0635584145784378,
+ "learning_rate": 0.00021198290120136702,
+ "loss": 1.886523723602295,
+ "step": 2198
+ },
+ {
+ "epoch": 30.54355400696864,
+ "grad_norm": 0.06394219398498535,
+ "learning_rate": 0.0002117291780877519,
+ "loss": 1.8687143325805664,
+ "step": 2199
+ },
+ {
+ "epoch": 30.557491289198605,
+ "grad_norm": 0.06521911174058914,
+ "learning_rate": 0.00021147552850938941,
+ "loss": 1.885088324546814,
+ "step": 2200
+ },
+ {
+ "epoch": 30.571428571428573,
+ "grad_norm": 0.0646066814661026,
+ "learning_rate": 0.0002112219526706406,
+ "loss": 1.8981271982192993,
+ "step": 2201
+ },
+ {
+ "epoch": 30.585365853658537,
+ "grad_norm": 0.06708912551403046,
+ "learning_rate": 0.00021096845077580675,
+ "loss": 1.8949990272521973,
+ "step": 2202
+ },
+ {
+ "epoch": 30.5993031358885,
+ "grad_norm": 0.0656600221991539,
+ "learning_rate": 0.0002107150230291299,
+ "loss": 1.8876829147338867,
+ "step": 2203
+ },
+ {
+ "epoch": 30.613240418118465,
+ "grad_norm": 0.06315416842699051,
+ "learning_rate": 0.00021046166963479204,
+ "loss": 1.8786557912826538,
+ "step": 2204
+ },
+ {
+ "epoch": 30.627177700348433,
+ "grad_norm": 0.06558752804994583,
+ "learning_rate": 0.00021020839079691553,
+ "loss": 1.889142632484436,
+ "step": 2205
+ },
+ {
+ "epoch": 30.641114982578397,
+ "grad_norm": 0.06307908147573471,
+ "learning_rate": 0.00020995518671956256,
+ "loss": 1.8903149366378784,
+ "step": 2206
+ },
+ {
+ "epoch": 30.65505226480836,
+ "grad_norm": 0.06145390495657921,
+ "learning_rate": 0.00020970205760673493,
+ "loss": 1.8872840404510498,
+ "step": 2207
+ },
+ {
+ "epoch": 30.66898954703833,
+ "grad_norm": 0.06402356922626495,
+ "learning_rate": 0.00020944900366237453,
+ "loss": 1.8805838823318481,
+ "step": 2208
+ },
+ {
+ "epoch": 30.682926829268293,
+ "grad_norm": 0.06330732256174088,
+ "learning_rate": 0.00020919602509036195,
+ "loss": 1.8881486654281616,
+ "step": 2209
+ },
+ {
+ "epoch": 30.696864111498257,
+ "grad_norm": 0.06465929001569748,
+ "learning_rate": 0.0002089431220945178,
+ "loss": 1.877720594406128,
+ "step": 2210
+ },
+ {
+ "epoch": 30.71080139372822,
+ "grad_norm": 0.06697797030210495,
+ "learning_rate": 0.00020869029487860126,
+ "loss": 1.8768590688705444,
+ "step": 2211
+ },
+ {
+ "epoch": 30.72473867595819,
+ "grad_norm": 0.06605999171733856,
+ "learning_rate": 0.00020843754364631068,
+ "loss": 1.8825514316558838,
+ "step": 2212
+ },
+ {
+ "epoch": 30.738675958188153,
+ "grad_norm": 0.0656205341219902,
+ "learning_rate": 0.0002081848686012832,
+ "loss": 1.8852055072784424,
+ "step": 2213
+ },
+ {
+ "epoch": 30.752613240418118,
+ "grad_norm": 0.06713110208511353,
+ "learning_rate": 0.00020793226994709446,
+ "loss": 1.882007360458374,
+ "step": 2214
+ },
+ {
+ "epoch": 30.766550522648085,
+ "grad_norm": 0.06526081264019012,
+ "learning_rate": 0.0002076797478872588,
+ "loss": 1.8892399072647095,
+ "step": 2215
+ },
+ {
+ "epoch": 30.78048780487805,
+ "grad_norm": 0.06758946180343628,
+ "learning_rate": 0.00020742730262522844,
+ "loss": 1.8980051279067993,
+ "step": 2216
+ },
+ {
+ "epoch": 30.794425087108014,
+ "grad_norm": 0.06784503906965256,
+ "learning_rate": 0.00020717493436439433,
+ "loss": 1.8907029628753662,
+ "step": 2217
+ },
+ {
+ "epoch": 30.808362369337978,
+ "grad_norm": 0.06756821274757385,
+ "learning_rate": 0.00020692264330808455,
+ "loss": 1.8950631618499756,
+ "step": 2218
+ },
+ {
+ "epoch": 30.822299651567945,
+ "grad_norm": 0.06609930098056793,
+ "learning_rate": 0.00020667042965956587,
+ "loss": 1.8887443542480469,
+ "step": 2219
+ },
+ {
+ "epoch": 30.83623693379791,
+ "grad_norm": 0.06700558215379715,
+ "learning_rate": 0.00020641829362204195,
+ "loss": 1.900990605354309,
+ "step": 2220
+ },
+ {
+ "epoch": 30.850174216027874,
+ "grad_norm": 0.06835924834012985,
+ "learning_rate": 0.00020616623539865446,
+ "loss": 1.881005048751831,
+ "step": 2221
+ },
+ {
+ "epoch": 30.86411149825784,
+ "grad_norm": 0.06574281305074692,
+ "learning_rate": 0.00020591425519248213,
+ "loss": 1.8976192474365234,
+ "step": 2222
+ },
+ {
+ "epoch": 30.878048780487806,
+ "grad_norm": 0.06529807299375534,
+ "learning_rate": 0.00020566235320654069,
+ "loss": 1.8866150379180908,
+ "step": 2223
+ },
+ {
+ "epoch": 30.89198606271777,
+ "grad_norm": 0.06722450256347656,
+ "learning_rate": 0.00020541052964378323,
+ "loss": 1.9030026197433472,
+ "step": 2224
+ },
+ {
+ "epoch": 30.905923344947734,
+ "grad_norm": 0.06486845016479492,
+ "learning_rate": 0.00020515878470709928,
+ "loss": 1.8861298561096191,
+ "step": 2225
+ },
+ {
+ "epoch": 30.9198606271777,
+ "grad_norm": 0.06532816588878632,
+ "learning_rate": 0.00020490711859931545,
+ "loss": 1.893527626991272,
+ "step": 2226
+ },
+ {
+ "epoch": 30.933797909407666,
+ "grad_norm": 0.06626923382282257,
+ "learning_rate": 0.00020465553152319418,
+ "loss": 1.88838791847229,
+ "step": 2227
+ },
+ {
+ "epoch": 30.94773519163763,
+ "grad_norm": 0.0654103085398674,
+ "learning_rate": 0.00020440402368143492,
+ "loss": 1.9061450958251953,
+ "step": 2228
+ },
+ {
+ "epoch": 30.961672473867594,
+ "grad_norm": 0.06394780427217484,
+ "learning_rate": 0.00020415259527667299,
+ "loss": 1.908818244934082,
+ "step": 2229
+ },
+ {
+ "epoch": 30.975609756097562,
+ "grad_norm": 0.06630687415599823,
+ "learning_rate": 0.0002039012465114796,
+ "loss": 1.8836619853973389,
+ "step": 2230
+ },
+ {
+ "epoch": 30.989547038327526,
+ "grad_norm": 0.06586914509534836,
+ "learning_rate": 0.00020364997758836193,
+ "loss": 1.8967719078063965,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.05284066125750542,
+ "learning_rate": 0.00020339878870976287,
+ "loss": 1.4147136211395264,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 0.6414697170257568,
+ "eval_runtime": 39.9304,
+ "eval_samples_per_second": 61.156,
+ "eval_steps_per_second": 0.501,
+ "step": 2232
+ },
+ {
+ "epoch": 31.013937282229964,
+ "grad_norm": 0.060604438185691833,
+ "learning_rate": 0.00020314768007806077,
+ "loss": 1.8646475076675415,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027874564459932,
+ "grad_norm": 0.06078824773430824,
+ "learning_rate": 0.00020289665189556923,
+ "loss": 1.8648875951766968,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041811846689896,
+ "grad_norm": 0.06248131021857262,
+ "learning_rate": 0.00020264570436453707,
+ "loss": 1.8768644332885742,
+ "step": 2235
+ },
+ {
+ "epoch": 31.05574912891986,
+ "grad_norm": 0.06086263805627823,
+ "learning_rate": 0.00020239483768714843,
+ "loss": 1.870078682899475,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069686411149824,
+ "grad_norm": 0.060540031641721725,
+ "learning_rate": 0.0002021440520655219,
+ "loss": 1.8600138425827026,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083623693379792,
+ "grad_norm": 0.06146378070116043,
+ "learning_rate": 0.00020189334770171098,
+ "loss": 1.8661935329437256,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097560975609756,
+ "grad_norm": 0.06294050812721252,
+ "learning_rate": 0.00020164272479770352,
+ "loss": 1.8623647689819336,
+ "step": 2239
+ },
+ {
+ "epoch": 31.11149825783972,
+ "grad_norm": 0.06037621200084686,
+ "learning_rate": 0.00020139218355542203,
+ "loss": 1.854023814201355,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125435540069688,
+ "grad_norm": 0.0614016056060791,
+ "learning_rate": 0.000201141724176723,
+ "loss": 1.858170509338379,
+ "step": 2241
+ },
+ {
+ "epoch": 31.139372822299652,
+ "grad_norm": 0.062037430703639984,
+ "learning_rate": 0.0002008913468633969,
+ "loss": 1.8650360107421875,
+ "step": 2242
+ },
+ {
+ "epoch": 31.153310104529616,
+ "grad_norm": 0.05925912410020828,
+ "learning_rate": 0.00020064105181716847,
+ "loss": 1.8559834957122803,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16724738675958,
+ "grad_norm": 0.06082075089216232,
+ "learning_rate": 0.00020039083923969564,
+ "loss": 1.86753511428833,
+ "step": 2244
+ },
+ {
+ "epoch": 31.181184668989548,
+ "grad_norm": 0.06053556874394417,
+ "learning_rate": 0.0002001407093325704,
+ "loss": 1.859229326248169,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195121951219512,
+ "grad_norm": 0.059802569448947906,
+ "learning_rate": 0.0001998906622973177,
+ "loss": 1.8574810028076172,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209059233449477,
+ "grad_norm": 0.05929112061858177,
+ "learning_rate": 0.0001996406983353961,
+ "loss": 1.870527744293213,
+ "step": 2247
+ },
+ {
+ "epoch": 31.222996515679444,
+ "grad_norm": 0.05963680520653725,
+ "learning_rate": 0.0001993908176481969,
+ "loss": 1.8654029369354248,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23693379790941,
+ "grad_norm": 0.06305639445781708,
+ "learning_rate": 0.0001991410204370445,
+ "loss": 1.8621957302093506,
+ "step": 2249
+ },
+ {
+ "epoch": 31.250871080139373,
+ "grad_norm": 0.0604659803211689,
+ "learning_rate": 0.00019889130690319608,
+ "loss": 1.8467226028442383,
+ "step": 2250
+ },
+ {
+ "epoch": 31.264808362369337,
+ "grad_norm": 0.06070101633667946,
+ "learning_rate": 0.00019864167724784117,
+ "loss": 1.85858154296875,
+ "step": 2251
+ },
+ {
+ "epoch": 31.278745644599304,
+ "grad_norm": 0.06042332947254181,
+ "learning_rate": 0.00019839213167210213,
+ "loss": 1.860041618347168,
+ "step": 2252
+ },
+ {
+ "epoch": 31.29268292682927,
+ "grad_norm": 0.06108660250902176,
+ "learning_rate": 0.00019814267037703294,
+ "loss": 1.8745486736297607,
+ "step": 2253
+ },
+ {
+ "epoch": 31.306620209059233,
+ "grad_norm": 0.06323979049921036,
+ "learning_rate": 0.0001978932935636205,
+ "loss": 1.8638720512390137,
+ "step": 2254
+ },
+ {
+ "epoch": 31.320557491289197,
+ "grad_norm": 0.06100151315331459,
+ "learning_rate": 0.00019764400143278276,
+ "loss": 1.873995304107666,
+ "step": 2255
+ },
+ {
+ "epoch": 31.334494773519165,
+ "grad_norm": 0.06299260258674622,
+ "learning_rate": 0.00019739479418537018,
+ "loss": 1.856463074684143,
+ "step": 2256
+ },
+ {
+ "epoch": 31.34843205574913,
+ "grad_norm": 0.060268502682447433,
+ "learning_rate": 0.00019714567202216453,
+ "loss": 1.870614767074585,
+ "step": 2257
+ },
+ {
+ "epoch": 31.362369337979093,
+ "grad_norm": 0.06267309933900833,
+ "learning_rate": 0.00019689663514387896,
+ "loss": 1.8735413551330566,
+ "step": 2258
+ },
+ {
+ "epoch": 31.37630662020906,
+ "grad_norm": 0.0630616620182991,
+ "learning_rate": 0.00019664768375115798,
+ "loss": 1.87433660030365,
+ "step": 2259
+ },
+ {
+ "epoch": 31.390243902439025,
+ "grad_norm": 0.062905453145504,
+ "learning_rate": 0.00019639881804457723,
+ "loss": 1.8653037548065186,
+ "step": 2260
+ },
+ {
+ "epoch": 31.40418118466899,
+ "grad_norm": 0.061397816985845566,
+ "learning_rate": 0.00019615003822464342,
+ "loss": 1.8669100999832153,
+ "step": 2261
+ },
+ {
+ "epoch": 31.418118466898953,
+ "grad_norm": 0.06352730095386505,
+ "learning_rate": 0.00019590134449179371,
+ "loss": 1.8823096752166748,
+ "step": 2262
+ },
+ {
+ "epoch": 31.43205574912892,
+ "grad_norm": 0.06169911473989487,
+ "learning_rate": 0.00019565273704639648,
+ "loss": 1.8809747695922852,
+ "step": 2263
+ },
+ {
+ "epoch": 31.445993031358885,
+ "grad_norm": 0.06471487879753113,
+ "learning_rate": 0.00019540421608874994,
+ "loss": 1.8702677488327026,
+ "step": 2264
+ },
+ {
+ "epoch": 31.45993031358885,
+ "grad_norm": 0.062495868653059006,
+ "learning_rate": 0.0001951557818190831,
+ "loss": 1.881035566329956,
+ "step": 2265
+ },
+ {
+ "epoch": 31.473867595818817,
+ "grad_norm": 0.061863191425800323,
+ "learning_rate": 0.00019490743443755504,
+ "loss": 1.8691881895065308,
+ "step": 2266
+ },
+ {
+ "epoch": 31.48780487804878,
+ "grad_norm": 0.06295126676559448,
+ "learning_rate": 0.0001946591741442546,
+ "loss": 1.866331696510315,
+ "step": 2267
+ },
+ {
+ "epoch": 31.501742160278745,
+ "grad_norm": 0.06404458731412888,
+ "learning_rate": 0.00019441100113920076,
+ "loss": 1.8709323406219482,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51567944250871,
+ "grad_norm": 0.06424364447593689,
+ "learning_rate": 0.00019416291562234192,
+ "loss": 1.860987901687622,
+ "step": 2269
+ },
+ {
+ "epoch": 31.529616724738677,
+ "grad_norm": 0.06346628814935684,
+ "learning_rate": 0.00019391491779355608,
+ "loss": 1.8733528852462769,
+ "step": 2270
+ },
+ {
+ "epoch": 31.54355400696864,
+ "grad_norm": 0.06380122900009155,
+ "learning_rate": 0.00019366700785265065,
+ "loss": 1.8605754375457764,
+ "step": 2271
+ },
+ {
+ "epoch": 31.557491289198605,
+ "grad_norm": 0.06407288461923599,
+ "learning_rate": 0.0001934191859993622,
+ "loss": 1.865129828453064,
+ "step": 2272
+ },
+ {
+ "epoch": 31.571428571428573,
+ "grad_norm": 0.06177213042974472,
+ "learning_rate": 0.00019317145243335642,
+ "loss": 1.8731110095977783,
+ "step": 2273
+ },
+ {
+ "epoch": 31.585365853658537,
+ "grad_norm": 0.0677371472120285,
+ "learning_rate": 0.0001929238073542276,
+ "loss": 1.8737413883209229,
+ "step": 2274
+ },
+ {
+ "epoch": 31.5993031358885,
+ "grad_norm": 0.0647529736161232,
+ "learning_rate": 0.00019267625096149903,
+ "loss": 1.867060661315918,
+ "step": 2275
+ },
+ {
+ "epoch": 31.613240418118465,
+ "grad_norm": 0.06501344591379166,
+ "learning_rate": 0.00019242878345462227,
+ "loss": 1.8647403717041016,
+ "step": 2276
+ },
+ {
+ "epoch": 31.627177700348433,
+ "grad_norm": 0.06636765599250793,
+ "learning_rate": 0.00019218140503297765,
+ "loss": 1.8598473072052002,
+ "step": 2277
+ },
+ {
+ "epoch": 31.641114982578397,
+ "grad_norm": 0.06625733524560928,
+ "learning_rate": 0.00019193411589587332,
+ "loss": 1.8797805309295654,
+ "step": 2278
+ },
+ {
+ "epoch": 31.65505226480836,
+ "grad_norm": 0.0652196854352951,
+ "learning_rate": 0.00019168691624254564,
+ "loss": 1.8820933103561401,
+ "step": 2279
+ },
+ {
+ "epoch": 31.66898954703833,
+ "grad_norm": 0.06613790988922119,
+ "learning_rate": 0.00019143980627215915,
+ "loss": 1.8773422241210938,
+ "step": 2280
+ },
+ {
+ "epoch": 31.682926829268293,
+ "grad_norm": 0.0657401978969574,
+ "learning_rate": 0.00019119278618380555,
+ "loss": 1.8706395626068115,
+ "step": 2281
+ },
+ {
+ "epoch": 31.696864111498257,
+ "grad_norm": 0.06442514061927795,
+ "learning_rate": 0.00019094585617650476,
+ "loss": 1.878519892692566,
+ "step": 2282
+ },
+ {
+ "epoch": 31.71080139372822,
+ "grad_norm": 0.06672950834035873,
+ "learning_rate": 0.00019069901644920366,
+ "loss": 1.876173973083496,
+ "step": 2283
+ },
+ {
+ "epoch": 31.72473867595819,
+ "grad_norm": 0.06492309272289276,
+ "learning_rate": 0.00019045226720077667,
+ "loss": 1.8842449188232422,
+ "step": 2284
+ },
+ {
+ "epoch": 31.738675958188153,
+ "grad_norm": 0.06469793617725372,
+ "learning_rate": 0.0001902056086300251,
+ "loss": 1.8798532485961914,
+ "step": 2285
+ },
+ {
+ "epoch": 31.752613240418118,
+ "grad_norm": 0.06608608365058899,
+ "learning_rate": 0.0001899590409356773,
+ "loss": 1.866950511932373,
+ "step": 2286
+ },
+ {
+ "epoch": 31.766550522648085,
+ "grad_norm": 0.06483180820941925,
+ "learning_rate": 0.00018971256431638854,
+ "loss": 1.873096227645874,
+ "step": 2287
+ },
+ {
+ "epoch": 31.78048780487805,
+ "grad_norm": 0.06410029530525208,
+ "learning_rate": 0.00018946617897074041,
+ "loss": 1.8798564672470093,
+ "step": 2288
+ },
+ {
+ "epoch": 31.794425087108014,
+ "grad_norm": 0.06440483778715134,
+ "learning_rate": 0.0001892198850972413,
+ "loss": 1.8675113916397095,
+ "step": 2289
+ },
+ {
+ "epoch": 31.808362369337978,
+ "grad_norm": 0.06469769030809402,
+ "learning_rate": 0.00018897368289432553,
+ "loss": 1.8644737005233765,
+ "step": 2290
+ },
+ {
+ "epoch": 31.822299651567945,
+ "grad_norm": 0.06366699188947678,
+ "learning_rate": 0.00018872757256035403,
+ "loss": 1.8632454872131348,
+ "step": 2291
+ },
+ {
+ "epoch": 31.83623693379791,
+ "grad_norm": 0.06567682325839996,
+ "learning_rate": 0.00018848155429361323,
+ "loss": 1.8711936473846436,
+ "step": 2292
+ },
+ {
+ "epoch": 31.850174216027874,
+ "grad_norm": 0.06415718793869019,
+ "learning_rate": 0.00018823562829231567,
+ "loss": 1.8836743831634521,
+ "step": 2293
+ },
+ {
+ "epoch": 31.86411149825784,
+ "grad_norm": 0.06531377136707306,
+ "learning_rate": 0.0001879897947545996,
+ "loss": 1.8687281608581543,
+ "step": 2294
+ },
+ {
+ "epoch": 31.878048780487806,
+ "grad_norm": 0.06425580382347107,
+ "learning_rate": 0.00018774405387852848,
+ "loss": 1.875110149383545,
+ "step": 2295
+ },
+ {
+ "epoch": 31.89198606271777,
+ "grad_norm": 0.06651245802640915,
+ "learning_rate": 0.00018749840586209144,
+ "loss": 1.881043791770935,
+ "step": 2296
+ },
+ {
+ "epoch": 31.905923344947734,
+ "grad_norm": 0.0645023062825203,
+ "learning_rate": 0.00018725285090320245,
+ "loss": 1.8830270767211914,
+ "step": 2297
+ },
+ {
+ "epoch": 31.9198606271777,
+ "grad_norm": 0.06700874119997025,
+ "learning_rate": 0.00018700738919970103,
+ "loss": 1.8654285669326782,
+ "step": 2298
+ },
+ {
+ "epoch": 31.933797909407666,
+ "grad_norm": 0.06646879017353058,
+ "learning_rate": 0.00018676202094935085,
+ "loss": 1.8897215127944946,
+ "step": 2299
+ },
+ {
+ "epoch": 31.94773519163763,
+ "grad_norm": 0.06660740822553635,
+ "learning_rate": 0.000186516746349841,
+ "loss": 1.8914703130722046,
+ "step": 2300
+ },
+ {
+ "epoch": 31.961672473867594,
+ "grad_norm": 0.06686484813690186,
+ "learning_rate": 0.0001862715655987847,
+ "loss": 1.889345407485962,
+ "step": 2301
+ },
+ {
+ "epoch": 31.975609756097562,
+ "grad_norm": 0.06631558388471603,
+ "learning_rate": 0.00018602647889371957,
+ "loss": 1.8859820365905762,
+ "step": 2302
+ },
+ {
+ "epoch": 31.989547038327526,
+ "grad_norm": 0.06582383811473846,
+ "learning_rate": 0.00018578148643210764,
+ "loss": 1.8652012348175049,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.052844833582639694,
+ "learning_rate": 0.00018553658841133483,
+ "loss": 1.4002703428268433,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 0.6424221396446228,
+ "eval_runtime": 37.5069,
+ "eval_samples_per_second": 65.108,
+ "eval_steps_per_second": 0.533,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01393728222997,
+ "grad_norm": 0.05961986258625984,
+ "learning_rate": 0.00018529178502871117,
+ "loss": 1.854289174079895,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02787456445993,
+ "grad_norm": 0.06249764561653137,
+ "learning_rate": 0.0001850470764814702,
+ "loss": 1.8544244766235352,
+ "step": 2306
+ },
+ {
+ "epoch": 32.041811846689896,
+ "grad_norm": 0.06160780042409897,
+ "learning_rate": 0.0001848024629667691,
+ "loss": 1.842755913734436,
+ "step": 2307
+ },
+ {
+ "epoch": 32.055749128919864,
+ "grad_norm": 0.06074569746851921,
+ "learning_rate": 0.00018455794468168887,
+ "loss": 1.8530092239379883,
+ "step": 2308
+ },
+ {
+ "epoch": 32.069686411149824,
+ "grad_norm": 0.059093352407217026,
+ "learning_rate": 0.00018431352182323322,
+ "loss": 1.8404085636138916,
+ "step": 2309
+ },
+ {
+ "epoch": 32.08362369337979,
+ "grad_norm": 0.06252843141555786,
+ "learning_rate": 0.0001840691945883293,
+ "loss": 1.8402471542358398,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09756097560975,
+ "grad_norm": 0.062098030000925064,
+ "learning_rate": 0.00018382496317382715,
+ "loss": 1.8632150888442993,
+ "step": 2311
+ },
+ {
+ "epoch": 32.11149825783972,
+ "grad_norm": 0.060433197766542435,
+ "learning_rate": 0.0001835808277764997,
+ "loss": 1.8358535766601562,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12543554006969,
+ "grad_norm": 0.062378350645303726,
+ "learning_rate": 0.00018333678859304222,
+ "loss": 1.8390008211135864,
+ "step": 2313
+ },
+ {
+ "epoch": 32.13937282229965,
+ "grad_norm": 0.06074725463986397,
+ "learning_rate": 0.00018309284582007274,
+ "loss": 1.858860731124878,
+ "step": 2314
+ },
+ {
+ "epoch": 32.153310104529616,
+ "grad_norm": 0.06083287298679352,
+ "learning_rate": 0.0001828489996541318,
+ "loss": 1.8486149311065674,
+ "step": 2315
+ },
+ {
+ "epoch": 32.167247386759584,
+ "grad_norm": 0.06116314232349396,
+ "learning_rate": 0.00018260525029168147,
+ "loss": 1.8581088781356812,
+ "step": 2316
+ },
+ {
+ "epoch": 32.181184668989545,
+ "grad_norm": 0.061406541615724564,
+ "learning_rate": 0.00018236159792910648,
+ "loss": 1.8591161966323853,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19512195121951,
+ "grad_norm": 0.05874199792742729,
+ "learning_rate": 0.00018211804276271304,
+ "loss": 1.8300669193267822,
+ "step": 2318
+ },
+ {
+ "epoch": 32.20905923344948,
+ "grad_norm": 0.060864705592393875,
+ "learning_rate": 0.00018187458498872914,
+ "loss": 1.8424736261367798,
+ "step": 2319
+ },
+ {
+ "epoch": 32.22299651567944,
+ "grad_norm": 0.06172594800591469,
+ "learning_rate": 0.00018163122480330433,
+ "loss": 1.8516032695770264,
+ "step": 2320
+ },
+ {
+ "epoch": 32.23693379790941,
+ "grad_norm": 0.06272125989198685,
+ "learning_rate": 0.00018138796240250955,
+ "loss": 1.8525536060333252,
+ "step": 2321
+ },
+ {
+ "epoch": 32.250871080139376,
+ "grad_norm": 0.06103010103106499,
+ "learning_rate": 0.00018114479798233686,
+ "loss": 1.8574954271316528,
+ "step": 2322
+ },
+ {
+ "epoch": 32.26480836236934,
+ "grad_norm": 0.061883945018053055,
+ "learning_rate": 0.00018090173173869939,
+ "loss": 1.8559205532073975,
+ "step": 2323
+ },
+ {
+ "epoch": 32.278745644599304,
+ "grad_norm": 0.06176813691854477,
+ "learning_rate": 0.00018065876386743143,
+ "loss": 1.8415580987930298,
+ "step": 2324
+ },
+ {
+ "epoch": 32.292682926829265,
+ "grad_norm": 0.059729915112257004,
+ "learning_rate": 0.00018041589456428754,
+ "loss": 1.8413065671920776,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30662020905923,
+ "grad_norm": 0.062042899429798126,
+ "learning_rate": 0.0001801731240249434,
+ "loss": 1.8559092283248901,
+ "step": 2326
+ },
+ {
+ "epoch": 32.3205574912892,
+ "grad_norm": 0.06083200126886368,
+ "learning_rate": 0.00017993045244499463,
+ "loss": 1.837567687034607,
+ "step": 2327
+ },
+ {
+ "epoch": 32.33449477351916,
+ "grad_norm": 0.060482755303382874,
+ "learning_rate": 0.00017968788001995742,
+ "loss": 1.853471279144287,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34843205574913,
+ "grad_norm": 0.06265296787023544,
+ "learning_rate": 0.000179445406945268,
+ "loss": 1.8431742191314697,
+ "step": 2329
+ },
+ {
+ "epoch": 32.362369337979096,
+ "grad_norm": 0.060122255235910416,
+ "learning_rate": 0.0001792030334162825,
+ "loss": 1.8470524549484253,
+ "step": 2330
+ },
+ {
+ "epoch": 32.37630662020906,
+ "grad_norm": 0.06117526814341545,
+ "learning_rate": 0.00017896075962827706,
+ "loss": 1.8635870218276978,
+ "step": 2331
+ },
+ {
+ "epoch": 32.390243902439025,
+ "grad_norm": 0.05970590561628342,
+ "learning_rate": 0.00017871858577644712,
+ "loss": 1.8443195819854736,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40418118466899,
+ "grad_norm": 0.06281629204750061,
+ "learning_rate": 0.0001784765120559078,
+ "loss": 1.8494038581848145,
+ "step": 2333
+ },
+ {
+ "epoch": 32.41811846689895,
+ "grad_norm": 0.06238580122590065,
+ "learning_rate": 0.00017823453866169355,
+ "loss": 1.8372313976287842,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43205574912892,
+ "grad_norm": 0.062138594686985016,
+ "learning_rate": 0.00017799266578875808,
+ "loss": 1.8546266555786133,
+ "step": 2335
+ },
+ {
+ "epoch": 32.44599303135889,
+ "grad_norm": 0.06474311649799347,
+ "learning_rate": 0.00017775089363197371,
+ "loss": 1.8548964262008667,
+ "step": 2336
+ },
+ {
+ "epoch": 32.45993031358885,
+ "grad_norm": 0.061230190098285675,
+ "learning_rate": 0.00017750922238613198,
+ "loss": 1.8663136959075928,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47386759581882,
+ "grad_norm": 0.06422504782676697,
+ "learning_rate": 0.00017726765224594342,
+ "loss": 1.8415696620941162,
+ "step": 2338
+ },
+ {
+ "epoch": 32.48780487804878,
+ "grad_norm": 0.061609867960214615,
+ "learning_rate": 0.0001770261834060363,
+ "loss": 1.8407015800476074,
+ "step": 2339
+ },
+ {
+ "epoch": 32.501742160278745,
+ "grad_norm": 0.06351736187934875,
+ "learning_rate": 0.00017678481606095786,
+ "loss": 1.8690993785858154,
+ "step": 2340
+ },
+ {
+ "epoch": 32.51567944250871,
+ "grad_norm": 0.06250591576099396,
+ "learning_rate": 0.0001765435504051734,
+ "loss": 1.8602087497711182,
+ "step": 2341
+ },
+ {
+ "epoch": 32.52961672473867,
+ "grad_norm": 0.0634881779551506,
+ "learning_rate": 0.0001763023866330664,
+ "loss": 1.8532803058624268,
+ "step": 2342
+ },
+ {
+ "epoch": 32.54355400696864,
+ "grad_norm": 0.06350140273571014,
+ "learning_rate": 0.00017606132493893793,
+ "loss": 1.8563673496246338,
+ "step": 2343
+ },
+ {
+ "epoch": 32.55749128919861,
+ "grad_norm": 0.0628136470913887,
+ "learning_rate": 0.00017582036551700724,
+ "loss": 1.8458285331726074,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57142857142857,
+ "grad_norm": 0.061659421771764755,
+ "learning_rate": 0.00017557950856141085,
+ "loss": 1.8418179750442505,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58536585365854,
+ "grad_norm": 0.06315319985151291,
+ "learning_rate": 0.00017533875426620286,
+ "loss": 1.8524972200393677,
+ "step": 2346
+ },
+ {
+ "epoch": 32.599303135888505,
+ "grad_norm": 0.06313202530145645,
+ "learning_rate": 0.00017509810282535497,
+ "loss": 1.8697175979614258,
+ "step": 2347
+ },
+ {
+ "epoch": 32.613240418118465,
+ "grad_norm": 0.06376877427101135,
+ "learning_rate": 0.00017485755443275513,
+ "loss": 1.8543388843536377,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62717770034843,
+ "grad_norm": 0.06332594901323318,
+ "learning_rate": 0.0001746171092822094,
+ "loss": 1.8648786544799805,
+ "step": 2349
+ },
+ {
+ "epoch": 32.641114982578394,
+ "grad_norm": 0.06469792127609253,
+ "learning_rate": 0.00017437676756743974,
+ "loss": 1.8419265747070312,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65505226480836,
+ "grad_norm": 0.061898306012153625,
+ "learning_rate": 0.00017413652948208524,
+ "loss": 1.851563811302185,
+ "step": 2351
+ },
+ {
+ "epoch": 32.66898954703833,
+ "grad_norm": 0.06442069262266159,
+ "learning_rate": 0.00017389639521970136,
+ "loss": 1.8633778095245361,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68292682926829,
+ "grad_norm": 0.06396457552909851,
+ "learning_rate": 0.00017365636497376004,
+ "loss": 1.8566405773162842,
+ "step": 2353
+ },
+ {
+ "epoch": 32.69686411149826,
+ "grad_norm": 0.06507355719804764,
+ "learning_rate": 0.00017341643893764927,
+ "loss": 1.8515483140945435,
+ "step": 2354
+ },
+ {
+ "epoch": 32.710801393728225,
+ "grad_norm": 0.06362279504537582,
+ "learning_rate": 0.000173176617304673,
+ "loss": 1.8504688739776611,
+ "step": 2355
+ },
+ {
+ "epoch": 32.724738675958186,
+ "grad_norm": 0.06472098082304001,
+ "learning_rate": 0.00017293690026805124,
+ "loss": 1.8664718866348267,
+ "step": 2356
+ },
+ {
+ "epoch": 32.73867595818815,
+ "grad_norm": 0.06595539301633835,
+ "learning_rate": 0.00017269728802091975,
+ "loss": 1.85841703414917,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75261324041812,
+ "grad_norm": 0.06441406160593033,
+ "learning_rate": 0.00017245778075632975,
+ "loss": 1.8595399856567383,
+ "step": 2358
+ },
+ {
+ "epoch": 32.76655052264808,
+ "grad_norm": 0.06528541445732117,
+ "learning_rate": 0.00017221837866724792,
+ "loss": 1.8631956577301025,
+ "step": 2359
+ },
+ {
+ "epoch": 32.78048780487805,
+ "grad_norm": 0.06445346027612686,
+ "learning_rate": 0.00017197908194655615,
+ "loss": 1.8592196702957153,
+ "step": 2360
+ },
+ {
+ "epoch": 32.79442508710802,
+ "grad_norm": 0.06681986898183823,
+ "learning_rate": 0.00017173989078705175,
+ "loss": 1.8577229976654053,
+ "step": 2361
+ },
+ {
+ "epoch": 32.80836236933798,
+ "grad_norm": 0.06391933560371399,
+ "learning_rate": 0.0001715008053814463,
+ "loss": 1.8735485076904297,
+ "step": 2362
+ },
+ {
+ "epoch": 32.822299651567945,
+ "grad_norm": 0.06460464745759964,
+ "learning_rate": 0.00017126182592236682,
+ "loss": 1.8651924133300781,
+ "step": 2363
+ },
+ {
+ "epoch": 32.836236933797906,
+ "grad_norm": 0.06430543959140778,
+ "learning_rate": 0.00017102295260235472,
+ "loss": 1.8450695276260376,
+ "step": 2364
+ },
+ {
+ "epoch": 32.850174216027874,
+ "grad_norm": 0.0646093487739563,
+ "learning_rate": 0.0001707841856138659,
+ "loss": 1.865610122680664,
+ "step": 2365
+ },
+ {
+ "epoch": 32.86411149825784,
+ "grad_norm": 0.06532672047615051,
+ "learning_rate": 0.00017054552514927061,
+ "loss": 1.8587243556976318,
+ "step": 2366
+ },
+ {
+ "epoch": 32.8780487804878,
+ "grad_norm": 0.06643696129322052,
+ "learning_rate": 0.00017030697140085334,
+ "loss": 1.8772244453430176,
+ "step": 2367
+ },
+ {
+ "epoch": 32.89198606271777,
+ "grad_norm": 0.06484723091125488,
+ "learning_rate": 0.0001700685245608126,
+ "loss": 1.8686251640319824,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90592334494774,
+ "grad_norm": 0.06564180552959442,
+ "learning_rate": 0.00016983018482126047,
+ "loss": 1.8513834476470947,
+ "step": 2369
+ },
+ {
+ "epoch": 32.9198606271777,
+ "grad_norm": 0.06441337615251541,
+ "learning_rate": 0.00016959195237422305,
+ "loss": 1.8773045539855957,
+ "step": 2370
+ },
+ {
+ "epoch": 32.933797909407666,
+ "grad_norm": 0.06720676273107529,
+ "learning_rate": 0.00016935382741164,
+ "loss": 1.8712348937988281,
+ "step": 2371
+ },
+ {
+ "epoch": 32.94773519163763,
+ "grad_norm": 0.06504860520362854,
+ "learning_rate": 0.00016911581012536424,
+ "loss": 1.8732126951217651,
+ "step": 2372
+ },
+ {
+ "epoch": 32.961672473867594,
+ "grad_norm": 0.0659131333231926,
+ "learning_rate": 0.0001688779007071622,
+ "loss": 1.858228325843811,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97560975609756,
+ "grad_norm": 0.06513261049985886,
+ "learning_rate": 0.00016864009934871275,
+ "loss": 1.8600943088531494,
+ "step": 2374
+ },
+ {
+ "epoch": 32.98954703832753,
+ "grad_norm": 0.06422273069620132,
+ "learning_rate": 0.0001684024062416087,
+ "loss": 1.864603042602539,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.055188730359077454,
+ "learning_rate": 0.0001681648215773546,
+ "loss": 1.3973428010940552,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 0.6440953612327576,
+ "eval_runtime": 42.5396,
+ "eval_samples_per_second": 57.405,
+ "eval_steps_per_second": 0.47,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01393728222997,
+ "grad_norm": 0.058126285672187805,
+ "learning_rate": 0.0001679273455473684,
+ "loss": 1.8378994464874268,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02787456445993,
+ "grad_norm": 0.06061682105064392,
+ "learning_rate": 0.0001676899783429802,
+ "loss": 1.8208311796188354,
+ "step": 2378
+ },
+ {
+ "epoch": 33.041811846689896,
+ "grad_norm": 0.0603339746594429,
+ "learning_rate": 0.00016745272015543242,
+ "loss": 1.823789119720459,
+ "step": 2379
+ },
+ {
+ "epoch": 33.055749128919864,
+ "grad_norm": 0.06169679015874863,
+ "learning_rate": 0.0001672155711758799,
+ "loss": 1.8269317150115967,
+ "step": 2380
+ },
+ {
+ "epoch": 33.069686411149824,
+ "grad_norm": 0.0586705207824707,
+ "learning_rate": 0.00016697853159538896,
+ "loss": 1.847499132156372,
+ "step": 2381
+ },
+ {
+ "epoch": 33.08362369337979,
+ "grad_norm": 0.06207786127924919,
+ "learning_rate": 0.0001667416016049383,
+ "loss": 1.8290098905563354,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09756097560975,
+ "grad_norm": 0.05864856019616127,
+ "learning_rate": 0.0001665047813954181,
+ "loss": 1.8500827550888062,
+ "step": 2383
+ },
+ {
+ "epoch": 33.11149825783972,
+ "grad_norm": 0.058817241340875626,
+ "learning_rate": 0.00016626807115763023,
+ "loss": 1.8350820541381836,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12543554006969,
+ "grad_norm": 0.060937561094760895,
+ "learning_rate": 0.00016603147108228754,
+ "loss": 1.8292570114135742,
+ "step": 2385
+ },
+ {
+ "epoch": 33.13937282229965,
+ "grad_norm": 0.06049133092164993,
+ "learning_rate": 0.00016579498136001485,
+ "loss": 1.8366070985794067,
+ "step": 2386
+ },
+ {
+ "epoch": 33.153310104529616,
+ "grad_norm": 0.06166869029402733,
+ "learning_rate": 0.00016555860218134738,
+ "loss": 1.8381221294403076,
+ "step": 2387
+ },
+ {
+ "epoch": 33.167247386759584,
+ "grad_norm": 0.05990896746516228,
+ "learning_rate": 0.00016532233373673164,
+ "loss": 1.8373796939849854,
+ "step": 2388
+ },
+ {
+ "epoch": 33.181184668989545,
+ "grad_norm": 0.060654930770397186,
+ "learning_rate": 0.00016508617621652488,
+ "loss": 1.8394211530685425,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19512195121951,
+ "grad_norm": 0.0603005588054657,
+ "learning_rate": 0.00016485012981099488,
+ "loss": 1.8226966857910156,
+ "step": 2390
+ },
+ {
+ "epoch": 33.20905923344948,
+ "grad_norm": 0.06139668822288513,
+ "learning_rate": 0.0001646141947103201,
+ "loss": 1.8316700458526611,
+ "step": 2391
+ },
+ {
+ "epoch": 33.22299651567944,
+ "grad_norm": 0.06096554547548294,
+ "learning_rate": 0.0001643783711045889,
+ "loss": 1.847790241241455,
+ "step": 2392
+ },
+ {
+ "epoch": 33.23693379790941,
+ "grad_norm": 0.06046409532427788,
+ "learning_rate": 0.0001641426591838005,
+ "loss": 1.8410671949386597,
+ "step": 2393
+ },
+ {
+ "epoch": 33.250871080139376,
+ "grad_norm": 0.060197826474905014,
+ "learning_rate": 0.00016390705913786344,
+ "loss": 1.8428468704223633,
+ "step": 2394
+ },
+ {
+ "epoch": 33.26480836236934,
+ "grad_norm": 0.058461710810661316,
+ "learning_rate": 0.00016367157115659646,
+ "loss": 1.841080665588379,
+ "step": 2395
+ },
+ {
+ "epoch": 33.278745644599304,
+ "grad_norm": 0.0600469708442688,
+ "learning_rate": 0.00016343619542972808,
+ "loss": 1.8265113830566406,
+ "step": 2396
+ },
+ {
+ "epoch": 33.292682926829265,
+ "grad_norm": 0.05934802442789078,
+ "learning_rate": 0.0001632009321468962,
+ "loss": 1.8448898792266846,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30662020905923,
+ "grad_norm": 0.060389988124370575,
+ "learning_rate": 0.00016296578149764833,
+ "loss": 1.8332173824310303,
+ "step": 2398
+ },
+ {
+ "epoch": 33.3205574912892,
+ "grad_norm": 0.05980642884969711,
+ "learning_rate": 0.00016273074367144087,
+ "loss": 1.84235417842865,
+ "step": 2399
+ },
+ {
+ "epoch": 33.33449477351916,
+ "grad_norm": 0.06064719706773758,
+ "learning_rate": 0.00016249581885763968,
+ "loss": 1.83778715133667,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34843205574913,
+ "grad_norm": 0.060422275215387344,
+ "learning_rate": 0.0001622610072455194,
+ "loss": 1.836384654045105,
+ "step": 2401
+ },
+ {
+ "epoch": 33.362369337979096,
+ "grad_norm": 0.06085652485489845,
+ "learning_rate": 0.00016202630902426355,
+ "loss": 1.8299217224121094,
+ "step": 2402
+ },
+ {
+ "epoch": 33.37630662020906,
+ "grad_norm": 0.06078358739614487,
+ "learning_rate": 0.00016179172438296423,
+ "loss": 1.8527088165283203,
+ "step": 2403
+ },
+ {
+ "epoch": 33.390243902439025,
+ "grad_norm": 0.06237566098570824,
+ "learning_rate": 0.00016155725351062205,
+ "loss": 1.8342247009277344,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40418118466899,
+ "grad_norm": 0.06274822354316711,
+ "learning_rate": 0.00016132289659614605,
+ "loss": 1.8272922039031982,
+ "step": 2405
+ },
+ {
+ "epoch": 33.41811846689895,
+ "grad_norm": 0.06164759397506714,
+ "learning_rate": 0.00016108865382835318,
+ "loss": 1.8365296125411987,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43205574912892,
+ "grad_norm": 0.06274817883968353,
+ "learning_rate": 0.00016085452539596864,
+ "loss": 1.8382642269134521,
+ "step": 2407
+ },
+ {
+ "epoch": 33.44599303135889,
+ "grad_norm": 0.06088731437921524,
+ "learning_rate": 0.0001606205114876256,
+ "loss": 1.8406622409820557,
+ "step": 2408
+ },
+ {
+ "epoch": 33.45993031358885,
+ "grad_norm": 0.06455288827419281,
+ "learning_rate": 0.00016038661229186472,
+ "loss": 1.833195447921753,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47386759581882,
+ "grad_norm": 0.061410367488861084,
+ "learning_rate": 0.00016015282799713453,
+ "loss": 1.830909252166748,
+ "step": 2410
+ },
+ {
+ "epoch": 33.48780487804878,
+ "grad_norm": 0.06312009692192078,
+ "learning_rate": 0.0001599191587917905,
+ "loss": 1.839772343635559,
+ "step": 2411
+ },
+ {
+ "epoch": 33.501742160278745,
+ "grad_norm": 0.06414929777383804,
+ "learning_rate": 0.0001596856048640961,
+ "loss": 1.8574250936508179,
+ "step": 2412
+ },
+ {
+ "epoch": 33.51567944250871,
+ "grad_norm": 0.06299755722284317,
+ "learning_rate": 0.00015945216640222116,
+ "loss": 1.8385207653045654,
+ "step": 2413
+ },
+ {
+ "epoch": 33.52961672473867,
+ "grad_norm": 0.06244301423430443,
+ "learning_rate": 0.000159218843594243,
+ "loss": 1.845157265663147,
+ "step": 2414
+ },
+ {
+ "epoch": 33.54355400696864,
+ "grad_norm": 0.06268925219774246,
+ "learning_rate": 0.0001589856366281455,
+ "loss": 1.8225502967834473,
+ "step": 2415
+ },
+ {
+ "epoch": 33.55749128919861,
+ "grad_norm": 0.06370935589075089,
+ "learning_rate": 0.0001587525456918194,
+ "loss": 1.8363447189331055,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57142857142857,
+ "grad_norm": 0.06543995440006256,
+ "learning_rate": 0.0001585195709730619,
+ "loss": 1.833327293395996,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58536585365854,
+ "grad_norm": 0.06178088113665581,
+ "learning_rate": 0.00015828671265957623,
+ "loss": 1.8498637676239014,
+ "step": 2418
+ },
+ {
+ "epoch": 33.599303135888505,
+ "grad_norm": 0.06223836913704872,
+ "learning_rate": 0.00015805397093897255,
+ "loss": 1.838489294052124,
+ "step": 2419
+ },
+ {
+ "epoch": 33.613240418118465,
+ "grad_norm": 0.06262598931789398,
+ "learning_rate": 0.00015782134599876633,
+ "loss": 1.8468639850616455,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62717770034843,
+ "grad_norm": 0.06392983347177505,
+ "learning_rate": 0.00015758883802637953,
+ "loss": 1.8385651111602783,
+ "step": 2421
+ },
+ {
+ "epoch": 33.641114982578394,
+ "grad_norm": 0.06200742349028587,
+ "learning_rate": 0.00015735644720913923,
+ "loss": 1.8447084426879883,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65505226480836,
+ "grad_norm": 0.06597801297903061,
+ "learning_rate": 0.00015712417373427897,
+ "loss": 1.8448331356048584,
+ "step": 2423
+ },
+ {
+ "epoch": 33.66898954703833,
+ "grad_norm": 0.06509242206811905,
+ "learning_rate": 0.00015689201778893713,
+ "loss": 1.853779911994934,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68292682926829,
+ "grad_norm": 0.06515370309352875,
+ "learning_rate": 0.00015665997956015743,
+ "loss": 1.8492741584777832,
+ "step": 2425
+ },
+ {
+ "epoch": 33.69686411149826,
+ "grad_norm": 0.06344641745090485,
+ "learning_rate": 0.00015642805923488895,
+ "loss": 1.8240808248519897,
+ "step": 2426
+ },
+ {
+ "epoch": 33.710801393728225,
+ "grad_norm": 0.06296426057815552,
+ "learning_rate": 0.00015619625699998585,
+ "loss": 1.8452916145324707,
+ "step": 2427
+ },
+ {
+ "epoch": 33.724738675958186,
+ "grad_norm": 0.06552107632160187,
+ "learning_rate": 0.00015596457304220692,
+ "loss": 1.8414363861083984,
+ "step": 2428
+ },
+ {
+ "epoch": 33.73867595818815,
+ "grad_norm": 0.06322826445102692,
+ "learning_rate": 0.00015573300754821547,
+ "loss": 1.8490327596664429,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75261324041812,
+ "grad_norm": 0.06481730937957764,
+ "learning_rate": 0.00015550156070458002,
+ "loss": 1.8198773860931396,
+ "step": 2430
+ },
+ {
+ "epoch": 33.76655052264808,
+ "grad_norm": 0.06322740018367767,
+ "learning_rate": 0.0001552702326977731,
+ "loss": 1.8379902839660645,
+ "step": 2431
+ },
+ {
+ "epoch": 33.78048780487805,
+ "grad_norm": 0.0660315454006195,
+ "learning_rate": 0.00015503902371417122,
+ "loss": 1.8431508541107178,
+ "step": 2432
+ },
+ {
+ "epoch": 33.79442508710802,
+ "grad_norm": 0.06548485159873962,
+ "learning_rate": 0.00015480793394005547,
+ "loss": 1.8435306549072266,
+ "step": 2433
+ },
+ {
+ "epoch": 33.80836236933798,
+ "grad_norm": 0.0642753317952156,
+ "learning_rate": 0.0001545769635616107,
+ "loss": 1.8333635330200195,
+ "step": 2434
+ },
+ {
+ "epoch": 33.822299651567945,
+ "grad_norm": 0.06514805555343628,
+ "learning_rate": 0.0001543461127649256,
+ "loss": 1.860312819480896,
+ "step": 2435
+ },
+ {
+ "epoch": 33.836236933797906,
+ "grad_norm": 0.06455788016319275,
+ "learning_rate": 0.00015411538173599231,
+ "loss": 1.8513085842132568,
+ "step": 2436
+ },
+ {
+ "epoch": 33.850174216027874,
+ "grad_norm": 0.06607019901275635,
+ "learning_rate": 0.00015388477066070674,
+ "loss": 1.8457266092300415,
+ "step": 2437
+ },
+ {
+ "epoch": 33.86411149825784,
+ "grad_norm": 0.06435948610305786,
+ "learning_rate": 0.00015365427972486827,
+ "loss": 1.8381249904632568,
+ "step": 2438
+ },
+ {
+ "epoch": 33.8780487804878,
+ "grad_norm": 0.06571139395236969,
+ "learning_rate": 0.00015342390911417904,
+ "loss": 1.8319785594940186,
+ "step": 2439
+ },
+ {
+ "epoch": 33.89198606271777,
+ "grad_norm": 0.06674250215291977,
+ "learning_rate": 0.00015319365901424452,
+ "loss": 1.8493732213974,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90592334494774,
+ "grad_norm": 0.06501804292201996,
+ "learning_rate": 0.0001529635296105732,
+ "loss": 1.8349519968032837,
+ "step": 2441
+ },
+ {
+ "epoch": 33.9198606271777,
+ "grad_norm": 0.06749753654003143,
+ "learning_rate": 0.0001527335210885761,
+ "loss": 1.862501859664917,
+ "step": 2442
+ },
+ {
+ "epoch": 33.933797909407666,
+ "grad_norm": 0.06523770093917847,
+ "learning_rate": 0.00015250363363356685,
+ "loss": 1.84731125831604,
+ "step": 2443
+ },
+ {
+ "epoch": 33.94773519163763,
+ "grad_norm": 0.06762465834617615,
+ "learning_rate": 0.00015227386743076155,
+ "loss": 1.8576481342315674,
+ "step": 2444
+ },
+ {
+ "epoch": 33.961672473867594,
+ "grad_norm": 0.06551655381917953,
+ "learning_rate": 0.00015204422266527911,
+ "loss": 1.8472511768341064,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97560975609756,
+ "grad_norm": 0.06891904771327972,
+ "learning_rate": 0.00015181469952213968,
+ "loss": 1.8325382471084595,
+ "step": 2446
+ },
+ {
+ "epoch": 33.98954703832753,
+ "grad_norm": 0.06538119167089462,
+ "learning_rate": 0.0001515852981862663,
+ "loss": 1.8476707935333252,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.05324097350239754,
+ "learning_rate": 0.00015135601884248303,
+ "loss": 1.3832170963287354,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 0.6456387042999268,
+ "eval_runtime": 38.8493,
+ "eval_samples_per_second": 62.858,
+ "eval_steps_per_second": 0.515,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01393728222997,
+ "grad_norm": 0.061544593423604965,
+ "learning_rate": 0.0001511268616755166,
+ "loss": 1.8143833875656128,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02787456445993,
+ "grad_norm": 0.05995706468820572,
+ "learning_rate": 0.00015089782686999445,
+ "loss": 1.8281774520874023,
+ "step": 2450
+ },
+ {
+ "epoch": 34.041811846689896,
+ "grad_norm": 0.061882853507995605,
+ "learning_rate": 0.00015066891461044588,
+ "loss": 1.8186081647872925,
+ "step": 2451
+ },
+ {
+ "epoch": 34.055749128919864,
+ "grad_norm": 0.05911208316683769,
+ "learning_rate": 0.00015044012508130138,
+ "loss": 1.8171322345733643,
+ "step": 2452
+ },
+ {
+ "epoch": 34.069686411149824,
+ "grad_norm": 0.05762029439210892,
+ "learning_rate": 0.00015021145846689254,
+ "loss": 1.8289903402328491,
+ "step": 2453
+ },
+ {
+ "epoch": 34.08362369337979,
+ "grad_norm": 0.06098875030875206,
+ "learning_rate": 0.00014998291495145206,
+ "loss": 1.8244364261627197,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09756097560975,
+ "grad_norm": 0.060347780585289,
+ "learning_rate": 0.00014975449471911294,
+ "loss": 1.818152666091919,
+ "step": 2455
+ },
+ {
+ "epoch": 34.11149825783972,
+ "grad_norm": 0.06011926382780075,
+ "learning_rate": 0.0001495261979539097,
+ "loss": 1.8218905925750732,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12543554006969,
+ "grad_norm": 0.05958009883761406,
+ "learning_rate": 0.0001492980248397766,
+ "loss": 1.8378891944885254,
+ "step": 2457
+ },
+ {
+ "epoch": 34.13937282229965,
+ "grad_norm": 0.060227006673812866,
+ "learning_rate": 0.00014906997556054865,
+ "loss": 1.8179614543914795,
+ "step": 2458
+ },
+ {
+ "epoch": 34.153310104529616,
+ "grad_norm": 0.061011530458927155,
+ "learning_rate": 0.00014884205029996113,
+ "loss": 1.8247592449188232,
+ "step": 2459
+ },
+ {
+ "epoch": 34.167247386759584,
+ "grad_norm": 0.05921728536486626,
+ "learning_rate": 0.00014861424924164925,
+ "loss": 1.8255550861358643,
+ "step": 2460
+ },
+ {
+ "epoch": 34.181184668989545,
+ "grad_norm": 0.06191205978393555,
+ "learning_rate": 0.00014838657256914832,
+ "loss": 1.8160936832427979,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19512195121951,
+ "grad_norm": 0.05961717665195465,
+ "learning_rate": 0.0001481590204658931,
+ "loss": 1.7988860607147217,
+ "step": 2462
+ },
+ {
+ "epoch": 34.20905923344948,
+ "grad_norm": 0.06147215515375137,
+ "learning_rate": 0.00014793159311521833,
+ "loss": 1.8266009092330933,
+ "step": 2463
+ },
+ {
+ "epoch": 34.22299651567944,
+ "grad_norm": 0.05942768603563309,
+ "learning_rate": 0.00014770429070035812,
+ "loss": 1.8312751054763794,
+ "step": 2464
+ },
+ {
+ "epoch": 34.23693379790941,
+ "grad_norm": 0.060584649443626404,
+ "learning_rate": 0.00014747711340444601,
+ "loss": 1.822584629058838,
+ "step": 2465
+ },
+ {
+ "epoch": 34.250871080139376,
+ "grad_norm": 0.05929860472679138,
+ "learning_rate": 0.00014725006141051434,
+ "loss": 1.8148616552352905,
+ "step": 2466
+ },
+ {
+ "epoch": 34.26480836236934,
+ "grad_norm": 0.06036009266972542,
+ "learning_rate": 0.00014702313490149512,
+ "loss": 1.8295557498931885,
+ "step": 2467
+ },
+ {
+ "epoch": 34.278745644599304,
+ "grad_norm": 0.06171515956521034,
+ "learning_rate": 0.00014679633406021892,
+ "loss": 1.8145090341567993,
+ "step": 2468
+ },
+ {
+ "epoch": 34.292682926829265,
+ "grad_norm": 0.061903972178697586,
+ "learning_rate": 0.00014656965906941494,
+ "loss": 1.8265849351882935,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30662020905923,
+ "grad_norm": 0.06090715155005455,
+ "learning_rate": 0.00014634311011171112,
+ "loss": 1.8090901374816895,
+ "step": 2470
+ },
+ {
+ "epoch": 34.3205574912892,
+ "grad_norm": 0.060219816863536835,
+ "learning_rate": 0.00014611668736963396,
+ "loss": 1.8254625797271729,
+ "step": 2471
+ },
+ {
+ "epoch": 34.33449477351916,
+ "grad_norm": 0.06206131726503372,
+ "learning_rate": 0.00014589039102560822,
+ "loss": 1.831300139427185,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34843205574913,
+ "grad_norm": 0.06065662205219269,
+ "learning_rate": 0.00014566422126195656,
+ "loss": 1.8371552228927612,
+ "step": 2473
+ },
+ {
+ "epoch": 34.362369337979096,
+ "grad_norm": 0.061889007687568665,
+ "learning_rate": 0.00014543817826089992,
+ "loss": 1.8082828521728516,
+ "step": 2474
+ },
+ {
+ "epoch": 34.37630662020906,
+ "grad_norm": 0.05962798744440079,
+ "learning_rate": 0.0001452122622045574,
+ "loss": 1.8357537984848022,
+ "step": 2475
+ },
+ {
+ "epoch": 34.390243902439025,
+ "grad_norm": 0.06283676624298096,
+ "learning_rate": 0.00014498647327494506,
+ "loss": 1.8315505981445312,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40418118466899,
+ "grad_norm": 0.06130822002887726,
+ "learning_rate": 0.00014476081165397715,
+ "loss": 1.8286545276641846,
+ "step": 2477
+ },
+ {
+ "epoch": 34.41811846689895,
+ "grad_norm": 0.06045953929424286,
+ "learning_rate": 0.00014453527752346517,
+ "loss": 1.8219239711761475,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43205574912892,
+ "grad_norm": 0.06052744388580322,
+ "learning_rate": 0.00014430987106511795,
+ "loss": 1.8232624530792236,
+ "step": 2479
+ },
+ {
+ "epoch": 34.44599303135889,
+ "grad_norm": 0.06020310893654823,
+ "learning_rate": 0.00014408459246054126,
+ "loss": 1.833443522453308,
+ "step": 2480
+ },
+ {
+ "epoch": 34.45993031358885,
+ "grad_norm": 0.0614689365029335,
+ "learning_rate": 0.00014385944189123794,
+ "loss": 1.8213250637054443,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47386759581882,
+ "grad_norm": 0.06148214265704155,
+ "learning_rate": 0.00014363441953860805,
+ "loss": 1.8208796977996826,
+ "step": 2482
+ },
+ {
+ "epoch": 34.48780487804878,
+ "grad_norm": 0.061143435537815094,
+ "learning_rate": 0.00014340952558394778,
+ "loss": 1.8060634136199951,
+ "step": 2483
+ },
+ {
+ "epoch": 34.501742160278745,
+ "grad_norm": 0.06256826967000961,
+ "learning_rate": 0.00014318476020845018,
+ "loss": 1.8441283702850342,
+ "step": 2484
+ },
+ {
+ "epoch": 34.51567944250871,
+ "grad_norm": 0.06325773149728775,
+ "learning_rate": 0.0001429601235932047,
+ "loss": 1.8289194107055664,
+ "step": 2485
+ },
+ {
+ "epoch": 34.52961672473867,
+ "grad_norm": 0.06207616627216339,
+ "learning_rate": 0.00014273561591919705,
+ "loss": 1.8226757049560547,
+ "step": 2486
+ },
+ {
+ "epoch": 34.54355400696864,
+ "grad_norm": 0.062450069934129715,
+ "learning_rate": 0.00014251123736730884,
+ "loss": 1.8158135414123535,
+ "step": 2487
+ },
+ {
+ "epoch": 34.55749128919861,
+ "grad_norm": 0.06260907649993896,
+ "learning_rate": 0.00014228698811831787,
+ "loss": 1.8142571449279785,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57142857142857,
+ "grad_norm": 0.0641574040055275,
+ "learning_rate": 0.0001420628683528978,
+ "loss": 1.8269929885864258,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58536585365854,
+ "grad_norm": 0.06434120237827301,
+ "learning_rate": 0.00014183887825161779,
+ "loss": 1.8375412225723267,
+ "step": 2490
+ },
+ {
+ "epoch": 34.599303135888505,
+ "grad_norm": 0.06156579405069351,
+ "learning_rate": 0.0001416150179949428,
+ "loss": 1.8158376216888428,
+ "step": 2491
+ },
+ {
+ "epoch": 34.613240418118465,
+ "grad_norm": 0.06551021337509155,
+ "learning_rate": 0.0001413912877632326,
+ "loss": 1.8365397453308105,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62717770034843,
+ "grad_norm": 0.06178220361471176,
+ "learning_rate": 0.00014116768773674306,
+ "loss": 1.8288542032241821,
+ "step": 2493
+ },
+ {
+ "epoch": 34.641114982578394,
+ "grad_norm": 0.06431970000267029,
+ "learning_rate": 0.00014094421809562438,
+ "loss": 1.8176591396331787,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65505226480836,
+ "grad_norm": 0.06383472681045532,
+ "learning_rate": 0.00014072087901992209,
+ "loss": 1.8409924507141113,
+ "step": 2495
+ },
+ {
+ "epoch": 34.66898954703833,
+ "grad_norm": 0.06315146386623383,
+ "learning_rate": 0.00014049767068957645,
+ "loss": 1.8267871141433716,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68292682926829,
+ "grad_norm": 0.06440278142690659,
+ "learning_rate": 0.00014027459328442242,
+ "loss": 1.8300566673278809,
+ "step": 2497
+ },
+ {
+ "epoch": 34.69686411149826,
+ "grad_norm": 0.06525930017232895,
+ "learning_rate": 0.00014005164698418948,
+ "loss": 1.831039309501648,
+ "step": 2498
+ },
+ {
+ "epoch": 34.710801393728225,
+ "grad_norm": 0.06240379810333252,
+ "learning_rate": 0.0001398288319685013,
+ "loss": 1.8204154968261719,
+ "step": 2499
+ },
+ {
+ "epoch": 34.724738675958186,
+ "grad_norm": 0.06432971358299255,
+ "learning_rate": 0.00013960614841687595,
+ "loss": 1.826758861541748,
+ "step": 2500
+ },
+ {
+ "epoch": 34.73867595818815,
+ "grad_norm": 0.06324490159749985,
+ "learning_rate": 0.00013938359650872558,
+ "loss": 1.8415192365646362,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75261324041812,
+ "grad_norm": 0.06293605268001556,
+ "learning_rate": 0.00013916117642335623,
+ "loss": 1.821230411529541,
+ "step": 2502
+ },
+ {
+ "epoch": 34.76655052264808,
+ "grad_norm": 0.0630170926451683,
+ "learning_rate": 0.00013893888833996774,
+ "loss": 1.8322150707244873,
+ "step": 2503
+ },
+ {
+ "epoch": 34.78048780487805,
+ "grad_norm": 0.06433390080928802,
+ "learning_rate": 0.00013871673243765362,
+ "loss": 1.8215436935424805,
+ "step": 2504
+ },
+ {
+ "epoch": 34.79442508710802,
+ "grad_norm": 0.06179378926753998,
+ "learning_rate": 0.00013849470889540098,
+ "loss": 1.8321993350982666,
+ "step": 2505
+ },
+ {
+ "epoch": 34.80836236933798,
+ "grad_norm": 0.06337333470582962,
+ "learning_rate": 0.00013827281789208996,
+ "loss": 1.8214612007141113,
+ "step": 2506
+ },
+ {
+ "epoch": 34.822299651567945,
+ "grad_norm": 0.06581414490938187,
+ "learning_rate": 0.00013805105960649423,
+ "loss": 1.8380327224731445,
+ "step": 2507
+ },
+ {
+ "epoch": 34.836236933797906,
+ "grad_norm": 0.06505398452281952,
+ "learning_rate": 0.00013782943421728042,
+ "loss": 1.8323636054992676,
+ "step": 2508
+ },
+ {
+ "epoch": 34.850174216027874,
+ "grad_norm": 0.06261361390352249,
+ "learning_rate": 0.00013760794190300827,
+ "loss": 1.831121802330017,
+ "step": 2509
+ },
+ {
+ "epoch": 34.86411149825784,
+ "grad_norm": 0.06420202553272247,
+ "learning_rate": 0.00013738658284212973,
+ "loss": 1.8330061435699463,
+ "step": 2510
+ },
+ {
+ "epoch": 34.8780487804878,
+ "grad_norm": 0.06349224597215652,
+ "learning_rate": 0.00013716535721299016,
+ "loss": 1.814126968383789,
+ "step": 2511
+ },
+ {
+ "epoch": 34.89198606271777,
+ "grad_norm": 0.06293212622404099,
+ "learning_rate": 0.0001369442651938271,
+ "loss": 1.8446499109268188,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90592334494774,
+ "grad_norm": 0.06229215860366821,
+ "learning_rate": 0.00013672330696277014,
+ "loss": 1.8318920135498047,
+ "step": 2513
+ },
+ {
+ "epoch": 34.9198606271777,
+ "grad_norm": 0.06438733637332916,
+ "learning_rate": 0.00013650248269784143,
+ "loss": 1.8189592361450195,
+ "step": 2514
+ },
+ {
+ "epoch": 34.933797909407666,
+ "grad_norm": 0.06267774105072021,
+ "learning_rate": 0.00013628179257695508,
+ "loss": 1.820225715637207,
+ "step": 2515
+ },
+ {
+ "epoch": 34.94773519163763,
+ "grad_norm": 0.06347840279340744,
+ "learning_rate": 0.00013606123677791727,
+ "loss": 1.8195691108703613,
+ "step": 2516
+ },
+ {
+ "epoch": 34.961672473867594,
+ "grad_norm": 0.06589125096797943,
+ "learning_rate": 0.00013584081547842565,
+ "loss": 1.8382142782211304,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97560975609756,
+ "grad_norm": 0.06349477916955948,
+ "learning_rate": 0.00013562052885606957,
+ "loss": 1.8295605182647705,
+ "step": 2518
+ },
+ {
+ "epoch": 34.98954703832753,
+ "grad_norm": 0.06603765487670898,
+ "learning_rate": 0.00013540037708833043,
+ "loss": 1.8189774751663208,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.05118570849299431,
+ "learning_rate": 0.00013518036035258012,
+ "loss": 1.362122654914856,
+ "step": 2520
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 3600,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 50,
+ "save_steps": 500,
+ "stateful_callbacks": {
+ "TrainerControl": {
+ "args": {
+ "should_epoch_stop": false,
+ "should_evaluate": true,
+ "should_log": false,
+ "should_save": false,
+ "should_training_stop": false
+ },
+ "attributes": {}
+ }
+ },
+ "total_flos": 1.0771796057495962e+18,
+ "train_batch_size": 64,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/base-ssl/checkpoint-2520/training_args.bin b/runs/base-ssl/checkpoint-2520/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..cbb50e43950730a04421678098579c835c9d518d
--- /dev/null
+++ b/runs/base-ssl/checkpoint-2520/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7572b8029663dc4d810f9d514c80dc9b976de220cbe72e5abd832ec6ec2ef18b
+size 5265
diff --git a/runs/base-ssl/checkpoint-2880/chat_template.jinja b/runs/base-ssl/checkpoint-2880/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/base-ssl/checkpoint-2880/chat_template.jinja
@@ -0,0 +1,85 @@
+{%- if tools %}
+ {{- '<|im_start|>system\n' }}
+ {%- if messages[0].role == 'system' %}
+ {{- messages[0].content + '\n\n' }}
+ {%- endif %}
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }}
+ {%- for tool in tools %}
+ {{- "\n" }}
+ {{- tool | tojson }}
+ {%- endfor %}
+ {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }}
+{%- else %}
+ {%- if messages[0].role == 'system' %}
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
+ {%- endif %}
+{%- endif %}
+{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
+{%- for message in messages[::-1] %}
+ {%- set index = (messages|length - 1) - loop.index0 %}
+ {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %}
+ {%- set ns.multi_step_tool = false %}
+ {%- set ns.last_query_index = index %}
+ {%- endif %}
+{%- endfor %}
+{%- for message in messages %}
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
+ {%- elif message.role == "assistant" %}
+ {%- set content = message.content %}
+ {%- set reasoning_content = '' %}
+ {%- if message.reasoning_content is defined and message.reasoning_content is not none %}
+ {%- set reasoning_content = message.reasoning_content %}
+ {%- else %}
+ {%- if '' in message.content %}
+ {%- set content = message.content.split('')[-1].lstrip('\n') %}
+ {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %}
+ {%- endif %}
+ {%- endif %}
+ {%- if loop.index0 > ns.last_query_index %}
+ {%- if loop.last or (not loop.last and reasoning_content) %}
+ {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- if message.tool_calls %}
+ {%- for tool_call in message.tool_calls %}
+ {%- if (loop.first and content) or (not loop.first) %}
+ {{- '\n' }}
+ {%- endif %}
+ {%- if tool_call.function %}
+ {%- set tool_call = tool_call.function %}
+ {%- endif %}
+ {{- '\n{"name": "' }}
+ {{- tool_call.name }}
+ {{- '", "arguments": ' }}
+ {%- if tool_call.arguments is string %}
+ {{- tool_call.arguments }}
+ {%- else %}
+ {{- tool_call.arguments | tojson }}
+ {%- endif %}
+ {{- '}\n' }}
+ {%- endfor %}
+ {%- endif %}
+ {{- '<|im_end|>\n' }}
+ {%- elif message.role == "tool" %}
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
+ {{- '<|im_start|>user' }}
+ {%- endif %}
+ {{- '\n\n' }}
+ {{- message.content }}
+ {{- '\n' }}
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
+ {{- '<|im_end|>\n' }}
+ {%- endif %}
+ {%- endif %}
+{%- endfor %}
+{%- if add_generation_prompt %}
+ {{- '<|im_start|>assistant\n' }}
+ {%- if enable_thinking is defined and enable_thinking is false %}
+ {{- '\n\n\n\n' }}
+ {%- endif %}
+{%- endif %}
\ No newline at end of file
diff --git a/runs/base-ssl/checkpoint-2880/config.json b/runs/base-ssl/checkpoint-2880/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/base-ssl/checkpoint-2880/config.json
@@ -0,0 +1,32 @@
+{
+ "architectures": [
+ "LlamaForCausalLM"
+ ],
+ "attention_bias": false,
+ "attention_dropout": 0.0,
+ "bos_token_id": null,
+ "dtype": "float32",
+ "eos_token_id": 151645,
+ "head_dim": 128,
+ "hidden_act": "silu",
+ "hidden_size": 512,
+ "initializer_range": 0.02,
+ "intermediate_size": 1536,
+ "max_position_embeddings": 2048,
+ "mlp_bias": false,
+ "model_type": "llama",
+ "num_attention_heads": 4,
+ "num_hidden_layers": 20,
+ "num_key_value_heads": 4,
+ "pad_token_id": 151645,
+ "pretraining_tp": 1,
+ "rms_norm_eps": 1e-06,
+ "rope_parameters": {
+ "rope_theta": 10000.0,
+ "rope_type": "default"
+ },
+ "tie_word_embeddings": true,
+ "transformers_version": "5.5.0",
+ "use_cache": false,
+ "vocab_size": 151671
+}
diff --git a/runs/base-ssl/checkpoint-2880/generation_config.json b/runs/base-ssl/checkpoint-2880/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/base-ssl/checkpoint-2880/generation_config.json
@@ -0,0 +1,11 @@
+{
+ "_from_model_config": true,
+ "eos_token_id": [
+ 151645
+ ],
+ "output_attentions": false,
+ "output_hidden_states": false,
+ "pad_token_id": 151645,
+ "transformers_version": "5.5.0",
+ "use_cache": true
+}
diff --git a/runs/base-ssl/checkpoint-2880/model.safetensors b/runs/base-ssl/checkpoint-2880/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..e3169527f94b58f2931be0079a0c7aed8350ea35
--- /dev/null
+++ b/runs/base-ssl/checkpoint-2880/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ed55ecbef4b9e1625e9428383155bdaaef8860871020d044905154f6efcfb978
+size 583356232
diff --git a/runs/base-ssl/checkpoint-2880/optimizer.pt b/runs/base-ssl/checkpoint-2880/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..6d80df656be678934176b2db2a533d722dbc8166
--- /dev/null
+++ b/runs/base-ssl/checkpoint-2880/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:57e57ce8300526eec45dc264c49d845c23cd71a15344cfdce6f984ee42cb7b0a
+size 1166825803
diff --git a/runs/base-ssl/checkpoint-2880/rng_state_0.pth b/runs/base-ssl/checkpoint-2880/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..b73f9a380e4e9c61520ae0674c9453be2b007f8d
--- /dev/null
+++ b/runs/base-ssl/checkpoint-2880/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:19e0f78f2d9435829a3e127bfda2ca14f3245c5620079efefde656536bbe279e
+size 14917
diff --git a/runs/base-ssl/checkpoint-2880/rng_state_1.pth b/runs/base-ssl/checkpoint-2880/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..1c80ff79c801a37a1192dfdb25ad4404ef9b73aa
--- /dev/null
+++ b/runs/base-ssl/checkpoint-2880/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:0ff567f23d2e2493cacddea05b5da8eee7e39fe5f45b9a2a98aa6a743f71addc
+size 14917
diff --git a/runs/base-ssl/checkpoint-2880/scheduler.pt b/runs/base-ssl/checkpoint-2880/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..f1b2d6bb8ce3cef13aa84e428e5db83abeeff7b5
--- /dev/null
+++ b/runs/base-ssl/checkpoint-2880/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6c45747ad72424e6ab5eef3447cbd13933161ee71d5ad9aaac15ca345390629c
+size 1465
diff --git a/runs/base-ssl/checkpoint-2880/tokenizer.json b/runs/base-ssl/checkpoint-2880/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/base-ssl/checkpoint-2880/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:59b6776030505d5b441d0727cce137047df748ab15db6ba3a1bac93c123742fb
+size 11424079
diff --git a/runs/base-ssl/checkpoint-2880/tokenizer_config.json b/runs/base-ssl/checkpoint-2880/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/base-ssl/checkpoint-2880/tokenizer_config.json
@@ -0,0 +1,18 @@
+{
+ "add_prefix_space": false,
+ "backend": "tokenizers",
+ "bos_token": null,
+ "clean_up_tokenization_spaces": false,
+ "eos_token": "<|im_end|>",
+ "errors": "replace",
+ "extra_special_tokens": [
+ "<|l2r_pred|>",
+ "<|r2l_pred|>"
+ ],
+ "is_local": false,
+ "model_max_length": 131072,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/base-ssl/checkpoint-2880/trainer_state.json b/runs/base-ssl/checkpoint-2880/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..6b48ffaabdeeedba51848a6223e1e501d0715a36
--- /dev/null
+++ b/runs/base-ssl/checkpoint-2880/trainer_state.json
@@ -0,0 +1,20506 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 40.0,
+ "eval_steps": 500,
+ "global_step": 2880,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013937282229965157,
+ "grad_norm": 0.2712002694606781,
+ "learning_rate": 0.0,
+ "loss": 4.000947952270508,
+ "step": 1
+ },
+ {
+ "epoch": 0.027874564459930314,
+ "grad_norm": 0.2709888219833374,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 4.000800132751465,
+ "step": 2
+ },
+ {
+ "epoch": 0.041811846689895474,
+ "grad_norm": 0.2721220850944519,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 3.982931613922119,
+ "step": 3
+ },
+ {
+ "epoch": 0.05574912891986063,
+ "grad_norm": 0.24822379648685455,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 3.948713779449463,
+ "step": 4
+ },
+ {
+ "epoch": 0.06968641114982578,
+ "grad_norm": 0.2103811800479889,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 3.908690929412842,
+ "step": 5
+ },
+ {
+ "epoch": 0.08362369337979095,
+ "grad_norm": 0.18375654518604279,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 3.8660929203033447,
+ "step": 6
+ },
+ {
+ "epoch": 0.0975609756097561,
+ "grad_norm": 0.1471690535545349,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 3.82308030128479,
+ "step": 7
+ },
+ {
+ "epoch": 0.11149825783972125,
+ "grad_norm": 0.11132320016622543,
+ "learning_rate": 4.2e-05,
+ "loss": 3.790834426879883,
+ "step": 8
+ },
+ {
+ "epoch": 0.1254355400696864,
+ "grad_norm": 0.08796700090169907,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 3.7589545249938965,
+ "step": 9
+ },
+ {
+ "epoch": 0.13937282229965156,
+ "grad_norm": 0.07089080661535263,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 3.7346723079681396,
+ "step": 10
+ },
+ {
+ "epoch": 0.15331010452961671,
+ "grad_norm": 0.056723613291978836,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 3.7159838676452637,
+ "step": 11
+ },
+ {
+ "epoch": 0.1672473867595819,
+ "grad_norm": 0.04544799029827118,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 3.701421022415161,
+ "step": 12
+ },
+ {
+ "epoch": 0.18118466898954705,
+ "grad_norm": 0.03551485016942024,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 3.691774845123291,
+ "step": 13
+ },
+ {
+ "epoch": 0.1951219512195122,
+ "grad_norm": 0.028209710493683815,
+ "learning_rate": 7.8e-05,
+ "loss": 3.6860086917877197,
+ "step": 14
+ },
+ {
+ "epoch": 0.20905923344947736,
+ "grad_norm": 0.024290181696414948,
+ "learning_rate": 8.4e-05,
+ "loss": 3.6806883811950684,
+ "step": 15
+ },
+ {
+ "epoch": 0.2229965156794425,
+ "grad_norm": 0.022015230730175972,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 3.677751064300537,
+ "step": 16
+ },
+ {
+ "epoch": 0.23693379790940766,
+ "grad_norm": 0.01960836350917816,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 3.6738266944885254,
+ "step": 17
+ },
+ {
+ "epoch": 0.2508710801393728,
+ "grad_norm": 0.017675744369626045,
+ "learning_rate": 0.000102,
+ "loss": 3.6739063262939453,
+ "step": 18
+ },
+ {
+ "epoch": 0.26480836236933797,
+ "grad_norm": 0.01539881993085146,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 3.671247720718384,
+ "step": 19
+ },
+ {
+ "epoch": 0.2787456445993031,
+ "grad_norm": 0.013906505890190601,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 3.66833233833313,
+ "step": 20
+ },
+ {
+ "epoch": 0.2926829268292683,
+ "grad_norm": 0.01149708591401577,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 3.6706337928771973,
+ "step": 21
+ },
+ {
+ "epoch": 0.30662020905923343,
+ "grad_norm": 0.010512279346585274,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 3.667168140411377,
+ "step": 22
+ },
+ {
+ "epoch": 0.3205574912891986,
+ "grad_norm": 0.00897525716573,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 3.6630516052246094,
+ "step": 23
+ },
+ {
+ "epoch": 0.3344947735191638,
+ "grad_norm": 0.008081364445388317,
+ "learning_rate": 0.000138,
+ "loss": 3.6629021167755127,
+ "step": 24
+ },
+ {
+ "epoch": 0.34843205574912894,
+ "grad_norm": 0.0076500303111970425,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 3.66168212890625,
+ "step": 25
+ },
+ {
+ "epoch": 0.3623693379790941,
+ "grad_norm": 0.007083008531481028,
+ "learning_rate": 0.00015,
+ "loss": 3.6564559936523438,
+ "step": 26
+ },
+ {
+ "epoch": 0.37630662020905925,
+ "grad_norm": 0.006654089782387018,
+ "learning_rate": 0.000156,
+ "loss": 3.6590094566345215,
+ "step": 27
+ },
+ {
+ "epoch": 0.3902439024390244,
+ "grad_norm": 0.0073669785633683205,
+ "learning_rate": 0.000162,
+ "loss": 3.651914119720459,
+ "step": 28
+ },
+ {
+ "epoch": 0.40418118466898956,
+ "grad_norm": 0.007247959729284048,
+ "learning_rate": 0.000168,
+ "loss": 3.6557557582855225,
+ "step": 29
+ },
+ {
+ "epoch": 0.4181184668989547,
+ "grad_norm": 0.007229349110275507,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 3.651794910430908,
+ "step": 30
+ },
+ {
+ "epoch": 0.43205574912891986,
+ "grad_norm": 0.008839861489832401,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 3.653074264526367,
+ "step": 31
+ },
+ {
+ "epoch": 0.445993031358885,
+ "grad_norm": 0.009280834347009659,
+ "learning_rate": 0.000186,
+ "loss": 3.6503708362579346,
+ "step": 32
+ },
+ {
+ "epoch": 0.45993031358885017,
+ "grad_norm": 0.008585072122514248,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 3.650331497192383,
+ "step": 33
+ },
+ {
+ "epoch": 0.4738675958188153,
+ "grad_norm": 0.01164434663951397,
+ "learning_rate": 0.000198,
+ "loss": 3.6462929248809814,
+ "step": 34
+ },
+ {
+ "epoch": 0.4878048780487805,
+ "grad_norm": 0.012668018229305744,
+ "learning_rate": 0.000204,
+ "loss": 3.6516757011413574,
+ "step": 35
+ },
+ {
+ "epoch": 0.5017421602787456,
+ "grad_norm": 0.01610603742301464,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 3.647498607635498,
+ "step": 36
+ },
+ {
+ "epoch": 0.5156794425087108,
+ "grad_norm": 0.018993742763996124,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 3.642869472503662,
+ "step": 37
+ },
+ {
+ "epoch": 0.5296167247386759,
+ "grad_norm": 0.020697375759482384,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 3.639193058013916,
+ "step": 38
+ },
+ {
+ "epoch": 0.5435540069686411,
+ "grad_norm": 0.021636122837662697,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 3.630560874938965,
+ "step": 39
+ },
+ {
+ "epoch": 0.5574912891986062,
+ "grad_norm": 0.01893668621778488,
+ "learning_rate": 0.000234,
+ "loss": 3.6265769004821777,
+ "step": 40
+ },
+ {
+ "epoch": 0.5714285714285714,
+ "grad_norm": 0.025133362039923668,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 3.6185407638549805,
+ "step": 41
+ },
+ {
+ "epoch": 0.5853658536585366,
+ "grad_norm": 0.016397792845964432,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 3.609161853790283,
+ "step": 42
+ },
+ {
+ "epoch": 0.5993031358885017,
+ "grad_norm": 0.02059962786734104,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 3.5987398624420166,
+ "step": 43
+ },
+ {
+ "epoch": 0.6132404181184669,
+ "grad_norm": 0.026733839884400368,
+ "learning_rate": 0.000258,
+ "loss": 3.601898193359375,
+ "step": 44
+ },
+ {
+ "epoch": 0.627177700348432,
+ "grad_norm": 0.04592137038707733,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 3.597785472869873,
+ "step": 45
+ },
+ {
+ "epoch": 0.6411149825783972,
+ "grad_norm": 0.14618715643882751,
+ "learning_rate": 0.00027,
+ "loss": 3.597787857055664,
+ "step": 46
+ },
+ {
+ "epoch": 0.6550522648083623,
+ "grad_norm": 0.1228327602148056,
+ "learning_rate": 0.000276,
+ "loss": 3.598362922668457,
+ "step": 47
+ },
+ {
+ "epoch": 0.6689895470383276,
+ "grad_norm": 0.0651344507932663,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 3.5868940353393555,
+ "step": 48
+ },
+ {
+ "epoch": 0.6829268292682927,
+ "grad_norm": 0.030712513253092766,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 3.5800981521606445,
+ "step": 49
+ },
+ {
+ "epoch": 0.6968641114982579,
+ "grad_norm": 0.07069414854049683,
+ "learning_rate": 0.000294,
+ "loss": 3.590576171875,
+ "step": 50
+ },
+ {
+ "epoch": 0.710801393728223,
+ "grad_norm": 0.026333393529057503,
+ "learning_rate": 0.0003,
+ "loss": 3.5740621089935303,
+ "step": 51
+ },
+ {
+ "epoch": 0.7247386759581882,
+ "grad_norm": 0.050806671380996704,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 3.577582836151123,
+ "step": 52
+ },
+ {
+ "epoch": 0.7386759581881533,
+ "grad_norm": 0.04820532724261284,
+ "learning_rate": 0.000312,
+ "loss": 3.5686888694763184,
+ "step": 53
+ },
+ {
+ "epoch": 0.7526132404181185,
+ "grad_norm": 0.03834737837314606,
+ "learning_rate": 0.000318,
+ "loss": 3.571916341781616,
+ "step": 54
+ },
+ {
+ "epoch": 0.7665505226480837,
+ "grad_norm": 0.0663016214966774,
+ "learning_rate": 0.000324,
+ "loss": 3.563366413116455,
+ "step": 55
+ },
+ {
+ "epoch": 0.7804878048780488,
+ "grad_norm": 0.03111632913351059,
+ "learning_rate": 0.00033,
+ "loss": 3.555037021636963,
+ "step": 56
+ },
+ {
+ "epoch": 0.794425087108014,
+ "grad_norm": 0.06139425188302994,
+ "learning_rate": 0.000336,
+ "loss": 3.555377244949341,
+ "step": 57
+ },
+ {
+ "epoch": 0.8083623693379791,
+ "grad_norm": 0.02561746910214424,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 3.5368266105651855,
+ "step": 58
+ },
+ {
+ "epoch": 0.8222996515679443,
+ "grad_norm": 0.06502962112426758,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 3.5318264961242676,
+ "step": 59
+ },
+ {
+ "epoch": 0.8362369337979094,
+ "grad_norm": 0.06968390196561813,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 3.5210607051849365,
+ "step": 60
+ },
+ {
+ "epoch": 0.8501742160278746,
+ "grad_norm": 0.02670745924115181,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 3.5037078857421875,
+ "step": 61
+ },
+ {
+ "epoch": 0.8641114982578397,
+ "grad_norm": 0.07075569778680801,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 3.506938934326172,
+ "step": 62
+ },
+ {
+ "epoch": 0.8780487804878049,
+ "grad_norm": 0.061632659286260605,
+ "learning_rate": 0.000372,
+ "loss": 3.4960665702819824,
+ "step": 63
+ },
+ {
+ "epoch": 0.89198606271777,
+ "grad_norm": 0.10994791984558105,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 3.4926395416259766,
+ "step": 64
+ },
+ {
+ "epoch": 0.9059233449477352,
+ "grad_norm": 0.21027322113513947,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 3.502258777618408,
+ "step": 65
+ },
+ {
+ "epoch": 0.9198606271777003,
+ "grad_norm": 0.1937343329191208,
+ "learning_rate": 0.00039,
+ "loss": 3.5118448734283447,
+ "step": 66
+ },
+ {
+ "epoch": 0.9337979094076655,
+ "grad_norm": 0.07891395688056946,
+ "learning_rate": 0.000396,
+ "loss": 3.487575054168701,
+ "step": 67
+ },
+ {
+ "epoch": 0.9477351916376306,
+ "grad_norm": 0.12915678322315216,
+ "learning_rate": 0.000402,
+ "loss": 3.4890120029449463,
+ "step": 68
+ },
+ {
+ "epoch": 0.9616724738675958,
+ "grad_norm": 0.08530207723379135,
+ "learning_rate": 0.000408,
+ "loss": 3.4755735397338867,
+ "step": 69
+ },
+ {
+ "epoch": 0.975609756097561,
+ "grad_norm": 0.09704860299825668,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 3.4669318199157715,
+ "step": 70
+ },
+ {
+ "epoch": 0.9895470383275261,
+ "grad_norm": 0.07270640879869461,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 3.460634469985962,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.03984597697854042,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 2.590245485305786,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 0.8616236448287964,
+ "eval_runtime": 36.0347,
+ "eval_samples_per_second": 67.768,
+ "eval_steps_per_second": 0.555,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139372822299653,
+ "grad_norm": 0.058285508304834366,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 3.441636562347412,
+ "step": 73
+ },
+ {
+ "epoch": 1.0278745644599303,
+ "grad_norm": 0.07173695415258408,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 3.4476027488708496,
+ "step": 74
+ },
+ {
+ "epoch": 1.0418118466898956,
+ "grad_norm": 0.0367155559360981,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 3.4290428161621094,
+ "step": 75
+ },
+ {
+ "epoch": 1.0557491289198606,
+ "grad_norm": 0.05761358141899109,
+ "learning_rate": 0.00045,
+ "loss": 3.430612564086914,
+ "step": 76
+ },
+ {
+ "epoch": 1.0696864111498259,
+ "grad_norm": 0.06290662288665771,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 3.4222841262817383,
+ "step": 77
+ },
+ {
+ "epoch": 1.083623693379791,
+ "grad_norm": 0.09705018997192383,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 3.4233384132385254,
+ "step": 78
+ },
+ {
+ "epoch": 1.0975609756097562,
+ "grad_norm": 0.09656445682048798,
+ "learning_rate": 0.000468,
+ "loss": 3.422335624694824,
+ "step": 79
+ },
+ {
+ "epoch": 1.1114982578397212,
+ "grad_norm": 0.07884909957647324,
+ "learning_rate": 0.000474,
+ "loss": 3.4133338928222656,
+ "step": 80
+ },
+ {
+ "epoch": 1.1254355400696865,
+ "grad_norm": 0.06679042428731918,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 3.4053287506103516,
+ "step": 81
+ },
+ {
+ "epoch": 1.1393728222996515,
+ "grad_norm": 0.02522652968764305,
+ "learning_rate": 0.000486,
+ "loss": 3.392838478088379,
+ "step": 82
+ },
+ {
+ "epoch": 1.1533101045296168,
+ "grad_norm": 0.09408055245876312,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 3.3952789306640625,
+ "step": 83
+ },
+ {
+ "epoch": 1.1672473867595818,
+ "grad_norm": 0.08980021625757217,
+ "learning_rate": 0.000498,
+ "loss": 3.385244846343994,
+ "step": 84
+ },
+ {
+ "epoch": 1.181184668989547,
+ "grad_norm": 0.08343124389648438,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 3.382103443145752,
+ "step": 85
+ },
+ {
+ "epoch": 1.1951219512195121,
+ "grad_norm": 0.03343554213643074,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 3.374354362487793,
+ "step": 86
+ },
+ {
+ "epoch": 1.2090592334494774,
+ "grad_norm": 0.0852339118719101,
+ "learning_rate": 0.000516,
+ "loss": 3.3802456855773926,
+ "step": 87
+ },
+ {
+ "epoch": 1.2229965156794425,
+ "grad_norm": 0.09159538149833679,
+ "learning_rate": 0.000522,
+ "loss": 3.37576961517334,
+ "step": 88
+ },
+ {
+ "epoch": 1.2369337979094077,
+ "grad_norm": 0.04313444346189499,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 3.360690116882324,
+ "step": 89
+ },
+ {
+ "epoch": 1.2508710801393728,
+ "grad_norm": 0.075523741543293,
+ "learning_rate": 0.000534,
+ "loss": 3.3599460124969482,
+ "step": 90
+ },
+ {
+ "epoch": 1.264808362369338,
+ "grad_norm": 0.08516373485326767,
+ "learning_rate": 0.00054,
+ "loss": 3.3572096824645996,
+ "step": 91
+ },
+ {
+ "epoch": 1.278745644599303,
+ "grad_norm": 0.09553111344575882,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 3.3542261123657227,
+ "step": 92
+ },
+ {
+ "epoch": 1.2926829268292683,
+ "grad_norm": 0.05978025496006012,
+ "learning_rate": 0.000552,
+ "loss": 3.3440048694610596,
+ "step": 93
+ },
+ {
+ "epoch": 1.3066202090592334,
+ "grad_norm": 0.10827190428972244,
+ "learning_rate": 0.000558,
+ "loss": 3.3391332626342773,
+ "step": 94
+ },
+ {
+ "epoch": 1.3205574912891986,
+ "grad_norm": 0.1181376576423645,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 3.3493118286132812,
+ "step": 95
+ },
+ {
+ "epoch": 1.3344947735191637,
+ "grad_norm": 0.08178193867206573,
+ "learning_rate": 0.00057,
+ "loss": 3.3445382118225098,
+ "step": 96
+ },
+ {
+ "epoch": 1.348432055749129,
+ "grad_norm": 0.08283700793981552,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 3.3343238830566406,
+ "step": 97
+ },
+ {
+ "epoch": 1.3623693379790942,
+ "grad_norm": 0.11837095767259598,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 3.3336968421936035,
+ "step": 98
+ },
+ {
+ "epoch": 1.3763066202090593,
+ "grad_norm": 0.08230706304311752,
+ "learning_rate": 0.000588,
+ "loss": 3.3294646739959717,
+ "step": 99
+ },
+ {
+ "epoch": 1.3902439024390243,
+ "grad_norm": 0.09961626678705215,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 3.3242952823638916,
+ "step": 100
+ },
+ {
+ "epoch": 1.4041811846689896,
+ "grad_norm": 0.11294732987880707,
+ "learning_rate": 0.0006,
+ "loss": 3.330348491668701,
+ "step": 101
+ },
+ {
+ "epoch": 1.4181184668989548,
+ "grad_norm": 0.11236022412776947,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 3.322606086730957,
+ "step": 102
+ },
+ {
+ "epoch": 1.4320557491289199,
+ "grad_norm": 0.13230572640895844,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 3.3202784061431885,
+ "step": 103
+ },
+ {
+ "epoch": 1.445993031358885,
+ "grad_norm": 0.0783172994852066,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 3.3082056045532227,
+ "step": 104
+ },
+ {
+ "epoch": 1.4599303135888502,
+ "grad_norm": 0.07376513630151749,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 3.3011245727539062,
+ "step": 105
+ },
+ {
+ "epoch": 1.4738675958188154,
+ "grad_norm": 0.11039287596940994,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 3.2987873554229736,
+ "step": 106
+ },
+ {
+ "epoch": 1.4878048780487805,
+ "grad_norm": 0.0667329952120781,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 3.293043851852417,
+ "step": 107
+ },
+ {
+ "epoch": 1.5017421602787455,
+ "grad_norm": 0.0750635489821434,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 3.2865707874298096,
+ "step": 108
+ },
+ {
+ "epoch": 1.5156794425087108,
+ "grad_norm": 0.055155977606773376,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 3.278069496154785,
+ "step": 109
+ },
+ {
+ "epoch": 1.529616724738676,
+ "grad_norm": 0.07016722112894058,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 3.2837281227111816,
+ "step": 110
+ },
+ {
+ "epoch": 1.543554006968641,
+ "grad_norm": 0.09884901344776154,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 3.2782273292541504,
+ "step": 111
+ },
+ {
+ "epoch": 1.5574912891986061,
+ "grad_norm": 0.09402419626712799,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 3.2757701873779297,
+ "step": 112
+ },
+ {
+ "epoch": 1.5714285714285714,
+ "grad_norm": 0.06898307800292969,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 3.2636804580688477,
+ "step": 113
+ },
+ {
+ "epoch": 1.5853658536585367,
+ "grad_norm": 0.08733519911766052,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 3.2676005363464355,
+ "step": 114
+ },
+ {
+ "epoch": 1.5993031358885017,
+ "grad_norm": 0.05769918113946915,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 3.2505807876586914,
+ "step": 115
+ },
+ {
+ "epoch": 1.6132404181184667,
+ "grad_norm": 0.054460495710372925,
+ "learning_rate": 0.000599973080557108,
+ "loss": 3.259110689163208,
+ "step": 116
+ },
+ {
+ "epoch": 1.627177700348432,
+ "grad_norm": 0.055243365466594696,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 3.2438201904296875,
+ "step": 117
+ },
+ {
+ "epoch": 1.6411149825783973,
+ "grad_norm": 0.06122216582298279,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 3.2397255897521973,
+ "step": 118
+ },
+ {
+ "epoch": 1.6550522648083623,
+ "grad_norm": 0.05418086051940918,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 3.236057758331299,
+ "step": 119
+ },
+ {
+ "epoch": 1.6689895470383276,
+ "grad_norm": 0.04995540529489517,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 3.224294662475586,
+ "step": 120
+ },
+ {
+ "epoch": 1.6829268292682928,
+ "grad_norm": 0.057540878653526306,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 3.2251172065734863,
+ "step": 121
+ },
+ {
+ "epoch": 1.6968641114982579,
+ "grad_norm": 0.05698078125715256,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 3.228363513946533,
+ "step": 122
+ },
+ {
+ "epoch": 1.710801393728223,
+ "grad_norm": 0.07352662831544876,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 3.2196407318115234,
+ "step": 123
+ },
+ {
+ "epoch": 1.7247386759581882,
+ "grad_norm": 0.08591686934232712,
+ "learning_rate": 0.000599936710690505,
+ "loss": 3.2231035232543945,
+ "step": 124
+ },
+ {
+ "epoch": 1.7386759581881535,
+ "grad_norm": 0.06970733404159546,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 3.2126383781433105,
+ "step": 125
+ },
+ {
+ "epoch": 1.7526132404181185,
+ "grad_norm": 0.04472116380929947,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 3.216801881790161,
+ "step": 126
+ },
+ {
+ "epoch": 1.7665505226480835,
+ "grad_norm": 0.059133559465408325,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 3.2136807441711426,
+ "step": 127
+ },
+ {
+ "epoch": 1.7804878048780488,
+ "grad_norm": 0.08288449794054031,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 3.210519552230835,
+ "step": 128
+ },
+ {
+ "epoch": 1.794425087108014,
+ "grad_norm": 0.09659463912248611,
+ "learning_rate": 0.00059990620421714,
+ "loss": 3.205916404724121,
+ "step": 129
+ },
+ {
+ "epoch": 1.8083623693379791,
+ "grad_norm": 0.08611937612295151,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 3.206793785095215,
+ "step": 130
+ },
+ {
+ "epoch": 1.8222996515679442,
+ "grad_norm": 0.06448066979646683,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 3.2026424407958984,
+ "step": 131
+ },
+ {
+ "epoch": 1.8362369337979094,
+ "grad_norm": 0.07323113083839417,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 3.1864631175994873,
+ "step": 132
+ },
+ {
+ "epoch": 1.8501742160278747,
+ "grad_norm": 0.0739368200302124,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 3.1875557899475098,
+ "step": 133
+ },
+ {
+ "epoch": 1.8641114982578397,
+ "grad_norm": 0.08289099484682083,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 3.1901979446411133,
+ "step": 134
+ },
+ {
+ "epoch": 1.8780487804878048,
+ "grad_norm": 0.06641175597906113,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 3.1776785850524902,
+ "step": 135
+ },
+ {
+ "epoch": 1.89198606271777,
+ "grad_norm": 0.04873652383685112,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 3.1743667125701904,
+ "step": 136
+ },
+ {
+ "epoch": 1.9059233449477353,
+ "grad_norm": 0.04623038321733475,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 3.1759986877441406,
+ "step": 137
+ },
+ {
+ "epoch": 1.9198606271777003,
+ "grad_norm": 0.059709370136260986,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 3.1702799797058105,
+ "step": 138
+ },
+ {
+ "epoch": 1.9337979094076654,
+ "grad_norm": 0.040581051260232925,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 3.1607465744018555,
+ "step": 139
+ },
+ {
+ "epoch": 1.9477351916376306,
+ "grad_norm": 0.04940655827522278,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 3.1620500087738037,
+ "step": 140
+ },
+ {
+ "epoch": 1.961672473867596,
+ "grad_norm": 0.055740341544151306,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 3.1535825729370117,
+ "step": 141
+ },
+ {
+ "epoch": 1.975609756097561,
+ "grad_norm": 0.06836569309234619,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 3.1512832641601562,
+ "step": 142
+ },
+ {
+ "epoch": 1.989547038327526,
+ "grad_norm": 0.08451569080352783,
+ "learning_rate": 0.000599788973374255,
+ "loss": 3.147432804107666,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.06781627237796783,
+ "learning_rate": 0.000599778806120077,
+ "loss": 2.3624467849731445,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 0.7888243794441223,
+ "eval_runtime": 37.0572,
+ "eval_samples_per_second": 65.898,
+ "eval_steps_per_second": 0.54,
+ "step": 144
+ },
+ {
+ "epoch": 2.013937282229965,
+ "grad_norm": 0.045119598507881165,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 3.139284610748291,
+ "step": 145
+ },
+ {
+ "epoch": 2.0278745644599305,
+ "grad_norm": 0.09132017195224762,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 3.140348434448242,
+ "step": 146
+ },
+ {
+ "epoch": 2.0418118466898956,
+ "grad_norm": 0.07457596063613892,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 3.140091896057129,
+ "step": 147
+ },
+ {
+ "epoch": 2.0557491289198606,
+ "grad_norm": 0.07544369250535965,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 3.1411213874816895,
+ "step": 148
+ },
+ {
+ "epoch": 2.0696864111498257,
+ "grad_norm": 0.046033963561058044,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 3.1405649185180664,
+ "step": 149
+ },
+ {
+ "epoch": 2.083623693379791,
+ "grad_norm": 0.06651527434587479,
+ "learning_rate": 0.000599712781599403,
+ "loss": 3.135124683380127,
+ "step": 150
+ },
+ {
+ "epoch": 2.097560975609756,
+ "grad_norm": 0.07238955795764923,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 3.1302051544189453,
+ "step": 151
+ },
+ {
+ "epoch": 2.1114982578397212,
+ "grad_norm": 0.06696683913469315,
+ "learning_rate": 0.000599688860879549,
+ "loss": 3.128504991531372,
+ "step": 152
+ },
+ {
+ "epoch": 2.1254355400696863,
+ "grad_norm": 0.042010076344013214,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 3.119443893432617,
+ "step": 153
+ },
+ {
+ "epoch": 2.1393728222996518,
+ "grad_norm": 0.053164687007665634,
+ "learning_rate": 0.000599663984012462,
+ "loss": 3.1174211502075195,
+ "step": 154
+ },
+ {
+ "epoch": 2.153310104529617,
+ "grad_norm": 0.047281116247177124,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 3.1211044788360596,
+ "step": 155
+ },
+ {
+ "epoch": 2.167247386759582,
+ "grad_norm": 0.0531938374042511,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 3.1136691570281982,
+ "step": 156
+ },
+ {
+ "epoch": 2.181184668989547,
+ "grad_norm": 0.0702054500579834,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 3.112502336502075,
+ "step": 157
+ },
+ {
+ "epoch": 2.1951219512195124,
+ "grad_norm": 0.07261929661035538,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 3.1049346923828125,
+ "step": 158
+ },
+ {
+ "epoch": 2.2090592334494774,
+ "grad_norm": 0.06666582822799683,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 3.1094369888305664,
+ "step": 159
+ },
+ {
+ "epoch": 2.2229965156794425,
+ "grad_norm": 0.047446250915527344,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 3.105876922607422,
+ "step": 160
+ },
+ {
+ "epoch": 2.2369337979094075,
+ "grad_norm": 0.03833230584859848,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 3.104224681854248,
+ "step": 161
+ },
+ {
+ "epoch": 2.250871080139373,
+ "grad_norm": 0.04562874883413315,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 3.105830192565918,
+ "step": 162
+ },
+ {
+ "epoch": 2.264808362369338,
+ "grad_norm": 0.0635828971862793,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 3.1061713695526123,
+ "step": 163
+ },
+ {
+ "epoch": 2.278745644599303,
+ "grad_norm": 0.09712212532758713,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 3.108053207397461,
+ "step": 164
+ },
+ {
+ "epoch": 2.292682926829268,
+ "grad_norm": 0.15060372650623322,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 3.126777172088623,
+ "step": 165
+ },
+ {
+ "epoch": 2.3066202090592336,
+ "grad_norm": 0.12047530710697174,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 3.116323471069336,
+ "step": 166
+ },
+ {
+ "epoch": 2.3205574912891986,
+ "grad_norm": 0.07486861199140549,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 3.1138410568237305,
+ "step": 167
+ },
+ {
+ "epoch": 2.3344947735191637,
+ "grad_norm": 0.07746157795190811,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 3.1107101440429688,
+ "step": 168
+ },
+ {
+ "epoch": 2.3484320557491287,
+ "grad_norm": 0.0804097130894661,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 3.1073827743530273,
+ "step": 169
+ },
+ {
+ "epoch": 2.362369337979094,
+ "grad_norm": 0.0559227392077446,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 3.102102041244507,
+ "step": 170
+ },
+ {
+ "epoch": 2.3763066202090593,
+ "grad_norm": 0.05415646359324455,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 3.096550464630127,
+ "step": 171
+ },
+ {
+ "epoch": 2.3902439024390243,
+ "grad_norm": 0.0463285967707634,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 3.0833563804626465,
+ "step": 172
+ },
+ {
+ "epoch": 2.40418118466899,
+ "grad_norm": 0.04705670103430748,
+ "learning_rate": 0.000599379982511273,
+ "loss": 3.0935018062591553,
+ "step": 173
+ },
+ {
+ "epoch": 2.418118466898955,
+ "grad_norm": 0.03608846664428711,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 3.085629463195801,
+ "step": 174
+ },
+ {
+ "epoch": 2.43205574912892,
+ "grad_norm": 0.03648562356829643,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 3.086639165878296,
+ "step": 175
+ },
+ {
+ "epoch": 2.445993031358885,
+ "grad_norm": 0.03640111908316612,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 3.088339328765869,
+ "step": 176
+ },
+ {
+ "epoch": 2.45993031358885,
+ "grad_norm": 0.029915692284703255,
+ "learning_rate": 0.000599309205504528,
+ "loss": 3.0802769660949707,
+ "step": 177
+ },
+ {
+ "epoch": 2.4738675958188154,
+ "grad_norm": 0.031756628304719925,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 3.0739364624023438,
+ "step": 178
+ },
+ {
+ "epoch": 2.4878048780487805,
+ "grad_norm": 0.03106086328625679,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 3.07144832611084,
+ "step": 179
+ },
+ {
+ "epoch": 2.5017421602787455,
+ "grad_norm": 0.03892781585454941,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 3.074242353439331,
+ "step": 180
+ },
+ {
+ "epoch": 2.515679442508711,
+ "grad_norm": 0.05611228197813034,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 3.0675928592681885,
+ "step": 181
+ },
+ {
+ "epoch": 2.529616724738676,
+ "grad_norm": 0.03397630900144577,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 3.073423147201538,
+ "step": 182
+ },
+ {
+ "epoch": 2.543554006968641,
+ "grad_norm": 0.04135085269808769,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 3.0808069705963135,
+ "step": 183
+ },
+ {
+ "epoch": 2.557491289198606,
+ "grad_norm": 0.03421049192547798,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 3.0616936683654785,
+ "step": 184
+ },
+ {
+ "epoch": 2.571428571428571,
+ "grad_norm": 0.030827628448605537,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 3.0656299591064453,
+ "step": 185
+ },
+ {
+ "epoch": 2.5853658536585367,
+ "grad_norm": 0.033190369606018066,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 3.0479578971862793,
+ "step": 186
+ },
+ {
+ "epoch": 2.5993031358885017,
+ "grad_norm": 0.026774903759360313,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 3.054133653640747,
+ "step": 187
+ },
+ {
+ "epoch": 2.6132404181184667,
+ "grad_norm": 0.03240266814827919,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 3.0536394119262695,
+ "step": 188
+ },
+ {
+ "epoch": 2.6271777003484322,
+ "grad_norm": 0.04305516183376312,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 3.048996925354004,
+ "step": 189
+ },
+ {
+ "epoch": 2.6411149825783973,
+ "grad_norm": 0.07109381258487701,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 3.0558314323425293,
+ "step": 190
+ },
+ {
+ "epoch": 2.6550522648083623,
+ "grad_norm": 0.11467248201370239,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 3.0587801933288574,
+ "step": 191
+ },
+ {
+ "epoch": 2.6689895470383274,
+ "grad_norm": 0.13839758932590485,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 3.0634102821350098,
+ "step": 192
+ },
+ {
+ "epoch": 2.682926829268293,
+ "grad_norm": 0.09269433468580246,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 3.0586462020874023,
+ "step": 193
+ },
+ {
+ "epoch": 2.696864111498258,
+ "grad_norm": 0.0611812099814415,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 3.054201602935791,
+ "step": 194
+ },
+ {
+ "epoch": 2.710801393728223,
+ "grad_norm": 0.05347125604748726,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 3.054572105407715,
+ "step": 195
+ },
+ {
+ "epoch": 2.7247386759581884,
+ "grad_norm": 0.05996708199381828,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 3.0486035346984863,
+ "step": 196
+ },
+ {
+ "epoch": 2.7386759581881535,
+ "grad_norm": 0.06146618723869324,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 3.0344629287719727,
+ "step": 197
+ },
+ {
+ "epoch": 2.7526132404181185,
+ "grad_norm": 0.04754327982664108,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 3.0211029052734375,
+ "step": 198
+ },
+ {
+ "epoch": 2.7665505226480835,
+ "grad_norm": 0.044388528913259506,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 3.034595012664795,
+ "step": 199
+ },
+ {
+ "epoch": 2.7804878048780486,
+ "grad_norm": 0.04255649819970131,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 3.037287950515747,
+ "step": 200
+ },
+ {
+ "epoch": 2.794425087108014,
+ "grad_norm": 0.043139949440956116,
+ "learning_rate": 0.000598804365316586,
+ "loss": 3.0366177558898926,
+ "step": 201
+ },
+ {
+ "epoch": 2.808362369337979,
+ "grad_norm": 0.03383412957191467,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 3.033888101577759,
+ "step": 202
+ },
+ {
+ "epoch": 2.822299651567944,
+ "grad_norm": 0.03446805849671364,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 3.022144079208374,
+ "step": 203
+ },
+ {
+ "epoch": 2.8362369337979096,
+ "grad_norm": 0.029725519940257072,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 3.0208263397216797,
+ "step": 204
+ },
+ {
+ "epoch": 2.8501742160278747,
+ "grad_norm": 0.030237704515457153,
+ "learning_rate": 0.000598706872384039,
+ "loss": 3.0251193046569824,
+ "step": 205
+ },
+ {
+ "epoch": 2.8641114982578397,
+ "grad_norm": 0.03186488524079323,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 3.0246212482452393,
+ "step": 206
+ },
+ {
+ "epoch": 2.8780487804878048,
+ "grad_norm": 0.02844928577542305,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 3.0075716972351074,
+ "step": 207
+ },
+ {
+ "epoch": 2.89198606271777,
+ "grad_norm": 0.0350780263543129,
+ "learning_rate": 0.000598631251036868,
+ "loss": 3.0121424198150635,
+ "step": 208
+ },
+ {
+ "epoch": 2.9059233449477353,
+ "grad_norm": 0.04267824813723564,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 3.0099010467529297,
+ "step": 209
+ },
+ {
+ "epoch": 2.9198606271777003,
+ "grad_norm": 0.042932625859975815,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 3.0122969150543213,
+ "step": 210
+ },
+ {
+ "epoch": 2.9337979094076654,
+ "grad_norm": 0.04570756480097771,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 3.0111446380615234,
+ "step": 211
+ },
+ {
+ "epoch": 2.947735191637631,
+ "grad_norm": 0.04473821446299553,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 2.9976413249969482,
+ "step": 212
+ },
+ {
+ "epoch": 2.961672473867596,
+ "grad_norm": 0.040896713733673096,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 2.9942758083343506,
+ "step": 213
+ },
+ {
+ "epoch": 2.975609756097561,
+ "grad_norm": 0.04459039121866226,
+ "learning_rate": 0.000598473577921366,
+ "loss": 2.998690128326416,
+ "step": 214
+ },
+ {
+ "epoch": 2.989547038327526,
+ "grad_norm": 0.039927951991558075,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 2.988520383834839,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.030261589214205742,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 2.2433667182922363,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 0.7514154314994812,
+ "eval_runtime": 37.2184,
+ "eval_samples_per_second": 65.613,
+ "eval_steps_per_second": 0.537,
+ "step": 216
+ },
+ {
+ "epoch": 3.013937282229965,
+ "grad_norm": 0.03271438181400299,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 2.983100652694702,
+ "step": 217
+ },
+ {
+ "epoch": 3.0278745644599305,
+ "grad_norm": 0.045161835849285126,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 2.9824085235595703,
+ "step": 218
+ },
+ {
+ "epoch": 3.0418118466898956,
+ "grad_norm": 0.041259463876485825,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 2.980112075805664,
+ "step": 219
+ },
+ {
+ "epoch": 3.0557491289198606,
+ "grad_norm": 0.04854132980108261,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 2.9802699089050293,
+ "step": 220
+ },
+ {
+ "epoch": 3.0696864111498257,
+ "grad_norm": 0.06712493300437927,
+ "learning_rate": 0.000598278794687186,
+ "loss": 2.963736057281494,
+ "step": 221
+ },
+ {
+ "epoch": 3.083623693379791,
+ "grad_norm": 0.07551158964633942,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 2.9780850410461426,
+ "step": 222
+ },
+ {
+ "epoch": 3.097560975609756,
+ "grad_norm": 0.1004587933421135,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 2.982564926147461,
+ "step": 223
+ },
+ {
+ "epoch": 3.1114982578397212,
+ "grad_norm": 0.12604698538780212,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 2.994123697280884,
+ "step": 224
+ },
+ {
+ "epoch": 3.1254355400696863,
+ "grad_norm": 0.13300281763076782,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 3.0030934810638428,
+ "step": 225
+ },
+ {
+ "epoch": 3.1393728222996518,
+ "grad_norm": 0.09192433208227158,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 2.99415922164917,
+ "step": 226
+ },
+ {
+ "epoch": 3.153310104529617,
+ "grad_norm": 0.07332997024059296,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 2.9832448959350586,
+ "step": 227
+ },
+ {
+ "epoch": 3.167247386759582,
+ "grad_norm": 0.05673393979668617,
+ "learning_rate": 0.00059807235435179,
+ "loss": 2.9781603813171387,
+ "step": 228
+ },
+ {
+ "epoch": 3.181184668989547,
+ "grad_norm": 0.05591209977865219,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 2.9844987392425537,
+ "step": 229
+ },
+ {
+ "epoch": 3.1951219512195124,
+ "grad_norm": 0.04706789553165436,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 2.9794564247131348,
+ "step": 230
+ },
+ {
+ "epoch": 3.2090592334494774,
+ "grad_norm": 0.04533008486032486,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 2.963930606842041,
+ "step": 231
+ },
+ {
+ "epoch": 3.2229965156794425,
+ "grad_norm": 0.0363367535173893,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 2.9743711948394775,
+ "step": 232
+ },
+ {
+ "epoch": 3.2369337979094075,
+ "grad_norm": 0.035832252353429794,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 2.9637725353240967,
+ "step": 233
+ },
+ {
+ "epoch": 3.250871080139373,
+ "grad_norm": 0.03634851798415184,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 2.971634864807129,
+ "step": 234
+ },
+ {
+ "epoch": 3.264808362369338,
+ "grad_norm": 0.036877233535051346,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 2.960113286972046,
+ "step": 235
+ },
+ {
+ "epoch": 3.278745644599303,
+ "grad_norm": 0.02930021658539772,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 2.948853015899658,
+ "step": 236
+ },
+ {
+ "epoch": 3.292682926829268,
+ "grad_norm": 0.029241658747196198,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 2.957648277282715,
+ "step": 237
+ },
+ {
+ "epoch": 3.3066202090592336,
+ "grad_norm": 0.029683494940400124,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 2.9501960277557373,
+ "step": 238
+ },
+ {
+ "epoch": 3.3205574912891986,
+ "grad_norm": 0.028418797999620438,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 2.9593586921691895,
+ "step": 239
+ },
+ {
+ "epoch": 3.3344947735191637,
+ "grad_norm": 0.029084153473377228,
+ "learning_rate": 0.000597691359743243,
+ "loss": 2.957581043243408,
+ "step": 240
+ },
+ {
+ "epoch": 3.3484320557491287,
+ "grad_norm": 0.03031332418322563,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 2.9465126991271973,
+ "step": 241
+ },
+ {
+ "epoch": 3.362369337979094,
+ "grad_norm": 0.028176147490739822,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 2.9427034854888916,
+ "step": 242
+ },
+ {
+ "epoch": 3.3763066202090593,
+ "grad_norm": 0.025935526937246323,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 2.933248996734619,
+ "step": 243
+ },
+ {
+ "epoch": 3.3902439024390243,
+ "grad_norm": 0.026524877175688744,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 2.9334826469421387,
+ "step": 244
+ },
+ {
+ "epoch": 3.40418118466899,
+ "grad_norm": 0.026807013899087906,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 2.9502480030059814,
+ "step": 245
+ },
+ {
+ "epoch": 3.418118466898955,
+ "grad_norm": 0.026440076529979706,
+ "learning_rate": 0.000597488038559129,
+ "loss": 2.9336085319519043,
+ "step": 246
+ },
+ {
+ "epoch": 3.43205574912892,
+ "grad_norm": 0.02752632275223732,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 2.937425374984741,
+ "step": 247
+ },
+ {
+ "epoch": 3.445993031358885,
+ "grad_norm": 0.027490021660923958,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 2.9357755184173584,
+ "step": 248
+ },
+ {
+ "epoch": 3.45993031358885,
+ "grad_norm": 0.03389354050159454,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 2.934713363647461,
+ "step": 249
+ },
+ {
+ "epoch": 3.4738675958188154,
+ "grad_norm": 0.042289797216653824,
+ "learning_rate": 0.000597347745466109,
+ "loss": 2.9363629817962646,
+ "step": 250
+ },
+ {
+ "epoch": 3.4878048780487805,
+ "grad_norm": 0.07276978343725204,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 2.946735382080078,
+ "step": 251
+ },
+ {
+ "epoch": 3.5017421602787455,
+ "grad_norm": 0.09471797943115234,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 2.9240806102752686,
+ "step": 252
+ },
+ {
+ "epoch": 3.515679442508711,
+ "grad_norm": 0.09386000782251358,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 2.9194839000701904,
+ "step": 253
+ },
+ {
+ "epoch": 3.529616724738676,
+ "grad_norm": 0.1176624521613121,
+ "learning_rate": 0.000597203657966319,
+ "loss": 2.9324824810028076,
+ "step": 254
+ },
+ {
+ "epoch": 3.543554006968641,
+ "grad_norm": 0.0723927766084671,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 2.932208776473999,
+ "step": 255
+ },
+ {
+ "epoch": 3.557491289198606,
+ "grad_norm": 0.06314370036125183,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 2.936681032180786,
+ "step": 256
+ },
+ {
+ "epoch": 3.571428571428571,
+ "grad_norm": 0.06432153284549713,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 2.924858331680298,
+ "step": 257
+ },
+ {
+ "epoch": 3.5853658536585367,
+ "grad_norm": 0.07495246082544327,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 2.918736696243286,
+ "step": 258
+ },
+ {
+ "epoch": 3.5993031358885017,
+ "grad_norm": 0.058007508516311646,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 2.92120361328125,
+ "step": 259
+ },
+ {
+ "epoch": 3.6132404181184667,
+ "grad_norm": 0.047224972397089005,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 2.9181740283966064,
+ "step": 260
+ },
+ {
+ "epoch": 3.6271777003484322,
+ "grad_norm": 0.04775157943367958,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 2.9145660400390625,
+ "step": 261
+ },
+ {
+ "epoch": 3.6411149825783973,
+ "grad_norm": 0.05087953805923462,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 2.9094574451446533,
+ "step": 262
+ },
+ {
+ "epoch": 3.6550522648083623,
+ "grad_norm": 0.047325216233730316,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 2.9127790927886963,
+ "step": 263
+ },
+ {
+ "epoch": 3.6689895470383274,
+ "grad_norm": 0.04005662724375725,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 2.9124414920806885,
+ "step": 264
+ },
+ {
+ "epoch": 3.682926829268293,
+ "grad_norm": 0.03284832462668419,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 2.897369861602783,
+ "step": 265
+ },
+ {
+ "epoch": 3.696864111498258,
+ "grad_norm": 0.03538643941283226,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 2.8912787437438965,
+ "step": 266
+ },
+ {
+ "epoch": 3.710801393728223,
+ "grad_norm": 0.0338534340262413,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 2.904737949371338,
+ "step": 267
+ },
+ {
+ "epoch": 3.7247386759581884,
+ "grad_norm": 0.03059707209467888,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 2.910109519958496,
+ "step": 268
+ },
+ {
+ "epoch": 3.7386759581881535,
+ "grad_norm": 0.027421824634075165,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 2.8953540325164795,
+ "step": 269
+ },
+ {
+ "epoch": 3.7526132404181185,
+ "grad_norm": 0.031095022335648537,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 2.8983192443847656,
+ "step": 270
+ },
+ {
+ "epoch": 3.7665505226480835,
+ "grad_norm": 0.03075260855257511,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 2.9002010822296143,
+ "step": 271
+ },
+ {
+ "epoch": 3.7804878048780486,
+ "grad_norm": 0.030917232856154442,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 2.8886561393737793,
+ "step": 272
+ },
+ {
+ "epoch": 3.794425087108014,
+ "grad_norm": 0.03267431631684303,
+ "learning_rate": 0.000596467483454833,
+ "loss": 2.8845345973968506,
+ "step": 273
+ },
+ {
+ "epoch": 3.808362369337979,
+ "grad_norm": 0.034112598747015,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 2.8842294216156006,
+ "step": 274
+ },
+ {
+ "epoch": 3.822299651567944,
+ "grad_norm": 0.038153596222400665,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 2.866973400115967,
+ "step": 275
+ },
+ {
+ "epoch": 3.8362369337979096,
+ "grad_norm": 0.033103615045547485,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 2.8709988594055176,
+ "step": 276
+ },
+ {
+ "epoch": 3.8501742160278747,
+ "grad_norm": 0.030708827078342438,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 2.8715577125549316,
+ "step": 277
+ },
+ {
+ "epoch": 3.8641114982578397,
+ "grad_norm": 0.03427499905228615,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 2.8766040802001953,
+ "step": 278
+ },
+ {
+ "epoch": 3.8780487804878048,
+ "grad_norm": 0.042216721922159195,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 2.8672261238098145,
+ "step": 279
+ },
+ {
+ "epoch": 3.89198606271777,
+ "grad_norm": 0.034656424075365067,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 2.860102653503418,
+ "step": 280
+ },
+ {
+ "epoch": 3.9059233449477353,
+ "grad_norm": 0.03288520127534866,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 2.8540444374084473,
+ "step": 281
+ },
+ {
+ "epoch": 3.9198606271777003,
+ "grad_norm": 0.041709382086992264,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 2.872581958770752,
+ "step": 282
+ },
+ {
+ "epoch": 3.9337979094076654,
+ "grad_norm": 0.04955075681209564,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 2.874307632446289,
+ "step": 283
+ },
+ {
+ "epoch": 3.947735191637631,
+ "grad_norm": 0.05372118577361107,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 2.861191749572754,
+ "step": 284
+ },
+ {
+ "epoch": 3.961672473867596,
+ "grad_norm": 0.05855486914515495,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 2.8542709350585938,
+ "step": 285
+ },
+ {
+ "epoch": 3.975609756097561,
+ "grad_norm": 0.05442376434803009,
+ "learning_rate": 0.000595914592474791,
+ "loss": 2.858576536178589,
+ "step": 286
+ },
+ {
+ "epoch": 3.989547038327526,
+ "grad_norm": 0.06468870490789413,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 2.8510026931762695,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.038657791912555695,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 2.1422531604766846,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 0.7195093631744385,
+ "eval_runtime": 39.1927,
+ "eval_samples_per_second": 62.308,
+ "eval_steps_per_second": 0.51,
+ "step": 288
+ },
+ {
+ "epoch": 4.013937282229965,
+ "grad_norm": 0.041369788348674774,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 2.8407950401306152,
+ "step": 289
+ },
+ {
+ "epoch": 4.02787456445993,
+ "grad_norm": 0.045097772032022476,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 2.8446922302246094,
+ "step": 290
+ },
+ {
+ "epoch": 4.041811846689895,
+ "grad_norm": 0.05102979391813278,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 2.8316476345062256,
+ "step": 291
+ },
+ {
+ "epoch": 4.055749128919861,
+ "grad_norm": 0.05429252237081528,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 2.8510334491729736,
+ "step": 292
+ },
+ {
+ "epoch": 4.069686411149826,
+ "grad_norm": 0.0761060118675232,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 2.8289966583251953,
+ "step": 293
+ },
+ {
+ "epoch": 4.083623693379791,
+ "grad_norm": 0.09525997191667557,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 2.843992233276367,
+ "step": 294
+ },
+ {
+ "epoch": 4.097560975609756,
+ "grad_norm": 0.09715712070465088,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 2.8543810844421387,
+ "step": 295
+ },
+ {
+ "epoch": 4.111498257839721,
+ "grad_norm": 0.0634903833270073,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 2.8456456661224365,
+ "step": 296
+ },
+ {
+ "epoch": 4.125435540069686,
+ "grad_norm": 0.05771167576313019,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 2.8387022018432617,
+ "step": 297
+ },
+ {
+ "epoch": 4.139372822299651,
+ "grad_norm": 0.05440817028284073,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 2.841508388519287,
+ "step": 298
+ },
+ {
+ "epoch": 4.153310104529616,
+ "grad_norm": 0.0550493523478508,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 2.833531618118286,
+ "step": 299
+ },
+ {
+ "epoch": 4.167247386759582,
+ "grad_norm": 0.04252418503165245,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 2.8254685401916504,
+ "step": 300
+ },
+ {
+ "epoch": 4.181184668989547,
+ "grad_norm": 0.042833492159843445,
+ "learning_rate": 0.000595227087813793,
+ "loss": 2.8289575576782227,
+ "step": 301
+ },
+ {
+ "epoch": 4.195121951219512,
+ "grad_norm": 0.038360171020030975,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 2.836550712585449,
+ "step": 302
+ },
+ {
+ "epoch": 4.209059233449477,
+ "grad_norm": 0.03655572608113289,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 2.8222808837890625,
+ "step": 303
+ },
+ {
+ "epoch": 4.2229965156794425,
+ "grad_norm": 0.03215418756008148,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 2.818066120147705,
+ "step": 304
+ },
+ {
+ "epoch": 4.2369337979094075,
+ "grad_norm": 0.031601350754499435,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 2.809666395187378,
+ "step": 305
+ },
+ {
+ "epoch": 4.2508710801393725,
+ "grad_norm": 0.03221198916435242,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 2.8137047290802,
+ "step": 306
+ },
+ {
+ "epoch": 4.264808362369338,
+ "grad_norm": 0.03107992745935917,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 2.822840690612793,
+ "step": 307
+ },
+ {
+ "epoch": 4.2787456445993035,
+ "grad_norm": 0.032328397035598755,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 2.8012430667877197,
+ "step": 308
+ },
+ {
+ "epoch": 4.2926829268292686,
+ "grad_norm": 0.029429661110043526,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 2.806474447250366,
+ "step": 309
+ },
+ {
+ "epoch": 4.306620209059234,
+ "grad_norm": 0.03430404141545296,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 2.7917184829711914,
+ "step": 310
+ },
+ {
+ "epoch": 4.320557491289199,
+ "grad_norm": 0.03543714061379433,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 2.798417091369629,
+ "step": 311
+ },
+ {
+ "epoch": 4.334494773519164,
+ "grad_norm": 0.04099712520837784,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 2.793095588684082,
+ "step": 312
+ },
+ {
+ "epoch": 4.348432055749129,
+ "grad_norm": 0.046607524156570435,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 2.807809829711914,
+ "step": 313
+ },
+ {
+ "epoch": 4.362369337979094,
+ "grad_norm": 0.048917099833488464,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 2.8017094135284424,
+ "step": 314
+ },
+ {
+ "epoch": 4.376306620209059,
+ "grad_norm": 0.05221967399120331,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 2.7990846633911133,
+ "step": 315
+ },
+ {
+ "epoch": 4.390243902439025,
+ "grad_norm": 0.05263383314013481,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 2.810983657836914,
+ "step": 316
+ },
+ {
+ "epoch": 4.40418118466899,
+ "grad_norm": 0.04930173233151436,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 2.7989790439605713,
+ "step": 317
+ },
+ {
+ "epoch": 4.418118466898955,
+ "grad_norm": 0.05484982952475548,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 2.7852704524993896,
+ "step": 318
+ },
+ {
+ "epoch": 4.43205574912892,
+ "grad_norm": 0.04991631582379341,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 2.7944440841674805,
+ "step": 319
+ },
+ {
+ "epoch": 4.445993031358885,
+ "grad_norm": 0.034856196492910385,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 2.7851901054382324,
+ "step": 320
+ },
+ {
+ "epoch": 4.45993031358885,
+ "grad_norm": 0.038153354078531265,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 2.777986526489258,
+ "step": 321
+ },
+ {
+ "epoch": 4.473867595818815,
+ "grad_norm": 0.04138852655887604,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 2.7781941890716553,
+ "step": 322
+ },
+ {
+ "epoch": 4.487804878048781,
+ "grad_norm": 0.04018627852201462,
+ "learning_rate": 0.00059412296156686,
+ "loss": 2.7934627532958984,
+ "step": 323
+ },
+ {
+ "epoch": 4.501742160278746,
+ "grad_norm": 0.03592175245285034,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 2.780992031097412,
+ "step": 324
+ },
+ {
+ "epoch": 4.515679442508711,
+ "grad_norm": 0.034620169550180435,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 2.7754831314086914,
+ "step": 325
+ },
+ {
+ "epoch": 4.529616724738676,
+ "grad_norm": 0.03244427964091301,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 2.7737035751342773,
+ "step": 326
+ },
+ {
+ "epoch": 4.543554006968641,
+ "grad_norm": 0.0361688956618309,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 2.7515547275543213,
+ "step": 327
+ },
+ {
+ "epoch": 4.557491289198606,
+ "grad_norm": 0.03722141310572624,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 2.769011974334717,
+ "step": 328
+ },
+ {
+ "epoch": 4.571428571428571,
+ "grad_norm": 0.0431540347635746,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 2.7755231857299805,
+ "step": 329
+ },
+ {
+ "epoch": 4.585365853658536,
+ "grad_norm": 0.04175153374671936,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 2.767477512359619,
+ "step": 330
+ },
+ {
+ "epoch": 4.599303135888501,
+ "grad_norm": 0.04184363782405853,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 2.775984048843384,
+ "step": 331
+ },
+ {
+ "epoch": 4.613240418118467,
+ "grad_norm": 0.04054928943514824,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 2.7669193744659424,
+ "step": 332
+ },
+ {
+ "epoch": 4.627177700348432,
+ "grad_norm": 0.039442483335733414,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 2.7557153701782227,
+ "step": 333
+ },
+ {
+ "epoch": 4.641114982578397,
+ "grad_norm": 0.04334413632750511,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 2.76118803024292,
+ "step": 334
+ },
+ {
+ "epoch": 4.655052264808362,
+ "grad_norm": 0.04821610450744629,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 2.755122184753418,
+ "step": 335
+ },
+ {
+ "epoch": 4.668989547038327,
+ "grad_norm": 0.05259500443935394,
+ "learning_rate": 0.000593417134927994,
+ "loss": 2.763730764389038,
+ "step": 336
+ },
+ {
+ "epoch": 4.682926829268292,
+ "grad_norm": 0.05462924763560295,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 2.7538461685180664,
+ "step": 337
+ },
+ {
+ "epoch": 4.696864111498257,
+ "grad_norm": 0.0755213275551796,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 2.7565760612487793,
+ "step": 338
+ },
+ {
+ "epoch": 4.710801393728223,
+ "grad_norm": 0.09036742150783539,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 2.7742908000946045,
+ "step": 339
+ },
+ {
+ "epoch": 4.724738675958188,
+ "grad_norm": 0.07687609642744064,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 2.7776336669921875,
+ "step": 340
+ },
+ {
+ "epoch": 4.7386759581881535,
+ "grad_norm": 0.06167550012469292,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 2.7571194171905518,
+ "step": 341
+ },
+ {
+ "epoch": 4.7526132404181185,
+ "grad_norm": 0.05498389154672623,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 2.766094207763672,
+ "step": 342
+ },
+ {
+ "epoch": 4.7665505226480835,
+ "grad_norm": 0.056576769798994064,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 2.759814977645874,
+ "step": 343
+ },
+ {
+ "epoch": 4.780487804878049,
+ "grad_norm": 0.05287479609251022,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 2.7653424739837646,
+ "step": 344
+ },
+ {
+ "epoch": 4.794425087108014,
+ "grad_norm": 0.05006227642297745,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 2.746647357940674,
+ "step": 345
+ },
+ {
+ "epoch": 4.80836236933798,
+ "grad_norm": 0.0428367517888546,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 2.748798131942749,
+ "step": 346
+ },
+ {
+ "epoch": 4.822299651567945,
+ "grad_norm": 0.04800762981176376,
+ "learning_rate": 0.000592789007481325,
+ "loss": 2.7554736137390137,
+ "step": 347
+ },
+ {
+ "epoch": 4.83623693379791,
+ "grad_norm": 0.04984979331493378,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 2.738473415374756,
+ "step": 348
+ },
+ {
+ "epoch": 4.850174216027875,
+ "grad_norm": 0.0404483824968338,
+ "learning_rate": 0.000592671765466188,
+ "loss": 2.7486448287963867,
+ "step": 349
+ },
+ {
+ "epoch": 4.86411149825784,
+ "grad_norm": 0.03785628825426102,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 2.7317609786987305,
+ "step": 350
+ },
+ {
+ "epoch": 4.878048780487805,
+ "grad_norm": 0.04446744546294212,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 2.750211238861084,
+ "step": 351
+ },
+ {
+ "epoch": 4.89198606271777,
+ "grad_norm": 0.0561913438141346,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 2.7429988384246826,
+ "step": 352
+ },
+ {
+ "epoch": 4.905923344947735,
+ "grad_norm": 0.06165647506713867,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 2.7389450073242188,
+ "step": 353
+ },
+ {
+ "epoch": 4.9198606271777,
+ "grad_norm": 0.04764621704816818,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 2.73350191116333,
+ "step": 354
+ },
+ {
+ "epoch": 4.933797909407666,
+ "grad_norm": 0.044994648545980453,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 2.7248117923736572,
+ "step": 355
+ },
+ {
+ "epoch": 4.947735191637631,
+ "grad_norm": 0.044408753514289856,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 2.7337656021118164,
+ "step": 356
+ },
+ {
+ "epoch": 4.961672473867596,
+ "grad_norm": 0.04064524918794632,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 2.732268810272217,
+ "step": 357
+ },
+ {
+ "epoch": 4.975609756097561,
+ "grad_norm": 0.036805033683776855,
+ "learning_rate": 0.000592132629452205,
+ "loss": 2.7253570556640625,
+ "step": 358
+ },
+ {
+ "epoch": 4.989547038327526,
+ "grad_norm": 0.03321084752678871,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 2.713101863861084,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.027469763532280922,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 2.0416059494018555,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 0.6877280473709106,
+ "eval_runtime": 37.7369,
+ "eval_samples_per_second": 64.711,
+ "eval_steps_per_second": 0.53,
+ "step": 360
+ },
+ {
+ "epoch": 5.013937282229965,
+ "grad_norm": 0.035481102764606476,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 2.6966300010681152,
+ "step": 361
+ },
+ {
+ "epoch": 5.02787456445993,
+ "grad_norm": 0.04075651615858078,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 2.701756000518799,
+ "step": 362
+ },
+ {
+ "epoch": 5.041811846689895,
+ "grad_norm": 0.03847100958228111,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 2.69856333732605,
+ "step": 363
+ },
+ {
+ "epoch": 5.055749128919861,
+ "grad_norm": 0.0439726859331131,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 2.6956000328063965,
+ "step": 364
+ },
+ {
+ "epoch": 5.069686411149826,
+ "grad_norm": 0.043925508856773376,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 2.7065486907958984,
+ "step": 365
+ },
+ {
+ "epoch": 5.083623693379791,
+ "grad_norm": 0.05349253863096237,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 2.7032744884490967,
+ "step": 366
+ },
+ {
+ "epoch": 5.097560975609756,
+ "grad_norm": 0.04957803711295128,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 2.6988987922668457,
+ "step": 367
+ },
+ {
+ "epoch": 5.111498257839721,
+ "grad_norm": 0.047412872314453125,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 2.6921496391296387,
+ "step": 368
+ },
+ {
+ "epoch": 5.125435540069686,
+ "grad_norm": 0.047648534178733826,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 2.691765308380127,
+ "step": 369
+ },
+ {
+ "epoch": 5.139372822299651,
+ "grad_norm": 0.05226794257760048,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 2.7006325721740723,
+ "step": 370
+ },
+ {
+ "epoch": 5.153310104529616,
+ "grad_norm": 0.054041698575019836,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 2.692309617996216,
+ "step": 371
+ },
+ {
+ "epoch": 5.167247386759582,
+ "grad_norm": 0.039680954068899155,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 2.685819149017334,
+ "step": 372
+ },
+ {
+ "epoch": 5.181184668989547,
+ "grad_norm": 0.04104545712471008,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 2.6913204193115234,
+ "step": 373
+ },
+ {
+ "epoch": 5.195121951219512,
+ "grad_norm": 0.037274859845638275,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 2.692324161529541,
+ "step": 374
+ },
+ {
+ "epoch": 5.209059233449477,
+ "grad_norm": 0.038038160651922226,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 2.6824822425842285,
+ "step": 375
+ },
+ {
+ "epoch": 5.2229965156794425,
+ "grad_norm": 0.04105817899107933,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 2.6830384731292725,
+ "step": 376
+ },
+ {
+ "epoch": 5.2369337979094075,
+ "grad_norm": 0.04050105810165405,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 2.676032066345215,
+ "step": 377
+ },
+ {
+ "epoch": 5.2508710801393725,
+ "grad_norm": 0.03780475631356239,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 2.6765289306640625,
+ "step": 378
+ },
+ {
+ "epoch": 5.264808362369338,
+ "grad_norm": 0.03484981507062912,
+ "learning_rate": 0.000590801330015633,
+ "loss": 2.6808249950408936,
+ "step": 379
+ },
+ {
+ "epoch": 5.2787456445993035,
+ "grad_norm": 0.03091316856443882,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 2.679382562637329,
+ "step": 380
+ },
+ {
+ "epoch": 5.2926829268292686,
+ "grad_norm": 0.03255805745720863,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 2.685393810272217,
+ "step": 381
+ },
+ {
+ "epoch": 5.306620209059234,
+ "grad_norm": 0.037457507103681564,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 2.6710822582244873,
+ "step": 382
+ },
+ {
+ "epoch": 5.320557491289199,
+ "grad_norm": 0.03654669225215912,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 2.6762566566467285,
+ "step": 383
+ },
+ {
+ "epoch": 5.334494773519164,
+ "grad_norm": 0.03590100631117821,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 2.6788597106933594,
+ "step": 384
+ },
+ {
+ "epoch": 5.348432055749129,
+ "grad_norm": 0.03647424280643463,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 2.6785120964050293,
+ "step": 385
+ },
+ {
+ "epoch": 5.362369337979094,
+ "grad_norm": 0.035309527069330215,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 2.679274082183838,
+ "step": 386
+ },
+ {
+ "epoch": 5.376306620209059,
+ "grad_norm": 0.035797759890556335,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 2.663790702819824,
+ "step": 387
+ },
+ {
+ "epoch": 5.390243902439025,
+ "grad_norm": 0.034813620150089264,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 2.661909818649292,
+ "step": 388
+ },
+ {
+ "epoch": 5.40418118466899,
+ "grad_norm": 0.03814723342657089,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 2.6648290157318115,
+ "step": 389
+ },
+ {
+ "epoch": 5.418118466898955,
+ "grad_norm": 0.03819345310330391,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 2.661344528198242,
+ "step": 390
+ },
+ {
+ "epoch": 5.43205574912892,
+ "grad_norm": 0.05034249275922775,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 2.6723971366882324,
+ "step": 391
+ },
+ {
+ "epoch": 5.445993031358885,
+ "grad_norm": 0.05302279815077782,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 2.6722166538238525,
+ "step": 392
+ },
+ {
+ "epoch": 5.45993031358885,
+ "grad_norm": 0.04576520621776581,
+ "learning_rate": 0.000589856958339686,
+ "loss": 2.650954008102417,
+ "step": 393
+ },
+ {
+ "epoch": 5.473867595818815,
+ "grad_norm": 0.04785747826099396,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 2.658161163330078,
+ "step": 394
+ },
+ {
+ "epoch": 5.487804878048781,
+ "grad_norm": 0.0524369515478611,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 2.66957688331604,
+ "step": 395
+ },
+ {
+ "epoch": 5.501742160278746,
+ "grad_norm": 0.05258813500404358,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 2.66046142578125,
+ "step": 396
+ },
+ {
+ "epoch": 5.515679442508711,
+ "grad_norm": 0.05156350135803223,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 2.6339619159698486,
+ "step": 397
+ },
+ {
+ "epoch": 5.529616724738676,
+ "grad_norm": 0.04716484993696213,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 2.656726837158203,
+ "step": 398
+ },
+ {
+ "epoch": 5.543554006968641,
+ "grad_norm": 0.048213694244623184,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 2.6740832328796387,
+ "step": 399
+ },
+ {
+ "epoch": 5.557491289198606,
+ "grad_norm": 0.046243470162153244,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 2.65981125831604,
+ "step": 400
+ },
+ {
+ "epoch": 5.571428571428571,
+ "grad_norm": 0.04331960901618004,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 2.637345790863037,
+ "step": 401
+ },
+ {
+ "epoch": 5.585365853658536,
+ "grad_norm": 0.04055584594607353,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 2.6382877826690674,
+ "step": 402
+ },
+ {
+ "epoch": 5.599303135888501,
+ "grad_norm": 0.046962495893239975,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 2.642883539199829,
+ "step": 403
+ },
+ {
+ "epoch": 5.613240418118467,
+ "grad_norm": 0.055259495973587036,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 2.6498947143554688,
+ "step": 404
+ },
+ {
+ "epoch": 5.627177700348432,
+ "grad_norm": 0.05768313631415367,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 2.6472978591918945,
+ "step": 405
+ },
+ {
+ "epoch": 5.641114982578397,
+ "grad_norm": 0.04900819808244705,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 2.6596455574035645,
+ "step": 406
+ },
+ {
+ "epoch": 5.655052264808362,
+ "grad_norm": 0.053204163908958435,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 2.6456780433654785,
+ "step": 407
+ },
+ {
+ "epoch": 5.668989547038327,
+ "grad_norm": 0.05327627807855606,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 2.651031494140625,
+ "step": 408
+ },
+ {
+ "epoch": 5.682926829268292,
+ "grad_norm": 0.050564929842948914,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 2.656858444213867,
+ "step": 409
+ },
+ {
+ "epoch": 5.696864111498257,
+ "grad_norm": 0.05613167583942413,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 2.6408069133758545,
+ "step": 410
+ },
+ {
+ "epoch": 5.710801393728223,
+ "grad_norm": 0.05399465933442116,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 2.6472203731536865,
+ "step": 411
+ },
+ {
+ "epoch": 5.724738675958188,
+ "grad_norm": 0.04919342324137688,
+ "learning_rate": 0.0005885028868537,
+ "loss": 2.656099319458008,
+ "step": 412
+ },
+ {
+ "epoch": 5.7386759581881535,
+ "grad_norm": 0.0552130751311779,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 2.6422126293182373,
+ "step": 413
+ },
+ {
+ "epoch": 5.7526132404181185,
+ "grad_norm": 0.05774940922856331,
+ "learning_rate": 0.000588355515561353,
+ "loss": 2.649722099304199,
+ "step": 414
+ },
+ {
+ "epoch": 5.7665505226480835,
+ "grad_norm": 0.04623311012983322,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 2.6475892066955566,
+ "step": 415
+ },
+ {
+ "epoch": 5.780487804878049,
+ "grad_norm": 0.04961073398590088,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 2.658733606338501,
+ "step": 416
+ },
+ {
+ "epoch": 5.794425087108014,
+ "grad_norm": 0.05006693676114082,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 2.6217124462127686,
+ "step": 417
+ },
+ {
+ "epoch": 5.80836236933798,
+ "grad_norm": 0.04175165295600891,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 2.632359027862549,
+ "step": 418
+ },
+ {
+ "epoch": 5.822299651567945,
+ "grad_norm": 0.0332355760037899,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 2.6406683921813965,
+ "step": 419
+ },
+ {
+ "epoch": 5.83623693379791,
+ "grad_norm": 0.0371745266020298,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 2.630310535430908,
+ "step": 420
+ },
+ {
+ "epoch": 5.850174216027875,
+ "grad_norm": 0.02940242365002632,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 2.6451711654663086,
+ "step": 421
+ },
+ {
+ "epoch": 5.86411149825784,
+ "grad_norm": 0.03578875586390495,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 2.637753486633301,
+ "step": 422
+ },
+ {
+ "epoch": 5.878048780487805,
+ "grad_norm": 0.03402113541960716,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 2.623744487762451,
+ "step": 423
+ },
+ {
+ "epoch": 5.89198606271777,
+ "grad_norm": 0.034094467759132385,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 2.63200044631958,
+ "step": 424
+ },
+ {
+ "epoch": 5.905923344947735,
+ "grad_norm": 0.03428930044174194,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 2.6219849586486816,
+ "step": 425
+ },
+ {
+ "epoch": 5.9198606271777,
+ "grad_norm": 0.033345405012369156,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 2.611741065979004,
+ "step": 426
+ },
+ {
+ "epoch": 5.933797909407666,
+ "grad_norm": 0.031680066138505936,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 2.6227869987487793,
+ "step": 427
+ },
+ {
+ "epoch": 5.947735191637631,
+ "grad_norm": 0.028066758066415787,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 2.6249539852142334,
+ "step": 428
+ },
+ {
+ "epoch": 5.961672473867596,
+ "grad_norm": 0.032918382436037064,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 2.6176412105560303,
+ "step": 429
+ },
+ {
+ "epoch": 5.975609756097561,
+ "grad_norm": 0.033349912613630295,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 2.6159720420837402,
+ "step": 430
+ },
+ {
+ "epoch": 5.989547038327526,
+ "grad_norm": 0.03317154198884964,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 2.619137763977051,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.025815341621637344,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 1.9473658800125122,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 0.6633820533752441,
+ "eval_runtime": 37.551,
+ "eval_samples_per_second": 65.032,
+ "eval_steps_per_second": 0.533,
+ "step": 432
+ },
+ {
+ "epoch": 6.013937282229965,
+ "grad_norm": 0.031342681497335434,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 2.5931155681610107,
+ "step": 433
+ },
+ {
+ "epoch": 6.02787456445993,
+ "grad_norm": 0.04343045502901077,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 2.587559700012207,
+ "step": 434
+ },
+ {
+ "epoch": 6.041811846689895,
+ "grad_norm": 0.052591342478990555,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 2.5950260162353516,
+ "step": 435
+ },
+ {
+ "epoch": 6.055749128919861,
+ "grad_norm": 0.05538717657327652,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 2.600468635559082,
+ "step": 436
+ },
+ {
+ "epoch": 6.069686411149826,
+ "grad_norm": 0.05505542829632759,
+ "learning_rate": 0.000586594769789753,
+ "loss": 2.5905046463012695,
+ "step": 437
+ },
+ {
+ "epoch": 6.083623693379791,
+ "grad_norm": 0.05229569226503372,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 2.591856002807617,
+ "step": 438
+ },
+ {
+ "epoch": 6.097560975609756,
+ "grad_norm": 0.05032522976398468,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 2.577693462371826,
+ "step": 439
+ },
+ {
+ "epoch": 6.111498257839721,
+ "grad_norm": 0.04670557379722595,
+ "learning_rate": 0.000586356179990052,
+ "loss": 2.5835001468658447,
+ "step": 440
+ },
+ {
+ "epoch": 6.125435540069686,
+ "grad_norm": 0.0537918359041214,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 2.596343517303467,
+ "step": 441
+ },
+ {
+ "epoch": 6.139372822299651,
+ "grad_norm": 0.06328130513429642,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 2.5912466049194336,
+ "step": 442
+ },
+ {
+ "epoch": 6.153310104529616,
+ "grad_norm": 0.06647300720214844,
+ "learning_rate": 0.000586115535536849,
+ "loss": 2.589078426361084,
+ "step": 443
+ },
+ {
+ "epoch": 6.167247386759582,
+ "grad_norm": 0.06643359363079071,
+ "learning_rate": 0.000586034864430614,
+ "loss": 2.5956435203552246,
+ "step": 444
+ },
+ {
+ "epoch": 6.181184668989547,
+ "grad_norm": 0.05613892152905464,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 2.5922906398773193,
+ "step": 445
+ },
+ {
+ "epoch": 6.195121951219512,
+ "grad_norm": 0.05655102804303169,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 2.590651512145996,
+ "step": 446
+ },
+ {
+ "epoch": 6.209059233449477,
+ "grad_norm": 0.06806499511003494,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 2.589696168899536,
+ "step": 447
+ },
+ {
+ "epoch": 6.2229965156794425,
+ "grad_norm": 0.06616773456335068,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 2.5944786071777344,
+ "step": 448
+ },
+ {
+ "epoch": 6.2369337979094075,
+ "grad_norm": 0.05937796086072922,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 2.598313331604004,
+ "step": 449
+ },
+ {
+ "epoch": 6.2508710801393725,
+ "grad_norm": 0.05284281075000763,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 2.5805535316467285,
+ "step": 450
+ },
+ {
+ "epoch": 6.264808362369338,
+ "grad_norm": 0.04509073495864868,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 2.570598840713501,
+ "step": 451
+ },
+ {
+ "epoch": 6.2787456445993035,
+ "grad_norm": 0.05604032054543495,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 2.6077847480773926,
+ "step": 452
+ },
+ {
+ "epoch": 6.2926829268292686,
+ "grad_norm": 0.06662779301404953,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 2.578629493713379,
+ "step": 453
+ },
+ {
+ "epoch": 6.306620209059234,
+ "grad_norm": 0.0585545152425766,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 2.586427688598633,
+ "step": 454
+ },
+ {
+ "epoch": 6.320557491289199,
+ "grad_norm": 0.04736408591270447,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 2.5911552906036377,
+ "step": 455
+ },
+ {
+ "epoch": 6.334494773519164,
+ "grad_norm": 0.04474812000989914,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 2.5697641372680664,
+ "step": 456
+ },
+ {
+ "epoch": 6.348432055749129,
+ "grad_norm": 0.04312862828373909,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 2.566927671432495,
+ "step": 457
+ },
+ {
+ "epoch": 6.362369337979094,
+ "grad_norm": 0.03764902800321579,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 2.5947153568267822,
+ "step": 458
+ },
+ {
+ "epoch": 6.376306620209059,
+ "grad_norm": 0.03353014215826988,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 2.5777602195739746,
+ "step": 459
+ },
+ {
+ "epoch": 6.390243902439025,
+ "grad_norm": 0.033975999802351,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 2.5783305168151855,
+ "step": 460
+ },
+ {
+ "epoch": 6.40418118466899,
+ "grad_norm": 0.03363902121782303,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 2.5673155784606934,
+ "step": 461
+ },
+ {
+ "epoch": 6.418118466898955,
+ "grad_norm": 0.034326743334531784,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 2.55814790725708,
+ "step": 462
+ },
+ {
+ "epoch": 6.43205574912892,
+ "grad_norm": 0.03194424510002136,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 2.5688910484313965,
+ "step": 463
+ },
+ {
+ "epoch": 6.445993031358885,
+ "grad_norm": 0.029925566166639328,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 2.559793710708618,
+ "step": 464
+ },
+ {
+ "epoch": 6.45993031358885,
+ "grad_norm": 0.0290202796459198,
+ "learning_rate": 0.000584288196583439,
+ "loss": 2.555941581726074,
+ "step": 465
+ },
+ {
+ "epoch": 6.473867595818815,
+ "grad_norm": 0.030976103618741035,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 2.5576136112213135,
+ "step": 466
+ },
+ {
+ "epoch": 6.487804878048781,
+ "grad_norm": 0.030049985274672508,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 2.5645012855529785,
+ "step": 467
+ },
+ {
+ "epoch": 6.501742160278746,
+ "grad_norm": 0.031192071735858917,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 2.5691795349121094,
+ "step": 468
+ },
+ {
+ "epoch": 6.515679442508711,
+ "grad_norm": 0.03066888637840748,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 2.5597329139709473,
+ "step": 469
+ },
+ {
+ "epoch": 6.529616724738676,
+ "grad_norm": 0.031034760177135468,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 2.5749378204345703,
+ "step": 470
+ },
+ {
+ "epoch": 6.543554006968641,
+ "grad_norm": 0.03199351951479912,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 2.564612627029419,
+ "step": 471
+ },
+ {
+ "epoch": 6.557491289198606,
+ "grad_norm": 0.027530083432793617,
+ "learning_rate": 0.000583683733328402,
+ "loss": 2.568983793258667,
+ "step": 472
+ },
+ {
+ "epoch": 6.571428571428571,
+ "grad_norm": 0.02841697260737419,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 2.551283836364746,
+ "step": 473
+ },
+ {
+ "epoch": 6.585365853658536,
+ "grad_norm": 0.03285123407840729,
+ "learning_rate": 0.000583508993216961,
+ "loss": 2.5753087997436523,
+ "step": 474
+ },
+ {
+ "epoch": 6.599303135888501,
+ "grad_norm": 0.0347592793405056,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 2.56103253364563,
+ "step": 475
+ },
+ {
+ "epoch": 6.613240418118467,
+ "grad_norm": 0.03750046715140343,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 2.5542030334472656,
+ "step": 476
+ },
+ {
+ "epoch": 6.627177700348432,
+ "grad_norm": 0.04254816472530365,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 2.5616328716278076,
+ "step": 477
+ },
+ {
+ "epoch": 6.641114982578397,
+ "grad_norm": 0.04370047152042389,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 2.5646753311157227,
+ "step": 478
+ },
+ {
+ "epoch": 6.655052264808362,
+ "grad_norm": 0.03816768899559975,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 2.5603585243225098,
+ "step": 479
+ },
+ {
+ "epoch": 6.668989547038327,
+ "grad_norm": 0.034390103071928024,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 2.548727512359619,
+ "step": 480
+ },
+ {
+ "epoch": 6.682926829268292,
+ "grad_norm": 0.0366024374961853,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 2.555230140686035,
+ "step": 481
+ },
+ {
+ "epoch": 6.696864111498257,
+ "grad_norm": 0.03938084468245506,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 2.5586276054382324,
+ "step": 482
+ },
+ {
+ "epoch": 6.710801393728223,
+ "grad_norm": 0.04110350087285042,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 2.542633056640625,
+ "step": 483
+ },
+ {
+ "epoch": 6.724738675958188,
+ "grad_norm": 0.03961770981550217,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 2.5494391918182373,
+ "step": 484
+ },
+ {
+ "epoch": 6.7386759581881535,
+ "grad_norm": 0.03677491098642349,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 2.563061475753784,
+ "step": 485
+ },
+ {
+ "epoch": 6.7526132404181185,
+ "grad_norm": 0.03818432241678238,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 2.5586929321289062,
+ "step": 486
+ },
+ {
+ "epoch": 6.7665505226480835,
+ "grad_norm": 0.033873286098241806,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 2.5477757453918457,
+ "step": 487
+ },
+ {
+ "epoch": 6.780487804878049,
+ "grad_norm": 0.03699466213583946,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 2.541106700897217,
+ "step": 488
+ },
+ {
+ "epoch": 6.794425087108014,
+ "grad_norm": 0.03866403177380562,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 2.5336339473724365,
+ "step": 489
+ },
+ {
+ "epoch": 6.80836236933798,
+ "grad_norm": 0.03235912322998047,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 2.5439155101776123,
+ "step": 490
+ },
+ {
+ "epoch": 6.822299651567945,
+ "grad_norm": 0.03776629641652107,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 2.5592265129089355,
+ "step": 491
+ },
+ {
+ "epoch": 6.83623693379791,
+ "grad_norm": 0.04273561015725136,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 2.5432629585266113,
+ "step": 492
+ },
+ {
+ "epoch": 6.850174216027875,
+ "grad_norm": 0.04358302056789398,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 2.5543787479400635,
+ "step": 493
+ },
+ {
+ "epoch": 6.86411149825784,
+ "grad_norm": 0.03629252687096596,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 2.562788963317871,
+ "step": 494
+ },
+ {
+ "epoch": 6.878048780487805,
+ "grad_norm": 0.03263307362794876,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 2.538097381591797,
+ "step": 495
+ },
+ {
+ "epoch": 6.89198606271777,
+ "grad_norm": 0.036420464515686035,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 2.554645299911499,
+ "step": 496
+ },
+ {
+ "epoch": 6.905923344947735,
+ "grad_norm": 0.035384103655815125,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 2.5465738773345947,
+ "step": 497
+ },
+ {
+ "epoch": 6.9198606271777,
+ "grad_norm": 0.03658696636557579,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 2.536980152130127,
+ "step": 498
+ },
+ {
+ "epoch": 6.933797909407666,
+ "grad_norm": 0.036053478717803955,
+ "learning_rate": 0.00058124865204371,
+ "loss": 2.528345823287964,
+ "step": 499
+ },
+ {
+ "epoch": 6.947735191637631,
+ "grad_norm": 0.03789985179901123,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 2.544621706008911,
+ "step": 500
+ },
+ {
+ "epoch": 6.961672473867596,
+ "grad_norm": 0.03835926949977875,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 2.5407447814941406,
+ "step": 501
+ },
+ {
+ "epoch": 6.975609756097561,
+ "grad_norm": 0.04318110644817352,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 2.5537543296813965,
+ "step": 502
+ },
+ {
+ "epoch": 6.989547038327526,
+ "grad_norm": 0.0451606847345829,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 2.5201051235198975,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.03245232254266739,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 1.9085171222686768,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 0.6467739343643188,
+ "eval_runtime": 38.2431,
+ "eval_samples_per_second": 63.855,
+ "eval_steps_per_second": 0.523,
+ "step": 504
+ },
+ {
+ "epoch": 7.013937282229965,
+ "grad_norm": 0.03788387402892113,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 2.493765354156494,
+ "step": 505
+ },
+ {
+ "epoch": 7.02787456445993,
+ "grad_norm": 0.04437057301402092,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 2.509481430053711,
+ "step": 506
+ },
+ {
+ "epoch": 7.041811846689895,
+ "grad_norm": 0.047125279903411865,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 2.504810333251953,
+ "step": 507
+ },
+ {
+ "epoch": 7.055749128919861,
+ "grad_norm": 0.05385598540306091,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 2.5145554542541504,
+ "step": 508
+ },
+ {
+ "epoch": 7.069686411149826,
+ "grad_norm": 0.05404049903154373,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 2.500851631164551,
+ "step": 509
+ },
+ {
+ "epoch": 7.083623693379791,
+ "grad_norm": 0.05455894395709038,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 2.4832260608673096,
+ "step": 510
+ },
+ {
+ "epoch": 7.097560975609756,
+ "grad_norm": 0.0558103583753109,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 2.524315118789673,
+ "step": 511
+ },
+ {
+ "epoch": 7.111498257839721,
+ "grad_norm": 0.057283915579319,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 2.508044719696045,
+ "step": 512
+ },
+ {
+ "epoch": 7.125435540069686,
+ "grad_norm": 0.061027105897665024,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 2.5139050483703613,
+ "step": 513
+ },
+ {
+ "epoch": 7.139372822299651,
+ "grad_norm": 0.06873901933431625,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 2.507343053817749,
+ "step": 514
+ },
+ {
+ "epoch": 7.153310104529616,
+ "grad_norm": 0.06900028139352798,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 2.520263195037842,
+ "step": 515
+ },
+ {
+ "epoch": 7.167247386759582,
+ "grad_norm": 0.06029877811670303,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 2.5027518272399902,
+ "step": 516
+ },
+ {
+ "epoch": 7.181184668989547,
+ "grad_norm": 0.06097294017672539,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 2.512634515762329,
+ "step": 517
+ },
+ {
+ "epoch": 7.195121951219512,
+ "grad_norm": 0.06655558943748474,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 2.5014023780822754,
+ "step": 518
+ },
+ {
+ "epoch": 7.209059233449477,
+ "grad_norm": 0.06343840062618256,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 2.5144271850585938,
+ "step": 519
+ },
+ {
+ "epoch": 7.2229965156794425,
+ "grad_norm": 0.08325106650590897,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 2.5239195823669434,
+ "step": 520
+ },
+ {
+ "epoch": 7.2369337979094075,
+ "grad_norm": 0.07948101311922073,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 2.5223121643066406,
+ "step": 521
+ },
+ {
+ "epoch": 7.2508710801393725,
+ "grad_norm": 0.06717163324356079,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 2.5102391242980957,
+ "step": 522
+ },
+ {
+ "epoch": 7.264808362369338,
+ "grad_norm": 0.05896087363362312,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 2.51560640335083,
+ "step": 523
+ },
+ {
+ "epoch": 7.2787456445993035,
+ "grad_norm": 0.05562684312462807,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 2.5021753311157227,
+ "step": 524
+ },
+ {
+ "epoch": 7.2926829268292686,
+ "grad_norm": 0.043904103338718414,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 2.4952425956726074,
+ "step": 525
+ },
+ {
+ "epoch": 7.306620209059234,
+ "grad_norm": 0.0436740480363369,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 2.515303611755371,
+ "step": 526
+ },
+ {
+ "epoch": 7.320557491289199,
+ "grad_norm": 0.0395866297185421,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 2.5101678371429443,
+ "step": 527
+ },
+ {
+ "epoch": 7.334494773519164,
+ "grad_norm": 0.039552897214889526,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 2.5090293884277344,
+ "step": 528
+ },
+ {
+ "epoch": 7.348432055749129,
+ "grad_norm": 0.03839687630534172,
+ "learning_rate": 0.000578351407086301,
+ "loss": 2.505296468734741,
+ "step": 529
+ },
+ {
+ "epoch": 7.362369337979094,
+ "grad_norm": 0.042542796581983566,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 2.49535870552063,
+ "step": 530
+ },
+ {
+ "epoch": 7.376306620209059,
+ "grad_norm": 0.044322993606328964,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 2.4890050888061523,
+ "step": 531
+ },
+ {
+ "epoch": 7.390243902439025,
+ "grad_norm": 0.04029953107237816,
+ "learning_rate": 0.000578050665972623,
+ "loss": 2.500995397567749,
+ "step": 532
+ },
+ {
+ "epoch": 7.40418118466899,
+ "grad_norm": 0.044392652809619904,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 2.505852222442627,
+ "step": 533
+ },
+ {
+ "epoch": 7.418118466898955,
+ "grad_norm": 0.04363880679011345,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 2.4939942359924316,
+ "step": 534
+ },
+ {
+ "epoch": 7.43205574912892,
+ "grad_norm": 0.03960833698511124,
+ "learning_rate": 0.000577747930429834,
+ "loss": 2.507826805114746,
+ "step": 535
+ },
+ {
+ "epoch": 7.445993031358885,
+ "grad_norm": 0.03880009427666664,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 2.4876725673675537,
+ "step": 536
+ },
+ {
+ "epoch": 7.45993031358885,
+ "grad_norm": 0.034344322979450226,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 2.5032553672790527,
+ "step": 537
+ },
+ {
+ "epoch": 7.473867595818815,
+ "grad_norm": 0.030360646545886993,
+ "learning_rate": 0.00057744320265311,
+ "loss": 2.4887325763702393,
+ "step": 538
+ },
+ {
+ "epoch": 7.487804878048781,
+ "grad_norm": 0.030478516593575478,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 2.5041327476501465,
+ "step": 539
+ },
+ {
+ "epoch": 7.501742160278746,
+ "grad_norm": 0.030038833618164062,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 2.488068103790283,
+ "step": 540
+ },
+ {
+ "epoch": 7.515679442508711,
+ "grad_norm": 0.03227488324046135,
+ "learning_rate": 0.000577136484852073,
+ "loss": 2.4851627349853516,
+ "step": 541
+ },
+ {
+ "epoch": 7.529616724738676,
+ "grad_norm": 0.03053610771894455,
+ "learning_rate": 0.000577033803741424,
+ "loss": 2.48903226852417,
+ "step": 542
+ },
+ {
+ "epoch": 7.543554006968641,
+ "grad_norm": 0.030809711664915085,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 2.487685203552246,
+ "step": 543
+ },
+ {
+ "epoch": 7.557491289198606,
+ "grad_norm": 0.03001537173986435,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 2.4998037815093994,
+ "step": 544
+ },
+ {
+ "epoch": 7.571428571428571,
+ "grad_norm": 0.028761114925146103,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 2.4887194633483887,
+ "step": 545
+ },
+ {
+ "epoch": 7.585365853658536,
+ "grad_norm": 0.028289001435041428,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 2.4748306274414062,
+ "step": 546
+ },
+ {
+ "epoch": 7.599303135888501,
+ "grad_norm": 0.028406348079442978,
+ "learning_rate": 0.00057651708808768,
+ "loss": 2.490642786026001,
+ "step": 547
+ },
+ {
+ "epoch": 7.613240418118467,
+ "grad_norm": 0.027616780251264572,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 2.4816768169403076,
+ "step": 548
+ },
+ {
+ "epoch": 7.627177700348432,
+ "grad_norm": 0.028579063713550568,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 2.49285888671875,
+ "step": 549
+ },
+ {
+ "epoch": 7.641114982578397,
+ "grad_norm": 0.032302722334861755,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 2.4891176223754883,
+ "step": 550
+ },
+ {
+ "epoch": 7.655052264808362,
+ "grad_norm": 0.03428734466433525,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 2.4945361614227295,
+ "step": 551
+ },
+ {
+ "epoch": 7.668989547038327,
+ "grad_norm": 0.03326137363910675,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 2.483844518661499,
+ "step": 552
+ },
+ {
+ "epoch": 7.682926829268292,
+ "grad_norm": 0.03136003762483597,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 2.4965500831604004,
+ "step": 553
+ },
+ {
+ "epoch": 7.696864111498257,
+ "grad_norm": 0.031299516558647156,
+ "learning_rate": 0.000575784433093151,
+ "loss": 2.4755914211273193,
+ "step": 554
+ },
+ {
+ "epoch": 7.710801393728223,
+ "grad_norm": 0.030511915683746338,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 2.4844446182250977,
+ "step": 555
+ },
+ {
+ "epoch": 7.724738675958188,
+ "grad_norm": 0.03106229193508625,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 2.4614830017089844,
+ "step": 556
+ },
+ {
+ "epoch": 7.7386759581881535,
+ "grad_norm": 0.032561615109443665,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 2.476231813430786,
+ "step": 557
+ },
+ {
+ "epoch": 7.7526132404181185,
+ "grad_norm": 0.03334634751081467,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 2.4722485542297363,
+ "step": 558
+ },
+ {
+ "epoch": 7.7665505226480835,
+ "grad_norm": 0.03567497059702873,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 2.471876621246338,
+ "step": 559
+ },
+ {
+ "epoch": 7.780487804878049,
+ "grad_norm": 0.038662221282720566,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 2.4947409629821777,
+ "step": 560
+ },
+ {
+ "epoch": 7.794425087108014,
+ "grad_norm": 0.036901816725730896,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 2.470515489578247,
+ "step": 561
+ },
+ {
+ "epoch": 7.80836236933798,
+ "grad_norm": 0.03382178768515587,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 2.4678587913513184,
+ "step": 562
+ },
+ {
+ "epoch": 7.822299651567945,
+ "grad_norm": 0.03480829298496246,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 2.4690866470336914,
+ "step": 563
+ },
+ {
+ "epoch": 7.83623693379791,
+ "grad_norm": 0.03593127429485321,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 2.491703748703003,
+ "step": 564
+ },
+ {
+ "epoch": 7.850174216027875,
+ "grad_norm": 0.03532601520419121,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 2.468522548675537,
+ "step": 565
+ },
+ {
+ "epoch": 7.86411149825784,
+ "grad_norm": 0.035680219531059265,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 2.4759652614593506,
+ "step": 566
+ },
+ {
+ "epoch": 7.878048780487805,
+ "grad_norm": 0.03417263925075531,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 2.4931888580322266,
+ "step": 567
+ },
+ {
+ "epoch": 7.89198606271777,
+ "grad_norm": 0.03273053467273712,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 2.466641426086426,
+ "step": 568
+ },
+ {
+ "epoch": 7.905923344947735,
+ "grad_norm": 0.032283321022987366,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 2.466756820678711,
+ "step": 569
+ },
+ {
+ "epoch": 7.9198606271777,
+ "grad_norm": 0.03162473440170288,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 2.4725847244262695,
+ "step": 570
+ },
+ {
+ "epoch": 7.933797909407666,
+ "grad_norm": 0.03218452259898186,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 2.46532940864563,
+ "step": 571
+ },
+ {
+ "epoch": 7.947735191637631,
+ "grad_norm": 0.03216313198208809,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 2.4749364852905273,
+ "step": 572
+ },
+ {
+ "epoch": 7.961672473867596,
+ "grad_norm": 0.03091583214700222,
+ "learning_rate": 0.000573741597999996,
+ "loss": 2.470108985900879,
+ "step": 573
+ },
+ {
+ "epoch": 7.975609756097561,
+ "grad_norm": 0.028130974620580673,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 2.466053009033203,
+ "step": 574
+ },
+ {
+ "epoch": 7.989547038327526,
+ "grad_norm": 0.03071889653801918,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 2.4787344932556152,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.02555985376238823,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 1.8408641815185547,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 0.6343774199485779,
+ "eval_runtime": 38.5533,
+ "eval_samples_per_second": 63.341,
+ "eval_steps_per_second": 0.519,
+ "step": 576
+ },
+ {
+ "epoch": 8.013937282229966,
+ "grad_norm": 0.03359892964363098,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 2.4359030723571777,
+ "step": 577
+ },
+ {
+ "epoch": 8.02787456445993,
+ "grad_norm": 0.05054016411304474,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 2.4193553924560547,
+ "step": 578
+ },
+ {
+ "epoch": 8.041811846689896,
+ "grad_norm": 0.062336456030607224,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 2.4455740451812744,
+ "step": 579
+ },
+ {
+ "epoch": 8.05574912891986,
+ "grad_norm": 0.06716352701187134,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 2.4429545402526855,
+ "step": 580
+ },
+ {
+ "epoch": 8.069686411149826,
+ "grad_norm": 0.06647022068500519,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 2.4446518421173096,
+ "step": 581
+ },
+ {
+ "epoch": 8.08362369337979,
+ "grad_norm": 0.0826159194111824,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 2.436643600463867,
+ "step": 582
+ },
+ {
+ "epoch": 8.097560975609756,
+ "grad_norm": 0.08472150564193726,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 2.451641082763672,
+ "step": 583
+ },
+ {
+ "epoch": 8.111498257839722,
+ "grad_norm": 0.07912597805261612,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 2.447244167327881,
+ "step": 584
+ },
+ {
+ "epoch": 8.125435540069686,
+ "grad_norm": 0.0796087384223938,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 2.4437828063964844,
+ "step": 585
+ },
+ {
+ "epoch": 8.139372822299652,
+ "grad_norm": 0.07414955645799637,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 2.437047004699707,
+ "step": 586
+ },
+ {
+ "epoch": 8.153310104529616,
+ "grad_norm": 0.06763316690921783,
+ "learning_rate": 0.000572185929672906,
+ "loss": 2.446570873260498,
+ "step": 587
+ },
+ {
+ "epoch": 8.167247386759582,
+ "grad_norm": 0.05742042511701584,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 2.445460796356201,
+ "step": 588
+ },
+ {
+ "epoch": 8.181184668989546,
+ "grad_norm": 0.0572611466050148,
+ "learning_rate": 0.000571960215520345,
+ "loss": 2.4439504146575928,
+ "step": 589
+ },
+ {
+ "epoch": 8.195121951219512,
+ "grad_norm": 0.05339052528142929,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 2.4502882957458496,
+ "step": 590
+ },
+ {
+ "epoch": 8.209059233449477,
+ "grad_norm": 0.05900551751255989,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 2.450836658477783,
+ "step": 591
+ },
+ {
+ "epoch": 8.222996515679442,
+ "grad_norm": 0.06624466180801392,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 2.4539589881896973,
+ "step": 592
+ },
+ {
+ "epoch": 8.236933797909408,
+ "grad_norm": 0.06468363106250763,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 2.448918342590332,
+ "step": 593
+ },
+ {
+ "epoch": 8.250871080139373,
+ "grad_norm": 0.04979013651609421,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 2.447591781616211,
+ "step": 594
+ },
+ {
+ "epoch": 8.264808362369338,
+ "grad_norm": 0.047402940690517426,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 2.450143337249756,
+ "step": 595
+ },
+ {
+ "epoch": 8.278745644599303,
+ "grad_norm": 0.041620269417762756,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 2.4322123527526855,
+ "step": 596
+ },
+ {
+ "epoch": 8.292682926829269,
+ "grad_norm": 0.04016399011015892,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 2.4417006969451904,
+ "step": 597
+ },
+ {
+ "epoch": 8.306620209059233,
+ "grad_norm": 0.04293493181467056,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 2.4442501068115234,
+ "step": 598
+ },
+ {
+ "epoch": 8.320557491289199,
+ "grad_norm": 0.041785892099142075,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 2.4570703506469727,
+ "step": 599
+ },
+ {
+ "epoch": 8.334494773519165,
+ "grad_norm": 0.042869169265031815,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 2.4294066429138184,
+ "step": 600
+ },
+ {
+ "epoch": 8.348432055749129,
+ "grad_norm": 0.04059606418013573,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 2.4469175338745117,
+ "step": 601
+ },
+ {
+ "epoch": 8.362369337979095,
+ "grad_norm": 0.03664898872375488,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 2.432004451751709,
+ "step": 602
+ },
+ {
+ "epoch": 8.376306620209059,
+ "grad_norm": 0.031866125762462616,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 2.4305002689361572,
+ "step": 603
+ },
+ {
+ "epoch": 8.390243902439025,
+ "grad_norm": 0.03416220843791962,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 2.4407525062561035,
+ "step": 604
+ },
+ {
+ "epoch": 8.404181184668989,
+ "grad_norm": 0.03265870735049248,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 2.426929473876953,
+ "step": 605
+ },
+ {
+ "epoch": 8.418118466898955,
+ "grad_norm": 0.03337112441658974,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 2.443507671356201,
+ "step": 606
+ },
+ {
+ "epoch": 8.43205574912892,
+ "grad_norm": 0.0337977334856987,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 2.4583749771118164,
+ "step": 607
+ },
+ {
+ "epoch": 8.445993031358885,
+ "grad_norm": 0.02970845066010952,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 2.4297292232513428,
+ "step": 608
+ },
+ {
+ "epoch": 8.45993031358885,
+ "grad_norm": 0.03051869012415409,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 2.452547550201416,
+ "step": 609
+ },
+ {
+ "epoch": 8.473867595818815,
+ "grad_norm": 0.030234314501285553,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 2.427704334259033,
+ "step": 610
+ },
+ {
+ "epoch": 8.487804878048781,
+ "grad_norm": 0.0297533068805933,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 2.4193124771118164,
+ "step": 611
+ },
+ {
+ "epoch": 8.501742160278745,
+ "grad_norm": 0.030258657410740852,
+ "learning_rate": 0.000569302387925215,
+ "loss": 2.4159011840820312,
+ "step": 612
+ },
+ {
+ "epoch": 8.515679442508711,
+ "grad_norm": 0.029942622408270836,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 2.4217724800109863,
+ "step": 613
+ },
+ {
+ "epoch": 8.529616724738675,
+ "grad_norm": 0.030715234577655792,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 2.44870662689209,
+ "step": 614
+ },
+ {
+ "epoch": 8.543554006968641,
+ "grad_norm": 0.03252873569726944,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 2.417196750640869,
+ "step": 615
+ },
+ {
+ "epoch": 8.557491289198607,
+ "grad_norm": 0.03387020155787468,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 2.4181065559387207,
+ "step": 616
+ },
+ {
+ "epoch": 8.571428571428571,
+ "grad_norm": 0.035596199333667755,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 2.4240612983703613,
+ "step": 617
+ },
+ {
+ "epoch": 8.585365853658537,
+ "grad_norm": 0.03890643268823624,
+ "learning_rate": 0.000568590328960903,
+ "loss": 2.435359477996826,
+ "step": 618
+ },
+ {
+ "epoch": 8.599303135888501,
+ "grad_norm": 0.041447605937719345,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 2.4370574951171875,
+ "step": 619
+ },
+ {
+ "epoch": 8.613240418118467,
+ "grad_norm": 0.03584018349647522,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 2.4231667518615723,
+ "step": 620
+ },
+ {
+ "epoch": 8.627177700348431,
+ "grad_norm": 0.03309513255953789,
+ "learning_rate": 0.000568231409438027,
+ "loss": 2.4281513690948486,
+ "step": 621
+ },
+ {
+ "epoch": 8.641114982578397,
+ "grad_norm": 0.0365641750395298,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 2.4262235164642334,
+ "step": 622
+ },
+ {
+ "epoch": 8.655052264808361,
+ "grad_norm": 0.033776357769966125,
+ "learning_rate": 0.000567991061134677,
+ "loss": 2.4259705543518066,
+ "step": 623
+ },
+ {
+ "epoch": 8.668989547038327,
+ "grad_norm": 0.03251301124691963,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 2.4303622245788574,
+ "step": 624
+ },
+ {
+ "epoch": 8.682926829268293,
+ "grad_norm": 0.03311233967542648,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 2.4325923919677734,
+ "step": 625
+ },
+ {
+ "epoch": 8.696864111498257,
+ "grad_norm": 0.032762084156274796,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 2.423525333404541,
+ "step": 626
+ },
+ {
+ "epoch": 8.710801393728223,
+ "grad_norm": 0.03397396206855774,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 2.421725273132324,
+ "step": 627
+ },
+ {
+ "epoch": 8.724738675958188,
+ "grad_norm": 0.03827521204948425,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 2.417745590209961,
+ "step": 628
+ },
+ {
+ "epoch": 8.738675958188153,
+ "grad_norm": 0.03194425627589226,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 2.4408435821533203,
+ "step": 629
+ },
+ {
+ "epoch": 8.752613240418118,
+ "grad_norm": 0.02894434705376625,
+ "learning_rate": 0.000567143121979179,
+ "loss": 2.430302143096924,
+ "step": 630
+ },
+ {
+ "epoch": 8.766550522648084,
+ "grad_norm": 0.03130284696817398,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 2.4167380332946777,
+ "step": 631
+ },
+ {
+ "epoch": 8.78048780487805,
+ "grad_norm": 0.03176414966583252,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 2.4211833477020264,
+ "step": 632
+ },
+ {
+ "epoch": 8.794425087108014,
+ "grad_norm": 0.03023882955312729,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 2.4175009727478027,
+ "step": 633
+ },
+ {
+ "epoch": 8.80836236933798,
+ "grad_norm": 0.03027920238673687,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 2.4296345710754395,
+ "step": 634
+ },
+ {
+ "epoch": 8.822299651567944,
+ "grad_norm": 0.031661003828048706,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 2.4292376041412354,
+ "step": 635
+ },
+ {
+ "epoch": 8.83623693379791,
+ "grad_norm": 0.02943863719701767,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 2.422773599624634,
+ "step": 636
+ },
+ {
+ "epoch": 8.850174216027874,
+ "grad_norm": 0.02999107912182808,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 2.4288015365600586,
+ "step": 637
+ },
+ {
+ "epoch": 8.86411149825784,
+ "grad_norm": 0.03127457574009895,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 2.426997184753418,
+ "step": 638
+ },
+ {
+ "epoch": 8.878048780487806,
+ "grad_norm": 0.0321597196161747,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 2.418203353881836,
+ "step": 639
+ },
+ {
+ "epoch": 8.89198606271777,
+ "grad_norm": 0.032045748084783554,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 2.4220266342163086,
+ "step": 640
+ },
+ {
+ "epoch": 8.905923344947736,
+ "grad_norm": 0.031895119696855545,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 2.421767234802246,
+ "step": 641
+ },
+ {
+ "epoch": 8.9198606271777,
+ "grad_norm": 0.0330902598798275,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 2.418246269226074,
+ "step": 642
+ },
+ {
+ "epoch": 8.933797909407666,
+ "grad_norm": 0.03361523523926735,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 2.423337697982788,
+ "step": 643
+ },
+ {
+ "epoch": 8.94773519163763,
+ "grad_norm": 0.033133652061223984,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 2.4278783798217773,
+ "step": 644
+ },
+ {
+ "epoch": 8.961672473867596,
+ "grad_norm": 0.03747311979532242,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 2.434087038040161,
+ "step": 645
+ },
+ {
+ "epoch": 8.975609756097562,
+ "grad_norm": 0.036127083003520966,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 2.4167022705078125,
+ "step": 646
+ },
+ {
+ "epoch": 8.989547038327526,
+ "grad_norm": 0.03699145093560219,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 2.4243075847625732,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.028921982273459435,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 1.8086339235305786,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 0.6271453499794006,
+ "eval_runtime": 35.9474,
+ "eval_samples_per_second": 67.933,
+ "eval_steps_per_second": 0.556,
+ "step": 648
+ },
+ {
+ "epoch": 9.013937282229966,
+ "grad_norm": 0.0380239300429821,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 2.377704381942749,
+ "step": 649
+ },
+ {
+ "epoch": 9.02787456445993,
+ "grad_norm": 0.05574064329266548,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 2.399777889251709,
+ "step": 650
+ },
+ {
+ "epoch": 9.041811846689896,
+ "grad_norm": 0.06179674342274666,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 2.3851845264434814,
+ "step": 651
+ },
+ {
+ "epoch": 9.05574912891986,
+ "grad_norm": 0.06461436301469803,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 2.385363817214966,
+ "step": 652
+ },
+ {
+ "epoch": 9.069686411149826,
+ "grad_norm": 0.058009687811136246,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 2.3721890449523926,
+ "step": 653
+ },
+ {
+ "epoch": 9.08362369337979,
+ "grad_norm": 0.06488639861345291,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 2.386878490447998,
+ "step": 654
+ },
+ {
+ "epoch": 9.097560975609756,
+ "grad_norm": 0.05683685839176178,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 2.3946213722229004,
+ "step": 655
+ },
+ {
+ "epoch": 9.111498257839722,
+ "grad_norm": 0.05336347594857216,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 2.3708930015563965,
+ "step": 656
+ },
+ {
+ "epoch": 9.125435540069686,
+ "grad_norm": 0.05320737510919571,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 2.39091157913208,
+ "step": 657
+ },
+ {
+ "epoch": 9.139372822299652,
+ "grad_norm": 0.05641087517142296,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 2.381009578704834,
+ "step": 658
+ },
+ {
+ "epoch": 9.153310104529616,
+ "grad_norm": 0.06087775528430939,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 2.377963066101074,
+ "step": 659
+ },
+ {
+ "epoch": 9.167247386759582,
+ "grad_norm": 0.06592115014791489,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 2.392094135284424,
+ "step": 660
+ },
+ {
+ "epoch": 9.181184668989546,
+ "grad_norm": 0.061441708356142044,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 2.388850212097168,
+ "step": 661
+ },
+ {
+ "epoch": 9.195121951219512,
+ "grad_norm": 0.06311637908220291,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 2.38919734954834,
+ "step": 662
+ },
+ {
+ "epoch": 9.209059233449477,
+ "grad_norm": 0.07152658700942993,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 2.3724892139434814,
+ "step": 663
+ },
+ {
+ "epoch": 9.222996515679442,
+ "grad_norm": 0.06927355378866196,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 2.4017786979675293,
+ "step": 664
+ },
+ {
+ "epoch": 9.236933797909408,
+ "grad_norm": 0.062740758061409,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 2.376430034637451,
+ "step": 665
+ },
+ {
+ "epoch": 9.250871080139373,
+ "grad_norm": 0.051289040595293045,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 2.3926010131835938,
+ "step": 666
+ },
+ {
+ "epoch": 9.264808362369338,
+ "grad_norm": 0.055630262941122055,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 2.3605382442474365,
+ "step": 667
+ },
+ {
+ "epoch": 9.278745644599303,
+ "grad_norm": 0.052814628928899765,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 2.374608039855957,
+ "step": 668
+ },
+ {
+ "epoch": 9.292682926829269,
+ "grad_norm": 0.05927073210477829,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 2.384093999862671,
+ "step": 669
+ },
+ {
+ "epoch": 9.306620209059233,
+ "grad_norm": 0.05510697513818741,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 2.374708652496338,
+ "step": 670
+ },
+ {
+ "epoch": 9.320557491289199,
+ "grad_norm": 0.048580385744571686,
+ "learning_rate": 0.000561968326197397,
+ "loss": 2.3861031532287598,
+ "step": 671
+ },
+ {
+ "epoch": 9.334494773519165,
+ "grad_norm": 0.04905429109930992,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 2.3835110664367676,
+ "step": 672
+ },
+ {
+ "epoch": 9.348432055749129,
+ "grad_norm": 0.04621037095785141,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 2.379696846008301,
+ "step": 673
+ },
+ {
+ "epoch": 9.362369337979095,
+ "grad_norm": 0.0437726229429245,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 2.3854074478149414,
+ "step": 674
+ },
+ {
+ "epoch": 9.376306620209059,
+ "grad_norm": 0.040361031889915466,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 2.39682936668396,
+ "step": 675
+ },
+ {
+ "epoch": 9.390243902439025,
+ "grad_norm": 0.03848707675933838,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 2.3752408027648926,
+ "step": 676
+ },
+ {
+ "epoch": 9.404181184668989,
+ "grad_norm": 0.04017478972673416,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 2.3912038803100586,
+ "step": 677
+ },
+ {
+ "epoch": 9.418118466898955,
+ "grad_norm": 0.03487734496593475,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 2.389535427093506,
+ "step": 678
+ },
+ {
+ "epoch": 9.43205574912892,
+ "grad_norm": 0.03736500069499016,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 2.3840279579162598,
+ "step": 679
+ },
+ {
+ "epoch": 9.445993031358885,
+ "grad_norm": 0.03499516844749451,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 2.3752779960632324,
+ "step": 680
+ },
+ {
+ "epoch": 9.45993031358885,
+ "grad_norm": 0.03297547250986099,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 2.3991637229919434,
+ "step": 681
+ },
+ {
+ "epoch": 9.473867595818815,
+ "grad_norm": 0.03387392312288284,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 2.3872644901275635,
+ "step": 682
+ },
+ {
+ "epoch": 9.487804878048781,
+ "grad_norm": 0.03756970539689064,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 2.368522882461548,
+ "step": 683
+ },
+ {
+ "epoch": 9.501742160278745,
+ "grad_norm": 0.03686998412013054,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 2.381460189819336,
+ "step": 684
+ },
+ {
+ "epoch": 9.515679442508711,
+ "grad_norm": 0.03336082771420479,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 2.3871984481811523,
+ "step": 685
+ },
+ {
+ "epoch": 9.529616724738675,
+ "grad_norm": 0.03545147553086281,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 2.3921163082122803,
+ "step": 686
+ },
+ {
+ "epoch": 9.543554006968641,
+ "grad_norm": 0.03614704683423042,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 2.388418197631836,
+ "step": 687
+ },
+ {
+ "epoch": 9.557491289198607,
+ "grad_norm": 0.0350213497877121,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 2.399055004119873,
+ "step": 688
+ },
+ {
+ "epoch": 9.571428571428571,
+ "grad_norm": 0.035602837800979614,
+ "learning_rate": 0.000559585254906272,
+ "loss": 2.3897178173065186,
+ "step": 689
+ },
+ {
+ "epoch": 9.585365853658537,
+ "grad_norm": 0.03438388183712959,
+ "learning_rate": 0.000559450892376025,
+ "loss": 2.407155990600586,
+ "step": 690
+ },
+ {
+ "epoch": 9.599303135888501,
+ "grad_norm": 0.035386405885219574,
+ "learning_rate": 0.000559316323227926,
+ "loss": 2.390408992767334,
+ "step": 691
+ },
+ {
+ "epoch": 9.613240418118467,
+ "grad_norm": 0.03753617778420448,
+ "learning_rate": 0.000559181547570395,
+ "loss": 2.3751039505004883,
+ "step": 692
+ },
+ {
+ "epoch": 9.627177700348431,
+ "grad_norm": 0.03430183231830597,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 2.3941941261291504,
+ "step": 693
+ },
+ {
+ "epoch": 9.641114982578397,
+ "grad_norm": 0.03268825262784958,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 2.3772215843200684,
+ "step": 694
+ },
+ {
+ "epoch": 9.655052264808361,
+ "grad_norm": 0.0341268889605999,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 2.3830480575561523,
+ "step": 695
+ },
+ {
+ "epoch": 9.668989547038327,
+ "grad_norm": 0.03466663882136345,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 2.3796463012695312,
+ "step": 696
+ },
+ {
+ "epoch": 9.682926829268293,
+ "grad_norm": 0.03470399230718613,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 2.385427713394165,
+ "step": 697
+ },
+ {
+ "epoch": 9.696864111498257,
+ "grad_norm": 0.0382751040160656,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 2.3877949714660645,
+ "step": 698
+ },
+ {
+ "epoch": 9.710801393728223,
+ "grad_norm": 0.035988591611385345,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 2.378014326095581,
+ "step": 699
+ },
+ {
+ "epoch": 9.724738675958188,
+ "grad_norm": 0.03295210376381874,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 2.382502555847168,
+ "step": 700
+ },
+ {
+ "epoch": 9.738675958188153,
+ "grad_norm": 0.030723385512828827,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 2.388451099395752,
+ "step": 701
+ },
+ {
+ "epoch": 9.752613240418118,
+ "grad_norm": 0.03281056135892868,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 2.387669086456299,
+ "step": 702
+ },
+ {
+ "epoch": 9.766550522648084,
+ "grad_norm": 0.03443330153822899,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 2.381460189819336,
+ "step": 703
+ },
+ {
+ "epoch": 9.78048780487805,
+ "grad_norm": 0.03670412674546242,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 2.3756155967712402,
+ "step": 704
+ },
+ {
+ "epoch": 9.794425087108014,
+ "grad_norm": 0.03445884957909584,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 2.371798515319824,
+ "step": 705
+ },
+ {
+ "epoch": 9.80836236933798,
+ "grad_norm": 0.03341168165206909,
+ "learning_rate": 0.000557273065985207,
+ "loss": 2.366093635559082,
+ "step": 706
+ },
+ {
+ "epoch": 9.822299651567944,
+ "grad_norm": 0.035434722900390625,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 2.3876760005950928,
+ "step": 707
+ },
+ {
+ "epoch": 9.83623693379791,
+ "grad_norm": 0.036071036010980606,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 2.363477945327759,
+ "step": 708
+ },
+ {
+ "epoch": 9.850174216027874,
+ "grad_norm": 0.03642858937382698,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 2.3772635459899902,
+ "step": 709
+ },
+ {
+ "epoch": 9.86411149825784,
+ "grad_norm": 0.03974858298897743,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 2.3893399238586426,
+ "step": 710
+ },
+ {
+ "epoch": 9.878048780487806,
+ "grad_norm": 0.040428902953863144,
+ "learning_rate": 0.000556581718698499,
+ "loss": 2.385814666748047,
+ "step": 711
+ },
+ {
+ "epoch": 9.89198606271777,
+ "grad_norm": 0.03710169717669487,
+ "learning_rate": 0.000556442835876097,
+ "loss": 2.3817856311798096,
+ "step": 712
+ },
+ {
+ "epoch": 9.905923344947736,
+ "grad_norm": 0.031853094696998596,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 2.3833706378936768,
+ "step": 713
+ },
+ {
+ "epoch": 9.9198606271777,
+ "grad_norm": 0.03192576766014099,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 2.380492687225342,
+ "step": 714
+ },
+ {
+ "epoch": 9.933797909407666,
+ "grad_norm": 0.03222471475601196,
+ "learning_rate": 0.000556024962691404,
+ "loss": 2.368129014968872,
+ "step": 715
+ },
+ {
+ "epoch": 9.94773519163763,
+ "grad_norm": 0.033947065472602844,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 2.392598867416382,
+ "step": 716
+ },
+ {
+ "epoch": 9.961672473867596,
+ "grad_norm": 0.030860550701618195,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 2.392878532409668,
+ "step": 717
+ },
+ {
+ "epoch": 9.975609756097562,
+ "grad_norm": 0.03237077221274376,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 2.3881583213806152,
+ "step": 718
+ },
+ {
+ "epoch": 9.989547038327526,
+ "grad_norm": 0.03429335355758667,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 2.385345458984375,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.025040561333298683,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 1.7694379091262817,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 0.6226440668106079,
+ "eval_runtime": 35.9996,
+ "eval_samples_per_second": 67.834,
+ "eval_steps_per_second": 0.556,
+ "step": 720
+ },
+ {
+ "epoch": 10.013937282229966,
+ "grad_norm": 0.04380113258957863,
+ "learning_rate": 0.0005551837152119915,
+ "loss": 2.338531494140625,
+ "step": 721
+ },
+ {
+ "epoch": 10.02787456445993,
+ "grad_norm": 0.06502492725849152,
+ "learning_rate": 0.0005550427955088455,
+ "loss": 2.336862087249756,
+ "step": 722
+ },
+ {
+ "epoch": 10.041811846689896,
+ "grad_norm": 0.06072859466075897,
+ "learning_rate": 0.0005549016727393715,
+ "loss": 2.345121383666992,
+ "step": 723
+ },
+ {
+ "epoch": 10.05574912891986,
+ "grad_norm": 0.06489435583353043,
+ "learning_rate": 0.0005547603470172697,
+ "loss": 2.3135323524475098,
+ "step": 724
+ },
+ {
+ "epoch": 10.069686411149826,
+ "grad_norm": 0.07557415962219238,
+ "learning_rate": 0.0005546188184564036,
+ "loss": 2.346886157989502,
+ "step": 725
+ },
+ {
+ "epoch": 10.08362369337979,
+ "grad_norm": 0.07416220009326935,
+ "learning_rate": 0.0005544770871708004,
+ "loss": 2.347463607788086,
+ "step": 726
+ },
+ {
+ "epoch": 10.097560975609756,
+ "grad_norm": 0.07228727638721466,
+ "learning_rate": 0.0005543351532746501,
+ "loss": 2.351980209350586,
+ "step": 727
+ },
+ {
+ "epoch": 10.111498257839722,
+ "grad_norm": 0.07207637280225754,
+ "learning_rate": 0.0005541930168823067,
+ "loss": 2.3345837593078613,
+ "step": 728
+ },
+ {
+ "epoch": 10.125435540069686,
+ "grad_norm": 0.07364149391651154,
+ "learning_rate": 0.0005540506781082864,
+ "loss": 2.3545069694519043,
+ "step": 729
+ },
+ {
+ "epoch": 10.139372822299652,
+ "grad_norm": 0.06596208363771439,
+ "learning_rate": 0.0005539081370672695,
+ "loss": 2.3250179290771484,
+ "step": 730
+ },
+ {
+ "epoch": 10.153310104529616,
+ "grad_norm": 0.07143490016460419,
+ "learning_rate": 0.0005537653938740984,
+ "loss": 2.352842330932617,
+ "step": 731
+ },
+ {
+ "epoch": 10.167247386759582,
+ "grad_norm": 0.06986920535564423,
+ "learning_rate": 0.0005536224486437788,
+ "loss": 2.3406600952148438,
+ "step": 732
+ },
+ {
+ "epoch": 10.181184668989546,
+ "grad_norm": 0.06723238527774811,
+ "learning_rate": 0.0005534793014914793,
+ "loss": 2.36100435256958,
+ "step": 733
+ },
+ {
+ "epoch": 10.195121951219512,
+ "grad_norm": 0.07599805295467377,
+ "learning_rate": 0.0005533359525325307,
+ "loss": 2.364171028137207,
+ "step": 734
+ },
+ {
+ "epoch": 10.209059233449477,
+ "grad_norm": 0.06879840791225433,
+ "learning_rate": 0.0005531924018824266,
+ "loss": 2.3600802421569824,
+ "step": 735
+ },
+ {
+ "epoch": 10.222996515679442,
+ "grad_norm": 0.06736139208078384,
+ "learning_rate": 0.0005530486496568236,
+ "loss": 2.3630075454711914,
+ "step": 736
+ },
+ {
+ "epoch": 10.236933797909408,
+ "grad_norm": 0.073630690574646,
+ "learning_rate": 0.0005529046959715397,
+ "loss": 2.3535385131835938,
+ "step": 737
+ },
+ {
+ "epoch": 10.250871080139373,
+ "grad_norm": 0.081154465675354,
+ "learning_rate": 0.0005527605409425562,
+ "loss": 2.355775833129883,
+ "step": 738
+ },
+ {
+ "epoch": 10.264808362369338,
+ "grad_norm": 0.07517901808023453,
+ "learning_rate": 0.0005526161846860161,
+ "loss": 2.3474936485290527,
+ "step": 739
+ },
+ {
+ "epoch": 10.278745644599303,
+ "grad_norm": 0.06589196622371674,
+ "learning_rate": 0.0005524716273182245,
+ "loss": 2.356273651123047,
+ "step": 740
+ },
+ {
+ "epoch": 10.292682926829269,
+ "grad_norm": 0.07035321742296219,
+ "learning_rate": 0.0005523268689556489,
+ "loss": 2.3348515033721924,
+ "step": 741
+ },
+ {
+ "epoch": 10.306620209059233,
+ "grad_norm": 0.05464137718081474,
+ "learning_rate": 0.0005521819097149183,
+ "loss": 2.340257167816162,
+ "step": 742
+ },
+ {
+ "epoch": 10.320557491289199,
+ "grad_norm": 0.05040175840258598,
+ "learning_rate": 0.0005520367497128238,
+ "loss": 2.356626033782959,
+ "step": 743
+ },
+ {
+ "epoch": 10.334494773519165,
+ "grad_norm": 0.04544971138238907,
+ "learning_rate": 0.0005518913890663182,
+ "loss": 2.3765573501586914,
+ "step": 744
+ },
+ {
+ "epoch": 10.348432055749129,
+ "grad_norm": 0.04246767982840538,
+ "learning_rate": 0.0005517458278925161,
+ "loss": 2.3584630489349365,
+ "step": 745
+ },
+ {
+ "epoch": 10.362369337979095,
+ "grad_norm": 0.0407957099378109,
+ "learning_rate": 0.0005516000663086932,
+ "loss": 2.3562331199645996,
+ "step": 746
+ },
+ {
+ "epoch": 10.376306620209059,
+ "grad_norm": 0.04157666489481926,
+ "learning_rate": 0.0005514541044322872,
+ "loss": 2.355463743209839,
+ "step": 747
+ },
+ {
+ "epoch": 10.390243902439025,
+ "grad_norm": 0.03842373192310333,
+ "learning_rate": 0.0005513079423808967,
+ "loss": 2.3644120693206787,
+ "step": 748
+ },
+ {
+ "epoch": 10.404181184668989,
+ "grad_norm": 0.03891562297940254,
+ "learning_rate": 0.0005511615802722823,
+ "loss": 2.3579063415527344,
+ "step": 749
+ },
+ {
+ "epoch": 10.418118466898955,
+ "grad_norm": 0.03712530806660652,
+ "learning_rate": 0.0005510150182243647,
+ "loss": 2.3606715202331543,
+ "step": 750
+ },
+ {
+ "epoch": 10.43205574912892,
+ "grad_norm": 0.03664202243089676,
+ "learning_rate": 0.0005508682563552269,
+ "loss": 2.3363728523254395,
+ "step": 751
+ },
+ {
+ "epoch": 10.445993031358885,
+ "grad_norm": 0.03555043414235115,
+ "learning_rate": 0.0005507212947831119,
+ "loss": 2.357100009918213,
+ "step": 752
+ },
+ {
+ "epoch": 10.45993031358885,
+ "grad_norm": 0.0355045385658741,
+ "learning_rate": 0.0005505741336264239,
+ "loss": 2.348784923553467,
+ "step": 753
+ },
+ {
+ "epoch": 10.473867595818815,
+ "grad_norm": 0.036513347178697586,
+ "learning_rate": 0.0005504267730037283,
+ "loss": 2.3371458053588867,
+ "step": 754
+ },
+ {
+ "epoch": 10.487804878048781,
+ "grad_norm": 0.034735117107629776,
+ "learning_rate": 0.0005502792130337508,
+ "loss": 2.3379664421081543,
+ "step": 755
+ },
+ {
+ "epoch": 10.501742160278745,
+ "grad_norm": 0.032890401780605316,
+ "learning_rate": 0.0005501314538353776,
+ "loss": 2.345534563064575,
+ "step": 756
+ },
+ {
+ "epoch": 10.515679442508711,
+ "grad_norm": 0.0343078076839447,
+ "learning_rate": 0.000549983495527656,
+ "loss": 2.3425400257110596,
+ "step": 757
+ },
+ {
+ "epoch": 10.529616724738675,
+ "grad_norm": 0.036330267786979675,
+ "learning_rate": 0.000549835338229793,
+ "loss": 2.353668689727783,
+ "step": 758
+ },
+ {
+ "epoch": 10.543554006968641,
+ "grad_norm": 0.03595716878771782,
+ "learning_rate": 0.0005496869820611563,
+ "loss": 2.340348958969116,
+ "step": 759
+ },
+ {
+ "epoch": 10.557491289198607,
+ "grad_norm": 0.03567204624414444,
+ "learning_rate": 0.0005495384271412739,
+ "loss": 2.3443446159362793,
+ "step": 760
+ },
+ {
+ "epoch": 10.571428571428571,
+ "grad_norm": 0.03243366256356239,
+ "learning_rate": 0.0005493896735898338,
+ "loss": 2.328749179840088,
+ "step": 761
+ },
+ {
+ "epoch": 10.585365853658537,
+ "grad_norm": 0.033156730234622955,
+ "learning_rate": 0.000549240721526684,
+ "loss": 2.3553342819213867,
+ "step": 762
+ },
+ {
+ "epoch": 10.599303135888501,
+ "grad_norm": 0.03489018976688385,
+ "learning_rate": 0.0005490915710718325,
+ "loss": 2.329984664916992,
+ "step": 763
+ },
+ {
+ "epoch": 10.613240418118467,
+ "grad_norm": 0.0352267362177372,
+ "learning_rate": 0.0005489422223454471,
+ "loss": 2.34751033782959,
+ "step": 764
+ },
+ {
+ "epoch": 10.627177700348431,
+ "grad_norm": 0.03212668001651764,
+ "learning_rate": 0.0005487926754678556,
+ "loss": 2.341987133026123,
+ "step": 765
+ },
+ {
+ "epoch": 10.641114982578397,
+ "grad_norm": 0.03473065048456192,
+ "learning_rate": 0.0005486429305595448,
+ "loss": 2.343632221221924,
+ "step": 766
+ },
+ {
+ "epoch": 10.655052264808361,
+ "grad_norm": 0.03458387404680252,
+ "learning_rate": 0.0005484929877411618,
+ "loss": 2.3420281410217285,
+ "step": 767
+ },
+ {
+ "epoch": 10.668989547038327,
+ "grad_norm": 0.03573968634009361,
+ "learning_rate": 0.0005483428471335127,
+ "loss": 2.349421501159668,
+ "step": 768
+ },
+ {
+ "epoch": 10.682926829268293,
+ "grad_norm": 0.034877803176641464,
+ "learning_rate": 0.000548192508857563,
+ "loss": 2.354094982147217,
+ "step": 769
+ },
+ {
+ "epoch": 10.696864111498257,
+ "grad_norm": 0.03350481390953064,
+ "learning_rate": 0.0005480419730344377,
+ "loss": 2.334352493286133,
+ "step": 770
+ },
+ {
+ "epoch": 10.710801393728223,
+ "grad_norm": 0.03327416628599167,
+ "learning_rate": 0.0005478912397854208,
+ "loss": 2.3445448875427246,
+ "step": 771
+ },
+ {
+ "epoch": 10.724738675958188,
+ "grad_norm": 0.03491336479783058,
+ "learning_rate": 0.0005477403092319552,
+ "loss": 2.3525538444519043,
+ "step": 772
+ },
+ {
+ "epoch": 10.738675958188153,
+ "grad_norm": 0.035869523882865906,
+ "learning_rate": 0.0005475891814956429,
+ "loss": 2.3440966606140137,
+ "step": 773
+ },
+ {
+ "epoch": 10.752613240418118,
+ "grad_norm": 0.036187391728162766,
+ "learning_rate": 0.0005474378566982449,
+ "loss": 2.33382511138916,
+ "step": 774
+ },
+ {
+ "epoch": 10.766550522648084,
+ "grad_norm": 0.037324003875255585,
+ "learning_rate": 0.0005472863349616809,
+ "loss": 2.3463244438171387,
+ "step": 775
+ },
+ {
+ "epoch": 10.78048780487805,
+ "grad_norm": 0.035808268934488297,
+ "learning_rate": 0.0005471346164080292,
+ "loss": 2.3392248153686523,
+ "step": 776
+ },
+ {
+ "epoch": 10.794425087108014,
+ "grad_norm": 0.03382394090294838,
+ "learning_rate": 0.0005469827011595266,
+ "loss": 2.3399806022644043,
+ "step": 777
+ },
+ {
+ "epoch": 10.80836236933798,
+ "grad_norm": 0.03256148472428322,
+ "learning_rate": 0.0005468305893385686,
+ "loss": 2.336940050125122,
+ "step": 778
+ },
+ {
+ "epoch": 10.822299651567944,
+ "grad_norm": 0.032796118408441544,
+ "learning_rate": 0.0005466782810677088,
+ "loss": 2.3503036499023438,
+ "step": 779
+ },
+ {
+ "epoch": 10.83623693379791,
+ "grad_norm": 0.03359639272093773,
+ "learning_rate": 0.0005465257764696593,
+ "loss": 2.340160608291626,
+ "step": 780
+ },
+ {
+ "epoch": 10.850174216027874,
+ "grad_norm": 0.03725067153573036,
+ "learning_rate": 0.0005463730756672903,
+ "loss": 2.3448994159698486,
+ "step": 781
+ },
+ {
+ "epoch": 10.86411149825784,
+ "grad_norm": 0.03396180644631386,
+ "learning_rate": 0.0005462201787836301,
+ "loss": 2.337078094482422,
+ "step": 782
+ },
+ {
+ "epoch": 10.878048780487806,
+ "grad_norm": 0.034375693649053574,
+ "learning_rate": 0.0005460670859418651,
+ "loss": 2.3564600944519043,
+ "step": 783
+ },
+ {
+ "epoch": 10.89198606271777,
+ "grad_norm": 0.034513067454099655,
+ "learning_rate": 0.000545913797265339,
+ "loss": 2.3631274700164795,
+ "step": 784
+ },
+ {
+ "epoch": 10.905923344947736,
+ "grad_norm": 0.03305843099951744,
+ "learning_rate": 0.0005457603128775541,
+ "loss": 2.345407485961914,
+ "step": 785
+ },
+ {
+ "epoch": 10.9198606271777,
+ "grad_norm": 0.03236348554491997,
+ "learning_rate": 0.0005456066329021699,
+ "loss": 2.340275526046753,
+ "step": 786
+ },
+ {
+ "epoch": 10.933797909407666,
+ "grad_norm": 0.03411583974957466,
+ "learning_rate": 0.0005454527574630037,
+ "loss": 2.341548442840576,
+ "step": 787
+ },
+ {
+ "epoch": 10.94773519163763,
+ "grad_norm": 0.03641803562641144,
+ "learning_rate": 0.0005452986866840298,
+ "loss": 2.3475522994995117,
+ "step": 788
+ },
+ {
+ "epoch": 10.961672473867596,
+ "grad_norm": 0.03492163494229317,
+ "learning_rate": 0.0005451444206893806,
+ "loss": 2.3415870666503906,
+ "step": 789
+ },
+ {
+ "epoch": 10.975609756097562,
+ "grad_norm": 0.03789013251662254,
+ "learning_rate": 0.0005449899596033453,
+ "loss": 2.3574557304382324,
+ "step": 790
+ },
+ {
+ "epoch": 10.989547038327526,
+ "grad_norm": 0.034537237137556076,
+ "learning_rate": 0.0005448353035503704,
+ "loss": 2.350353717803955,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.026393387466669083,
+ "learning_rate": 0.0005446804526550596,
+ "loss": 1.7534164190292358,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 0.6207266449928284,
+ "eval_runtime": 36.6286,
+ "eval_samples_per_second": 66.669,
+ "eval_steps_per_second": 0.546,
+ "step": 792
+ },
+ {
+ "epoch": 11.013937282229966,
+ "grad_norm": 0.04500797390937805,
+ "learning_rate": 0.0005445254070421732,
+ "loss": 2.29563570022583,
+ "step": 793
+ },
+ {
+ "epoch": 11.02787456445993,
+ "grad_norm": 0.058218058198690414,
+ "learning_rate": 0.0005443701668366288,
+ "loss": 2.285862445831299,
+ "step": 794
+ },
+ {
+ "epoch": 11.041811846689896,
+ "grad_norm": 0.06746228039264679,
+ "learning_rate": 0.0005442147321635007,
+ "loss": 2.2930586338043213,
+ "step": 795
+ },
+ {
+ "epoch": 11.05574912891986,
+ "grad_norm": 0.07853464037179947,
+ "learning_rate": 0.00054405910314802,
+ "loss": 2.2999796867370605,
+ "step": 796
+ },
+ {
+ "epoch": 11.069686411149826,
+ "grad_norm": 0.0743563324213028,
+ "learning_rate": 0.0005439032799155737,
+ "loss": 2.3127989768981934,
+ "step": 797
+ },
+ {
+ "epoch": 11.08362369337979,
+ "grad_norm": 0.06950018554925919,
+ "learning_rate": 0.000543747262591706,
+ "loss": 2.302677631378174,
+ "step": 798
+ },
+ {
+ "epoch": 11.097560975609756,
+ "grad_norm": 0.0668293684720993,
+ "learning_rate": 0.0005435910513021172,
+ "loss": 2.3067705631256104,
+ "step": 799
+ },
+ {
+ "epoch": 11.111498257839722,
+ "grad_norm": 0.05805148929357529,
+ "learning_rate": 0.0005434346461726641,
+ "loss": 2.2972123622894287,
+ "step": 800
+ },
+ {
+ "epoch": 11.125435540069686,
+ "grad_norm": 0.059285592287778854,
+ "learning_rate": 0.0005432780473293593,
+ "loss": 2.302372932434082,
+ "step": 801
+ },
+ {
+ "epoch": 11.139372822299652,
+ "grad_norm": 0.054501719772815704,
+ "learning_rate": 0.0005431212548983718,
+ "loss": 2.305246353149414,
+ "step": 802
+ },
+ {
+ "epoch": 11.153310104529616,
+ "grad_norm": 0.05490308254957199,
+ "learning_rate": 0.0005429642690060262,
+ "loss": 2.300204277038574,
+ "step": 803
+ },
+ {
+ "epoch": 11.167247386759582,
+ "grad_norm": 0.05564664676785469,
+ "learning_rate": 0.0005428070897788034,
+ "loss": 2.295349597930908,
+ "step": 804
+ },
+ {
+ "epoch": 11.181184668989546,
+ "grad_norm": 0.04841756820678711,
+ "learning_rate": 0.0005426497173433398,
+ "loss": 2.3083786964416504,
+ "step": 805
+ },
+ {
+ "epoch": 11.195121951219512,
+ "grad_norm": 0.05090150982141495,
+ "learning_rate": 0.0005424921518264275,
+ "loss": 2.2890477180480957,
+ "step": 806
+ },
+ {
+ "epoch": 11.209059233449477,
+ "grad_norm": 0.049588896334171295,
+ "learning_rate": 0.0005423343933550143,
+ "loss": 2.3092164993286133,
+ "step": 807
+ },
+ {
+ "epoch": 11.222996515679442,
+ "grad_norm": 0.059266265481710434,
+ "learning_rate": 0.0005421764420562032,
+ "loss": 2.3087329864501953,
+ "step": 808
+ },
+ {
+ "epoch": 11.236933797909408,
+ "grad_norm": 0.061635106801986694,
+ "learning_rate": 0.0005420182980572527,
+ "loss": 2.310224771499634,
+ "step": 809
+ },
+ {
+ "epoch": 11.250871080139373,
+ "grad_norm": 0.058707281947135925,
+ "learning_rate": 0.0005418599614855768,
+ "loss": 2.3094818592071533,
+ "step": 810
+ },
+ {
+ "epoch": 11.264808362369338,
+ "grad_norm": 0.05711625888943672,
+ "learning_rate": 0.0005417014324687442,
+ "loss": 2.320720672607422,
+ "step": 811
+ },
+ {
+ "epoch": 11.278745644599303,
+ "grad_norm": 0.04941999912261963,
+ "learning_rate": 0.000541542711134479,
+ "loss": 2.3037776947021484,
+ "step": 812
+ },
+ {
+ "epoch": 11.292682926829269,
+ "grad_norm": 0.0481753945350647,
+ "learning_rate": 0.0005413837976106599,
+ "loss": 2.307615280151367,
+ "step": 813
+ },
+ {
+ "epoch": 11.306620209059233,
+ "grad_norm": 0.05005398392677307,
+ "learning_rate": 0.0005412246920253208,
+ "loss": 2.302461624145508,
+ "step": 814
+ },
+ {
+ "epoch": 11.320557491289199,
+ "grad_norm": 0.051312051713466644,
+ "learning_rate": 0.0005410653945066503,
+ "loss": 2.3107659816741943,
+ "step": 815
+ },
+ {
+ "epoch": 11.334494773519165,
+ "grad_norm": 0.047787491232156754,
+ "learning_rate": 0.0005409059051829914,
+ "loss": 2.303896903991699,
+ "step": 816
+ },
+ {
+ "epoch": 11.348432055749129,
+ "grad_norm": 0.044105708599090576,
+ "learning_rate": 0.0005407462241828417,
+ "loss": 2.3028616905212402,
+ "step": 817
+ },
+ {
+ "epoch": 11.362369337979095,
+ "grad_norm": 0.04771425202488899,
+ "learning_rate": 0.0005405863516348535,
+ "loss": 2.3242416381835938,
+ "step": 818
+ },
+ {
+ "epoch": 11.376306620209059,
+ "grad_norm": 0.049508776515722275,
+ "learning_rate": 0.000540426287667833,
+ "loss": 2.317350387573242,
+ "step": 819
+ },
+ {
+ "epoch": 11.390243902439025,
+ "grad_norm": 0.04476630315184593,
+ "learning_rate": 0.000540266032410741,
+ "loss": 2.3019609451293945,
+ "step": 820
+ },
+ {
+ "epoch": 11.404181184668989,
+ "grad_norm": 0.044484466314315796,
+ "learning_rate": 0.0005401055859926923,
+ "loss": 2.3157167434692383,
+ "step": 821
+ },
+ {
+ "epoch": 11.418118466898955,
+ "grad_norm": 0.04700213670730591,
+ "learning_rate": 0.0005399449485429555,
+ "loss": 2.31441330909729,
+ "step": 822
+ },
+ {
+ "epoch": 11.43205574912892,
+ "grad_norm": 0.04357650876045227,
+ "learning_rate": 0.0005397841201909535,
+ "loss": 2.309573173522949,
+ "step": 823
+ },
+ {
+ "epoch": 11.445993031358885,
+ "grad_norm": 0.04270123690366745,
+ "learning_rate": 0.0005396231010662627,
+ "loss": 2.2956438064575195,
+ "step": 824
+ },
+ {
+ "epoch": 11.45993031358885,
+ "grad_norm": 0.04122788831591606,
+ "learning_rate": 0.0005394618912986132,
+ "loss": 2.3093338012695312,
+ "step": 825
+ },
+ {
+ "epoch": 11.473867595818815,
+ "grad_norm": 0.040944404900074005,
+ "learning_rate": 0.0005393004910178889,
+ "loss": 2.3245465755462646,
+ "step": 826
+ },
+ {
+ "epoch": 11.487804878048781,
+ "grad_norm": 0.04059522598981857,
+ "learning_rate": 0.0005391389003541271,
+ "loss": 2.307492733001709,
+ "step": 827
+ },
+ {
+ "epoch": 11.501742160278745,
+ "grad_norm": 0.04292140156030655,
+ "learning_rate": 0.0005389771194375185,
+ "loss": 2.32723069190979,
+ "step": 828
+ },
+ {
+ "epoch": 11.515679442508711,
+ "grad_norm": 0.041085343807935715,
+ "learning_rate": 0.0005388151483984071,
+ "loss": 2.3025991916656494,
+ "step": 829
+ },
+ {
+ "epoch": 11.529616724738675,
+ "grad_norm": 0.040302127599716187,
+ "learning_rate": 0.0005386529873672898,
+ "loss": 2.306711196899414,
+ "step": 830
+ },
+ {
+ "epoch": 11.543554006968641,
+ "grad_norm": 0.04179452359676361,
+ "learning_rate": 0.0005384906364748172,
+ "loss": 2.299077033996582,
+ "step": 831
+ },
+ {
+ "epoch": 11.557491289198607,
+ "grad_norm": 0.04052369296550751,
+ "learning_rate": 0.000538328095851792,
+ "loss": 2.3212227821350098,
+ "step": 832
+ },
+ {
+ "epoch": 11.571428571428571,
+ "grad_norm": 0.03855585679411888,
+ "learning_rate": 0.0005381653656291707,
+ "loss": 2.2905197143554688,
+ "step": 833
+ },
+ {
+ "epoch": 11.585365853658537,
+ "grad_norm": 0.04159102961421013,
+ "learning_rate": 0.0005380024459380619,
+ "loss": 2.2973320484161377,
+ "step": 834
+ },
+ {
+ "epoch": 11.599303135888501,
+ "grad_norm": 0.044633787125349045,
+ "learning_rate": 0.000537839336909727,
+ "loss": 2.3214757442474365,
+ "step": 835
+ },
+ {
+ "epoch": 11.613240418118467,
+ "grad_norm": 0.03999071940779686,
+ "learning_rate": 0.00053767603867558,
+ "loss": 2.332554817199707,
+ "step": 836
+ },
+ {
+ "epoch": 11.627177700348431,
+ "grad_norm": 0.03866419568657875,
+ "learning_rate": 0.0005375125513671874,
+ "loss": 2.3050875663757324,
+ "step": 837
+ },
+ {
+ "epoch": 11.641114982578397,
+ "grad_norm": 0.041100166738033295,
+ "learning_rate": 0.0005373488751162681,
+ "loss": 2.316553831100464,
+ "step": 838
+ },
+ {
+ "epoch": 11.655052264808361,
+ "grad_norm": 0.040330950170755386,
+ "learning_rate": 0.0005371850100546929,
+ "loss": 2.310610294342041,
+ "step": 839
+ },
+ {
+ "epoch": 11.668989547038327,
+ "grad_norm": 0.03405703231692314,
+ "learning_rate": 0.000537020956314485,
+ "loss": 2.311572313308716,
+ "step": 840
+ },
+ {
+ "epoch": 11.682926829268293,
+ "grad_norm": 0.038694240152835846,
+ "learning_rate": 0.0005368567140278196,
+ "loss": 2.291428565979004,
+ "step": 841
+ },
+ {
+ "epoch": 11.696864111498257,
+ "grad_norm": 0.03937961906194687,
+ "learning_rate": 0.0005366922833270235,
+ "loss": 2.315734386444092,
+ "step": 842
+ },
+ {
+ "epoch": 11.710801393728223,
+ "grad_norm": 0.038759566843509674,
+ "learning_rate": 0.0005365276643445757,
+ "loss": 2.3142471313476562,
+ "step": 843
+ },
+ {
+ "epoch": 11.724738675958188,
+ "grad_norm": 0.03737666830420494,
+ "learning_rate": 0.0005363628572131069,
+ "loss": 2.305859088897705,
+ "step": 844
+ },
+ {
+ "epoch": 11.738675958188153,
+ "grad_norm": 0.039980217814445496,
+ "learning_rate": 0.0005361978620653991,
+ "loss": 2.3132710456848145,
+ "step": 845
+ },
+ {
+ "epoch": 11.752613240418118,
+ "grad_norm": 0.040231477469205856,
+ "learning_rate": 0.0005360326790343858,
+ "loss": 2.307582139968872,
+ "step": 846
+ },
+ {
+ "epoch": 11.766550522648084,
+ "grad_norm": 0.03938363865017891,
+ "learning_rate": 0.000535867308253152,
+ "loss": 2.33015775680542,
+ "step": 847
+ },
+ {
+ "epoch": 11.78048780487805,
+ "grad_norm": 0.03871415555477142,
+ "learning_rate": 0.0005357017498549341,
+ "loss": 2.315992832183838,
+ "step": 848
+ },
+ {
+ "epoch": 11.794425087108014,
+ "grad_norm": 0.03816714137792587,
+ "learning_rate": 0.0005355360039731196,
+ "loss": 2.315371513366699,
+ "step": 849
+ },
+ {
+ "epoch": 11.80836236933798,
+ "grad_norm": 0.03860654681921005,
+ "learning_rate": 0.0005353700707412466,
+ "loss": 2.3099796772003174,
+ "step": 850
+ },
+ {
+ "epoch": 11.822299651567944,
+ "grad_norm": 0.04050910845398903,
+ "learning_rate": 0.0005352039502930048,
+ "loss": 2.331601142883301,
+ "step": 851
+ },
+ {
+ "epoch": 11.83623693379791,
+ "grad_norm": 0.040455542504787445,
+ "learning_rate": 0.0005350376427622343,
+ "loss": 2.3153774738311768,
+ "step": 852
+ },
+ {
+ "epoch": 11.850174216027874,
+ "grad_norm": 0.03606412559747696,
+ "learning_rate": 0.0005348711482829261,
+ "loss": 2.3196091651916504,
+ "step": 853
+ },
+ {
+ "epoch": 11.86411149825784,
+ "grad_norm": 0.03540179878473282,
+ "learning_rate": 0.000534704466989222,
+ "loss": 2.3175747394561768,
+ "step": 854
+ },
+ {
+ "epoch": 11.878048780487806,
+ "grad_norm": 0.03594037890434265,
+ "learning_rate": 0.0005345375990154138,
+ "loss": 2.3123281002044678,
+ "step": 855
+ },
+ {
+ "epoch": 11.89198606271777,
+ "grad_norm": 0.037316273897886276,
+ "learning_rate": 0.0005343705444959441,
+ "loss": 2.326590061187744,
+ "step": 856
+ },
+ {
+ "epoch": 11.905923344947736,
+ "grad_norm": 0.03534175828099251,
+ "learning_rate": 0.000534203303565406,
+ "loss": 2.289609670639038,
+ "step": 857
+ },
+ {
+ "epoch": 11.9198606271777,
+ "grad_norm": 0.03645944595336914,
+ "learning_rate": 0.000534035876358542,
+ "loss": 2.310405731201172,
+ "step": 858
+ },
+ {
+ "epoch": 11.933797909407666,
+ "grad_norm": 0.033878158777952194,
+ "learning_rate": 0.0005338682630102454,
+ "loss": 2.3025999069213867,
+ "step": 859
+ },
+ {
+ "epoch": 11.94773519163763,
+ "grad_norm": 0.03515630215406418,
+ "learning_rate": 0.0005337004636555595,
+ "loss": 2.3085150718688965,
+ "step": 860
+ },
+ {
+ "epoch": 11.961672473867596,
+ "grad_norm": 0.034178491681814194,
+ "learning_rate": 0.0005335324784296768,
+ "loss": 2.3223443031311035,
+ "step": 861
+ },
+ {
+ "epoch": 11.975609756097562,
+ "grad_norm": 0.0340011864900589,
+ "learning_rate": 0.0005333643074679403,
+ "loss": 2.324476957321167,
+ "step": 862
+ },
+ {
+ "epoch": 11.989547038327526,
+ "grad_norm": 0.03569193184375763,
+ "learning_rate": 0.000533195950905842,
+ "loss": 2.3087520599365234,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.030978869646787643,
+ "learning_rate": 0.0005330274088790239,
+ "loss": 1.733755350112915,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 0.6196663975715637,
+ "eval_runtime": 38.4411,
+ "eval_samples_per_second": 63.526,
+ "eval_steps_per_second": 0.52,
+ "step": 864
+ },
+ {
+ "epoch": 12.013937282229966,
+ "grad_norm": 0.04311290383338928,
+ "learning_rate": 0.0005328586815232773,
+ "loss": 2.267500638961792,
+ "step": 865
+ },
+ {
+ "epoch": 12.02787456445993,
+ "grad_norm": 0.05809512361884117,
+ "learning_rate": 0.0005326897689745428,
+ "loss": 2.269824981689453,
+ "step": 866
+ },
+ {
+ "epoch": 12.041811846689896,
+ "grad_norm": 0.06641583144664764,
+ "learning_rate": 0.0005325206713689101,
+ "loss": 2.2579562664031982,
+ "step": 867
+ },
+ {
+ "epoch": 12.05574912891986,
+ "grad_norm": 0.06946069747209549,
+ "learning_rate": 0.0005323513888426181,
+ "loss": 2.2649731636047363,
+ "step": 868
+ },
+ {
+ "epoch": 12.069686411149826,
+ "grad_norm": 0.07457753270864487,
+ "learning_rate": 0.0005321819215320546,
+ "loss": 2.271296501159668,
+ "step": 869
+ },
+ {
+ "epoch": 12.08362369337979,
+ "grad_norm": 0.08557604998350143,
+ "learning_rate": 0.0005320122695737565,
+ "loss": 2.2977068424224854,
+ "step": 870
+ },
+ {
+ "epoch": 12.097560975609756,
+ "grad_norm": 0.07865381985902786,
+ "learning_rate": 0.0005318424331044094,
+ "loss": 2.2831926345825195,
+ "step": 871
+ },
+ {
+ "epoch": 12.111498257839722,
+ "grad_norm": 0.07406128942966461,
+ "learning_rate": 0.0005316724122608473,
+ "loss": 2.280620574951172,
+ "step": 872
+ },
+ {
+ "epoch": 12.125435540069686,
+ "grad_norm": 0.08649969846010208,
+ "learning_rate": 0.0005315022071800527,
+ "loss": 2.2639617919921875,
+ "step": 873
+ },
+ {
+ "epoch": 12.139372822299652,
+ "grad_norm": 0.08262167125940323,
+ "learning_rate": 0.0005313318179991574,
+ "loss": 2.271108627319336,
+ "step": 874
+ },
+ {
+ "epoch": 12.153310104529616,
+ "grad_norm": 0.0752791240811348,
+ "learning_rate": 0.0005311612448554402,
+ "loss": 2.273391008377075,
+ "step": 875
+ },
+ {
+ "epoch": 12.167247386759582,
+ "grad_norm": 0.07095267623662949,
+ "learning_rate": 0.0005309904878863293,
+ "loss": 2.276211977005005,
+ "step": 876
+ },
+ {
+ "epoch": 12.181184668989546,
+ "grad_norm": 0.061625171452760696,
+ "learning_rate": 0.0005308195472294001,
+ "loss": 2.2848544120788574,
+ "step": 877
+ },
+ {
+ "epoch": 12.195121951219512,
+ "grad_norm": 0.06082753837108612,
+ "learning_rate": 0.0005306484230223769,
+ "loss": 2.2795495986938477,
+ "step": 878
+ },
+ {
+ "epoch": 12.209059233449477,
+ "grad_norm": 0.0587560310959816,
+ "learning_rate": 0.000530477115403131,
+ "loss": 2.257300853729248,
+ "step": 879
+ },
+ {
+ "epoch": 12.222996515679442,
+ "grad_norm": 0.05483998730778694,
+ "learning_rate": 0.0005303056245096817,
+ "loss": 2.2889161109924316,
+ "step": 880
+ },
+ {
+ "epoch": 12.236933797909408,
+ "grad_norm": 0.05021355301141739,
+ "learning_rate": 0.0005301339504801967,
+ "loss": 2.2778401374816895,
+ "step": 881
+ },
+ {
+ "epoch": 12.250871080139373,
+ "grad_norm": 0.05440690740942955,
+ "learning_rate": 0.0005299620934529902,
+ "loss": 2.2760677337646484,
+ "step": 882
+ },
+ {
+ "epoch": 12.264808362369338,
+ "grad_norm": 0.05961807072162628,
+ "learning_rate": 0.0005297900535665244,
+ "loss": 2.276120185852051,
+ "step": 883
+ },
+ {
+ "epoch": 12.278745644599303,
+ "grad_norm": 0.054035380482673645,
+ "learning_rate": 0.0005296178309594087,
+ "loss": 2.255659341812134,
+ "step": 884
+ },
+ {
+ "epoch": 12.292682926829269,
+ "grad_norm": 0.05121298506855965,
+ "learning_rate": 0.0005294454257704,
+ "loss": 2.2852983474731445,
+ "step": 885
+ },
+ {
+ "epoch": 12.306620209059233,
+ "grad_norm": 0.04890505596995354,
+ "learning_rate": 0.0005292728381384018,
+ "loss": 2.2752151489257812,
+ "step": 886
+ },
+ {
+ "epoch": 12.320557491289199,
+ "grad_norm": 0.05019564554095268,
+ "learning_rate": 0.0005291000682024647,
+ "loss": 2.261242389678955,
+ "step": 887
+ },
+ {
+ "epoch": 12.334494773519165,
+ "grad_norm": 0.04824003204703331,
+ "learning_rate": 0.0005289271161017867,
+ "loss": 2.2752835750579834,
+ "step": 888
+ },
+ {
+ "epoch": 12.348432055749129,
+ "grad_norm": 0.04195769876241684,
+ "learning_rate": 0.0005287539819757119,
+ "loss": 2.2705702781677246,
+ "step": 889
+ },
+ {
+ "epoch": 12.362369337979095,
+ "grad_norm": 0.046239253133535385,
+ "learning_rate": 0.0005285806659637315,
+ "loss": 2.2981534004211426,
+ "step": 890
+ },
+ {
+ "epoch": 12.376306620209059,
+ "grad_norm": 0.04743665084242821,
+ "learning_rate": 0.000528407168205483,
+ "loss": 2.278078079223633,
+ "step": 891
+ },
+ {
+ "epoch": 12.390243902439025,
+ "grad_norm": 0.04690218344330788,
+ "learning_rate": 0.0005282334888407503,
+ "loss": 2.2809972763061523,
+ "step": 892
+ },
+ {
+ "epoch": 12.404181184668989,
+ "grad_norm": 0.0444699302315712,
+ "learning_rate": 0.000528059628009464,
+ "loss": 2.2702579498291016,
+ "step": 893
+ },
+ {
+ "epoch": 12.418118466898955,
+ "grad_norm": 0.04225282371044159,
+ "learning_rate": 0.0005278855858517003,
+ "loss": 2.2717671394348145,
+ "step": 894
+ },
+ {
+ "epoch": 12.43205574912892,
+ "grad_norm": 0.041407857090234756,
+ "learning_rate": 0.0005277113625076822,
+ "loss": 2.266977548599243,
+ "step": 895
+ },
+ {
+ "epoch": 12.445993031358885,
+ "grad_norm": 0.042014770209789276,
+ "learning_rate": 0.000527536958117778,
+ "loss": 2.269441604614258,
+ "step": 896
+ },
+ {
+ "epoch": 12.45993031358885,
+ "grad_norm": 0.04196929931640625,
+ "learning_rate": 0.0005273623728225022,
+ "loss": 2.246767997741699,
+ "step": 897
+ },
+ {
+ "epoch": 12.473867595818815,
+ "grad_norm": 0.04507727175951004,
+ "learning_rate": 0.0005271876067625153,
+ "loss": 2.2929835319519043,
+ "step": 898
+ },
+ {
+ "epoch": 12.487804878048781,
+ "grad_norm": 0.043129295110702515,
+ "learning_rate": 0.0005270126600786228,
+ "loss": 2.280632257461548,
+ "step": 899
+ },
+ {
+ "epoch": 12.501742160278745,
+ "grad_norm": 0.041876427829265594,
+ "learning_rate": 0.0005268375329117762,
+ "loss": 2.2524752616882324,
+ "step": 900
+ },
+ {
+ "epoch": 12.515679442508711,
+ "grad_norm": 0.04281412810087204,
+ "learning_rate": 0.0005266622254030724,
+ "loss": 2.278818130493164,
+ "step": 901
+ },
+ {
+ "epoch": 12.529616724738675,
+ "grad_norm": 0.040438197553157806,
+ "learning_rate": 0.0005264867376937534,
+ "loss": 2.2771482467651367,
+ "step": 902
+ },
+ {
+ "epoch": 12.543554006968641,
+ "grad_norm": 0.03930707275867462,
+ "learning_rate": 0.0005263110699252065,
+ "loss": 2.273127555847168,
+ "step": 903
+ },
+ {
+ "epoch": 12.557491289198607,
+ "grad_norm": 0.04181307926774025,
+ "learning_rate": 0.000526135222238964,
+ "loss": 2.2839956283569336,
+ "step": 904
+ },
+ {
+ "epoch": 12.571428571428571,
+ "grad_norm": 0.042597733438014984,
+ "learning_rate": 0.0005259591947767032,
+ "loss": 2.262939929962158,
+ "step": 905
+ },
+ {
+ "epoch": 12.585365853658537,
+ "grad_norm": 0.04178392142057419,
+ "learning_rate": 0.0005257829876802464,
+ "loss": 2.286794662475586,
+ "step": 906
+ },
+ {
+ "epoch": 12.599303135888501,
+ "grad_norm": 0.04041772708296776,
+ "learning_rate": 0.0005256066010915603,
+ "loss": 2.276432991027832,
+ "step": 907
+ },
+ {
+ "epoch": 12.613240418118467,
+ "grad_norm": 0.04161509871482849,
+ "learning_rate": 0.0005254300351527566,
+ "loss": 2.2779972553253174,
+ "step": 908
+ },
+ {
+ "epoch": 12.627177700348431,
+ "grad_norm": 0.04206471145153046,
+ "learning_rate": 0.000525253290006091,
+ "loss": 2.282811164855957,
+ "step": 909
+ },
+ {
+ "epoch": 12.641114982578397,
+ "grad_norm": 0.04001585766673088,
+ "learning_rate": 0.0005250763657939641,
+ "loss": 2.29434871673584,
+ "step": 910
+ },
+ {
+ "epoch": 12.655052264808361,
+ "grad_norm": 0.041886743158102036,
+ "learning_rate": 0.0005248992626589203,
+ "loss": 2.278651237487793,
+ "step": 911
+ },
+ {
+ "epoch": 12.668989547038327,
+ "grad_norm": 0.0404231883585453,
+ "learning_rate": 0.0005247219807436489,
+ "loss": 2.2875375747680664,
+ "step": 912
+ },
+ {
+ "epoch": 12.682926829268293,
+ "grad_norm": 0.037211328744888306,
+ "learning_rate": 0.000524544520190982,
+ "loss": 2.294013023376465,
+ "step": 913
+ },
+ {
+ "epoch": 12.696864111498257,
+ "grad_norm": 0.03906721621751785,
+ "learning_rate": 0.000524366881143897,
+ "loss": 2.2899856567382812,
+ "step": 914
+ },
+ {
+ "epoch": 12.710801393728223,
+ "grad_norm": 0.04206228628754616,
+ "learning_rate": 0.0005241890637455141,
+ "loss": 2.282346248626709,
+ "step": 915
+ },
+ {
+ "epoch": 12.724738675958188,
+ "grad_norm": 0.03915264084935188,
+ "learning_rate": 0.0005240110681390978,
+ "loss": 2.2995424270629883,
+ "step": 916
+ },
+ {
+ "epoch": 12.738675958188153,
+ "grad_norm": 0.03919649496674538,
+ "learning_rate": 0.0005238328944680558,
+ "loss": 2.282196044921875,
+ "step": 917
+ },
+ {
+ "epoch": 12.752613240418118,
+ "grad_norm": 0.039669446647167206,
+ "learning_rate": 0.0005236545428759394,
+ "loss": 2.2758240699768066,
+ "step": 918
+ },
+ {
+ "epoch": 12.766550522648084,
+ "grad_norm": 0.04075023531913757,
+ "learning_rate": 0.0005234760135064434,
+ "loss": 2.278747320175171,
+ "step": 919
+ },
+ {
+ "epoch": 12.78048780487805,
+ "grad_norm": 0.03815247863531113,
+ "learning_rate": 0.0005232973065034055,
+ "loss": 2.2989745140075684,
+ "step": 920
+ },
+ {
+ "epoch": 12.794425087108014,
+ "grad_norm": 0.039577171206474304,
+ "learning_rate": 0.0005231184220108069,
+ "loss": 2.278186321258545,
+ "step": 921
+ },
+ {
+ "epoch": 12.80836236933798,
+ "grad_norm": 0.04091718792915344,
+ "learning_rate": 0.0005229393601727713,
+ "loss": 2.3046107292175293,
+ "step": 922
+ },
+ {
+ "epoch": 12.822299651567944,
+ "grad_norm": 0.04034758731722832,
+ "learning_rate": 0.000522760121133566,
+ "loss": 2.2959580421447754,
+ "step": 923
+ },
+ {
+ "epoch": 12.83623693379791,
+ "grad_norm": 0.041219793260097504,
+ "learning_rate": 0.0005225807050376004,
+ "loss": 2.289950370788574,
+ "step": 924
+ },
+ {
+ "epoch": 12.850174216027874,
+ "grad_norm": 0.042124949395656586,
+ "learning_rate": 0.0005224011120294269,
+ "loss": 2.2865607738494873,
+ "step": 925
+ },
+ {
+ "epoch": 12.86411149825784,
+ "grad_norm": 0.04259328171610832,
+ "learning_rate": 0.0005222213422537401,
+ "loss": 2.2798972129821777,
+ "step": 926
+ },
+ {
+ "epoch": 12.878048780487806,
+ "grad_norm": 0.0413426011800766,
+ "learning_rate": 0.0005220413958553777,
+ "loss": 2.2765798568725586,
+ "step": 927
+ },
+ {
+ "epoch": 12.89198606271777,
+ "grad_norm": 0.04276851564645767,
+ "learning_rate": 0.0005218612729793188,
+ "loss": 2.292202949523926,
+ "step": 928
+ },
+ {
+ "epoch": 12.905923344947736,
+ "grad_norm": 0.038679834455251694,
+ "learning_rate": 0.0005216809737706856,
+ "loss": 2.2641711235046387,
+ "step": 929
+ },
+ {
+ "epoch": 12.9198606271777,
+ "grad_norm": 0.04027910903096199,
+ "learning_rate": 0.0005215004983747415,
+ "loss": 2.297112464904785,
+ "step": 930
+ },
+ {
+ "epoch": 12.933797909407666,
+ "grad_norm": 0.037091903388500214,
+ "learning_rate": 0.0005213198469368925,
+ "loss": 2.2731027603149414,
+ "step": 931
+ },
+ {
+ "epoch": 12.94773519163763,
+ "grad_norm": 0.0381062775850296,
+ "learning_rate": 0.0005211390196026861,
+ "loss": 2.276169538497925,
+ "step": 932
+ },
+ {
+ "epoch": 12.961672473867596,
+ "grad_norm": 0.03912157565355301,
+ "learning_rate": 0.0005209580165178117,
+ "loss": 2.2855257987976074,
+ "step": 933
+ },
+ {
+ "epoch": 12.975609756097562,
+ "grad_norm": 0.03726741299033165,
+ "learning_rate": 0.0005207768378281003,
+ "loss": 2.285484790802002,
+ "step": 934
+ },
+ {
+ "epoch": 12.989547038327526,
+ "grad_norm": 0.03863261640071869,
+ "learning_rate": 0.0005205954836795241,
+ "loss": 2.2770638465881348,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.03204738348722458,
+ "learning_rate": 0.000520413954218197,
+ "loss": 1.7078638076782227,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 0.6196639537811279,
+ "eval_runtime": 36.3518,
+ "eval_samples_per_second": 67.177,
+ "eval_steps_per_second": 0.55,
+ "step": 936
+ },
+ {
+ "epoch": 13.013937282229966,
+ "grad_norm": 0.04385007545351982,
+ "learning_rate": 0.0005202322495903739,
+ "loss": 2.2220354080200195,
+ "step": 937
+ },
+ {
+ "epoch": 13.02787456445993,
+ "grad_norm": 0.05723090469837189,
+ "learning_rate": 0.0005200503699424509,
+ "loss": 2.223271369934082,
+ "step": 938
+ },
+ {
+ "epoch": 13.041811846689896,
+ "grad_norm": 0.06027279794216156,
+ "learning_rate": 0.0005198683154209654,
+ "loss": 2.2302541732788086,
+ "step": 939
+ },
+ {
+ "epoch": 13.05574912891986,
+ "grad_norm": 0.06342783570289612,
+ "learning_rate": 0.0005196860861725952,
+ "loss": 2.2211854457855225,
+ "step": 940
+ },
+ {
+ "epoch": 13.069686411149826,
+ "grad_norm": 0.06265735626220703,
+ "learning_rate": 0.0005195036823441592,
+ "loss": 2.222750425338745,
+ "step": 941
+ },
+ {
+ "epoch": 13.08362369337979,
+ "grad_norm": 0.0661185085773468,
+ "learning_rate": 0.0005193211040826169,
+ "loss": 2.230656862258911,
+ "step": 942
+ },
+ {
+ "epoch": 13.097560975609756,
+ "grad_norm": 0.06665238738059998,
+ "learning_rate": 0.0005191383515350681,
+ "loss": 2.220534563064575,
+ "step": 943
+ },
+ {
+ "epoch": 13.111498257839722,
+ "grad_norm": 0.06432333588600159,
+ "learning_rate": 0.0005189554248487536,
+ "loss": 2.2317209243774414,
+ "step": 944
+ },
+ {
+ "epoch": 13.125435540069686,
+ "grad_norm": 0.057658061385154724,
+ "learning_rate": 0.0005187723241710539,
+ "loss": 2.20767879486084,
+ "step": 945
+ },
+ {
+ "epoch": 13.139372822299652,
+ "grad_norm": 0.06340344250202179,
+ "learning_rate": 0.0005185890496494899,
+ "loss": 2.240220546722412,
+ "step": 946
+ },
+ {
+ "epoch": 13.153310104529616,
+ "grad_norm": 0.0649016872048378,
+ "learning_rate": 0.0005184056014317225,
+ "loss": 2.2353672981262207,
+ "step": 947
+ },
+ {
+ "epoch": 13.167247386759582,
+ "grad_norm": 0.05792258679866791,
+ "learning_rate": 0.0005182219796655528,
+ "loss": 2.2480835914611816,
+ "step": 948
+ },
+ {
+ "epoch": 13.181184668989546,
+ "grad_norm": 0.059482429176568985,
+ "learning_rate": 0.0005180381844989214,
+ "loss": 2.2432656288146973,
+ "step": 949
+ },
+ {
+ "epoch": 13.195121951219512,
+ "grad_norm": 0.05838126689195633,
+ "learning_rate": 0.0005178542160799088,
+ "loss": 2.237567901611328,
+ "step": 950
+ },
+ {
+ "epoch": 13.209059233449477,
+ "grad_norm": 0.05699385702610016,
+ "learning_rate": 0.0005176700745567353,
+ "loss": 2.243746280670166,
+ "step": 951
+ },
+ {
+ "epoch": 13.222996515679442,
+ "grad_norm": 0.05618268996477127,
+ "learning_rate": 0.0005174857600777599,
+ "loss": 2.2216076850891113,
+ "step": 952
+ },
+ {
+ "epoch": 13.236933797909408,
+ "grad_norm": 0.05328221991658211,
+ "learning_rate": 0.0005173012727914816,
+ "loss": 2.2413382530212402,
+ "step": 953
+ },
+ {
+ "epoch": 13.250871080139373,
+ "grad_norm": 0.05254136770963669,
+ "learning_rate": 0.0005171166128465389,
+ "loss": 2.2317683696746826,
+ "step": 954
+ },
+ {
+ "epoch": 13.264808362369338,
+ "grad_norm": 0.05144176259636879,
+ "learning_rate": 0.0005169317803917083,
+ "loss": 2.2372474670410156,
+ "step": 955
+ },
+ {
+ "epoch": 13.278745644599303,
+ "grad_norm": 0.05258858576416969,
+ "learning_rate": 0.0005167467755759065,
+ "loss": 2.2383830547332764,
+ "step": 956
+ },
+ {
+ "epoch": 13.292682926829269,
+ "grad_norm": 0.0550001785159111,
+ "learning_rate": 0.0005165615985481881,
+ "loss": 2.2456729412078857,
+ "step": 957
+ },
+ {
+ "epoch": 13.306620209059233,
+ "grad_norm": 0.050276629626750946,
+ "learning_rate": 0.0005163762494577474,
+ "loss": 2.262298345565796,
+ "step": 958
+ },
+ {
+ "epoch": 13.320557491289199,
+ "grad_norm": 0.05388111621141434,
+ "learning_rate": 0.0005161907284539165,
+ "loss": 2.250800609588623,
+ "step": 959
+ },
+ {
+ "epoch": 13.334494773519165,
+ "grad_norm": 0.05154367536306381,
+ "learning_rate": 0.0005160050356861663,
+ "loss": 2.2442479133605957,
+ "step": 960
+ },
+ {
+ "epoch": 13.348432055749129,
+ "grad_norm": 0.04562186077237129,
+ "learning_rate": 0.0005158191713041063,
+ "loss": 2.237484931945801,
+ "step": 961
+ },
+ {
+ "epoch": 13.362369337979095,
+ "grad_norm": 0.049510203301906586,
+ "learning_rate": 0.0005156331354574838,
+ "loss": 2.243274688720703,
+ "step": 962
+ },
+ {
+ "epoch": 13.376306620209059,
+ "grad_norm": 0.050305187702178955,
+ "learning_rate": 0.0005154469282961847,
+ "loss": 2.2452855110168457,
+ "step": 963
+ },
+ {
+ "epoch": 13.390243902439025,
+ "grad_norm": 0.049128562211990356,
+ "learning_rate": 0.0005152605499702328,
+ "loss": 2.2562594413757324,
+ "step": 964
+ },
+ {
+ "epoch": 13.404181184668989,
+ "grad_norm": 0.04948648437857628,
+ "learning_rate": 0.0005150740006297896,
+ "loss": 2.2388229370117188,
+ "step": 965
+ },
+ {
+ "epoch": 13.418118466898955,
+ "grad_norm": 0.053290050476789474,
+ "learning_rate": 0.0005148872804251548,
+ "loss": 2.2601318359375,
+ "step": 966
+ },
+ {
+ "epoch": 13.43205574912892,
+ "grad_norm": 0.04839639738202095,
+ "learning_rate": 0.000514700389506765,
+ "loss": 2.2303178310394287,
+ "step": 967
+ },
+ {
+ "epoch": 13.445993031358885,
+ "grad_norm": 0.04883972555398941,
+ "learning_rate": 0.0005145133280251954,
+ "loss": 2.246448040008545,
+ "step": 968
+ },
+ {
+ "epoch": 13.45993031358885,
+ "grad_norm": 0.04747871682047844,
+ "learning_rate": 0.0005143260961311578,
+ "loss": 2.259640693664551,
+ "step": 969
+ },
+ {
+ "epoch": 13.473867595818815,
+ "grad_norm": 0.046724554151296616,
+ "learning_rate": 0.0005141386939755014,
+ "loss": 2.2453014850616455,
+ "step": 970
+ },
+ {
+ "epoch": 13.487804878048781,
+ "grad_norm": 0.045614756643772125,
+ "learning_rate": 0.0005139511217092129,
+ "loss": 2.2351949214935303,
+ "step": 971
+ },
+ {
+ "epoch": 13.501742160278745,
+ "grad_norm": 0.04794120043516159,
+ "learning_rate": 0.000513763379483416,
+ "loss": 2.2457003593444824,
+ "step": 972
+ },
+ {
+ "epoch": 13.515679442508711,
+ "grad_norm": 0.05043521523475647,
+ "learning_rate": 0.0005135754674493709,
+ "loss": 2.258542060852051,
+ "step": 973
+ },
+ {
+ "epoch": 13.529616724738675,
+ "grad_norm": 0.046207673847675323,
+ "learning_rate": 0.0005133873857584753,
+ "loss": 2.2370145320892334,
+ "step": 974
+ },
+ {
+ "epoch": 13.543554006968641,
+ "grad_norm": 0.04402166232466698,
+ "learning_rate": 0.0005131991345622629,
+ "loss": 2.2408246994018555,
+ "step": 975
+ },
+ {
+ "epoch": 13.557491289198607,
+ "grad_norm": 0.04337441921234131,
+ "learning_rate": 0.0005130107140124046,
+ "loss": 2.2634308338165283,
+ "step": 976
+ },
+ {
+ "epoch": 13.571428571428571,
+ "grad_norm": 0.047244030982255936,
+ "learning_rate": 0.0005128221242607072,
+ "loss": 2.2571523189544678,
+ "step": 977
+ },
+ {
+ "epoch": 13.585365853658537,
+ "grad_norm": 0.04867873340845108,
+ "learning_rate": 0.0005126333654591141,
+ "loss": 2.248501777648926,
+ "step": 978
+ },
+ {
+ "epoch": 13.599303135888501,
+ "grad_norm": 0.048512108623981476,
+ "learning_rate": 0.0005124444377597049,
+ "loss": 2.2579822540283203,
+ "step": 979
+ },
+ {
+ "epoch": 13.613240418118467,
+ "grad_norm": 0.04615626111626625,
+ "learning_rate": 0.0005122553413146951,
+ "loss": 2.2446889877319336,
+ "step": 980
+ },
+ {
+ "epoch": 13.627177700348431,
+ "grad_norm": 0.044876713305711746,
+ "learning_rate": 0.0005120660762764366,
+ "loss": 2.2439627647399902,
+ "step": 981
+ },
+ {
+ "epoch": 13.641114982578397,
+ "grad_norm": 0.046021413058042526,
+ "learning_rate": 0.0005118766427974166,
+ "loss": 2.262195587158203,
+ "step": 982
+ },
+ {
+ "epoch": 13.655052264808361,
+ "grad_norm": 0.04974699020385742,
+ "learning_rate": 0.0005116870410302582,
+ "loss": 2.2783303260803223,
+ "step": 983
+ },
+ {
+ "epoch": 13.668989547038327,
+ "grad_norm": 0.044128481298685074,
+ "learning_rate": 0.0005114972711277202,
+ "loss": 2.2566471099853516,
+ "step": 984
+ },
+ {
+ "epoch": 13.682926829268293,
+ "grad_norm": 0.042579326778650284,
+ "learning_rate": 0.0005113073332426968,
+ "loss": 2.2596194744110107,
+ "step": 985
+ },
+ {
+ "epoch": 13.696864111498257,
+ "grad_norm": 0.044022977352142334,
+ "learning_rate": 0.0005111172275282174,
+ "loss": 2.270303726196289,
+ "step": 986
+ },
+ {
+ "epoch": 13.710801393728223,
+ "grad_norm": 0.04324937239289284,
+ "learning_rate": 0.0005109269541374469,
+ "loss": 2.2393593788146973,
+ "step": 987
+ },
+ {
+ "epoch": 13.724738675958188,
+ "grad_norm": 0.04146691411733627,
+ "learning_rate": 0.000510736513223685,
+ "loss": 2.2541770935058594,
+ "step": 988
+ },
+ {
+ "epoch": 13.738675958188153,
+ "grad_norm": 0.04146251827478409,
+ "learning_rate": 0.0005105459049403665,
+ "loss": 2.260561943054199,
+ "step": 989
+ },
+ {
+ "epoch": 13.752613240418118,
+ "grad_norm": 0.042454298585653305,
+ "learning_rate": 0.0005103551294410614,
+ "loss": 2.2623369693756104,
+ "step": 990
+ },
+ {
+ "epoch": 13.766550522648084,
+ "grad_norm": 0.04376888647675514,
+ "learning_rate": 0.0005101641868794736,
+ "loss": 2.2560131549835205,
+ "step": 991
+ },
+ {
+ "epoch": 13.78048780487805,
+ "grad_norm": 0.04379274323582649,
+ "learning_rate": 0.0005099730774094423,
+ "loss": 2.2503037452697754,
+ "step": 992
+ },
+ {
+ "epoch": 13.794425087108014,
+ "grad_norm": 0.04411308094859123,
+ "learning_rate": 0.0005097818011849408,
+ "loss": 2.244288921356201,
+ "step": 993
+ },
+ {
+ "epoch": 13.80836236933798,
+ "grad_norm": 0.04043621942400932,
+ "learning_rate": 0.0005095903583600772,
+ "loss": 2.244035243988037,
+ "step": 994
+ },
+ {
+ "epoch": 13.822299651567944,
+ "grad_norm": 0.04722495377063751,
+ "learning_rate": 0.0005093987490890933,
+ "loss": 2.269280433654785,
+ "step": 995
+ },
+ {
+ "epoch": 13.83623693379791,
+ "grad_norm": 0.049322471022605896,
+ "learning_rate": 0.0005092069735263651,
+ "loss": 2.249361515045166,
+ "step": 996
+ },
+ {
+ "epoch": 13.850174216027874,
+ "grad_norm": 0.04808150604367256,
+ "learning_rate": 0.000509015031826403,
+ "loss": 2.255721092224121,
+ "step": 997
+ },
+ {
+ "epoch": 13.86411149825784,
+ "grad_norm": 0.044958360493183136,
+ "learning_rate": 0.0005088229241438509,
+ "loss": 2.2578060626983643,
+ "step": 998
+ },
+ {
+ "epoch": 13.878048780487806,
+ "grad_norm": 0.04442335292696953,
+ "learning_rate": 0.0005086306506334864,
+ "loss": 2.2553436756134033,
+ "step": 999
+ },
+ {
+ "epoch": 13.89198606271777,
+ "grad_norm": 0.0487419068813324,
+ "learning_rate": 0.0005084382114502208,
+ "loss": 2.2526695728302,
+ "step": 1000
+ },
+ {
+ "epoch": 13.905923344947736,
+ "grad_norm": 0.047398749738931656,
+ "learning_rate": 0.0005082456067490988,
+ "loss": 2.259551763534546,
+ "step": 1001
+ },
+ {
+ "epoch": 13.9198606271777,
+ "grad_norm": 0.04429299384355545,
+ "learning_rate": 0.0005080528366852987,
+ "loss": 2.270155906677246,
+ "step": 1002
+ },
+ {
+ "epoch": 13.933797909407666,
+ "grad_norm": 0.045255087316036224,
+ "learning_rate": 0.0005078599014141318,
+ "loss": 2.2554101943969727,
+ "step": 1003
+ },
+ {
+ "epoch": 13.94773519163763,
+ "grad_norm": 0.04559073969721794,
+ "learning_rate": 0.0005076668010910425,
+ "loss": 2.2913122177124023,
+ "step": 1004
+ },
+ {
+ "epoch": 13.961672473867596,
+ "grad_norm": 0.04300642013549805,
+ "learning_rate": 0.0005074735358716083,
+ "loss": 2.241891860961914,
+ "step": 1005
+ },
+ {
+ "epoch": 13.975609756097562,
+ "grad_norm": 0.04328060522675514,
+ "learning_rate": 0.0005072801059115394,
+ "loss": 2.2659969329833984,
+ "step": 1006
+ },
+ {
+ "epoch": 13.989547038327526,
+ "grad_norm": 0.0425153523683548,
+ "learning_rate": 0.000507086511366679,
+ "loss": 2.266413450241089,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.03479035571217537,
+ "learning_rate": 0.0005068927523930027,
+ "loss": 1.6806477308273315,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 0.6199555993080139,
+ "eval_runtime": 42.3013,
+ "eval_samples_per_second": 57.729,
+ "eval_steps_per_second": 0.473,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013937282229966,
+ "grad_norm": 0.04759897664189339,
+ "learning_rate": 0.0005066988291466184,
+ "loss": 2.1937670707702637,
+ "step": 1009
+ },
+ {
+ "epoch": 14.02787456445993,
+ "grad_norm": 0.06862346827983856,
+ "learning_rate": 0.0005065047417837669,
+ "loss": 2.2141411304473877,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041811846689896,
+ "grad_norm": 0.07168037444353104,
+ "learning_rate": 0.0005063104904608206,
+ "loss": 2.198908805847168,
+ "step": 1011
+ },
+ {
+ "epoch": 14.05574912891986,
+ "grad_norm": 0.06659573316574097,
+ "learning_rate": 0.0005061160753342843,
+ "loss": 2.218000888824463,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069686411149826,
+ "grad_norm": 0.06285326927900314,
+ "learning_rate": 0.0005059214965607948,
+ "loss": 2.1995139122009277,
+ "step": 1013
+ },
+ {
+ "epoch": 14.08362369337979,
+ "grad_norm": 0.061170000582933426,
+ "learning_rate": 0.0005057267542971207,
+ "loss": 2.2026236057281494,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097560975609756,
+ "grad_norm": 0.06091141700744629,
+ "learning_rate": 0.0005055318487001624,
+ "loss": 2.2087340354919434,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111498257839722,
+ "grad_norm": 0.05953513830900192,
+ "learning_rate": 0.0005053367799269518,
+ "loss": 2.1985390186309814,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125435540069686,
+ "grad_norm": 0.06126454845070839,
+ "learning_rate": 0.0005051415481346522,
+ "loss": 2.176772117614746,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139372822299652,
+ "grad_norm": 0.0675380751490593,
+ "learning_rate": 0.0005049461534805585,
+ "loss": 2.2045438289642334,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153310104529616,
+ "grad_norm": 0.07128442823886871,
+ "learning_rate": 0.0005047505961220964,
+ "loss": 2.197822332382202,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167247386759582,
+ "grad_norm": 0.06793799996376038,
+ "learning_rate": 0.0005045548762168231,
+ "loss": 2.1957449913024902,
+ "step": 1020
+ },
+ {
+ "epoch": 14.181184668989546,
+ "grad_norm": 0.05969219282269478,
+ "learning_rate": 0.0005043589939224266,
+ "loss": 2.206712245941162,
+ "step": 1021
+ },
+ {
+ "epoch": 14.195121951219512,
+ "grad_norm": 0.061422668397426605,
+ "learning_rate": 0.0005041629493967257,
+ "loss": 2.199829578399658,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209059233449477,
+ "grad_norm": 0.06352506577968597,
+ "learning_rate": 0.0005039667427976697,
+ "loss": 2.208404064178467,
+ "step": 1023
+ },
+ {
+ "epoch": 14.222996515679442,
+ "grad_norm": 0.06349361687898636,
+ "learning_rate": 0.0005037703742833391,
+ "loss": 2.2045750617980957,
+ "step": 1024
+ },
+ {
+ "epoch": 14.236933797909408,
+ "grad_norm": 0.05827466771006584,
+ "learning_rate": 0.0005035738440119442,
+ "loss": 2.204209566116333,
+ "step": 1025
+ },
+ {
+ "epoch": 14.250871080139373,
+ "grad_norm": 0.055201269686222076,
+ "learning_rate": 0.0005033771521418261,
+ "loss": 2.210240364074707,
+ "step": 1026
+ },
+ {
+ "epoch": 14.264808362369338,
+ "grad_norm": 0.05749988183379173,
+ "learning_rate": 0.0005031802988314557,
+ "loss": 2.2068967819213867,
+ "step": 1027
+ },
+ {
+ "epoch": 14.278745644599303,
+ "grad_norm": 0.061330124735832214,
+ "learning_rate": 0.0005029832842394342,
+ "loss": 2.194495439529419,
+ "step": 1028
+ },
+ {
+ "epoch": 14.292682926829269,
+ "grad_norm": 0.05682205408811569,
+ "learning_rate": 0.0005027861085244927,
+ "loss": 2.1934378147125244,
+ "step": 1029
+ },
+ {
+ "epoch": 14.306620209059233,
+ "grad_norm": 0.054082732647657394,
+ "learning_rate": 0.0005025887718454922,
+ "loss": 2.1993770599365234,
+ "step": 1030
+ },
+ {
+ "epoch": 14.320557491289199,
+ "grad_norm": 0.05460484325885773,
+ "learning_rate": 0.0005023912743614232,
+ "loss": 2.2270498275756836,
+ "step": 1031
+ },
+ {
+ "epoch": 14.334494773519165,
+ "grad_norm": 0.05222999304533005,
+ "learning_rate": 0.0005021936162314058,
+ "loss": 2.1926186084747314,
+ "step": 1032
+ },
+ {
+ "epoch": 14.348432055749129,
+ "grad_norm": 0.04854818806052208,
+ "learning_rate": 0.0005019957976146898,
+ "loss": 2.209700584411621,
+ "step": 1033
+ },
+ {
+ "epoch": 14.362369337979095,
+ "grad_norm": 0.051000695675611496,
+ "learning_rate": 0.0005017978186706538,
+ "loss": 2.207035541534424,
+ "step": 1034
+ },
+ {
+ "epoch": 14.376306620209059,
+ "grad_norm": 0.05035366490483284,
+ "learning_rate": 0.0005015996795588062,
+ "loss": 2.227447032928467,
+ "step": 1035
+ },
+ {
+ "epoch": 14.390243902439025,
+ "grad_norm": 0.048412274569272995,
+ "learning_rate": 0.0005014013804387838,
+ "loss": 2.229435443878174,
+ "step": 1036
+ },
+ {
+ "epoch": 14.404181184668989,
+ "grad_norm": 0.04643386974930763,
+ "learning_rate": 0.0005012029214703529,
+ "loss": 2.212726593017578,
+ "step": 1037
+ },
+ {
+ "epoch": 14.418118466898955,
+ "grad_norm": 0.05282546207308769,
+ "learning_rate": 0.000501004302813408,
+ "loss": 2.2133121490478516,
+ "step": 1038
+ },
+ {
+ "epoch": 14.43205574912892,
+ "grad_norm": 0.04976656660437584,
+ "learning_rate": 0.0005008055246279727,
+ "loss": 2.222738265991211,
+ "step": 1039
+ },
+ {
+ "epoch": 14.445993031358885,
+ "grad_norm": 0.04937833175063133,
+ "learning_rate": 0.000500606587074199,
+ "loss": 2.2278215885162354,
+ "step": 1040
+ },
+ {
+ "epoch": 14.45993031358885,
+ "grad_norm": 0.05218666046857834,
+ "learning_rate": 0.0005004074903123674,
+ "loss": 2.2277817726135254,
+ "step": 1041
+ },
+ {
+ "epoch": 14.473867595818815,
+ "grad_norm": 0.05176419019699097,
+ "learning_rate": 0.0005002082345028864,
+ "loss": 2.231154203414917,
+ "step": 1042
+ },
+ {
+ "epoch": 14.487804878048781,
+ "grad_norm": 0.049131155014038086,
+ "learning_rate": 0.0005000088198062929,
+ "loss": 2.2321465015411377,
+ "step": 1043
+ },
+ {
+ "epoch": 14.501742160278745,
+ "grad_norm": 0.04980473965406418,
+ "learning_rate": 0.0004998092463832516,
+ "loss": 2.191263198852539,
+ "step": 1044
+ },
+ {
+ "epoch": 14.515679442508711,
+ "grad_norm": 0.048349328339099884,
+ "learning_rate": 0.0004996095143945554,
+ "loss": 2.2167882919311523,
+ "step": 1045
+ },
+ {
+ "epoch": 14.529616724738675,
+ "grad_norm": 0.04662036523222923,
+ "learning_rate": 0.0004994096240011246,
+ "loss": 2.213564395904541,
+ "step": 1046
+ },
+ {
+ "epoch": 14.543554006968641,
+ "grad_norm": 0.04783051833510399,
+ "learning_rate": 0.0004992095753640072,
+ "loss": 2.225752592086792,
+ "step": 1047
+ },
+ {
+ "epoch": 14.557491289198607,
+ "grad_norm": 0.05093488097190857,
+ "learning_rate": 0.0004990093686443791,
+ "loss": 2.2382640838623047,
+ "step": 1048
+ },
+ {
+ "epoch": 14.571428571428571,
+ "grad_norm": 0.05354484170675278,
+ "learning_rate": 0.000498809004003543,
+ "loss": 2.226134777069092,
+ "step": 1049
+ },
+ {
+ "epoch": 14.585365853658537,
+ "grad_norm": 0.04998788982629776,
+ "learning_rate": 0.0004986084816029291,
+ "loss": 2.2372093200683594,
+ "step": 1050
+ },
+ {
+ "epoch": 14.599303135888501,
+ "grad_norm": 0.04952755197882652,
+ "learning_rate": 0.0004984078016040946,
+ "loss": 2.232860565185547,
+ "step": 1051
+ },
+ {
+ "epoch": 14.613240418118467,
+ "grad_norm": 0.04750008508563042,
+ "learning_rate": 0.000498206964168724,
+ "loss": 2.223733901977539,
+ "step": 1052
+ },
+ {
+ "epoch": 14.627177700348431,
+ "grad_norm": 0.04636282101273537,
+ "learning_rate": 0.000498005969458628,
+ "loss": 2.227602958679199,
+ "step": 1053
+ },
+ {
+ "epoch": 14.641114982578397,
+ "grad_norm": 0.0465775765478611,
+ "learning_rate": 0.0004978048176357447,
+ "loss": 2.228397846221924,
+ "step": 1054
+ },
+ {
+ "epoch": 14.655052264808361,
+ "grad_norm": 0.04467611759901047,
+ "learning_rate": 0.0004976035088621385,
+ "loss": 2.2124547958374023,
+ "step": 1055
+ },
+ {
+ "epoch": 14.668989547038327,
+ "grad_norm": 0.04734990745782852,
+ "learning_rate": 0.0004974020433000003,
+ "loss": 2.2278337478637695,
+ "step": 1056
+ },
+ {
+ "epoch": 14.682926829268293,
+ "grad_norm": 0.048105571419000626,
+ "learning_rate": 0.000497200421111647,
+ "loss": 2.2506489753723145,
+ "step": 1057
+ },
+ {
+ "epoch": 14.696864111498257,
+ "grad_norm": 0.04658956825733185,
+ "learning_rate": 0.0004969986424595221,
+ "loss": 2.2176156044006348,
+ "step": 1058
+ },
+ {
+ "epoch": 14.710801393728223,
+ "grad_norm": 0.04707225784659386,
+ "learning_rate": 0.0004967967075061949,
+ "loss": 2.235560894012451,
+ "step": 1059
+ },
+ {
+ "epoch": 14.724738675958188,
+ "grad_norm": 0.04652702435851097,
+ "learning_rate": 0.0004965946164143609,
+ "loss": 2.2421717643737793,
+ "step": 1060
+ },
+ {
+ "epoch": 14.738675958188153,
+ "grad_norm": 0.045091014355421066,
+ "learning_rate": 0.0004963923693468413,
+ "loss": 2.233527183532715,
+ "step": 1061
+ },
+ {
+ "epoch": 14.752613240418118,
+ "grad_norm": 0.0467996746301651,
+ "learning_rate": 0.0004961899664665827,
+ "loss": 2.208993673324585,
+ "step": 1062
+ },
+ {
+ "epoch": 14.766550522648084,
+ "grad_norm": 0.04628554731607437,
+ "learning_rate": 0.0004959874079366576,
+ "loss": 2.230579376220703,
+ "step": 1063
+ },
+ {
+ "epoch": 14.78048780487805,
+ "grad_norm": 0.04599257931113243,
+ "learning_rate": 0.0004957846939202637,
+ "loss": 2.2343482971191406,
+ "step": 1064
+ },
+ {
+ "epoch": 14.794425087108014,
+ "grad_norm": 0.045816246420145035,
+ "learning_rate": 0.000495581824580724,
+ "loss": 2.242190361022949,
+ "step": 1065
+ },
+ {
+ "epoch": 14.80836236933798,
+ "grad_norm": 0.04708870127797127,
+ "learning_rate": 0.0004953788000814866,
+ "loss": 2.2468795776367188,
+ "step": 1066
+ },
+ {
+ "epoch": 14.822299651567944,
+ "grad_norm": 0.049605369567871094,
+ "learning_rate": 0.000495175620586125,
+ "loss": 2.21968412399292,
+ "step": 1067
+ },
+ {
+ "epoch": 14.83623693379791,
+ "grad_norm": 0.044056523591279984,
+ "learning_rate": 0.0004949722862583368,
+ "loss": 2.2316298484802246,
+ "step": 1068
+ },
+ {
+ "epoch": 14.850174216027874,
+ "grad_norm": 0.042938072234392166,
+ "learning_rate": 0.000494768797261945,
+ "loss": 2.252958059310913,
+ "step": 1069
+ },
+ {
+ "epoch": 14.86411149825784,
+ "grad_norm": 0.04511357098817825,
+ "learning_rate": 0.000494565153760897,
+ "loss": 2.2274842262268066,
+ "step": 1070
+ },
+ {
+ "epoch": 14.878048780487806,
+ "grad_norm": 0.04632679745554924,
+ "learning_rate": 0.0004943613559192648,
+ "loss": 2.2324767112731934,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89198606271777,
+ "grad_norm": 0.045614346861839294,
+ "learning_rate": 0.0004941574039012444,
+ "loss": 2.2428746223449707,
+ "step": 1072
+ },
+ {
+ "epoch": 14.905923344947736,
+ "grad_norm": 0.04592366889119148,
+ "learning_rate": 0.0004939532978711566,
+ "loss": 2.2330827713012695,
+ "step": 1073
+ },
+ {
+ "epoch": 14.9198606271777,
+ "grad_norm": 0.04424305632710457,
+ "learning_rate": 0.0004937490379934456,
+ "loss": 2.2334916591644287,
+ "step": 1074
+ },
+ {
+ "epoch": 14.933797909407666,
+ "grad_norm": 0.0463118739426136,
+ "learning_rate": 0.00049354462443268,
+ "loss": 2.2362606525421143,
+ "step": 1075
+ },
+ {
+ "epoch": 14.94773519163763,
+ "grad_norm": 0.04408831149339676,
+ "learning_rate": 0.0004933400573535521,
+ "loss": 2.2407727241516113,
+ "step": 1076
+ },
+ {
+ "epoch": 14.961672473867596,
+ "grad_norm": 0.04300303012132645,
+ "learning_rate": 0.000493135336920878,
+ "loss": 2.222532272338867,
+ "step": 1077
+ },
+ {
+ "epoch": 14.975609756097562,
+ "grad_norm": 0.04180522635579109,
+ "learning_rate": 0.0004929304632995973,
+ "loss": 2.242893695831299,
+ "step": 1078
+ },
+ {
+ "epoch": 14.989547038327526,
+ "grad_norm": 0.043276574462652206,
+ "learning_rate": 0.0004927254366547727,
+ "loss": 2.2241783142089844,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.036254994571208954,
+ "learning_rate": 0.0004925202571515908,
+ "loss": 1.6649963855743408,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 0.6207222938537598,
+ "eval_runtime": 37.3466,
+ "eval_samples_per_second": 65.388,
+ "eval_steps_per_second": 0.536,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013937282229966,
+ "grad_norm": 0.045301277190446854,
+ "learning_rate": 0.0004923149249553608,
+ "loss": 2.184032917022705,
+ "step": 1081
+ },
+ {
+ "epoch": 15.02787456445993,
+ "grad_norm": 0.05988018214702606,
+ "learning_rate": 0.0004921094402315152,
+ "loss": 2.1630473136901855,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041811846689896,
+ "grad_norm": 0.06664786487817764,
+ "learning_rate": 0.0004919038031456093,
+ "loss": 2.172067642211914,
+ "step": 1083
+ },
+ {
+ "epoch": 15.05574912891986,
+ "grad_norm": 0.06994126737117767,
+ "learning_rate": 0.0004916980138633213,
+ "loss": 2.185060501098633,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069686411149826,
+ "grad_norm": 0.07145395129919052,
+ "learning_rate": 0.0004914920725504518,
+ "loss": 2.173717498779297,
+ "step": 1085
+ },
+ {
+ "epoch": 15.08362369337979,
+ "grad_norm": 0.07037318497896194,
+ "learning_rate": 0.000491285979372924,
+ "loss": 2.1818294525146484,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097560975609756,
+ "grad_norm": 0.07752140611410141,
+ "learning_rate": 0.0004910797344967834,
+ "loss": 2.179530620574951,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111498257839722,
+ "grad_norm": 0.07689100503921509,
+ "learning_rate": 0.000490873338088198,
+ "loss": 2.167066812515259,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125435540069686,
+ "grad_norm": 0.07060840725898743,
+ "learning_rate": 0.0004906667903134573,
+ "loss": 2.166823387145996,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139372822299652,
+ "grad_norm": 0.07528708130121231,
+ "learning_rate": 0.0004904600913389735,
+ "loss": 2.1838769912719727,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153310104529616,
+ "grad_norm": 0.07452721893787384,
+ "learning_rate": 0.0004902532413312799,
+ "loss": 2.1846580505371094,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167247386759582,
+ "grad_norm": 0.08076248317956924,
+ "learning_rate": 0.0004900462404570321,
+ "loss": 2.1811747550964355,
+ "step": 1092
+ },
+ {
+ "epoch": 15.181184668989546,
+ "grad_norm": 0.07249059528112411,
+ "learning_rate": 0.0004898390888830067,
+ "loss": 2.187530279159546,
+ "step": 1093
+ },
+ {
+ "epoch": 15.195121951219512,
+ "grad_norm": 0.06610925495624542,
+ "learning_rate": 0.0004896317867761022,
+ "loss": 2.1889264583587646,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209059233449477,
+ "grad_norm": 0.07099732756614685,
+ "learning_rate": 0.000489424334303338,
+ "loss": 2.188560962677002,
+ "step": 1095
+ },
+ {
+ "epoch": 15.222996515679442,
+ "grad_norm": 0.0737202987074852,
+ "learning_rate": 0.0004892167316318548,
+ "loss": 2.186715841293335,
+ "step": 1096
+ },
+ {
+ "epoch": 15.236933797909408,
+ "grad_norm": 0.06986237317323685,
+ "learning_rate": 0.0004890089789289147,
+ "loss": 2.1962318420410156,
+ "step": 1097
+ },
+ {
+ "epoch": 15.250871080139373,
+ "grad_norm": 0.07112278789281845,
+ "learning_rate": 0.0004888010763618997,
+ "loss": 2.194401502609253,
+ "step": 1098
+ },
+ {
+ "epoch": 15.264808362369338,
+ "grad_norm": 0.06746342778205872,
+ "learning_rate": 0.0004885930240983136,
+ "loss": 2.188718795776367,
+ "step": 1099
+ },
+ {
+ "epoch": 15.278745644599303,
+ "grad_norm": 0.06471215933561325,
+ "learning_rate": 0.0004883848223057801,
+ "loss": 2.198849678039551,
+ "step": 1100
+ },
+ {
+ "epoch": 15.292682926829269,
+ "grad_norm": 0.05913659557700157,
+ "learning_rate": 0.00048817647115204386,
+ "loss": 2.183661937713623,
+ "step": 1101
+ },
+ {
+ "epoch": 15.306620209059233,
+ "grad_norm": 0.060666151344776154,
+ "learning_rate": 0.00048796797080496936,
+ "loss": 2.1805803775787354,
+ "step": 1102
+ },
+ {
+ "epoch": 15.320557491289199,
+ "grad_norm": 0.06026238948106766,
+ "learning_rate": 0.00048775932143254176,
+ "loss": 2.1778993606567383,
+ "step": 1103
+ },
+ {
+ "epoch": 15.334494773519165,
+ "grad_norm": 0.054371971637010574,
+ "learning_rate": 0.0004875505232028661,
+ "loss": 2.193100690841675,
+ "step": 1104
+ },
+ {
+ "epoch": 15.348432055749129,
+ "grad_norm": 0.051084667444229126,
+ "learning_rate": 0.0004873415762841672,
+ "loss": 2.1867239475250244,
+ "step": 1105
+ },
+ {
+ "epoch": 15.362369337979095,
+ "grad_norm": 0.05281403660774231,
+ "learning_rate": 0.00048713248084478986,
+ "loss": 2.1998157501220703,
+ "step": 1106
+ },
+ {
+ "epoch": 15.376306620209059,
+ "grad_norm": 0.04957163333892822,
+ "learning_rate": 0.0004869232370531986,
+ "loss": 2.1781673431396484,
+ "step": 1107
+ },
+ {
+ "epoch": 15.390243902439025,
+ "grad_norm": 0.04794200882315636,
+ "learning_rate": 0.0004867138450779773,
+ "loss": 2.1990952491760254,
+ "step": 1108
+ },
+ {
+ "epoch": 15.404181184668989,
+ "grad_norm": 0.05102508142590523,
+ "learning_rate": 0.0004865043050878293,
+ "loss": 2.199371814727783,
+ "step": 1109
+ },
+ {
+ "epoch": 15.418118466898955,
+ "grad_norm": 0.049935199320316315,
+ "learning_rate": 0.0004862946172515771,
+ "loss": 2.191676616668701,
+ "step": 1110
+ },
+ {
+ "epoch": 15.43205574912892,
+ "grad_norm": 0.05205542966723442,
+ "learning_rate": 0.0004860847817381625,
+ "loss": 2.2015931606292725,
+ "step": 1111
+ },
+ {
+ "epoch": 15.445993031358885,
+ "grad_norm": 0.051782310009002686,
+ "learning_rate": 0.0004858747987166463,
+ "loss": 2.200479030609131,
+ "step": 1112
+ },
+ {
+ "epoch": 15.45993031358885,
+ "grad_norm": 0.04914203658699989,
+ "learning_rate": 0.00048566466835620774,
+ "loss": 2.19816517829895,
+ "step": 1113
+ },
+ {
+ "epoch": 15.473867595818815,
+ "grad_norm": 0.04609949141740799,
+ "learning_rate": 0.0004854543908261453,
+ "loss": 2.1905436515808105,
+ "step": 1114
+ },
+ {
+ "epoch": 15.487804878048781,
+ "grad_norm": 0.04916610196232796,
+ "learning_rate": 0.0004852439662958756,
+ "loss": 2.203505516052246,
+ "step": 1115
+ },
+ {
+ "epoch": 15.501742160278745,
+ "grad_norm": 0.04806613177061081,
+ "learning_rate": 0.000485033394934934,
+ "loss": 2.2004809379577637,
+ "step": 1116
+ },
+ {
+ "epoch": 15.515679442508711,
+ "grad_norm": 0.04937082529067993,
+ "learning_rate": 0.000484822676912974,
+ "loss": 2.1941723823547363,
+ "step": 1117
+ },
+ {
+ "epoch": 15.529616724738675,
+ "grad_norm": 0.049360860139131546,
+ "learning_rate": 0.0004846118123997674,
+ "loss": 2.1975173950195312,
+ "step": 1118
+ },
+ {
+ "epoch": 15.543554006968641,
+ "grad_norm": 0.04772219434380531,
+ "learning_rate": 0.00048440080156520387,
+ "loss": 2.211244583129883,
+ "step": 1119
+ },
+ {
+ "epoch": 15.557491289198607,
+ "grad_norm": 0.04961530491709709,
+ "learning_rate": 0.0004841896445792909,
+ "loss": 2.191709041595459,
+ "step": 1120
+ },
+ {
+ "epoch": 15.571428571428571,
+ "grad_norm": 0.049396563321352005,
+ "learning_rate": 0.000483978341612154,
+ "loss": 2.2178797721862793,
+ "step": 1121
+ },
+ {
+ "epoch": 15.585365853658537,
+ "grad_norm": 0.0474911704659462,
+ "learning_rate": 0.0004837668928340362,
+ "loss": 2.1883950233459473,
+ "step": 1122
+ },
+ {
+ "epoch": 15.599303135888501,
+ "grad_norm": 0.0497126504778862,
+ "learning_rate": 0.0004835552984152978,
+ "loss": 2.194390296936035,
+ "step": 1123
+ },
+ {
+ "epoch": 15.613240418118467,
+ "grad_norm": 0.04819052666425705,
+ "learning_rate": 0.00048334355852641664,
+ "loss": 2.2060859203338623,
+ "step": 1124
+ },
+ {
+ "epoch": 15.627177700348431,
+ "grad_norm": 0.048422664403915405,
+ "learning_rate": 0.0004831316733379879,
+ "loss": 2.203671932220459,
+ "step": 1125
+ },
+ {
+ "epoch": 15.641114982578397,
+ "grad_norm": 0.0464651882648468,
+ "learning_rate": 0.0004829196430207235,
+ "loss": 2.193103313446045,
+ "step": 1126
+ },
+ {
+ "epoch": 15.655052264808361,
+ "grad_norm": 0.04777771607041359,
+ "learning_rate": 0.00048270746774545237,
+ "loss": 2.190608501434326,
+ "step": 1127
+ },
+ {
+ "epoch": 15.668989547038327,
+ "grad_norm": 0.048422545194625854,
+ "learning_rate": 0.0004824951476831204,
+ "loss": 2.191826105117798,
+ "step": 1128
+ },
+ {
+ "epoch": 15.682926829268293,
+ "grad_norm": 0.04907011240720749,
+ "learning_rate": 0.00048228268300479015,
+ "loss": 2.2020134925842285,
+ "step": 1129
+ },
+ {
+ "epoch": 15.696864111498257,
+ "grad_norm": 0.04749045521020889,
+ "learning_rate": 0.0004820700738816403,
+ "loss": 2.1956100463867188,
+ "step": 1130
+ },
+ {
+ "epoch": 15.710801393728223,
+ "grad_norm": 0.04741237685084343,
+ "learning_rate": 0.0004818573204849664,
+ "loss": 2.1953983306884766,
+ "step": 1131
+ },
+ {
+ "epoch": 15.724738675958188,
+ "grad_norm": 0.048426248133182526,
+ "learning_rate": 0.00048164442298617987,
+ "loss": 2.1906962394714355,
+ "step": 1132
+ },
+ {
+ "epoch": 15.738675958188153,
+ "grad_norm": 0.04688018932938576,
+ "learning_rate": 0.00048143138155680844,
+ "loss": 2.2023704051971436,
+ "step": 1133
+ },
+ {
+ "epoch": 15.752613240418118,
+ "grad_norm": 0.04573274403810501,
+ "learning_rate": 0.0004812181963684958,
+ "loss": 2.1997122764587402,
+ "step": 1134
+ },
+ {
+ "epoch": 15.766550522648084,
+ "grad_norm": 0.04500049352645874,
+ "learning_rate": 0.00048100486759300134,
+ "loss": 2.203868865966797,
+ "step": 1135
+ },
+ {
+ "epoch": 15.78048780487805,
+ "grad_norm": 0.046841904520988464,
+ "learning_rate": 0.00048079139540220024,
+ "loss": 2.2186760902404785,
+ "step": 1136
+ },
+ {
+ "epoch": 15.794425087108014,
+ "grad_norm": 0.04670709744095802,
+ "learning_rate": 0.0004805777799680831,
+ "loss": 2.2019705772399902,
+ "step": 1137
+ },
+ {
+ "epoch": 15.80836236933798,
+ "grad_norm": 0.04602878540754318,
+ "learning_rate": 0.0004803640214627561,
+ "loss": 2.21022891998291,
+ "step": 1138
+ },
+ {
+ "epoch": 15.822299651567944,
+ "grad_norm": 0.045200031250715256,
+ "learning_rate": 0.0004801501200584406,
+ "loss": 2.2007641792297363,
+ "step": 1139
+ },
+ {
+ "epoch": 15.83623693379791,
+ "grad_norm": 0.04749643802642822,
+ "learning_rate": 0.000479936075927473,
+ "loss": 2.2098441123962402,
+ "step": 1140
+ },
+ {
+ "epoch": 15.850174216027874,
+ "grad_norm": 0.04594074562191963,
+ "learning_rate": 0.000479721889242305,
+ "loss": 2.204615354537964,
+ "step": 1141
+ },
+ {
+ "epoch": 15.86411149825784,
+ "grad_norm": 0.04540146514773369,
+ "learning_rate": 0.0004795075601755027,
+ "loss": 2.2012791633605957,
+ "step": 1142
+ },
+ {
+ "epoch": 15.878048780487806,
+ "grad_norm": 0.04618830978870392,
+ "learning_rate": 0.00047929308889974737,
+ "loss": 2.1914544105529785,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89198606271777,
+ "grad_norm": 0.0450817234814167,
+ "learning_rate": 0.0004790784755878346,
+ "loss": 2.200557231903076,
+ "step": 1144
+ },
+ {
+ "epoch": 15.905923344947736,
+ "grad_norm": 0.04639074578881264,
+ "learning_rate": 0.00047886372041267434,
+ "loss": 2.204821825027466,
+ "step": 1145
+ },
+ {
+ "epoch": 15.9198606271777,
+ "grad_norm": 0.04546049237251282,
+ "learning_rate": 0.0004786488235472909,
+ "loss": 2.213542938232422,
+ "step": 1146
+ },
+ {
+ "epoch": 15.933797909407666,
+ "grad_norm": 0.04436152055859566,
+ "learning_rate": 0.0004784337851648231,
+ "loss": 2.1992855072021484,
+ "step": 1147
+ },
+ {
+ "epoch": 15.94773519163763,
+ "grad_norm": 0.04665682092308998,
+ "learning_rate": 0.0004782186054385233,
+ "loss": 2.211052417755127,
+ "step": 1148
+ },
+ {
+ "epoch": 15.961672473867596,
+ "grad_norm": 0.04532767832279205,
+ "learning_rate": 0.0004780032845417579,
+ "loss": 2.2086901664733887,
+ "step": 1149
+ },
+ {
+ "epoch": 15.975609756097562,
+ "grad_norm": 0.04679917171597481,
+ "learning_rate": 0.000477787822648007,
+ "loss": 2.1904289722442627,
+ "step": 1150
+ },
+ {
+ "epoch": 15.989547038327526,
+ "grad_norm": 0.04696613550186157,
+ "learning_rate": 0.00047757221993086443,
+ "loss": 2.17523193359375,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.03984897583723068,
+ "learning_rate": 0.00047735647656403754,
+ "loss": 1.6456931829452515,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 0.6217544674873352,
+ "eval_runtime": 36.2031,
+ "eval_samples_per_second": 67.453,
+ "eval_steps_per_second": 0.552,
+ "step": 1152
+ },
+ {
+ "epoch": 16.013937282229964,
+ "grad_norm": 0.048258837312459946,
+ "learning_rate": 0.0004771405927213467,
+ "loss": 2.149430751800537,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027874564459932,
+ "grad_norm": 0.059622205793857574,
+ "learning_rate": 0.0004769245685767255,
+ "loss": 2.146239757537842,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041811846689896,
+ "grad_norm": 0.06228978559374809,
+ "learning_rate": 0.00047670840430422113,
+ "loss": 2.1373820304870605,
+ "step": 1155
+ },
+ {
+ "epoch": 16.05574912891986,
+ "grad_norm": 0.058429088443517685,
+ "learning_rate": 0.0004764921000779928,
+ "loss": 2.153956413269043,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069686411149824,
+ "grad_norm": 0.0544302761554718,
+ "learning_rate": 0.0004762756560723131,
+ "loss": 2.1617636680603027,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083623693379792,
+ "grad_norm": 0.050771284848451614,
+ "learning_rate": 0.0004760590724615671,
+ "loss": 2.134815216064453,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097560975609756,
+ "grad_norm": 0.05482947453856468,
+ "learning_rate": 0.0004758423494202522,
+ "loss": 2.140288829803467,
+ "step": 1159
+ },
+ {
+ "epoch": 16.11149825783972,
+ "grad_norm": 0.06205987557768822,
+ "learning_rate": 0.0004756254871229782,
+ "loss": 2.1369926929473877,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125435540069688,
+ "grad_norm": 0.060936298221349716,
+ "learning_rate": 0.00047540848574446724,
+ "loss": 2.1448073387145996,
+ "step": 1161
+ },
+ {
+ "epoch": 16.139372822299652,
+ "grad_norm": 0.05571967735886574,
+ "learning_rate": 0.0004751913454595535,
+ "loss": 2.1435866355895996,
+ "step": 1162
+ },
+ {
+ "epoch": 16.153310104529616,
+ "grad_norm": 0.0552542470395565,
+ "learning_rate": 0.0004749740664431828,
+ "loss": 2.149778366088867,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16724738675958,
+ "grad_norm": 0.05414848402142525,
+ "learning_rate": 0.000474756648870413,
+ "loss": 2.149887800216675,
+ "step": 1164
+ },
+ {
+ "epoch": 16.181184668989548,
+ "grad_norm": 0.05441379174590111,
+ "learning_rate": 0.0004745390929164134,
+ "loss": 2.15389347076416,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195121951219512,
+ "grad_norm": 0.05403896048665047,
+ "learning_rate": 0.0004743213987564651,
+ "loss": 2.1331732273101807,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209059233449477,
+ "grad_norm": 0.054594095796346664,
+ "learning_rate": 0.0004741035665659603,
+ "loss": 2.158886671066284,
+ "step": 1167
+ },
+ {
+ "epoch": 16.222996515679444,
+ "grad_norm": 0.06188303232192993,
+ "learning_rate": 0.00047388559652040236,
+ "loss": 2.1471951007843018,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23693379790941,
+ "grad_norm": 0.062315408140420914,
+ "learning_rate": 0.0004736674887954059,
+ "loss": 2.147031307220459,
+ "step": 1169
+ },
+ {
+ "epoch": 16.250871080139373,
+ "grad_norm": 0.06116636097431183,
+ "learning_rate": 0.0004734492435666963,
+ "loss": 2.153916358947754,
+ "step": 1170
+ },
+ {
+ "epoch": 16.264808362369337,
+ "grad_norm": 0.05576318874955177,
+ "learning_rate": 0.0004732308610101099,
+ "loss": 2.1545660495758057,
+ "step": 1171
+ },
+ {
+ "epoch": 16.278745644599304,
+ "grad_norm": 0.05602003261446953,
+ "learning_rate": 0.00047301234130159346,
+ "loss": 2.1588096618652344,
+ "step": 1172
+ },
+ {
+ "epoch": 16.29268292682927,
+ "grad_norm": 0.05946209281682968,
+ "learning_rate": 0.00047279368461720445,
+ "loss": 2.1761999130249023,
+ "step": 1173
+ },
+ {
+ "epoch": 16.306620209059233,
+ "grad_norm": 0.062074463814496994,
+ "learning_rate": 0.0004725748911331106,
+ "loss": 2.168569326400757,
+ "step": 1174
+ },
+ {
+ "epoch": 16.320557491289197,
+ "grad_norm": 0.05756473168730736,
+ "learning_rate": 0.0004723559610255898,
+ "loss": 2.1530699729919434,
+ "step": 1175
+ },
+ {
+ "epoch": 16.334494773519165,
+ "grad_norm": 0.05881023779511452,
+ "learning_rate": 0.0004721368944710302,
+ "loss": 2.1721291542053223,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34843205574913,
+ "grad_norm": 0.06223367527127266,
+ "learning_rate": 0.00047191769164592974,
+ "loss": 2.168361186981201,
+ "step": 1177
+ },
+ {
+ "epoch": 16.362369337979093,
+ "grad_norm": 0.056093230843544006,
+ "learning_rate": 0.000471698352726896,
+ "loss": 2.164424419403076,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37630662020906,
+ "grad_norm": 0.06118649244308472,
+ "learning_rate": 0.0004714788778906467,
+ "loss": 2.158644199371338,
+ "step": 1179
+ },
+ {
+ "epoch": 16.390243902439025,
+ "grad_norm": 0.06548523902893066,
+ "learning_rate": 0.0004712592673140084,
+ "loss": 2.1728553771972656,
+ "step": 1180
+ },
+ {
+ "epoch": 16.40418118466899,
+ "grad_norm": 0.06719230860471725,
+ "learning_rate": 0.00047103952117391764,
+ "loss": 2.1555490493774414,
+ "step": 1181
+ },
+ {
+ "epoch": 16.418118466898953,
+ "grad_norm": 0.06181609630584717,
+ "learning_rate": 0.00047081963964741986,
+ "loss": 2.162527561187744,
+ "step": 1182
+ },
+ {
+ "epoch": 16.43205574912892,
+ "grad_norm": 0.05706655979156494,
+ "learning_rate": 0.0004705996229116696,
+ "loss": 2.1423912048339844,
+ "step": 1183
+ },
+ {
+ "epoch": 16.445993031358885,
+ "grad_norm": 0.05518640577793121,
+ "learning_rate": 0.0004703794711439304,
+ "loss": 2.1653032302856445,
+ "step": 1184
+ },
+ {
+ "epoch": 16.45993031358885,
+ "grad_norm": 0.05664249137043953,
+ "learning_rate": 0.0004701591845215744,
+ "loss": 2.166928291320801,
+ "step": 1185
+ },
+ {
+ "epoch": 16.473867595818817,
+ "grad_norm": 0.05873657390475273,
+ "learning_rate": 0.00046993876322208274,
+ "loss": 2.1778905391693115,
+ "step": 1186
+ },
+ {
+ "epoch": 16.48780487804878,
+ "grad_norm": 0.05944420397281647,
+ "learning_rate": 0.0004697182074230448,
+ "loss": 2.177402973175049,
+ "step": 1187
+ },
+ {
+ "epoch": 16.501742160278745,
+ "grad_norm": 0.059531547129154205,
+ "learning_rate": 0.0004694975173021586,
+ "loss": 2.1766552925109863,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51567944250871,
+ "grad_norm": 0.05503744259476662,
+ "learning_rate": 0.0004692766930372299,
+ "loss": 2.167525291442871,
+ "step": 1189
+ },
+ {
+ "epoch": 16.529616724738677,
+ "grad_norm": 0.05157329514622688,
+ "learning_rate": 0.00046905573480617285,
+ "loss": 2.1732568740844727,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54355400696864,
+ "grad_norm": 0.05355038493871689,
+ "learning_rate": 0.00046883464278700966,
+ "loss": 2.1730806827545166,
+ "step": 1191
+ },
+ {
+ "epoch": 16.557491289198605,
+ "grad_norm": 0.05118329077959061,
+ "learning_rate": 0.0004686134171578702,
+ "loss": 2.1696338653564453,
+ "step": 1192
+ },
+ {
+ "epoch": 16.571428571428573,
+ "grad_norm": 0.05029391869902611,
+ "learning_rate": 0.00046839205809699183,
+ "loss": 2.195044994354248,
+ "step": 1193
+ },
+ {
+ "epoch": 16.585365853658537,
+ "grad_norm": 0.050039373338222504,
+ "learning_rate": 0.0004681705657827195,
+ "loss": 2.1581506729125977,
+ "step": 1194
+ },
+ {
+ "epoch": 16.5993031358885,
+ "grad_norm": 0.0545598603785038,
+ "learning_rate": 0.0004679489403935058,
+ "loss": 2.1650285720825195,
+ "step": 1195
+ },
+ {
+ "epoch": 16.613240418118465,
+ "grad_norm": 0.05268346890807152,
+ "learning_rate": 0.00046772718210791005,
+ "loss": 2.184382438659668,
+ "step": 1196
+ },
+ {
+ "epoch": 16.627177700348433,
+ "grad_norm": 0.05236094444990158,
+ "learning_rate": 0.00046750529110459903,
+ "loss": 2.167102813720703,
+ "step": 1197
+ },
+ {
+ "epoch": 16.641114982578397,
+ "grad_norm": 0.052183765918016434,
+ "learning_rate": 0.0004672832675623463,
+ "loss": 2.174470901489258,
+ "step": 1198
+ },
+ {
+ "epoch": 16.65505226480836,
+ "grad_norm": 0.049528587609529495,
+ "learning_rate": 0.0004670611116600322,
+ "loss": 2.1593801975250244,
+ "step": 1199
+ },
+ {
+ "epoch": 16.66898954703833,
+ "grad_norm": 0.05077743902802467,
+ "learning_rate": 0.00046683882357664375,
+ "loss": 2.1829850673675537,
+ "step": 1200
+ },
+ {
+ "epoch": 16.682926829268293,
+ "grad_norm": 0.049165278673172,
+ "learning_rate": 0.0004666164034912744,
+ "loss": 2.1820642948150635,
+ "step": 1201
+ },
+ {
+ "epoch": 16.696864111498257,
+ "grad_norm": 0.049670539796352386,
+ "learning_rate": 0.00046639385158312406,
+ "loss": 2.1617588996887207,
+ "step": 1202
+ },
+ {
+ "epoch": 16.71080139372822,
+ "grad_norm": 0.05188990756869316,
+ "learning_rate": 0.00046617116803149874,
+ "loss": 2.1910011768341064,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72473867595819,
+ "grad_norm": 0.05106198787689209,
+ "learning_rate": 0.00046594835301581053,
+ "loss": 2.1670002937316895,
+ "step": 1204
+ },
+ {
+ "epoch": 16.738675958188153,
+ "grad_norm": 0.052352480590343475,
+ "learning_rate": 0.00046572540671557745,
+ "loss": 2.1804449558258057,
+ "step": 1205
+ },
+ {
+ "epoch": 16.752613240418118,
+ "grad_norm": 0.05456020310521126,
+ "learning_rate": 0.00046550232931042346,
+ "loss": 2.183560848236084,
+ "step": 1206
+ },
+ {
+ "epoch": 16.766550522648085,
+ "grad_norm": 0.05248325690627098,
+ "learning_rate": 0.00046527912098007787,
+ "loss": 2.1866538524627686,
+ "step": 1207
+ },
+ {
+ "epoch": 16.78048780487805,
+ "grad_norm": 0.052194926887750626,
+ "learning_rate": 0.00046505578190437564,
+ "loss": 2.179544448852539,
+ "step": 1208
+ },
+ {
+ "epoch": 16.794425087108014,
+ "grad_norm": 0.048344213515520096,
+ "learning_rate": 0.0004648323122632569,
+ "loss": 2.1895692348480225,
+ "step": 1209
+ },
+ {
+ "epoch": 16.808362369337978,
+ "grad_norm": 0.053263742476701736,
+ "learning_rate": 0.0004646087122367673,
+ "loss": 2.1922311782836914,
+ "step": 1210
+ },
+ {
+ "epoch": 16.822299651567945,
+ "grad_norm": 0.05046837404370308,
+ "learning_rate": 0.00046438498200505727,
+ "loss": 2.1986570358276367,
+ "step": 1211
+ },
+ {
+ "epoch": 16.83623693379791,
+ "grad_norm": 0.04699976369738579,
+ "learning_rate": 0.0004641611217483821,
+ "loss": 2.168755531311035,
+ "step": 1212
+ },
+ {
+ "epoch": 16.850174216027874,
+ "grad_norm": 0.0500732958316803,
+ "learning_rate": 0.00046393713164710217,
+ "loss": 2.1747398376464844,
+ "step": 1213
+ },
+ {
+ "epoch": 16.86411149825784,
+ "grad_norm": 0.048436183482408524,
+ "learning_rate": 0.00046371301188168204,
+ "loss": 2.181175947189331,
+ "step": 1214
+ },
+ {
+ "epoch": 16.878048780487806,
+ "grad_norm": 0.04788931831717491,
+ "learning_rate": 0.0004634887626326911,
+ "loss": 2.1619675159454346,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89198606271777,
+ "grad_norm": 0.04881543293595314,
+ "learning_rate": 0.00046326438408080293,
+ "loss": 2.1840174198150635,
+ "step": 1216
+ },
+ {
+ "epoch": 16.905923344947734,
+ "grad_norm": 0.049969445914030075,
+ "learning_rate": 0.00046303987640679517,
+ "loss": 2.199573040008545,
+ "step": 1217
+ },
+ {
+ "epoch": 16.9198606271777,
+ "grad_norm": 0.048629943281412125,
+ "learning_rate": 0.0004628152397915498,
+ "loss": 2.1661055088043213,
+ "step": 1218
+ },
+ {
+ "epoch": 16.933797909407666,
+ "grad_norm": 0.051450759172439575,
+ "learning_rate": 0.00046259047441605215,
+ "loss": 2.182037591934204,
+ "step": 1219
+ },
+ {
+ "epoch": 16.94773519163763,
+ "grad_norm": 0.05253942683339119,
+ "learning_rate": 0.0004623655804613919,
+ "loss": 2.1848878860473633,
+ "step": 1220
+ },
+ {
+ "epoch": 16.961672473867594,
+ "grad_norm": 0.0511169359087944,
+ "learning_rate": 0.00046214055810876194,
+ "loss": 2.181640863418579,
+ "step": 1221
+ },
+ {
+ "epoch": 16.975609756097562,
+ "grad_norm": 0.04952972009778023,
+ "learning_rate": 0.00046191540753945886,
+ "loss": 2.1824798583984375,
+ "step": 1222
+ },
+ {
+ "epoch": 16.989547038327526,
+ "grad_norm": 0.048745568841695786,
+ "learning_rate": 0.00046169012893488204,
+ "loss": 2.175996780395508,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.039088211953639984,
+ "learning_rate": 0.00046146472247653484,
+ "loss": 1.6450124979019165,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 0.6228054761886597,
+ "eval_runtime": 36.2135,
+ "eval_samples_per_second": 67.433,
+ "eval_steps_per_second": 0.552,
+ "step": 1224
+ },
+ {
+ "epoch": 17.013937282229964,
+ "grad_norm": 0.05182459577918053,
+ "learning_rate": 0.0004612391883460228,
+ "loss": 2.13407826423645,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027874564459932,
+ "grad_norm": 0.06349381804466248,
+ "learning_rate": 0.00046101352672505493,
+ "loss": 2.124786615371704,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041811846689896,
+ "grad_norm": 0.06030651181936264,
+ "learning_rate": 0.0004607877377954426,
+ "loss": 2.1319074630737305,
+ "step": 1227
+ },
+ {
+ "epoch": 17.05574912891986,
+ "grad_norm": 0.05942157283425331,
+ "learning_rate": 0.00046056182173909995,
+ "loss": 2.1155600547790527,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069686411149824,
+ "grad_norm": 0.05690222606062889,
+ "learning_rate": 0.0004603357787380435,
+ "loss": 2.1224000453948975,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083623693379792,
+ "grad_norm": 0.05549716204404831,
+ "learning_rate": 0.0004601096089743919,
+ "loss": 2.138361692428589,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097560975609756,
+ "grad_norm": 0.05572805553674698,
+ "learning_rate": 0.0004598833126303661,
+ "loss": 2.108839511871338,
+ "step": 1231
+ },
+ {
+ "epoch": 17.11149825783972,
+ "grad_norm": 0.05359194055199623,
+ "learning_rate": 0.00045965688988828884,
+ "loss": 2.111232042312622,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125435540069688,
+ "grad_norm": 0.05284698307514191,
+ "learning_rate": 0.00045943034093058507,
+ "loss": 2.111241102218628,
+ "step": 1233
+ },
+ {
+ "epoch": 17.139372822299652,
+ "grad_norm": 0.05522393807768822,
+ "learning_rate": 0.000459203665939781,
+ "loss": 2.1056082248687744,
+ "step": 1234
+ },
+ {
+ "epoch": 17.153310104529616,
+ "grad_norm": 0.05988268554210663,
+ "learning_rate": 0.00045897686509850487,
+ "loss": 2.1245055198669434,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16724738675958,
+ "grad_norm": 0.05882375314831734,
+ "learning_rate": 0.0004587499385894856,
+ "loss": 2.12105655670166,
+ "step": 1236
+ },
+ {
+ "epoch": 17.181184668989548,
+ "grad_norm": 0.05429045483469963,
+ "learning_rate": 0.000458522886595554,
+ "loss": 2.1340696811676025,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195121951219512,
+ "grad_norm": 0.05428321287035942,
+ "learning_rate": 0.0004582957092996418,
+ "loss": 2.125894546508789,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209059233449477,
+ "grad_norm": 0.05918198451399803,
+ "learning_rate": 0.0004580684068847817,
+ "loss": 2.115187168121338,
+ "step": 1239
+ },
+ {
+ "epoch": 17.222996515679444,
+ "grad_norm": 0.05467062070965767,
+ "learning_rate": 0.0004578409795341069,
+ "loss": 2.1267573833465576,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23693379790941,
+ "grad_norm": 0.05117730423808098,
+ "learning_rate": 0.0004576134274308517,
+ "loss": 2.131983757019043,
+ "step": 1241
+ },
+ {
+ "epoch": 17.250871080139373,
+ "grad_norm": 0.05354353412985802,
+ "learning_rate": 0.0004573857507583506,
+ "loss": 2.139024019241333,
+ "step": 1242
+ },
+ {
+ "epoch": 17.264808362369337,
+ "grad_norm": 0.05508217588067055,
+ "learning_rate": 0.00045715794970003874,
+ "loss": 2.123086929321289,
+ "step": 1243
+ },
+ {
+ "epoch": 17.278745644599304,
+ "grad_norm": 0.056819524616003036,
+ "learning_rate": 0.0004569300244394513,
+ "loss": 2.133049488067627,
+ "step": 1244
+ },
+ {
+ "epoch": 17.29268292682927,
+ "grad_norm": 0.06116129457950592,
+ "learning_rate": 0.0004567019751602234,
+ "loss": 2.146721601486206,
+ "step": 1245
+ },
+ {
+ "epoch": 17.306620209059233,
+ "grad_norm": 0.06482621282339096,
+ "learning_rate": 0.00045647380204609034,
+ "loss": 2.133073568344116,
+ "step": 1246
+ },
+ {
+ "epoch": 17.320557491289197,
+ "grad_norm": 0.06122269853949547,
+ "learning_rate": 0.00045624550528088704,
+ "loss": 2.1292078495025635,
+ "step": 1247
+ },
+ {
+ "epoch": 17.334494773519165,
+ "grad_norm": 0.060462113469839096,
+ "learning_rate": 0.00045601708504854803,
+ "loss": 2.1301801204681396,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34843205574913,
+ "grad_norm": 0.05775533244013786,
+ "learning_rate": 0.0004557885415331074,
+ "loss": 2.160749673843384,
+ "step": 1249
+ },
+ {
+ "epoch": 17.362369337979093,
+ "grad_norm": 0.05933118611574173,
+ "learning_rate": 0.00045555987491869865,
+ "loss": 2.138021469116211,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37630662020906,
+ "grad_norm": 0.05498939007520676,
+ "learning_rate": 0.00045533108538955416,
+ "loss": 2.1443264484405518,
+ "step": 1251
+ },
+ {
+ "epoch": 17.390243902439025,
+ "grad_norm": 0.05720233544707298,
+ "learning_rate": 0.0004551021731300055,
+ "loss": 2.1400699615478516,
+ "step": 1252
+ },
+ {
+ "epoch": 17.40418118466899,
+ "grad_norm": 0.05569229647517204,
+ "learning_rate": 0.0004548731383244834,
+ "loss": 2.1375250816345215,
+ "step": 1253
+ },
+ {
+ "epoch": 17.418118466898953,
+ "grad_norm": 0.05508109927177429,
+ "learning_rate": 0.0004546439811575169,
+ "loss": 2.1352083683013916,
+ "step": 1254
+ },
+ {
+ "epoch": 17.43205574912892,
+ "grad_norm": 0.057038020342588425,
+ "learning_rate": 0.00045441470181373375,
+ "loss": 2.1290454864501953,
+ "step": 1255
+ },
+ {
+ "epoch": 17.445993031358885,
+ "grad_norm": 0.05938584357500076,
+ "learning_rate": 0.0004541853004778603,
+ "loss": 2.14906644821167,
+ "step": 1256
+ },
+ {
+ "epoch": 17.45993031358885,
+ "grad_norm": 0.05654401332139969,
+ "learning_rate": 0.00045395577733472087,
+ "loss": 2.133410692214966,
+ "step": 1257
+ },
+ {
+ "epoch": 17.473867595818817,
+ "grad_norm": 0.05399394780397415,
+ "learning_rate": 0.0004537261325692383,
+ "loss": 2.14622163772583,
+ "step": 1258
+ },
+ {
+ "epoch": 17.48780487804878,
+ "grad_norm": 0.05683310702443123,
+ "learning_rate": 0.0004534963663664332,
+ "loss": 2.1482772827148438,
+ "step": 1259
+ },
+ {
+ "epoch": 17.501742160278745,
+ "grad_norm": 0.06314415484666824,
+ "learning_rate": 0.00045326647891142394,
+ "loss": 2.150238037109375,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51567944250871,
+ "grad_norm": 0.0595875009894371,
+ "learning_rate": 0.0004530364703894268,
+ "loss": 2.137575626373291,
+ "step": 1261
+ },
+ {
+ "epoch": 17.529616724738677,
+ "grad_norm": 0.05534850060939789,
+ "learning_rate": 0.0004528063409857554,
+ "loss": 2.169827461242676,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54355400696864,
+ "grad_norm": 0.06096148118376732,
+ "learning_rate": 0.0004525760908858209,
+ "loss": 2.142652988433838,
+ "step": 1263
+ },
+ {
+ "epoch": 17.557491289198605,
+ "grad_norm": 0.06313963979482651,
+ "learning_rate": 0.00045234572027513174,
+ "loss": 2.152920722961426,
+ "step": 1264
+ },
+ {
+ "epoch": 17.571428571428573,
+ "grad_norm": 0.058604612946510315,
+ "learning_rate": 0.00045211522933929317,
+ "loss": 2.1487669944763184,
+ "step": 1265
+ },
+ {
+ "epoch": 17.585365853658537,
+ "grad_norm": 0.056736089289188385,
+ "learning_rate": 0.0004518846182640077,
+ "loss": 2.1435699462890625,
+ "step": 1266
+ },
+ {
+ "epoch": 17.5993031358885,
+ "grad_norm": 0.05706419423222542,
+ "learning_rate": 0.0004516538872350744,
+ "loss": 2.1586122512817383,
+ "step": 1267
+ },
+ {
+ "epoch": 17.613240418118465,
+ "grad_norm": 0.05560465529561043,
+ "learning_rate": 0.0004514230364383893,
+ "loss": 2.177081346511841,
+ "step": 1268
+ },
+ {
+ "epoch": 17.627177700348433,
+ "grad_norm": 0.05601844564080238,
+ "learning_rate": 0.0004511920660599444,
+ "loss": 2.1478757858276367,
+ "step": 1269
+ },
+ {
+ "epoch": 17.641114982578397,
+ "grad_norm": 0.05756781995296478,
+ "learning_rate": 0.0004509609762858287,
+ "loss": 2.1525440216064453,
+ "step": 1270
+ },
+ {
+ "epoch": 17.65505226480836,
+ "grad_norm": 0.0531681589782238,
+ "learning_rate": 0.0004507297673022269,
+ "loss": 2.1489810943603516,
+ "step": 1271
+ },
+ {
+ "epoch": 17.66898954703833,
+ "grad_norm": 0.05216185003519058,
+ "learning_rate": 0.0004504984392954199,
+ "loss": 2.144932746887207,
+ "step": 1272
+ },
+ {
+ "epoch": 17.682926829268293,
+ "grad_norm": 0.052748095244169235,
+ "learning_rate": 0.00045026699245178444,
+ "loss": 2.148977756500244,
+ "step": 1273
+ },
+ {
+ "epoch": 17.696864111498257,
+ "grad_norm": 0.051663246005773544,
+ "learning_rate": 0.0004500354269577932,
+ "loss": 2.1617603302001953,
+ "step": 1274
+ },
+ {
+ "epoch": 17.71080139372822,
+ "grad_norm": 0.05068802461028099,
+ "learning_rate": 0.00044980374300001414,
+ "loss": 2.1467485427856445,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72473867595819,
+ "grad_norm": 0.052201591432094574,
+ "learning_rate": 0.00044957194076511095,
+ "loss": 2.1621475219726562,
+ "step": 1276
+ },
+ {
+ "epoch": 17.738675958188153,
+ "grad_norm": 0.05179779976606369,
+ "learning_rate": 0.0004493400204398426,
+ "loss": 2.1593222618103027,
+ "step": 1277
+ },
+ {
+ "epoch": 17.752613240418118,
+ "grad_norm": 0.05123918130993843,
+ "learning_rate": 0.00044910798221106283,
+ "loss": 2.1596224308013916,
+ "step": 1278
+ },
+ {
+ "epoch": 17.766550522648085,
+ "grad_norm": 0.05416003242135048,
+ "learning_rate": 0.00044887582626572105,
+ "loss": 2.156677484512329,
+ "step": 1279
+ },
+ {
+ "epoch": 17.78048780487805,
+ "grad_norm": 0.05376303568482399,
+ "learning_rate": 0.0004486435527908606,
+ "loss": 2.1515936851501465,
+ "step": 1280
+ },
+ {
+ "epoch": 17.794425087108014,
+ "grad_norm": 0.05113770812749863,
+ "learning_rate": 0.0004484111619736205,
+ "loss": 2.159501075744629,
+ "step": 1281
+ },
+ {
+ "epoch": 17.808362369337978,
+ "grad_norm": 0.05341901257634163,
+ "learning_rate": 0.0004481786540012336,
+ "loss": 2.1458449363708496,
+ "step": 1282
+ },
+ {
+ "epoch": 17.822299651567945,
+ "grad_norm": 0.05436928942799568,
+ "learning_rate": 0.00044794602906102747,
+ "loss": 2.1686582565307617,
+ "step": 1283
+ },
+ {
+ "epoch": 17.83623693379791,
+ "grad_norm": 0.05663881078362465,
+ "learning_rate": 0.00044771328734042367,
+ "loss": 2.162226676940918,
+ "step": 1284
+ },
+ {
+ "epoch": 17.850174216027874,
+ "grad_norm": 0.052064672112464905,
+ "learning_rate": 0.00044748042902693815,
+ "loss": 2.162569046020508,
+ "step": 1285
+ },
+ {
+ "epoch": 17.86411149825784,
+ "grad_norm": 0.05361185595393181,
+ "learning_rate": 0.0004472474543081805,
+ "loss": 2.156773567199707,
+ "step": 1286
+ },
+ {
+ "epoch": 17.878048780487806,
+ "grad_norm": 0.053101785480976105,
+ "learning_rate": 0.00044701436337185444,
+ "loss": 2.1460914611816406,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89198606271777,
+ "grad_norm": 0.05247222259640694,
+ "learning_rate": 0.00044678115640575704,
+ "loss": 2.1564040184020996,
+ "step": 1288
+ },
+ {
+ "epoch": 17.905923344947734,
+ "grad_norm": 0.054551344364881516,
+ "learning_rate": 0.0004465478335977788,
+ "loss": 2.1503076553344727,
+ "step": 1289
+ },
+ {
+ "epoch": 17.9198606271777,
+ "grad_norm": 0.050967201590538025,
+ "learning_rate": 0.00044631439513590393,
+ "loss": 2.165611505508423,
+ "step": 1290
+ },
+ {
+ "epoch": 17.933797909407666,
+ "grad_norm": 0.051103148609399796,
+ "learning_rate": 0.00044608084120820933,
+ "loss": 2.146416187286377,
+ "step": 1291
+ },
+ {
+ "epoch": 17.94773519163763,
+ "grad_norm": 0.04871583357453346,
+ "learning_rate": 0.0004458471720028655,
+ "loss": 2.1615967750549316,
+ "step": 1292
+ },
+ {
+ "epoch": 17.961672473867594,
+ "grad_norm": 0.05047275498509407,
+ "learning_rate": 0.0004456133877081352,
+ "loss": 2.1585195064544678,
+ "step": 1293
+ },
+ {
+ "epoch": 17.975609756097562,
+ "grad_norm": 0.05169983580708504,
+ "learning_rate": 0.0004453794885123744,
+ "loss": 2.163914680480957,
+ "step": 1294
+ },
+ {
+ "epoch": 17.989547038327526,
+ "grad_norm": 0.05178225040435791,
+ "learning_rate": 0.00044514547460403135,
+ "loss": 2.1566972732543945,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.04334854707121849,
+ "learning_rate": 0.00044491134617164694,
+ "loss": 1.6099262237548828,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 0.6236167550086975,
+ "eval_runtime": 36.363,
+ "eval_samples_per_second": 67.156,
+ "eval_steps_per_second": 0.55,
+ "step": 1296
+ },
+ {
+ "epoch": 18.013937282229964,
+ "grad_norm": 0.054574184119701385,
+ "learning_rate": 0.000444677103403854,
+ "loss": 2.097102642059326,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027874564459932,
+ "grad_norm": 0.06331679970026016,
+ "learning_rate": 0.0004444427464893779,
+ "loss": 2.113513469696045,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041811846689896,
+ "grad_norm": 0.06493321061134338,
+ "learning_rate": 0.00044420827561703573,
+ "loss": 2.1095829010009766,
+ "step": 1299
+ },
+ {
+ "epoch": 18.05574912891986,
+ "grad_norm": 0.0661960318684578,
+ "learning_rate": 0.0004439736909757365,
+ "loss": 2.0967822074890137,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069686411149824,
+ "grad_norm": 0.062145210802555084,
+ "learning_rate": 0.0004437389927544805,
+ "loss": 2.08186936378479,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083623693379792,
+ "grad_norm": 0.06310027837753296,
+ "learning_rate": 0.0004435041811423603,
+ "loss": 2.115525245666504,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097560975609756,
+ "grad_norm": 0.06527610123157501,
+ "learning_rate": 0.0004432692563285591,
+ "loss": 2.110492706298828,
+ "step": 1303
+ },
+ {
+ "epoch": 18.11149825783972,
+ "grad_norm": 0.059454720467329025,
+ "learning_rate": 0.0004430342185023517,
+ "loss": 2.105884552001953,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125435540069688,
+ "grad_norm": 0.056922316551208496,
+ "learning_rate": 0.0004427990678531038,
+ "loss": 2.1008682250976562,
+ "step": 1305
+ },
+ {
+ "epoch": 18.139372822299652,
+ "grad_norm": 0.06496447324752808,
+ "learning_rate": 0.0004425638045702719,
+ "loss": 2.0853774547576904,
+ "step": 1306
+ },
+ {
+ "epoch": 18.153310104529616,
+ "grad_norm": 0.059888552874326706,
+ "learning_rate": 0.0004423284288434035,
+ "loss": 2.1116936206817627,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16724738675958,
+ "grad_norm": 0.06061340123414993,
+ "learning_rate": 0.00044209294086213657,
+ "loss": 2.100578784942627,
+ "step": 1308
+ },
+ {
+ "epoch": 18.181184668989548,
+ "grad_norm": 0.06433615833520889,
+ "learning_rate": 0.00044185734081619957,
+ "loss": 2.0994229316711426,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195121951219512,
+ "grad_norm": 0.06373526901006699,
+ "learning_rate": 0.000441621628895411,
+ "loss": 2.1115286350250244,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209059233449477,
+ "grad_norm": 0.062120918184518814,
+ "learning_rate": 0.00044138580528967986,
+ "loss": 2.123278856277466,
+ "step": 1311
+ },
+ {
+ "epoch": 18.222996515679444,
+ "grad_norm": 0.06534294784069061,
+ "learning_rate": 0.0004411498701890051,
+ "loss": 2.0983846187591553,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23693379790941,
+ "grad_norm": 0.06486557424068451,
+ "learning_rate": 0.0004409138237834751,
+ "loss": 2.099348783493042,
+ "step": 1313
+ },
+ {
+ "epoch": 18.250871080139373,
+ "grad_norm": 0.05728910490870476,
+ "learning_rate": 0.00044067766626326835,
+ "loss": 2.0990138053894043,
+ "step": 1314
+ },
+ {
+ "epoch": 18.264808362369337,
+ "grad_norm": 0.060207612812519073,
+ "learning_rate": 0.00044044139781865255,
+ "loss": 2.1117920875549316,
+ "step": 1315
+ },
+ {
+ "epoch": 18.278745644599304,
+ "grad_norm": 0.05766129493713379,
+ "learning_rate": 0.00044020501863998516,
+ "loss": 2.101550579071045,
+ "step": 1316
+ },
+ {
+ "epoch": 18.29268292682927,
+ "grad_norm": 0.060087788850069046,
+ "learning_rate": 0.00043996852891771236,
+ "loss": 2.1135497093200684,
+ "step": 1317
+ },
+ {
+ "epoch": 18.306620209059233,
+ "grad_norm": 0.059771373867988586,
+ "learning_rate": 0.00043973192884236983,
+ "loss": 2.1124963760375977,
+ "step": 1318
+ },
+ {
+ "epoch": 18.320557491289197,
+ "grad_norm": 0.059871334582567215,
+ "learning_rate": 0.0004394952186045819,
+ "loss": 2.1254708766937256,
+ "step": 1319
+ },
+ {
+ "epoch": 18.334494773519165,
+ "grad_norm": 0.060070380568504333,
+ "learning_rate": 0.00043925839839506167,
+ "loss": 2.1019275188446045,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34843205574913,
+ "grad_norm": 0.05744089558720589,
+ "learning_rate": 0.0004390214684046111,
+ "loss": 2.112631320953369,
+ "step": 1321
+ },
+ {
+ "epoch": 18.362369337979093,
+ "grad_norm": 0.06188441440463066,
+ "learning_rate": 0.00043878442882412015,
+ "loss": 2.11454439163208,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37630662020906,
+ "grad_norm": 0.06033455580472946,
+ "learning_rate": 0.00043854727984456746,
+ "loss": 2.1136903762817383,
+ "step": 1323
+ },
+ {
+ "epoch": 18.390243902439025,
+ "grad_norm": 0.05741684511303902,
+ "learning_rate": 0.0004383100216570197,
+ "loss": 2.1244497299194336,
+ "step": 1324
+ },
+ {
+ "epoch": 18.40418118466899,
+ "grad_norm": 0.05371133238077164,
+ "learning_rate": 0.0004380726544526316,
+ "loss": 2.0973854064941406,
+ "step": 1325
+ },
+ {
+ "epoch": 18.418118466898953,
+ "grad_norm": 0.05289234593510628,
+ "learning_rate": 0.00043783517842264534,
+ "loss": 2.1062159538269043,
+ "step": 1326
+ },
+ {
+ "epoch": 18.43205574912892,
+ "grad_norm": 0.05888833478093147,
+ "learning_rate": 0.0004375975937583914,
+ "loss": 2.133770227432251,
+ "step": 1327
+ },
+ {
+ "epoch": 18.445993031358885,
+ "grad_norm": 0.057039227336645126,
+ "learning_rate": 0.0004373599006512871,
+ "loss": 2.123251438140869,
+ "step": 1328
+ },
+ {
+ "epoch": 18.45993031358885,
+ "grad_norm": 0.05389681085944176,
+ "learning_rate": 0.00043712209929283786,
+ "loss": 2.1121368408203125,
+ "step": 1329
+ },
+ {
+ "epoch": 18.473867595818817,
+ "grad_norm": 0.05782404541969299,
+ "learning_rate": 0.00043688418987463567,
+ "loss": 2.119410991668701,
+ "step": 1330
+ },
+ {
+ "epoch": 18.48780487804878,
+ "grad_norm": 0.06069990620017052,
+ "learning_rate": 0.00043664617258835995,
+ "loss": 2.1443772315979004,
+ "step": 1331
+ },
+ {
+ "epoch": 18.501742160278745,
+ "grad_norm": 0.05559232831001282,
+ "learning_rate": 0.0004364080476257769,
+ "loss": 2.1264851093292236,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51567944250871,
+ "grad_norm": 0.05432436615228653,
+ "learning_rate": 0.0004361698151787396,
+ "loss": 2.1118392944335938,
+ "step": 1333
+ },
+ {
+ "epoch": 18.529616724738677,
+ "grad_norm": 0.05471545085310936,
+ "learning_rate": 0.0004359314754391874,
+ "loss": 2.1159002780914307,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54355400696864,
+ "grad_norm": 0.05574088171124458,
+ "learning_rate": 0.0004356930285991466,
+ "loss": 2.1271533966064453,
+ "step": 1335
+ },
+ {
+ "epoch": 18.557491289198605,
+ "grad_norm": 0.05431128293275833,
+ "learning_rate": 0.00043545447485072926,
+ "loss": 2.125399589538574,
+ "step": 1336
+ },
+ {
+ "epoch": 18.571428571428573,
+ "grad_norm": 0.055981073528528214,
+ "learning_rate": 0.000435215814386134,
+ "loss": 2.113802909851074,
+ "step": 1337
+ },
+ {
+ "epoch": 18.585365853658537,
+ "grad_norm": 0.05551784485578537,
+ "learning_rate": 0.0004349770473976453,
+ "loss": 2.1233460903167725,
+ "step": 1338
+ },
+ {
+ "epoch": 18.5993031358885,
+ "grad_norm": 0.05475042760372162,
+ "learning_rate": 0.0004347381740776332,
+ "loss": 2.1365370750427246,
+ "step": 1339
+ },
+ {
+ "epoch": 18.613240418118465,
+ "grad_norm": 0.05448045954108238,
+ "learning_rate": 0.0004344991946185538,
+ "loss": 2.1288349628448486,
+ "step": 1340
+ },
+ {
+ "epoch": 18.627177700348433,
+ "grad_norm": 0.0553717240691185,
+ "learning_rate": 0.00043426010921294837,
+ "loss": 2.1383371353149414,
+ "step": 1341
+ },
+ {
+ "epoch": 18.641114982578397,
+ "grad_norm": 0.05391915515065193,
+ "learning_rate": 0.0004340209180534438,
+ "loss": 2.1390743255615234,
+ "step": 1342
+ },
+ {
+ "epoch": 18.65505226480836,
+ "grad_norm": 0.05404767021536827,
+ "learning_rate": 0.000433781621332752,
+ "loss": 2.1237120628356934,
+ "step": 1343
+ },
+ {
+ "epoch": 18.66898954703833,
+ "grad_norm": 0.05370468273758888,
+ "learning_rate": 0.0004335422192436703,
+ "loss": 2.123408079147339,
+ "step": 1344
+ },
+ {
+ "epoch": 18.682926829268293,
+ "grad_norm": 0.05490506440401077,
+ "learning_rate": 0.00043330271197908023,
+ "loss": 2.130199432373047,
+ "step": 1345
+ },
+ {
+ "epoch": 18.696864111498257,
+ "grad_norm": 0.05651344731450081,
+ "learning_rate": 0.00043306309973194874,
+ "loss": 2.1184425354003906,
+ "step": 1346
+ },
+ {
+ "epoch": 18.71080139372822,
+ "grad_norm": 0.05446930602192879,
+ "learning_rate": 0.000432823382695327,
+ "loss": 2.1391234397888184,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72473867595819,
+ "grad_norm": 0.056854017078876495,
+ "learning_rate": 0.0004325835610623508,
+ "loss": 2.1358017921447754,
+ "step": 1348
+ },
+ {
+ "epoch": 18.738675958188153,
+ "grad_norm": 0.06729792058467865,
+ "learning_rate": 0.00043234363502623994,
+ "loss": 2.1330645084381104,
+ "step": 1349
+ },
+ {
+ "epoch": 18.752613240418118,
+ "grad_norm": 0.05778411030769348,
+ "learning_rate": 0.0004321036047802985,
+ "loss": 2.1277008056640625,
+ "step": 1350
+ },
+ {
+ "epoch": 18.766550522648085,
+ "grad_norm": 0.05493835732340813,
+ "learning_rate": 0.00043186347051791466,
+ "loss": 2.1218693256378174,
+ "step": 1351
+ },
+ {
+ "epoch": 18.78048780487805,
+ "grad_norm": 0.05961703136563301,
+ "learning_rate": 0.0004316232324325602,
+ "loss": 2.141153573989868,
+ "step": 1352
+ },
+ {
+ "epoch": 18.794425087108014,
+ "grad_norm": 0.057490140199661255,
+ "learning_rate": 0.0004313828907177906,
+ "loss": 2.1218957901000977,
+ "step": 1353
+ },
+ {
+ "epoch": 18.808362369337978,
+ "grad_norm": 0.05424332618713379,
+ "learning_rate": 0.0004311424455672448,
+ "loss": 2.1294074058532715,
+ "step": 1354
+ },
+ {
+ "epoch": 18.822299651567945,
+ "grad_norm": 0.05539792776107788,
+ "learning_rate": 0.0004309018971746451,
+ "loss": 2.1287131309509277,
+ "step": 1355
+ },
+ {
+ "epoch": 18.83623693379791,
+ "grad_norm": 0.056515417993068695,
+ "learning_rate": 0.000430661245733797,
+ "loss": 2.1303625106811523,
+ "step": 1356
+ },
+ {
+ "epoch": 18.850174216027874,
+ "grad_norm": 0.053070683032274246,
+ "learning_rate": 0.00043042049143858914,
+ "loss": 2.1501715183258057,
+ "step": 1357
+ },
+ {
+ "epoch": 18.86411149825784,
+ "grad_norm": 0.05422713980078697,
+ "learning_rate": 0.0004301796344829928,
+ "loss": 2.141580581665039,
+ "step": 1358
+ },
+ {
+ "epoch": 18.878048780487806,
+ "grad_norm": 0.053621236234903336,
+ "learning_rate": 0.00042993867506106205,
+ "loss": 2.1374034881591797,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89198606271777,
+ "grad_norm": 0.05488245189189911,
+ "learning_rate": 0.0004296976133669336,
+ "loss": 2.1387908458709717,
+ "step": 1360
+ },
+ {
+ "epoch": 18.905923344947734,
+ "grad_norm": 0.05566219612956047,
+ "learning_rate": 0.0004294564495948266,
+ "loss": 2.1420421600341797,
+ "step": 1361
+ },
+ {
+ "epoch": 18.9198606271777,
+ "grad_norm": 0.05297220125794411,
+ "learning_rate": 0.0004292151839390421,
+ "loss": 2.126768112182617,
+ "step": 1362
+ },
+ {
+ "epoch": 18.933797909407666,
+ "grad_norm": 0.056281380355358124,
+ "learning_rate": 0.0004289738165939636,
+ "loss": 2.114241361618042,
+ "step": 1363
+ },
+ {
+ "epoch": 18.94773519163763,
+ "grad_norm": 0.05625050142407417,
+ "learning_rate": 0.00042873234775405654,
+ "loss": 2.134300947189331,
+ "step": 1364
+ },
+ {
+ "epoch": 18.961672473867594,
+ "grad_norm": 0.05186711251735687,
+ "learning_rate": 0.00042849077761386784,
+ "loss": 2.1409969329833984,
+ "step": 1365
+ },
+ {
+ "epoch": 18.975609756097562,
+ "grad_norm": 0.057695358991622925,
+ "learning_rate": 0.0004282491063680263,
+ "loss": 2.1331894397735596,
+ "step": 1366
+ },
+ {
+ "epoch": 18.989547038327526,
+ "grad_norm": 0.055152107030153275,
+ "learning_rate": 0.00042800733421124207,
+ "loss": 2.147555112838745,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.04286205768585205,
+ "learning_rate": 0.00042776546133830646,
+ "loss": 1.5948516130447388,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 0.6249114871025085,
+ "eval_runtime": 36.6804,
+ "eval_samples_per_second": 66.575,
+ "eval_steps_per_second": 0.545,
+ "step": 1368
+ },
+ {
+ "epoch": 19.013937282229964,
+ "grad_norm": 0.05809386819601059,
+ "learning_rate": 0.00042752348794409227,
+ "loss": 2.0782227516174316,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027874564459932,
+ "grad_norm": 0.06399382650852203,
+ "learning_rate": 0.00042728141422355287,
+ "loss": 2.078792095184326,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041811846689896,
+ "grad_norm": 0.0564531646668911,
+ "learning_rate": 0.0004270392403717229,
+ "loss": 2.083125114440918,
+ "step": 1371
+ },
+ {
+ "epoch": 19.05574912891986,
+ "grad_norm": 0.057170569896698,
+ "learning_rate": 0.00042679696658371743,
+ "loss": 2.0679214000701904,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069686411149824,
+ "grad_norm": 0.05639920011162758,
+ "learning_rate": 0.00042655459305473195,
+ "loss": 2.072279930114746,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083623693379792,
+ "grad_norm": 0.05690578371286392,
+ "learning_rate": 0.0004263121199800425,
+ "loss": 2.0732839107513428,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097560975609756,
+ "grad_norm": 0.05914883315563202,
+ "learning_rate": 0.0004260695475550054,
+ "loss": 2.0810770988464355,
+ "step": 1375
+ },
+ {
+ "epoch": 19.11149825783972,
+ "grad_norm": 0.058082643896341324,
+ "learning_rate": 0.0004258268759750566,
+ "loss": 2.074130058288574,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125435540069688,
+ "grad_norm": 0.06016257032752037,
+ "learning_rate": 0.0004255841054357124,
+ "loss": 2.084043025970459,
+ "step": 1377
+ },
+ {
+ "epoch": 19.139372822299652,
+ "grad_norm": 0.060372497886419296,
+ "learning_rate": 0.0004253412361325686,
+ "loss": 2.0811657905578613,
+ "step": 1378
+ },
+ {
+ "epoch": 19.153310104529616,
+ "grad_norm": 0.0614042803645134,
+ "learning_rate": 0.0004250982682613006,
+ "loss": 2.070756435394287,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16724738675958,
+ "grad_norm": 0.06391493231058121,
+ "learning_rate": 0.00042485520201766315,
+ "loss": 2.067322015762329,
+ "step": 1380
+ },
+ {
+ "epoch": 19.181184668989548,
+ "grad_norm": 0.06465132534503937,
+ "learning_rate": 0.0004246120375974905,
+ "loss": 2.077214002609253,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195121951219512,
+ "grad_norm": 0.06490413844585419,
+ "learning_rate": 0.0004243687751966957,
+ "loss": 2.0735957622528076,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209059233449477,
+ "grad_norm": 0.06681123375892639,
+ "learning_rate": 0.0004241254150112708,
+ "loss": 2.092386484146118,
+ "step": 1383
+ },
+ {
+ "epoch": 19.222996515679444,
+ "grad_norm": 0.07135862857103348,
+ "learning_rate": 0.000423881957237287,
+ "loss": 2.0910637378692627,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23693379790941,
+ "grad_norm": 0.06640495359897614,
+ "learning_rate": 0.0004236384020708935,
+ "loss": 2.076943874359131,
+ "step": 1385
+ },
+ {
+ "epoch": 19.250871080139373,
+ "grad_norm": 0.06542305648326874,
+ "learning_rate": 0.0004233947497083185,
+ "loss": 2.08823299407959,
+ "step": 1386
+ },
+ {
+ "epoch": 19.264808362369337,
+ "grad_norm": 0.06014764681458473,
+ "learning_rate": 0.0004231510003458682,
+ "loss": 2.0875651836395264,
+ "step": 1387
+ },
+ {
+ "epoch": 19.278745644599304,
+ "grad_norm": 0.05776312202215195,
+ "learning_rate": 0.0004229071541799272,
+ "loss": 2.097287654876709,
+ "step": 1388
+ },
+ {
+ "epoch": 19.29268292682927,
+ "grad_norm": 0.058570489287376404,
+ "learning_rate": 0.0004226632114069578,
+ "loss": 2.099949359893799,
+ "step": 1389
+ },
+ {
+ "epoch": 19.306620209059233,
+ "grad_norm": 0.059035737067461014,
+ "learning_rate": 0.0004224191722235004,
+ "loss": 2.0985028743743896,
+ "step": 1390
+ },
+ {
+ "epoch": 19.320557491289197,
+ "grad_norm": 0.05857931450009346,
+ "learning_rate": 0.00042217503682617286,
+ "loss": 2.0884578227996826,
+ "step": 1391
+ },
+ {
+ "epoch": 19.334494773519165,
+ "grad_norm": 0.057818394154310226,
+ "learning_rate": 0.0004219308054116706,
+ "loss": 2.0950827598571777,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34843205574913,
+ "grad_norm": 0.05500008538365364,
+ "learning_rate": 0.0004216864781767667,
+ "loss": 2.0837326049804688,
+ "step": 1393
+ },
+ {
+ "epoch": 19.362369337979093,
+ "grad_norm": 0.05635271221399307,
+ "learning_rate": 0.00042144205531831103,
+ "loss": 2.1017332077026367,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37630662020906,
+ "grad_norm": 0.0582125261425972,
+ "learning_rate": 0.0004211975370332308,
+ "loss": 2.0762600898742676,
+ "step": 1395
+ },
+ {
+ "epoch": 19.390243902439025,
+ "grad_norm": 0.0587347187101841,
+ "learning_rate": 0.00042095292351852976,
+ "loss": 2.0604896545410156,
+ "step": 1396
+ },
+ {
+ "epoch": 19.40418118466899,
+ "grad_norm": 0.058021727949380875,
+ "learning_rate": 0.0004207082149712888,
+ "loss": 2.0906972885131836,
+ "step": 1397
+ },
+ {
+ "epoch": 19.418118466898953,
+ "grad_norm": 0.05805983021855354,
+ "learning_rate": 0.0004204634115886651,
+ "loss": 2.0873594284057617,
+ "step": 1398
+ },
+ {
+ "epoch": 19.43205574912892,
+ "grad_norm": 0.05964788421988487,
+ "learning_rate": 0.0004202185135678924,
+ "loss": 2.1012473106384277,
+ "step": 1399
+ },
+ {
+ "epoch": 19.445993031358885,
+ "grad_norm": 0.058361511677503586,
+ "learning_rate": 0.00041997352110628033,
+ "loss": 2.09468936920166,
+ "step": 1400
+ },
+ {
+ "epoch": 19.45993031358885,
+ "grad_norm": 0.05840443819761276,
+ "learning_rate": 0.00041972843440121527,
+ "loss": 2.105898857116699,
+ "step": 1401
+ },
+ {
+ "epoch": 19.473867595818817,
+ "grad_norm": 0.06023252755403519,
+ "learning_rate": 0.00041948325365015894,
+ "loss": 2.103001594543457,
+ "step": 1402
+ },
+ {
+ "epoch": 19.48780487804878,
+ "grad_norm": 0.057779282331466675,
+ "learning_rate": 0.0004192379790506491,
+ "loss": 2.0969185829162598,
+ "step": 1403
+ },
+ {
+ "epoch": 19.501742160278745,
+ "grad_norm": 0.0592162050306797,
+ "learning_rate": 0.00041899261080029904,
+ "loss": 2.1101880073547363,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51567944250871,
+ "grad_norm": 0.06333442032337189,
+ "learning_rate": 0.00041874714909679754,
+ "loss": 2.1037089824676514,
+ "step": 1405
+ },
+ {
+ "epoch": 19.529616724738677,
+ "grad_norm": 0.06202675402164459,
+ "learning_rate": 0.00041850159413790863,
+ "loss": 2.1154634952545166,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54355400696864,
+ "grad_norm": 0.055281441658735275,
+ "learning_rate": 0.0004182559461214715,
+ "loss": 2.1098036766052246,
+ "step": 1407
+ },
+ {
+ "epoch": 19.557491289198605,
+ "grad_norm": 0.06085072085261345,
+ "learning_rate": 0.0004180102052454004,
+ "loss": 2.0985965728759766,
+ "step": 1408
+ },
+ {
+ "epoch": 19.571428571428573,
+ "grad_norm": 0.059430696070194244,
+ "learning_rate": 0.00041776437170768427,
+ "loss": 2.1063296794891357,
+ "step": 1409
+ },
+ {
+ "epoch": 19.585365853658537,
+ "grad_norm": 0.05628339946269989,
+ "learning_rate": 0.0004175184457063868,
+ "loss": 2.096975326538086,
+ "step": 1410
+ },
+ {
+ "epoch": 19.5993031358885,
+ "grad_norm": 0.056543346494436264,
+ "learning_rate": 0.000417272427439646,
+ "loss": 2.1110968589782715,
+ "step": 1411
+ },
+ {
+ "epoch": 19.613240418118465,
+ "grad_norm": 0.05971049889922142,
+ "learning_rate": 0.00041702631710567443,
+ "loss": 2.1136279106140137,
+ "step": 1412
+ },
+ {
+ "epoch": 19.627177700348433,
+ "grad_norm": 0.056699734181165695,
+ "learning_rate": 0.00041678011490275875,
+ "loss": 2.113466501235962,
+ "step": 1413
+ },
+ {
+ "epoch": 19.641114982578397,
+ "grad_norm": 0.05671929940581322,
+ "learning_rate": 0.00041653382102925957,
+ "loss": 2.1061220169067383,
+ "step": 1414
+ },
+ {
+ "epoch": 19.65505226480836,
+ "grad_norm": 0.05770038440823555,
+ "learning_rate": 0.00041628743568361147,
+ "loss": 2.1156320571899414,
+ "step": 1415
+ },
+ {
+ "epoch": 19.66898954703833,
+ "grad_norm": 0.06175893545150757,
+ "learning_rate": 0.00041604095906432265,
+ "loss": 2.112288475036621,
+ "step": 1416
+ },
+ {
+ "epoch": 19.682926829268293,
+ "grad_norm": 0.06383928656578064,
+ "learning_rate": 0.00041579439136997493,
+ "loss": 2.1029422283172607,
+ "step": 1417
+ },
+ {
+ "epoch": 19.696864111498257,
+ "grad_norm": 0.06042713671922684,
+ "learning_rate": 0.00041554773279922337,
+ "loss": 2.1106066703796387,
+ "step": 1418
+ },
+ {
+ "epoch": 19.71080139372822,
+ "grad_norm": 0.057180315256118774,
+ "learning_rate": 0.0004153009835507963,
+ "loss": 2.1148805618286133,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72473867595819,
+ "grad_norm": 0.061083171516656876,
+ "learning_rate": 0.0004150541438234952,
+ "loss": 2.0946850776672363,
+ "step": 1420
+ },
+ {
+ "epoch": 19.738675958188153,
+ "grad_norm": 0.0596432127058506,
+ "learning_rate": 0.00041480721381619435,
+ "loss": 2.1208066940307617,
+ "step": 1421
+ },
+ {
+ "epoch": 19.752613240418118,
+ "grad_norm": 0.05496669560670853,
+ "learning_rate": 0.00041456019372784086,
+ "loss": 2.1088931560516357,
+ "step": 1422
+ },
+ {
+ "epoch": 19.766550522648085,
+ "grad_norm": 0.05810244753956795,
+ "learning_rate": 0.0004143130837574543,
+ "loss": 2.1019372940063477,
+ "step": 1423
+ },
+ {
+ "epoch": 19.78048780487805,
+ "grad_norm": 0.05894653871655464,
+ "learning_rate": 0.0004140658841041267,
+ "loss": 2.1125125885009766,
+ "step": 1424
+ },
+ {
+ "epoch": 19.794425087108014,
+ "grad_norm": 0.05772726237773895,
+ "learning_rate": 0.0004138185949670224,
+ "loss": 2.126194477081299,
+ "step": 1425
+ },
+ {
+ "epoch": 19.808362369337978,
+ "grad_norm": 0.058502763509750366,
+ "learning_rate": 0.00041357121654537766,
+ "loss": 2.110621452331543,
+ "step": 1426
+ },
+ {
+ "epoch": 19.822299651567945,
+ "grad_norm": 0.058296941220760345,
+ "learning_rate": 0.00041332374903850104,
+ "loss": 2.1034765243530273,
+ "step": 1427
+ },
+ {
+ "epoch": 19.83623693379791,
+ "grad_norm": 0.05595606938004494,
+ "learning_rate": 0.00041307619264577234,
+ "loss": 2.118297815322876,
+ "step": 1428
+ },
+ {
+ "epoch": 19.850174216027874,
+ "grad_norm": 0.0563458688557148,
+ "learning_rate": 0.0004128285475666436,
+ "loss": 2.1122255325317383,
+ "step": 1429
+ },
+ {
+ "epoch": 19.86411149825784,
+ "grad_norm": 0.05421055108308792,
+ "learning_rate": 0.0004125808140006378,
+ "loss": 2.103970527648926,
+ "step": 1430
+ },
+ {
+ "epoch": 19.878048780487806,
+ "grad_norm": 0.05633455142378807,
+ "learning_rate": 0.0004123329921473494,
+ "loss": 2.11661434173584,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89198606271777,
+ "grad_norm": 0.05797342583537102,
+ "learning_rate": 0.0004120850822064439,
+ "loss": 2.1021676063537598,
+ "step": 1432
+ },
+ {
+ "epoch": 19.905923344947734,
+ "grad_norm": 0.056061360985040665,
+ "learning_rate": 0.00041183708437765815,
+ "loss": 2.123298406600952,
+ "step": 1433
+ },
+ {
+ "epoch": 19.9198606271777,
+ "grad_norm": 0.05381599813699722,
+ "learning_rate": 0.00041158899886079925,
+ "loss": 2.120389938354492,
+ "step": 1434
+ },
+ {
+ "epoch": 19.933797909407666,
+ "grad_norm": 0.05545654520392418,
+ "learning_rate": 0.00041134082585574534,
+ "loss": 2.1180779933929443,
+ "step": 1435
+ },
+ {
+ "epoch": 19.94773519163763,
+ "grad_norm": 0.056983016431331635,
+ "learning_rate": 0.00041109256556244497,
+ "loss": 2.118905544281006,
+ "step": 1436
+ },
+ {
+ "epoch": 19.961672473867594,
+ "grad_norm": 0.0575285367667675,
+ "learning_rate": 0.00041084421818091685,
+ "loss": 2.1049699783325195,
+ "step": 1437
+ },
+ {
+ "epoch": 19.975609756097562,
+ "grad_norm": 0.057964932173490524,
+ "learning_rate": 0.0004105957839112501,
+ "loss": 2.1140224933624268,
+ "step": 1438
+ },
+ {
+ "epoch": 19.989547038327526,
+ "grad_norm": 0.05869961529970169,
+ "learning_rate": 0.0004103472629536036,
+ "loss": 2.1089744567871094,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.04450551047921181,
+ "learning_rate": 0.0004100986555082063,
+ "loss": 1.579450249671936,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 0.6265780925750732,
+ "eval_runtime": 34.9259,
+ "eval_samples_per_second": 69.92,
+ "eval_steps_per_second": 0.573,
+ "step": 1440
+ },
+ {
+ "epoch": 20.013937282229964,
+ "grad_norm": 0.05954804643988609,
+ "learning_rate": 0.0004098499617753567,
+ "loss": 2.062889575958252,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027874564459932,
+ "grad_norm": 0.07035746425390244,
+ "learning_rate": 0.00040960118195542273,
+ "loss": 2.0443758964538574,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041811846689896,
+ "grad_norm": 0.0653388574719429,
+ "learning_rate": 0.00040935231624884204,
+ "loss": 2.0611963272094727,
+ "step": 1443
+ },
+ {
+ "epoch": 20.05574912891986,
+ "grad_norm": 0.06305127590894699,
+ "learning_rate": 0.0004091033648561211,
+ "loss": 2.0648036003112793,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069686411149824,
+ "grad_norm": 0.05987029895186424,
+ "learning_rate": 0.00040885432797783543,
+ "loss": 2.059682607650757,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083623693379792,
+ "grad_norm": 0.06469618529081345,
+ "learning_rate": 0.0004086052058146297,
+ "loss": 2.0656521320343018,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097560975609756,
+ "grad_norm": 0.05834262818098068,
+ "learning_rate": 0.00040835599856721725,
+ "loss": 2.0583415031433105,
+ "step": 1447
+ },
+ {
+ "epoch": 20.11149825783972,
+ "grad_norm": 0.06026774272322655,
+ "learning_rate": 0.00040810670643637954,
+ "loss": 2.0644960403442383,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125435540069688,
+ "grad_norm": 0.06032145023345947,
+ "learning_rate": 0.000407857329622967,
+ "loss": 2.050269842147827,
+ "step": 1449
+ },
+ {
+ "epoch": 20.139372822299652,
+ "grad_norm": 0.05611831694841385,
+ "learning_rate": 0.00040760786832789786,
+ "loss": 2.0559628009796143,
+ "step": 1450
+ },
+ {
+ "epoch": 20.153310104529616,
+ "grad_norm": 0.06046713516116142,
+ "learning_rate": 0.0004073583227521588,
+ "loss": 2.06439471244812,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16724738675958,
+ "grad_norm": 0.06147446483373642,
+ "learning_rate": 0.0004071086930968039,
+ "loss": 2.0606837272644043,
+ "step": 1452
+ },
+ {
+ "epoch": 20.181184668989548,
+ "grad_norm": 0.05967561900615692,
+ "learning_rate": 0.00040685897956295545,
+ "loss": 2.0494980812072754,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195121951219512,
+ "grad_norm": 0.05903508514165878,
+ "learning_rate": 0.0004066091823518031,
+ "loss": 2.059744358062744,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209059233449477,
+ "grad_norm": 0.060008060187101364,
+ "learning_rate": 0.00040635930166460385,
+ "loss": 2.0736231803894043,
+ "step": 1455
+ },
+ {
+ "epoch": 20.222996515679444,
+ "grad_norm": 0.057375747710466385,
+ "learning_rate": 0.00040610933770268226,
+ "loss": 2.062077045440674,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23693379790941,
+ "grad_norm": 0.05929991975426674,
+ "learning_rate": 0.00040585929066742964,
+ "loss": 2.059680938720703,
+ "step": 1457
+ },
+ {
+ "epoch": 20.250871080139373,
+ "grad_norm": 0.06615032255649567,
+ "learning_rate": 0.00040560916076030435,
+ "loss": 2.080033302307129,
+ "step": 1458
+ },
+ {
+ "epoch": 20.264808362369337,
+ "grad_norm": 0.06465113162994385,
+ "learning_rate": 0.00040535894818283154,
+ "loss": 2.0724852085113525,
+ "step": 1459
+ },
+ {
+ "epoch": 20.278745644599304,
+ "grad_norm": 0.0641520619392395,
+ "learning_rate": 0.0004051086531366031,
+ "loss": 2.0535552501678467,
+ "step": 1460
+ },
+ {
+ "epoch": 20.29268292682927,
+ "grad_norm": 0.060508403927087784,
+ "learning_rate": 0.000404858275823277,
+ "loss": 2.0627613067626953,
+ "step": 1461
+ },
+ {
+ "epoch": 20.306620209059233,
+ "grad_norm": 0.06028459966182709,
+ "learning_rate": 0.000404607816444578,
+ "loss": 2.062082290649414,
+ "step": 1462
+ },
+ {
+ "epoch": 20.320557491289197,
+ "grad_norm": 0.06797714531421661,
+ "learning_rate": 0.00040435727520229644,
+ "loss": 2.068223476409912,
+ "step": 1463
+ },
+ {
+ "epoch": 20.334494773519165,
+ "grad_norm": 0.07491812855005264,
+ "learning_rate": 0.0004041066522982891,
+ "loss": 2.0639474391937256,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34843205574913,
+ "grad_norm": 0.06413327902555466,
+ "learning_rate": 0.000403855947934478,
+ "loss": 2.0727763175964355,
+ "step": 1465
+ },
+ {
+ "epoch": 20.362369337979093,
+ "grad_norm": 0.05947510898113251,
+ "learning_rate": 0.00040360516231285155,
+ "loss": 2.0872607231140137,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37630662020906,
+ "grad_norm": 0.0680336281657219,
+ "learning_rate": 0.00040335429563546286,
+ "loss": 2.07262921333313,
+ "step": 1467
+ },
+ {
+ "epoch": 20.390243902439025,
+ "grad_norm": 0.06363389641046524,
+ "learning_rate": 0.0004031033481044308,
+ "loss": 2.071188449859619,
+ "step": 1468
+ },
+ {
+ "epoch": 20.40418118466899,
+ "grad_norm": 0.057794757187366486,
+ "learning_rate": 0.00040285231992193924,
+ "loss": 2.0776638984680176,
+ "step": 1469
+ },
+ {
+ "epoch": 20.418118466898953,
+ "grad_norm": 0.06159241497516632,
+ "learning_rate": 0.0004026012112902372,
+ "loss": 2.076610565185547,
+ "step": 1470
+ },
+ {
+ "epoch": 20.43205574912892,
+ "grad_norm": 0.05898696929216385,
+ "learning_rate": 0.0004023500224116381,
+ "loss": 2.0713918209075928,
+ "step": 1471
+ },
+ {
+ "epoch": 20.445993031358885,
+ "grad_norm": 0.059070803225040436,
+ "learning_rate": 0.00040209875348852037,
+ "loss": 2.073078155517578,
+ "step": 1472
+ },
+ {
+ "epoch": 20.45993031358885,
+ "grad_norm": 0.06064842641353607,
+ "learning_rate": 0.00040184740472332705,
+ "loss": 2.070858955383301,
+ "step": 1473
+ },
+ {
+ "epoch": 20.473867595818817,
+ "grad_norm": 0.060642652213573456,
+ "learning_rate": 0.000401595976318565,
+ "loss": 2.0703179836273193,
+ "step": 1474
+ },
+ {
+ "epoch": 20.48780487804878,
+ "grad_norm": 0.06281708180904388,
+ "learning_rate": 0.00040134446847680584,
+ "loss": 2.0891528129577637,
+ "step": 1475
+ },
+ {
+ "epoch": 20.501742160278745,
+ "grad_norm": 0.06964185833930969,
+ "learning_rate": 0.0004010928814006846,
+ "loss": 2.0769782066345215,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51567944250871,
+ "grad_norm": 0.0709647610783577,
+ "learning_rate": 0.0004008412152929007,
+ "loss": 2.087449550628662,
+ "step": 1477
+ },
+ {
+ "epoch": 20.529616724738677,
+ "grad_norm": 0.0604700967669487,
+ "learning_rate": 0.0004005894703562168,
+ "loss": 2.0697526931762695,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54355400696864,
+ "grad_norm": 0.066826231777668,
+ "learning_rate": 0.0004003376467934593,
+ "loss": 2.0674479007720947,
+ "step": 1479
+ },
+ {
+ "epoch": 20.557491289198605,
+ "grad_norm": 0.06124534085392952,
+ "learning_rate": 0.0004000857448075178,
+ "loss": 2.084949016571045,
+ "step": 1480
+ },
+ {
+ "epoch": 20.571428571428573,
+ "grad_norm": 0.0605972483754158,
+ "learning_rate": 0.0003998337646013455,
+ "loss": 2.0836410522460938,
+ "step": 1481
+ },
+ {
+ "epoch": 20.585365853658537,
+ "grad_norm": 0.05937602370977402,
+ "learning_rate": 0.00039958170637795806,
+ "loss": 2.085038185119629,
+ "step": 1482
+ },
+ {
+ "epoch": 20.5993031358885,
+ "grad_norm": 0.06045088917016983,
+ "learning_rate": 0.0003993295703404341,
+ "loss": 2.0811872482299805,
+ "step": 1483
+ },
+ {
+ "epoch": 20.613240418118465,
+ "grad_norm": 0.06080574169754982,
+ "learning_rate": 0.00039907735669191544,
+ "loss": 2.072998523712158,
+ "step": 1484
+ },
+ {
+ "epoch": 20.627177700348433,
+ "grad_norm": 0.06071743369102478,
+ "learning_rate": 0.00039882506563560573,
+ "loss": 2.092665672302246,
+ "step": 1485
+ },
+ {
+ "epoch": 20.641114982578397,
+ "grad_norm": 0.060432225465774536,
+ "learning_rate": 0.0003985726973747715,
+ "loss": 2.080765962600708,
+ "step": 1486
+ },
+ {
+ "epoch": 20.65505226480836,
+ "grad_norm": 0.05753706395626068,
+ "learning_rate": 0.00039832025211274113,
+ "loss": 2.0854883193969727,
+ "step": 1487
+ },
+ {
+ "epoch": 20.66898954703833,
+ "grad_norm": 0.05913816764950752,
+ "learning_rate": 0.00039806773005290544,
+ "loss": 2.0852391719818115,
+ "step": 1488
+ },
+ {
+ "epoch": 20.682926829268293,
+ "grad_norm": 0.057243719696998596,
+ "learning_rate": 0.0003978151313987168,
+ "loss": 2.069157600402832,
+ "step": 1489
+ },
+ {
+ "epoch": 20.696864111498257,
+ "grad_norm": 0.058420926332473755,
+ "learning_rate": 0.00039756245635368933,
+ "loss": 2.084345579147339,
+ "step": 1490
+ },
+ {
+ "epoch": 20.71080139372822,
+ "grad_norm": 0.057442132383584976,
+ "learning_rate": 0.00039730970512139876,
+ "loss": 2.091980218887329,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72473867595819,
+ "grad_norm": 0.05517714098095894,
+ "learning_rate": 0.0003970568779054822,
+ "loss": 2.078554153442383,
+ "step": 1492
+ },
+ {
+ "epoch": 20.738675958188153,
+ "grad_norm": 0.055716823786497116,
+ "learning_rate": 0.000396803974909638,
+ "loss": 2.094151735305786,
+ "step": 1493
+ },
+ {
+ "epoch": 20.752613240418118,
+ "grad_norm": 0.056730274111032486,
+ "learning_rate": 0.0003965509963376255,
+ "loss": 2.068563461303711,
+ "step": 1494
+ },
+ {
+ "epoch": 20.766550522648085,
+ "grad_norm": 0.05755753442645073,
+ "learning_rate": 0.000396297942393265,
+ "loss": 2.088921070098877,
+ "step": 1495
+ },
+ {
+ "epoch": 20.78048780487805,
+ "grad_norm": 0.05533437803387642,
+ "learning_rate": 0.0003960448132804375,
+ "loss": 2.0941689014434814,
+ "step": 1496
+ },
+ {
+ "epoch": 20.794425087108014,
+ "grad_norm": 0.06088414788246155,
+ "learning_rate": 0.0003957916092030845,
+ "loss": 2.0830764770507812,
+ "step": 1497
+ },
+ {
+ "epoch": 20.808362369337978,
+ "grad_norm": 0.05863271281123161,
+ "learning_rate": 0.00039553833036520803,
+ "loss": 2.090672016143799,
+ "step": 1498
+ },
+ {
+ "epoch": 20.822299651567945,
+ "grad_norm": 0.05960002914071083,
+ "learning_rate": 0.0003952849769708702,
+ "loss": 2.0864553451538086,
+ "step": 1499
+ },
+ {
+ "epoch": 20.83623693379791,
+ "grad_norm": 0.05506768077611923,
+ "learning_rate": 0.0003950315492241932,
+ "loss": 2.094161033630371,
+ "step": 1500
+ },
+ {
+ "epoch": 20.850174216027874,
+ "grad_norm": 0.05862478166818619,
+ "learning_rate": 0.0003947780473293593,
+ "loss": 2.115245819091797,
+ "step": 1501
+ },
+ {
+ "epoch": 20.86411149825784,
+ "grad_norm": 0.05872654542326927,
+ "learning_rate": 0.00039452447149061054,
+ "loss": 2.0812911987304688,
+ "step": 1502
+ },
+ {
+ "epoch": 20.878048780487806,
+ "grad_norm": 0.05998777225613594,
+ "learning_rate": 0.0003942708219122481,
+ "loss": 2.095242977142334,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89198606271777,
+ "grad_norm": 0.056095417588949203,
+ "learning_rate": 0.000394017098798633,
+ "loss": 2.092863082885742,
+ "step": 1504
+ },
+ {
+ "epoch": 20.905923344947734,
+ "grad_norm": 0.05556971952319145,
+ "learning_rate": 0.0003937633023541854,
+ "loss": 2.097186803817749,
+ "step": 1505
+ },
+ {
+ "epoch": 20.9198606271777,
+ "grad_norm": 0.055835824459791183,
+ "learning_rate": 0.0003935094327833845,
+ "loss": 2.074395179748535,
+ "step": 1506
+ },
+ {
+ "epoch": 20.933797909407666,
+ "grad_norm": 0.05587809532880783,
+ "learning_rate": 0.0003932554902907683,
+ "loss": 2.079871416091919,
+ "step": 1507
+ },
+ {
+ "epoch": 20.94773519163763,
+ "grad_norm": 0.05581265687942505,
+ "learning_rate": 0.0003930014750809338,
+ "loss": 2.097808837890625,
+ "step": 1508
+ },
+ {
+ "epoch": 20.961672473867594,
+ "grad_norm": 0.056034673005342484,
+ "learning_rate": 0.0003927473873585365,
+ "loss": 2.1134562492370605,
+ "step": 1509
+ },
+ {
+ "epoch": 20.975609756097562,
+ "grad_norm": 0.05605486407876015,
+ "learning_rate": 0.0003924932273282903,
+ "loss": 2.085361957550049,
+ "step": 1510
+ },
+ {
+ "epoch": 20.989547038327526,
+ "grad_norm": 0.056133050471544266,
+ "learning_rate": 0.00039223899519496723,
+ "loss": 2.0866618156433105,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.045700959861278534,
+ "learning_rate": 0.00039198469116339757,
+ "loss": 1.5582417249679565,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 0.6279418468475342,
+ "eval_runtime": 36.1632,
+ "eval_samples_per_second": 67.527,
+ "eval_steps_per_second": 0.553,
+ "step": 1512
+ },
+ {
+ "epoch": 21.013937282229964,
+ "grad_norm": 0.05471052974462509,
+ "learning_rate": 0.0003917303154384694,
+ "loss": 2.033940315246582,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027874564459932,
+ "grad_norm": 0.06705708801746368,
+ "learning_rate": 0.00039147586822512885,
+ "loss": 2.0360937118530273,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041811846689896,
+ "grad_norm": 0.06307924538850784,
+ "learning_rate": 0.0003912213497283793,
+ "loss": 2.0500328540802,
+ "step": 1515
+ },
+ {
+ "epoch": 21.05574912891986,
+ "grad_norm": 0.06228886917233467,
+ "learning_rate": 0.0003909667601532819,
+ "loss": 2.0308260917663574,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069686411149824,
+ "grad_norm": 0.0606699101626873,
+ "learning_rate": 0.00039071209970495445,
+ "loss": 2.0328145027160645,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083623693379792,
+ "grad_norm": 0.060405075550079346,
+ "learning_rate": 0.00039045736858857273,
+ "loss": 2.0279717445373535,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097560975609756,
+ "grad_norm": 0.0611112080514431,
+ "learning_rate": 0.0003902025670093687,
+ "loss": 2.0422918796539307,
+ "step": 1519
+ },
+ {
+ "epoch": 21.11149825783972,
+ "grad_norm": 0.05837974697351456,
+ "learning_rate": 0.00038994769517263156,
+ "loss": 2.048844337463379,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125435540069688,
+ "grad_norm": 0.06053513288497925,
+ "learning_rate": 0.0003896927532837069,
+ "loss": 2.0358529090881348,
+ "step": 1521
+ },
+ {
+ "epoch": 21.139372822299652,
+ "grad_norm": 0.06003211438655853,
+ "learning_rate": 0.0003894377415479967,
+ "loss": 2.042120933532715,
+ "step": 1522
+ },
+ {
+ "epoch": 21.153310104529616,
+ "grad_norm": 0.060802191495895386,
+ "learning_rate": 0.00038918266017095936,
+ "loss": 2.046935558319092,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16724738675958,
+ "grad_norm": 0.06367085129022598,
+ "learning_rate": 0.0003889275093581096,
+ "loss": 2.049290180206299,
+ "step": 1524
+ },
+ {
+ "epoch": 21.181184668989548,
+ "grad_norm": 0.05851449444890022,
+ "learning_rate": 0.00038867228931501737,
+ "loss": 2.052337169647217,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195121951219512,
+ "grad_norm": 0.05873304605484009,
+ "learning_rate": 0.0003884170002473091,
+ "loss": 2.0443310737609863,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209059233449477,
+ "grad_norm": 0.062345489859580994,
+ "learning_rate": 0.0003881616423606666,
+ "loss": 2.0309629440307617,
+ "step": 1527
+ },
+ {
+ "epoch": 21.222996515679444,
+ "grad_norm": 0.06157859042286873,
+ "learning_rate": 0.00038790621586082697,
+ "loss": 2.040987491607666,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23693379790941,
+ "grad_norm": 0.06326454132795334,
+ "learning_rate": 0.0003876507209535829,
+ "loss": 2.0339348316192627,
+ "step": 1529
+ },
+ {
+ "epoch": 21.250871080139373,
+ "grad_norm": 0.05967864394187927,
+ "learning_rate": 0.00038739515784478186,
+ "loss": 2.0340347290039062,
+ "step": 1530
+ },
+ {
+ "epoch": 21.264808362369337,
+ "grad_norm": 0.06237480416893959,
+ "learning_rate": 0.00038713952674032654,
+ "loss": 2.0541834831237793,
+ "step": 1531
+ },
+ {
+ "epoch": 21.278745644599304,
+ "grad_norm": 0.06269778311252594,
+ "learning_rate": 0.0003868838278461743,
+ "loss": 2.0332889556884766,
+ "step": 1532
+ },
+ {
+ "epoch": 21.29268292682927,
+ "grad_norm": 0.058931149542331696,
+ "learning_rate": 0.0003866280613683371,
+ "loss": 2.046989917755127,
+ "step": 1533
+ },
+ {
+ "epoch": 21.306620209059233,
+ "grad_norm": 0.05884654074907303,
+ "learning_rate": 0.00038637222751288126,
+ "loss": 2.0413711071014404,
+ "step": 1534
+ },
+ {
+ "epoch": 21.320557491289197,
+ "grad_norm": 0.06431130319833755,
+ "learning_rate": 0.0003861163264859277,
+ "loss": 2.043229103088379,
+ "step": 1535
+ },
+ {
+ "epoch": 21.334494773519165,
+ "grad_norm": 0.061834171414375305,
+ "learning_rate": 0.0003858603584936511,
+ "loss": 2.0472874641418457,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34843205574913,
+ "grad_norm": 0.058680370450019836,
+ "learning_rate": 0.0003856043237422803,
+ "loss": 2.058084487915039,
+ "step": 1537
+ },
+ {
+ "epoch": 21.362369337979093,
+ "grad_norm": 0.0592305064201355,
+ "learning_rate": 0.0003853482224380978,
+ "loss": 2.0515503883361816,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37630662020906,
+ "grad_norm": 0.05994146317243576,
+ "learning_rate": 0.00038509205478744,
+ "loss": 2.0377187728881836,
+ "step": 1539
+ },
+ {
+ "epoch": 21.390243902439025,
+ "grad_norm": 0.06389214843511581,
+ "learning_rate": 0.0003848358209966963,
+ "loss": 2.0533361434936523,
+ "step": 1540
+ },
+ {
+ "epoch": 21.40418118466899,
+ "grad_norm": 0.06090407446026802,
+ "learning_rate": 0.0003845795212723099,
+ "loss": 2.0553441047668457,
+ "step": 1541
+ },
+ {
+ "epoch": 21.418118466898953,
+ "grad_norm": 0.06273195147514343,
+ "learning_rate": 0.00038432315582077664,
+ "loss": 2.0590620040893555,
+ "step": 1542
+ },
+ {
+ "epoch": 21.43205574912892,
+ "grad_norm": 0.06525216996669769,
+ "learning_rate": 0.0003840667248486456,
+ "loss": 2.0517024993896484,
+ "step": 1543
+ },
+ {
+ "epoch": 21.445993031358885,
+ "grad_norm": 0.06123936176300049,
+ "learning_rate": 0.0003838102285625186,
+ "loss": 2.054276943206787,
+ "step": 1544
+ },
+ {
+ "epoch": 21.45993031358885,
+ "grad_norm": 0.06384961307048798,
+ "learning_rate": 0.00038355366716905006,
+ "loss": 2.058122396469116,
+ "step": 1545
+ },
+ {
+ "epoch": 21.473867595818817,
+ "grad_norm": 0.06391091644763947,
+ "learning_rate": 0.0003832970408749467,
+ "loss": 2.061744213104248,
+ "step": 1546
+ },
+ {
+ "epoch": 21.48780487804878,
+ "grad_norm": 0.06393741071224213,
+ "learning_rate": 0.00038304034988696816,
+ "loss": 2.0698375701904297,
+ "step": 1547
+ },
+ {
+ "epoch": 21.501742160278745,
+ "grad_norm": 0.06098850816488266,
+ "learning_rate": 0.00038278359441192516,
+ "loss": 2.0527985095977783,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51567944250871,
+ "grad_norm": 0.059852417558431625,
+ "learning_rate": 0.00038252677465668136,
+ "loss": 2.0557432174682617,
+ "step": 1549
+ },
+ {
+ "epoch": 21.529616724738677,
+ "grad_norm": 0.063257597386837,
+ "learning_rate": 0.00038226989082815156,
+ "loss": 2.0541868209838867,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54355400696864,
+ "grad_norm": 0.06203039735555649,
+ "learning_rate": 0.00038201294313330245,
+ "loss": 2.0554230213165283,
+ "step": 1551
+ },
+ {
+ "epoch": 21.557491289198605,
+ "grad_norm": 0.06832246482372284,
+ "learning_rate": 0.00038175593177915227,
+ "loss": 2.0623044967651367,
+ "step": 1552
+ },
+ {
+ "epoch": 21.571428571428573,
+ "grad_norm": 0.0681714415550232,
+ "learning_rate": 0.0003814988569727704,
+ "loss": 2.0611777305603027,
+ "step": 1553
+ },
+ {
+ "epoch": 21.585365853658537,
+ "grad_norm": 0.06245206668972969,
+ "learning_rate": 0.0003812417189212773,
+ "loss": 2.0653200149536133,
+ "step": 1554
+ },
+ {
+ "epoch": 21.5993031358885,
+ "grad_norm": 0.06456883996725082,
+ "learning_rate": 0.00038098451783184447,
+ "loss": 2.0564777851104736,
+ "step": 1555
+ },
+ {
+ "epoch": 21.613240418118465,
+ "grad_norm": 0.06580620259046555,
+ "learning_rate": 0.00038072725391169416,
+ "loss": 2.0669004917144775,
+ "step": 1556
+ },
+ {
+ "epoch": 21.627177700348433,
+ "grad_norm": 0.0615418441593647,
+ "learning_rate": 0.0003804699273680994,
+ "loss": 2.062901258468628,
+ "step": 1557
+ },
+ {
+ "epoch": 21.641114982578397,
+ "grad_norm": 0.0597493015229702,
+ "learning_rate": 0.0003802125384083834,
+ "loss": 2.051572799682617,
+ "step": 1558
+ },
+ {
+ "epoch": 21.65505226480836,
+ "grad_norm": 0.05919422581791878,
+ "learning_rate": 0.0003799550872399197,
+ "loss": 2.0755348205566406,
+ "step": 1559
+ },
+ {
+ "epoch": 21.66898954703833,
+ "grad_norm": 0.0618102103471756,
+ "learning_rate": 0.0003796975740701323,
+ "loss": 2.0373353958129883,
+ "step": 1560
+ },
+ {
+ "epoch": 21.682926829268293,
+ "grad_norm": 0.060938529670238495,
+ "learning_rate": 0.0003794399991064948,
+ "loss": 2.046900749206543,
+ "step": 1561
+ },
+ {
+ "epoch": 21.696864111498257,
+ "grad_norm": 0.059858448803424835,
+ "learning_rate": 0.00037918236255653074,
+ "loss": 2.0637502670288086,
+ "step": 1562
+ },
+ {
+ "epoch": 21.71080139372822,
+ "grad_norm": 0.061770256608724594,
+ "learning_rate": 0.00037892466462781306,
+ "loss": 2.0593981742858887,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72473867595819,
+ "grad_norm": 0.06062103807926178,
+ "learning_rate": 0.00037866690552796446,
+ "loss": 2.0643060207366943,
+ "step": 1564
+ },
+ {
+ "epoch": 21.738675958188153,
+ "grad_norm": 0.05910053849220276,
+ "learning_rate": 0.00037840908546465696,
+ "loss": 2.06599497795105,
+ "step": 1565
+ },
+ {
+ "epoch": 21.752613240418118,
+ "grad_norm": 0.057800937443971634,
+ "learning_rate": 0.0003781512046456111,
+ "loss": 2.057941198348999,
+ "step": 1566
+ },
+ {
+ "epoch": 21.766550522648085,
+ "grad_norm": 0.05939284712076187,
+ "learning_rate": 0.0003778932632785972,
+ "loss": 2.057325601577759,
+ "step": 1567
+ },
+ {
+ "epoch": 21.78048780487805,
+ "grad_norm": 0.06094905734062195,
+ "learning_rate": 0.00037763526157143376,
+ "loss": 2.058422803878784,
+ "step": 1568
+ },
+ {
+ "epoch": 21.794425087108014,
+ "grad_norm": 0.060869570821523666,
+ "learning_rate": 0.00037737719973198825,
+ "loss": 2.0537140369415283,
+ "step": 1569
+ },
+ {
+ "epoch": 21.808362369337978,
+ "grad_norm": 0.05886754021048546,
+ "learning_rate": 0.0003771190779681762,
+ "loss": 2.077362537384033,
+ "step": 1570
+ },
+ {
+ "epoch": 21.822299651567945,
+ "grad_norm": 0.061772339046001434,
+ "learning_rate": 0.0003768608964879619,
+ "loss": 2.067615032196045,
+ "step": 1571
+ },
+ {
+ "epoch": 21.83623693379791,
+ "grad_norm": 0.06018555909395218,
+ "learning_rate": 0.00037660265549935724,
+ "loss": 2.0696468353271484,
+ "step": 1572
+ },
+ {
+ "epoch": 21.850174216027874,
+ "grad_norm": 0.058483004570007324,
+ "learning_rate": 0.00037634435521042257,
+ "loss": 2.085695505142212,
+ "step": 1573
+ },
+ {
+ "epoch": 21.86411149825784,
+ "grad_norm": 0.06118083372712135,
+ "learning_rate": 0.0003760859958292656,
+ "loss": 2.0818231105804443,
+ "step": 1574
+ },
+ {
+ "epoch": 21.878048780487806,
+ "grad_norm": 0.057427361607551575,
+ "learning_rate": 0.000375827577564042,
+ "loss": 2.0525319576263428,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89198606271777,
+ "grad_norm": 0.06218957528471947,
+ "learning_rate": 0.0003755691006229545,
+ "loss": 2.0691938400268555,
+ "step": 1576
+ },
+ {
+ "epoch": 21.905923344947734,
+ "grad_norm": 0.05727244168519974,
+ "learning_rate": 0.0003753105652142534,
+ "loss": 2.0820717811584473,
+ "step": 1577
+ },
+ {
+ "epoch": 21.9198606271777,
+ "grad_norm": 0.05988473817706108,
+ "learning_rate": 0.000375051971546236,
+ "loss": 2.08701753616333,
+ "step": 1578
+ },
+ {
+ "epoch": 21.933797909407666,
+ "grad_norm": 0.05977068468928337,
+ "learning_rate": 0.0003747933198272465,
+ "loss": 2.0772976875305176,
+ "step": 1579
+ },
+ {
+ "epoch": 21.94773519163763,
+ "grad_norm": 0.05766184255480766,
+ "learning_rate": 0.00037453461026567604,
+ "loss": 2.0779075622558594,
+ "step": 1580
+ },
+ {
+ "epoch": 21.961672473867594,
+ "grad_norm": 0.06194579601287842,
+ "learning_rate": 0.00037427584306996196,
+ "loss": 2.066725254058838,
+ "step": 1581
+ },
+ {
+ "epoch": 21.975609756097562,
+ "grad_norm": 0.06117486208677292,
+ "learning_rate": 0.0003740170184485888,
+ "loss": 2.063469409942627,
+ "step": 1582
+ },
+ {
+ "epoch": 21.989547038327526,
+ "grad_norm": 0.05828284099698067,
+ "learning_rate": 0.0003737581366100864,
+ "loss": 2.0690245628356934,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.04717395827174187,
+ "learning_rate": 0.0003734991977630315,
+ "loss": 1.5481253862380981,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 0.6287422180175781,
+ "eval_runtime": 36.8966,
+ "eval_samples_per_second": 66.185,
+ "eval_steps_per_second": 0.542,
+ "step": 1584
+ },
+ {
+ "epoch": 22.013937282229964,
+ "grad_norm": 0.05935833230614662,
+ "learning_rate": 0.0003732402021160463,
+ "loss": 2.0213916301727295,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027874564459932,
+ "grad_norm": 0.0647081509232521,
+ "learning_rate": 0.00037298114987779885,
+ "loss": 2.021193504333496,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041811846689896,
+ "grad_norm": 0.060830891132354736,
+ "learning_rate": 0.000372722041257003,
+ "loss": 2.014934539794922,
+ "step": 1587
+ },
+ {
+ "epoch": 22.05574912891986,
+ "grad_norm": 0.0575600229203701,
+ "learning_rate": 0.00037246287646241783,
+ "loss": 2.0201141834259033,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069686411149824,
+ "grad_norm": 0.05999648571014404,
+ "learning_rate": 0.0003722036557028478,
+ "loss": 2.01477313041687,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083623693379792,
+ "grad_norm": 0.06243257597088814,
+ "learning_rate": 0.0003719443791871422,
+ "loss": 2.0069234371185303,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097560975609756,
+ "grad_norm": 0.061873242259025574,
+ "learning_rate": 0.0003716850471241958,
+ "loss": 2.0218544006347656,
+ "step": 1591
+ },
+ {
+ "epoch": 22.11149825783972,
+ "grad_norm": 0.0562879703938961,
+ "learning_rate": 0.0003714256597229474,
+ "loss": 2.027651786804199,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125435540069688,
+ "grad_norm": 0.06129061430692673,
+ "learning_rate": 0.0003711662171923809,
+ "loss": 2.02847957611084,
+ "step": 1593
+ },
+ {
+ "epoch": 22.139372822299652,
+ "grad_norm": 0.06575217843055725,
+ "learning_rate": 0.0003709067197415244,
+ "loss": 2.0157370567321777,
+ "step": 1594
+ },
+ {
+ "epoch": 22.153310104529616,
+ "grad_norm": 0.06006300821900368,
+ "learning_rate": 0.00037064716757945036,
+ "loss": 2.0212819576263428,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16724738675958,
+ "grad_norm": 0.05905022844672203,
+ "learning_rate": 0.0003703875609152753,
+ "loss": 2.019151449203491,
+ "step": 1596
+ },
+ {
+ "epoch": 22.181184668989548,
+ "grad_norm": 0.05942187085747719,
+ "learning_rate": 0.0003701278999581595,
+ "loss": 2.0100960731506348,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195121951219512,
+ "grad_norm": 0.06255407631397247,
+ "learning_rate": 0.0003698681849173073,
+ "loss": 2.0253348350524902,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209059233449477,
+ "grad_norm": 0.06482044607400894,
+ "learning_rate": 0.0003696084160019662,
+ "loss": 2.0148420333862305,
+ "step": 1599
+ },
+ {
+ "epoch": 22.222996515679444,
+ "grad_norm": 0.0601821169257164,
+ "learning_rate": 0.0003693485934214274,
+ "loss": 2.023470640182495,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23693379790941,
+ "grad_norm": 0.06029169633984566,
+ "learning_rate": 0.0003690887173850253,
+ "loss": 2.009469985961914,
+ "step": 1601
+ },
+ {
+ "epoch": 22.250871080139373,
+ "grad_norm": 0.059910114854574203,
+ "learning_rate": 0.0003688287881021374,
+ "loss": 2.035770893096924,
+ "step": 1602
+ },
+ {
+ "epoch": 22.264808362369337,
+ "grad_norm": 0.06215308979153633,
+ "learning_rate": 0.00036856880578218376,
+ "loss": 2.01731538772583,
+ "step": 1603
+ },
+ {
+ "epoch": 22.278745644599304,
+ "grad_norm": 0.06145225092768669,
+ "learning_rate": 0.00036830877063462786,
+ "loss": 2.026510715484619,
+ "step": 1604
+ },
+ {
+ "epoch": 22.29268292682927,
+ "grad_norm": 0.05880272388458252,
+ "learning_rate": 0.0003680486828689749,
+ "loss": 2.0214052200317383,
+ "step": 1605
+ },
+ {
+ "epoch": 22.306620209059233,
+ "grad_norm": 0.06154364347457886,
+ "learning_rate": 0.00036778854269477315,
+ "loss": 2.038039207458496,
+ "step": 1606
+ },
+ {
+ "epoch": 22.320557491289197,
+ "grad_norm": 0.06352122128009796,
+ "learning_rate": 0.0003675283503216127,
+ "loss": 2.0086398124694824,
+ "step": 1607
+ },
+ {
+ "epoch": 22.334494773519165,
+ "grad_norm": 0.06252473592758179,
+ "learning_rate": 0.000367268105959126,
+ "loss": 2.0344018936157227,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34843205574913,
+ "grad_norm": 0.05990692600607872,
+ "learning_rate": 0.00036700780981698705,
+ "loss": 2.030116558074951,
+ "step": 1609
+ },
+ {
+ "epoch": 22.362369337979093,
+ "grad_norm": 0.06241406500339508,
+ "learning_rate": 0.0003667474621049119,
+ "loss": 2.02555513381958,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37630662020906,
+ "grad_norm": 0.06356526166200638,
+ "learning_rate": 0.00036648706303265795,
+ "loss": 2.034946918487549,
+ "step": 1611
+ },
+ {
+ "epoch": 22.390243902439025,
+ "grad_norm": 0.05866849794983864,
+ "learning_rate": 0.000366226612810024,
+ "loss": 2.0180652141571045,
+ "step": 1612
+ },
+ {
+ "epoch": 22.40418118466899,
+ "grad_norm": 0.06021985039114952,
+ "learning_rate": 0.00036596611164685025,
+ "loss": 2.028763771057129,
+ "step": 1613
+ },
+ {
+ "epoch": 22.418118466898953,
+ "grad_norm": 0.0626717135310173,
+ "learning_rate": 0.0003657055597530175,
+ "loss": 2.021925926208496,
+ "step": 1614
+ },
+ {
+ "epoch": 22.43205574912892,
+ "grad_norm": 0.05952958017587662,
+ "learning_rate": 0.00036544495733844797,
+ "loss": 2.029926300048828,
+ "step": 1615
+ },
+ {
+ "epoch": 22.445993031358885,
+ "grad_norm": 0.06139490753412247,
+ "learning_rate": 0.000365184304613104,
+ "loss": 2.0357437133789062,
+ "step": 1616
+ },
+ {
+ "epoch": 22.45993031358885,
+ "grad_norm": 0.06750302016735077,
+ "learning_rate": 0.0003649236017869892,
+ "loss": 2.033015251159668,
+ "step": 1617
+ },
+ {
+ "epoch": 22.473867595818817,
+ "grad_norm": 0.06402213126420975,
+ "learning_rate": 0.00036466284907014685,
+ "loss": 2.0288286209106445,
+ "step": 1618
+ },
+ {
+ "epoch": 22.48780487804878,
+ "grad_norm": 0.06656284630298615,
+ "learning_rate": 0.0003644020466726608,
+ "loss": 2.035670042037964,
+ "step": 1619
+ },
+ {
+ "epoch": 22.501742160278745,
+ "grad_norm": 0.06058082729578018,
+ "learning_rate": 0.00036414119480465473,
+ "loss": 2.0248050689697266,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51567944250871,
+ "grad_norm": 0.0639055147767067,
+ "learning_rate": 0.0003638802936762925,
+ "loss": 2.0347347259521484,
+ "step": 1621
+ },
+ {
+ "epoch": 22.529616724738677,
+ "grad_norm": 0.06509086489677429,
+ "learning_rate": 0.0003636193434977771,
+ "loss": 2.0287723541259766,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54355400696864,
+ "grad_norm": 0.06115980073809624,
+ "learning_rate": 0.0003633583444793516,
+ "loss": 2.0428926944732666,
+ "step": 1623
+ },
+ {
+ "epoch": 22.557491289198605,
+ "grad_norm": 0.06231401860713959,
+ "learning_rate": 0.00036309729683129814,
+ "loss": 2.0409903526306152,
+ "step": 1624
+ },
+ {
+ "epoch": 22.571428571428573,
+ "grad_norm": 0.06252925843000412,
+ "learning_rate": 0.00036283620076393814,
+ "loss": 2.0263853073120117,
+ "step": 1625
+ },
+ {
+ "epoch": 22.585365853658537,
+ "grad_norm": 0.05840536579489708,
+ "learning_rate": 0.000362575056487632,
+ "loss": 2.0359339714050293,
+ "step": 1626
+ },
+ {
+ "epoch": 22.5993031358885,
+ "grad_norm": 0.06289584934711456,
+ "learning_rate": 0.00036231386421277877,
+ "loss": 2.041419267654419,
+ "step": 1627
+ },
+ {
+ "epoch": 22.613240418118465,
+ "grad_norm": 0.059172775596380234,
+ "learning_rate": 0.0003620526241498167,
+ "loss": 2.0285377502441406,
+ "step": 1628
+ },
+ {
+ "epoch": 22.627177700348433,
+ "grad_norm": 0.05929497256875038,
+ "learning_rate": 0.0003617913365092218,
+ "loss": 2.054593086242676,
+ "step": 1629
+ },
+ {
+ "epoch": 22.641114982578397,
+ "grad_norm": 0.05966512858867645,
+ "learning_rate": 0.0003615300015015091,
+ "loss": 2.0354065895080566,
+ "step": 1630
+ },
+ {
+ "epoch": 22.65505226480836,
+ "grad_norm": 0.060928668826818466,
+ "learning_rate": 0.0003612686193372312,
+ "loss": 2.0524067878723145,
+ "step": 1631
+ },
+ {
+ "epoch": 22.66898954703833,
+ "grad_norm": 0.06704723089933395,
+ "learning_rate": 0.00036100719022697924,
+ "loss": 2.0277299880981445,
+ "step": 1632
+ },
+ {
+ "epoch": 22.682926829268293,
+ "grad_norm": 0.0654405876994133,
+ "learning_rate": 0.0003607457143813819,
+ "loss": 2.0558719635009766,
+ "step": 1633
+ },
+ {
+ "epoch": 22.696864111498257,
+ "grad_norm": 0.06097044795751572,
+ "learning_rate": 0.00036048419201110553,
+ "loss": 2.064798593521118,
+ "step": 1634
+ },
+ {
+ "epoch": 22.71080139372822,
+ "grad_norm": 0.06433983147144318,
+ "learning_rate": 0.00036022262332685383,
+ "loss": 2.0563478469848633,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72473867595819,
+ "grad_norm": 0.0608518086373806,
+ "learning_rate": 0.0003599610085393681,
+ "loss": 2.034682273864746,
+ "step": 1636
+ },
+ {
+ "epoch": 22.738675958188153,
+ "grad_norm": 0.06357148289680481,
+ "learning_rate": 0.0003596993478594267,
+ "loss": 2.030651569366455,
+ "step": 1637
+ },
+ {
+ "epoch": 22.752613240418118,
+ "grad_norm": 0.05953045189380646,
+ "learning_rate": 0.0003594376414978447,
+ "loss": 2.046708345413208,
+ "step": 1638
+ },
+ {
+ "epoch": 22.766550522648085,
+ "grad_norm": 0.06323279440402985,
+ "learning_rate": 0.0003591758896654745,
+ "loss": 2.040714740753174,
+ "step": 1639
+ },
+ {
+ "epoch": 22.78048780487805,
+ "grad_norm": 0.05863328278064728,
+ "learning_rate": 0.0003589140925732045,
+ "loss": 2.0645852088928223,
+ "step": 1640
+ },
+ {
+ "epoch": 22.794425087108014,
+ "grad_norm": 0.058750979602336884,
+ "learning_rate": 0.0003586522504319602,
+ "loss": 2.0421950817108154,
+ "step": 1641
+ },
+ {
+ "epoch": 22.808362369337978,
+ "grad_norm": 0.06100532412528992,
+ "learning_rate": 0.0003583903634527029,
+ "loss": 2.037891387939453,
+ "step": 1642
+ },
+ {
+ "epoch": 22.822299651567945,
+ "grad_norm": 0.058944981545209885,
+ "learning_rate": 0.0003581284318464302,
+ "loss": 2.029283046722412,
+ "step": 1643
+ },
+ {
+ "epoch": 22.83623693379791,
+ "grad_norm": 0.060633257031440735,
+ "learning_rate": 0.00035786645582417564,
+ "loss": 2.058162212371826,
+ "step": 1644
+ },
+ {
+ "epoch": 22.850174216027874,
+ "grad_norm": 0.059548065066337585,
+ "learning_rate": 0.00035760443559700863,
+ "loss": 2.0538077354431152,
+ "step": 1645
+ },
+ {
+ "epoch": 22.86411149825784,
+ "grad_norm": 0.06102653965353966,
+ "learning_rate": 0.00035734237137603417,
+ "loss": 2.052565097808838,
+ "step": 1646
+ },
+ {
+ "epoch": 22.878048780487806,
+ "grad_norm": 0.05913171172142029,
+ "learning_rate": 0.0003570802633723927,
+ "loss": 2.0596346855163574,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89198606271777,
+ "grad_norm": 0.061698317527770996,
+ "learning_rate": 0.0003568181117972597,
+ "loss": 2.0622029304504395,
+ "step": 1648
+ },
+ {
+ "epoch": 22.905923344947734,
+ "grad_norm": 0.059588681906461716,
+ "learning_rate": 0.00035655591686184626,
+ "loss": 2.04315447807312,
+ "step": 1649
+ },
+ {
+ "epoch": 22.9198606271777,
+ "grad_norm": 0.06275669485330582,
+ "learning_rate": 0.0003562936787773979,
+ "loss": 2.0449585914611816,
+ "step": 1650
+ },
+ {
+ "epoch": 22.933797909407666,
+ "grad_norm": 0.06165294349193573,
+ "learning_rate": 0.000356031397755195,
+ "loss": 2.0373802185058594,
+ "step": 1651
+ },
+ {
+ "epoch": 22.94773519163763,
+ "grad_norm": 0.0604374073445797,
+ "learning_rate": 0.00035576907400655303,
+ "loss": 2.061960220336914,
+ "step": 1652
+ },
+ {
+ "epoch": 22.961672473867594,
+ "grad_norm": 0.05968572944402695,
+ "learning_rate": 0.00035550670774282106,
+ "loss": 2.051542282104492,
+ "step": 1653
+ },
+ {
+ "epoch": 22.975609756097562,
+ "grad_norm": 0.06063802167773247,
+ "learning_rate": 0.0003552442991753831,
+ "loss": 2.045436143875122,
+ "step": 1654
+ },
+ {
+ "epoch": 22.989547038327526,
+ "grad_norm": 0.060019318014383316,
+ "learning_rate": 0.00035498184851565697,
+ "loss": 2.0558581352233887,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.049940288066864014,
+ "learning_rate": 0.0003547193559750944,
+ "loss": 1.5244159698486328,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 0.6296067833900452,
+ "eval_runtime": 35.7678,
+ "eval_samples_per_second": 68.274,
+ "eval_steps_per_second": 0.559,
+ "step": 1656
+ },
+ {
+ "epoch": 23.013937282229964,
+ "grad_norm": 0.058643098920583725,
+ "learning_rate": 0.00035445682176518087,
+ "loss": 1.996954321861267,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027874564459932,
+ "grad_norm": 0.07890982180833817,
+ "learning_rate": 0.00035419424609743546,
+ "loss": 2.003385543823242,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041811846689896,
+ "grad_norm": 0.06572650372982025,
+ "learning_rate": 0.00035393162918341065,
+ "loss": 1.9858441352844238,
+ "step": 1659
+ },
+ {
+ "epoch": 23.05574912891986,
+ "grad_norm": 0.06063111498951912,
+ "learning_rate": 0.00035366897123469213,
+ "loss": 1.9996259212493896,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069686411149824,
+ "grad_norm": 0.06614259630441666,
+ "learning_rate": 0.0003534062724628986,
+ "loss": 2.013913869857788,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083623693379792,
+ "grad_norm": 0.06714142113924026,
+ "learning_rate": 0.00035314353307968195,
+ "loss": 1.9934425354003906,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097560975609756,
+ "grad_norm": 0.06256651133298874,
+ "learning_rate": 0.00035288075329672634,
+ "loss": 2.0107738971710205,
+ "step": 1663
+ },
+ {
+ "epoch": 23.11149825783972,
+ "grad_norm": 0.06392858177423477,
+ "learning_rate": 0.0003526179333257487,
+ "loss": 1.9977614879608154,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125435540069688,
+ "grad_norm": 0.06550068408250809,
+ "learning_rate": 0.0003523550733784984,
+ "loss": 1.9837822914123535,
+ "step": 1665
+ },
+ {
+ "epoch": 23.139372822299652,
+ "grad_norm": 0.06895361095666885,
+ "learning_rate": 0.00035209217366675706,
+ "loss": 1.9999781847000122,
+ "step": 1666
+ },
+ {
+ "epoch": 23.153310104529616,
+ "grad_norm": 0.06363921612501144,
+ "learning_rate": 0.000351829234402338,
+ "loss": 1.985809087753296,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16724738675958,
+ "grad_norm": 0.06028164550662041,
+ "learning_rate": 0.0003515662557970867,
+ "loss": 2.0019848346710205,
+ "step": 1668
+ },
+ {
+ "epoch": 23.181184668989548,
+ "grad_norm": 0.06500236690044403,
+ "learning_rate": 0.0003513032380628804,
+ "loss": 2.0089876651763916,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195121951219512,
+ "grad_norm": 0.05989453196525574,
+ "learning_rate": 0.0003510401814116277,
+ "loss": 1.9814873933792114,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209059233449477,
+ "grad_norm": 0.060608964413404465,
+ "learning_rate": 0.0003507770860552684,
+ "loss": 2.009627103805542,
+ "step": 1671
+ },
+ {
+ "epoch": 23.222996515679444,
+ "grad_norm": 0.06088849529623985,
+ "learning_rate": 0.00035051395220577397,
+ "loss": 1.9926284551620483,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23693379790941,
+ "grad_norm": 0.06073446571826935,
+ "learning_rate": 0.0003502507800751464,
+ "loss": 2.0231637954711914,
+ "step": 1673
+ },
+ {
+ "epoch": 23.250871080139373,
+ "grad_norm": 0.06006423011422157,
+ "learning_rate": 0.0003499875698754187,
+ "loss": 1.9915974140167236,
+ "step": 1674
+ },
+ {
+ "epoch": 23.264808362369337,
+ "grad_norm": 0.059542685747146606,
+ "learning_rate": 0.00034972432181865467,
+ "loss": 1.9983782768249512,
+ "step": 1675
+ },
+ {
+ "epoch": 23.278745644599304,
+ "grad_norm": 0.06081021949648857,
+ "learning_rate": 0.00034946103611694854,
+ "loss": 1.9988645315170288,
+ "step": 1676
+ },
+ {
+ "epoch": 23.29268292682927,
+ "grad_norm": 0.05827084556221962,
+ "learning_rate": 0.00034919771298242477,
+ "loss": 2.002373456954956,
+ "step": 1677
+ },
+ {
+ "epoch": 23.306620209059233,
+ "grad_norm": 0.059867121279239655,
+ "learning_rate": 0.00034893435262723814,
+ "loss": 2.0014448165893555,
+ "step": 1678
+ },
+ {
+ "epoch": 23.320557491289197,
+ "grad_norm": 0.059579163789749146,
+ "learning_rate": 0.00034867095526357325,
+ "loss": 2.018733501434326,
+ "step": 1679
+ },
+ {
+ "epoch": 23.334494773519165,
+ "grad_norm": 0.06353137642145157,
+ "learning_rate": 0.0003484075211036446,
+ "loss": 2.003769874572754,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34843205574913,
+ "grad_norm": 0.06118098273873329,
+ "learning_rate": 0.0003481440503596964,
+ "loss": 2.009033203125,
+ "step": 1681
+ },
+ {
+ "epoch": 23.362369337979093,
+ "grad_norm": 0.060457196086645126,
+ "learning_rate": 0.0003478805432440021,
+ "loss": 2.005089282989502,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37630662020906,
+ "grad_norm": 0.06178257614374161,
+ "learning_rate": 0.0003476169999688648,
+ "loss": 1.9994860887527466,
+ "step": 1683
+ },
+ {
+ "epoch": 23.390243902439025,
+ "grad_norm": 0.06617811322212219,
+ "learning_rate": 0.00034735342074661654,
+ "loss": 2.0085301399230957,
+ "step": 1684
+ },
+ {
+ "epoch": 23.40418118466899,
+ "grad_norm": 0.061164431273937225,
+ "learning_rate": 0.0003470898057896183,
+ "loss": 2.0015316009521484,
+ "step": 1685
+ },
+ {
+ "epoch": 23.418118466898953,
+ "grad_norm": 0.06309735029935837,
+ "learning_rate": 0.0003468261553102599,
+ "loss": 2.020759344100952,
+ "step": 1686
+ },
+ {
+ "epoch": 23.43205574912892,
+ "grad_norm": 0.0626831203699112,
+ "learning_rate": 0.00034656246952095984,
+ "loss": 2.009215831756592,
+ "step": 1687
+ },
+ {
+ "epoch": 23.445993031358885,
+ "grad_norm": 0.05888507142663002,
+ "learning_rate": 0.0003462987486341648,
+ "loss": 2.013838529586792,
+ "step": 1688
+ },
+ {
+ "epoch": 23.45993031358885,
+ "grad_norm": 0.0606909804046154,
+ "learning_rate": 0.00034603499286235006,
+ "loss": 2.005582571029663,
+ "step": 1689
+ },
+ {
+ "epoch": 23.473867595818817,
+ "grad_norm": 0.058872029185295105,
+ "learning_rate": 0.0003457712024180188,
+ "loss": 2.0199661254882812,
+ "step": 1690
+ },
+ {
+ "epoch": 23.48780487804878,
+ "grad_norm": 0.06124086305499077,
+ "learning_rate": 0.0003455073775137025,
+ "loss": 2.0159080028533936,
+ "step": 1691
+ },
+ {
+ "epoch": 23.501742160278745,
+ "grad_norm": 0.059814538806676865,
+ "learning_rate": 0.0003452435183619598,
+ "loss": 2.011732578277588,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51567944250871,
+ "grad_norm": 0.060436636209487915,
+ "learning_rate": 0.0003449796251753773,
+ "loss": 2.018317699432373,
+ "step": 1693
+ },
+ {
+ "epoch": 23.529616724738677,
+ "grad_norm": 0.06265381723642349,
+ "learning_rate": 0.00034471569816656915,
+ "loss": 2.010077714920044,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54355400696864,
+ "grad_norm": 0.06320856511592865,
+ "learning_rate": 0.00034445173754817646,
+ "loss": 2.0341739654541016,
+ "step": 1695
+ },
+ {
+ "epoch": 23.557491289198605,
+ "grad_norm": 0.061819177120923996,
+ "learning_rate": 0.00034418774353286747,
+ "loss": 2.032660961151123,
+ "step": 1696
+ },
+ {
+ "epoch": 23.571428571428573,
+ "grad_norm": 0.06506329029798508,
+ "learning_rate": 0.0003439237163333375,
+ "loss": 2.0272016525268555,
+ "step": 1697
+ },
+ {
+ "epoch": 23.585365853658537,
+ "grad_norm": 0.06600788235664368,
+ "learning_rate": 0.0003436596561623084,
+ "loss": 2.0060458183288574,
+ "step": 1698
+ },
+ {
+ "epoch": 23.5993031358885,
+ "grad_norm": 0.06110696122050285,
+ "learning_rate": 0.0003433955632325288,
+ "loss": 2.0102944374084473,
+ "step": 1699
+ },
+ {
+ "epoch": 23.613240418118465,
+ "grad_norm": 0.066371850669384,
+ "learning_rate": 0.00034313143775677353,
+ "loss": 2.0352327823638916,
+ "step": 1700
+ },
+ {
+ "epoch": 23.627177700348433,
+ "grad_norm": 0.06527800112962723,
+ "learning_rate": 0.00034286727994784367,
+ "loss": 2.0035440921783447,
+ "step": 1701
+ },
+ {
+ "epoch": 23.641114982578397,
+ "grad_norm": 0.06285402178764343,
+ "learning_rate": 0.0003426030900185665,
+ "loss": 2.033757448196411,
+ "step": 1702
+ },
+ {
+ "epoch": 23.65505226480836,
+ "grad_norm": 0.061433784663677216,
+ "learning_rate": 0.0003423388681817949,
+ "loss": 2.0161848068237305,
+ "step": 1703
+ },
+ {
+ "epoch": 23.66898954703833,
+ "grad_norm": 0.05987842008471489,
+ "learning_rate": 0.00034207461465040793,
+ "loss": 2.0261831283569336,
+ "step": 1704
+ },
+ {
+ "epoch": 23.682926829268293,
+ "grad_norm": 0.059953805059194565,
+ "learning_rate": 0.0003418103296373096,
+ "loss": 2.0215904712677,
+ "step": 1705
+ },
+ {
+ "epoch": 23.696864111498257,
+ "grad_norm": 0.06330372393131256,
+ "learning_rate": 0.00034154601335542964,
+ "loss": 2.025210380554199,
+ "step": 1706
+ },
+ {
+ "epoch": 23.71080139372822,
+ "grad_norm": 0.059463981539011,
+ "learning_rate": 0.00034128166601772304,
+ "loss": 2.02297306060791,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72473867595819,
+ "grad_norm": 0.05973811820149422,
+ "learning_rate": 0.0003410172878371695,
+ "loss": 2.011875629425049,
+ "step": 1708
+ },
+ {
+ "epoch": 23.738675958188153,
+ "grad_norm": 0.0624937042593956,
+ "learning_rate": 0.00034075287902677394,
+ "loss": 2.0156028270721436,
+ "step": 1709
+ },
+ {
+ "epoch": 23.752613240418118,
+ "grad_norm": 0.062002237886190414,
+ "learning_rate": 0.0003404884397995655,
+ "loss": 2.0000498294830322,
+ "step": 1710
+ },
+ {
+ "epoch": 23.766550522648085,
+ "grad_norm": 0.060854360461235046,
+ "learning_rate": 0.00034022397036859837,
+ "loss": 2.0322160720825195,
+ "step": 1711
+ },
+ {
+ "epoch": 23.78048780487805,
+ "grad_norm": 0.06054264307022095,
+ "learning_rate": 0.0003399594709469506,
+ "loss": 2.032982349395752,
+ "step": 1712
+ },
+ {
+ "epoch": 23.794425087108014,
+ "grad_norm": 0.0627431645989418,
+ "learning_rate": 0.00033969494174772465,
+ "loss": 2.020582675933838,
+ "step": 1713
+ },
+ {
+ "epoch": 23.808362369337978,
+ "grad_norm": 0.06483827531337738,
+ "learning_rate": 0.0003394303829840469,
+ "loss": 2.0398523807525635,
+ "step": 1714
+ },
+ {
+ "epoch": 23.822299651567945,
+ "grad_norm": 0.05984083190560341,
+ "learning_rate": 0.00033916579486906764,
+ "loss": 2.039645195007324,
+ "step": 1715
+ },
+ {
+ "epoch": 23.83623693379791,
+ "grad_norm": 0.06621941179037094,
+ "learning_rate": 0.0003389011776159607,
+ "loss": 2.021867275238037,
+ "step": 1716
+ },
+ {
+ "epoch": 23.850174216027874,
+ "grad_norm": 0.0623198039829731,
+ "learning_rate": 0.0003386365314379233,
+ "loss": 2.0347697734832764,
+ "step": 1717
+ },
+ {
+ "epoch": 23.86411149825784,
+ "grad_norm": 0.06399847567081451,
+ "learning_rate": 0.0003383718565481763,
+ "loss": 2.030777931213379,
+ "step": 1718
+ },
+ {
+ "epoch": 23.878048780487806,
+ "grad_norm": 0.06241384893655777,
+ "learning_rate": 0.0003381071531599633,
+ "loss": 2.011267900466919,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89198606271777,
+ "grad_norm": 0.05945252999663353,
+ "learning_rate": 0.00033784242148655115,
+ "loss": 2.0384621620178223,
+ "step": 1720
+ },
+ {
+ "epoch": 23.905923344947734,
+ "grad_norm": 0.0614384189248085,
+ "learning_rate": 0.00033757766174122934,
+ "loss": 2.030486583709717,
+ "step": 1721
+ },
+ {
+ "epoch": 23.9198606271777,
+ "grad_norm": 0.06007350608706474,
+ "learning_rate": 0.00033731287413731005,
+ "loss": 2.022603988647461,
+ "step": 1722
+ },
+ {
+ "epoch": 23.933797909407666,
+ "grad_norm": 0.059712085872888565,
+ "learning_rate": 0.0003370480588881278,
+ "loss": 2.0331850051879883,
+ "step": 1723
+ },
+ {
+ "epoch": 23.94773519163763,
+ "grad_norm": 0.0601886548101902,
+ "learning_rate": 0.0003367832162070395,
+ "loss": 2.0483477115631104,
+ "step": 1724
+ },
+ {
+ "epoch": 23.961672473867594,
+ "grad_norm": 0.06256099790334702,
+ "learning_rate": 0.000336518346307424,
+ "loss": 2.033539056777954,
+ "step": 1725
+ },
+ {
+ "epoch": 23.975609756097562,
+ "grad_norm": 0.057741131633520126,
+ "learning_rate": 0.0003362534494026824,
+ "loss": 2.024747133255005,
+ "step": 1726
+ },
+ {
+ "epoch": 23.989547038327526,
+ "grad_norm": 0.060783255845308304,
+ "learning_rate": 0.0003359885257062372,
+ "loss": 2.0209577083587646,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.04932123422622681,
+ "learning_rate": 0.0003357235754315328,
+ "loss": 1.515411376953125,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 0.6315755248069763,
+ "eval_runtime": 36.5997,
+ "eval_samples_per_second": 66.722,
+ "eval_steps_per_second": 0.546,
+ "step": 1728
+ },
+ {
+ "epoch": 24.013937282229964,
+ "grad_norm": 0.056868553161621094,
+ "learning_rate": 0.0003354585987920345,
+ "loss": 1.9798481464385986,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027874564459932,
+ "grad_norm": 0.06501385569572449,
+ "learning_rate": 0.0003351935960012296,
+ "loss": 1.9906654357910156,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041811846689896,
+ "grad_norm": 0.05838958919048309,
+ "learning_rate": 0.0003349285672726259,
+ "loss": 1.9860174655914307,
+ "step": 1731
+ },
+ {
+ "epoch": 24.05574912891986,
+ "grad_norm": 0.058145660907030106,
+ "learning_rate": 0.0003346635128197522,
+ "loss": 1.9651578664779663,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069686411149824,
+ "grad_norm": 0.060848575085401535,
+ "learning_rate": 0.0003343984328561581,
+ "loss": 1.9864778518676758,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083623693379792,
+ "grad_norm": 0.06372028589248657,
+ "learning_rate": 0.00033413332759541376,
+ "loss": 1.9852806329727173,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097560975609756,
+ "grad_norm": 0.061025235801935196,
+ "learning_rate": 0.0003338681972511098,
+ "loss": 1.9978421926498413,
+ "step": 1735
+ },
+ {
+ "epoch": 24.11149825783972,
+ "grad_norm": 0.060201771557331085,
+ "learning_rate": 0.0003336030420368568,
+ "loss": 1.9757139682769775,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125435540069688,
+ "grad_norm": 0.05975824594497681,
+ "learning_rate": 0.0003333378621662857,
+ "loss": 1.9860875606536865,
+ "step": 1737
+ },
+ {
+ "epoch": 24.139372822299652,
+ "grad_norm": 0.06081843376159668,
+ "learning_rate": 0.00033307265785304684,
+ "loss": 1.968639850616455,
+ "step": 1738
+ },
+ {
+ "epoch": 24.153310104529616,
+ "grad_norm": 0.060572270303964615,
+ "learning_rate": 0.00033280742931081076,
+ "loss": 1.9802055358886719,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16724738675958,
+ "grad_norm": 0.05910629406571388,
+ "learning_rate": 0.00033254217675326737,
+ "loss": 1.9850757122039795,
+ "step": 1740
+ },
+ {
+ "epoch": 24.181184668989548,
+ "grad_norm": 0.05974426120519638,
+ "learning_rate": 0.0003322769003941257,
+ "loss": 1.976986289024353,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195121951219512,
+ "grad_norm": 0.06145593523979187,
+ "learning_rate": 0.00033201160044711423,
+ "loss": 2.000087261199951,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209059233449477,
+ "grad_norm": 0.06071079522371292,
+ "learning_rate": 0.0003317462771259802,
+ "loss": 2.0015039443969727,
+ "step": 1743
+ },
+ {
+ "epoch": 24.222996515679444,
+ "grad_norm": 0.06183251366019249,
+ "learning_rate": 0.00033148093064449006,
+ "loss": 1.9810009002685547,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23693379790941,
+ "grad_norm": 0.05952904373407364,
+ "learning_rate": 0.0003312155612164284,
+ "loss": 1.9755181074142456,
+ "step": 1745
+ },
+ {
+ "epoch": 24.250871080139373,
+ "grad_norm": 0.06136337295174599,
+ "learning_rate": 0.00033095016905559883,
+ "loss": 1.9860830307006836,
+ "step": 1746
+ },
+ {
+ "epoch": 24.264808362369337,
+ "grad_norm": 0.05884359031915665,
+ "learning_rate": 0.0003306847543758227,
+ "loss": 1.9831082820892334,
+ "step": 1747
+ },
+ {
+ "epoch": 24.278745644599304,
+ "grad_norm": 0.06433911621570587,
+ "learning_rate": 0.0003304193173909401,
+ "loss": 1.9774551391601562,
+ "step": 1748
+ },
+ {
+ "epoch": 24.29268292682927,
+ "grad_norm": 0.06369569152593613,
+ "learning_rate": 0.00033015385831480873,
+ "loss": 1.969364881515503,
+ "step": 1749
+ },
+ {
+ "epoch": 24.306620209059233,
+ "grad_norm": 0.061907488852739334,
+ "learning_rate": 0.0003298883773613043,
+ "loss": 1.9955558776855469,
+ "step": 1750
+ },
+ {
+ "epoch": 24.320557491289197,
+ "grad_norm": 0.061493128538131714,
+ "learning_rate": 0.0003296228747443197,
+ "loss": 1.983457326889038,
+ "step": 1751
+ },
+ {
+ "epoch": 24.334494773519165,
+ "grad_norm": 0.064146488904953,
+ "learning_rate": 0.0003293573506777659,
+ "loss": 1.987483263015747,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34843205574913,
+ "grad_norm": 0.06266602128744125,
+ "learning_rate": 0.00032909180537557076,
+ "loss": 1.9783263206481934,
+ "step": 1753
+ },
+ {
+ "epoch": 24.362369337979093,
+ "grad_norm": 0.06142675131559372,
+ "learning_rate": 0.00032882623905167917,
+ "loss": 1.984071135520935,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37630662020906,
+ "grad_norm": 0.06145746260881424,
+ "learning_rate": 0.00032856065192005335,
+ "loss": 1.9964550733566284,
+ "step": 1755
+ },
+ {
+ "epoch": 24.390243902439025,
+ "grad_norm": 0.058990370482206345,
+ "learning_rate": 0.00032829504419467194,
+ "loss": 1.9879612922668457,
+ "step": 1756
+ },
+ {
+ "epoch": 24.40418118466899,
+ "grad_norm": 0.06122121214866638,
+ "learning_rate": 0.0003280294160895303,
+ "loss": 1.9812474250793457,
+ "step": 1757
+ },
+ {
+ "epoch": 24.418118466898953,
+ "grad_norm": 0.059800442308187485,
+ "learning_rate": 0.0003277637678186402,
+ "loss": 1.970646619796753,
+ "step": 1758
+ },
+ {
+ "epoch": 24.43205574912892,
+ "grad_norm": 0.0604378841817379,
+ "learning_rate": 0.00032749809959602973,
+ "loss": 2.003701686859131,
+ "step": 1759
+ },
+ {
+ "epoch": 24.445993031358885,
+ "grad_norm": 0.05989979952573776,
+ "learning_rate": 0.0003272324116357428,
+ "loss": 1.9803345203399658,
+ "step": 1760
+ },
+ {
+ "epoch": 24.45993031358885,
+ "grad_norm": 0.06310706585645676,
+ "learning_rate": 0.0003269667041518395,
+ "loss": 1.989131212234497,
+ "step": 1761
+ },
+ {
+ "epoch": 24.473867595818817,
+ "grad_norm": 0.06142299249768257,
+ "learning_rate": 0.0003267009773583956,
+ "loss": 1.9946138858795166,
+ "step": 1762
+ },
+ {
+ "epoch": 24.48780487804878,
+ "grad_norm": 0.062469176948070526,
+ "learning_rate": 0.00032643523146950234,
+ "loss": 2.001830577850342,
+ "step": 1763
+ },
+ {
+ "epoch": 24.501742160278745,
+ "grad_norm": 0.06173425912857056,
+ "learning_rate": 0.0003261694666992664,
+ "loss": 2.002091646194458,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51567944250871,
+ "grad_norm": 0.06293168663978577,
+ "learning_rate": 0.0003259036832618096,
+ "loss": 1.9954603910446167,
+ "step": 1765
+ },
+ {
+ "epoch": 24.529616724738677,
+ "grad_norm": 0.060014087706804276,
+ "learning_rate": 0.0003256378813712688,
+ "loss": 1.9944541454315186,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54355400696864,
+ "grad_norm": 0.06237431988120079,
+ "learning_rate": 0.000325372061241796,
+ "loss": 2.0007567405700684,
+ "step": 1767
+ },
+ {
+ "epoch": 24.557491289198605,
+ "grad_norm": 0.06152753531932831,
+ "learning_rate": 0.00032510622308755746,
+ "loss": 2.0018327236175537,
+ "step": 1768
+ },
+ {
+ "epoch": 24.571428571428573,
+ "grad_norm": 0.05944858118891716,
+ "learning_rate": 0.00032484036712273424,
+ "loss": 1.992608666419983,
+ "step": 1769
+ },
+ {
+ "epoch": 24.585365853658537,
+ "grad_norm": 0.062232885509729385,
+ "learning_rate": 0.0003245744935615219,
+ "loss": 2.000495433807373,
+ "step": 1770
+ },
+ {
+ "epoch": 24.5993031358885,
+ "grad_norm": 0.06566010415554047,
+ "learning_rate": 0.0003243086026181296,
+ "loss": 1.9956483840942383,
+ "step": 1771
+ },
+ {
+ "epoch": 24.613240418118465,
+ "grad_norm": 0.06141132116317749,
+ "learning_rate": 0.00032404269450678116,
+ "loss": 1.9919085502624512,
+ "step": 1772
+ },
+ {
+ "epoch": 24.627177700348433,
+ "grad_norm": 0.06355211138725281,
+ "learning_rate": 0.00032377676944171375,
+ "loss": 2.0013604164123535,
+ "step": 1773
+ },
+ {
+ "epoch": 24.641114982578397,
+ "grad_norm": 0.0633525624871254,
+ "learning_rate": 0.00032351082763717857,
+ "loss": 2.003030300140381,
+ "step": 1774
+ },
+ {
+ "epoch": 24.65505226480836,
+ "grad_norm": 0.06334961205720901,
+ "learning_rate": 0.0003232448693074399,
+ "loss": 2.0035159587860107,
+ "step": 1775
+ },
+ {
+ "epoch": 24.66898954703833,
+ "grad_norm": 0.059516388922929764,
+ "learning_rate": 0.00032297889466677575,
+ "loss": 1.9953091144561768,
+ "step": 1776
+ },
+ {
+ "epoch": 24.682926829268293,
+ "grad_norm": 0.061832234263420105,
+ "learning_rate": 0.000322712903929477,
+ "loss": 2.0096263885498047,
+ "step": 1777
+ },
+ {
+ "epoch": 24.696864111498257,
+ "grad_norm": 0.06823352724313736,
+ "learning_rate": 0.0003224468973098477,
+ "loss": 2.0014004707336426,
+ "step": 1778
+ },
+ {
+ "epoch": 24.71080139372822,
+ "grad_norm": 0.06829699873924255,
+ "learning_rate": 0.0003221808750222044,
+ "loss": 1.990633249282837,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72473867595819,
+ "grad_norm": 0.060128696262836456,
+ "learning_rate": 0.0003219148372808766,
+ "loss": 1.9862974882125854,
+ "step": 1780
+ },
+ {
+ "epoch": 24.738675958188153,
+ "grad_norm": 0.06241869926452637,
+ "learning_rate": 0.00032164878430020606,
+ "loss": 2.0125184059143066,
+ "step": 1781
+ },
+ {
+ "epoch": 24.752613240418118,
+ "grad_norm": 0.06538056582212448,
+ "learning_rate": 0.00032138271629454684,
+ "loss": 2.0079469680786133,
+ "step": 1782
+ },
+ {
+ "epoch": 24.766550522648085,
+ "grad_norm": 0.06478657573461533,
+ "learning_rate": 0.00032111663347826505,
+ "loss": 2.0092570781707764,
+ "step": 1783
+ },
+ {
+ "epoch": 24.78048780487805,
+ "grad_norm": 0.06446428596973419,
+ "learning_rate": 0.00032085053606573896,
+ "loss": 1.9926164150238037,
+ "step": 1784
+ },
+ {
+ "epoch": 24.794425087108014,
+ "grad_norm": 0.06340030580759048,
+ "learning_rate": 0.0003205844242713584,
+ "loss": 2.0052552223205566,
+ "step": 1785
+ },
+ {
+ "epoch": 24.808362369337978,
+ "grad_norm": 0.06671392917633057,
+ "learning_rate": 0.0003203182983095248,
+ "loss": 2.005016326904297,
+ "step": 1786
+ },
+ {
+ "epoch": 24.822299651567945,
+ "grad_norm": 0.06256412714719772,
+ "learning_rate": 0.0003200521583946511,
+ "loss": 1.998322606086731,
+ "step": 1787
+ },
+ {
+ "epoch": 24.83623693379791,
+ "grad_norm": 0.06253744661808014,
+ "learning_rate": 0.0003197860047411613,
+ "loss": 2.004774332046509,
+ "step": 1788
+ },
+ {
+ "epoch": 24.850174216027874,
+ "grad_norm": 0.06475425511598587,
+ "learning_rate": 0.00031951983756349066,
+ "loss": 2.010788917541504,
+ "step": 1789
+ },
+ {
+ "epoch": 24.86411149825784,
+ "grad_norm": 0.06285806000232697,
+ "learning_rate": 0.00031925365707608536,
+ "loss": 2.0189685821533203,
+ "step": 1790
+ },
+ {
+ "epoch": 24.878048780487806,
+ "grad_norm": 0.06435883790254593,
+ "learning_rate": 0.00031898746349340204,
+ "loss": 2.0078349113464355,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89198606271777,
+ "grad_norm": 0.062008004635572433,
+ "learning_rate": 0.0003187212570299082,
+ "loss": 2.005176544189453,
+ "step": 1792
+ },
+ {
+ "epoch": 24.905923344947734,
+ "grad_norm": 0.061844680458307266,
+ "learning_rate": 0.0003184550379000815,
+ "loss": 2.0120368003845215,
+ "step": 1793
+ },
+ {
+ "epoch": 24.9198606271777,
+ "grad_norm": 0.06165637448430061,
+ "learning_rate": 0.00031818880631841005,
+ "loss": 1.988783359527588,
+ "step": 1794
+ },
+ {
+ "epoch": 24.933797909407666,
+ "grad_norm": 0.061599504202604294,
+ "learning_rate": 0.0003179225624993915,
+ "loss": 2.002344846725464,
+ "step": 1795
+ },
+ {
+ "epoch": 24.94773519163763,
+ "grad_norm": 0.06298971176147461,
+ "learning_rate": 0.0003176563066575341,
+ "loss": 2.0156569480895996,
+ "step": 1796
+ },
+ {
+ "epoch": 24.961672473867594,
+ "grad_norm": 0.060080062597990036,
+ "learning_rate": 0.0003173900390073549,
+ "loss": 2.010012149810791,
+ "step": 1797
+ },
+ {
+ "epoch": 24.975609756097562,
+ "grad_norm": 0.06395968794822693,
+ "learning_rate": 0.0003171237597633813,
+ "loss": 2.0122275352478027,
+ "step": 1798
+ },
+ {
+ "epoch": 24.989547038327526,
+ "grad_norm": 0.062498848885297775,
+ "learning_rate": 0.0003168574691401496,
+ "loss": 2.0220727920532227,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.04997362941503525,
+ "learning_rate": 0.0003165911673522053,
+ "loss": 1.5085651874542236,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 0.6326767206192017,
+ "eval_runtime": 35.1333,
+ "eval_samples_per_second": 69.507,
+ "eval_steps_per_second": 0.569,
+ "step": 1800
+ },
+ {
+ "epoch": 25.013937282229964,
+ "grad_norm": 0.06232205778360367,
+ "learning_rate": 0.00031632485461410294,
+ "loss": 1.960073709487915,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027874564459932,
+ "grad_norm": 0.07617080211639404,
+ "learning_rate": 0.00031605853114040583,
+ "loss": 1.9570682048797607,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041811846689896,
+ "grad_norm": 0.06312266737222672,
+ "learning_rate": 0.00031579219714568613,
+ "loss": 1.9653043746948242,
+ "step": 1803
+ },
+ {
+ "epoch": 25.05574912891986,
+ "grad_norm": 0.06101902946829796,
+ "learning_rate": 0.0003155258528445242,
+ "loss": 1.9481754302978516,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069686411149824,
+ "grad_norm": 0.06738974899053574,
+ "learning_rate": 0.0003152594984515089,
+ "loss": 1.9733099937438965,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083623693379792,
+ "grad_norm": 0.06208112835884094,
+ "learning_rate": 0.00031499313418123704,
+ "loss": 1.9604226350784302,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097560975609756,
+ "grad_norm": 0.0632297471165657,
+ "learning_rate": 0.0003147267602483138,
+ "loss": 1.9748514890670776,
+ "step": 1807
+ },
+ {
+ "epoch": 25.11149825783972,
+ "grad_norm": 0.06286419183015823,
+ "learning_rate": 0.00031446037686735153,
+ "loss": 1.9705591201782227,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125435540069688,
+ "grad_norm": 0.061676930636167526,
+ "learning_rate": 0.0003141939842529706,
+ "loss": 1.966292381286621,
+ "step": 1809
+ },
+ {
+ "epoch": 25.139372822299652,
+ "grad_norm": 0.059966422617435455,
+ "learning_rate": 0.0003139275826197987,
+ "loss": 1.960801124572754,
+ "step": 1810
+ },
+ {
+ "epoch": 25.153310104529616,
+ "grad_norm": 0.06130777299404144,
+ "learning_rate": 0.00031366117218247094,
+ "loss": 1.9645764827728271,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16724738675958,
+ "grad_norm": 0.061480022966861725,
+ "learning_rate": 0.00031339475315562916,
+ "loss": 1.9640815258026123,
+ "step": 1812
+ },
+ {
+ "epoch": 25.181184668989548,
+ "grad_norm": 0.05976599082350731,
+ "learning_rate": 0.00031312832575392267,
+ "loss": 1.9709453582763672,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195121951219512,
+ "grad_norm": 0.06432078778743744,
+ "learning_rate": 0.0003128618901920071,
+ "loss": 1.9676944017410278,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209059233449477,
+ "grad_norm": 0.060974858701229095,
+ "learning_rate": 0.0003125954466845446,
+ "loss": 1.9607110023498535,
+ "step": 1815
+ },
+ {
+ "epoch": 25.222996515679444,
+ "grad_norm": 0.06553254276514053,
+ "learning_rate": 0.00031232899544620404,
+ "loss": 1.9504101276397705,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23693379790941,
+ "grad_norm": 0.06467615813016891,
+ "learning_rate": 0.00031206253669166045,
+ "loss": 1.962750792503357,
+ "step": 1817
+ },
+ {
+ "epoch": 25.250871080139373,
+ "grad_norm": 0.061078183352947235,
+ "learning_rate": 0.0003117960706355947,
+ "loss": 1.9658128023147583,
+ "step": 1818
+ },
+ {
+ "epoch": 25.264808362369337,
+ "grad_norm": 0.0656590387225151,
+ "learning_rate": 0.0003115295974926936,
+ "loss": 1.9687200784683228,
+ "step": 1819
+ },
+ {
+ "epoch": 25.278745644599304,
+ "grad_norm": 0.061022087931632996,
+ "learning_rate": 0.00031126311747765005,
+ "loss": 1.9684455394744873,
+ "step": 1820
+ },
+ {
+ "epoch": 25.29268292682927,
+ "grad_norm": 0.0625755786895752,
+ "learning_rate": 0.00031099663080516186,
+ "loss": 1.962731957435608,
+ "step": 1821
+ },
+ {
+ "epoch": 25.306620209059233,
+ "grad_norm": 0.06357678025960922,
+ "learning_rate": 0.0003107301376899327,
+ "loss": 1.9442671537399292,
+ "step": 1822
+ },
+ {
+ "epoch": 25.320557491289197,
+ "grad_norm": 0.062150172889232635,
+ "learning_rate": 0.00031046363834667123,
+ "loss": 1.9566235542297363,
+ "step": 1823
+ },
+ {
+ "epoch": 25.334494773519165,
+ "grad_norm": 0.061118803918361664,
+ "learning_rate": 0.00031019713299009123,
+ "loss": 1.9761946201324463,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34843205574913,
+ "grad_norm": 0.06331022083759308,
+ "learning_rate": 0.000309930621834911,
+ "loss": 1.9509797096252441,
+ "step": 1825
+ },
+ {
+ "epoch": 25.362369337979093,
+ "grad_norm": 0.06341579556465149,
+ "learning_rate": 0.0003096641050958541,
+ "loss": 1.9654616117477417,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37630662020906,
+ "grad_norm": 0.061316221952438354,
+ "learning_rate": 0.00030939758298764795,
+ "loss": 1.9767422676086426,
+ "step": 1827
+ },
+ {
+ "epoch": 25.390243902439025,
+ "grad_norm": 0.06411541253328323,
+ "learning_rate": 0.00030913105572502483,
+ "loss": 1.985473394393921,
+ "step": 1828
+ },
+ {
+ "epoch": 25.40418118466899,
+ "grad_norm": 0.061624426394701004,
+ "learning_rate": 0.00030886452352272095,
+ "loss": 1.9730801582336426,
+ "step": 1829
+ },
+ {
+ "epoch": 25.418118466898953,
+ "grad_norm": 0.06127973645925522,
+ "learning_rate": 0.00030859798659547624,
+ "loss": 1.9568986892700195,
+ "step": 1830
+ },
+ {
+ "epoch": 25.43205574912892,
+ "grad_norm": 0.06366631388664246,
+ "learning_rate": 0.0003083314451580349,
+ "loss": 1.9778714179992676,
+ "step": 1831
+ },
+ {
+ "epoch": 25.445993031358885,
+ "grad_norm": 0.06436672061681747,
+ "learning_rate": 0.0003080648994251445,
+ "loss": 1.9750032424926758,
+ "step": 1832
+ },
+ {
+ "epoch": 25.45993031358885,
+ "grad_norm": 0.06266232579946518,
+ "learning_rate": 0.0003077983496115561,
+ "loss": 1.9691630601882935,
+ "step": 1833
+ },
+ {
+ "epoch": 25.473867595818817,
+ "grad_norm": 0.06091330945491791,
+ "learning_rate": 0.00030753179593202406,
+ "loss": 1.9596004486083984,
+ "step": 1834
+ },
+ {
+ "epoch": 25.48780487804878,
+ "grad_norm": 0.0609268881380558,
+ "learning_rate": 0.0003072652386013059,
+ "loss": 1.9919569492340088,
+ "step": 1835
+ },
+ {
+ "epoch": 25.501742160278745,
+ "grad_norm": 0.06318292021751404,
+ "learning_rate": 0.00030699867783416207,
+ "loss": 1.9675531387329102,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51567944250871,
+ "grad_norm": 0.061429619789123535,
+ "learning_rate": 0.0003067321138453557,
+ "loss": 1.966346263885498,
+ "step": 1837
+ },
+ {
+ "epoch": 25.529616724738677,
+ "grad_norm": 0.06276095658540726,
+ "learning_rate": 0.0003064655468496527,
+ "loss": 1.9983158111572266,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54355400696864,
+ "grad_norm": 0.06198902055621147,
+ "learning_rate": 0.0003061989770618211,
+ "loss": 1.9685490131378174,
+ "step": 1839
+ },
+ {
+ "epoch": 25.557491289198605,
+ "grad_norm": 0.06335171312093735,
+ "learning_rate": 0.00030593240469663154,
+ "loss": 1.9861736297607422,
+ "step": 1840
+ },
+ {
+ "epoch": 25.571428571428573,
+ "grad_norm": 0.06267495453357697,
+ "learning_rate": 0.0003056658299688563,
+ "loss": 1.9693151712417603,
+ "step": 1841
+ },
+ {
+ "epoch": 25.585365853658537,
+ "grad_norm": 0.061308011412620544,
+ "learning_rate": 0.00030539925309327017,
+ "loss": 1.9826204776763916,
+ "step": 1842
+ },
+ {
+ "epoch": 25.5993031358885,
+ "grad_norm": 0.06606099754571915,
+ "learning_rate": 0.0003051326742846491,
+ "loss": 1.985427737236023,
+ "step": 1843
+ },
+ {
+ "epoch": 25.613240418118465,
+ "grad_norm": 0.06353887170553207,
+ "learning_rate": 0.000304866093757771,
+ "loss": 1.963585615158081,
+ "step": 1844
+ },
+ {
+ "epoch": 25.627177700348433,
+ "grad_norm": 0.06360059976577759,
+ "learning_rate": 0.00030459951172741474,
+ "loss": 1.9840047359466553,
+ "step": 1845
+ },
+ {
+ "epoch": 25.641114982578397,
+ "grad_norm": 0.06275399029254913,
+ "learning_rate": 0.0003043329284083609,
+ "loss": 1.9865367412567139,
+ "step": 1846
+ },
+ {
+ "epoch": 25.65505226480836,
+ "grad_norm": 0.061826832592487335,
+ "learning_rate": 0.00030406634401539053,
+ "loss": 1.9746454954147339,
+ "step": 1847
+ },
+ {
+ "epoch": 25.66898954703833,
+ "grad_norm": 0.06373758614063263,
+ "learning_rate": 0.00030379975876328614,
+ "loss": 1.970570683479309,
+ "step": 1848
+ },
+ {
+ "epoch": 25.682926829268293,
+ "grad_norm": 0.06198093667626381,
+ "learning_rate": 0.00030353317286683053,
+ "loss": 1.9856860637664795,
+ "step": 1849
+ },
+ {
+ "epoch": 25.696864111498257,
+ "grad_norm": 0.06512428820133209,
+ "learning_rate": 0.0003032665865408073,
+ "loss": 1.9919607639312744,
+ "step": 1850
+ },
+ {
+ "epoch": 25.71080139372822,
+ "grad_norm": 0.06516636162996292,
+ "learning_rate": 0.000303,
+ "loss": 1.9930028915405273,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72473867595819,
+ "grad_norm": 0.06129363179206848,
+ "learning_rate": 0.0003027334134591926,
+ "loss": 1.9975836277008057,
+ "step": 1852
+ },
+ {
+ "epoch": 25.738675958188153,
+ "grad_norm": 0.06420517712831497,
+ "learning_rate": 0.00030246682713316945,
+ "loss": 1.9728800058364868,
+ "step": 1853
+ },
+ {
+ "epoch": 25.752613240418118,
+ "grad_norm": 0.06342366337776184,
+ "learning_rate": 0.0003022002412367138,
+ "loss": 1.989312767982483,
+ "step": 1854
+ },
+ {
+ "epoch": 25.766550522648085,
+ "grad_norm": 0.061576031148433685,
+ "learning_rate": 0.00030193365598460946,
+ "loss": 1.9859075546264648,
+ "step": 1855
+ },
+ {
+ "epoch": 25.78048780487805,
+ "grad_norm": 0.0607769675552845,
+ "learning_rate": 0.0003016670715916391,
+ "loss": 1.967139482498169,
+ "step": 1856
+ },
+ {
+ "epoch": 25.794425087108014,
+ "grad_norm": 0.06282363831996918,
+ "learning_rate": 0.00030140048827258524,
+ "loss": 1.9849177598953247,
+ "step": 1857
+ },
+ {
+ "epoch": 25.808362369337978,
+ "grad_norm": 0.06485171616077423,
+ "learning_rate": 0.0003011339062422289,
+ "loss": 1.9944510459899902,
+ "step": 1858
+ },
+ {
+ "epoch": 25.822299651567945,
+ "grad_norm": 0.06280137598514557,
+ "learning_rate": 0.00030086732571535076,
+ "loss": 1.9957447052001953,
+ "step": 1859
+ },
+ {
+ "epoch": 25.83623693379791,
+ "grad_norm": 0.06692720204591751,
+ "learning_rate": 0.0003006007469067297,
+ "loss": 1.9829119443893433,
+ "step": 1860
+ },
+ {
+ "epoch": 25.850174216027874,
+ "grad_norm": 0.06662958860397339,
+ "learning_rate": 0.0003003341700311436,
+ "loss": 1.9788072109222412,
+ "step": 1861
+ },
+ {
+ "epoch": 25.86411149825784,
+ "grad_norm": 0.06748583912849426,
+ "learning_rate": 0.0003000675953033685,
+ "loss": 1.9959502220153809,
+ "step": 1862
+ },
+ {
+ "epoch": 25.878048780487806,
+ "grad_norm": 0.06759459525346756,
+ "learning_rate": 0.0002998010229381789,
+ "loss": 1.9947572946548462,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89198606271777,
+ "grad_norm": 0.06492980569601059,
+ "learning_rate": 0.0002995344531503474,
+ "loss": 1.9897825717926025,
+ "step": 1864
+ },
+ {
+ "epoch": 25.905923344947734,
+ "grad_norm": 0.06660535931587219,
+ "learning_rate": 0.0002992678861546442,
+ "loss": 1.9906097650527954,
+ "step": 1865
+ },
+ {
+ "epoch": 25.9198606271777,
+ "grad_norm": 0.06545855104923248,
+ "learning_rate": 0.00029900132216583786,
+ "loss": 1.9963207244873047,
+ "step": 1866
+ },
+ {
+ "epoch": 25.933797909407666,
+ "grad_norm": 0.06479988992214203,
+ "learning_rate": 0.0002987347613986941,
+ "loss": 1.994144082069397,
+ "step": 1867
+ },
+ {
+ "epoch": 25.94773519163763,
+ "grad_norm": 0.06334878504276276,
+ "learning_rate": 0.0002984682040679759,
+ "loss": 1.9909017086029053,
+ "step": 1868
+ },
+ {
+ "epoch": 25.961672473867594,
+ "grad_norm": 0.06454301625490189,
+ "learning_rate": 0.00029820165038844395,
+ "loss": 1.985898494720459,
+ "step": 1869
+ },
+ {
+ "epoch": 25.975609756097562,
+ "grad_norm": 0.06418111175298691,
+ "learning_rate": 0.00029793510057485556,
+ "loss": 1.9789021015167236,
+ "step": 1870
+ },
+ {
+ "epoch": 25.989547038327526,
+ "grad_norm": 0.06766562163829803,
+ "learning_rate": 0.00029766855484196513,
+ "loss": 2.0054125785827637,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.05154159665107727,
+ "learning_rate": 0.0002974020134045238,
+ "loss": 1.4703314304351807,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 0.6342733502388,
+ "eval_runtime": 40.7553,
+ "eval_samples_per_second": 59.919,
+ "eval_steps_per_second": 0.491,
+ "step": 1872
+ },
+ {
+ "epoch": 26.013937282229964,
+ "grad_norm": 0.06601504236459732,
+ "learning_rate": 0.00029713547647727904,
+ "loss": 1.9541187286376953,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027874564459932,
+ "grad_norm": 0.06637415289878845,
+ "learning_rate": 0.00029686894427497515,
+ "loss": 1.9444429874420166,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041811846689896,
+ "grad_norm": 0.06102657690644264,
+ "learning_rate": 0.0002966024170123519,
+ "loss": 1.9523404836654663,
+ "step": 1875
+ },
+ {
+ "epoch": 26.05574912891986,
+ "grad_norm": 0.06154332309961319,
+ "learning_rate": 0.0002963358949041459,
+ "loss": 1.9392805099487305,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069686411149824,
+ "grad_norm": 0.06383806467056274,
+ "learning_rate": 0.00029606937816508897,
+ "loss": 1.9280699491500854,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083623693379792,
+ "grad_norm": 0.05950536951422691,
+ "learning_rate": 0.00029580286700990887,
+ "loss": 1.9510209560394287,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097560975609756,
+ "grad_norm": 0.06285396963357925,
+ "learning_rate": 0.00029553636165332876,
+ "loss": 1.9589542150497437,
+ "step": 1879
+ },
+ {
+ "epoch": 26.11149825783972,
+ "grad_norm": 0.06018277257680893,
+ "learning_rate": 0.0002952698623100673,
+ "loss": 1.9556975364685059,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125435540069688,
+ "grad_norm": 0.06558576226234436,
+ "learning_rate": 0.0002950033691948382,
+ "loss": 1.9427529573440552,
+ "step": 1881
+ },
+ {
+ "epoch": 26.139372822299652,
+ "grad_norm": 0.06511088460683823,
+ "learning_rate": 0.00029473688252234994,
+ "loss": 1.9552985429763794,
+ "step": 1882
+ },
+ {
+ "epoch": 26.153310104529616,
+ "grad_norm": 0.06098657473921776,
+ "learning_rate": 0.0002944704025073064,
+ "loss": 1.9433622360229492,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16724738675958,
+ "grad_norm": 0.059983622282743454,
+ "learning_rate": 0.00029420392936440525,
+ "loss": 1.940507411956787,
+ "step": 1884
+ },
+ {
+ "epoch": 26.181184668989548,
+ "grad_norm": 0.06048520654439926,
+ "learning_rate": 0.00029393746330833953,
+ "loss": 1.936924695968628,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195121951219512,
+ "grad_norm": 0.06227855011820793,
+ "learning_rate": 0.0002936710045537959,
+ "loss": 1.93827486038208,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209059233449477,
+ "grad_norm": 0.06222425028681755,
+ "learning_rate": 0.0002934045533154554,
+ "loss": 1.9474766254425049,
+ "step": 1887
+ },
+ {
+ "epoch": 26.222996515679444,
+ "grad_norm": 0.06104688346385956,
+ "learning_rate": 0.00029313810980799296,
+ "loss": 1.9336830377578735,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23693379790941,
+ "grad_norm": 0.061554424464702606,
+ "learning_rate": 0.00029287167424607726,
+ "loss": 1.9518358707427979,
+ "step": 1889
+ },
+ {
+ "epoch": 26.250871080139373,
+ "grad_norm": 0.06273443251848221,
+ "learning_rate": 0.00029260524684437077,
+ "loss": 1.940516710281372,
+ "step": 1890
+ },
+ {
+ "epoch": 26.264808362369337,
+ "grad_norm": 0.05902065709233284,
+ "learning_rate": 0.00029233882781752905,
+ "loss": 1.9311795234680176,
+ "step": 1891
+ },
+ {
+ "epoch": 26.278745644599304,
+ "grad_norm": 0.0626775324344635,
+ "learning_rate": 0.00029207241738020136,
+ "loss": 1.9473145008087158,
+ "step": 1892
+ },
+ {
+ "epoch": 26.29268292682927,
+ "grad_norm": 0.05936308950185776,
+ "learning_rate": 0.0002918060157470294,
+ "loss": 1.946176290512085,
+ "step": 1893
+ },
+ {
+ "epoch": 26.306620209059233,
+ "grad_norm": 0.06098832190036774,
+ "learning_rate": 0.00029153962313264856,
+ "loss": 1.9415948390960693,
+ "step": 1894
+ },
+ {
+ "epoch": 26.320557491289197,
+ "grad_norm": 0.06257472187280655,
+ "learning_rate": 0.0002912732397516862,
+ "loss": 1.9476375579833984,
+ "step": 1895
+ },
+ {
+ "epoch": 26.334494773519165,
+ "grad_norm": 0.06173890084028244,
+ "learning_rate": 0.00029100686581876283,
+ "loss": 1.9434869289398193,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34843205574913,
+ "grad_norm": 0.0614108070731163,
+ "learning_rate": 0.0002907405015484911,
+ "loss": 1.9595987796783447,
+ "step": 1897
+ },
+ {
+ "epoch": 26.362369337979093,
+ "grad_norm": 0.06131064146757126,
+ "learning_rate": 0.0002904741471554758,
+ "loss": 1.9638384580612183,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37630662020906,
+ "grad_norm": 0.0620097853243351,
+ "learning_rate": 0.0002902078028543139,
+ "loss": 1.9308812618255615,
+ "step": 1899
+ },
+ {
+ "epoch": 26.390243902439025,
+ "grad_norm": 0.06417243927717209,
+ "learning_rate": 0.00028994146885959416,
+ "loss": 1.9541051387786865,
+ "step": 1900
+ },
+ {
+ "epoch": 26.40418118466899,
+ "grad_norm": 0.061548616737127304,
+ "learning_rate": 0.00028967514538589715,
+ "loss": 1.9431400299072266,
+ "step": 1901
+ },
+ {
+ "epoch": 26.418118466898953,
+ "grad_norm": 0.0631798654794693,
+ "learning_rate": 0.0002894088326477947,
+ "loss": 1.9591906070709229,
+ "step": 1902
+ },
+ {
+ "epoch": 26.43205574912892,
+ "grad_norm": 0.06283508986234665,
+ "learning_rate": 0.0002891425308598503,
+ "loss": 1.943403720855713,
+ "step": 1903
+ },
+ {
+ "epoch": 26.445993031358885,
+ "grad_norm": 0.06297212839126587,
+ "learning_rate": 0.00028887624023661866,
+ "loss": 1.9608395099639893,
+ "step": 1904
+ },
+ {
+ "epoch": 26.45993031358885,
+ "grad_norm": 0.06354014575481415,
+ "learning_rate": 0.00028860996099264505,
+ "loss": 1.9444423913955688,
+ "step": 1905
+ },
+ {
+ "epoch": 26.473867595818817,
+ "grad_norm": 0.06168603152036667,
+ "learning_rate": 0.000288343693342466,
+ "loss": 1.9628558158874512,
+ "step": 1906
+ },
+ {
+ "epoch": 26.48780487804878,
+ "grad_norm": 0.06447484344244003,
+ "learning_rate": 0.00028807743750060847,
+ "loss": 1.9654959440231323,
+ "step": 1907
+ },
+ {
+ "epoch": 26.501742160278745,
+ "grad_norm": 0.06281430274248123,
+ "learning_rate": 0.00028781119368159004,
+ "loss": 1.9553298950195312,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51567944250871,
+ "grad_norm": 0.06198422610759735,
+ "learning_rate": 0.00028754496209991843,
+ "loss": 1.9523322582244873,
+ "step": 1909
+ },
+ {
+ "epoch": 26.529616724738677,
+ "grad_norm": 0.062765933573246,
+ "learning_rate": 0.0002872787429700917,
+ "loss": 1.9606122970581055,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54355400696864,
+ "grad_norm": 0.06762545555830002,
+ "learning_rate": 0.0002870125365065979,
+ "loss": 1.9565579891204834,
+ "step": 1911
+ },
+ {
+ "epoch": 26.557491289198605,
+ "grad_norm": 0.06395747512578964,
+ "learning_rate": 0.00028674634292391463,
+ "loss": 1.962345838546753,
+ "step": 1912
+ },
+ {
+ "epoch": 26.571428571428573,
+ "grad_norm": 0.060820501297712326,
+ "learning_rate": 0.0002864801624365093,
+ "loss": 1.9698963165283203,
+ "step": 1913
+ },
+ {
+ "epoch": 26.585365853658537,
+ "grad_norm": 0.0644717738032341,
+ "learning_rate": 0.0002862139952588387,
+ "loss": 1.9503817558288574,
+ "step": 1914
+ },
+ {
+ "epoch": 26.5993031358885,
+ "grad_norm": 0.06223372370004654,
+ "learning_rate": 0.000285947841605349,
+ "loss": 1.9556928873062134,
+ "step": 1915
+ },
+ {
+ "epoch": 26.613240418118465,
+ "grad_norm": 0.0660606324672699,
+ "learning_rate": 0.00028568170169047523,
+ "loss": 1.9794392585754395,
+ "step": 1916
+ },
+ {
+ "epoch": 26.627177700348433,
+ "grad_norm": 0.06215149909257889,
+ "learning_rate": 0.00028541557572864154,
+ "loss": 1.956440806388855,
+ "step": 1917
+ },
+ {
+ "epoch": 26.641114982578397,
+ "grad_norm": 0.06647448241710663,
+ "learning_rate": 0.000285149463934261,
+ "loss": 1.9618154764175415,
+ "step": 1918
+ },
+ {
+ "epoch": 26.65505226480836,
+ "grad_norm": 0.06702937185764313,
+ "learning_rate": 0.0002848833665217349,
+ "loss": 1.9652760028839111,
+ "step": 1919
+ },
+ {
+ "epoch": 26.66898954703833,
+ "grad_norm": 0.06669468432664871,
+ "learning_rate": 0.0002846172837054532,
+ "loss": 1.9627275466918945,
+ "step": 1920
+ },
+ {
+ "epoch": 26.682926829268293,
+ "grad_norm": 0.06321994960308075,
+ "learning_rate": 0.0002843512156997939,
+ "loss": 1.966722846031189,
+ "step": 1921
+ },
+ {
+ "epoch": 26.696864111498257,
+ "grad_norm": 0.06267281621694565,
+ "learning_rate": 0.0002840851627191234,
+ "loss": 1.9646657705307007,
+ "step": 1922
+ },
+ {
+ "epoch": 26.71080139372822,
+ "grad_norm": 0.06576424092054367,
+ "learning_rate": 0.0002838191249777955,
+ "loss": 1.950223445892334,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72473867595819,
+ "grad_norm": 0.06047007441520691,
+ "learning_rate": 0.00028355310269015225,
+ "loss": 1.9768667221069336,
+ "step": 1924
+ },
+ {
+ "epoch": 26.738675958188153,
+ "grad_norm": 0.06493274867534637,
+ "learning_rate": 0.00028328709607052297,
+ "loss": 1.9484598636627197,
+ "step": 1925
+ },
+ {
+ "epoch": 26.752613240418118,
+ "grad_norm": 0.06330715864896774,
+ "learning_rate": 0.0002830211053332242,
+ "loss": 1.9732015132904053,
+ "step": 1926
+ },
+ {
+ "epoch": 26.766550522648085,
+ "grad_norm": 0.06184522062540054,
+ "learning_rate": 0.0002827551306925601,
+ "loss": 1.9706918001174927,
+ "step": 1927
+ },
+ {
+ "epoch": 26.78048780487805,
+ "grad_norm": 0.06290240585803986,
+ "learning_rate": 0.00028248917236282147,
+ "loss": 1.9614533185958862,
+ "step": 1928
+ },
+ {
+ "epoch": 26.794425087108014,
+ "grad_norm": 0.06381867825984955,
+ "learning_rate": 0.0002822232305582863,
+ "loss": 1.960871934890747,
+ "step": 1929
+ },
+ {
+ "epoch": 26.808362369337978,
+ "grad_norm": 0.061407096683979034,
+ "learning_rate": 0.0002819573054932188,
+ "loss": 1.970398187637329,
+ "step": 1930
+ },
+ {
+ "epoch": 26.822299651567945,
+ "grad_norm": 0.06511857360601425,
+ "learning_rate": 0.0002816913973818703,
+ "loss": 1.9459114074707031,
+ "step": 1931
+ },
+ {
+ "epoch": 26.83623693379791,
+ "grad_norm": 0.06411094218492508,
+ "learning_rate": 0.0002814255064384781,
+ "loss": 1.948549509048462,
+ "step": 1932
+ },
+ {
+ "epoch": 26.850174216027874,
+ "grad_norm": 0.06509149819612503,
+ "learning_rate": 0.00028115963287726563,
+ "loss": 1.9682888984680176,
+ "step": 1933
+ },
+ {
+ "epoch": 26.86411149825784,
+ "grad_norm": 0.06972374022006989,
+ "learning_rate": 0.0002808937769124425,
+ "loss": 1.9887568950653076,
+ "step": 1934
+ },
+ {
+ "epoch": 26.878048780487806,
+ "grad_norm": 0.07100297510623932,
+ "learning_rate": 0.000280627938758204,
+ "loss": 1.9728631973266602,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89198606271777,
+ "grad_norm": 0.06550271809101105,
+ "learning_rate": 0.00028036211862873117,
+ "loss": 1.9675276279449463,
+ "step": 1936
+ },
+ {
+ "epoch": 26.905923344947734,
+ "grad_norm": 0.06671806424856186,
+ "learning_rate": 0.0002800963167381904,
+ "loss": 1.985438346862793,
+ "step": 1937
+ },
+ {
+ "epoch": 26.9198606271777,
+ "grad_norm": 0.0698300451040268,
+ "learning_rate": 0.00027983053330073355,
+ "loss": 1.9645981788635254,
+ "step": 1938
+ },
+ {
+ "epoch": 26.933797909407666,
+ "grad_norm": 0.06594336032867432,
+ "learning_rate": 0.00027956476853049765,
+ "loss": 1.9659535884857178,
+ "step": 1939
+ },
+ {
+ "epoch": 26.94773519163763,
+ "grad_norm": 0.06825239211320877,
+ "learning_rate": 0.00027929902264160435,
+ "loss": 1.9709006547927856,
+ "step": 1940
+ },
+ {
+ "epoch": 26.961672473867594,
+ "grad_norm": 0.06996344029903412,
+ "learning_rate": 0.00027903329584816046,
+ "loss": 1.9777134656906128,
+ "step": 1941
+ },
+ {
+ "epoch": 26.975609756097562,
+ "grad_norm": 0.06491006910800934,
+ "learning_rate": 0.0002787675883642572,
+ "loss": 1.9659584760665894,
+ "step": 1942
+ },
+ {
+ "epoch": 26.989547038327526,
+ "grad_norm": 0.06465473026037216,
+ "learning_rate": 0.00027850190040397036,
+ "loss": 1.9739830493927002,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.05315341055393219,
+ "learning_rate": 0.00027823623218135976,
+ "loss": 1.480682373046875,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 0.6356088519096375,
+ "eval_runtime": 36.5058,
+ "eval_samples_per_second": 66.893,
+ "eval_steps_per_second": 0.548,
+ "step": 1944
+ },
+ {
+ "epoch": 27.013937282229964,
+ "grad_norm": 0.061814989894628525,
+ "learning_rate": 0.0002779705839104697,
+ "loss": 1.9167797565460205,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027874564459932,
+ "grad_norm": 0.06356564909219742,
+ "learning_rate": 0.0002777049558053281,
+ "loss": 1.927583932876587,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041811846689896,
+ "grad_norm": 0.06118980795145035,
+ "learning_rate": 0.0002774393480799466,
+ "loss": 1.9252214431762695,
+ "step": 1947
+ },
+ {
+ "epoch": 27.05574912891986,
+ "grad_norm": 0.059413257986307144,
+ "learning_rate": 0.00027717376094832076,
+ "loss": 1.9219372272491455,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069686411149824,
+ "grad_norm": 0.06260813027620316,
+ "learning_rate": 0.0002769081946244293,
+ "loss": 1.922504186630249,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083623693379792,
+ "grad_norm": 0.061976976692676544,
+ "learning_rate": 0.00027664264932223407,
+ "loss": 1.9327895641326904,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097560975609756,
+ "grad_norm": 0.059954315423965454,
+ "learning_rate": 0.00027637712525568024,
+ "loss": 1.9138646125793457,
+ "step": 1951
+ },
+ {
+ "epoch": 27.11149825783972,
+ "grad_norm": 0.06157257780432701,
+ "learning_rate": 0.0002761116226386958,
+ "loss": 1.9266639947891235,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125435540069688,
+ "grad_norm": 0.06179584190249443,
+ "learning_rate": 0.00027584614168519125,
+ "loss": 1.9255129098892212,
+ "step": 1953
+ },
+ {
+ "epoch": 27.139372822299652,
+ "grad_norm": 0.0608953982591629,
+ "learning_rate": 0.00027558068260905976,
+ "loss": 1.9159553050994873,
+ "step": 1954
+ },
+ {
+ "epoch": 27.153310104529616,
+ "grad_norm": 0.06067467853426933,
+ "learning_rate": 0.00027531524562417734,
+ "loss": 1.9260437488555908,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16724738675958,
+ "grad_norm": 0.06343036144971848,
+ "learning_rate": 0.00027504983094440126,
+ "loss": 1.9118573665618896,
+ "step": 1956
+ },
+ {
+ "epoch": 27.181184668989548,
+ "grad_norm": 0.06201693415641785,
+ "learning_rate": 0.0002747844387835716,
+ "loss": 1.9324994087219238,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195121951219512,
+ "grad_norm": 0.06198827177286148,
+ "learning_rate": 0.0002745190693555099,
+ "loss": 1.9376416206359863,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209059233449477,
+ "grad_norm": 0.06404320895671844,
+ "learning_rate": 0.0002742537228740197,
+ "loss": 1.9419097900390625,
+ "step": 1959
+ },
+ {
+ "epoch": 27.222996515679444,
+ "grad_norm": 0.062050990760326385,
+ "learning_rate": 0.00027398839955288575,
+ "loss": 1.9205586910247803,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23693379790941,
+ "grad_norm": 0.05903782323002815,
+ "learning_rate": 0.00027372309960587424,
+ "loss": 1.9344040155410767,
+ "step": 1961
+ },
+ {
+ "epoch": 27.250871080139373,
+ "grad_norm": 0.06662431359291077,
+ "learning_rate": 0.0002734578232467327,
+ "loss": 1.9293982982635498,
+ "step": 1962
+ },
+ {
+ "epoch": 27.264808362369337,
+ "grad_norm": 0.06605469435453415,
+ "learning_rate": 0.0002731925706891891,
+ "loss": 1.9288328886032104,
+ "step": 1963
+ },
+ {
+ "epoch": 27.278745644599304,
+ "grad_norm": 0.062087010592222214,
+ "learning_rate": 0.0002729273421469532,
+ "loss": 1.9324290752410889,
+ "step": 1964
+ },
+ {
+ "epoch": 27.29268292682927,
+ "grad_norm": 0.062059979885816574,
+ "learning_rate": 0.00027266213783371434,
+ "loss": 1.933382272720337,
+ "step": 1965
+ },
+ {
+ "epoch": 27.306620209059233,
+ "grad_norm": 0.06283893436193466,
+ "learning_rate": 0.00027239695796314327,
+ "loss": 1.9310166835784912,
+ "step": 1966
+ },
+ {
+ "epoch": 27.320557491289197,
+ "grad_norm": 0.062266793102025986,
+ "learning_rate": 0.0002721318027488902,
+ "loss": 1.9510637521743774,
+ "step": 1967
+ },
+ {
+ "epoch": 27.334494773519165,
+ "grad_norm": 0.0629708543419838,
+ "learning_rate": 0.00027186667240458617,
+ "loss": 1.921417236328125,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34843205574913,
+ "grad_norm": 0.0634312853217125,
+ "learning_rate": 0.0002716015671438419,
+ "loss": 1.9262259006500244,
+ "step": 1969
+ },
+ {
+ "epoch": 27.362369337979093,
+ "grad_norm": 0.062355365604162216,
+ "learning_rate": 0.0002713364871802478,
+ "loss": 1.9553534984588623,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37630662020906,
+ "grad_norm": 0.06175858899950981,
+ "learning_rate": 0.0002710714327273741,
+ "loss": 1.939396858215332,
+ "step": 1971
+ },
+ {
+ "epoch": 27.390243902439025,
+ "grad_norm": 0.06311390548944473,
+ "learning_rate": 0.0002708064039987704,
+ "loss": 1.9329023361206055,
+ "step": 1972
+ },
+ {
+ "epoch": 27.40418118466899,
+ "grad_norm": 0.062033023685216904,
+ "learning_rate": 0.00027054140120796546,
+ "loss": 1.9308583736419678,
+ "step": 1973
+ },
+ {
+ "epoch": 27.418118466898953,
+ "grad_norm": 0.06312143802642822,
+ "learning_rate": 0.0002702764245684672,
+ "loss": 1.9487743377685547,
+ "step": 1974
+ },
+ {
+ "epoch": 27.43205574912892,
+ "grad_norm": 0.0649493932723999,
+ "learning_rate": 0.0002700114742937627,
+ "loss": 1.9450247287750244,
+ "step": 1975
+ },
+ {
+ "epoch": 27.445993031358885,
+ "grad_norm": 0.0623517744243145,
+ "learning_rate": 0.00026974655059731754,
+ "loss": 1.9420899152755737,
+ "step": 1976
+ },
+ {
+ "epoch": 27.45993031358885,
+ "grad_norm": 0.06679189950227737,
+ "learning_rate": 0.0002694816536925759,
+ "loss": 1.9443024396896362,
+ "step": 1977
+ },
+ {
+ "epoch": 27.473867595818817,
+ "grad_norm": 0.06560137122869492,
+ "learning_rate": 0.00026921678379296057,
+ "loss": 1.953552484512329,
+ "step": 1978
+ },
+ {
+ "epoch": 27.48780487804878,
+ "grad_norm": 0.06294484436511993,
+ "learning_rate": 0.0002689519411118722,
+ "loss": 1.9333667755126953,
+ "step": 1979
+ },
+ {
+ "epoch": 27.501742160278745,
+ "grad_norm": 0.06416776031255722,
+ "learning_rate": 0.00026868712586269,
+ "loss": 1.950608491897583,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51567944250871,
+ "grad_norm": 0.06297886371612549,
+ "learning_rate": 0.00026842233825877064,
+ "loss": 1.9374010562896729,
+ "step": 1981
+ },
+ {
+ "epoch": 27.529616724738677,
+ "grad_norm": 0.06346481293439865,
+ "learning_rate": 0.0002681575785134487,
+ "loss": 1.9292755126953125,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54355400696864,
+ "grad_norm": 0.06401345133781433,
+ "learning_rate": 0.0002678928468400366,
+ "loss": 1.9518835544586182,
+ "step": 1983
+ },
+ {
+ "epoch": 27.557491289198605,
+ "grad_norm": 0.06174371764063835,
+ "learning_rate": 0.00026762814345182367,
+ "loss": 1.9246001243591309,
+ "step": 1984
+ },
+ {
+ "epoch": 27.571428571428573,
+ "grad_norm": 0.06687969714403152,
+ "learning_rate": 0.0002673634685620767,
+ "loss": 1.9456532001495361,
+ "step": 1985
+ },
+ {
+ "epoch": 27.585365853658537,
+ "grad_norm": 0.06487233936786652,
+ "learning_rate": 0.0002670988223840393,
+ "loss": 1.9369590282440186,
+ "step": 1986
+ },
+ {
+ "epoch": 27.5993031358885,
+ "grad_norm": 0.06265441328287125,
+ "learning_rate": 0.0002668342051309324,
+ "loss": 1.9478905200958252,
+ "step": 1987
+ },
+ {
+ "epoch": 27.613240418118465,
+ "grad_norm": 0.06444588303565979,
+ "learning_rate": 0.00026656961701595306,
+ "loss": 1.923633098602295,
+ "step": 1988
+ },
+ {
+ "epoch": 27.627177700348433,
+ "grad_norm": 0.06363383680582047,
+ "learning_rate": 0.0002663050582522753,
+ "loss": 1.9642283916473389,
+ "step": 1989
+ },
+ {
+ "epoch": 27.641114982578397,
+ "grad_norm": 0.06589404493570328,
+ "learning_rate": 0.00026604052905304946,
+ "loss": 1.9349925518035889,
+ "step": 1990
+ },
+ {
+ "epoch": 27.65505226480836,
+ "grad_norm": 0.0630272924900055,
+ "learning_rate": 0.00026577602963140156,
+ "loss": 1.9420092105865479,
+ "step": 1991
+ },
+ {
+ "epoch": 27.66898954703833,
+ "grad_norm": 0.06480628997087479,
+ "learning_rate": 0.0002655115602004345,
+ "loss": 1.9431254863739014,
+ "step": 1992
+ },
+ {
+ "epoch": 27.682926829268293,
+ "grad_norm": 0.0632273331284523,
+ "learning_rate": 0.00026524712097322604,
+ "loss": 1.9446561336517334,
+ "step": 1993
+ },
+ {
+ "epoch": 27.696864111498257,
+ "grad_norm": 0.06315293163061142,
+ "learning_rate": 0.0002649827121628305,
+ "loss": 1.9283469915390015,
+ "step": 1994
+ },
+ {
+ "epoch": 27.71080139372822,
+ "grad_norm": 0.0651608556509018,
+ "learning_rate": 0.00026471833398227694,
+ "loss": 1.938418984413147,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72473867595819,
+ "grad_norm": 0.06380520761013031,
+ "learning_rate": 0.0002644539866445703,
+ "loss": 1.9424567222595215,
+ "step": 1996
+ },
+ {
+ "epoch": 27.738675958188153,
+ "grad_norm": 0.0646371841430664,
+ "learning_rate": 0.00026418967036269045,
+ "loss": 1.9451972246170044,
+ "step": 1997
+ },
+ {
+ "epoch": 27.752613240418118,
+ "grad_norm": 0.06506325304508209,
+ "learning_rate": 0.0002639253853495921,
+ "loss": 1.9419035911560059,
+ "step": 1998
+ },
+ {
+ "epoch": 27.766550522648085,
+ "grad_norm": 0.06286903470754623,
+ "learning_rate": 0.00026366113181820506,
+ "loss": 1.9452807903289795,
+ "step": 1999
+ },
+ {
+ "epoch": 27.78048780487805,
+ "grad_norm": 0.06661684811115265,
+ "learning_rate": 0.00026339690998143346,
+ "loss": 1.9469493627548218,
+ "step": 2000
+ },
+ {
+ "epoch": 27.794425087108014,
+ "grad_norm": 0.06329949200153351,
+ "learning_rate": 0.00026313272005215637,
+ "loss": 1.935401201248169,
+ "step": 2001
+ },
+ {
+ "epoch": 27.808362369337978,
+ "grad_norm": 0.06465955078601837,
+ "learning_rate": 0.00026286856224322645,
+ "loss": 1.9547067880630493,
+ "step": 2002
+ },
+ {
+ "epoch": 27.822299651567945,
+ "grad_norm": 0.06732604652643204,
+ "learning_rate": 0.00026260443676747114,
+ "loss": 1.9547715187072754,
+ "step": 2003
+ },
+ {
+ "epoch": 27.83623693379791,
+ "grad_norm": 0.0651276484131813,
+ "learning_rate": 0.00026234034383769157,
+ "loss": 1.9498482942581177,
+ "step": 2004
+ },
+ {
+ "epoch": 27.850174216027874,
+ "grad_norm": 0.06699621677398682,
+ "learning_rate": 0.0002620762836666625,
+ "loss": 1.9338326454162598,
+ "step": 2005
+ },
+ {
+ "epoch": 27.86411149825784,
+ "grad_norm": 0.0657275915145874,
+ "learning_rate": 0.00026181225646713257,
+ "loss": 1.9473168849945068,
+ "step": 2006
+ },
+ {
+ "epoch": 27.878048780487806,
+ "grad_norm": 0.06368435174226761,
+ "learning_rate": 0.0002615482624518236,
+ "loss": 1.9568496942520142,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89198606271777,
+ "grad_norm": 0.06439761072397232,
+ "learning_rate": 0.0002612843018334309,
+ "loss": 1.9380487203598022,
+ "step": 2008
+ },
+ {
+ "epoch": 27.905923344947734,
+ "grad_norm": 0.06287812441587448,
+ "learning_rate": 0.00026102037482462256,
+ "loss": 1.9562499523162842,
+ "step": 2009
+ },
+ {
+ "epoch": 27.9198606271777,
+ "grad_norm": 0.06544869393110275,
+ "learning_rate": 0.0002607564816380403,
+ "loss": 1.9567855596542358,
+ "step": 2010
+ },
+ {
+ "epoch": 27.933797909407666,
+ "grad_norm": 0.06412878632545471,
+ "learning_rate": 0.0002604926224862975,
+ "loss": 1.9528976678848267,
+ "step": 2011
+ },
+ {
+ "epoch": 27.94773519163763,
+ "grad_norm": 0.06460773944854736,
+ "learning_rate": 0.0002602287975819811,
+ "loss": 1.9536967277526855,
+ "step": 2012
+ },
+ {
+ "epoch": 27.961672473867594,
+ "grad_norm": 0.06466975808143616,
+ "learning_rate": 0.00025996500713765,
+ "loss": 1.9486842155456543,
+ "step": 2013
+ },
+ {
+ "epoch": 27.975609756097562,
+ "grad_norm": 0.0657997727394104,
+ "learning_rate": 0.0002597012513658352,
+ "loss": 1.9634342193603516,
+ "step": 2014
+ },
+ {
+ "epoch": 27.989547038327526,
+ "grad_norm": 0.06382985413074493,
+ "learning_rate": 0.00025943753047904026,
+ "loss": 1.951185941696167,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.05184071138501167,
+ "learning_rate": 0.0002591738446897401,
+ "loss": 1.450034737586975,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 0.6368818283081055,
+ "eval_runtime": 36.4264,
+ "eval_samples_per_second": 67.039,
+ "eval_steps_per_second": 0.549,
+ "step": 2016
+ },
+ {
+ "epoch": 28.013937282229964,
+ "grad_norm": 0.06179628521203995,
+ "learning_rate": 0.00025891019421038177,
+ "loss": 1.8983266353607178,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027874564459932,
+ "grad_norm": 0.06494797021150589,
+ "learning_rate": 0.00025864657925338345,
+ "loss": 1.9054467678070068,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041811846689896,
+ "grad_norm": 0.0576489195227623,
+ "learning_rate": 0.00025838300003113514,
+ "loss": 1.9130041599273682,
+ "step": 2019
+ },
+ {
+ "epoch": 28.05574912891986,
+ "grad_norm": 0.06085439771413803,
+ "learning_rate": 0.0002581194567559979,
+ "loss": 1.913049578666687,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069686411149824,
+ "grad_norm": 0.06129859387874603,
+ "learning_rate": 0.00025785594964030365,
+ "loss": 1.9181420803070068,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083623693379792,
+ "grad_norm": 0.06114889681339264,
+ "learning_rate": 0.0002575924788963554,
+ "loss": 1.905306339263916,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097560975609756,
+ "grad_norm": 0.05999523028731346,
+ "learning_rate": 0.0002573290447364268,
+ "loss": 1.9111361503601074,
+ "step": 2023
+ },
+ {
+ "epoch": 28.11149825783972,
+ "grad_norm": 0.059980180114507675,
+ "learning_rate": 0.0002570656473727619,
+ "loss": 1.9141806364059448,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125435540069688,
+ "grad_norm": 0.06263387203216553,
+ "learning_rate": 0.0002568022870175752,
+ "loss": 1.9160103797912598,
+ "step": 2025
+ },
+ {
+ "epoch": 28.139372822299652,
+ "grad_norm": 0.06106845661997795,
+ "learning_rate": 0.00025653896388305134,
+ "loss": 1.9279768466949463,
+ "step": 2026
+ },
+ {
+ "epoch": 28.153310104529616,
+ "grad_norm": 0.060402341187000275,
+ "learning_rate": 0.0002562756781813453,
+ "loss": 1.9093596935272217,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16724738675958,
+ "grad_norm": 0.062007319182157516,
+ "learning_rate": 0.00025601243012458126,
+ "loss": 1.9311325550079346,
+ "step": 2028
+ },
+ {
+ "epoch": 28.181184668989548,
+ "grad_norm": 0.06392303109169006,
+ "learning_rate": 0.00025574921992485366,
+ "loss": 1.9102120399475098,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195121951219512,
+ "grad_norm": 0.06318432092666626,
+ "learning_rate": 0.000255486047794226,
+ "loss": 1.919282078742981,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209059233449477,
+ "grad_norm": 0.06065482273697853,
+ "learning_rate": 0.0002552229139447316,
+ "loss": 1.9156081676483154,
+ "step": 2031
+ },
+ {
+ "epoch": 28.222996515679444,
+ "grad_norm": 0.061966441571712494,
+ "learning_rate": 0.00025495981858837235,
+ "loss": 1.914115071296692,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23693379790941,
+ "grad_norm": 0.06226721405982971,
+ "learning_rate": 0.0002546967619371195,
+ "loss": 1.9121596813201904,
+ "step": 2033
+ },
+ {
+ "epoch": 28.250871080139373,
+ "grad_norm": 0.06150427833199501,
+ "learning_rate": 0.0002544337442029133,
+ "loss": 1.9173963069915771,
+ "step": 2034
+ },
+ {
+ "epoch": 28.264808362369337,
+ "grad_norm": 0.06378372013568878,
+ "learning_rate": 0.00025417076559766194,
+ "loss": 1.909637451171875,
+ "step": 2035
+ },
+ {
+ "epoch": 28.278745644599304,
+ "grad_norm": 0.06366439908742905,
+ "learning_rate": 0.000253907826333243,
+ "loss": 1.9096641540527344,
+ "step": 2036
+ },
+ {
+ "epoch": 28.29268292682927,
+ "grad_norm": 0.0645628497004509,
+ "learning_rate": 0.00025364492662150145,
+ "loss": 1.919980525970459,
+ "step": 2037
+ },
+ {
+ "epoch": 28.306620209059233,
+ "grad_norm": 0.06325099617242813,
+ "learning_rate": 0.0002533820666742514,
+ "loss": 1.9110815525054932,
+ "step": 2038
+ },
+ {
+ "epoch": 28.320557491289197,
+ "grad_norm": 0.06190553680062294,
+ "learning_rate": 0.00025311924670327364,
+ "loss": 1.9132925271987915,
+ "step": 2039
+ },
+ {
+ "epoch": 28.334494773519165,
+ "grad_norm": 0.066350057721138,
+ "learning_rate": 0.00025285646692031804,
+ "loss": 1.9073128700256348,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34843205574913,
+ "grad_norm": 0.06301865726709366,
+ "learning_rate": 0.0002525937275371013,
+ "loss": 1.8958029747009277,
+ "step": 2041
+ },
+ {
+ "epoch": 28.362369337979093,
+ "grad_norm": 0.06601684540510178,
+ "learning_rate": 0.00025233102876530785,
+ "loss": 1.9298090934753418,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37630662020906,
+ "grad_norm": 0.06607081741094589,
+ "learning_rate": 0.0002520683708165894,
+ "loss": 1.9166982173919678,
+ "step": 2043
+ },
+ {
+ "epoch": 28.390243902439025,
+ "grad_norm": 0.06442136317491531,
+ "learning_rate": 0.0002518057539025646,
+ "loss": 1.901548981666565,
+ "step": 2044
+ },
+ {
+ "epoch": 28.40418118466899,
+ "grad_norm": 0.06346907466650009,
+ "learning_rate": 0.00025154317823481917,
+ "loss": 1.913223147392273,
+ "step": 2045
+ },
+ {
+ "epoch": 28.418118466898953,
+ "grad_norm": 0.06854342669248581,
+ "learning_rate": 0.0002512806440249056,
+ "loss": 1.912400722503662,
+ "step": 2046
+ },
+ {
+ "epoch": 28.43205574912892,
+ "grad_norm": 0.0666179209947586,
+ "learning_rate": 0.00025101815148434296,
+ "loss": 1.917931318283081,
+ "step": 2047
+ },
+ {
+ "epoch": 28.445993031358885,
+ "grad_norm": 0.06367912888526917,
+ "learning_rate": 0.00025075570082461684,
+ "loss": 1.9296393394470215,
+ "step": 2048
+ },
+ {
+ "epoch": 28.45993031358885,
+ "grad_norm": 0.06878827512264252,
+ "learning_rate": 0.0002504932922571789,
+ "loss": 1.9146850109100342,
+ "step": 2049
+ },
+ {
+ "epoch": 28.473867595818817,
+ "grad_norm": 0.06371448934078217,
+ "learning_rate": 0.00025023092599344706,
+ "loss": 1.909759521484375,
+ "step": 2050
+ },
+ {
+ "epoch": 28.48780487804878,
+ "grad_norm": 0.06354286521673203,
+ "learning_rate": 0.0002499686022448049,
+ "loss": 1.9349541664123535,
+ "step": 2051
+ },
+ {
+ "epoch": 28.501742160278745,
+ "grad_norm": 0.06779763847589493,
+ "learning_rate": 0.00024970632122260216,
+ "loss": 1.913719654083252,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51567944250871,
+ "grad_norm": 0.06543827801942825,
+ "learning_rate": 0.0002494440831381538,
+ "loss": 1.9296395778656006,
+ "step": 2053
+ },
+ {
+ "epoch": 28.529616724738677,
+ "grad_norm": 0.06395813822746277,
+ "learning_rate": 0.00024918188820274016,
+ "loss": 1.9255974292755127,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54355400696864,
+ "grad_norm": 0.0646572858095169,
+ "learning_rate": 0.0002489197366276073,
+ "loss": 1.9387515783309937,
+ "step": 2055
+ },
+ {
+ "epoch": 28.557491289198605,
+ "grad_norm": 0.06319864094257355,
+ "learning_rate": 0.0002486576286239657,
+ "loss": 1.9284127950668335,
+ "step": 2056
+ },
+ {
+ "epoch": 28.571428571428573,
+ "grad_norm": 0.065260149538517,
+ "learning_rate": 0.0002483955644029913,
+ "loss": 1.9322850704193115,
+ "step": 2057
+ },
+ {
+ "epoch": 28.585365853658537,
+ "grad_norm": 0.06620555371046066,
+ "learning_rate": 0.0002481335441758243,
+ "loss": 1.9043277502059937,
+ "step": 2058
+ },
+ {
+ "epoch": 28.5993031358885,
+ "grad_norm": 0.06358697265386581,
+ "learning_rate": 0.0002478715681535699,
+ "loss": 1.9008917808532715,
+ "step": 2059
+ },
+ {
+ "epoch": 28.613240418118465,
+ "grad_norm": 0.06863846629858017,
+ "learning_rate": 0.00024760963654729717,
+ "loss": 1.9327411651611328,
+ "step": 2060
+ },
+ {
+ "epoch": 28.627177700348433,
+ "grad_norm": 0.06971991807222366,
+ "learning_rate": 0.0002473477495680397,
+ "loss": 1.9262962341308594,
+ "step": 2061
+ },
+ {
+ "epoch": 28.641114982578397,
+ "grad_norm": 0.06454122811555862,
+ "learning_rate": 0.00024708590742679546,
+ "loss": 1.9252219200134277,
+ "step": 2062
+ },
+ {
+ "epoch": 28.65505226480836,
+ "grad_norm": 0.0696180909872055,
+ "learning_rate": 0.00024682411033452546,
+ "loss": 1.909650444984436,
+ "step": 2063
+ },
+ {
+ "epoch": 28.66898954703833,
+ "grad_norm": 0.06893020123243332,
+ "learning_rate": 0.0002465623585021553,
+ "loss": 1.9374496936798096,
+ "step": 2064
+ },
+ {
+ "epoch": 28.682926829268293,
+ "grad_norm": 0.06522615998983383,
+ "learning_rate": 0.0002463006521405733,
+ "loss": 1.9298205375671387,
+ "step": 2065
+ },
+ {
+ "epoch": 28.696864111498257,
+ "grad_norm": 0.06601646542549133,
+ "learning_rate": 0.0002460389914606319,
+ "loss": 1.921603798866272,
+ "step": 2066
+ },
+ {
+ "epoch": 28.71080139372822,
+ "grad_norm": 0.06664327532052994,
+ "learning_rate": 0.00024577737667314615,
+ "loss": 1.9233787059783936,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72473867595819,
+ "grad_norm": 0.06673416495323181,
+ "learning_rate": 0.00024551580798889446,
+ "loss": 1.9446074962615967,
+ "step": 2068
+ },
+ {
+ "epoch": 28.738675958188153,
+ "grad_norm": 0.06593875586986542,
+ "learning_rate": 0.00024525428561861804,
+ "loss": 1.92313814163208,
+ "step": 2069
+ },
+ {
+ "epoch": 28.752613240418118,
+ "grad_norm": 0.06456844508647919,
+ "learning_rate": 0.0002449928097730207,
+ "loss": 1.944153070449829,
+ "step": 2070
+ },
+ {
+ "epoch": 28.766550522648085,
+ "grad_norm": 0.06549357622861862,
+ "learning_rate": 0.00024473138066276876,
+ "loss": 1.9299695491790771,
+ "step": 2071
+ },
+ {
+ "epoch": 28.78048780487805,
+ "grad_norm": 0.0650298222899437,
+ "learning_rate": 0.0002444699984984909,
+ "loss": 1.9266353845596313,
+ "step": 2072
+ },
+ {
+ "epoch": 28.794425087108014,
+ "grad_norm": 0.06307881325483322,
+ "learning_rate": 0.0002442086634907782,
+ "loss": 1.9165664911270142,
+ "step": 2073
+ },
+ {
+ "epoch": 28.808362369337978,
+ "grad_norm": 0.06324006617069244,
+ "learning_rate": 0.00024394737585018328,
+ "loss": 1.9054509401321411,
+ "step": 2074
+ },
+ {
+ "epoch": 28.822299651567945,
+ "grad_norm": 0.06384851038455963,
+ "learning_rate": 0.00024368613578722113,
+ "loss": 1.9158889055252075,
+ "step": 2075
+ },
+ {
+ "epoch": 28.83623693379791,
+ "grad_norm": 0.06377598643302917,
+ "learning_rate": 0.00024342494351236799,
+ "loss": 1.919345736503601,
+ "step": 2076
+ },
+ {
+ "epoch": 28.850174216027874,
+ "grad_norm": 0.0630112960934639,
+ "learning_rate": 0.0002431637992360618,
+ "loss": 1.935530662536621,
+ "step": 2077
+ },
+ {
+ "epoch": 28.86411149825784,
+ "grad_norm": 0.06481339782476425,
+ "learning_rate": 0.00024290270316870184,
+ "loss": 1.927825927734375,
+ "step": 2078
+ },
+ {
+ "epoch": 28.878048780487806,
+ "grad_norm": 0.06289646029472351,
+ "learning_rate": 0.0002426416555206484,
+ "loss": 1.9241056442260742,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89198606271777,
+ "grad_norm": 0.06385444849729538,
+ "learning_rate": 0.000242380656502223,
+ "loss": 1.9496092796325684,
+ "step": 2080
+ },
+ {
+ "epoch": 28.905923344947734,
+ "grad_norm": 0.06434157490730286,
+ "learning_rate": 0.00024211970632370756,
+ "loss": 1.945327639579773,
+ "step": 2081
+ },
+ {
+ "epoch": 28.9198606271777,
+ "grad_norm": 0.06392986327409744,
+ "learning_rate": 0.0002418588051953453,
+ "loss": 1.935096025466919,
+ "step": 2082
+ },
+ {
+ "epoch": 28.933797909407666,
+ "grad_norm": 0.06517285853624344,
+ "learning_rate": 0.0002415979533273392,
+ "loss": 1.9311943054199219,
+ "step": 2083
+ },
+ {
+ "epoch": 28.94773519163763,
+ "grad_norm": 0.06618054956197739,
+ "learning_rate": 0.0002413371509298531,
+ "loss": 1.9326963424682617,
+ "step": 2084
+ },
+ {
+ "epoch": 28.961672473867594,
+ "grad_norm": 0.06552256643772125,
+ "learning_rate": 0.00024107639821301078,
+ "loss": 1.918696403503418,
+ "step": 2085
+ },
+ {
+ "epoch": 28.975609756097562,
+ "grad_norm": 0.06556595861911774,
+ "learning_rate": 0.00024081569538689587,
+ "loss": 1.9261362552642822,
+ "step": 2086
+ },
+ {
+ "epoch": 28.989547038327526,
+ "grad_norm": 0.06585165858268738,
+ "learning_rate": 0.0002405550426615521,
+ "loss": 1.9310712814331055,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.053358353674411774,
+ "learning_rate": 0.00024029444024698248,
+ "loss": 1.4310487508773804,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 0.6385146975517273,
+ "eval_runtime": 37.1743,
+ "eval_samples_per_second": 65.691,
+ "eval_steps_per_second": 0.538,
+ "step": 2088
+ },
+ {
+ "epoch": 29.013937282229964,
+ "grad_norm": 0.06348510086536407,
+ "learning_rate": 0.00024003388835314981,
+ "loss": 1.902433156967163,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027874564459932,
+ "grad_norm": 0.06517558544874191,
+ "learning_rate": 0.00023977338718997595,
+ "loss": 1.9010097980499268,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041811846689896,
+ "grad_norm": 0.06065843999385834,
+ "learning_rate": 0.00023951293696734195,
+ "loss": 1.8971004486083984,
+ "step": 2091
+ },
+ {
+ "epoch": 29.05574912891986,
+ "grad_norm": 0.06288564950227737,
+ "learning_rate": 0.00023925253789508806,
+ "loss": 1.895255208015442,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069686411149824,
+ "grad_norm": 0.06176576018333435,
+ "learning_rate": 0.00023899219018301286,
+ "loss": 1.895385503768921,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083623693379792,
+ "grad_norm": 0.06371054798364639,
+ "learning_rate": 0.00023873189404087405,
+ "loss": 1.8836419582366943,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097560975609756,
+ "grad_norm": 0.06175517290830612,
+ "learning_rate": 0.00023847164967838726,
+ "loss": 1.8960576057434082,
+ "step": 2095
+ },
+ {
+ "epoch": 29.11149825783972,
+ "grad_norm": 0.06139659136533737,
+ "learning_rate": 0.00023821145730522692,
+ "loss": 1.8820221424102783,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125435540069688,
+ "grad_norm": 0.06477366387844086,
+ "learning_rate": 0.0002379513171310251,
+ "loss": 1.8959964513778687,
+ "step": 2097
+ },
+ {
+ "epoch": 29.139372822299652,
+ "grad_norm": 0.060843080282211304,
+ "learning_rate": 0.00023769122936537207,
+ "loss": 1.8921177387237549,
+ "step": 2098
+ },
+ {
+ "epoch": 29.153310104529616,
+ "grad_norm": 0.06286641955375671,
+ "learning_rate": 0.00023743119421781614,
+ "loss": 1.883134365081787,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16724738675958,
+ "grad_norm": 0.0616721510887146,
+ "learning_rate": 0.00023717121189786256,
+ "loss": 1.8961443901062012,
+ "step": 2100
+ },
+ {
+ "epoch": 29.181184668989548,
+ "grad_norm": 0.06490568071603775,
+ "learning_rate": 0.00023691128261497463,
+ "loss": 1.8786497116088867,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195121951219512,
+ "grad_norm": 0.06612647324800491,
+ "learning_rate": 0.0002366514065785725,
+ "loss": 1.8977265357971191,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209059233449477,
+ "grad_norm": 0.0625205710530281,
+ "learning_rate": 0.00023639158399803382,
+ "loss": 1.8995720148086548,
+ "step": 2103
+ },
+ {
+ "epoch": 29.222996515679444,
+ "grad_norm": 0.0733620822429657,
+ "learning_rate": 0.0002361318150826927,
+ "loss": 1.896169662475586,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23693379790941,
+ "grad_norm": 0.0632617399096489,
+ "learning_rate": 0.0002358721000418404,
+ "loss": 1.8905175924301147,
+ "step": 2105
+ },
+ {
+ "epoch": 29.250871080139373,
+ "grad_norm": 0.06658294796943665,
+ "learning_rate": 0.00023561243908472472,
+ "loss": 1.9076403379440308,
+ "step": 2106
+ },
+ {
+ "epoch": 29.264808362369337,
+ "grad_norm": 0.066060371696949,
+ "learning_rate": 0.00023535283242054954,
+ "loss": 1.8913660049438477,
+ "step": 2107
+ },
+ {
+ "epoch": 29.278745644599304,
+ "grad_norm": 0.0640917718410492,
+ "learning_rate": 0.00023509328025847565,
+ "loss": 1.902782678604126,
+ "step": 2108
+ },
+ {
+ "epoch": 29.29268292682927,
+ "grad_norm": 0.06251244992017746,
+ "learning_rate": 0.00023483378280761907,
+ "loss": 1.8909555673599243,
+ "step": 2109
+ },
+ {
+ "epoch": 29.306620209059233,
+ "grad_norm": 0.06345900148153305,
+ "learning_rate": 0.0002345743402770527,
+ "loss": 1.8921617269515991,
+ "step": 2110
+ },
+ {
+ "epoch": 29.320557491289197,
+ "grad_norm": 0.0616324357688427,
+ "learning_rate": 0.0002343149528758042,
+ "loss": 1.908210277557373,
+ "step": 2111
+ },
+ {
+ "epoch": 29.334494773519165,
+ "grad_norm": 0.06260500848293304,
+ "learning_rate": 0.00023405562081285766,
+ "loss": 1.8987236022949219,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34843205574913,
+ "grad_norm": 0.06122080609202385,
+ "learning_rate": 0.0002337963442971522,
+ "loss": 1.8801190853118896,
+ "step": 2113
+ },
+ {
+ "epoch": 29.362369337979093,
+ "grad_norm": 0.06256433576345444,
+ "learning_rate": 0.00023353712353758212,
+ "loss": 1.8950425386428833,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37630662020906,
+ "grad_norm": 0.06358595192432404,
+ "learning_rate": 0.00023327795874299704,
+ "loss": 1.8783059120178223,
+ "step": 2115
+ },
+ {
+ "epoch": 29.390243902439025,
+ "grad_norm": 0.06162576004862785,
+ "learning_rate": 0.0002330188501222012,
+ "loss": 1.9105693101882935,
+ "step": 2116
+ },
+ {
+ "epoch": 29.40418118466899,
+ "grad_norm": 0.06342068314552307,
+ "learning_rate": 0.0002327597978839538,
+ "loss": 1.90647554397583,
+ "step": 2117
+ },
+ {
+ "epoch": 29.418118466898953,
+ "grad_norm": 0.06257889419794083,
+ "learning_rate": 0.00023250080223696852,
+ "loss": 1.9060969352722168,
+ "step": 2118
+ },
+ {
+ "epoch": 29.43205574912892,
+ "grad_norm": 0.06276524066925049,
+ "learning_rate": 0.00023224186338991352,
+ "loss": 1.9064395427703857,
+ "step": 2119
+ },
+ {
+ "epoch": 29.445993031358885,
+ "grad_norm": 0.06155265495181084,
+ "learning_rate": 0.0002319829815514112,
+ "loss": 1.906682014465332,
+ "step": 2120
+ },
+ {
+ "epoch": 29.45993031358885,
+ "grad_norm": 0.06252801418304443,
+ "learning_rate": 0.00023172415693003789,
+ "loss": 1.9077496528625488,
+ "step": 2121
+ },
+ {
+ "epoch": 29.473867595818817,
+ "grad_norm": 0.06420299410820007,
+ "learning_rate": 0.000231465389734324,
+ "loss": 1.9100978374481201,
+ "step": 2122
+ },
+ {
+ "epoch": 29.48780487804878,
+ "grad_norm": 0.06297800689935684,
+ "learning_rate": 0.00023120668017275346,
+ "loss": 1.8885812759399414,
+ "step": 2123
+ },
+ {
+ "epoch": 29.501742160278745,
+ "grad_norm": 0.06437410414218903,
+ "learning_rate": 0.00023094802845376403,
+ "loss": 1.9056107997894287,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51567944250871,
+ "grad_norm": 0.06496672332286835,
+ "learning_rate": 0.00023068943478574662,
+ "loss": 1.8950653076171875,
+ "step": 2125
+ },
+ {
+ "epoch": 29.529616724738677,
+ "grad_norm": 0.06434459984302521,
+ "learning_rate": 0.00023043089937704541,
+ "loss": 1.9208341836929321,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54355400696864,
+ "grad_norm": 0.0647054985165596,
+ "learning_rate": 0.00023017242243595796,
+ "loss": 1.9089730978012085,
+ "step": 2127
+ },
+ {
+ "epoch": 29.557491289198605,
+ "grad_norm": 0.06392117589712143,
+ "learning_rate": 0.00022991400417073427,
+ "loss": 1.895066261291504,
+ "step": 2128
+ },
+ {
+ "epoch": 29.571428571428573,
+ "grad_norm": 0.0638301819562912,
+ "learning_rate": 0.00022965564478957739,
+ "loss": 1.9062610864639282,
+ "step": 2129
+ },
+ {
+ "epoch": 29.585365853658537,
+ "grad_norm": 0.06492150574922562,
+ "learning_rate": 0.0002293973445006427,
+ "loss": 1.9190309047698975,
+ "step": 2130
+ },
+ {
+ "epoch": 29.5993031358885,
+ "grad_norm": 0.06228528916835785,
+ "learning_rate": 0.00022913910351203816,
+ "loss": 1.9015860557556152,
+ "step": 2131
+ },
+ {
+ "epoch": 29.613240418118465,
+ "grad_norm": 0.06274473667144775,
+ "learning_rate": 0.00022888092203182377,
+ "loss": 1.9092034101486206,
+ "step": 2132
+ },
+ {
+ "epoch": 29.627177700348433,
+ "grad_norm": 0.06517026573419571,
+ "learning_rate": 0.00022862280026801182,
+ "loss": 1.9104348421096802,
+ "step": 2133
+ },
+ {
+ "epoch": 29.641114982578397,
+ "grad_norm": 0.06522919237613678,
+ "learning_rate": 0.00022836473842856623,
+ "loss": 1.906738042831421,
+ "step": 2134
+ },
+ {
+ "epoch": 29.65505226480836,
+ "grad_norm": 0.06278976052999496,
+ "learning_rate": 0.00022810673672140272,
+ "loss": 1.9056813716888428,
+ "step": 2135
+ },
+ {
+ "epoch": 29.66898954703833,
+ "grad_norm": 0.06465253978967667,
+ "learning_rate": 0.0002278487953543889,
+ "loss": 1.9165875911712646,
+ "step": 2136
+ },
+ {
+ "epoch": 29.682926829268293,
+ "grad_norm": 0.0656580775976181,
+ "learning_rate": 0.00022759091453534308,
+ "loss": 1.9225130081176758,
+ "step": 2137
+ },
+ {
+ "epoch": 29.696864111498257,
+ "grad_norm": 0.0625176951289177,
+ "learning_rate": 0.00022733309447203553,
+ "loss": 1.9104106426239014,
+ "step": 2138
+ },
+ {
+ "epoch": 29.71080139372822,
+ "grad_norm": 0.06598987430334091,
+ "learning_rate": 0.00022707533537218695,
+ "loss": 1.9182713031768799,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72473867595819,
+ "grad_norm": 0.063861183822155,
+ "learning_rate": 0.00022681763744346938,
+ "loss": 1.9201741218566895,
+ "step": 2140
+ },
+ {
+ "epoch": 29.738675958188153,
+ "grad_norm": 0.065862737596035,
+ "learning_rate": 0.00022656000089350524,
+ "loss": 1.8971748352050781,
+ "step": 2141
+ },
+ {
+ "epoch": 29.752613240418118,
+ "grad_norm": 0.06543151289224625,
+ "learning_rate": 0.00022630242592986766,
+ "loss": 1.9031867980957031,
+ "step": 2142
+ },
+ {
+ "epoch": 29.766550522648085,
+ "grad_norm": 0.06437384337186813,
+ "learning_rate": 0.0002260449127600803,
+ "loss": 1.9082727432250977,
+ "step": 2143
+ },
+ {
+ "epoch": 29.78048780487805,
+ "grad_norm": 0.06707995384931564,
+ "learning_rate": 0.0002257874615916166,
+ "loss": 1.920899748802185,
+ "step": 2144
+ },
+ {
+ "epoch": 29.794425087108014,
+ "grad_norm": 0.06488589942455292,
+ "learning_rate": 0.00022553007263190067,
+ "loss": 1.901809811592102,
+ "step": 2145
+ },
+ {
+ "epoch": 29.808362369337978,
+ "grad_norm": 0.06581971049308777,
+ "learning_rate": 0.00022527274608830574,
+ "loss": 1.9137091636657715,
+ "step": 2146
+ },
+ {
+ "epoch": 29.822299651567945,
+ "grad_norm": 0.06502900272607803,
+ "learning_rate": 0.0002250154821681555,
+ "loss": 1.9089921712875366,
+ "step": 2147
+ },
+ {
+ "epoch": 29.83623693379791,
+ "grad_norm": 0.06428463757038116,
+ "learning_rate": 0.0002247582810787227,
+ "loss": 1.907055139541626,
+ "step": 2148
+ },
+ {
+ "epoch": 29.850174216027874,
+ "grad_norm": 0.06490083038806915,
+ "learning_rate": 0.00022450114302722957,
+ "loss": 1.8931684494018555,
+ "step": 2149
+ },
+ {
+ "epoch": 29.86411149825784,
+ "grad_norm": 0.06519338488578796,
+ "learning_rate": 0.0002242440682208477,
+ "loss": 1.924349308013916,
+ "step": 2150
+ },
+ {
+ "epoch": 29.878048780487806,
+ "grad_norm": 0.06435994058847427,
+ "learning_rate": 0.00022398705686669748,
+ "loss": 1.9001131057739258,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89198606271777,
+ "grad_norm": 0.06389366835355759,
+ "learning_rate": 0.0002237301091718485,
+ "loss": 1.9222545623779297,
+ "step": 2152
+ },
+ {
+ "epoch": 29.905923344947734,
+ "grad_norm": 0.06635434180498123,
+ "learning_rate": 0.00022347322534331865,
+ "loss": 1.9115610122680664,
+ "step": 2153
+ },
+ {
+ "epoch": 29.9198606271777,
+ "grad_norm": 0.06362872570753098,
+ "learning_rate": 0.00022321640558807488,
+ "loss": 1.9033440351486206,
+ "step": 2154
+ },
+ {
+ "epoch": 29.933797909407666,
+ "grad_norm": 0.06656860560178757,
+ "learning_rate": 0.00022295965011303188,
+ "loss": 1.9024994373321533,
+ "step": 2155
+ },
+ {
+ "epoch": 29.94773519163763,
+ "grad_norm": 0.06287530809640884,
+ "learning_rate": 0.00022270295912505317,
+ "loss": 1.9141626358032227,
+ "step": 2156
+ },
+ {
+ "epoch": 29.961672473867594,
+ "grad_norm": 0.06594341993331909,
+ "learning_rate": 0.00022244633283095,
+ "loss": 1.9281123876571655,
+ "step": 2157
+ },
+ {
+ "epoch": 29.975609756097562,
+ "grad_norm": 0.06367179751396179,
+ "learning_rate": 0.0002221897714374814,
+ "loss": 1.9032683372497559,
+ "step": 2158
+ },
+ {
+ "epoch": 29.989547038327526,
+ "grad_norm": 0.06714081764221191,
+ "learning_rate": 0.00022193327515135445,
+ "loss": 1.9118046760559082,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.05437680333852768,
+ "learning_rate": 0.00022167684417922337,
+ "loss": 1.4319559335708618,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 0.6395835280418396,
+ "eval_runtime": 47.0869,
+ "eval_samples_per_second": 51.862,
+ "eval_steps_per_second": 0.425,
+ "step": 2160
+ },
+ {
+ "epoch": 30.013937282229964,
+ "grad_norm": 0.061811935156583786,
+ "learning_rate": 0.00022142047872769014,
+ "loss": 1.8821682929992676,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027874564459932,
+ "grad_norm": 0.060412414371967316,
+ "learning_rate": 0.00022116417900330365,
+ "loss": 1.8725709915161133,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041811846689896,
+ "grad_norm": 0.06219486892223358,
+ "learning_rate": 0.00022090794521255997,
+ "loss": 1.8726820945739746,
+ "step": 2163
+ },
+ {
+ "epoch": 30.05574912891986,
+ "grad_norm": 0.061067480593919754,
+ "learning_rate": 0.00022065177756190214,
+ "loss": 1.8728303909301758,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069686411149824,
+ "grad_norm": 0.05880453437566757,
+ "learning_rate": 0.00022039567625771968,
+ "loss": 1.8877463340759277,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083623693379792,
+ "grad_norm": 0.06127414479851723,
+ "learning_rate": 0.0002201396415063489,
+ "loss": 1.8891685009002686,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097560975609756,
+ "grad_norm": 0.05931060016155243,
+ "learning_rate": 0.00021988367351407227,
+ "loss": 1.8739129304885864,
+ "step": 2167
+ },
+ {
+ "epoch": 30.11149825783972,
+ "grad_norm": 0.06235767528414726,
+ "learning_rate": 0.00021962777248711872,
+ "loss": 1.8802381753921509,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125435540069688,
+ "grad_norm": 0.05874861031770706,
+ "learning_rate": 0.00021937193863166292,
+ "loss": 1.8802909851074219,
+ "step": 2169
+ },
+ {
+ "epoch": 30.139372822299652,
+ "grad_norm": 0.061103034764528275,
+ "learning_rate": 0.00021911617215382564,
+ "loss": 1.884058952331543,
+ "step": 2170
+ },
+ {
+ "epoch": 30.153310104529616,
+ "grad_norm": 0.05980055406689644,
+ "learning_rate": 0.00021886047325967348,
+ "loss": 1.8738408088684082,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16724738675958,
+ "grad_norm": 0.061332255601882935,
+ "learning_rate": 0.00021860484215521805,
+ "loss": 1.8697137832641602,
+ "step": 2172
+ },
+ {
+ "epoch": 30.181184668989548,
+ "grad_norm": 0.05897640436887741,
+ "learning_rate": 0.00021834927904641708,
+ "loss": 1.887247920036316,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195121951219512,
+ "grad_norm": 0.06039821356534958,
+ "learning_rate": 0.00021809378413917296,
+ "loss": 1.8843746185302734,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209059233449477,
+ "grad_norm": 0.06140084192156792,
+ "learning_rate": 0.00021783835763933344,
+ "loss": 1.8834288120269775,
+ "step": 2175
+ },
+ {
+ "epoch": 30.222996515679444,
+ "grad_norm": 0.06152097508311272,
+ "learning_rate": 0.0002175829997526909,
+ "loss": 1.881451964378357,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23693379790941,
+ "grad_norm": 0.06128741800785065,
+ "learning_rate": 0.0002173277106849826,
+ "loss": 1.8756582736968994,
+ "step": 2177
+ },
+ {
+ "epoch": 30.250871080139373,
+ "grad_norm": 0.0608304888010025,
+ "learning_rate": 0.0002170724906418905,
+ "loss": 1.8877084255218506,
+ "step": 2178
+ },
+ {
+ "epoch": 30.264808362369337,
+ "grad_norm": 0.05938803777098656,
+ "learning_rate": 0.00021681733982904046,
+ "loss": 1.8796486854553223,
+ "step": 2179
+ },
+ {
+ "epoch": 30.278745644599304,
+ "grad_norm": 0.06101052463054657,
+ "learning_rate": 0.00021656225845200332,
+ "loss": 1.8800137042999268,
+ "step": 2180
+ },
+ {
+ "epoch": 30.29268292682927,
+ "grad_norm": 0.06140942499041557,
+ "learning_rate": 0.0002163072467162931,
+ "loss": 1.907020092010498,
+ "step": 2181
+ },
+ {
+ "epoch": 30.306620209059233,
+ "grad_norm": 0.06322148442268372,
+ "learning_rate": 0.00021605230482736845,
+ "loss": 1.8778784275054932,
+ "step": 2182
+ },
+ {
+ "epoch": 30.320557491289197,
+ "grad_norm": 0.06144942715764046,
+ "learning_rate": 0.00021579743299063122,
+ "loss": 1.8906503915786743,
+ "step": 2183
+ },
+ {
+ "epoch": 30.334494773519165,
+ "grad_norm": 0.06323464214801788,
+ "learning_rate": 0.00021554263141142726,
+ "loss": 1.892274260520935,
+ "step": 2184
+ },
+ {
+ "epoch": 30.34843205574913,
+ "grad_norm": 0.06276610493659973,
+ "learning_rate": 0.00021528790029504548,
+ "loss": 1.8861984014511108,
+ "step": 2185
+ },
+ {
+ "epoch": 30.362369337979093,
+ "grad_norm": 0.06291946768760681,
+ "learning_rate": 0.00021503323984671814,
+ "loss": 1.8812167644500732,
+ "step": 2186
+ },
+ {
+ "epoch": 30.37630662020906,
+ "grad_norm": 0.06449956446886063,
+ "learning_rate": 0.00021477865027162067,
+ "loss": 1.8725450038909912,
+ "step": 2187
+ },
+ {
+ "epoch": 30.390243902439025,
+ "grad_norm": 0.062199078500270844,
+ "learning_rate": 0.0002145241317748711,
+ "loss": 1.8660006523132324,
+ "step": 2188
+ },
+ {
+ "epoch": 30.40418118466899,
+ "grad_norm": 0.06578577309846878,
+ "learning_rate": 0.0002142696845615306,
+ "loss": 1.8998687267303467,
+ "step": 2189
+ },
+ {
+ "epoch": 30.418118466898953,
+ "grad_norm": 0.06263040006160736,
+ "learning_rate": 0.0002140153088366024,
+ "loss": 1.8895599842071533,
+ "step": 2190
+ },
+ {
+ "epoch": 30.43205574912892,
+ "grad_norm": 0.06379809230566025,
+ "learning_rate": 0.00021376100480503276,
+ "loss": 1.888756275177002,
+ "step": 2191
+ },
+ {
+ "epoch": 30.445993031358885,
+ "grad_norm": 0.06144513934850693,
+ "learning_rate": 0.00021350677267170973,
+ "loss": 1.8797111511230469,
+ "step": 2192
+ },
+ {
+ "epoch": 30.45993031358885,
+ "grad_norm": 0.06551753729581833,
+ "learning_rate": 0.00021325261264146342,
+ "loss": 1.8898788690567017,
+ "step": 2193
+ },
+ {
+ "epoch": 30.473867595818817,
+ "grad_norm": 0.0634821429848671,
+ "learning_rate": 0.00021299852491906616,
+ "loss": 1.9081072807312012,
+ "step": 2194
+ },
+ {
+ "epoch": 30.48780487804878,
+ "grad_norm": 0.06261540949344635,
+ "learning_rate": 0.00021274450970923167,
+ "loss": 1.8862106800079346,
+ "step": 2195
+ },
+ {
+ "epoch": 30.501742160278745,
+ "grad_norm": 0.06235577166080475,
+ "learning_rate": 0.0002124905672166156,
+ "loss": 1.8701283931732178,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51567944250871,
+ "grad_norm": 0.06507014483213425,
+ "learning_rate": 0.0002122366976458146,
+ "loss": 1.906468152999878,
+ "step": 2197
+ },
+ {
+ "epoch": 30.529616724738677,
+ "grad_norm": 0.0635584145784378,
+ "learning_rate": 0.00021198290120136702,
+ "loss": 1.886523723602295,
+ "step": 2198
+ },
+ {
+ "epoch": 30.54355400696864,
+ "grad_norm": 0.06394219398498535,
+ "learning_rate": 0.0002117291780877519,
+ "loss": 1.8687143325805664,
+ "step": 2199
+ },
+ {
+ "epoch": 30.557491289198605,
+ "grad_norm": 0.06521911174058914,
+ "learning_rate": 0.00021147552850938941,
+ "loss": 1.885088324546814,
+ "step": 2200
+ },
+ {
+ "epoch": 30.571428571428573,
+ "grad_norm": 0.0646066814661026,
+ "learning_rate": 0.0002112219526706406,
+ "loss": 1.8981271982192993,
+ "step": 2201
+ },
+ {
+ "epoch": 30.585365853658537,
+ "grad_norm": 0.06708912551403046,
+ "learning_rate": 0.00021096845077580675,
+ "loss": 1.8949990272521973,
+ "step": 2202
+ },
+ {
+ "epoch": 30.5993031358885,
+ "grad_norm": 0.0656600221991539,
+ "learning_rate": 0.0002107150230291299,
+ "loss": 1.8876829147338867,
+ "step": 2203
+ },
+ {
+ "epoch": 30.613240418118465,
+ "grad_norm": 0.06315416842699051,
+ "learning_rate": 0.00021046166963479204,
+ "loss": 1.8786557912826538,
+ "step": 2204
+ },
+ {
+ "epoch": 30.627177700348433,
+ "grad_norm": 0.06558752804994583,
+ "learning_rate": 0.00021020839079691553,
+ "loss": 1.889142632484436,
+ "step": 2205
+ },
+ {
+ "epoch": 30.641114982578397,
+ "grad_norm": 0.06307908147573471,
+ "learning_rate": 0.00020995518671956256,
+ "loss": 1.8903149366378784,
+ "step": 2206
+ },
+ {
+ "epoch": 30.65505226480836,
+ "grad_norm": 0.06145390495657921,
+ "learning_rate": 0.00020970205760673493,
+ "loss": 1.8872840404510498,
+ "step": 2207
+ },
+ {
+ "epoch": 30.66898954703833,
+ "grad_norm": 0.06402356922626495,
+ "learning_rate": 0.00020944900366237453,
+ "loss": 1.8805838823318481,
+ "step": 2208
+ },
+ {
+ "epoch": 30.682926829268293,
+ "grad_norm": 0.06330732256174088,
+ "learning_rate": 0.00020919602509036195,
+ "loss": 1.8881486654281616,
+ "step": 2209
+ },
+ {
+ "epoch": 30.696864111498257,
+ "grad_norm": 0.06465929001569748,
+ "learning_rate": 0.0002089431220945178,
+ "loss": 1.877720594406128,
+ "step": 2210
+ },
+ {
+ "epoch": 30.71080139372822,
+ "grad_norm": 0.06697797030210495,
+ "learning_rate": 0.00020869029487860126,
+ "loss": 1.8768590688705444,
+ "step": 2211
+ },
+ {
+ "epoch": 30.72473867595819,
+ "grad_norm": 0.06605999171733856,
+ "learning_rate": 0.00020843754364631068,
+ "loss": 1.8825514316558838,
+ "step": 2212
+ },
+ {
+ "epoch": 30.738675958188153,
+ "grad_norm": 0.0656205341219902,
+ "learning_rate": 0.0002081848686012832,
+ "loss": 1.8852055072784424,
+ "step": 2213
+ },
+ {
+ "epoch": 30.752613240418118,
+ "grad_norm": 0.06713110208511353,
+ "learning_rate": 0.00020793226994709446,
+ "loss": 1.882007360458374,
+ "step": 2214
+ },
+ {
+ "epoch": 30.766550522648085,
+ "grad_norm": 0.06526081264019012,
+ "learning_rate": 0.0002076797478872588,
+ "loss": 1.8892399072647095,
+ "step": 2215
+ },
+ {
+ "epoch": 30.78048780487805,
+ "grad_norm": 0.06758946180343628,
+ "learning_rate": 0.00020742730262522844,
+ "loss": 1.8980051279067993,
+ "step": 2216
+ },
+ {
+ "epoch": 30.794425087108014,
+ "grad_norm": 0.06784503906965256,
+ "learning_rate": 0.00020717493436439433,
+ "loss": 1.8907029628753662,
+ "step": 2217
+ },
+ {
+ "epoch": 30.808362369337978,
+ "grad_norm": 0.06756821274757385,
+ "learning_rate": 0.00020692264330808455,
+ "loss": 1.8950631618499756,
+ "step": 2218
+ },
+ {
+ "epoch": 30.822299651567945,
+ "grad_norm": 0.06609930098056793,
+ "learning_rate": 0.00020667042965956587,
+ "loss": 1.8887443542480469,
+ "step": 2219
+ },
+ {
+ "epoch": 30.83623693379791,
+ "grad_norm": 0.06700558215379715,
+ "learning_rate": 0.00020641829362204195,
+ "loss": 1.900990605354309,
+ "step": 2220
+ },
+ {
+ "epoch": 30.850174216027874,
+ "grad_norm": 0.06835924834012985,
+ "learning_rate": 0.00020616623539865446,
+ "loss": 1.881005048751831,
+ "step": 2221
+ },
+ {
+ "epoch": 30.86411149825784,
+ "grad_norm": 0.06574281305074692,
+ "learning_rate": 0.00020591425519248213,
+ "loss": 1.8976192474365234,
+ "step": 2222
+ },
+ {
+ "epoch": 30.878048780487806,
+ "grad_norm": 0.06529807299375534,
+ "learning_rate": 0.00020566235320654069,
+ "loss": 1.8866150379180908,
+ "step": 2223
+ },
+ {
+ "epoch": 30.89198606271777,
+ "grad_norm": 0.06722450256347656,
+ "learning_rate": 0.00020541052964378323,
+ "loss": 1.9030026197433472,
+ "step": 2224
+ },
+ {
+ "epoch": 30.905923344947734,
+ "grad_norm": 0.06486845016479492,
+ "learning_rate": 0.00020515878470709928,
+ "loss": 1.8861298561096191,
+ "step": 2225
+ },
+ {
+ "epoch": 30.9198606271777,
+ "grad_norm": 0.06532816588878632,
+ "learning_rate": 0.00020490711859931545,
+ "loss": 1.893527626991272,
+ "step": 2226
+ },
+ {
+ "epoch": 30.933797909407666,
+ "grad_norm": 0.06626923382282257,
+ "learning_rate": 0.00020465553152319418,
+ "loss": 1.88838791847229,
+ "step": 2227
+ },
+ {
+ "epoch": 30.94773519163763,
+ "grad_norm": 0.0654103085398674,
+ "learning_rate": 0.00020440402368143492,
+ "loss": 1.9061450958251953,
+ "step": 2228
+ },
+ {
+ "epoch": 30.961672473867594,
+ "grad_norm": 0.06394780427217484,
+ "learning_rate": 0.00020415259527667299,
+ "loss": 1.908818244934082,
+ "step": 2229
+ },
+ {
+ "epoch": 30.975609756097562,
+ "grad_norm": 0.06630687415599823,
+ "learning_rate": 0.0002039012465114796,
+ "loss": 1.8836619853973389,
+ "step": 2230
+ },
+ {
+ "epoch": 30.989547038327526,
+ "grad_norm": 0.06586914509534836,
+ "learning_rate": 0.00020364997758836193,
+ "loss": 1.8967719078063965,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.05284066125750542,
+ "learning_rate": 0.00020339878870976287,
+ "loss": 1.4147136211395264,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 0.6414697170257568,
+ "eval_runtime": 39.9304,
+ "eval_samples_per_second": 61.156,
+ "eval_steps_per_second": 0.501,
+ "step": 2232
+ },
+ {
+ "epoch": 31.013937282229964,
+ "grad_norm": 0.060604438185691833,
+ "learning_rate": 0.00020314768007806077,
+ "loss": 1.8646475076675415,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027874564459932,
+ "grad_norm": 0.06078824773430824,
+ "learning_rate": 0.00020289665189556923,
+ "loss": 1.8648875951766968,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041811846689896,
+ "grad_norm": 0.06248131021857262,
+ "learning_rate": 0.00020264570436453707,
+ "loss": 1.8768644332885742,
+ "step": 2235
+ },
+ {
+ "epoch": 31.05574912891986,
+ "grad_norm": 0.06086263805627823,
+ "learning_rate": 0.00020239483768714843,
+ "loss": 1.870078682899475,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069686411149824,
+ "grad_norm": 0.060540031641721725,
+ "learning_rate": 0.0002021440520655219,
+ "loss": 1.8600138425827026,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083623693379792,
+ "grad_norm": 0.06146378070116043,
+ "learning_rate": 0.00020189334770171098,
+ "loss": 1.8661935329437256,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097560975609756,
+ "grad_norm": 0.06294050812721252,
+ "learning_rate": 0.00020164272479770352,
+ "loss": 1.8623647689819336,
+ "step": 2239
+ },
+ {
+ "epoch": 31.11149825783972,
+ "grad_norm": 0.06037621200084686,
+ "learning_rate": 0.00020139218355542203,
+ "loss": 1.854023814201355,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125435540069688,
+ "grad_norm": 0.0614016056060791,
+ "learning_rate": 0.000201141724176723,
+ "loss": 1.858170509338379,
+ "step": 2241
+ },
+ {
+ "epoch": 31.139372822299652,
+ "grad_norm": 0.062037430703639984,
+ "learning_rate": 0.0002008913468633969,
+ "loss": 1.8650360107421875,
+ "step": 2242
+ },
+ {
+ "epoch": 31.153310104529616,
+ "grad_norm": 0.05925912410020828,
+ "learning_rate": 0.00020064105181716847,
+ "loss": 1.8559834957122803,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16724738675958,
+ "grad_norm": 0.06082075089216232,
+ "learning_rate": 0.00020039083923969564,
+ "loss": 1.86753511428833,
+ "step": 2244
+ },
+ {
+ "epoch": 31.181184668989548,
+ "grad_norm": 0.06053556874394417,
+ "learning_rate": 0.0002001407093325704,
+ "loss": 1.859229326248169,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195121951219512,
+ "grad_norm": 0.059802569448947906,
+ "learning_rate": 0.0001998906622973177,
+ "loss": 1.8574810028076172,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209059233449477,
+ "grad_norm": 0.05929112061858177,
+ "learning_rate": 0.0001996406983353961,
+ "loss": 1.870527744293213,
+ "step": 2247
+ },
+ {
+ "epoch": 31.222996515679444,
+ "grad_norm": 0.05963680520653725,
+ "learning_rate": 0.0001993908176481969,
+ "loss": 1.8654029369354248,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23693379790941,
+ "grad_norm": 0.06305639445781708,
+ "learning_rate": 0.0001991410204370445,
+ "loss": 1.8621957302093506,
+ "step": 2249
+ },
+ {
+ "epoch": 31.250871080139373,
+ "grad_norm": 0.0604659803211689,
+ "learning_rate": 0.00019889130690319608,
+ "loss": 1.8467226028442383,
+ "step": 2250
+ },
+ {
+ "epoch": 31.264808362369337,
+ "grad_norm": 0.06070101633667946,
+ "learning_rate": 0.00019864167724784117,
+ "loss": 1.85858154296875,
+ "step": 2251
+ },
+ {
+ "epoch": 31.278745644599304,
+ "grad_norm": 0.06042332947254181,
+ "learning_rate": 0.00019839213167210213,
+ "loss": 1.860041618347168,
+ "step": 2252
+ },
+ {
+ "epoch": 31.29268292682927,
+ "grad_norm": 0.06108660250902176,
+ "learning_rate": 0.00019814267037703294,
+ "loss": 1.8745486736297607,
+ "step": 2253
+ },
+ {
+ "epoch": 31.306620209059233,
+ "grad_norm": 0.06323979049921036,
+ "learning_rate": 0.0001978932935636205,
+ "loss": 1.8638720512390137,
+ "step": 2254
+ },
+ {
+ "epoch": 31.320557491289197,
+ "grad_norm": 0.06100151315331459,
+ "learning_rate": 0.00019764400143278276,
+ "loss": 1.873995304107666,
+ "step": 2255
+ },
+ {
+ "epoch": 31.334494773519165,
+ "grad_norm": 0.06299260258674622,
+ "learning_rate": 0.00019739479418537018,
+ "loss": 1.856463074684143,
+ "step": 2256
+ },
+ {
+ "epoch": 31.34843205574913,
+ "grad_norm": 0.060268502682447433,
+ "learning_rate": 0.00019714567202216453,
+ "loss": 1.870614767074585,
+ "step": 2257
+ },
+ {
+ "epoch": 31.362369337979093,
+ "grad_norm": 0.06267309933900833,
+ "learning_rate": 0.00019689663514387896,
+ "loss": 1.8735413551330566,
+ "step": 2258
+ },
+ {
+ "epoch": 31.37630662020906,
+ "grad_norm": 0.0630616620182991,
+ "learning_rate": 0.00019664768375115798,
+ "loss": 1.87433660030365,
+ "step": 2259
+ },
+ {
+ "epoch": 31.390243902439025,
+ "grad_norm": 0.062905453145504,
+ "learning_rate": 0.00019639881804457723,
+ "loss": 1.8653037548065186,
+ "step": 2260
+ },
+ {
+ "epoch": 31.40418118466899,
+ "grad_norm": 0.061397816985845566,
+ "learning_rate": 0.00019615003822464342,
+ "loss": 1.8669100999832153,
+ "step": 2261
+ },
+ {
+ "epoch": 31.418118466898953,
+ "grad_norm": 0.06352730095386505,
+ "learning_rate": 0.00019590134449179371,
+ "loss": 1.8823096752166748,
+ "step": 2262
+ },
+ {
+ "epoch": 31.43205574912892,
+ "grad_norm": 0.06169911473989487,
+ "learning_rate": 0.00019565273704639648,
+ "loss": 1.8809747695922852,
+ "step": 2263
+ },
+ {
+ "epoch": 31.445993031358885,
+ "grad_norm": 0.06471487879753113,
+ "learning_rate": 0.00019540421608874994,
+ "loss": 1.8702677488327026,
+ "step": 2264
+ },
+ {
+ "epoch": 31.45993031358885,
+ "grad_norm": 0.062495868653059006,
+ "learning_rate": 0.0001951557818190831,
+ "loss": 1.881035566329956,
+ "step": 2265
+ },
+ {
+ "epoch": 31.473867595818817,
+ "grad_norm": 0.061863191425800323,
+ "learning_rate": 0.00019490743443755504,
+ "loss": 1.8691881895065308,
+ "step": 2266
+ },
+ {
+ "epoch": 31.48780487804878,
+ "grad_norm": 0.06295126676559448,
+ "learning_rate": 0.0001946591741442546,
+ "loss": 1.866331696510315,
+ "step": 2267
+ },
+ {
+ "epoch": 31.501742160278745,
+ "grad_norm": 0.06404458731412888,
+ "learning_rate": 0.00019441100113920076,
+ "loss": 1.8709323406219482,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51567944250871,
+ "grad_norm": 0.06424364447593689,
+ "learning_rate": 0.00019416291562234192,
+ "loss": 1.860987901687622,
+ "step": 2269
+ },
+ {
+ "epoch": 31.529616724738677,
+ "grad_norm": 0.06346628814935684,
+ "learning_rate": 0.00019391491779355608,
+ "loss": 1.8733528852462769,
+ "step": 2270
+ },
+ {
+ "epoch": 31.54355400696864,
+ "grad_norm": 0.06380122900009155,
+ "learning_rate": 0.00019366700785265065,
+ "loss": 1.8605754375457764,
+ "step": 2271
+ },
+ {
+ "epoch": 31.557491289198605,
+ "grad_norm": 0.06407288461923599,
+ "learning_rate": 0.0001934191859993622,
+ "loss": 1.865129828453064,
+ "step": 2272
+ },
+ {
+ "epoch": 31.571428571428573,
+ "grad_norm": 0.06177213042974472,
+ "learning_rate": 0.00019317145243335642,
+ "loss": 1.8731110095977783,
+ "step": 2273
+ },
+ {
+ "epoch": 31.585365853658537,
+ "grad_norm": 0.0677371472120285,
+ "learning_rate": 0.0001929238073542276,
+ "loss": 1.8737413883209229,
+ "step": 2274
+ },
+ {
+ "epoch": 31.5993031358885,
+ "grad_norm": 0.0647529736161232,
+ "learning_rate": 0.00019267625096149903,
+ "loss": 1.867060661315918,
+ "step": 2275
+ },
+ {
+ "epoch": 31.613240418118465,
+ "grad_norm": 0.06501344591379166,
+ "learning_rate": 0.00019242878345462227,
+ "loss": 1.8647403717041016,
+ "step": 2276
+ },
+ {
+ "epoch": 31.627177700348433,
+ "grad_norm": 0.06636765599250793,
+ "learning_rate": 0.00019218140503297765,
+ "loss": 1.8598473072052002,
+ "step": 2277
+ },
+ {
+ "epoch": 31.641114982578397,
+ "grad_norm": 0.06625733524560928,
+ "learning_rate": 0.00019193411589587332,
+ "loss": 1.8797805309295654,
+ "step": 2278
+ },
+ {
+ "epoch": 31.65505226480836,
+ "grad_norm": 0.0652196854352951,
+ "learning_rate": 0.00019168691624254564,
+ "loss": 1.8820933103561401,
+ "step": 2279
+ },
+ {
+ "epoch": 31.66898954703833,
+ "grad_norm": 0.06613790988922119,
+ "learning_rate": 0.00019143980627215915,
+ "loss": 1.8773422241210938,
+ "step": 2280
+ },
+ {
+ "epoch": 31.682926829268293,
+ "grad_norm": 0.0657401978969574,
+ "learning_rate": 0.00019119278618380555,
+ "loss": 1.8706395626068115,
+ "step": 2281
+ },
+ {
+ "epoch": 31.696864111498257,
+ "grad_norm": 0.06442514061927795,
+ "learning_rate": 0.00019094585617650476,
+ "loss": 1.878519892692566,
+ "step": 2282
+ },
+ {
+ "epoch": 31.71080139372822,
+ "grad_norm": 0.06672950834035873,
+ "learning_rate": 0.00019069901644920366,
+ "loss": 1.876173973083496,
+ "step": 2283
+ },
+ {
+ "epoch": 31.72473867595819,
+ "grad_norm": 0.06492309272289276,
+ "learning_rate": 0.00019045226720077667,
+ "loss": 1.8842449188232422,
+ "step": 2284
+ },
+ {
+ "epoch": 31.738675958188153,
+ "grad_norm": 0.06469793617725372,
+ "learning_rate": 0.0001902056086300251,
+ "loss": 1.8798532485961914,
+ "step": 2285
+ },
+ {
+ "epoch": 31.752613240418118,
+ "grad_norm": 0.06608608365058899,
+ "learning_rate": 0.0001899590409356773,
+ "loss": 1.866950511932373,
+ "step": 2286
+ },
+ {
+ "epoch": 31.766550522648085,
+ "grad_norm": 0.06483180820941925,
+ "learning_rate": 0.00018971256431638854,
+ "loss": 1.873096227645874,
+ "step": 2287
+ },
+ {
+ "epoch": 31.78048780487805,
+ "grad_norm": 0.06410029530525208,
+ "learning_rate": 0.00018946617897074041,
+ "loss": 1.8798564672470093,
+ "step": 2288
+ },
+ {
+ "epoch": 31.794425087108014,
+ "grad_norm": 0.06440483778715134,
+ "learning_rate": 0.0001892198850972413,
+ "loss": 1.8675113916397095,
+ "step": 2289
+ },
+ {
+ "epoch": 31.808362369337978,
+ "grad_norm": 0.06469769030809402,
+ "learning_rate": 0.00018897368289432553,
+ "loss": 1.8644737005233765,
+ "step": 2290
+ },
+ {
+ "epoch": 31.822299651567945,
+ "grad_norm": 0.06366699188947678,
+ "learning_rate": 0.00018872757256035403,
+ "loss": 1.8632454872131348,
+ "step": 2291
+ },
+ {
+ "epoch": 31.83623693379791,
+ "grad_norm": 0.06567682325839996,
+ "learning_rate": 0.00018848155429361323,
+ "loss": 1.8711936473846436,
+ "step": 2292
+ },
+ {
+ "epoch": 31.850174216027874,
+ "grad_norm": 0.06415718793869019,
+ "learning_rate": 0.00018823562829231567,
+ "loss": 1.8836743831634521,
+ "step": 2293
+ },
+ {
+ "epoch": 31.86411149825784,
+ "grad_norm": 0.06531377136707306,
+ "learning_rate": 0.0001879897947545996,
+ "loss": 1.8687281608581543,
+ "step": 2294
+ },
+ {
+ "epoch": 31.878048780487806,
+ "grad_norm": 0.06425580382347107,
+ "learning_rate": 0.00018774405387852848,
+ "loss": 1.875110149383545,
+ "step": 2295
+ },
+ {
+ "epoch": 31.89198606271777,
+ "grad_norm": 0.06651245802640915,
+ "learning_rate": 0.00018749840586209144,
+ "loss": 1.881043791770935,
+ "step": 2296
+ },
+ {
+ "epoch": 31.905923344947734,
+ "grad_norm": 0.0645023062825203,
+ "learning_rate": 0.00018725285090320245,
+ "loss": 1.8830270767211914,
+ "step": 2297
+ },
+ {
+ "epoch": 31.9198606271777,
+ "grad_norm": 0.06700874119997025,
+ "learning_rate": 0.00018700738919970103,
+ "loss": 1.8654285669326782,
+ "step": 2298
+ },
+ {
+ "epoch": 31.933797909407666,
+ "grad_norm": 0.06646879017353058,
+ "learning_rate": 0.00018676202094935085,
+ "loss": 1.8897215127944946,
+ "step": 2299
+ },
+ {
+ "epoch": 31.94773519163763,
+ "grad_norm": 0.06660740822553635,
+ "learning_rate": 0.000186516746349841,
+ "loss": 1.8914703130722046,
+ "step": 2300
+ },
+ {
+ "epoch": 31.961672473867594,
+ "grad_norm": 0.06686484813690186,
+ "learning_rate": 0.0001862715655987847,
+ "loss": 1.889345407485962,
+ "step": 2301
+ },
+ {
+ "epoch": 31.975609756097562,
+ "grad_norm": 0.06631558388471603,
+ "learning_rate": 0.00018602647889371957,
+ "loss": 1.8859820365905762,
+ "step": 2302
+ },
+ {
+ "epoch": 31.989547038327526,
+ "grad_norm": 0.06582383811473846,
+ "learning_rate": 0.00018578148643210764,
+ "loss": 1.8652012348175049,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.052844833582639694,
+ "learning_rate": 0.00018553658841133483,
+ "loss": 1.4002703428268433,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 0.6424221396446228,
+ "eval_runtime": 37.5069,
+ "eval_samples_per_second": 65.108,
+ "eval_steps_per_second": 0.533,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01393728222997,
+ "grad_norm": 0.05961986258625984,
+ "learning_rate": 0.00018529178502871117,
+ "loss": 1.854289174079895,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02787456445993,
+ "grad_norm": 0.06249764561653137,
+ "learning_rate": 0.0001850470764814702,
+ "loss": 1.8544244766235352,
+ "step": 2306
+ },
+ {
+ "epoch": 32.041811846689896,
+ "grad_norm": 0.06160780042409897,
+ "learning_rate": 0.0001848024629667691,
+ "loss": 1.842755913734436,
+ "step": 2307
+ },
+ {
+ "epoch": 32.055749128919864,
+ "grad_norm": 0.06074569746851921,
+ "learning_rate": 0.00018455794468168887,
+ "loss": 1.8530092239379883,
+ "step": 2308
+ },
+ {
+ "epoch": 32.069686411149824,
+ "grad_norm": 0.059093352407217026,
+ "learning_rate": 0.00018431352182323322,
+ "loss": 1.8404085636138916,
+ "step": 2309
+ },
+ {
+ "epoch": 32.08362369337979,
+ "grad_norm": 0.06252843141555786,
+ "learning_rate": 0.0001840691945883293,
+ "loss": 1.8402471542358398,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09756097560975,
+ "grad_norm": 0.062098030000925064,
+ "learning_rate": 0.00018382496317382715,
+ "loss": 1.8632150888442993,
+ "step": 2311
+ },
+ {
+ "epoch": 32.11149825783972,
+ "grad_norm": 0.060433197766542435,
+ "learning_rate": 0.0001835808277764997,
+ "loss": 1.8358535766601562,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12543554006969,
+ "grad_norm": 0.062378350645303726,
+ "learning_rate": 0.00018333678859304222,
+ "loss": 1.8390008211135864,
+ "step": 2313
+ },
+ {
+ "epoch": 32.13937282229965,
+ "grad_norm": 0.06074725463986397,
+ "learning_rate": 0.00018309284582007274,
+ "loss": 1.858860731124878,
+ "step": 2314
+ },
+ {
+ "epoch": 32.153310104529616,
+ "grad_norm": 0.06083287298679352,
+ "learning_rate": 0.0001828489996541318,
+ "loss": 1.8486149311065674,
+ "step": 2315
+ },
+ {
+ "epoch": 32.167247386759584,
+ "grad_norm": 0.06116314232349396,
+ "learning_rate": 0.00018260525029168147,
+ "loss": 1.8581088781356812,
+ "step": 2316
+ },
+ {
+ "epoch": 32.181184668989545,
+ "grad_norm": 0.061406541615724564,
+ "learning_rate": 0.00018236159792910648,
+ "loss": 1.8591161966323853,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19512195121951,
+ "grad_norm": 0.05874199792742729,
+ "learning_rate": 0.00018211804276271304,
+ "loss": 1.8300669193267822,
+ "step": 2318
+ },
+ {
+ "epoch": 32.20905923344948,
+ "grad_norm": 0.060864705592393875,
+ "learning_rate": 0.00018187458498872914,
+ "loss": 1.8424736261367798,
+ "step": 2319
+ },
+ {
+ "epoch": 32.22299651567944,
+ "grad_norm": 0.06172594800591469,
+ "learning_rate": 0.00018163122480330433,
+ "loss": 1.8516032695770264,
+ "step": 2320
+ },
+ {
+ "epoch": 32.23693379790941,
+ "grad_norm": 0.06272125989198685,
+ "learning_rate": 0.00018138796240250955,
+ "loss": 1.8525536060333252,
+ "step": 2321
+ },
+ {
+ "epoch": 32.250871080139376,
+ "grad_norm": 0.06103010103106499,
+ "learning_rate": 0.00018114479798233686,
+ "loss": 1.8574954271316528,
+ "step": 2322
+ },
+ {
+ "epoch": 32.26480836236934,
+ "grad_norm": 0.061883945018053055,
+ "learning_rate": 0.00018090173173869939,
+ "loss": 1.8559205532073975,
+ "step": 2323
+ },
+ {
+ "epoch": 32.278745644599304,
+ "grad_norm": 0.06176813691854477,
+ "learning_rate": 0.00018065876386743143,
+ "loss": 1.8415580987930298,
+ "step": 2324
+ },
+ {
+ "epoch": 32.292682926829265,
+ "grad_norm": 0.059729915112257004,
+ "learning_rate": 0.00018041589456428754,
+ "loss": 1.8413065671920776,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30662020905923,
+ "grad_norm": 0.062042899429798126,
+ "learning_rate": 0.0001801731240249434,
+ "loss": 1.8559092283248901,
+ "step": 2326
+ },
+ {
+ "epoch": 32.3205574912892,
+ "grad_norm": 0.06083200126886368,
+ "learning_rate": 0.00017993045244499463,
+ "loss": 1.837567687034607,
+ "step": 2327
+ },
+ {
+ "epoch": 32.33449477351916,
+ "grad_norm": 0.060482755303382874,
+ "learning_rate": 0.00017968788001995742,
+ "loss": 1.853471279144287,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34843205574913,
+ "grad_norm": 0.06265296787023544,
+ "learning_rate": 0.000179445406945268,
+ "loss": 1.8431742191314697,
+ "step": 2329
+ },
+ {
+ "epoch": 32.362369337979096,
+ "grad_norm": 0.060122255235910416,
+ "learning_rate": 0.0001792030334162825,
+ "loss": 1.8470524549484253,
+ "step": 2330
+ },
+ {
+ "epoch": 32.37630662020906,
+ "grad_norm": 0.06117526814341545,
+ "learning_rate": 0.00017896075962827706,
+ "loss": 1.8635870218276978,
+ "step": 2331
+ },
+ {
+ "epoch": 32.390243902439025,
+ "grad_norm": 0.05970590561628342,
+ "learning_rate": 0.00017871858577644712,
+ "loss": 1.8443195819854736,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40418118466899,
+ "grad_norm": 0.06281629204750061,
+ "learning_rate": 0.0001784765120559078,
+ "loss": 1.8494038581848145,
+ "step": 2333
+ },
+ {
+ "epoch": 32.41811846689895,
+ "grad_norm": 0.06238580122590065,
+ "learning_rate": 0.00017823453866169355,
+ "loss": 1.8372313976287842,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43205574912892,
+ "grad_norm": 0.062138594686985016,
+ "learning_rate": 0.00017799266578875808,
+ "loss": 1.8546266555786133,
+ "step": 2335
+ },
+ {
+ "epoch": 32.44599303135889,
+ "grad_norm": 0.06474311649799347,
+ "learning_rate": 0.00017775089363197371,
+ "loss": 1.8548964262008667,
+ "step": 2336
+ },
+ {
+ "epoch": 32.45993031358885,
+ "grad_norm": 0.061230190098285675,
+ "learning_rate": 0.00017750922238613198,
+ "loss": 1.8663136959075928,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47386759581882,
+ "grad_norm": 0.06422504782676697,
+ "learning_rate": 0.00017726765224594342,
+ "loss": 1.8415696620941162,
+ "step": 2338
+ },
+ {
+ "epoch": 32.48780487804878,
+ "grad_norm": 0.061609867960214615,
+ "learning_rate": 0.0001770261834060363,
+ "loss": 1.8407015800476074,
+ "step": 2339
+ },
+ {
+ "epoch": 32.501742160278745,
+ "grad_norm": 0.06351736187934875,
+ "learning_rate": 0.00017678481606095786,
+ "loss": 1.8690993785858154,
+ "step": 2340
+ },
+ {
+ "epoch": 32.51567944250871,
+ "grad_norm": 0.06250591576099396,
+ "learning_rate": 0.0001765435504051734,
+ "loss": 1.8602087497711182,
+ "step": 2341
+ },
+ {
+ "epoch": 32.52961672473867,
+ "grad_norm": 0.0634881779551506,
+ "learning_rate": 0.0001763023866330664,
+ "loss": 1.8532803058624268,
+ "step": 2342
+ },
+ {
+ "epoch": 32.54355400696864,
+ "grad_norm": 0.06350140273571014,
+ "learning_rate": 0.00017606132493893793,
+ "loss": 1.8563673496246338,
+ "step": 2343
+ },
+ {
+ "epoch": 32.55749128919861,
+ "grad_norm": 0.0628136470913887,
+ "learning_rate": 0.00017582036551700724,
+ "loss": 1.8458285331726074,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57142857142857,
+ "grad_norm": 0.061659421771764755,
+ "learning_rate": 0.00017557950856141085,
+ "loss": 1.8418179750442505,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58536585365854,
+ "grad_norm": 0.06315319985151291,
+ "learning_rate": 0.00017533875426620286,
+ "loss": 1.8524972200393677,
+ "step": 2346
+ },
+ {
+ "epoch": 32.599303135888505,
+ "grad_norm": 0.06313202530145645,
+ "learning_rate": 0.00017509810282535497,
+ "loss": 1.8697175979614258,
+ "step": 2347
+ },
+ {
+ "epoch": 32.613240418118465,
+ "grad_norm": 0.06376877427101135,
+ "learning_rate": 0.00017485755443275513,
+ "loss": 1.8543388843536377,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62717770034843,
+ "grad_norm": 0.06332594901323318,
+ "learning_rate": 0.0001746171092822094,
+ "loss": 1.8648786544799805,
+ "step": 2349
+ },
+ {
+ "epoch": 32.641114982578394,
+ "grad_norm": 0.06469792127609253,
+ "learning_rate": 0.00017437676756743974,
+ "loss": 1.8419265747070312,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65505226480836,
+ "grad_norm": 0.061898306012153625,
+ "learning_rate": 0.00017413652948208524,
+ "loss": 1.851563811302185,
+ "step": 2351
+ },
+ {
+ "epoch": 32.66898954703833,
+ "grad_norm": 0.06442069262266159,
+ "learning_rate": 0.00017389639521970136,
+ "loss": 1.8633778095245361,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68292682926829,
+ "grad_norm": 0.06396457552909851,
+ "learning_rate": 0.00017365636497376004,
+ "loss": 1.8566405773162842,
+ "step": 2353
+ },
+ {
+ "epoch": 32.69686411149826,
+ "grad_norm": 0.06507355719804764,
+ "learning_rate": 0.00017341643893764927,
+ "loss": 1.8515483140945435,
+ "step": 2354
+ },
+ {
+ "epoch": 32.710801393728225,
+ "grad_norm": 0.06362279504537582,
+ "learning_rate": 0.000173176617304673,
+ "loss": 1.8504688739776611,
+ "step": 2355
+ },
+ {
+ "epoch": 32.724738675958186,
+ "grad_norm": 0.06472098082304001,
+ "learning_rate": 0.00017293690026805124,
+ "loss": 1.8664718866348267,
+ "step": 2356
+ },
+ {
+ "epoch": 32.73867595818815,
+ "grad_norm": 0.06595539301633835,
+ "learning_rate": 0.00017269728802091975,
+ "loss": 1.85841703414917,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75261324041812,
+ "grad_norm": 0.06441406160593033,
+ "learning_rate": 0.00017245778075632975,
+ "loss": 1.8595399856567383,
+ "step": 2358
+ },
+ {
+ "epoch": 32.76655052264808,
+ "grad_norm": 0.06528541445732117,
+ "learning_rate": 0.00017221837866724792,
+ "loss": 1.8631956577301025,
+ "step": 2359
+ },
+ {
+ "epoch": 32.78048780487805,
+ "grad_norm": 0.06445346027612686,
+ "learning_rate": 0.00017197908194655615,
+ "loss": 1.8592196702957153,
+ "step": 2360
+ },
+ {
+ "epoch": 32.79442508710802,
+ "grad_norm": 0.06681986898183823,
+ "learning_rate": 0.00017173989078705175,
+ "loss": 1.8577229976654053,
+ "step": 2361
+ },
+ {
+ "epoch": 32.80836236933798,
+ "grad_norm": 0.06391933560371399,
+ "learning_rate": 0.0001715008053814463,
+ "loss": 1.8735485076904297,
+ "step": 2362
+ },
+ {
+ "epoch": 32.822299651567945,
+ "grad_norm": 0.06460464745759964,
+ "learning_rate": 0.00017126182592236682,
+ "loss": 1.8651924133300781,
+ "step": 2363
+ },
+ {
+ "epoch": 32.836236933797906,
+ "grad_norm": 0.06430543959140778,
+ "learning_rate": 0.00017102295260235472,
+ "loss": 1.8450695276260376,
+ "step": 2364
+ },
+ {
+ "epoch": 32.850174216027874,
+ "grad_norm": 0.0646093487739563,
+ "learning_rate": 0.0001707841856138659,
+ "loss": 1.865610122680664,
+ "step": 2365
+ },
+ {
+ "epoch": 32.86411149825784,
+ "grad_norm": 0.06532672047615051,
+ "learning_rate": 0.00017054552514927061,
+ "loss": 1.8587243556976318,
+ "step": 2366
+ },
+ {
+ "epoch": 32.8780487804878,
+ "grad_norm": 0.06643696129322052,
+ "learning_rate": 0.00017030697140085334,
+ "loss": 1.8772244453430176,
+ "step": 2367
+ },
+ {
+ "epoch": 32.89198606271777,
+ "grad_norm": 0.06484723091125488,
+ "learning_rate": 0.0001700685245608126,
+ "loss": 1.8686251640319824,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90592334494774,
+ "grad_norm": 0.06564180552959442,
+ "learning_rate": 0.00016983018482126047,
+ "loss": 1.8513834476470947,
+ "step": 2369
+ },
+ {
+ "epoch": 32.9198606271777,
+ "grad_norm": 0.06441337615251541,
+ "learning_rate": 0.00016959195237422305,
+ "loss": 1.8773045539855957,
+ "step": 2370
+ },
+ {
+ "epoch": 32.933797909407666,
+ "grad_norm": 0.06720676273107529,
+ "learning_rate": 0.00016935382741164,
+ "loss": 1.8712348937988281,
+ "step": 2371
+ },
+ {
+ "epoch": 32.94773519163763,
+ "grad_norm": 0.06504860520362854,
+ "learning_rate": 0.00016911581012536424,
+ "loss": 1.8732126951217651,
+ "step": 2372
+ },
+ {
+ "epoch": 32.961672473867594,
+ "grad_norm": 0.0659131333231926,
+ "learning_rate": 0.0001688779007071622,
+ "loss": 1.858228325843811,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97560975609756,
+ "grad_norm": 0.06513261049985886,
+ "learning_rate": 0.00016864009934871275,
+ "loss": 1.8600943088531494,
+ "step": 2374
+ },
+ {
+ "epoch": 32.98954703832753,
+ "grad_norm": 0.06422273069620132,
+ "learning_rate": 0.0001684024062416087,
+ "loss": 1.864603042602539,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.055188730359077454,
+ "learning_rate": 0.0001681648215773546,
+ "loss": 1.3973428010940552,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 0.6440953612327576,
+ "eval_runtime": 42.5396,
+ "eval_samples_per_second": 57.405,
+ "eval_steps_per_second": 0.47,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01393728222997,
+ "grad_norm": 0.058126285672187805,
+ "learning_rate": 0.0001679273455473684,
+ "loss": 1.8378994464874268,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02787456445993,
+ "grad_norm": 0.06061682105064392,
+ "learning_rate": 0.0001676899783429802,
+ "loss": 1.8208311796188354,
+ "step": 2378
+ },
+ {
+ "epoch": 33.041811846689896,
+ "grad_norm": 0.0603339746594429,
+ "learning_rate": 0.00016745272015543242,
+ "loss": 1.823789119720459,
+ "step": 2379
+ },
+ {
+ "epoch": 33.055749128919864,
+ "grad_norm": 0.06169679015874863,
+ "learning_rate": 0.0001672155711758799,
+ "loss": 1.8269317150115967,
+ "step": 2380
+ },
+ {
+ "epoch": 33.069686411149824,
+ "grad_norm": 0.0586705207824707,
+ "learning_rate": 0.00016697853159538896,
+ "loss": 1.847499132156372,
+ "step": 2381
+ },
+ {
+ "epoch": 33.08362369337979,
+ "grad_norm": 0.06207786127924919,
+ "learning_rate": 0.0001667416016049383,
+ "loss": 1.8290098905563354,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09756097560975,
+ "grad_norm": 0.05864856019616127,
+ "learning_rate": 0.0001665047813954181,
+ "loss": 1.8500827550888062,
+ "step": 2383
+ },
+ {
+ "epoch": 33.11149825783972,
+ "grad_norm": 0.058817241340875626,
+ "learning_rate": 0.00016626807115763023,
+ "loss": 1.8350820541381836,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12543554006969,
+ "grad_norm": 0.060937561094760895,
+ "learning_rate": 0.00016603147108228754,
+ "loss": 1.8292570114135742,
+ "step": 2385
+ },
+ {
+ "epoch": 33.13937282229965,
+ "grad_norm": 0.06049133092164993,
+ "learning_rate": 0.00016579498136001485,
+ "loss": 1.8366070985794067,
+ "step": 2386
+ },
+ {
+ "epoch": 33.153310104529616,
+ "grad_norm": 0.06166869029402733,
+ "learning_rate": 0.00016555860218134738,
+ "loss": 1.8381221294403076,
+ "step": 2387
+ },
+ {
+ "epoch": 33.167247386759584,
+ "grad_norm": 0.05990896746516228,
+ "learning_rate": 0.00016532233373673164,
+ "loss": 1.8373796939849854,
+ "step": 2388
+ },
+ {
+ "epoch": 33.181184668989545,
+ "grad_norm": 0.060654930770397186,
+ "learning_rate": 0.00016508617621652488,
+ "loss": 1.8394211530685425,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19512195121951,
+ "grad_norm": 0.0603005588054657,
+ "learning_rate": 0.00016485012981099488,
+ "loss": 1.8226966857910156,
+ "step": 2390
+ },
+ {
+ "epoch": 33.20905923344948,
+ "grad_norm": 0.06139668822288513,
+ "learning_rate": 0.0001646141947103201,
+ "loss": 1.8316700458526611,
+ "step": 2391
+ },
+ {
+ "epoch": 33.22299651567944,
+ "grad_norm": 0.06096554547548294,
+ "learning_rate": 0.0001643783711045889,
+ "loss": 1.847790241241455,
+ "step": 2392
+ },
+ {
+ "epoch": 33.23693379790941,
+ "grad_norm": 0.06046409532427788,
+ "learning_rate": 0.0001641426591838005,
+ "loss": 1.8410671949386597,
+ "step": 2393
+ },
+ {
+ "epoch": 33.250871080139376,
+ "grad_norm": 0.060197826474905014,
+ "learning_rate": 0.00016390705913786344,
+ "loss": 1.8428468704223633,
+ "step": 2394
+ },
+ {
+ "epoch": 33.26480836236934,
+ "grad_norm": 0.058461710810661316,
+ "learning_rate": 0.00016367157115659646,
+ "loss": 1.841080665588379,
+ "step": 2395
+ },
+ {
+ "epoch": 33.278745644599304,
+ "grad_norm": 0.0600469708442688,
+ "learning_rate": 0.00016343619542972808,
+ "loss": 1.8265113830566406,
+ "step": 2396
+ },
+ {
+ "epoch": 33.292682926829265,
+ "grad_norm": 0.05934802442789078,
+ "learning_rate": 0.0001632009321468962,
+ "loss": 1.8448898792266846,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30662020905923,
+ "grad_norm": 0.060389988124370575,
+ "learning_rate": 0.00016296578149764833,
+ "loss": 1.8332173824310303,
+ "step": 2398
+ },
+ {
+ "epoch": 33.3205574912892,
+ "grad_norm": 0.05980642884969711,
+ "learning_rate": 0.00016273074367144087,
+ "loss": 1.84235417842865,
+ "step": 2399
+ },
+ {
+ "epoch": 33.33449477351916,
+ "grad_norm": 0.06064719706773758,
+ "learning_rate": 0.00016249581885763968,
+ "loss": 1.83778715133667,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34843205574913,
+ "grad_norm": 0.060422275215387344,
+ "learning_rate": 0.0001622610072455194,
+ "loss": 1.836384654045105,
+ "step": 2401
+ },
+ {
+ "epoch": 33.362369337979096,
+ "grad_norm": 0.06085652485489845,
+ "learning_rate": 0.00016202630902426355,
+ "loss": 1.8299217224121094,
+ "step": 2402
+ },
+ {
+ "epoch": 33.37630662020906,
+ "grad_norm": 0.06078358739614487,
+ "learning_rate": 0.00016179172438296423,
+ "loss": 1.8527088165283203,
+ "step": 2403
+ },
+ {
+ "epoch": 33.390243902439025,
+ "grad_norm": 0.06237566098570824,
+ "learning_rate": 0.00016155725351062205,
+ "loss": 1.8342247009277344,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40418118466899,
+ "grad_norm": 0.06274822354316711,
+ "learning_rate": 0.00016132289659614605,
+ "loss": 1.8272922039031982,
+ "step": 2405
+ },
+ {
+ "epoch": 33.41811846689895,
+ "grad_norm": 0.06164759397506714,
+ "learning_rate": 0.00016108865382835318,
+ "loss": 1.8365296125411987,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43205574912892,
+ "grad_norm": 0.06274817883968353,
+ "learning_rate": 0.00016085452539596864,
+ "loss": 1.8382642269134521,
+ "step": 2407
+ },
+ {
+ "epoch": 33.44599303135889,
+ "grad_norm": 0.06088731437921524,
+ "learning_rate": 0.0001606205114876256,
+ "loss": 1.8406622409820557,
+ "step": 2408
+ },
+ {
+ "epoch": 33.45993031358885,
+ "grad_norm": 0.06455288827419281,
+ "learning_rate": 0.00016038661229186472,
+ "loss": 1.833195447921753,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47386759581882,
+ "grad_norm": 0.061410367488861084,
+ "learning_rate": 0.00016015282799713453,
+ "loss": 1.830909252166748,
+ "step": 2410
+ },
+ {
+ "epoch": 33.48780487804878,
+ "grad_norm": 0.06312009692192078,
+ "learning_rate": 0.0001599191587917905,
+ "loss": 1.839772343635559,
+ "step": 2411
+ },
+ {
+ "epoch": 33.501742160278745,
+ "grad_norm": 0.06414929777383804,
+ "learning_rate": 0.0001596856048640961,
+ "loss": 1.8574250936508179,
+ "step": 2412
+ },
+ {
+ "epoch": 33.51567944250871,
+ "grad_norm": 0.06299755722284317,
+ "learning_rate": 0.00015945216640222116,
+ "loss": 1.8385207653045654,
+ "step": 2413
+ },
+ {
+ "epoch": 33.52961672473867,
+ "grad_norm": 0.06244301423430443,
+ "learning_rate": 0.000159218843594243,
+ "loss": 1.845157265663147,
+ "step": 2414
+ },
+ {
+ "epoch": 33.54355400696864,
+ "grad_norm": 0.06268925219774246,
+ "learning_rate": 0.0001589856366281455,
+ "loss": 1.8225502967834473,
+ "step": 2415
+ },
+ {
+ "epoch": 33.55749128919861,
+ "grad_norm": 0.06370935589075089,
+ "learning_rate": 0.0001587525456918194,
+ "loss": 1.8363447189331055,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57142857142857,
+ "grad_norm": 0.06543995440006256,
+ "learning_rate": 0.0001585195709730619,
+ "loss": 1.833327293395996,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58536585365854,
+ "grad_norm": 0.06178088113665581,
+ "learning_rate": 0.00015828671265957623,
+ "loss": 1.8498637676239014,
+ "step": 2418
+ },
+ {
+ "epoch": 33.599303135888505,
+ "grad_norm": 0.06223836913704872,
+ "learning_rate": 0.00015805397093897255,
+ "loss": 1.838489294052124,
+ "step": 2419
+ },
+ {
+ "epoch": 33.613240418118465,
+ "grad_norm": 0.06262598931789398,
+ "learning_rate": 0.00015782134599876633,
+ "loss": 1.8468639850616455,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62717770034843,
+ "grad_norm": 0.06392983347177505,
+ "learning_rate": 0.00015758883802637953,
+ "loss": 1.8385651111602783,
+ "step": 2421
+ },
+ {
+ "epoch": 33.641114982578394,
+ "grad_norm": 0.06200742349028587,
+ "learning_rate": 0.00015735644720913923,
+ "loss": 1.8447084426879883,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65505226480836,
+ "grad_norm": 0.06597801297903061,
+ "learning_rate": 0.00015712417373427897,
+ "loss": 1.8448331356048584,
+ "step": 2423
+ },
+ {
+ "epoch": 33.66898954703833,
+ "grad_norm": 0.06509242206811905,
+ "learning_rate": 0.00015689201778893713,
+ "loss": 1.853779911994934,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68292682926829,
+ "grad_norm": 0.06515370309352875,
+ "learning_rate": 0.00015665997956015743,
+ "loss": 1.8492741584777832,
+ "step": 2425
+ },
+ {
+ "epoch": 33.69686411149826,
+ "grad_norm": 0.06344641745090485,
+ "learning_rate": 0.00015642805923488895,
+ "loss": 1.8240808248519897,
+ "step": 2426
+ },
+ {
+ "epoch": 33.710801393728225,
+ "grad_norm": 0.06296426057815552,
+ "learning_rate": 0.00015619625699998585,
+ "loss": 1.8452916145324707,
+ "step": 2427
+ },
+ {
+ "epoch": 33.724738675958186,
+ "grad_norm": 0.06552107632160187,
+ "learning_rate": 0.00015596457304220692,
+ "loss": 1.8414363861083984,
+ "step": 2428
+ },
+ {
+ "epoch": 33.73867595818815,
+ "grad_norm": 0.06322826445102692,
+ "learning_rate": 0.00015573300754821547,
+ "loss": 1.8490327596664429,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75261324041812,
+ "grad_norm": 0.06481730937957764,
+ "learning_rate": 0.00015550156070458002,
+ "loss": 1.8198773860931396,
+ "step": 2430
+ },
+ {
+ "epoch": 33.76655052264808,
+ "grad_norm": 0.06322740018367767,
+ "learning_rate": 0.0001552702326977731,
+ "loss": 1.8379902839660645,
+ "step": 2431
+ },
+ {
+ "epoch": 33.78048780487805,
+ "grad_norm": 0.0660315454006195,
+ "learning_rate": 0.00015503902371417122,
+ "loss": 1.8431508541107178,
+ "step": 2432
+ },
+ {
+ "epoch": 33.79442508710802,
+ "grad_norm": 0.06548485159873962,
+ "learning_rate": 0.00015480793394005547,
+ "loss": 1.8435306549072266,
+ "step": 2433
+ },
+ {
+ "epoch": 33.80836236933798,
+ "grad_norm": 0.0642753317952156,
+ "learning_rate": 0.0001545769635616107,
+ "loss": 1.8333635330200195,
+ "step": 2434
+ },
+ {
+ "epoch": 33.822299651567945,
+ "grad_norm": 0.06514805555343628,
+ "learning_rate": 0.0001543461127649256,
+ "loss": 1.860312819480896,
+ "step": 2435
+ },
+ {
+ "epoch": 33.836236933797906,
+ "grad_norm": 0.06455788016319275,
+ "learning_rate": 0.00015411538173599231,
+ "loss": 1.8513085842132568,
+ "step": 2436
+ },
+ {
+ "epoch": 33.850174216027874,
+ "grad_norm": 0.06607019901275635,
+ "learning_rate": 0.00015388477066070674,
+ "loss": 1.8457266092300415,
+ "step": 2437
+ },
+ {
+ "epoch": 33.86411149825784,
+ "grad_norm": 0.06435948610305786,
+ "learning_rate": 0.00015365427972486827,
+ "loss": 1.8381249904632568,
+ "step": 2438
+ },
+ {
+ "epoch": 33.8780487804878,
+ "grad_norm": 0.06571139395236969,
+ "learning_rate": 0.00015342390911417904,
+ "loss": 1.8319785594940186,
+ "step": 2439
+ },
+ {
+ "epoch": 33.89198606271777,
+ "grad_norm": 0.06674250215291977,
+ "learning_rate": 0.00015319365901424452,
+ "loss": 1.8493732213974,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90592334494774,
+ "grad_norm": 0.06501804292201996,
+ "learning_rate": 0.0001529635296105732,
+ "loss": 1.8349519968032837,
+ "step": 2441
+ },
+ {
+ "epoch": 33.9198606271777,
+ "grad_norm": 0.06749753654003143,
+ "learning_rate": 0.0001527335210885761,
+ "loss": 1.862501859664917,
+ "step": 2442
+ },
+ {
+ "epoch": 33.933797909407666,
+ "grad_norm": 0.06523770093917847,
+ "learning_rate": 0.00015250363363356685,
+ "loss": 1.84731125831604,
+ "step": 2443
+ },
+ {
+ "epoch": 33.94773519163763,
+ "grad_norm": 0.06762465834617615,
+ "learning_rate": 0.00015227386743076155,
+ "loss": 1.8576481342315674,
+ "step": 2444
+ },
+ {
+ "epoch": 33.961672473867594,
+ "grad_norm": 0.06551655381917953,
+ "learning_rate": 0.00015204422266527911,
+ "loss": 1.8472511768341064,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97560975609756,
+ "grad_norm": 0.06891904771327972,
+ "learning_rate": 0.00015181469952213968,
+ "loss": 1.8325382471084595,
+ "step": 2446
+ },
+ {
+ "epoch": 33.98954703832753,
+ "grad_norm": 0.06538119167089462,
+ "learning_rate": 0.0001515852981862663,
+ "loss": 1.8476707935333252,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.05324097350239754,
+ "learning_rate": 0.00015135601884248303,
+ "loss": 1.3832170963287354,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 0.6456387042999268,
+ "eval_runtime": 38.8493,
+ "eval_samples_per_second": 62.858,
+ "eval_steps_per_second": 0.515,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01393728222997,
+ "grad_norm": 0.061544593423604965,
+ "learning_rate": 0.0001511268616755166,
+ "loss": 1.8143833875656128,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02787456445993,
+ "grad_norm": 0.05995706468820572,
+ "learning_rate": 0.00015089782686999445,
+ "loss": 1.8281774520874023,
+ "step": 2450
+ },
+ {
+ "epoch": 34.041811846689896,
+ "grad_norm": 0.061882853507995605,
+ "learning_rate": 0.00015066891461044588,
+ "loss": 1.8186081647872925,
+ "step": 2451
+ },
+ {
+ "epoch": 34.055749128919864,
+ "grad_norm": 0.05911208316683769,
+ "learning_rate": 0.00015044012508130138,
+ "loss": 1.8171322345733643,
+ "step": 2452
+ },
+ {
+ "epoch": 34.069686411149824,
+ "grad_norm": 0.05762029439210892,
+ "learning_rate": 0.00015021145846689254,
+ "loss": 1.8289903402328491,
+ "step": 2453
+ },
+ {
+ "epoch": 34.08362369337979,
+ "grad_norm": 0.06098875030875206,
+ "learning_rate": 0.00014998291495145206,
+ "loss": 1.8244364261627197,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09756097560975,
+ "grad_norm": 0.060347780585289,
+ "learning_rate": 0.00014975449471911294,
+ "loss": 1.818152666091919,
+ "step": 2455
+ },
+ {
+ "epoch": 34.11149825783972,
+ "grad_norm": 0.06011926382780075,
+ "learning_rate": 0.0001495261979539097,
+ "loss": 1.8218905925750732,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12543554006969,
+ "grad_norm": 0.05958009883761406,
+ "learning_rate": 0.0001492980248397766,
+ "loss": 1.8378891944885254,
+ "step": 2457
+ },
+ {
+ "epoch": 34.13937282229965,
+ "grad_norm": 0.060227006673812866,
+ "learning_rate": 0.00014906997556054865,
+ "loss": 1.8179614543914795,
+ "step": 2458
+ },
+ {
+ "epoch": 34.153310104529616,
+ "grad_norm": 0.061011530458927155,
+ "learning_rate": 0.00014884205029996113,
+ "loss": 1.8247592449188232,
+ "step": 2459
+ },
+ {
+ "epoch": 34.167247386759584,
+ "grad_norm": 0.05921728536486626,
+ "learning_rate": 0.00014861424924164925,
+ "loss": 1.8255550861358643,
+ "step": 2460
+ },
+ {
+ "epoch": 34.181184668989545,
+ "grad_norm": 0.06191205978393555,
+ "learning_rate": 0.00014838657256914832,
+ "loss": 1.8160936832427979,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19512195121951,
+ "grad_norm": 0.05961717665195465,
+ "learning_rate": 0.0001481590204658931,
+ "loss": 1.7988860607147217,
+ "step": 2462
+ },
+ {
+ "epoch": 34.20905923344948,
+ "grad_norm": 0.06147215515375137,
+ "learning_rate": 0.00014793159311521833,
+ "loss": 1.8266009092330933,
+ "step": 2463
+ },
+ {
+ "epoch": 34.22299651567944,
+ "grad_norm": 0.05942768603563309,
+ "learning_rate": 0.00014770429070035812,
+ "loss": 1.8312751054763794,
+ "step": 2464
+ },
+ {
+ "epoch": 34.23693379790941,
+ "grad_norm": 0.060584649443626404,
+ "learning_rate": 0.00014747711340444601,
+ "loss": 1.822584629058838,
+ "step": 2465
+ },
+ {
+ "epoch": 34.250871080139376,
+ "grad_norm": 0.05929860472679138,
+ "learning_rate": 0.00014725006141051434,
+ "loss": 1.8148616552352905,
+ "step": 2466
+ },
+ {
+ "epoch": 34.26480836236934,
+ "grad_norm": 0.06036009266972542,
+ "learning_rate": 0.00014702313490149512,
+ "loss": 1.8295557498931885,
+ "step": 2467
+ },
+ {
+ "epoch": 34.278745644599304,
+ "grad_norm": 0.06171515956521034,
+ "learning_rate": 0.00014679633406021892,
+ "loss": 1.8145090341567993,
+ "step": 2468
+ },
+ {
+ "epoch": 34.292682926829265,
+ "grad_norm": 0.061903972178697586,
+ "learning_rate": 0.00014656965906941494,
+ "loss": 1.8265849351882935,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30662020905923,
+ "grad_norm": 0.06090715155005455,
+ "learning_rate": 0.00014634311011171112,
+ "loss": 1.8090901374816895,
+ "step": 2470
+ },
+ {
+ "epoch": 34.3205574912892,
+ "grad_norm": 0.060219816863536835,
+ "learning_rate": 0.00014611668736963396,
+ "loss": 1.8254625797271729,
+ "step": 2471
+ },
+ {
+ "epoch": 34.33449477351916,
+ "grad_norm": 0.06206131726503372,
+ "learning_rate": 0.00014589039102560822,
+ "loss": 1.831300139427185,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34843205574913,
+ "grad_norm": 0.06065662205219269,
+ "learning_rate": 0.00014566422126195656,
+ "loss": 1.8371552228927612,
+ "step": 2473
+ },
+ {
+ "epoch": 34.362369337979096,
+ "grad_norm": 0.061889007687568665,
+ "learning_rate": 0.00014543817826089992,
+ "loss": 1.8082828521728516,
+ "step": 2474
+ },
+ {
+ "epoch": 34.37630662020906,
+ "grad_norm": 0.05962798744440079,
+ "learning_rate": 0.0001452122622045574,
+ "loss": 1.8357537984848022,
+ "step": 2475
+ },
+ {
+ "epoch": 34.390243902439025,
+ "grad_norm": 0.06283676624298096,
+ "learning_rate": 0.00014498647327494506,
+ "loss": 1.8315505981445312,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40418118466899,
+ "grad_norm": 0.06130822002887726,
+ "learning_rate": 0.00014476081165397715,
+ "loss": 1.8286545276641846,
+ "step": 2477
+ },
+ {
+ "epoch": 34.41811846689895,
+ "grad_norm": 0.06045953929424286,
+ "learning_rate": 0.00014453527752346517,
+ "loss": 1.8219239711761475,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43205574912892,
+ "grad_norm": 0.06052744388580322,
+ "learning_rate": 0.00014430987106511795,
+ "loss": 1.8232624530792236,
+ "step": 2479
+ },
+ {
+ "epoch": 34.44599303135889,
+ "grad_norm": 0.06020310893654823,
+ "learning_rate": 0.00014408459246054126,
+ "loss": 1.833443522453308,
+ "step": 2480
+ },
+ {
+ "epoch": 34.45993031358885,
+ "grad_norm": 0.0614689365029335,
+ "learning_rate": 0.00014385944189123794,
+ "loss": 1.8213250637054443,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47386759581882,
+ "grad_norm": 0.06148214265704155,
+ "learning_rate": 0.00014363441953860805,
+ "loss": 1.8208796977996826,
+ "step": 2482
+ },
+ {
+ "epoch": 34.48780487804878,
+ "grad_norm": 0.061143435537815094,
+ "learning_rate": 0.00014340952558394778,
+ "loss": 1.8060634136199951,
+ "step": 2483
+ },
+ {
+ "epoch": 34.501742160278745,
+ "grad_norm": 0.06256826967000961,
+ "learning_rate": 0.00014318476020845018,
+ "loss": 1.8441283702850342,
+ "step": 2484
+ },
+ {
+ "epoch": 34.51567944250871,
+ "grad_norm": 0.06325773149728775,
+ "learning_rate": 0.0001429601235932047,
+ "loss": 1.8289194107055664,
+ "step": 2485
+ },
+ {
+ "epoch": 34.52961672473867,
+ "grad_norm": 0.06207616627216339,
+ "learning_rate": 0.00014273561591919705,
+ "loss": 1.8226757049560547,
+ "step": 2486
+ },
+ {
+ "epoch": 34.54355400696864,
+ "grad_norm": 0.062450069934129715,
+ "learning_rate": 0.00014251123736730884,
+ "loss": 1.8158135414123535,
+ "step": 2487
+ },
+ {
+ "epoch": 34.55749128919861,
+ "grad_norm": 0.06260907649993896,
+ "learning_rate": 0.00014228698811831787,
+ "loss": 1.8142571449279785,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57142857142857,
+ "grad_norm": 0.0641574040055275,
+ "learning_rate": 0.0001420628683528978,
+ "loss": 1.8269929885864258,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58536585365854,
+ "grad_norm": 0.06434120237827301,
+ "learning_rate": 0.00014183887825161779,
+ "loss": 1.8375412225723267,
+ "step": 2490
+ },
+ {
+ "epoch": 34.599303135888505,
+ "grad_norm": 0.06156579405069351,
+ "learning_rate": 0.0001416150179949428,
+ "loss": 1.8158376216888428,
+ "step": 2491
+ },
+ {
+ "epoch": 34.613240418118465,
+ "grad_norm": 0.06551021337509155,
+ "learning_rate": 0.0001413912877632326,
+ "loss": 1.8365397453308105,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62717770034843,
+ "grad_norm": 0.06178220361471176,
+ "learning_rate": 0.00014116768773674306,
+ "loss": 1.8288542032241821,
+ "step": 2493
+ },
+ {
+ "epoch": 34.641114982578394,
+ "grad_norm": 0.06431970000267029,
+ "learning_rate": 0.00014094421809562438,
+ "loss": 1.8176591396331787,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65505226480836,
+ "grad_norm": 0.06383472681045532,
+ "learning_rate": 0.00014072087901992209,
+ "loss": 1.8409924507141113,
+ "step": 2495
+ },
+ {
+ "epoch": 34.66898954703833,
+ "grad_norm": 0.06315146386623383,
+ "learning_rate": 0.00014049767068957645,
+ "loss": 1.8267871141433716,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68292682926829,
+ "grad_norm": 0.06440278142690659,
+ "learning_rate": 0.00014027459328442242,
+ "loss": 1.8300566673278809,
+ "step": 2497
+ },
+ {
+ "epoch": 34.69686411149826,
+ "grad_norm": 0.06525930017232895,
+ "learning_rate": 0.00014005164698418948,
+ "loss": 1.831039309501648,
+ "step": 2498
+ },
+ {
+ "epoch": 34.710801393728225,
+ "grad_norm": 0.06240379810333252,
+ "learning_rate": 0.0001398288319685013,
+ "loss": 1.8204154968261719,
+ "step": 2499
+ },
+ {
+ "epoch": 34.724738675958186,
+ "grad_norm": 0.06432971358299255,
+ "learning_rate": 0.00013960614841687595,
+ "loss": 1.826758861541748,
+ "step": 2500
+ },
+ {
+ "epoch": 34.73867595818815,
+ "grad_norm": 0.06324490159749985,
+ "learning_rate": 0.00013938359650872558,
+ "loss": 1.8415192365646362,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75261324041812,
+ "grad_norm": 0.06293605268001556,
+ "learning_rate": 0.00013916117642335623,
+ "loss": 1.821230411529541,
+ "step": 2502
+ },
+ {
+ "epoch": 34.76655052264808,
+ "grad_norm": 0.0630170926451683,
+ "learning_rate": 0.00013893888833996774,
+ "loss": 1.8322150707244873,
+ "step": 2503
+ },
+ {
+ "epoch": 34.78048780487805,
+ "grad_norm": 0.06433390080928802,
+ "learning_rate": 0.00013871673243765362,
+ "loss": 1.8215436935424805,
+ "step": 2504
+ },
+ {
+ "epoch": 34.79442508710802,
+ "grad_norm": 0.06179378926753998,
+ "learning_rate": 0.00013849470889540098,
+ "loss": 1.8321993350982666,
+ "step": 2505
+ },
+ {
+ "epoch": 34.80836236933798,
+ "grad_norm": 0.06337333470582962,
+ "learning_rate": 0.00013827281789208996,
+ "loss": 1.8214612007141113,
+ "step": 2506
+ },
+ {
+ "epoch": 34.822299651567945,
+ "grad_norm": 0.06581414490938187,
+ "learning_rate": 0.00013805105960649423,
+ "loss": 1.8380327224731445,
+ "step": 2507
+ },
+ {
+ "epoch": 34.836236933797906,
+ "grad_norm": 0.06505398452281952,
+ "learning_rate": 0.00013782943421728042,
+ "loss": 1.8323636054992676,
+ "step": 2508
+ },
+ {
+ "epoch": 34.850174216027874,
+ "grad_norm": 0.06261361390352249,
+ "learning_rate": 0.00013760794190300827,
+ "loss": 1.831121802330017,
+ "step": 2509
+ },
+ {
+ "epoch": 34.86411149825784,
+ "grad_norm": 0.06420202553272247,
+ "learning_rate": 0.00013738658284212973,
+ "loss": 1.8330061435699463,
+ "step": 2510
+ },
+ {
+ "epoch": 34.8780487804878,
+ "grad_norm": 0.06349224597215652,
+ "learning_rate": 0.00013716535721299016,
+ "loss": 1.814126968383789,
+ "step": 2511
+ },
+ {
+ "epoch": 34.89198606271777,
+ "grad_norm": 0.06293212622404099,
+ "learning_rate": 0.0001369442651938271,
+ "loss": 1.8446499109268188,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90592334494774,
+ "grad_norm": 0.06229215860366821,
+ "learning_rate": 0.00013672330696277014,
+ "loss": 1.8318920135498047,
+ "step": 2513
+ },
+ {
+ "epoch": 34.9198606271777,
+ "grad_norm": 0.06438733637332916,
+ "learning_rate": 0.00013650248269784143,
+ "loss": 1.8189592361450195,
+ "step": 2514
+ },
+ {
+ "epoch": 34.933797909407666,
+ "grad_norm": 0.06267774105072021,
+ "learning_rate": 0.00013628179257695508,
+ "loss": 1.820225715637207,
+ "step": 2515
+ },
+ {
+ "epoch": 34.94773519163763,
+ "grad_norm": 0.06347840279340744,
+ "learning_rate": 0.00013606123677791727,
+ "loss": 1.8195691108703613,
+ "step": 2516
+ },
+ {
+ "epoch": 34.961672473867594,
+ "grad_norm": 0.06589125096797943,
+ "learning_rate": 0.00013584081547842565,
+ "loss": 1.8382142782211304,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97560975609756,
+ "grad_norm": 0.06349477916955948,
+ "learning_rate": 0.00013562052885606957,
+ "loss": 1.8295605182647705,
+ "step": 2518
+ },
+ {
+ "epoch": 34.98954703832753,
+ "grad_norm": 0.06603765487670898,
+ "learning_rate": 0.00013540037708833043,
+ "loss": 1.8189774751663208,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.05118570849299431,
+ "learning_rate": 0.00013518036035258012,
+ "loss": 1.362122654914856,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 0.6471332311630249,
+ "eval_runtime": 36.1587,
+ "eval_samples_per_second": 67.536,
+ "eval_steps_per_second": 0.553,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01393728222997,
+ "grad_norm": 0.05908126384019852,
+ "learning_rate": 0.0001349604788260823,
+ "loss": 1.8186755180358887,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02787456445993,
+ "grad_norm": 0.05910510569810867,
+ "learning_rate": 0.00013474073268599152,
+ "loss": 1.8013967275619507,
+ "step": 2522
+ },
+ {
+ "epoch": 35.041811846689896,
+ "grad_norm": 0.06132171303033829,
+ "learning_rate": 0.00013452112210935339,
+ "loss": 1.8142056465148926,
+ "step": 2523
+ },
+ {
+ "epoch": 35.055749128919864,
+ "grad_norm": 0.059230659157037735,
+ "learning_rate": 0.00013430164727310399,
+ "loss": 1.8110339641571045,
+ "step": 2524
+ },
+ {
+ "epoch": 35.069686411149824,
+ "grad_norm": 0.05766315385699272,
+ "learning_rate": 0.00013408230835407027,
+ "loss": 1.7982637882232666,
+ "step": 2525
+ },
+ {
+ "epoch": 35.08362369337979,
+ "grad_norm": 0.06095150113105774,
+ "learning_rate": 0.00013386310552896977,
+ "loss": 1.824556589126587,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09756097560975,
+ "grad_norm": 0.058827366679906845,
+ "learning_rate": 0.00013364403897441016,
+ "loss": 1.808304786682129,
+ "step": 2527
+ },
+ {
+ "epoch": 35.11149825783972,
+ "grad_norm": 0.05928879976272583,
+ "learning_rate": 0.00013342510886688944,
+ "loss": 1.7958316802978516,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12543554006969,
+ "grad_norm": 0.059650979936122894,
+ "learning_rate": 0.00013320631538279548,
+ "loss": 1.804734230041504,
+ "step": 2529
+ },
+ {
+ "epoch": 35.13937282229965,
+ "grad_norm": 0.059706125408411026,
+ "learning_rate": 0.00013298765869840658,
+ "loss": 1.7956255674362183,
+ "step": 2530
+ },
+ {
+ "epoch": 35.153310104529616,
+ "grad_norm": 0.059284109622240067,
+ "learning_rate": 0.00013276913898989013,
+ "loss": 1.8104126453399658,
+ "step": 2531
+ },
+ {
+ "epoch": 35.167247386759584,
+ "grad_norm": 0.05987285077571869,
+ "learning_rate": 0.00013255075643330369,
+ "loss": 1.810312032699585,
+ "step": 2532
+ },
+ {
+ "epoch": 35.181184668989545,
+ "grad_norm": 0.05983385443687439,
+ "learning_rate": 0.00013233251120459407,
+ "loss": 1.7978583574295044,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19512195121951,
+ "grad_norm": 0.060581255704164505,
+ "learning_rate": 0.0001321144034795976,
+ "loss": 1.8199656009674072,
+ "step": 2534
+ },
+ {
+ "epoch": 35.20905923344948,
+ "grad_norm": 0.05911708250641823,
+ "learning_rate": 0.00013189643343403977,
+ "loss": 1.7828130722045898,
+ "step": 2535
+ },
+ {
+ "epoch": 35.22299651567944,
+ "grad_norm": 0.05990540608763695,
+ "learning_rate": 0.00013167860124353476,
+ "loss": 1.8100059032440186,
+ "step": 2536
+ },
+ {
+ "epoch": 35.23693379790941,
+ "grad_norm": 0.05927145108580589,
+ "learning_rate": 0.00013146090708358657,
+ "loss": 1.8167325258255005,
+ "step": 2537
+ },
+ {
+ "epoch": 35.250871080139376,
+ "grad_norm": 0.059669725596904755,
+ "learning_rate": 0.00013124335112958704,
+ "loss": 1.798264503479004,
+ "step": 2538
+ },
+ {
+ "epoch": 35.26480836236934,
+ "grad_norm": 0.059786438941955566,
+ "learning_rate": 0.0001310259335568172,
+ "loss": 1.8132362365722656,
+ "step": 2539
+ },
+ {
+ "epoch": 35.278745644599304,
+ "grad_norm": 0.05904815346002579,
+ "learning_rate": 0.00013080865454044647,
+ "loss": 1.8083183765411377,
+ "step": 2540
+ },
+ {
+ "epoch": 35.292682926829265,
+ "grad_norm": 0.05894903466105461,
+ "learning_rate": 0.00013059151425553263,
+ "loss": 1.8152140378952026,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30662020905923,
+ "grad_norm": 0.0585809126496315,
+ "learning_rate": 0.00013037451287702183,
+ "loss": 1.8077661991119385,
+ "step": 2542
+ },
+ {
+ "epoch": 35.3205574912892,
+ "grad_norm": 0.0597865916788578,
+ "learning_rate": 0.0001301576505797479,
+ "loss": 1.8144145011901855,
+ "step": 2543
+ },
+ {
+ "epoch": 35.33449477351916,
+ "grad_norm": 0.05984620749950409,
+ "learning_rate": 0.00012994092753843293,
+ "loss": 1.832561731338501,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34843205574913,
+ "grad_norm": 0.06088831275701523,
+ "learning_rate": 0.00012972434392768687,
+ "loss": 1.8135924339294434,
+ "step": 2545
+ },
+ {
+ "epoch": 35.362369337979096,
+ "grad_norm": 0.060645680874586105,
+ "learning_rate": 0.00012950789992200714,
+ "loss": 1.8013677597045898,
+ "step": 2546
+ },
+ {
+ "epoch": 35.37630662020906,
+ "grad_norm": 0.061454515904188156,
+ "learning_rate": 0.00012929159569577886,
+ "loss": 1.8033697605133057,
+ "step": 2547
+ },
+ {
+ "epoch": 35.390243902439025,
+ "grad_norm": 0.060311950743198395,
+ "learning_rate": 0.0001290754314232743,
+ "loss": 1.802935242652893,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40418118466899,
+ "grad_norm": 0.0625360980629921,
+ "learning_rate": 0.00012885940727865334,
+ "loss": 1.81296968460083,
+ "step": 2549
+ },
+ {
+ "epoch": 35.41811846689895,
+ "grad_norm": 0.0601397305727005,
+ "learning_rate": 0.00012864352343596247,
+ "loss": 1.8226817846298218,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43205574912892,
+ "grad_norm": 0.06244158744812012,
+ "learning_rate": 0.0001284277800691355,
+ "loss": 1.80842924118042,
+ "step": 2551
+ },
+ {
+ "epoch": 35.44599303135889,
+ "grad_norm": 0.059840865433216095,
+ "learning_rate": 0.00012821217735199298,
+ "loss": 1.7954330444335938,
+ "step": 2552
+ },
+ {
+ "epoch": 35.45993031358885,
+ "grad_norm": 0.06193596497178078,
+ "learning_rate": 0.00012799671545824212,
+ "loss": 1.8132208585739136,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47386759581882,
+ "grad_norm": 0.0602298229932785,
+ "learning_rate": 0.0001277813945614768,
+ "loss": 1.810899257659912,
+ "step": 2554
+ },
+ {
+ "epoch": 35.48780487804878,
+ "grad_norm": 0.06307514756917953,
+ "learning_rate": 0.00012756621483517682,
+ "loss": 1.8087718486785889,
+ "step": 2555
+ },
+ {
+ "epoch": 35.501742160278745,
+ "grad_norm": 0.062002021819353104,
+ "learning_rate": 0.00012735117645270905,
+ "loss": 1.8076088428497314,
+ "step": 2556
+ },
+ {
+ "epoch": 35.51567944250871,
+ "grad_norm": 0.0628097876906395,
+ "learning_rate": 0.00012713627958732567,
+ "loss": 1.8090249300003052,
+ "step": 2557
+ },
+ {
+ "epoch": 35.52961672473867,
+ "grad_norm": 0.06274416297674179,
+ "learning_rate": 0.00012692152441216539,
+ "loss": 1.8050616979599,
+ "step": 2558
+ },
+ {
+ "epoch": 35.54355400696864,
+ "grad_norm": 0.06155693158507347,
+ "learning_rate": 0.0001267069111002525,
+ "loss": 1.8042300939559937,
+ "step": 2559
+ },
+ {
+ "epoch": 35.55749128919861,
+ "grad_norm": 0.0613880380988121,
+ "learning_rate": 0.00012649243982449718,
+ "loss": 1.8077136278152466,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57142857142857,
+ "grad_norm": 0.06365271657705307,
+ "learning_rate": 0.00012627811075769502,
+ "loss": 1.8172948360443115,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58536585365854,
+ "grad_norm": 0.05991367623209953,
+ "learning_rate": 0.00012606392407252687,
+ "loss": 1.8168929815292358,
+ "step": 2562
+ },
+ {
+ "epoch": 35.599303135888505,
+ "grad_norm": 0.06306611746549606,
+ "learning_rate": 0.00012584987994155943,
+ "loss": 1.800689458847046,
+ "step": 2563
+ },
+ {
+ "epoch": 35.613240418118465,
+ "grad_norm": 0.06204739212989807,
+ "learning_rate": 0.00012563597853724388,
+ "loss": 1.8148365020751953,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62717770034843,
+ "grad_norm": 0.06187354400753975,
+ "learning_rate": 0.000125422220031917,
+ "loss": 1.825568675994873,
+ "step": 2565
+ },
+ {
+ "epoch": 35.641114982578394,
+ "grad_norm": 0.0630321055650711,
+ "learning_rate": 0.00012520860459779972,
+ "loss": 1.8002240657806396,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65505226480836,
+ "grad_norm": 0.06260699778795242,
+ "learning_rate": 0.0001249951324069986,
+ "loss": 1.793284296989441,
+ "step": 2567
+ },
+ {
+ "epoch": 35.66898954703833,
+ "grad_norm": 0.06165624037384987,
+ "learning_rate": 0.0001247818036315042,
+ "loss": 1.8106274604797363,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68292682926829,
+ "grad_norm": 0.06291734427213669,
+ "learning_rate": 0.00012456861844319155,
+ "loss": 1.802643895149231,
+ "step": 2569
+ },
+ {
+ "epoch": 35.69686411149826,
+ "grad_norm": 0.06160290911793709,
+ "learning_rate": 0.00012435557701382012,
+ "loss": 1.815314769744873,
+ "step": 2570
+ },
+ {
+ "epoch": 35.710801393728225,
+ "grad_norm": 0.06180083751678467,
+ "learning_rate": 0.0001241426795150336,
+ "loss": 1.805253267288208,
+ "step": 2571
+ },
+ {
+ "epoch": 35.724738675958186,
+ "grad_norm": 0.06322845816612244,
+ "learning_rate": 0.00012392992611835973,
+ "loss": 1.8169267177581787,
+ "step": 2572
+ },
+ {
+ "epoch": 35.73867595818815,
+ "grad_norm": 0.06337283551692963,
+ "learning_rate": 0.0001237173169952098,
+ "loss": 1.8248480558395386,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75261324041812,
+ "grad_norm": 0.06179392337799072,
+ "learning_rate": 0.00012350485231687954,
+ "loss": 1.8105932474136353,
+ "step": 2574
+ },
+ {
+ "epoch": 35.76655052264808,
+ "grad_norm": 0.06336724758148193,
+ "learning_rate": 0.0001232925322545476,
+ "loss": 1.821605920791626,
+ "step": 2575
+ },
+ {
+ "epoch": 35.78048780487805,
+ "grad_norm": 0.06384433060884476,
+ "learning_rate": 0.0001230803569792765,
+ "loss": 1.811798095703125,
+ "step": 2576
+ },
+ {
+ "epoch": 35.79442508710802,
+ "grad_norm": 0.06201609596610069,
+ "learning_rate": 0.0001228683266620121,
+ "loss": 1.8091926574707031,
+ "step": 2577
+ },
+ {
+ "epoch": 35.80836236933798,
+ "grad_norm": 0.06306285411119461,
+ "learning_rate": 0.00012265644147358326,
+ "loss": 1.819336175918579,
+ "step": 2578
+ },
+ {
+ "epoch": 35.822299651567945,
+ "grad_norm": 0.06383267790079117,
+ "learning_rate": 0.00012244470158470226,
+ "loss": 1.811619758605957,
+ "step": 2579
+ },
+ {
+ "epoch": 35.836236933797906,
+ "grad_norm": 0.06499970704317093,
+ "learning_rate": 0.00012223310716596387,
+ "loss": 1.8192344903945923,
+ "step": 2580
+ },
+ {
+ "epoch": 35.850174216027874,
+ "grad_norm": 0.06270603090524673,
+ "learning_rate": 0.00012202165838784601,
+ "loss": 1.8236922025680542,
+ "step": 2581
+ },
+ {
+ "epoch": 35.86411149825784,
+ "grad_norm": 0.06357081979513168,
+ "learning_rate": 0.00012181035542070913,
+ "loss": 1.8269872665405273,
+ "step": 2582
+ },
+ {
+ "epoch": 35.8780487804878,
+ "grad_norm": 0.06423989683389664,
+ "learning_rate": 0.00012159919843479617,
+ "loss": 1.8102588653564453,
+ "step": 2583
+ },
+ {
+ "epoch": 35.89198606271777,
+ "grad_norm": 0.06423227488994598,
+ "learning_rate": 0.00012138818760023257,
+ "loss": 1.8166489601135254,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90592334494774,
+ "grad_norm": 0.06358758360147476,
+ "learning_rate": 0.00012117732308702592,
+ "loss": 1.8135144710540771,
+ "step": 2585
+ },
+ {
+ "epoch": 35.9198606271777,
+ "grad_norm": 0.06234103813767433,
+ "learning_rate": 0.00012096660506506605,
+ "loss": 1.8288500308990479,
+ "step": 2586
+ },
+ {
+ "epoch": 35.933797909407666,
+ "grad_norm": 0.06331966072320938,
+ "learning_rate": 0.00012075603370412443,
+ "loss": 1.819105863571167,
+ "step": 2587
+ },
+ {
+ "epoch": 35.94773519163763,
+ "grad_norm": 0.06391844153404236,
+ "learning_rate": 0.00012054560917385476,
+ "loss": 1.8120977878570557,
+ "step": 2588
+ },
+ {
+ "epoch": 35.961672473867594,
+ "grad_norm": 0.06310919672250748,
+ "learning_rate": 0.00012033533164379225,
+ "loss": 1.8364615440368652,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97560975609756,
+ "grad_norm": 0.06485587358474731,
+ "learning_rate": 0.0001201252012833537,
+ "loss": 1.8377125263214111,
+ "step": 2590
+ },
+ {
+ "epoch": 35.98954703832753,
+ "grad_norm": 0.06357129663228989,
+ "learning_rate": 0.00011991521826183747,
+ "loss": 1.813971757888794,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.05116669833660126,
+ "learning_rate": 0.00011970538274842282,
+ "loss": 1.3662359714508057,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 0.6488010287284851,
+ "eval_runtime": 38.1237,
+ "eval_samples_per_second": 64.055,
+ "eval_steps_per_second": 0.525,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01393728222997,
+ "grad_norm": 0.058273524045944214,
+ "learning_rate": 0.00011949569491217073,
+ "loss": 1.7912993431091309,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02787456445993,
+ "grad_norm": 0.05773903802037239,
+ "learning_rate": 0.00011928615492202269,
+ "loss": 1.7948570251464844,
+ "step": 2594
+ },
+ {
+ "epoch": 36.041811846689896,
+ "grad_norm": 0.05757457762956619,
+ "learning_rate": 0.0001190767629468014,
+ "loss": 1.8028143644332886,
+ "step": 2595
+ },
+ {
+ "epoch": 36.055749128919864,
+ "grad_norm": 0.058159105479717255,
+ "learning_rate": 0.00011886751915521007,
+ "loss": 1.8019994497299194,
+ "step": 2596
+ },
+ {
+ "epoch": 36.069686411149824,
+ "grad_norm": 0.057715486735105515,
+ "learning_rate": 0.00011865842371583278,
+ "loss": 1.7835862636566162,
+ "step": 2597
+ },
+ {
+ "epoch": 36.08362369337979,
+ "grad_norm": 0.05769861489534378,
+ "learning_rate": 0.00011844947679713396,
+ "loss": 1.7842698097229004,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09756097560975,
+ "grad_norm": 0.05870186164975166,
+ "learning_rate": 0.00011824067856745812,
+ "loss": 1.7978391647338867,
+ "step": 2599
+ },
+ {
+ "epoch": 36.11149825783972,
+ "grad_norm": 0.05980672314763069,
+ "learning_rate": 0.00011803202919503064,
+ "loss": 1.7915937900543213,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12543554006969,
+ "grad_norm": 0.057950735092163086,
+ "learning_rate": 0.00011782352884795615,
+ "loss": 1.796860933303833,
+ "step": 2601
+ },
+ {
+ "epoch": 36.13937282229965,
+ "grad_norm": 0.059691980481147766,
+ "learning_rate": 0.00011761517769421983,
+ "loss": 1.7795453071594238,
+ "step": 2602
+ },
+ {
+ "epoch": 36.153310104529616,
+ "grad_norm": 0.05934140831232071,
+ "learning_rate": 0.00011740697590168635,
+ "loss": 1.7895190715789795,
+ "step": 2603
+ },
+ {
+ "epoch": 36.167247386759584,
+ "grad_norm": 0.0582442507147789,
+ "learning_rate": 0.00011719892363810018,
+ "loss": 1.7981176376342773,
+ "step": 2604
+ },
+ {
+ "epoch": 36.181184668989545,
+ "grad_norm": 0.05873899906873703,
+ "learning_rate": 0.00011699102107108539,
+ "loss": 1.7890758514404297,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19512195121951,
+ "grad_norm": 0.0597921647131443,
+ "learning_rate": 0.00011678326836814507,
+ "loss": 1.782232403755188,
+ "step": 2606
+ },
+ {
+ "epoch": 36.20905923344948,
+ "grad_norm": 0.05748225003480911,
+ "learning_rate": 0.00011657566569666198,
+ "loss": 1.7897863388061523,
+ "step": 2607
+ },
+ {
+ "epoch": 36.22299651567944,
+ "grad_norm": 0.059263598173856735,
+ "learning_rate": 0.00011636821322389777,
+ "loss": 1.8019763231277466,
+ "step": 2608
+ },
+ {
+ "epoch": 36.23693379790941,
+ "grad_norm": 0.05755976587533951,
+ "learning_rate": 0.00011616091111699333,
+ "loss": 1.8150629997253418,
+ "step": 2609
+ },
+ {
+ "epoch": 36.250871080139376,
+ "grad_norm": 0.0598963163793087,
+ "learning_rate": 0.00011595375954296786,
+ "loss": 1.7994740009307861,
+ "step": 2610
+ },
+ {
+ "epoch": 36.26480836236934,
+ "grad_norm": 0.057324476540088654,
+ "learning_rate": 0.00011574675866871997,
+ "loss": 1.8066706657409668,
+ "step": 2611
+ },
+ {
+ "epoch": 36.278745644599304,
+ "grad_norm": 0.05825965106487274,
+ "learning_rate": 0.00011553990866102651,
+ "loss": 1.7909674644470215,
+ "step": 2612
+ },
+ {
+ "epoch": 36.292682926829265,
+ "grad_norm": 0.05863742157816887,
+ "learning_rate": 0.00011533320968654265,
+ "loss": 1.7921855449676514,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30662020905923,
+ "grad_norm": 0.057966724038124084,
+ "learning_rate": 0.00011512666191180204,
+ "loss": 1.799203634262085,
+ "step": 2614
+ },
+ {
+ "epoch": 36.3205574912892,
+ "grad_norm": 0.058184582740068436,
+ "learning_rate": 0.00011492026550321653,
+ "loss": 1.7864094972610474,
+ "step": 2615
+ },
+ {
+ "epoch": 36.33449477351916,
+ "grad_norm": 0.06074970215559006,
+ "learning_rate": 0.00011471402062707607,
+ "loss": 1.8016419410705566,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34843205574913,
+ "grad_norm": 0.060255058109760284,
+ "learning_rate": 0.00011450792744954827,
+ "loss": 1.7989581823349,
+ "step": 2617
+ },
+ {
+ "epoch": 36.362369337979096,
+ "grad_norm": 0.058979928493499756,
+ "learning_rate": 0.00011430198613667861,
+ "loss": 1.7976062297821045,
+ "step": 2618
+ },
+ {
+ "epoch": 36.37630662020906,
+ "grad_norm": 0.06085631251335144,
+ "learning_rate": 0.00011409619685439064,
+ "loss": 1.799715518951416,
+ "step": 2619
+ },
+ {
+ "epoch": 36.390243902439025,
+ "grad_norm": 0.059801094233989716,
+ "learning_rate": 0.00011389055976848477,
+ "loss": 1.8050971031188965,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40418118466899,
+ "grad_norm": 0.06205856800079346,
+ "learning_rate": 0.00011368507504463914,
+ "loss": 1.809314489364624,
+ "step": 2621
+ },
+ {
+ "epoch": 36.41811846689895,
+ "grad_norm": 0.059292055666446686,
+ "learning_rate": 0.00011347974284840914,
+ "loss": 1.7975642681121826,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43205574912892,
+ "grad_norm": 0.05992339551448822,
+ "learning_rate": 0.00011327456334522725,
+ "loss": 1.7838283777236938,
+ "step": 2623
+ },
+ {
+ "epoch": 36.44599303135889,
+ "grad_norm": 0.059182096272706985,
+ "learning_rate": 0.00011306953670040275,
+ "loss": 1.8045337200164795,
+ "step": 2624
+ },
+ {
+ "epoch": 36.45993031358885,
+ "grad_norm": 0.05964009836316109,
+ "learning_rate": 0.00011286466307912184,
+ "loss": 1.7956809997558594,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47386759581882,
+ "grad_norm": 0.059848565608263016,
+ "learning_rate": 0.00011265994264644783,
+ "loss": 1.7996410131454468,
+ "step": 2626
+ },
+ {
+ "epoch": 36.48780487804878,
+ "grad_norm": 0.06067422404885292,
+ "learning_rate": 0.00011245537556732001,
+ "loss": 1.7993896007537842,
+ "step": 2627
+ },
+ {
+ "epoch": 36.501742160278745,
+ "grad_norm": 0.06120799481868744,
+ "learning_rate": 0.00011225096200655442,
+ "loss": 1.8088237047195435,
+ "step": 2628
+ },
+ {
+ "epoch": 36.51567944250871,
+ "grad_norm": 0.06022920086979866,
+ "learning_rate": 0.00011204670212884342,
+ "loss": 1.7926946878433228,
+ "step": 2629
+ },
+ {
+ "epoch": 36.52961672473867,
+ "grad_norm": 0.06015709787607193,
+ "learning_rate": 0.00011184259609875557,
+ "loss": 1.80572509765625,
+ "step": 2630
+ },
+ {
+ "epoch": 36.54355400696864,
+ "grad_norm": 0.06164759770035744,
+ "learning_rate": 0.00011163864408073522,
+ "loss": 1.7874038219451904,
+ "step": 2631
+ },
+ {
+ "epoch": 36.55749128919861,
+ "grad_norm": 0.060634590685367584,
+ "learning_rate": 0.00011143484623910293,
+ "loss": 1.7954940795898438,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57142857142857,
+ "grad_norm": 0.060891084372997284,
+ "learning_rate": 0.00011123120273805496,
+ "loss": 1.7963420152664185,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58536585365854,
+ "grad_norm": 0.06035187467932701,
+ "learning_rate": 0.0001110277137416632,
+ "loss": 1.8002746105194092,
+ "step": 2634
+ },
+ {
+ "epoch": 36.599303135888505,
+ "grad_norm": 0.06189136952161789,
+ "learning_rate": 0.00011082437941387512,
+ "loss": 1.809941053390503,
+ "step": 2635
+ },
+ {
+ "epoch": 36.613240418118465,
+ "grad_norm": 0.0598427951335907,
+ "learning_rate": 0.00011062119991851322,
+ "loss": 1.7951371669769287,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62717770034843,
+ "grad_norm": 0.06194192171096802,
+ "learning_rate": 0.000110418175419276,
+ "loss": 1.7994475364685059,
+ "step": 2637
+ },
+ {
+ "epoch": 36.641114982578394,
+ "grad_norm": 0.060569968074560165,
+ "learning_rate": 0.00011021530607973626,
+ "loss": 1.7968194484710693,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65505226480836,
+ "grad_norm": 0.06159248575568199,
+ "learning_rate": 0.00011001259206334235,
+ "loss": 1.8022544384002686,
+ "step": 2639
+ },
+ {
+ "epoch": 36.66898954703833,
+ "grad_norm": 0.060701292008161545,
+ "learning_rate": 0.00010981003353341721,
+ "loss": 1.798879623413086,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68292682926829,
+ "grad_norm": 0.060689397156238556,
+ "learning_rate": 0.00010960763065315864,
+ "loss": 1.787331461906433,
+ "step": 2641
+ },
+ {
+ "epoch": 36.69686411149826,
+ "grad_norm": 0.062465935945510864,
+ "learning_rate": 0.00010940538358563906,
+ "loss": 1.8018803596496582,
+ "step": 2642
+ },
+ {
+ "epoch": 36.710801393728225,
+ "grad_norm": 0.061564989387989044,
+ "learning_rate": 0.00010920329249380509,
+ "loss": 1.8022879362106323,
+ "step": 2643
+ },
+ {
+ "epoch": 36.724738675958186,
+ "grad_norm": 0.06203111261129379,
+ "learning_rate": 0.00010900135754047799,
+ "loss": 1.7954847812652588,
+ "step": 2644
+ },
+ {
+ "epoch": 36.73867595818815,
+ "grad_norm": 0.06047702953219414,
+ "learning_rate": 0.00010879957888835307,
+ "loss": 1.8152201175689697,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75261324041812,
+ "grad_norm": 0.06360939145088196,
+ "learning_rate": 0.00010859795669999981,
+ "loss": 1.7984482049942017,
+ "step": 2646
+ },
+ {
+ "epoch": 36.76655052264808,
+ "grad_norm": 0.061280008405447006,
+ "learning_rate": 0.00010839649113786137,
+ "loss": 1.794365406036377,
+ "step": 2647
+ },
+ {
+ "epoch": 36.78048780487805,
+ "grad_norm": 0.06262083351612091,
+ "learning_rate": 0.00010819518236425514,
+ "loss": 1.802119493484497,
+ "step": 2648
+ },
+ {
+ "epoch": 36.79442508710802,
+ "grad_norm": 0.062356967478990555,
+ "learning_rate": 0.00010799403054137197,
+ "loss": 1.8052328824996948,
+ "step": 2649
+ },
+ {
+ "epoch": 36.80836236933798,
+ "grad_norm": 0.06342893838882446,
+ "learning_rate": 0.00010779303583127609,
+ "loss": 1.8065122365951538,
+ "step": 2650
+ },
+ {
+ "epoch": 36.822299651567945,
+ "grad_norm": 0.06230684742331505,
+ "learning_rate": 0.00010759219839590535,
+ "loss": 1.802478551864624,
+ "step": 2651
+ },
+ {
+ "epoch": 36.836236933797906,
+ "grad_norm": 0.06416236609220505,
+ "learning_rate": 0.00010739151839707089,
+ "loss": 1.8185087442398071,
+ "step": 2652
+ },
+ {
+ "epoch": 36.850174216027874,
+ "grad_norm": 0.06391201913356781,
+ "learning_rate": 0.00010719099599645706,
+ "loss": 1.816373348236084,
+ "step": 2653
+ },
+ {
+ "epoch": 36.86411149825784,
+ "grad_norm": 0.06223445013165474,
+ "learning_rate": 0.0001069906313556208,
+ "loss": 1.8092248439788818,
+ "step": 2654
+ },
+ {
+ "epoch": 36.8780487804878,
+ "grad_norm": 0.06311052292585373,
+ "learning_rate": 0.00010679042463599263,
+ "loss": 1.8052345514297485,
+ "step": 2655
+ },
+ {
+ "epoch": 36.89198606271777,
+ "grad_norm": 0.06328947097063065,
+ "learning_rate": 0.00010659037599887545,
+ "loss": 1.798400640487671,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90592334494774,
+ "grad_norm": 0.06306478381156921,
+ "learning_rate": 0.0001063904856054446,
+ "loss": 1.800265908241272,
+ "step": 2657
+ },
+ {
+ "epoch": 36.9198606271777,
+ "grad_norm": 0.06399966031312943,
+ "learning_rate": 0.00010619075361674836,
+ "loss": 1.7947779893875122,
+ "step": 2658
+ },
+ {
+ "epoch": 36.933797909407666,
+ "grad_norm": 0.06385133415460587,
+ "learning_rate": 0.0001059911801937071,
+ "loss": 1.8032350540161133,
+ "step": 2659
+ },
+ {
+ "epoch": 36.94773519163763,
+ "grad_norm": 0.0634441003203392,
+ "learning_rate": 0.00010579176549711365,
+ "loss": 1.8048739433288574,
+ "step": 2660
+ },
+ {
+ "epoch": 36.961672473867594,
+ "grad_norm": 0.06289725005626678,
+ "learning_rate": 0.00010559250968763265,
+ "loss": 1.8113070726394653,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97560975609756,
+ "grad_norm": 0.06666543334722519,
+ "learning_rate": 0.00010539341292580086,
+ "loss": 1.8072322607040405,
+ "step": 2662
+ },
+ {
+ "epoch": 36.98954703832753,
+ "grad_norm": 0.06264351308345795,
+ "learning_rate": 0.00010519447537202729,
+ "loss": 1.7923619747161865,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.05352141708135605,
+ "learning_rate": 0.00010499569718659201,
+ "loss": 1.3402554988861084,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 0.6503449082374573,
+ "eval_runtime": 40.8339,
+ "eval_samples_per_second": 59.803,
+ "eval_steps_per_second": 0.49,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01393728222997,
+ "grad_norm": 0.055954668670892715,
+ "learning_rate": 0.00010479707852964713,
+ "loss": 1.7941787242889404,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02787456445993,
+ "grad_norm": 0.05661492794752121,
+ "learning_rate": 0.00010459861956121611,
+ "loss": 1.782745361328125,
+ "step": 2666
+ },
+ {
+ "epoch": 37.041811846689896,
+ "grad_norm": 0.061108414083719254,
+ "learning_rate": 0.00010440032044119383,
+ "loss": 1.770695686340332,
+ "step": 2667
+ },
+ {
+ "epoch": 37.055749128919864,
+ "grad_norm": 0.05666922777891159,
+ "learning_rate": 0.00010420218132934614,
+ "loss": 1.7809648513793945,
+ "step": 2668
+ },
+ {
+ "epoch": 37.069686411149824,
+ "grad_norm": 0.057485584169626236,
+ "learning_rate": 0.00010400420238531023,
+ "loss": 1.7725648880004883,
+ "step": 2669
+ },
+ {
+ "epoch": 37.08362369337979,
+ "grad_norm": 0.057979732751846313,
+ "learning_rate": 0.00010380638376859416,
+ "loss": 1.787489652633667,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09756097560975,
+ "grad_norm": 0.058842871338129044,
+ "learning_rate": 0.00010360872563857682,
+ "loss": 1.7838923931121826,
+ "step": 2671
+ },
+ {
+ "epoch": 37.11149825783972,
+ "grad_norm": 0.05769092217087746,
+ "learning_rate": 0.0001034112281545079,
+ "loss": 1.7657028436660767,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12543554006969,
+ "grad_norm": 0.057962507009506226,
+ "learning_rate": 0.00010321389147550725,
+ "loss": 1.7842955589294434,
+ "step": 2673
+ },
+ {
+ "epoch": 37.13937282229965,
+ "grad_norm": 0.059381090104579926,
+ "learning_rate": 0.00010301671576056588,
+ "loss": 1.7863147258758545,
+ "step": 2674
+ },
+ {
+ "epoch": 37.153310104529616,
+ "grad_norm": 0.05838813632726669,
+ "learning_rate": 0.00010281970116854436,
+ "loss": 1.7819740772247314,
+ "step": 2675
+ },
+ {
+ "epoch": 37.167247386759584,
+ "grad_norm": 0.05773032456636429,
+ "learning_rate": 0.00010262284785817392,
+ "loss": 1.7728110551834106,
+ "step": 2676
+ },
+ {
+ "epoch": 37.181184668989545,
+ "grad_norm": 0.05877206102013588,
+ "learning_rate": 0.00010242615598805574,
+ "loss": 1.7952494621276855,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19512195121951,
+ "grad_norm": 0.05759423226118088,
+ "learning_rate": 0.00010222962571666088,
+ "loss": 1.7932361364364624,
+ "step": 2678
+ },
+ {
+ "epoch": 37.20905923344948,
+ "grad_norm": 0.059793874621391296,
+ "learning_rate": 0.00010203325720233032,
+ "loss": 1.7818982601165771,
+ "step": 2679
+ },
+ {
+ "epoch": 37.22299651567944,
+ "grad_norm": 0.05714469775557518,
+ "learning_rate": 0.00010183705060327433,
+ "loss": 1.7894699573516846,
+ "step": 2680
+ },
+ {
+ "epoch": 37.23693379790941,
+ "grad_norm": 0.06009291484951973,
+ "learning_rate": 0.00010164100607757346,
+ "loss": 1.7877312898635864,
+ "step": 2681
+ },
+ {
+ "epoch": 37.250871080139376,
+ "grad_norm": 0.05877745524048805,
+ "learning_rate": 0.00010144512378317687,
+ "loss": 1.7893445491790771,
+ "step": 2682
+ },
+ {
+ "epoch": 37.26480836236934,
+ "grad_norm": 0.05971526354551315,
+ "learning_rate": 0.00010124940387790354,
+ "loss": 1.790606141090393,
+ "step": 2683
+ },
+ {
+ "epoch": 37.278745644599304,
+ "grad_norm": 0.05756371095776558,
+ "learning_rate": 0.00010105384651944148,
+ "loss": 1.775133490562439,
+ "step": 2684
+ },
+ {
+ "epoch": 37.292682926829265,
+ "grad_norm": 0.05870367959141731,
+ "learning_rate": 0.00010085845186534769,
+ "loss": 1.7902131080627441,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30662020905923,
+ "grad_norm": 0.05869534984230995,
+ "learning_rate": 0.00010066322007304819,
+ "loss": 1.7827963829040527,
+ "step": 2686
+ },
+ {
+ "epoch": 37.3205574912892,
+ "grad_norm": 0.0591689795255661,
+ "learning_rate": 0.00010046815129983757,
+ "loss": 1.7818281650543213,
+ "step": 2687
+ },
+ {
+ "epoch": 37.33449477351916,
+ "grad_norm": 0.05855981633067131,
+ "learning_rate": 0.00010027324570287925,
+ "loss": 1.794994592666626,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34843205574913,
+ "grad_norm": 0.05911006033420563,
+ "learning_rate": 0.00010007850343920519,
+ "loss": 1.7840418815612793,
+ "step": 2689
+ },
+ {
+ "epoch": 37.362369337979096,
+ "grad_norm": 0.05816571041941643,
+ "learning_rate": 9.988392466571572e-05,
+ "loss": 1.7875049114227295,
+ "step": 2690
+ },
+ {
+ "epoch": 37.37630662020906,
+ "grad_norm": 0.05893605574965477,
+ "learning_rate": 9.968950953917945e-05,
+ "loss": 1.7783112525939941,
+ "step": 2691
+ },
+ {
+ "epoch": 37.390243902439025,
+ "grad_norm": 0.05793707072734833,
+ "learning_rate": 9.949525821623309e-05,
+ "loss": 1.7789113521575928,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40418118466899,
+ "grad_norm": 0.05917073413729668,
+ "learning_rate": 9.930117085338156e-05,
+ "loss": 1.7670814990997314,
+ "step": 2693
+ },
+ {
+ "epoch": 37.41811846689895,
+ "grad_norm": 0.05918928608298302,
+ "learning_rate": 9.910724760699731e-05,
+ "loss": 1.79921293258667,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43205574912892,
+ "grad_norm": 0.060473326593637466,
+ "learning_rate": 9.891348863332093e-05,
+ "loss": 1.7918263673782349,
+ "step": 2695
+ },
+ {
+ "epoch": 37.44599303135889,
+ "grad_norm": 0.05952722951769829,
+ "learning_rate": 9.871989408846051e-05,
+ "loss": 1.7897589206695557,
+ "step": 2696
+ },
+ {
+ "epoch": 37.45993031358885,
+ "grad_norm": 0.05955512076616287,
+ "learning_rate": 9.852646412839178e-05,
+ "loss": 1.7902030944824219,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47386759581882,
+ "grad_norm": 0.059690166264772415,
+ "learning_rate": 9.833319890895756e-05,
+ "loss": 1.789273977279663,
+ "step": 2698
+ },
+ {
+ "epoch": 37.48780487804878,
+ "grad_norm": 0.06117507815361023,
+ "learning_rate": 9.814009858586817e-05,
+ "loss": 1.7829227447509766,
+ "step": 2699
+ },
+ {
+ "epoch": 37.501742160278745,
+ "grad_norm": 0.05962991714477539,
+ "learning_rate": 9.794716331470131e-05,
+ "loss": 1.788633108139038,
+ "step": 2700
+ },
+ {
+ "epoch": 37.51567944250871,
+ "grad_norm": 0.060302652418613434,
+ "learning_rate": 9.77543932509012e-05,
+ "loss": 1.7823851108551025,
+ "step": 2701
+ },
+ {
+ "epoch": 37.52961672473867,
+ "grad_norm": 0.06038743630051613,
+ "learning_rate": 9.756178854977925e-05,
+ "loss": 1.7907404899597168,
+ "step": 2702
+ },
+ {
+ "epoch": 37.54355400696864,
+ "grad_norm": 0.059840161353349686,
+ "learning_rate": 9.736934936651362e-05,
+ "loss": 1.7859036922454834,
+ "step": 2703
+ },
+ {
+ "epoch": 37.55749128919861,
+ "grad_norm": 0.06124330312013626,
+ "learning_rate": 9.717707585614916e-05,
+ "loss": 1.7850871086120605,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57142857142857,
+ "grad_norm": 0.060107145458459854,
+ "learning_rate": 9.698496817359698e-05,
+ "loss": 1.7971034049987793,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58536585365854,
+ "grad_norm": 0.062206294387578964,
+ "learning_rate": 9.679302647363476e-05,
+ "loss": 1.7905354499816895,
+ "step": 2706
+ },
+ {
+ "epoch": 37.599303135888505,
+ "grad_norm": 0.060184285044670105,
+ "learning_rate": 9.660125091090675e-05,
+ "loss": 1.7828166484832764,
+ "step": 2707
+ },
+ {
+ "epoch": 37.613240418118465,
+ "grad_norm": 0.05999206751585007,
+ "learning_rate": 9.64096416399228e-05,
+ "loss": 1.8008617162704468,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62717770034843,
+ "grad_norm": 0.0613752119243145,
+ "learning_rate": 9.621819881505918e-05,
+ "loss": 1.789717674255371,
+ "step": 2709
+ },
+ {
+ "epoch": 37.641114982578394,
+ "grad_norm": 0.060599468648433685,
+ "learning_rate": 9.602692259055767e-05,
+ "loss": 1.7871017456054688,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65505226480836,
+ "grad_norm": 0.06263872981071472,
+ "learning_rate": 9.583581312052646e-05,
+ "loss": 1.7943106889724731,
+ "step": 2711
+ },
+ {
+ "epoch": 37.66898954703833,
+ "grad_norm": 0.062194015830755234,
+ "learning_rate": 9.564487055893867e-05,
+ "loss": 1.788008689880371,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68292682926829,
+ "grad_norm": 0.060973457992076874,
+ "learning_rate": 9.545409505963338e-05,
+ "loss": 1.7923413515090942,
+ "step": 2713
+ },
+ {
+ "epoch": 37.69686411149826,
+ "grad_norm": 0.062401190400123596,
+ "learning_rate": 9.526348677631499e-05,
+ "loss": 1.8081228733062744,
+ "step": 2714
+ },
+ {
+ "epoch": 37.710801393728225,
+ "grad_norm": 0.060926176607608795,
+ "learning_rate": 9.507304586255311e-05,
+ "loss": 1.7845854759216309,
+ "step": 2715
+ },
+ {
+ "epoch": 37.724738675958186,
+ "grad_norm": 0.062316857278347015,
+ "learning_rate": 9.488277247178267e-05,
+ "loss": 1.7968542575836182,
+ "step": 2716
+ },
+ {
+ "epoch": 37.73867595818815,
+ "grad_norm": 0.06097151339054108,
+ "learning_rate": 9.469266675730319e-05,
+ "loss": 1.7956640720367432,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75261324041812,
+ "grad_norm": 0.06271521747112274,
+ "learning_rate": 9.450272887227983e-05,
+ "loss": 1.7865713834762573,
+ "step": 2718
+ },
+ {
+ "epoch": 37.76655052264808,
+ "grad_norm": 0.06257861852645874,
+ "learning_rate": 9.431295896974182e-05,
+ "loss": 1.7880938053131104,
+ "step": 2719
+ },
+ {
+ "epoch": 37.78048780487805,
+ "grad_norm": 0.06380198895931244,
+ "learning_rate": 9.412335720258341e-05,
+ "loss": 1.790265440940857,
+ "step": 2720
+ },
+ {
+ "epoch": 37.79442508710802,
+ "grad_norm": 0.06104693189263344,
+ "learning_rate": 9.393392372356335e-05,
+ "loss": 1.7910763025283813,
+ "step": 2721
+ },
+ {
+ "epoch": 37.80836236933798,
+ "grad_norm": 0.06306934356689453,
+ "learning_rate": 9.374465868530477e-05,
+ "loss": 1.7925502061843872,
+ "step": 2722
+ },
+ {
+ "epoch": 37.822299651567945,
+ "grad_norm": 0.06254854053258896,
+ "learning_rate": 9.355556224029515e-05,
+ "loss": 1.7916789054870605,
+ "step": 2723
+ },
+ {
+ "epoch": 37.836236933797906,
+ "grad_norm": 0.06360232084989548,
+ "learning_rate": 9.336663454088593e-05,
+ "loss": 1.7960188388824463,
+ "step": 2724
+ },
+ {
+ "epoch": 37.850174216027874,
+ "grad_norm": 0.06377686560153961,
+ "learning_rate": 9.317787573929282e-05,
+ "loss": 1.7944340705871582,
+ "step": 2725
+ },
+ {
+ "epoch": 37.86411149825784,
+ "grad_norm": 0.06208472698926926,
+ "learning_rate": 9.298928598759541e-05,
+ "loss": 1.7910699844360352,
+ "step": 2726
+ },
+ {
+ "epoch": 37.8780487804878,
+ "grad_norm": 0.0627727285027504,
+ "learning_rate": 9.280086543773698e-05,
+ "loss": 1.7890523672103882,
+ "step": 2727
+ },
+ {
+ "epoch": 37.89198606271777,
+ "grad_norm": 0.06323178857564926,
+ "learning_rate": 9.26126142415247e-05,
+ "loss": 1.7757771015167236,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90592334494774,
+ "grad_norm": 0.062019236385822296,
+ "learning_rate": 9.2424532550629e-05,
+ "loss": 1.786799430847168,
+ "step": 2729
+ },
+ {
+ "epoch": 37.9198606271777,
+ "grad_norm": 0.06305447220802307,
+ "learning_rate": 9.223662051658408e-05,
+ "loss": 1.7832386493682861,
+ "step": 2730
+ },
+ {
+ "epoch": 37.933797909407666,
+ "grad_norm": 0.06175057590007782,
+ "learning_rate": 9.204887829078709e-05,
+ "loss": 1.7787675857543945,
+ "step": 2731
+ },
+ {
+ "epoch": 37.94773519163763,
+ "grad_norm": 0.06420185416936874,
+ "learning_rate": 9.186130602449861e-05,
+ "loss": 1.789478063583374,
+ "step": 2732
+ },
+ {
+ "epoch": 37.961672473867594,
+ "grad_norm": 0.06195196136832237,
+ "learning_rate": 9.167390386884224e-05,
+ "loss": 1.7866311073303223,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97560975609756,
+ "grad_norm": 0.061849065124988556,
+ "learning_rate": 9.148667197480455e-05,
+ "loss": 1.7823681831359863,
+ "step": 2734
+ },
+ {
+ "epoch": 37.98954703832753,
+ "grad_norm": 0.06343266367912292,
+ "learning_rate": 9.129961049323494e-05,
+ "loss": 1.7910778522491455,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.051387008279561996,
+ "learning_rate": 9.111271957484519e-05,
+ "loss": 1.3254375457763672,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 0.6518338918685913,
+ "eval_runtime": 39.4344,
+ "eval_samples_per_second": 61.926,
+ "eval_steps_per_second": 0.507,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01393728222997,
+ "grad_norm": 0.054842304438352585,
+ "learning_rate": 9.092599937021031e-05,
+ "loss": 1.7629472017288208,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02787456445993,
+ "grad_norm": 0.0560758002102375,
+ "learning_rate": 9.073945002976715e-05,
+ "loss": 1.765484094619751,
+ "step": 2738
+ },
+ {
+ "epoch": 38.041811846689896,
+ "grad_norm": 0.05736801400780678,
+ "learning_rate": 9.055307170381522e-05,
+ "loss": 1.7687311172485352,
+ "step": 2739
+ },
+ {
+ "epoch": 38.055749128919864,
+ "grad_norm": 0.056426238268613815,
+ "learning_rate": 9.036686454251613e-05,
+ "loss": 1.7623649835586548,
+ "step": 2740
+ },
+ {
+ "epoch": 38.069686411149824,
+ "grad_norm": 0.055244769901037216,
+ "learning_rate": 9.018082869589369e-05,
+ "loss": 1.7769012451171875,
+ "step": 2741
+ },
+ {
+ "epoch": 38.08362369337979,
+ "grad_norm": 0.05597008392214775,
+ "learning_rate": 8.999496431383368e-05,
+ "loss": 1.7746217250823975,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09756097560975,
+ "grad_norm": 0.05772856995463371,
+ "learning_rate": 8.980927154608341e-05,
+ "loss": 1.7711513042449951,
+ "step": 2743
+ },
+ {
+ "epoch": 38.11149825783972,
+ "grad_norm": 0.05718901380896568,
+ "learning_rate": 8.962375054225255e-05,
+ "loss": 1.7798418998718262,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12543554006969,
+ "grad_norm": 0.05619210749864578,
+ "learning_rate": 8.943840145181177e-05,
+ "loss": 1.7707206010818481,
+ "step": 2745
+ },
+ {
+ "epoch": 38.13937282229965,
+ "grad_norm": 0.05785241723060608,
+ "learning_rate": 8.925322442409361e-05,
+ "loss": 1.7814784049987793,
+ "step": 2746
+ },
+ {
+ "epoch": 38.153310104529616,
+ "grad_norm": 0.05741840600967407,
+ "learning_rate": 8.906821960829163e-05,
+ "loss": 1.7686582803726196,
+ "step": 2747
+ },
+ {
+ "epoch": 38.167247386759584,
+ "grad_norm": 0.056764375418424606,
+ "learning_rate": 8.888338715346113e-05,
+ "loss": 1.7791080474853516,
+ "step": 2748
+ },
+ {
+ "epoch": 38.181184668989545,
+ "grad_norm": 0.05660741776227951,
+ "learning_rate": 8.869872720851831e-05,
+ "loss": 1.7721326351165771,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19512195121951,
+ "grad_norm": 0.057148877531290054,
+ "learning_rate": 8.851423992224012e-05,
+ "loss": 1.7865493297576904,
+ "step": 2750
+ },
+ {
+ "epoch": 38.20905923344948,
+ "grad_norm": 0.05673397332429886,
+ "learning_rate": 8.832992544326473e-05,
+ "loss": 1.775355577468872,
+ "step": 2751
+ },
+ {
+ "epoch": 38.22299651567944,
+ "grad_norm": 0.05855946987867355,
+ "learning_rate": 8.814578392009104e-05,
+ "loss": 1.7630369663238525,
+ "step": 2752
+ },
+ {
+ "epoch": 38.23693379790941,
+ "grad_norm": 0.057675641030073166,
+ "learning_rate": 8.796181550107857e-05,
+ "loss": 1.7706618309020996,
+ "step": 2753
+ },
+ {
+ "epoch": 38.250871080139376,
+ "grad_norm": 0.05693305283784866,
+ "learning_rate": 8.777802033444712e-05,
+ "loss": 1.7833642959594727,
+ "step": 2754
+ },
+ {
+ "epoch": 38.26480836236934,
+ "grad_norm": 0.05849318578839302,
+ "learning_rate": 8.75943985682774e-05,
+ "loss": 1.7712740898132324,
+ "step": 2755
+ },
+ {
+ "epoch": 38.278745644599304,
+ "grad_norm": 0.058639708906412125,
+ "learning_rate": 8.741095035051017e-05,
+ "loss": 1.7742516994476318,
+ "step": 2756
+ },
+ {
+ "epoch": 38.292682926829265,
+ "grad_norm": 0.05999431386590004,
+ "learning_rate": 8.722767582894613e-05,
+ "loss": 1.770422101020813,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30662020905923,
+ "grad_norm": 0.05881490185856819,
+ "learning_rate": 8.704457515124636e-05,
+ "loss": 1.7781115770339966,
+ "step": 2758
+ },
+ {
+ "epoch": 38.3205574912892,
+ "grad_norm": 0.05765020474791527,
+ "learning_rate": 8.686164846493176e-05,
+ "loss": 1.7714276313781738,
+ "step": 2759
+ },
+ {
+ "epoch": 38.33449477351916,
+ "grad_norm": 0.058526743203401566,
+ "learning_rate": 8.667889591738317e-05,
+ "loss": 1.766985297203064,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34843205574913,
+ "grad_norm": 0.0583895705640316,
+ "learning_rate": 8.649631765584083e-05,
+ "loss": 1.7656654119491577,
+ "step": 2761
+ },
+ {
+ "epoch": 38.362369337979096,
+ "grad_norm": 0.05924084037542343,
+ "learning_rate": 8.631391382740482e-05,
+ "loss": 1.789198875427246,
+ "step": 2762
+ },
+ {
+ "epoch": 38.37630662020906,
+ "grad_norm": 0.05770174786448479,
+ "learning_rate": 8.613168457903459e-05,
+ "loss": 1.7670378684997559,
+ "step": 2763
+ },
+ {
+ "epoch": 38.390243902439025,
+ "grad_norm": 0.0583224780857563,
+ "learning_rate": 8.594963005754901e-05,
+ "loss": 1.7765432596206665,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40418118466899,
+ "grad_norm": 0.05907677114009857,
+ "learning_rate": 8.57677504096261e-05,
+ "loss": 1.7787013053894043,
+ "step": 2765
+ },
+ {
+ "epoch": 38.41811846689895,
+ "grad_norm": 0.059105876833200455,
+ "learning_rate": 8.558604578180301e-05,
+ "loss": 1.7921006679534912,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43205574912892,
+ "grad_norm": 0.05911828950047493,
+ "learning_rate": 8.540451632047593e-05,
+ "loss": 1.7742506265640259,
+ "step": 2767
+ },
+ {
+ "epoch": 38.44599303135889,
+ "grad_norm": 0.05825108662247658,
+ "learning_rate": 8.522316217189972e-05,
+ "loss": 1.7643852233886719,
+ "step": 2768
+ },
+ {
+ "epoch": 38.45993031358885,
+ "grad_norm": 0.05910007283091545,
+ "learning_rate": 8.504198348218821e-05,
+ "loss": 1.7819852828979492,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47386759581882,
+ "grad_norm": 0.058992717415094376,
+ "learning_rate": 8.486098039731384e-05,
+ "loss": 1.7629930973052979,
+ "step": 2770
+ },
+ {
+ "epoch": 38.48780487804878,
+ "grad_norm": 0.05846566706895828,
+ "learning_rate": 8.46801530631075e-05,
+ "loss": 1.773916244506836,
+ "step": 2771
+ },
+ {
+ "epoch": 38.501742160278745,
+ "grad_norm": 0.058348461985588074,
+ "learning_rate": 8.449950162525859e-05,
+ "loss": 1.7839322090148926,
+ "step": 2772
+ },
+ {
+ "epoch": 38.51567944250871,
+ "grad_norm": 0.05947791039943695,
+ "learning_rate": 8.431902622931443e-05,
+ "loss": 1.765789270401001,
+ "step": 2773
+ },
+ {
+ "epoch": 38.52961672473867,
+ "grad_norm": 0.059648409485816956,
+ "learning_rate": 8.413872702068119e-05,
+ "loss": 1.7754334211349487,
+ "step": 2774
+ },
+ {
+ "epoch": 38.54355400696864,
+ "grad_norm": 0.05937156081199646,
+ "learning_rate": 8.395860414462238e-05,
+ "loss": 1.7900447845458984,
+ "step": 2775
+ },
+ {
+ "epoch": 38.55749128919861,
+ "grad_norm": 0.06034074351191521,
+ "learning_rate": 8.377865774625985e-05,
+ "loss": 1.7679557800292969,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57142857142857,
+ "grad_norm": 0.0595686174929142,
+ "learning_rate": 8.359888797057316e-05,
+ "loss": 1.7792972326278687,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58536585365854,
+ "grad_norm": 0.05900043621659279,
+ "learning_rate": 8.341929496239958e-05,
+ "loss": 1.7826911211013794,
+ "step": 2778
+ },
+ {
+ "epoch": 38.599303135888505,
+ "grad_norm": 0.059854842722415924,
+ "learning_rate": 8.323987886643402e-05,
+ "loss": 1.782975196838379,
+ "step": 2779
+ },
+ {
+ "epoch": 38.613240418118465,
+ "grad_norm": 0.0607217513024807,
+ "learning_rate": 8.306063982722855e-05,
+ "loss": 1.784066081047058,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62717770034843,
+ "grad_norm": 0.06086676940321922,
+ "learning_rate": 8.288157798919318e-05,
+ "loss": 1.7733347415924072,
+ "step": 2781
+ },
+ {
+ "epoch": 38.641114982578394,
+ "grad_norm": 0.06048542261123657,
+ "learning_rate": 8.27026934965945e-05,
+ "loss": 1.7637434005737305,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65505226480836,
+ "grad_norm": 0.06176905333995819,
+ "learning_rate": 8.25239864935566e-05,
+ "loss": 1.7731115818023682,
+ "step": 2783
+ },
+ {
+ "epoch": 38.66898954703833,
+ "grad_norm": 0.05974547937512398,
+ "learning_rate": 8.23454571240605e-05,
+ "loss": 1.772669792175293,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68292682926829,
+ "grad_norm": 0.06157250702381134,
+ "learning_rate": 8.216710553194416e-05,
+ "loss": 1.7675827741622925,
+ "step": 2785
+ },
+ {
+ "epoch": 38.69686411149826,
+ "grad_norm": 0.06226542964577675,
+ "learning_rate": 8.198893186090222e-05,
+ "loss": 1.7833688259124756,
+ "step": 2786
+ },
+ {
+ "epoch": 38.710801393728225,
+ "grad_norm": 0.061170827597379684,
+ "learning_rate": 8.181093625448585e-05,
+ "loss": 1.777653455734253,
+ "step": 2787
+ },
+ {
+ "epoch": 38.724738675958186,
+ "grad_norm": 0.06075199693441391,
+ "learning_rate": 8.163311885610299e-05,
+ "loss": 1.7740358114242554,
+ "step": 2788
+ },
+ {
+ "epoch": 38.73867595818815,
+ "grad_norm": 0.061266977339982986,
+ "learning_rate": 8.145547980901791e-05,
+ "loss": 1.7838897705078125,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75261324041812,
+ "grad_norm": 0.06033504754304886,
+ "learning_rate": 8.127801925635126e-05,
+ "loss": 1.7636661529541016,
+ "step": 2790
+ },
+ {
+ "epoch": 38.76655052264808,
+ "grad_norm": 0.06320908665657043,
+ "learning_rate": 8.110073734107954e-05,
+ "loss": 1.768554449081421,
+ "step": 2791
+ },
+ {
+ "epoch": 38.78048780487805,
+ "grad_norm": 0.06087823957204819,
+ "learning_rate": 8.092363420603584e-05,
+ "loss": 1.7832964658737183,
+ "step": 2792
+ },
+ {
+ "epoch": 38.79442508710802,
+ "grad_norm": 0.061426736414432526,
+ "learning_rate": 8.074670999390896e-05,
+ "loss": 1.774822473526001,
+ "step": 2793
+ },
+ {
+ "epoch": 38.80836236933798,
+ "grad_norm": 0.06240220367908478,
+ "learning_rate": 8.056996484724342e-05,
+ "loss": 1.788359522819519,
+ "step": 2794
+ },
+ {
+ "epoch": 38.822299651567945,
+ "grad_norm": 0.06103154271841049,
+ "learning_rate": 8.039339890843958e-05,
+ "loss": 1.7723958492279053,
+ "step": 2795
+ },
+ {
+ "epoch": 38.836236933797906,
+ "grad_norm": 0.06289014220237732,
+ "learning_rate": 8.02170123197535e-05,
+ "loss": 1.7608444690704346,
+ "step": 2796
+ },
+ {
+ "epoch": 38.850174216027874,
+ "grad_norm": 0.06123042851686478,
+ "learning_rate": 8.004080522329674e-05,
+ "loss": 1.784475326538086,
+ "step": 2797
+ },
+ {
+ "epoch": 38.86411149825784,
+ "grad_norm": 0.0598340779542923,
+ "learning_rate": 7.986477776103601e-05,
+ "loss": 1.7765214443206787,
+ "step": 2798
+ },
+ {
+ "epoch": 38.8780487804878,
+ "grad_norm": 0.06242257356643677,
+ "learning_rate": 7.968893007479343e-05,
+ "loss": 1.7831794023513794,
+ "step": 2799
+ },
+ {
+ "epoch": 38.89198606271777,
+ "grad_norm": 0.06315907835960388,
+ "learning_rate": 7.951326230624658e-05,
+ "loss": 1.8051912784576416,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90592334494774,
+ "grad_norm": 0.061293307691812515,
+ "learning_rate": 7.933777459692756e-05,
+ "loss": 1.776687741279602,
+ "step": 2801
+ },
+ {
+ "epoch": 38.9198606271777,
+ "grad_norm": 0.06186775118112564,
+ "learning_rate": 7.916246708822373e-05,
+ "loss": 1.7880871295928955,
+ "step": 2802
+ },
+ {
+ "epoch": 38.933797909407666,
+ "grad_norm": 0.0620921365916729,
+ "learning_rate": 7.898733992137715e-05,
+ "loss": 1.7791707515716553,
+ "step": 2803
+ },
+ {
+ "epoch": 38.94773519163763,
+ "grad_norm": 0.06211252138018608,
+ "learning_rate": 7.881239323748475e-05,
+ "loss": 1.7760372161865234,
+ "step": 2804
+ },
+ {
+ "epoch": 38.961672473867594,
+ "grad_norm": 0.06390377879142761,
+ "learning_rate": 7.863762717749771e-05,
+ "loss": 1.7718498706817627,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97560975609756,
+ "grad_norm": 0.06344659626483917,
+ "learning_rate": 7.846304188222189e-05,
+ "loss": 1.7801710367202759,
+ "step": 2806
+ },
+ {
+ "epoch": 38.98954703832753,
+ "grad_norm": 0.061760690063238144,
+ "learning_rate": 7.828863749231777e-05,
+ "loss": 1.7878985404968262,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.05050521343946457,
+ "learning_rate": 7.811441414829958e-05,
+ "loss": 1.3291038274765015,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 0.6531191468238831,
+ "eval_runtime": 38.9139,
+ "eval_samples_per_second": 62.754,
+ "eval_steps_per_second": 0.514,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01393728222997,
+ "grad_norm": 0.05571041256189346,
+ "learning_rate": 7.794037199053598e-05,
+ "loss": 1.7602754831314087,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02787456445993,
+ "grad_norm": 0.05649850144982338,
+ "learning_rate": 7.776651115924959e-05,
+ "loss": 1.7567126750946045,
+ "step": 2810
+ },
+ {
+ "epoch": 39.041811846689896,
+ "grad_norm": 0.05873497575521469,
+ "learning_rate": 7.759283179451704e-05,
+ "loss": 1.757828950881958,
+ "step": 2811
+ },
+ {
+ "epoch": 39.055749128919864,
+ "grad_norm": 0.056013382971286774,
+ "learning_rate": 7.741933403626848e-05,
+ "loss": 1.7616511583328247,
+ "step": 2812
+ },
+ {
+ "epoch": 39.069686411149824,
+ "grad_norm": 0.056703995913267136,
+ "learning_rate": 7.724601802428805e-05,
+ "loss": 1.7484111785888672,
+ "step": 2813
+ },
+ {
+ "epoch": 39.08362369337979,
+ "grad_norm": 0.05629453808069229,
+ "learning_rate": 7.707288389821329e-05,
+ "loss": 1.788665533065796,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09756097560975,
+ "grad_norm": 0.056537557393312454,
+ "learning_rate": 7.689993179753519e-05,
+ "loss": 1.7590811252593994,
+ "step": 2815
+ },
+ {
+ "epoch": 39.11149825783972,
+ "grad_norm": 0.05757816880941391,
+ "learning_rate": 7.672716186159829e-05,
+ "loss": 1.7594993114471436,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12543554006969,
+ "grad_norm": 0.05591630935668945,
+ "learning_rate": 7.655457422959993e-05,
+ "loss": 1.7654821872711182,
+ "step": 2817
+ },
+ {
+ "epoch": 39.13937282229965,
+ "grad_norm": 0.056902945041656494,
+ "learning_rate": 7.638216904059122e-05,
+ "loss": 1.7600302696228027,
+ "step": 2818
+ },
+ {
+ "epoch": 39.153310104529616,
+ "grad_norm": 0.05612136796116829,
+ "learning_rate": 7.620994643347559e-05,
+ "loss": 1.7703990936279297,
+ "step": 2819
+ },
+ {
+ "epoch": 39.167247386759584,
+ "grad_norm": 0.05739735811948776,
+ "learning_rate": 7.60379065470098e-05,
+ "loss": 1.7512180805206299,
+ "step": 2820
+ },
+ {
+ "epoch": 39.181184668989545,
+ "grad_norm": 0.05629546195268631,
+ "learning_rate": 7.586604951980326e-05,
+ "loss": 1.748405933380127,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19512195121951,
+ "grad_norm": 0.05683593824505806,
+ "learning_rate": 7.569437549031813e-05,
+ "loss": 1.7602342367172241,
+ "step": 2822
+ },
+ {
+ "epoch": 39.20905923344948,
+ "grad_norm": 0.0563126876950264,
+ "learning_rate": 7.55228845968691e-05,
+ "loss": 1.7734246253967285,
+ "step": 2823
+ },
+ {
+ "epoch": 39.22299651567944,
+ "grad_norm": 0.05859875679016113,
+ "learning_rate": 7.535157697762313e-05,
+ "loss": 1.761047124862671,
+ "step": 2824
+ },
+ {
+ "epoch": 39.23693379790941,
+ "grad_norm": 0.0567043274641037,
+ "learning_rate": 7.518045277059979e-05,
+ "loss": 1.770047664642334,
+ "step": 2825
+ },
+ {
+ "epoch": 39.250871080139376,
+ "grad_norm": 0.056725919246673584,
+ "learning_rate": 7.500951211367068e-05,
+ "loss": 1.7686347961425781,
+ "step": 2826
+ },
+ {
+ "epoch": 39.26480836236934,
+ "grad_norm": 0.05699746683239937,
+ "learning_rate": 7.483875514455979e-05,
+ "loss": 1.7612677812576294,
+ "step": 2827
+ },
+ {
+ "epoch": 39.278745644599304,
+ "grad_norm": 0.057768259197473526,
+ "learning_rate": 7.466818200084264e-05,
+ "loss": 1.7612879276275635,
+ "step": 2828
+ },
+ {
+ "epoch": 39.292682926829265,
+ "grad_norm": 0.05838700383901596,
+ "learning_rate": 7.449779281994712e-05,
+ "loss": 1.7827105522155762,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30662020905923,
+ "grad_norm": 0.05629018694162369,
+ "learning_rate": 7.43275877391528e-05,
+ "loss": 1.772542953491211,
+ "step": 2830
+ },
+ {
+ "epoch": 39.3205574912892,
+ "grad_norm": 0.058692216873168945,
+ "learning_rate": 7.415756689559061e-05,
+ "loss": 1.7646946907043457,
+ "step": 2831
+ },
+ {
+ "epoch": 39.33449477351916,
+ "grad_norm": 0.057233408093452454,
+ "learning_rate": 7.398773042624341e-05,
+ "loss": 1.7534501552581787,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34843205574913,
+ "grad_norm": 0.05912395194172859,
+ "learning_rate": 7.381807846794532e-05,
+ "loss": 1.7443028688430786,
+ "step": 2833
+ },
+ {
+ "epoch": 39.362369337979096,
+ "grad_norm": 0.058173369616270065,
+ "learning_rate": 7.3648611157382e-05,
+ "loss": 1.752382755279541,
+ "step": 2834
+ },
+ {
+ "epoch": 39.37630662020906,
+ "grad_norm": 0.05793056637048721,
+ "learning_rate": 7.34793286310899e-05,
+ "loss": 1.7651920318603516,
+ "step": 2835
+ },
+ {
+ "epoch": 39.390243902439025,
+ "grad_norm": 0.057997558265924454,
+ "learning_rate": 7.331023102545716e-05,
+ "loss": 1.7639983892440796,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40418118466899,
+ "grad_norm": 0.05872127786278725,
+ "learning_rate": 7.314131847672268e-05,
+ "loss": 1.7662757635116577,
+ "step": 2837
+ },
+ {
+ "epoch": 39.41811846689895,
+ "grad_norm": 0.05767998844385147,
+ "learning_rate": 7.297259112097608e-05,
+ "loss": 1.7753112316131592,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43205574912892,
+ "grad_norm": 0.05973566323518753,
+ "learning_rate": 7.280404909415801e-05,
+ "loss": 1.7647457122802734,
+ "step": 2839
+ },
+ {
+ "epoch": 39.44599303135889,
+ "grad_norm": 0.05860889330506325,
+ "learning_rate": 7.263569253205973e-05,
+ "loss": 1.7454320192337036,
+ "step": 2840
+ },
+ {
+ "epoch": 39.45993031358885,
+ "grad_norm": 0.05834508687257767,
+ "learning_rate": 7.24675215703232e-05,
+ "loss": 1.7634966373443604,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47386759581882,
+ "grad_norm": 0.058330077677965164,
+ "learning_rate": 7.229953634444055e-05,
+ "loss": 1.7737380266189575,
+ "step": 2842
+ },
+ {
+ "epoch": 39.48780487804878,
+ "grad_norm": 0.05816008523106575,
+ "learning_rate": 7.213173698975444e-05,
+ "loss": 1.7849770784378052,
+ "step": 2843
+ },
+ {
+ "epoch": 39.501742160278745,
+ "grad_norm": 0.0591905452311039,
+ "learning_rate": 7.1964123641458e-05,
+ "loss": 1.7493488788604736,
+ "step": 2844
+ },
+ {
+ "epoch": 39.51567944250871,
+ "grad_norm": 0.05864933878183365,
+ "learning_rate": 7.179669643459405e-05,
+ "loss": 1.7704007625579834,
+ "step": 2845
+ },
+ {
+ "epoch": 39.52961672473867,
+ "grad_norm": 0.05933962017297745,
+ "learning_rate": 7.162945550405575e-05,
+ "loss": 1.7526596784591675,
+ "step": 2846
+ },
+ {
+ "epoch": 39.54355400696864,
+ "grad_norm": 0.05753380060195923,
+ "learning_rate": 7.146240098458613e-05,
+ "loss": 1.7623823881149292,
+ "step": 2847
+ },
+ {
+ "epoch": 39.55749128919861,
+ "grad_norm": 0.05988965928554535,
+ "learning_rate": 7.129553301077801e-05,
+ "loss": 1.7672151327133179,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57142857142857,
+ "grad_norm": 0.06081433221697807,
+ "learning_rate": 7.112885171707378e-05,
+ "loss": 1.7693394422531128,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58536585365854,
+ "grad_norm": 0.05812366306781769,
+ "learning_rate": 7.096235723776562e-05,
+ "loss": 1.7645395994186401,
+ "step": 2850
+ },
+ {
+ "epoch": 39.599303135888505,
+ "grad_norm": 0.05910315737128258,
+ "learning_rate": 7.079604970699514e-05,
+ "loss": 1.7725062370300293,
+ "step": 2851
+ },
+ {
+ "epoch": 39.613240418118465,
+ "grad_norm": 0.059484075754880905,
+ "learning_rate": 7.062992925875332e-05,
+ "loss": 1.7643908262252808,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62717770034843,
+ "grad_norm": 0.05829835683107376,
+ "learning_rate": 7.046399602688045e-05,
+ "loss": 1.7774662971496582,
+ "step": 2853
+ },
+ {
+ "epoch": 39.641114982578394,
+ "grad_norm": 0.059603478759527206,
+ "learning_rate": 7.029825014506572e-05,
+ "loss": 1.7719018459320068,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65505226480836,
+ "grad_norm": 0.05839652940630913,
+ "learning_rate": 7.013269174684795e-05,
+ "loss": 1.7735795974731445,
+ "step": 2855
+ },
+ {
+ "epoch": 39.66898954703833,
+ "grad_norm": 0.05930941551923752,
+ "learning_rate": 6.996732096561422e-05,
+ "loss": 1.7792577743530273,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68292682926829,
+ "grad_norm": 0.05927743390202522,
+ "learning_rate": 6.980213793460092e-05,
+ "loss": 1.755126714706421,
+ "step": 2857
+ },
+ {
+ "epoch": 39.69686411149826,
+ "grad_norm": 0.05989091843366623,
+ "learning_rate": 6.963714278689304e-05,
+ "loss": 1.7720985412597656,
+ "step": 2858
+ },
+ {
+ "epoch": 39.710801393728225,
+ "grad_norm": 0.058541540056467056,
+ "learning_rate": 6.947233565542417e-05,
+ "loss": 1.7545472383499146,
+ "step": 2859
+ },
+ {
+ "epoch": 39.724738675958186,
+ "grad_norm": 0.059460222721099854,
+ "learning_rate": 6.930771667297653e-05,
+ "loss": 1.7513591051101685,
+ "step": 2860
+ },
+ {
+ "epoch": 39.73867595818815,
+ "grad_norm": 0.06000630557537079,
+ "learning_rate": 6.914328597218042e-05,
+ "loss": 1.7690961360931396,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75261324041812,
+ "grad_norm": 0.06078756973147392,
+ "learning_rate": 6.8979043685515e-05,
+ "loss": 1.7823233604431152,
+ "step": 2862
+ },
+ {
+ "epoch": 39.76655052264808,
+ "grad_norm": 0.06049913540482521,
+ "learning_rate": 6.881498994530708e-05,
+ "loss": 1.7722759246826172,
+ "step": 2863
+ },
+ {
+ "epoch": 39.78048780487805,
+ "grad_norm": 0.059854526072740555,
+ "learning_rate": 6.865112488373186e-05,
+ "loss": 1.7620121240615845,
+ "step": 2864
+ },
+ {
+ "epoch": 39.79442508710802,
+ "grad_norm": 0.05936812236905098,
+ "learning_rate": 6.84874486328125e-05,
+ "loss": 1.7765591144561768,
+ "step": 2865
+ },
+ {
+ "epoch": 39.80836236933798,
+ "grad_norm": 0.061247918754816055,
+ "learning_rate": 6.832396132441993e-05,
+ "loss": 1.776090145111084,
+ "step": 2866
+ },
+ {
+ "epoch": 39.822299651567945,
+ "grad_norm": 0.0605037659406662,
+ "learning_rate": 6.816066309027309e-05,
+ "loss": 1.7756134271621704,
+ "step": 2867
+ },
+ {
+ "epoch": 39.836236933797906,
+ "grad_norm": 0.06012726575136185,
+ "learning_rate": 6.799755406193815e-05,
+ "loss": 1.7574580907821655,
+ "step": 2868
+ },
+ {
+ "epoch": 39.850174216027874,
+ "grad_norm": 0.06041746586561203,
+ "learning_rate": 6.783463437082929e-05,
+ "loss": 1.7667291164398193,
+ "step": 2869
+ },
+ {
+ "epoch": 39.86411149825784,
+ "grad_norm": 0.06069319322705269,
+ "learning_rate": 6.767190414820792e-05,
+ "loss": 1.7681057453155518,
+ "step": 2870
+ },
+ {
+ "epoch": 39.8780487804878,
+ "grad_norm": 0.06130603328347206,
+ "learning_rate": 6.750936352518284e-05,
+ "loss": 1.7589905261993408,
+ "step": 2871
+ },
+ {
+ "epoch": 39.89198606271777,
+ "grad_norm": 0.06082052364945412,
+ "learning_rate": 6.734701263271011e-05,
+ "loss": 1.76715886592865,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90592334494774,
+ "grad_norm": 0.06103082001209259,
+ "learning_rate": 6.718485160159289e-05,
+ "loss": 1.766019344329834,
+ "step": 2873
+ },
+ {
+ "epoch": 39.9198606271777,
+ "grad_norm": 0.06045110151171684,
+ "learning_rate": 6.702288056248145e-05,
+ "loss": 1.768965244293213,
+ "step": 2874
+ },
+ {
+ "epoch": 39.933797909407666,
+ "grad_norm": 0.06195594742894173,
+ "learning_rate": 6.686109964587285e-05,
+ "loss": 1.7693687677383423,
+ "step": 2875
+ },
+ {
+ "epoch": 39.94773519163763,
+ "grad_norm": 0.06063162162899971,
+ "learning_rate": 6.669950898211106e-05,
+ "loss": 1.7556135654449463,
+ "step": 2876
+ },
+ {
+ "epoch": 39.961672473867594,
+ "grad_norm": 0.06114466115832329,
+ "learning_rate": 6.653810870138676e-05,
+ "loss": 1.7742180824279785,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97560975609756,
+ "grad_norm": 0.060473620891571045,
+ "learning_rate": 6.637689893373729e-05,
+ "loss": 1.7638022899627686,
+ "step": 2878
+ },
+ {
+ "epoch": 39.98954703832753,
+ "grad_norm": 0.05960119515657425,
+ "learning_rate": 6.621587980904651e-05,
+ "loss": 1.7725427150726318,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.05046868324279785,
+ "learning_rate": 6.605505145704437e-05,
+ "loss": 1.3241307735443115,
+ "step": 2880
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 3600,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 50,
+ "save_steps": 500,
+ "stateful_callbacks": {
+ "TrainerControl": {
+ "args": {
+ "should_epoch_stop": false,
+ "should_evaluate": true,
+ "should_log": false,
+ "should_save": false,
+ "should_training_stop": false
+ },
+ "attributes": {}
+ }
+ },
+ "total_flos": 1.231062406570967e+18,
+ "train_batch_size": 64,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/base-ssl/checkpoint-2880/training_args.bin b/runs/base-ssl/checkpoint-2880/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..cbb50e43950730a04421678098579c835c9d518d
--- /dev/null
+++ b/runs/base-ssl/checkpoint-2880/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7572b8029663dc4d810f9d514c80dc9b976de220cbe72e5abd832ec6ec2ef18b
+size 5265
diff --git a/runs/base-ssl/checkpoint-3240/chat_template.jinja b/runs/base-ssl/checkpoint-3240/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/base-ssl/checkpoint-3240/chat_template.jinja
@@ -0,0 +1,85 @@
+{%- if tools %}
+ {{- '<|im_start|>system\n' }}
+ {%- if messages[0].role == 'system' %}
+ {{- messages[0].content + '\n\n' }}
+ {%- endif %}
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }}
+ {%- for tool in tools %}
+ {{- "\n" }}
+ {{- tool | tojson }}
+ {%- endfor %}
+ {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }}
+{%- else %}
+ {%- if messages[0].role == 'system' %}
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
+ {%- endif %}
+{%- endif %}
+{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
+{%- for message in messages[::-1] %}
+ {%- set index = (messages|length - 1) - loop.index0 %}
+ {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %}
+ {%- set ns.multi_step_tool = false %}
+ {%- set ns.last_query_index = index %}
+ {%- endif %}
+{%- endfor %}
+{%- for message in messages %}
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
+ {%- elif message.role == "assistant" %}
+ {%- set content = message.content %}
+ {%- set reasoning_content = '' %}
+ {%- if message.reasoning_content is defined and message.reasoning_content is not none %}
+ {%- set reasoning_content = message.reasoning_content %}
+ {%- else %}
+ {%- if '' in message.content %}
+ {%- set content = message.content.split('')[-1].lstrip('\n') %}
+ {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %}
+ {%- endif %}
+ {%- endif %}
+ {%- if loop.index0 > ns.last_query_index %}
+ {%- if loop.last or (not loop.last and reasoning_content) %}
+ {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- if message.tool_calls %}
+ {%- for tool_call in message.tool_calls %}
+ {%- if (loop.first and content) or (not loop.first) %}
+ {{- '\n' }}
+ {%- endif %}
+ {%- if tool_call.function %}
+ {%- set tool_call = tool_call.function %}
+ {%- endif %}
+ {{- '\n{"name": "' }}
+ {{- tool_call.name }}
+ {{- '", "arguments": ' }}
+ {%- if tool_call.arguments is string %}
+ {{- tool_call.arguments }}
+ {%- else %}
+ {{- tool_call.arguments | tojson }}
+ {%- endif %}
+ {{- '}\n' }}
+ {%- endfor %}
+ {%- endif %}
+ {{- '<|im_end|>\n' }}
+ {%- elif message.role == "tool" %}
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
+ {{- '<|im_start|>user' }}
+ {%- endif %}
+ {{- '\n\n' }}
+ {{- message.content }}
+ {{- '\n' }}
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
+ {{- '<|im_end|>\n' }}
+ {%- endif %}
+ {%- endif %}
+{%- endfor %}
+{%- if add_generation_prompt %}
+ {{- '<|im_start|>assistant\n' }}
+ {%- if enable_thinking is defined and enable_thinking is false %}
+ {{- '\n\n\n\n' }}
+ {%- endif %}
+{%- endif %}
\ No newline at end of file
diff --git a/runs/base-ssl/checkpoint-3240/config.json b/runs/base-ssl/checkpoint-3240/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/base-ssl/checkpoint-3240/config.json
@@ -0,0 +1,32 @@
+{
+ "architectures": [
+ "LlamaForCausalLM"
+ ],
+ "attention_bias": false,
+ "attention_dropout": 0.0,
+ "bos_token_id": null,
+ "dtype": "float32",
+ "eos_token_id": 151645,
+ "head_dim": 128,
+ "hidden_act": "silu",
+ "hidden_size": 512,
+ "initializer_range": 0.02,
+ "intermediate_size": 1536,
+ "max_position_embeddings": 2048,
+ "mlp_bias": false,
+ "model_type": "llama",
+ "num_attention_heads": 4,
+ "num_hidden_layers": 20,
+ "num_key_value_heads": 4,
+ "pad_token_id": 151645,
+ "pretraining_tp": 1,
+ "rms_norm_eps": 1e-06,
+ "rope_parameters": {
+ "rope_theta": 10000.0,
+ "rope_type": "default"
+ },
+ "tie_word_embeddings": true,
+ "transformers_version": "5.5.0",
+ "use_cache": false,
+ "vocab_size": 151671
+}
diff --git a/runs/base-ssl/checkpoint-3240/generation_config.json b/runs/base-ssl/checkpoint-3240/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/base-ssl/checkpoint-3240/generation_config.json
@@ -0,0 +1,11 @@
+{
+ "_from_model_config": true,
+ "eos_token_id": [
+ 151645
+ ],
+ "output_attentions": false,
+ "output_hidden_states": false,
+ "pad_token_id": 151645,
+ "transformers_version": "5.5.0",
+ "use_cache": true
+}
diff --git a/runs/base-ssl/checkpoint-3240/model.safetensors b/runs/base-ssl/checkpoint-3240/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..6890b9996f776d6ab73e8a2347a5f6895c834d3e
--- /dev/null
+++ b/runs/base-ssl/checkpoint-3240/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6452c5f220151df44aa9882aafa5dcb7e9e2da9cc9a8c804bbcece44a0a3cd8a
+size 583356232
diff --git a/runs/base-ssl/checkpoint-3240/optimizer.pt b/runs/base-ssl/checkpoint-3240/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..7b023610915bac474612feb7e007854f610497e8
--- /dev/null
+++ b/runs/base-ssl/checkpoint-3240/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:adb3c6af8c893ae752695ff0ed0198e557bff6970eea0ca977d8033fe29e7bad
+size 1166825803
diff --git a/runs/base-ssl/checkpoint-3240/rng_state_0.pth b/runs/base-ssl/checkpoint-3240/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..854d237a4ff7656e8561049ef131e53b73d26e13
--- /dev/null
+++ b/runs/base-ssl/checkpoint-3240/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:be1f0fdefddf6f30886458ed628f8251f23fec39a294e6649a7ab241784b8460
+size 14917
diff --git a/runs/base-ssl/checkpoint-3240/rng_state_1.pth b/runs/base-ssl/checkpoint-3240/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..bf9f97063d7490c565f537598baa2da46c4b6b26
--- /dev/null
+++ b/runs/base-ssl/checkpoint-3240/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:35669f76342834bd66ba665f73a6cfdbe07c4f2c0f41f6e5e6ed2ad3ae67a161
+size 14917
diff --git a/runs/base-ssl/checkpoint-3240/scheduler.pt b/runs/base-ssl/checkpoint-3240/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..26a875c54fc41f3b55217f78e9787c3a1beec0e7
--- /dev/null
+++ b/runs/base-ssl/checkpoint-3240/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ffe46f59a068a92a009d9e85177c3c1b0af06eb72511444aa28197cfb8d5f1be
+size 1465
diff --git a/runs/base-ssl/checkpoint-3240/tokenizer.json b/runs/base-ssl/checkpoint-3240/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/base-ssl/checkpoint-3240/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:59b6776030505d5b441d0727cce137047df748ab15db6ba3a1bac93c123742fb
+size 11424079
diff --git a/runs/base-ssl/checkpoint-3240/tokenizer_config.json b/runs/base-ssl/checkpoint-3240/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/base-ssl/checkpoint-3240/tokenizer_config.json
@@ -0,0 +1,18 @@
+{
+ "add_prefix_space": false,
+ "backend": "tokenizers",
+ "bos_token": null,
+ "clean_up_tokenization_spaces": false,
+ "eos_token": "<|im_end|>",
+ "errors": "replace",
+ "extra_special_tokens": [
+ "<|l2r_pred|>",
+ "<|r2l_pred|>"
+ ],
+ "is_local": false,
+ "model_max_length": 131072,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/base-ssl/checkpoint-3240/trainer_state.json b/runs/base-ssl/checkpoint-3240/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..f14503d77df022a285bf7490582b1bd691fd55cc
--- /dev/null
+++ b/runs/base-ssl/checkpoint-3240/trainer_state.json
@@ -0,0 +1,23066 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 45.0,
+ "eval_steps": 500,
+ "global_step": 3240,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013937282229965157,
+ "grad_norm": 0.2712002694606781,
+ "learning_rate": 0.0,
+ "loss": 4.000947952270508,
+ "step": 1
+ },
+ {
+ "epoch": 0.027874564459930314,
+ "grad_norm": 0.2709888219833374,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 4.000800132751465,
+ "step": 2
+ },
+ {
+ "epoch": 0.041811846689895474,
+ "grad_norm": 0.2721220850944519,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 3.982931613922119,
+ "step": 3
+ },
+ {
+ "epoch": 0.05574912891986063,
+ "grad_norm": 0.24822379648685455,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 3.948713779449463,
+ "step": 4
+ },
+ {
+ "epoch": 0.06968641114982578,
+ "grad_norm": 0.2103811800479889,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 3.908690929412842,
+ "step": 5
+ },
+ {
+ "epoch": 0.08362369337979095,
+ "grad_norm": 0.18375654518604279,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 3.8660929203033447,
+ "step": 6
+ },
+ {
+ "epoch": 0.0975609756097561,
+ "grad_norm": 0.1471690535545349,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 3.82308030128479,
+ "step": 7
+ },
+ {
+ "epoch": 0.11149825783972125,
+ "grad_norm": 0.11132320016622543,
+ "learning_rate": 4.2e-05,
+ "loss": 3.790834426879883,
+ "step": 8
+ },
+ {
+ "epoch": 0.1254355400696864,
+ "grad_norm": 0.08796700090169907,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 3.7589545249938965,
+ "step": 9
+ },
+ {
+ "epoch": 0.13937282229965156,
+ "grad_norm": 0.07089080661535263,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 3.7346723079681396,
+ "step": 10
+ },
+ {
+ "epoch": 0.15331010452961671,
+ "grad_norm": 0.056723613291978836,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 3.7159838676452637,
+ "step": 11
+ },
+ {
+ "epoch": 0.1672473867595819,
+ "grad_norm": 0.04544799029827118,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 3.701421022415161,
+ "step": 12
+ },
+ {
+ "epoch": 0.18118466898954705,
+ "grad_norm": 0.03551485016942024,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 3.691774845123291,
+ "step": 13
+ },
+ {
+ "epoch": 0.1951219512195122,
+ "grad_norm": 0.028209710493683815,
+ "learning_rate": 7.8e-05,
+ "loss": 3.6860086917877197,
+ "step": 14
+ },
+ {
+ "epoch": 0.20905923344947736,
+ "grad_norm": 0.024290181696414948,
+ "learning_rate": 8.4e-05,
+ "loss": 3.6806883811950684,
+ "step": 15
+ },
+ {
+ "epoch": 0.2229965156794425,
+ "grad_norm": 0.022015230730175972,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 3.677751064300537,
+ "step": 16
+ },
+ {
+ "epoch": 0.23693379790940766,
+ "grad_norm": 0.01960836350917816,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 3.6738266944885254,
+ "step": 17
+ },
+ {
+ "epoch": 0.2508710801393728,
+ "grad_norm": 0.017675744369626045,
+ "learning_rate": 0.000102,
+ "loss": 3.6739063262939453,
+ "step": 18
+ },
+ {
+ "epoch": 0.26480836236933797,
+ "grad_norm": 0.01539881993085146,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 3.671247720718384,
+ "step": 19
+ },
+ {
+ "epoch": 0.2787456445993031,
+ "grad_norm": 0.013906505890190601,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 3.66833233833313,
+ "step": 20
+ },
+ {
+ "epoch": 0.2926829268292683,
+ "grad_norm": 0.01149708591401577,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 3.6706337928771973,
+ "step": 21
+ },
+ {
+ "epoch": 0.30662020905923343,
+ "grad_norm": 0.010512279346585274,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 3.667168140411377,
+ "step": 22
+ },
+ {
+ "epoch": 0.3205574912891986,
+ "grad_norm": 0.00897525716573,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 3.6630516052246094,
+ "step": 23
+ },
+ {
+ "epoch": 0.3344947735191638,
+ "grad_norm": 0.008081364445388317,
+ "learning_rate": 0.000138,
+ "loss": 3.6629021167755127,
+ "step": 24
+ },
+ {
+ "epoch": 0.34843205574912894,
+ "grad_norm": 0.0076500303111970425,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 3.66168212890625,
+ "step": 25
+ },
+ {
+ "epoch": 0.3623693379790941,
+ "grad_norm": 0.007083008531481028,
+ "learning_rate": 0.00015,
+ "loss": 3.6564559936523438,
+ "step": 26
+ },
+ {
+ "epoch": 0.37630662020905925,
+ "grad_norm": 0.006654089782387018,
+ "learning_rate": 0.000156,
+ "loss": 3.6590094566345215,
+ "step": 27
+ },
+ {
+ "epoch": 0.3902439024390244,
+ "grad_norm": 0.0073669785633683205,
+ "learning_rate": 0.000162,
+ "loss": 3.651914119720459,
+ "step": 28
+ },
+ {
+ "epoch": 0.40418118466898956,
+ "grad_norm": 0.007247959729284048,
+ "learning_rate": 0.000168,
+ "loss": 3.6557557582855225,
+ "step": 29
+ },
+ {
+ "epoch": 0.4181184668989547,
+ "grad_norm": 0.007229349110275507,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 3.651794910430908,
+ "step": 30
+ },
+ {
+ "epoch": 0.43205574912891986,
+ "grad_norm": 0.008839861489832401,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 3.653074264526367,
+ "step": 31
+ },
+ {
+ "epoch": 0.445993031358885,
+ "grad_norm": 0.009280834347009659,
+ "learning_rate": 0.000186,
+ "loss": 3.6503708362579346,
+ "step": 32
+ },
+ {
+ "epoch": 0.45993031358885017,
+ "grad_norm": 0.008585072122514248,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 3.650331497192383,
+ "step": 33
+ },
+ {
+ "epoch": 0.4738675958188153,
+ "grad_norm": 0.01164434663951397,
+ "learning_rate": 0.000198,
+ "loss": 3.6462929248809814,
+ "step": 34
+ },
+ {
+ "epoch": 0.4878048780487805,
+ "grad_norm": 0.012668018229305744,
+ "learning_rate": 0.000204,
+ "loss": 3.6516757011413574,
+ "step": 35
+ },
+ {
+ "epoch": 0.5017421602787456,
+ "grad_norm": 0.01610603742301464,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 3.647498607635498,
+ "step": 36
+ },
+ {
+ "epoch": 0.5156794425087108,
+ "grad_norm": 0.018993742763996124,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 3.642869472503662,
+ "step": 37
+ },
+ {
+ "epoch": 0.5296167247386759,
+ "grad_norm": 0.020697375759482384,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 3.639193058013916,
+ "step": 38
+ },
+ {
+ "epoch": 0.5435540069686411,
+ "grad_norm": 0.021636122837662697,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 3.630560874938965,
+ "step": 39
+ },
+ {
+ "epoch": 0.5574912891986062,
+ "grad_norm": 0.01893668621778488,
+ "learning_rate": 0.000234,
+ "loss": 3.6265769004821777,
+ "step": 40
+ },
+ {
+ "epoch": 0.5714285714285714,
+ "grad_norm": 0.025133362039923668,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 3.6185407638549805,
+ "step": 41
+ },
+ {
+ "epoch": 0.5853658536585366,
+ "grad_norm": 0.016397792845964432,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 3.609161853790283,
+ "step": 42
+ },
+ {
+ "epoch": 0.5993031358885017,
+ "grad_norm": 0.02059962786734104,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 3.5987398624420166,
+ "step": 43
+ },
+ {
+ "epoch": 0.6132404181184669,
+ "grad_norm": 0.026733839884400368,
+ "learning_rate": 0.000258,
+ "loss": 3.601898193359375,
+ "step": 44
+ },
+ {
+ "epoch": 0.627177700348432,
+ "grad_norm": 0.04592137038707733,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 3.597785472869873,
+ "step": 45
+ },
+ {
+ "epoch": 0.6411149825783972,
+ "grad_norm": 0.14618715643882751,
+ "learning_rate": 0.00027,
+ "loss": 3.597787857055664,
+ "step": 46
+ },
+ {
+ "epoch": 0.6550522648083623,
+ "grad_norm": 0.1228327602148056,
+ "learning_rate": 0.000276,
+ "loss": 3.598362922668457,
+ "step": 47
+ },
+ {
+ "epoch": 0.6689895470383276,
+ "grad_norm": 0.0651344507932663,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 3.5868940353393555,
+ "step": 48
+ },
+ {
+ "epoch": 0.6829268292682927,
+ "grad_norm": 0.030712513253092766,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 3.5800981521606445,
+ "step": 49
+ },
+ {
+ "epoch": 0.6968641114982579,
+ "grad_norm": 0.07069414854049683,
+ "learning_rate": 0.000294,
+ "loss": 3.590576171875,
+ "step": 50
+ },
+ {
+ "epoch": 0.710801393728223,
+ "grad_norm": 0.026333393529057503,
+ "learning_rate": 0.0003,
+ "loss": 3.5740621089935303,
+ "step": 51
+ },
+ {
+ "epoch": 0.7247386759581882,
+ "grad_norm": 0.050806671380996704,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 3.577582836151123,
+ "step": 52
+ },
+ {
+ "epoch": 0.7386759581881533,
+ "grad_norm": 0.04820532724261284,
+ "learning_rate": 0.000312,
+ "loss": 3.5686888694763184,
+ "step": 53
+ },
+ {
+ "epoch": 0.7526132404181185,
+ "grad_norm": 0.03834737837314606,
+ "learning_rate": 0.000318,
+ "loss": 3.571916341781616,
+ "step": 54
+ },
+ {
+ "epoch": 0.7665505226480837,
+ "grad_norm": 0.0663016214966774,
+ "learning_rate": 0.000324,
+ "loss": 3.563366413116455,
+ "step": 55
+ },
+ {
+ "epoch": 0.7804878048780488,
+ "grad_norm": 0.03111632913351059,
+ "learning_rate": 0.00033,
+ "loss": 3.555037021636963,
+ "step": 56
+ },
+ {
+ "epoch": 0.794425087108014,
+ "grad_norm": 0.06139425188302994,
+ "learning_rate": 0.000336,
+ "loss": 3.555377244949341,
+ "step": 57
+ },
+ {
+ "epoch": 0.8083623693379791,
+ "grad_norm": 0.02561746910214424,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 3.5368266105651855,
+ "step": 58
+ },
+ {
+ "epoch": 0.8222996515679443,
+ "grad_norm": 0.06502962112426758,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 3.5318264961242676,
+ "step": 59
+ },
+ {
+ "epoch": 0.8362369337979094,
+ "grad_norm": 0.06968390196561813,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 3.5210607051849365,
+ "step": 60
+ },
+ {
+ "epoch": 0.8501742160278746,
+ "grad_norm": 0.02670745924115181,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 3.5037078857421875,
+ "step": 61
+ },
+ {
+ "epoch": 0.8641114982578397,
+ "grad_norm": 0.07075569778680801,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 3.506938934326172,
+ "step": 62
+ },
+ {
+ "epoch": 0.8780487804878049,
+ "grad_norm": 0.061632659286260605,
+ "learning_rate": 0.000372,
+ "loss": 3.4960665702819824,
+ "step": 63
+ },
+ {
+ "epoch": 0.89198606271777,
+ "grad_norm": 0.10994791984558105,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 3.4926395416259766,
+ "step": 64
+ },
+ {
+ "epoch": 0.9059233449477352,
+ "grad_norm": 0.21027322113513947,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 3.502258777618408,
+ "step": 65
+ },
+ {
+ "epoch": 0.9198606271777003,
+ "grad_norm": 0.1937343329191208,
+ "learning_rate": 0.00039,
+ "loss": 3.5118448734283447,
+ "step": 66
+ },
+ {
+ "epoch": 0.9337979094076655,
+ "grad_norm": 0.07891395688056946,
+ "learning_rate": 0.000396,
+ "loss": 3.487575054168701,
+ "step": 67
+ },
+ {
+ "epoch": 0.9477351916376306,
+ "grad_norm": 0.12915678322315216,
+ "learning_rate": 0.000402,
+ "loss": 3.4890120029449463,
+ "step": 68
+ },
+ {
+ "epoch": 0.9616724738675958,
+ "grad_norm": 0.08530207723379135,
+ "learning_rate": 0.000408,
+ "loss": 3.4755735397338867,
+ "step": 69
+ },
+ {
+ "epoch": 0.975609756097561,
+ "grad_norm": 0.09704860299825668,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 3.4669318199157715,
+ "step": 70
+ },
+ {
+ "epoch": 0.9895470383275261,
+ "grad_norm": 0.07270640879869461,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 3.460634469985962,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.03984597697854042,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 2.590245485305786,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 0.8616236448287964,
+ "eval_runtime": 36.0347,
+ "eval_samples_per_second": 67.768,
+ "eval_steps_per_second": 0.555,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139372822299653,
+ "grad_norm": 0.058285508304834366,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 3.441636562347412,
+ "step": 73
+ },
+ {
+ "epoch": 1.0278745644599303,
+ "grad_norm": 0.07173695415258408,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 3.4476027488708496,
+ "step": 74
+ },
+ {
+ "epoch": 1.0418118466898956,
+ "grad_norm": 0.0367155559360981,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 3.4290428161621094,
+ "step": 75
+ },
+ {
+ "epoch": 1.0557491289198606,
+ "grad_norm": 0.05761358141899109,
+ "learning_rate": 0.00045,
+ "loss": 3.430612564086914,
+ "step": 76
+ },
+ {
+ "epoch": 1.0696864111498259,
+ "grad_norm": 0.06290662288665771,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 3.4222841262817383,
+ "step": 77
+ },
+ {
+ "epoch": 1.083623693379791,
+ "grad_norm": 0.09705018997192383,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 3.4233384132385254,
+ "step": 78
+ },
+ {
+ "epoch": 1.0975609756097562,
+ "grad_norm": 0.09656445682048798,
+ "learning_rate": 0.000468,
+ "loss": 3.422335624694824,
+ "step": 79
+ },
+ {
+ "epoch": 1.1114982578397212,
+ "grad_norm": 0.07884909957647324,
+ "learning_rate": 0.000474,
+ "loss": 3.4133338928222656,
+ "step": 80
+ },
+ {
+ "epoch": 1.1254355400696865,
+ "grad_norm": 0.06679042428731918,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 3.4053287506103516,
+ "step": 81
+ },
+ {
+ "epoch": 1.1393728222996515,
+ "grad_norm": 0.02522652968764305,
+ "learning_rate": 0.000486,
+ "loss": 3.392838478088379,
+ "step": 82
+ },
+ {
+ "epoch": 1.1533101045296168,
+ "grad_norm": 0.09408055245876312,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 3.3952789306640625,
+ "step": 83
+ },
+ {
+ "epoch": 1.1672473867595818,
+ "grad_norm": 0.08980021625757217,
+ "learning_rate": 0.000498,
+ "loss": 3.385244846343994,
+ "step": 84
+ },
+ {
+ "epoch": 1.181184668989547,
+ "grad_norm": 0.08343124389648438,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 3.382103443145752,
+ "step": 85
+ },
+ {
+ "epoch": 1.1951219512195121,
+ "grad_norm": 0.03343554213643074,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 3.374354362487793,
+ "step": 86
+ },
+ {
+ "epoch": 1.2090592334494774,
+ "grad_norm": 0.0852339118719101,
+ "learning_rate": 0.000516,
+ "loss": 3.3802456855773926,
+ "step": 87
+ },
+ {
+ "epoch": 1.2229965156794425,
+ "grad_norm": 0.09159538149833679,
+ "learning_rate": 0.000522,
+ "loss": 3.37576961517334,
+ "step": 88
+ },
+ {
+ "epoch": 1.2369337979094077,
+ "grad_norm": 0.04313444346189499,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 3.360690116882324,
+ "step": 89
+ },
+ {
+ "epoch": 1.2508710801393728,
+ "grad_norm": 0.075523741543293,
+ "learning_rate": 0.000534,
+ "loss": 3.3599460124969482,
+ "step": 90
+ },
+ {
+ "epoch": 1.264808362369338,
+ "grad_norm": 0.08516373485326767,
+ "learning_rate": 0.00054,
+ "loss": 3.3572096824645996,
+ "step": 91
+ },
+ {
+ "epoch": 1.278745644599303,
+ "grad_norm": 0.09553111344575882,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 3.3542261123657227,
+ "step": 92
+ },
+ {
+ "epoch": 1.2926829268292683,
+ "grad_norm": 0.05978025496006012,
+ "learning_rate": 0.000552,
+ "loss": 3.3440048694610596,
+ "step": 93
+ },
+ {
+ "epoch": 1.3066202090592334,
+ "grad_norm": 0.10827190428972244,
+ "learning_rate": 0.000558,
+ "loss": 3.3391332626342773,
+ "step": 94
+ },
+ {
+ "epoch": 1.3205574912891986,
+ "grad_norm": 0.1181376576423645,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 3.3493118286132812,
+ "step": 95
+ },
+ {
+ "epoch": 1.3344947735191637,
+ "grad_norm": 0.08178193867206573,
+ "learning_rate": 0.00057,
+ "loss": 3.3445382118225098,
+ "step": 96
+ },
+ {
+ "epoch": 1.348432055749129,
+ "grad_norm": 0.08283700793981552,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 3.3343238830566406,
+ "step": 97
+ },
+ {
+ "epoch": 1.3623693379790942,
+ "grad_norm": 0.11837095767259598,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 3.3336968421936035,
+ "step": 98
+ },
+ {
+ "epoch": 1.3763066202090593,
+ "grad_norm": 0.08230706304311752,
+ "learning_rate": 0.000588,
+ "loss": 3.3294646739959717,
+ "step": 99
+ },
+ {
+ "epoch": 1.3902439024390243,
+ "grad_norm": 0.09961626678705215,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 3.3242952823638916,
+ "step": 100
+ },
+ {
+ "epoch": 1.4041811846689896,
+ "grad_norm": 0.11294732987880707,
+ "learning_rate": 0.0006,
+ "loss": 3.330348491668701,
+ "step": 101
+ },
+ {
+ "epoch": 1.4181184668989548,
+ "grad_norm": 0.11236022412776947,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 3.322606086730957,
+ "step": 102
+ },
+ {
+ "epoch": 1.4320557491289199,
+ "grad_norm": 0.13230572640895844,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 3.3202784061431885,
+ "step": 103
+ },
+ {
+ "epoch": 1.445993031358885,
+ "grad_norm": 0.0783172994852066,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 3.3082056045532227,
+ "step": 104
+ },
+ {
+ "epoch": 1.4599303135888502,
+ "grad_norm": 0.07376513630151749,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 3.3011245727539062,
+ "step": 105
+ },
+ {
+ "epoch": 1.4738675958188154,
+ "grad_norm": 0.11039287596940994,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 3.2987873554229736,
+ "step": 106
+ },
+ {
+ "epoch": 1.4878048780487805,
+ "grad_norm": 0.0667329952120781,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 3.293043851852417,
+ "step": 107
+ },
+ {
+ "epoch": 1.5017421602787455,
+ "grad_norm": 0.0750635489821434,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 3.2865707874298096,
+ "step": 108
+ },
+ {
+ "epoch": 1.5156794425087108,
+ "grad_norm": 0.055155977606773376,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 3.278069496154785,
+ "step": 109
+ },
+ {
+ "epoch": 1.529616724738676,
+ "grad_norm": 0.07016722112894058,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 3.2837281227111816,
+ "step": 110
+ },
+ {
+ "epoch": 1.543554006968641,
+ "grad_norm": 0.09884901344776154,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 3.2782273292541504,
+ "step": 111
+ },
+ {
+ "epoch": 1.5574912891986061,
+ "grad_norm": 0.09402419626712799,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 3.2757701873779297,
+ "step": 112
+ },
+ {
+ "epoch": 1.5714285714285714,
+ "grad_norm": 0.06898307800292969,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 3.2636804580688477,
+ "step": 113
+ },
+ {
+ "epoch": 1.5853658536585367,
+ "grad_norm": 0.08733519911766052,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 3.2676005363464355,
+ "step": 114
+ },
+ {
+ "epoch": 1.5993031358885017,
+ "grad_norm": 0.05769918113946915,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 3.2505807876586914,
+ "step": 115
+ },
+ {
+ "epoch": 1.6132404181184667,
+ "grad_norm": 0.054460495710372925,
+ "learning_rate": 0.000599973080557108,
+ "loss": 3.259110689163208,
+ "step": 116
+ },
+ {
+ "epoch": 1.627177700348432,
+ "grad_norm": 0.055243365466594696,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 3.2438201904296875,
+ "step": 117
+ },
+ {
+ "epoch": 1.6411149825783973,
+ "grad_norm": 0.06122216582298279,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 3.2397255897521973,
+ "step": 118
+ },
+ {
+ "epoch": 1.6550522648083623,
+ "grad_norm": 0.05418086051940918,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 3.236057758331299,
+ "step": 119
+ },
+ {
+ "epoch": 1.6689895470383276,
+ "grad_norm": 0.04995540529489517,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 3.224294662475586,
+ "step": 120
+ },
+ {
+ "epoch": 1.6829268292682928,
+ "grad_norm": 0.057540878653526306,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 3.2251172065734863,
+ "step": 121
+ },
+ {
+ "epoch": 1.6968641114982579,
+ "grad_norm": 0.05698078125715256,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 3.228363513946533,
+ "step": 122
+ },
+ {
+ "epoch": 1.710801393728223,
+ "grad_norm": 0.07352662831544876,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 3.2196407318115234,
+ "step": 123
+ },
+ {
+ "epoch": 1.7247386759581882,
+ "grad_norm": 0.08591686934232712,
+ "learning_rate": 0.000599936710690505,
+ "loss": 3.2231035232543945,
+ "step": 124
+ },
+ {
+ "epoch": 1.7386759581881535,
+ "grad_norm": 0.06970733404159546,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 3.2126383781433105,
+ "step": 125
+ },
+ {
+ "epoch": 1.7526132404181185,
+ "grad_norm": 0.04472116380929947,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 3.216801881790161,
+ "step": 126
+ },
+ {
+ "epoch": 1.7665505226480835,
+ "grad_norm": 0.059133559465408325,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 3.2136807441711426,
+ "step": 127
+ },
+ {
+ "epoch": 1.7804878048780488,
+ "grad_norm": 0.08288449794054031,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 3.210519552230835,
+ "step": 128
+ },
+ {
+ "epoch": 1.794425087108014,
+ "grad_norm": 0.09659463912248611,
+ "learning_rate": 0.00059990620421714,
+ "loss": 3.205916404724121,
+ "step": 129
+ },
+ {
+ "epoch": 1.8083623693379791,
+ "grad_norm": 0.08611937612295151,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 3.206793785095215,
+ "step": 130
+ },
+ {
+ "epoch": 1.8222996515679442,
+ "grad_norm": 0.06448066979646683,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 3.2026424407958984,
+ "step": 131
+ },
+ {
+ "epoch": 1.8362369337979094,
+ "grad_norm": 0.07323113083839417,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 3.1864631175994873,
+ "step": 132
+ },
+ {
+ "epoch": 1.8501742160278747,
+ "grad_norm": 0.0739368200302124,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 3.1875557899475098,
+ "step": 133
+ },
+ {
+ "epoch": 1.8641114982578397,
+ "grad_norm": 0.08289099484682083,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 3.1901979446411133,
+ "step": 134
+ },
+ {
+ "epoch": 1.8780487804878048,
+ "grad_norm": 0.06641175597906113,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 3.1776785850524902,
+ "step": 135
+ },
+ {
+ "epoch": 1.89198606271777,
+ "grad_norm": 0.04873652383685112,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 3.1743667125701904,
+ "step": 136
+ },
+ {
+ "epoch": 1.9059233449477353,
+ "grad_norm": 0.04623038321733475,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 3.1759986877441406,
+ "step": 137
+ },
+ {
+ "epoch": 1.9198606271777003,
+ "grad_norm": 0.059709370136260986,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 3.1702799797058105,
+ "step": 138
+ },
+ {
+ "epoch": 1.9337979094076654,
+ "grad_norm": 0.040581051260232925,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 3.1607465744018555,
+ "step": 139
+ },
+ {
+ "epoch": 1.9477351916376306,
+ "grad_norm": 0.04940655827522278,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 3.1620500087738037,
+ "step": 140
+ },
+ {
+ "epoch": 1.961672473867596,
+ "grad_norm": 0.055740341544151306,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 3.1535825729370117,
+ "step": 141
+ },
+ {
+ "epoch": 1.975609756097561,
+ "grad_norm": 0.06836569309234619,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 3.1512832641601562,
+ "step": 142
+ },
+ {
+ "epoch": 1.989547038327526,
+ "grad_norm": 0.08451569080352783,
+ "learning_rate": 0.000599788973374255,
+ "loss": 3.147432804107666,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.06781627237796783,
+ "learning_rate": 0.000599778806120077,
+ "loss": 2.3624467849731445,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 0.7888243794441223,
+ "eval_runtime": 37.0572,
+ "eval_samples_per_second": 65.898,
+ "eval_steps_per_second": 0.54,
+ "step": 144
+ },
+ {
+ "epoch": 2.013937282229965,
+ "grad_norm": 0.045119598507881165,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 3.139284610748291,
+ "step": 145
+ },
+ {
+ "epoch": 2.0278745644599305,
+ "grad_norm": 0.09132017195224762,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 3.140348434448242,
+ "step": 146
+ },
+ {
+ "epoch": 2.0418118466898956,
+ "grad_norm": 0.07457596063613892,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 3.140091896057129,
+ "step": 147
+ },
+ {
+ "epoch": 2.0557491289198606,
+ "grad_norm": 0.07544369250535965,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 3.1411213874816895,
+ "step": 148
+ },
+ {
+ "epoch": 2.0696864111498257,
+ "grad_norm": 0.046033963561058044,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 3.1405649185180664,
+ "step": 149
+ },
+ {
+ "epoch": 2.083623693379791,
+ "grad_norm": 0.06651527434587479,
+ "learning_rate": 0.000599712781599403,
+ "loss": 3.135124683380127,
+ "step": 150
+ },
+ {
+ "epoch": 2.097560975609756,
+ "grad_norm": 0.07238955795764923,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 3.1302051544189453,
+ "step": 151
+ },
+ {
+ "epoch": 2.1114982578397212,
+ "grad_norm": 0.06696683913469315,
+ "learning_rate": 0.000599688860879549,
+ "loss": 3.128504991531372,
+ "step": 152
+ },
+ {
+ "epoch": 2.1254355400696863,
+ "grad_norm": 0.042010076344013214,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 3.119443893432617,
+ "step": 153
+ },
+ {
+ "epoch": 2.1393728222996518,
+ "grad_norm": 0.053164687007665634,
+ "learning_rate": 0.000599663984012462,
+ "loss": 3.1174211502075195,
+ "step": 154
+ },
+ {
+ "epoch": 2.153310104529617,
+ "grad_norm": 0.047281116247177124,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 3.1211044788360596,
+ "step": 155
+ },
+ {
+ "epoch": 2.167247386759582,
+ "grad_norm": 0.0531938374042511,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 3.1136691570281982,
+ "step": 156
+ },
+ {
+ "epoch": 2.181184668989547,
+ "grad_norm": 0.0702054500579834,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 3.112502336502075,
+ "step": 157
+ },
+ {
+ "epoch": 2.1951219512195124,
+ "grad_norm": 0.07261929661035538,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 3.1049346923828125,
+ "step": 158
+ },
+ {
+ "epoch": 2.2090592334494774,
+ "grad_norm": 0.06666582822799683,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 3.1094369888305664,
+ "step": 159
+ },
+ {
+ "epoch": 2.2229965156794425,
+ "grad_norm": 0.047446250915527344,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 3.105876922607422,
+ "step": 160
+ },
+ {
+ "epoch": 2.2369337979094075,
+ "grad_norm": 0.03833230584859848,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 3.104224681854248,
+ "step": 161
+ },
+ {
+ "epoch": 2.250871080139373,
+ "grad_norm": 0.04562874883413315,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 3.105830192565918,
+ "step": 162
+ },
+ {
+ "epoch": 2.264808362369338,
+ "grad_norm": 0.0635828971862793,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 3.1061713695526123,
+ "step": 163
+ },
+ {
+ "epoch": 2.278745644599303,
+ "grad_norm": 0.09712212532758713,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 3.108053207397461,
+ "step": 164
+ },
+ {
+ "epoch": 2.292682926829268,
+ "grad_norm": 0.15060372650623322,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 3.126777172088623,
+ "step": 165
+ },
+ {
+ "epoch": 2.3066202090592336,
+ "grad_norm": 0.12047530710697174,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 3.116323471069336,
+ "step": 166
+ },
+ {
+ "epoch": 2.3205574912891986,
+ "grad_norm": 0.07486861199140549,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 3.1138410568237305,
+ "step": 167
+ },
+ {
+ "epoch": 2.3344947735191637,
+ "grad_norm": 0.07746157795190811,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 3.1107101440429688,
+ "step": 168
+ },
+ {
+ "epoch": 2.3484320557491287,
+ "grad_norm": 0.0804097130894661,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 3.1073827743530273,
+ "step": 169
+ },
+ {
+ "epoch": 2.362369337979094,
+ "grad_norm": 0.0559227392077446,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 3.102102041244507,
+ "step": 170
+ },
+ {
+ "epoch": 2.3763066202090593,
+ "grad_norm": 0.05415646359324455,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 3.096550464630127,
+ "step": 171
+ },
+ {
+ "epoch": 2.3902439024390243,
+ "grad_norm": 0.0463285967707634,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 3.0833563804626465,
+ "step": 172
+ },
+ {
+ "epoch": 2.40418118466899,
+ "grad_norm": 0.04705670103430748,
+ "learning_rate": 0.000599379982511273,
+ "loss": 3.0935018062591553,
+ "step": 173
+ },
+ {
+ "epoch": 2.418118466898955,
+ "grad_norm": 0.03608846664428711,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 3.085629463195801,
+ "step": 174
+ },
+ {
+ "epoch": 2.43205574912892,
+ "grad_norm": 0.03648562356829643,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 3.086639165878296,
+ "step": 175
+ },
+ {
+ "epoch": 2.445993031358885,
+ "grad_norm": 0.03640111908316612,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 3.088339328765869,
+ "step": 176
+ },
+ {
+ "epoch": 2.45993031358885,
+ "grad_norm": 0.029915692284703255,
+ "learning_rate": 0.000599309205504528,
+ "loss": 3.0802769660949707,
+ "step": 177
+ },
+ {
+ "epoch": 2.4738675958188154,
+ "grad_norm": 0.031756628304719925,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 3.0739364624023438,
+ "step": 178
+ },
+ {
+ "epoch": 2.4878048780487805,
+ "grad_norm": 0.03106086328625679,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 3.07144832611084,
+ "step": 179
+ },
+ {
+ "epoch": 2.5017421602787455,
+ "grad_norm": 0.03892781585454941,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 3.074242353439331,
+ "step": 180
+ },
+ {
+ "epoch": 2.515679442508711,
+ "grad_norm": 0.05611228197813034,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 3.0675928592681885,
+ "step": 181
+ },
+ {
+ "epoch": 2.529616724738676,
+ "grad_norm": 0.03397630900144577,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 3.073423147201538,
+ "step": 182
+ },
+ {
+ "epoch": 2.543554006968641,
+ "grad_norm": 0.04135085269808769,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 3.0808069705963135,
+ "step": 183
+ },
+ {
+ "epoch": 2.557491289198606,
+ "grad_norm": 0.03421049192547798,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 3.0616936683654785,
+ "step": 184
+ },
+ {
+ "epoch": 2.571428571428571,
+ "grad_norm": 0.030827628448605537,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 3.0656299591064453,
+ "step": 185
+ },
+ {
+ "epoch": 2.5853658536585367,
+ "grad_norm": 0.033190369606018066,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 3.0479578971862793,
+ "step": 186
+ },
+ {
+ "epoch": 2.5993031358885017,
+ "grad_norm": 0.026774903759360313,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 3.054133653640747,
+ "step": 187
+ },
+ {
+ "epoch": 2.6132404181184667,
+ "grad_norm": 0.03240266814827919,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 3.0536394119262695,
+ "step": 188
+ },
+ {
+ "epoch": 2.6271777003484322,
+ "grad_norm": 0.04305516183376312,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 3.048996925354004,
+ "step": 189
+ },
+ {
+ "epoch": 2.6411149825783973,
+ "grad_norm": 0.07109381258487701,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 3.0558314323425293,
+ "step": 190
+ },
+ {
+ "epoch": 2.6550522648083623,
+ "grad_norm": 0.11467248201370239,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 3.0587801933288574,
+ "step": 191
+ },
+ {
+ "epoch": 2.6689895470383274,
+ "grad_norm": 0.13839758932590485,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 3.0634102821350098,
+ "step": 192
+ },
+ {
+ "epoch": 2.682926829268293,
+ "grad_norm": 0.09269433468580246,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 3.0586462020874023,
+ "step": 193
+ },
+ {
+ "epoch": 2.696864111498258,
+ "grad_norm": 0.0611812099814415,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 3.054201602935791,
+ "step": 194
+ },
+ {
+ "epoch": 2.710801393728223,
+ "grad_norm": 0.05347125604748726,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 3.054572105407715,
+ "step": 195
+ },
+ {
+ "epoch": 2.7247386759581884,
+ "grad_norm": 0.05996708199381828,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 3.0486035346984863,
+ "step": 196
+ },
+ {
+ "epoch": 2.7386759581881535,
+ "grad_norm": 0.06146618723869324,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 3.0344629287719727,
+ "step": 197
+ },
+ {
+ "epoch": 2.7526132404181185,
+ "grad_norm": 0.04754327982664108,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 3.0211029052734375,
+ "step": 198
+ },
+ {
+ "epoch": 2.7665505226480835,
+ "grad_norm": 0.044388528913259506,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 3.034595012664795,
+ "step": 199
+ },
+ {
+ "epoch": 2.7804878048780486,
+ "grad_norm": 0.04255649819970131,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 3.037287950515747,
+ "step": 200
+ },
+ {
+ "epoch": 2.794425087108014,
+ "grad_norm": 0.043139949440956116,
+ "learning_rate": 0.000598804365316586,
+ "loss": 3.0366177558898926,
+ "step": 201
+ },
+ {
+ "epoch": 2.808362369337979,
+ "grad_norm": 0.03383412957191467,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 3.033888101577759,
+ "step": 202
+ },
+ {
+ "epoch": 2.822299651567944,
+ "grad_norm": 0.03446805849671364,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 3.022144079208374,
+ "step": 203
+ },
+ {
+ "epoch": 2.8362369337979096,
+ "grad_norm": 0.029725519940257072,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 3.0208263397216797,
+ "step": 204
+ },
+ {
+ "epoch": 2.8501742160278747,
+ "grad_norm": 0.030237704515457153,
+ "learning_rate": 0.000598706872384039,
+ "loss": 3.0251193046569824,
+ "step": 205
+ },
+ {
+ "epoch": 2.8641114982578397,
+ "grad_norm": 0.03186488524079323,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 3.0246212482452393,
+ "step": 206
+ },
+ {
+ "epoch": 2.8780487804878048,
+ "grad_norm": 0.02844928577542305,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 3.0075716972351074,
+ "step": 207
+ },
+ {
+ "epoch": 2.89198606271777,
+ "grad_norm": 0.0350780263543129,
+ "learning_rate": 0.000598631251036868,
+ "loss": 3.0121424198150635,
+ "step": 208
+ },
+ {
+ "epoch": 2.9059233449477353,
+ "grad_norm": 0.04267824813723564,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 3.0099010467529297,
+ "step": 209
+ },
+ {
+ "epoch": 2.9198606271777003,
+ "grad_norm": 0.042932625859975815,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 3.0122969150543213,
+ "step": 210
+ },
+ {
+ "epoch": 2.9337979094076654,
+ "grad_norm": 0.04570756480097771,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 3.0111446380615234,
+ "step": 211
+ },
+ {
+ "epoch": 2.947735191637631,
+ "grad_norm": 0.04473821446299553,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 2.9976413249969482,
+ "step": 212
+ },
+ {
+ "epoch": 2.961672473867596,
+ "grad_norm": 0.040896713733673096,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 2.9942758083343506,
+ "step": 213
+ },
+ {
+ "epoch": 2.975609756097561,
+ "grad_norm": 0.04459039121866226,
+ "learning_rate": 0.000598473577921366,
+ "loss": 2.998690128326416,
+ "step": 214
+ },
+ {
+ "epoch": 2.989547038327526,
+ "grad_norm": 0.039927951991558075,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 2.988520383834839,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.030261589214205742,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 2.2433667182922363,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 0.7514154314994812,
+ "eval_runtime": 37.2184,
+ "eval_samples_per_second": 65.613,
+ "eval_steps_per_second": 0.537,
+ "step": 216
+ },
+ {
+ "epoch": 3.013937282229965,
+ "grad_norm": 0.03271438181400299,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 2.983100652694702,
+ "step": 217
+ },
+ {
+ "epoch": 3.0278745644599305,
+ "grad_norm": 0.045161835849285126,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 2.9824085235595703,
+ "step": 218
+ },
+ {
+ "epoch": 3.0418118466898956,
+ "grad_norm": 0.041259463876485825,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 2.980112075805664,
+ "step": 219
+ },
+ {
+ "epoch": 3.0557491289198606,
+ "grad_norm": 0.04854132980108261,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 2.9802699089050293,
+ "step": 220
+ },
+ {
+ "epoch": 3.0696864111498257,
+ "grad_norm": 0.06712493300437927,
+ "learning_rate": 0.000598278794687186,
+ "loss": 2.963736057281494,
+ "step": 221
+ },
+ {
+ "epoch": 3.083623693379791,
+ "grad_norm": 0.07551158964633942,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 2.9780850410461426,
+ "step": 222
+ },
+ {
+ "epoch": 3.097560975609756,
+ "grad_norm": 0.1004587933421135,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 2.982564926147461,
+ "step": 223
+ },
+ {
+ "epoch": 3.1114982578397212,
+ "grad_norm": 0.12604698538780212,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 2.994123697280884,
+ "step": 224
+ },
+ {
+ "epoch": 3.1254355400696863,
+ "grad_norm": 0.13300281763076782,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 3.0030934810638428,
+ "step": 225
+ },
+ {
+ "epoch": 3.1393728222996518,
+ "grad_norm": 0.09192433208227158,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 2.99415922164917,
+ "step": 226
+ },
+ {
+ "epoch": 3.153310104529617,
+ "grad_norm": 0.07332997024059296,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 2.9832448959350586,
+ "step": 227
+ },
+ {
+ "epoch": 3.167247386759582,
+ "grad_norm": 0.05673393979668617,
+ "learning_rate": 0.00059807235435179,
+ "loss": 2.9781603813171387,
+ "step": 228
+ },
+ {
+ "epoch": 3.181184668989547,
+ "grad_norm": 0.05591209977865219,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 2.9844987392425537,
+ "step": 229
+ },
+ {
+ "epoch": 3.1951219512195124,
+ "grad_norm": 0.04706789553165436,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 2.9794564247131348,
+ "step": 230
+ },
+ {
+ "epoch": 3.2090592334494774,
+ "grad_norm": 0.04533008486032486,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 2.963930606842041,
+ "step": 231
+ },
+ {
+ "epoch": 3.2229965156794425,
+ "grad_norm": 0.0363367535173893,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 2.9743711948394775,
+ "step": 232
+ },
+ {
+ "epoch": 3.2369337979094075,
+ "grad_norm": 0.035832252353429794,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 2.9637725353240967,
+ "step": 233
+ },
+ {
+ "epoch": 3.250871080139373,
+ "grad_norm": 0.03634851798415184,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 2.971634864807129,
+ "step": 234
+ },
+ {
+ "epoch": 3.264808362369338,
+ "grad_norm": 0.036877233535051346,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 2.960113286972046,
+ "step": 235
+ },
+ {
+ "epoch": 3.278745644599303,
+ "grad_norm": 0.02930021658539772,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 2.948853015899658,
+ "step": 236
+ },
+ {
+ "epoch": 3.292682926829268,
+ "grad_norm": 0.029241658747196198,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 2.957648277282715,
+ "step": 237
+ },
+ {
+ "epoch": 3.3066202090592336,
+ "grad_norm": 0.029683494940400124,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 2.9501960277557373,
+ "step": 238
+ },
+ {
+ "epoch": 3.3205574912891986,
+ "grad_norm": 0.028418797999620438,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 2.9593586921691895,
+ "step": 239
+ },
+ {
+ "epoch": 3.3344947735191637,
+ "grad_norm": 0.029084153473377228,
+ "learning_rate": 0.000597691359743243,
+ "loss": 2.957581043243408,
+ "step": 240
+ },
+ {
+ "epoch": 3.3484320557491287,
+ "grad_norm": 0.03031332418322563,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 2.9465126991271973,
+ "step": 241
+ },
+ {
+ "epoch": 3.362369337979094,
+ "grad_norm": 0.028176147490739822,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 2.9427034854888916,
+ "step": 242
+ },
+ {
+ "epoch": 3.3763066202090593,
+ "grad_norm": 0.025935526937246323,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 2.933248996734619,
+ "step": 243
+ },
+ {
+ "epoch": 3.3902439024390243,
+ "grad_norm": 0.026524877175688744,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 2.9334826469421387,
+ "step": 244
+ },
+ {
+ "epoch": 3.40418118466899,
+ "grad_norm": 0.026807013899087906,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 2.9502480030059814,
+ "step": 245
+ },
+ {
+ "epoch": 3.418118466898955,
+ "grad_norm": 0.026440076529979706,
+ "learning_rate": 0.000597488038559129,
+ "loss": 2.9336085319519043,
+ "step": 246
+ },
+ {
+ "epoch": 3.43205574912892,
+ "grad_norm": 0.02752632275223732,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 2.937425374984741,
+ "step": 247
+ },
+ {
+ "epoch": 3.445993031358885,
+ "grad_norm": 0.027490021660923958,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 2.9357755184173584,
+ "step": 248
+ },
+ {
+ "epoch": 3.45993031358885,
+ "grad_norm": 0.03389354050159454,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 2.934713363647461,
+ "step": 249
+ },
+ {
+ "epoch": 3.4738675958188154,
+ "grad_norm": 0.042289797216653824,
+ "learning_rate": 0.000597347745466109,
+ "loss": 2.9363629817962646,
+ "step": 250
+ },
+ {
+ "epoch": 3.4878048780487805,
+ "grad_norm": 0.07276978343725204,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 2.946735382080078,
+ "step": 251
+ },
+ {
+ "epoch": 3.5017421602787455,
+ "grad_norm": 0.09471797943115234,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 2.9240806102752686,
+ "step": 252
+ },
+ {
+ "epoch": 3.515679442508711,
+ "grad_norm": 0.09386000782251358,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 2.9194839000701904,
+ "step": 253
+ },
+ {
+ "epoch": 3.529616724738676,
+ "grad_norm": 0.1176624521613121,
+ "learning_rate": 0.000597203657966319,
+ "loss": 2.9324824810028076,
+ "step": 254
+ },
+ {
+ "epoch": 3.543554006968641,
+ "grad_norm": 0.0723927766084671,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 2.932208776473999,
+ "step": 255
+ },
+ {
+ "epoch": 3.557491289198606,
+ "grad_norm": 0.06314370036125183,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 2.936681032180786,
+ "step": 256
+ },
+ {
+ "epoch": 3.571428571428571,
+ "grad_norm": 0.06432153284549713,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 2.924858331680298,
+ "step": 257
+ },
+ {
+ "epoch": 3.5853658536585367,
+ "grad_norm": 0.07495246082544327,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 2.918736696243286,
+ "step": 258
+ },
+ {
+ "epoch": 3.5993031358885017,
+ "grad_norm": 0.058007508516311646,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 2.92120361328125,
+ "step": 259
+ },
+ {
+ "epoch": 3.6132404181184667,
+ "grad_norm": 0.047224972397089005,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 2.9181740283966064,
+ "step": 260
+ },
+ {
+ "epoch": 3.6271777003484322,
+ "grad_norm": 0.04775157943367958,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 2.9145660400390625,
+ "step": 261
+ },
+ {
+ "epoch": 3.6411149825783973,
+ "grad_norm": 0.05087953805923462,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 2.9094574451446533,
+ "step": 262
+ },
+ {
+ "epoch": 3.6550522648083623,
+ "grad_norm": 0.047325216233730316,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 2.9127790927886963,
+ "step": 263
+ },
+ {
+ "epoch": 3.6689895470383274,
+ "grad_norm": 0.04005662724375725,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 2.9124414920806885,
+ "step": 264
+ },
+ {
+ "epoch": 3.682926829268293,
+ "grad_norm": 0.03284832462668419,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 2.897369861602783,
+ "step": 265
+ },
+ {
+ "epoch": 3.696864111498258,
+ "grad_norm": 0.03538643941283226,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 2.8912787437438965,
+ "step": 266
+ },
+ {
+ "epoch": 3.710801393728223,
+ "grad_norm": 0.0338534340262413,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 2.904737949371338,
+ "step": 267
+ },
+ {
+ "epoch": 3.7247386759581884,
+ "grad_norm": 0.03059707209467888,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 2.910109519958496,
+ "step": 268
+ },
+ {
+ "epoch": 3.7386759581881535,
+ "grad_norm": 0.027421824634075165,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 2.8953540325164795,
+ "step": 269
+ },
+ {
+ "epoch": 3.7526132404181185,
+ "grad_norm": 0.031095022335648537,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 2.8983192443847656,
+ "step": 270
+ },
+ {
+ "epoch": 3.7665505226480835,
+ "grad_norm": 0.03075260855257511,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 2.9002010822296143,
+ "step": 271
+ },
+ {
+ "epoch": 3.7804878048780486,
+ "grad_norm": 0.030917232856154442,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 2.8886561393737793,
+ "step": 272
+ },
+ {
+ "epoch": 3.794425087108014,
+ "grad_norm": 0.03267431631684303,
+ "learning_rate": 0.000596467483454833,
+ "loss": 2.8845345973968506,
+ "step": 273
+ },
+ {
+ "epoch": 3.808362369337979,
+ "grad_norm": 0.034112598747015,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 2.8842294216156006,
+ "step": 274
+ },
+ {
+ "epoch": 3.822299651567944,
+ "grad_norm": 0.038153596222400665,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 2.866973400115967,
+ "step": 275
+ },
+ {
+ "epoch": 3.8362369337979096,
+ "grad_norm": 0.033103615045547485,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 2.8709988594055176,
+ "step": 276
+ },
+ {
+ "epoch": 3.8501742160278747,
+ "grad_norm": 0.030708827078342438,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 2.8715577125549316,
+ "step": 277
+ },
+ {
+ "epoch": 3.8641114982578397,
+ "grad_norm": 0.03427499905228615,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 2.8766040802001953,
+ "step": 278
+ },
+ {
+ "epoch": 3.8780487804878048,
+ "grad_norm": 0.042216721922159195,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 2.8672261238098145,
+ "step": 279
+ },
+ {
+ "epoch": 3.89198606271777,
+ "grad_norm": 0.034656424075365067,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 2.860102653503418,
+ "step": 280
+ },
+ {
+ "epoch": 3.9059233449477353,
+ "grad_norm": 0.03288520127534866,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 2.8540444374084473,
+ "step": 281
+ },
+ {
+ "epoch": 3.9198606271777003,
+ "grad_norm": 0.041709382086992264,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 2.872581958770752,
+ "step": 282
+ },
+ {
+ "epoch": 3.9337979094076654,
+ "grad_norm": 0.04955075681209564,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 2.874307632446289,
+ "step": 283
+ },
+ {
+ "epoch": 3.947735191637631,
+ "grad_norm": 0.05372118577361107,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 2.861191749572754,
+ "step": 284
+ },
+ {
+ "epoch": 3.961672473867596,
+ "grad_norm": 0.05855486914515495,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 2.8542709350585938,
+ "step": 285
+ },
+ {
+ "epoch": 3.975609756097561,
+ "grad_norm": 0.05442376434803009,
+ "learning_rate": 0.000595914592474791,
+ "loss": 2.858576536178589,
+ "step": 286
+ },
+ {
+ "epoch": 3.989547038327526,
+ "grad_norm": 0.06468870490789413,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 2.8510026931762695,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.038657791912555695,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 2.1422531604766846,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 0.7195093631744385,
+ "eval_runtime": 39.1927,
+ "eval_samples_per_second": 62.308,
+ "eval_steps_per_second": 0.51,
+ "step": 288
+ },
+ {
+ "epoch": 4.013937282229965,
+ "grad_norm": 0.041369788348674774,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 2.8407950401306152,
+ "step": 289
+ },
+ {
+ "epoch": 4.02787456445993,
+ "grad_norm": 0.045097772032022476,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 2.8446922302246094,
+ "step": 290
+ },
+ {
+ "epoch": 4.041811846689895,
+ "grad_norm": 0.05102979391813278,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 2.8316476345062256,
+ "step": 291
+ },
+ {
+ "epoch": 4.055749128919861,
+ "grad_norm": 0.05429252237081528,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 2.8510334491729736,
+ "step": 292
+ },
+ {
+ "epoch": 4.069686411149826,
+ "grad_norm": 0.0761060118675232,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 2.8289966583251953,
+ "step": 293
+ },
+ {
+ "epoch": 4.083623693379791,
+ "grad_norm": 0.09525997191667557,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 2.843992233276367,
+ "step": 294
+ },
+ {
+ "epoch": 4.097560975609756,
+ "grad_norm": 0.09715712070465088,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 2.8543810844421387,
+ "step": 295
+ },
+ {
+ "epoch": 4.111498257839721,
+ "grad_norm": 0.0634903833270073,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 2.8456456661224365,
+ "step": 296
+ },
+ {
+ "epoch": 4.125435540069686,
+ "grad_norm": 0.05771167576313019,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 2.8387022018432617,
+ "step": 297
+ },
+ {
+ "epoch": 4.139372822299651,
+ "grad_norm": 0.05440817028284073,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 2.841508388519287,
+ "step": 298
+ },
+ {
+ "epoch": 4.153310104529616,
+ "grad_norm": 0.0550493523478508,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 2.833531618118286,
+ "step": 299
+ },
+ {
+ "epoch": 4.167247386759582,
+ "grad_norm": 0.04252418503165245,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 2.8254685401916504,
+ "step": 300
+ },
+ {
+ "epoch": 4.181184668989547,
+ "grad_norm": 0.042833492159843445,
+ "learning_rate": 0.000595227087813793,
+ "loss": 2.8289575576782227,
+ "step": 301
+ },
+ {
+ "epoch": 4.195121951219512,
+ "grad_norm": 0.038360171020030975,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 2.836550712585449,
+ "step": 302
+ },
+ {
+ "epoch": 4.209059233449477,
+ "grad_norm": 0.03655572608113289,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 2.8222808837890625,
+ "step": 303
+ },
+ {
+ "epoch": 4.2229965156794425,
+ "grad_norm": 0.03215418756008148,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 2.818066120147705,
+ "step": 304
+ },
+ {
+ "epoch": 4.2369337979094075,
+ "grad_norm": 0.031601350754499435,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 2.809666395187378,
+ "step": 305
+ },
+ {
+ "epoch": 4.2508710801393725,
+ "grad_norm": 0.03221198916435242,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 2.8137047290802,
+ "step": 306
+ },
+ {
+ "epoch": 4.264808362369338,
+ "grad_norm": 0.03107992745935917,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 2.822840690612793,
+ "step": 307
+ },
+ {
+ "epoch": 4.2787456445993035,
+ "grad_norm": 0.032328397035598755,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 2.8012430667877197,
+ "step": 308
+ },
+ {
+ "epoch": 4.2926829268292686,
+ "grad_norm": 0.029429661110043526,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 2.806474447250366,
+ "step": 309
+ },
+ {
+ "epoch": 4.306620209059234,
+ "grad_norm": 0.03430404141545296,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 2.7917184829711914,
+ "step": 310
+ },
+ {
+ "epoch": 4.320557491289199,
+ "grad_norm": 0.03543714061379433,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 2.798417091369629,
+ "step": 311
+ },
+ {
+ "epoch": 4.334494773519164,
+ "grad_norm": 0.04099712520837784,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 2.793095588684082,
+ "step": 312
+ },
+ {
+ "epoch": 4.348432055749129,
+ "grad_norm": 0.046607524156570435,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 2.807809829711914,
+ "step": 313
+ },
+ {
+ "epoch": 4.362369337979094,
+ "grad_norm": 0.048917099833488464,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 2.8017094135284424,
+ "step": 314
+ },
+ {
+ "epoch": 4.376306620209059,
+ "grad_norm": 0.05221967399120331,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 2.7990846633911133,
+ "step": 315
+ },
+ {
+ "epoch": 4.390243902439025,
+ "grad_norm": 0.05263383314013481,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 2.810983657836914,
+ "step": 316
+ },
+ {
+ "epoch": 4.40418118466899,
+ "grad_norm": 0.04930173233151436,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 2.7989790439605713,
+ "step": 317
+ },
+ {
+ "epoch": 4.418118466898955,
+ "grad_norm": 0.05484982952475548,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 2.7852704524993896,
+ "step": 318
+ },
+ {
+ "epoch": 4.43205574912892,
+ "grad_norm": 0.04991631582379341,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 2.7944440841674805,
+ "step": 319
+ },
+ {
+ "epoch": 4.445993031358885,
+ "grad_norm": 0.034856196492910385,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 2.7851901054382324,
+ "step": 320
+ },
+ {
+ "epoch": 4.45993031358885,
+ "grad_norm": 0.038153354078531265,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 2.777986526489258,
+ "step": 321
+ },
+ {
+ "epoch": 4.473867595818815,
+ "grad_norm": 0.04138852655887604,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 2.7781941890716553,
+ "step": 322
+ },
+ {
+ "epoch": 4.487804878048781,
+ "grad_norm": 0.04018627852201462,
+ "learning_rate": 0.00059412296156686,
+ "loss": 2.7934627532958984,
+ "step": 323
+ },
+ {
+ "epoch": 4.501742160278746,
+ "grad_norm": 0.03592175245285034,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 2.780992031097412,
+ "step": 324
+ },
+ {
+ "epoch": 4.515679442508711,
+ "grad_norm": 0.034620169550180435,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 2.7754831314086914,
+ "step": 325
+ },
+ {
+ "epoch": 4.529616724738676,
+ "grad_norm": 0.03244427964091301,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 2.7737035751342773,
+ "step": 326
+ },
+ {
+ "epoch": 4.543554006968641,
+ "grad_norm": 0.0361688956618309,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 2.7515547275543213,
+ "step": 327
+ },
+ {
+ "epoch": 4.557491289198606,
+ "grad_norm": 0.03722141310572624,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 2.769011974334717,
+ "step": 328
+ },
+ {
+ "epoch": 4.571428571428571,
+ "grad_norm": 0.0431540347635746,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 2.7755231857299805,
+ "step": 329
+ },
+ {
+ "epoch": 4.585365853658536,
+ "grad_norm": 0.04175153374671936,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 2.767477512359619,
+ "step": 330
+ },
+ {
+ "epoch": 4.599303135888501,
+ "grad_norm": 0.04184363782405853,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 2.775984048843384,
+ "step": 331
+ },
+ {
+ "epoch": 4.613240418118467,
+ "grad_norm": 0.04054928943514824,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 2.7669193744659424,
+ "step": 332
+ },
+ {
+ "epoch": 4.627177700348432,
+ "grad_norm": 0.039442483335733414,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 2.7557153701782227,
+ "step": 333
+ },
+ {
+ "epoch": 4.641114982578397,
+ "grad_norm": 0.04334413632750511,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 2.76118803024292,
+ "step": 334
+ },
+ {
+ "epoch": 4.655052264808362,
+ "grad_norm": 0.04821610450744629,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 2.755122184753418,
+ "step": 335
+ },
+ {
+ "epoch": 4.668989547038327,
+ "grad_norm": 0.05259500443935394,
+ "learning_rate": 0.000593417134927994,
+ "loss": 2.763730764389038,
+ "step": 336
+ },
+ {
+ "epoch": 4.682926829268292,
+ "grad_norm": 0.05462924763560295,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 2.7538461685180664,
+ "step": 337
+ },
+ {
+ "epoch": 4.696864111498257,
+ "grad_norm": 0.0755213275551796,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 2.7565760612487793,
+ "step": 338
+ },
+ {
+ "epoch": 4.710801393728223,
+ "grad_norm": 0.09036742150783539,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 2.7742908000946045,
+ "step": 339
+ },
+ {
+ "epoch": 4.724738675958188,
+ "grad_norm": 0.07687609642744064,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 2.7776336669921875,
+ "step": 340
+ },
+ {
+ "epoch": 4.7386759581881535,
+ "grad_norm": 0.06167550012469292,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 2.7571194171905518,
+ "step": 341
+ },
+ {
+ "epoch": 4.7526132404181185,
+ "grad_norm": 0.05498389154672623,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 2.766094207763672,
+ "step": 342
+ },
+ {
+ "epoch": 4.7665505226480835,
+ "grad_norm": 0.056576769798994064,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 2.759814977645874,
+ "step": 343
+ },
+ {
+ "epoch": 4.780487804878049,
+ "grad_norm": 0.05287479609251022,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 2.7653424739837646,
+ "step": 344
+ },
+ {
+ "epoch": 4.794425087108014,
+ "grad_norm": 0.05006227642297745,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 2.746647357940674,
+ "step": 345
+ },
+ {
+ "epoch": 4.80836236933798,
+ "grad_norm": 0.0428367517888546,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 2.748798131942749,
+ "step": 346
+ },
+ {
+ "epoch": 4.822299651567945,
+ "grad_norm": 0.04800762981176376,
+ "learning_rate": 0.000592789007481325,
+ "loss": 2.7554736137390137,
+ "step": 347
+ },
+ {
+ "epoch": 4.83623693379791,
+ "grad_norm": 0.04984979331493378,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 2.738473415374756,
+ "step": 348
+ },
+ {
+ "epoch": 4.850174216027875,
+ "grad_norm": 0.0404483824968338,
+ "learning_rate": 0.000592671765466188,
+ "loss": 2.7486448287963867,
+ "step": 349
+ },
+ {
+ "epoch": 4.86411149825784,
+ "grad_norm": 0.03785628825426102,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 2.7317609786987305,
+ "step": 350
+ },
+ {
+ "epoch": 4.878048780487805,
+ "grad_norm": 0.04446744546294212,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 2.750211238861084,
+ "step": 351
+ },
+ {
+ "epoch": 4.89198606271777,
+ "grad_norm": 0.0561913438141346,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 2.7429988384246826,
+ "step": 352
+ },
+ {
+ "epoch": 4.905923344947735,
+ "grad_norm": 0.06165647506713867,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 2.7389450073242188,
+ "step": 353
+ },
+ {
+ "epoch": 4.9198606271777,
+ "grad_norm": 0.04764621704816818,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 2.73350191116333,
+ "step": 354
+ },
+ {
+ "epoch": 4.933797909407666,
+ "grad_norm": 0.044994648545980453,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 2.7248117923736572,
+ "step": 355
+ },
+ {
+ "epoch": 4.947735191637631,
+ "grad_norm": 0.044408753514289856,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 2.7337656021118164,
+ "step": 356
+ },
+ {
+ "epoch": 4.961672473867596,
+ "grad_norm": 0.04064524918794632,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 2.732268810272217,
+ "step": 357
+ },
+ {
+ "epoch": 4.975609756097561,
+ "grad_norm": 0.036805033683776855,
+ "learning_rate": 0.000592132629452205,
+ "loss": 2.7253570556640625,
+ "step": 358
+ },
+ {
+ "epoch": 4.989547038327526,
+ "grad_norm": 0.03321084752678871,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 2.713101863861084,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.027469763532280922,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 2.0416059494018555,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 0.6877280473709106,
+ "eval_runtime": 37.7369,
+ "eval_samples_per_second": 64.711,
+ "eval_steps_per_second": 0.53,
+ "step": 360
+ },
+ {
+ "epoch": 5.013937282229965,
+ "grad_norm": 0.035481102764606476,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 2.6966300010681152,
+ "step": 361
+ },
+ {
+ "epoch": 5.02787456445993,
+ "grad_norm": 0.04075651615858078,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 2.701756000518799,
+ "step": 362
+ },
+ {
+ "epoch": 5.041811846689895,
+ "grad_norm": 0.03847100958228111,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 2.69856333732605,
+ "step": 363
+ },
+ {
+ "epoch": 5.055749128919861,
+ "grad_norm": 0.0439726859331131,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 2.6956000328063965,
+ "step": 364
+ },
+ {
+ "epoch": 5.069686411149826,
+ "grad_norm": 0.043925508856773376,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 2.7065486907958984,
+ "step": 365
+ },
+ {
+ "epoch": 5.083623693379791,
+ "grad_norm": 0.05349253863096237,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 2.7032744884490967,
+ "step": 366
+ },
+ {
+ "epoch": 5.097560975609756,
+ "grad_norm": 0.04957803711295128,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 2.6988987922668457,
+ "step": 367
+ },
+ {
+ "epoch": 5.111498257839721,
+ "grad_norm": 0.047412872314453125,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 2.6921496391296387,
+ "step": 368
+ },
+ {
+ "epoch": 5.125435540069686,
+ "grad_norm": 0.047648534178733826,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 2.691765308380127,
+ "step": 369
+ },
+ {
+ "epoch": 5.139372822299651,
+ "grad_norm": 0.05226794257760048,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 2.7006325721740723,
+ "step": 370
+ },
+ {
+ "epoch": 5.153310104529616,
+ "grad_norm": 0.054041698575019836,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 2.692309617996216,
+ "step": 371
+ },
+ {
+ "epoch": 5.167247386759582,
+ "grad_norm": 0.039680954068899155,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 2.685819149017334,
+ "step": 372
+ },
+ {
+ "epoch": 5.181184668989547,
+ "grad_norm": 0.04104545712471008,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 2.6913204193115234,
+ "step": 373
+ },
+ {
+ "epoch": 5.195121951219512,
+ "grad_norm": 0.037274859845638275,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 2.692324161529541,
+ "step": 374
+ },
+ {
+ "epoch": 5.209059233449477,
+ "grad_norm": 0.038038160651922226,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 2.6824822425842285,
+ "step": 375
+ },
+ {
+ "epoch": 5.2229965156794425,
+ "grad_norm": 0.04105817899107933,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 2.6830384731292725,
+ "step": 376
+ },
+ {
+ "epoch": 5.2369337979094075,
+ "grad_norm": 0.04050105810165405,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 2.676032066345215,
+ "step": 377
+ },
+ {
+ "epoch": 5.2508710801393725,
+ "grad_norm": 0.03780475631356239,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 2.6765289306640625,
+ "step": 378
+ },
+ {
+ "epoch": 5.264808362369338,
+ "grad_norm": 0.03484981507062912,
+ "learning_rate": 0.000590801330015633,
+ "loss": 2.6808249950408936,
+ "step": 379
+ },
+ {
+ "epoch": 5.2787456445993035,
+ "grad_norm": 0.03091316856443882,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 2.679382562637329,
+ "step": 380
+ },
+ {
+ "epoch": 5.2926829268292686,
+ "grad_norm": 0.03255805745720863,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 2.685393810272217,
+ "step": 381
+ },
+ {
+ "epoch": 5.306620209059234,
+ "grad_norm": 0.037457507103681564,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 2.6710822582244873,
+ "step": 382
+ },
+ {
+ "epoch": 5.320557491289199,
+ "grad_norm": 0.03654669225215912,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 2.6762566566467285,
+ "step": 383
+ },
+ {
+ "epoch": 5.334494773519164,
+ "grad_norm": 0.03590100631117821,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 2.6788597106933594,
+ "step": 384
+ },
+ {
+ "epoch": 5.348432055749129,
+ "grad_norm": 0.03647424280643463,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 2.6785120964050293,
+ "step": 385
+ },
+ {
+ "epoch": 5.362369337979094,
+ "grad_norm": 0.035309527069330215,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 2.679274082183838,
+ "step": 386
+ },
+ {
+ "epoch": 5.376306620209059,
+ "grad_norm": 0.035797759890556335,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 2.663790702819824,
+ "step": 387
+ },
+ {
+ "epoch": 5.390243902439025,
+ "grad_norm": 0.034813620150089264,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 2.661909818649292,
+ "step": 388
+ },
+ {
+ "epoch": 5.40418118466899,
+ "grad_norm": 0.03814723342657089,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 2.6648290157318115,
+ "step": 389
+ },
+ {
+ "epoch": 5.418118466898955,
+ "grad_norm": 0.03819345310330391,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 2.661344528198242,
+ "step": 390
+ },
+ {
+ "epoch": 5.43205574912892,
+ "grad_norm": 0.05034249275922775,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 2.6723971366882324,
+ "step": 391
+ },
+ {
+ "epoch": 5.445993031358885,
+ "grad_norm": 0.05302279815077782,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 2.6722166538238525,
+ "step": 392
+ },
+ {
+ "epoch": 5.45993031358885,
+ "grad_norm": 0.04576520621776581,
+ "learning_rate": 0.000589856958339686,
+ "loss": 2.650954008102417,
+ "step": 393
+ },
+ {
+ "epoch": 5.473867595818815,
+ "grad_norm": 0.04785747826099396,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 2.658161163330078,
+ "step": 394
+ },
+ {
+ "epoch": 5.487804878048781,
+ "grad_norm": 0.0524369515478611,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 2.66957688331604,
+ "step": 395
+ },
+ {
+ "epoch": 5.501742160278746,
+ "grad_norm": 0.05258813500404358,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 2.66046142578125,
+ "step": 396
+ },
+ {
+ "epoch": 5.515679442508711,
+ "grad_norm": 0.05156350135803223,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 2.6339619159698486,
+ "step": 397
+ },
+ {
+ "epoch": 5.529616724738676,
+ "grad_norm": 0.04716484993696213,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 2.656726837158203,
+ "step": 398
+ },
+ {
+ "epoch": 5.543554006968641,
+ "grad_norm": 0.048213694244623184,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 2.6740832328796387,
+ "step": 399
+ },
+ {
+ "epoch": 5.557491289198606,
+ "grad_norm": 0.046243470162153244,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 2.65981125831604,
+ "step": 400
+ },
+ {
+ "epoch": 5.571428571428571,
+ "grad_norm": 0.04331960901618004,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 2.637345790863037,
+ "step": 401
+ },
+ {
+ "epoch": 5.585365853658536,
+ "grad_norm": 0.04055584594607353,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 2.6382877826690674,
+ "step": 402
+ },
+ {
+ "epoch": 5.599303135888501,
+ "grad_norm": 0.046962495893239975,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 2.642883539199829,
+ "step": 403
+ },
+ {
+ "epoch": 5.613240418118467,
+ "grad_norm": 0.055259495973587036,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 2.6498947143554688,
+ "step": 404
+ },
+ {
+ "epoch": 5.627177700348432,
+ "grad_norm": 0.05768313631415367,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 2.6472978591918945,
+ "step": 405
+ },
+ {
+ "epoch": 5.641114982578397,
+ "grad_norm": 0.04900819808244705,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 2.6596455574035645,
+ "step": 406
+ },
+ {
+ "epoch": 5.655052264808362,
+ "grad_norm": 0.053204163908958435,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 2.6456780433654785,
+ "step": 407
+ },
+ {
+ "epoch": 5.668989547038327,
+ "grad_norm": 0.05327627807855606,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 2.651031494140625,
+ "step": 408
+ },
+ {
+ "epoch": 5.682926829268292,
+ "grad_norm": 0.050564929842948914,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 2.656858444213867,
+ "step": 409
+ },
+ {
+ "epoch": 5.696864111498257,
+ "grad_norm": 0.05613167583942413,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 2.6408069133758545,
+ "step": 410
+ },
+ {
+ "epoch": 5.710801393728223,
+ "grad_norm": 0.05399465933442116,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 2.6472203731536865,
+ "step": 411
+ },
+ {
+ "epoch": 5.724738675958188,
+ "grad_norm": 0.04919342324137688,
+ "learning_rate": 0.0005885028868537,
+ "loss": 2.656099319458008,
+ "step": 412
+ },
+ {
+ "epoch": 5.7386759581881535,
+ "grad_norm": 0.0552130751311779,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 2.6422126293182373,
+ "step": 413
+ },
+ {
+ "epoch": 5.7526132404181185,
+ "grad_norm": 0.05774940922856331,
+ "learning_rate": 0.000588355515561353,
+ "loss": 2.649722099304199,
+ "step": 414
+ },
+ {
+ "epoch": 5.7665505226480835,
+ "grad_norm": 0.04623311012983322,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 2.6475892066955566,
+ "step": 415
+ },
+ {
+ "epoch": 5.780487804878049,
+ "grad_norm": 0.04961073398590088,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 2.658733606338501,
+ "step": 416
+ },
+ {
+ "epoch": 5.794425087108014,
+ "grad_norm": 0.05006693676114082,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 2.6217124462127686,
+ "step": 417
+ },
+ {
+ "epoch": 5.80836236933798,
+ "grad_norm": 0.04175165295600891,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 2.632359027862549,
+ "step": 418
+ },
+ {
+ "epoch": 5.822299651567945,
+ "grad_norm": 0.0332355760037899,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 2.6406683921813965,
+ "step": 419
+ },
+ {
+ "epoch": 5.83623693379791,
+ "grad_norm": 0.0371745266020298,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 2.630310535430908,
+ "step": 420
+ },
+ {
+ "epoch": 5.850174216027875,
+ "grad_norm": 0.02940242365002632,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 2.6451711654663086,
+ "step": 421
+ },
+ {
+ "epoch": 5.86411149825784,
+ "grad_norm": 0.03578875586390495,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 2.637753486633301,
+ "step": 422
+ },
+ {
+ "epoch": 5.878048780487805,
+ "grad_norm": 0.03402113541960716,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 2.623744487762451,
+ "step": 423
+ },
+ {
+ "epoch": 5.89198606271777,
+ "grad_norm": 0.034094467759132385,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 2.63200044631958,
+ "step": 424
+ },
+ {
+ "epoch": 5.905923344947735,
+ "grad_norm": 0.03428930044174194,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 2.6219849586486816,
+ "step": 425
+ },
+ {
+ "epoch": 5.9198606271777,
+ "grad_norm": 0.033345405012369156,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 2.611741065979004,
+ "step": 426
+ },
+ {
+ "epoch": 5.933797909407666,
+ "grad_norm": 0.031680066138505936,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 2.6227869987487793,
+ "step": 427
+ },
+ {
+ "epoch": 5.947735191637631,
+ "grad_norm": 0.028066758066415787,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 2.6249539852142334,
+ "step": 428
+ },
+ {
+ "epoch": 5.961672473867596,
+ "grad_norm": 0.032918382436037064,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 2.6176412105560303,
+ "step": 429
+ },
+ {
+ "epoch": 5.975609756097561,
+ "grad_norm": 0.033349912613630295,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 2.6159720420837402,
+ "step": 430
+ },
+ {
+ "epoch": 5.989547038327526,
+ "grad_norm": 0.03317154198884964,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 2.619137763977051,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.025815341621637344,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 1.9473658800125122,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 0.6633820533752441,
+ "eval_runtime": 37.551,
+ "eval_samples_per_second": 65.032,
+ "eval_steps_per_second": 0.533,
+ "step": 432
+ },
+ {
+ "epoch": 6.013937282229965,
+ "grad_norm": 0.031342681497335434,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 2.5931155681610107,
+ "step": 433
+ },
+ {
+ "epoch": 6.02787456445993,
+ "grad_norm": 0.04343045502901077,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 2.587559700012207,
+ "step": 434
+ },
+ {
+ "epoch": 6.041811846689895,
+ "grad_norm": 0.052591342478990555,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 2.5950260162353516,
+ "step": 435
+ },
+ {
+ "epoch": 6.055749128919861,
+ "grad_norm": 0.05538717657327652,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 2.600468635559082,
+ "step": 436
+ },
+ {
+ "epoch": 6.069686411149826,
+ "grad_norm": 0.05505542829632759,
+ "learning_rate": 0.000586594769789753,
+ "loss": 2.5905046463012695,
+ "step": 437
+ },
+ {
+ "epoch": 6.083623693379791,
+ "grad_norm": 0.05229569226503372,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 2.591856002807617,
+ "step": 438
+ },
+ {
+ "epoch": 6.097560975609756,
+ "grad_norm": 0.05032522976398468,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 2.577693462371826,
+ "step": 439
+ },
+ {
+ "epoch": 6.111498257839721,
+ "grad_norm": 0.04670557379722595,
+ "learning_rate": 0.000586356179990052,
+ "loss": 2.5835001468658447,
+ "step": 440
+ },
+ {
+ "epoch": 6.125435540069686,
+ "grad_norm": 0.0537918359041214,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 2.596343517303467,
+ "step": 441
+ },
+ {
+ "epoch": 6.139372822299651,
+ "grad_norm": 0.06328130513429642,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 2.5912466049194336,
+ "step": 442
+ },
+ {
+ "epoch": 6.153310104529616,
+ "grad_norm": 0.06647300720214844,
+ "learning_rate": 0.000586115535536849,
+ "loss": 2.589078426361084,
+ "step": 443
+ },
+ {
+ "epoch": 6.167247386759582,
+ "grad_norm": 0.06643359363079071,
+ "learning_rate": 0.000586034864430614,
+ "loss": 2.5956435203552246,
+ "step": 444
+ },
+ {
+ "epoch": 6.181184668989547,
+ "grad_norm": 0.05613892152905464,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 2.5922906398773193,
+ "step": 445
+ },
+ {
+ "epoch": 6.195121951219512,
+ "grad_norm": 0.05655102804303169,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 2.590651512145996,
+ "step": 446
+ },
+ {
+ "epoch": 6.209059233449477,
+ "grad_norm": 0.06806499511003494,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 2.589696168899536,
+ "step": 447
+ },
+ {
+ "epoch": 6.2229965156794425,
+ "grad_norm": 0.06616773456335068,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 2.5944786071777344,
+ "step": 448
+ },
+ {
+ "epoch": 6.2369337979094075,
+ "grad_norm": 0.05937796086072922,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 2.598313331604004,
+ "step": 449
+ },
+ {
+ "epoch": 6.2508710801393725,
+ "grad_norm": 0.05284281075000763,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 2.5805535316467285,
+ "step": 450
+ },
+ {
+ "epoch": 6.264808362369338,
+ "grad_norm": 0.04509073495864868,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 2.570598840713501,
+ "step": 451
+ },
+ {
+ "epoch": 6.2787456445993035,
+ "grad_norm": 0.05604032054543495,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 2.6077847480773926,
+ "step": 452
+ },
+ {
+ "epoch": 6.2926829268292686,
+ "grad_norm": 0.06662779301404953,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 2.578629493713379,
+ "step": 453
+ },
+ {
+ "epoch": 6.306620209059234,
+ "grad_norm": 0.0585545152425766,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 2.586427688598633,
+ "step": 454
+ },
+ {
+ "epoch": 6.320557491289199,
+ "grad_norm": 0.04736408591270447,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 2.5911552906036377,
+ "step": 455
+ },
+ {
+ "epoch": 6.334494773519164,
+ "grad_norm": 0.04474812000989914,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 2.5697641372680664,
+ "step": 456
+ },
+ {
+ "epoch": 6.348432055749129,
+ "grad_norm": 0.04312862828373909,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 2.566927671432495,
+ "step": 457
+ },
+ {
+ "epoch": 6.362369337979094,
+ "grad_norm": 0.03764902800321579,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 2.5947153568267822,
+ "step": 458
+ },
+ {
+ "epoch": 6.376306620209059,
+ "grad_norm": 0.03353014215826988,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 2.5777602195739746,
+ "step": 459
+ },
+ {
+ "epoch": 6.390243902439025,
+ "grad_norm": 0.033975999802351,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 2.5783305168151855,
+ "step": 460
+ },
+ {
+ "epoch": 6.40418118466899,
+ "grad_norm": 0.03363902121782303,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 2.5673155784606934,
+ "step": 461
+ },
+ {
+ "epoch": 6.418118466898955,
+ "grad_norm": 0.034326743334531784,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 2.55814790725708,
+ "step": 462
+ },
+ {
+ "epoch": 6.43205574912892,
+ "grad_norm": 0.03194424510002136,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 2.5688910484313965,
+ "step": 463
+ },
+ {
+ "epoch": 6.445993031358885,
+ "grad_norm": 0.029925566166639328,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 2.559793710708618,
+ "step": 464
+ },
+ {
+ "epoch": 6.45993031358885,
+ "grad_norm": 0.0290202796459198,
+ "learning_rate": 0.000584288196583439,
+ "loss": 2.555941581726074,
+ "step": 465
+ },
+ {
+ "epoch": 6.473867595818815,
+ "grad_norm": 0.030976103618741035,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 2.5576136112213135,
+ "step": 466
+ },
+ {
+ "epoch": 6.487804878048781,
+ "grad_norm": 0.030049985274672508,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 2.5645012855529785,
+ "step": 467
+ },
+ {
+ "epoch": 6.501742160278746,
+ "grad_norm": 0.031192071735858917,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 2.5691795349121094,
+ "step": 468
+ },
+ {
+ "epoch": 6.515679442508711,
+ "grad_norm": 0.03066888637840748,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 2.5597329139709473,
+ "step": 469
+ },
+ {
+ "epoch": 6.529616724738676,
+ "grad_norm": 0.031034760177135468,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 2.5749378204345703,
+ "step": 470
+ },
+ {
+ "epoch": 6.543554006968641,
+ "grad_norm": 0.03199351951479912,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 2.564612627029419,
+ "step": 471
+ },
+ {
+ "epoch": 6.557491289198606,
+ "grad_norm": 0.027530083432793617,
+ "learning_rate": 0.000583683733328402,
+ "loss": 2.568983793258667,
+ "step": 472
+ },
+ {
+ "epoch": 6.571428571428571,
+ "grad_norm": 0.02841697260737419,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 2.551283836364746,
+ "step": 473
+ },
+ {
+ "epoch": 6.585365853658536,
+ "grad_norm": 0.03285123407840729,
+ "learning_rate": 0.000583508993216961,
+ "loss": 2.5753087997436523,
+ "step": 474
+ },
+ {
+ "epoch": 6.599303135888501,
+ "grad_norm": 0.0347592793405056,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 2.56103253364563,
+ "step": 475
+ },
+ {
+ "epoch": 6.613240418118467,
+ "grad_norm": 0.03750046715140343,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 2.5542030334472656,
+ "step": 476
+ },
+ {
+ "epoch": 6.627177700348432,
+ "grad_norm": 0.04254816472530365,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 2.5616328716278076,
+ "step": 477
+ },
+ {
+ "epoch": 6.641114982578397,
+ "grad_norm": 0.04370047152042389,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 2.5646753311157227,
+ "step": 478
+ },
+ {
+ "epoch": 6.655052264808362,
+ "grad_norm": 0.03816768899559975,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 2.5603585243225098,
+ "step": 479
+ },
+ {
+ "epoch": 6.668989547038327,
+ "grad_norm": 0.034390103071928024,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 2.548727512359619,
+ "step": 480
+ },
+ {
+ "epoch": 6.682926829268292,
+ "grad_norm": 0.0366024374961853,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 2.555230140686035,
+ "step": 481
+ },
+ {
+ "epoch": 6.696864111498257,
+ "grad_norm": 0.03938084468245506,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 2.5586276054382324,
+ "step": 482
+ },
+ {
+ "epoch": 6.710801393728223,
+ "grad_norm": 0.04110350087285042,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 2.542633056640625,
+ "step": 483
+ },
+ {
+ "epoch": 6.724738675958188,
+ "grad_norm": 0.03961770981550217,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 2.5494391918182373,
+ "step": 484
+ },
+ {
+ "epoch": 6.7386759581881535,
+ "grad_norm": 0.03677491098642349,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 2.563061475753784,
+ "step": 485
+ },
+ {
+ "epoch": 6.7526132404181185,
+ "grad_norm": 0.03818432241678238,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 2.5586929321289062,
+ "step": 486
+ },
+ {
+ "epoch": 6.7665505226480835,
+ "grad_norm": 0.033873286098241806,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 2.5477757453918457,
+ "step": 487
+ },
+ {
+ "epoch": 6.780487804878049,
+ "grad_norm": 0.03699466213583946,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 2.541106700897217,
+ "step": 488
+ },
+ {
+ "epoch": 6.794425087108014,
+ "grad_norm": 0.03866403177380562,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 2.5336339473724365,
+ "step": 489
+ },
+ {
+ "epoch": 6.80836236933798,
+ "grad_norm": 0.03235912322998047,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 2.5439155101776123,
+ "step": 490
+ },
+ {
+ "epoch": 6.822299651567945,
+ "grad_norm": 0.03776629641652107,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 2.5592265129089355,
+ "step": 491
+ },
+ {
+ "epoch": 6.83623693379791,
+ "grad_norm": 0.04273561015725136,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 2.5432629585266113,
+ "step": 492
+ },
+ {
+ "epoch": 6.850174216027875,
+ "grad_norm": 0.04358302056789398,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 2.5543787479400635,
+ "step": 493
+ },
+ {
+ "epoch": 6.86411149825784,
+ "grad_norm": 0.03629252687096596,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 2.562788963317871,
+ "step": 494
+ },
+ {
+ "epoch": 6.878048780487805,
+ "grad_norm": 0.03263307362794876,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 2.538097381591797,
+ "step": 495
+ },
+ {
+ "epoch": 6.89198606271777,
+ "grad_norm": 0.036420464515686035,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 2.554645299911499,
+ "step": 496
+ },
+ {
+ "epoch": 6.905923344947735,
+ "grad_norm": 0.035384103655815125,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 2.5465738773345947,
+ "step": 497
+ },
+ {
+ "epoch": 6.9198606271777,
+ "grad_norm": 0.03658696636557579,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 2.536980152130127,
+ "step": 498
+ },
+ {
+ "epoch": 6.933797909407666,
+ "grad_norm": 0.036053478717803955,
+ "learning_rate": 0.00058124865204371,
+ "loss": 2.528345823287964,
+ "step": 499
+ },
+ {
+ "epoch": 6.947735191637631,
+ "grad_norm": 0.03789985179901123,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 2.544621706008911,
+ "step": 500
+ },
+ {
+ "epoch": 6.961672473867596,
+ "grad_norm": 0.03835926949977875,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 2.5407447814941406,
+ "step": 501
+ },
+ {
+ "epoch": 6.975609756097561,
+ "grad_norm": 0.04318110644817352,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 2.5537543296813965,
+ "step": 502
+ },
+ {
+ "epoch": 6.989547038327526,
+ "grad_norm": 0.0451606847345829,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 2.5201051235198975,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.03245232254266739,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 1.9085171222686768,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 0.6467739343643188,
+ "eval_runtime": 38.2431,
+ "eval_samples_per_second": 63.855,
+ "eval_steps_per_second": 0.523,
+ "step": 504
+ },
+ {
+ "epoch": 7.013937282229965,
+ "grad_norm": 0.03788387402892113,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 2.493765354156494,
+ "step": 505
+ },
+ {
+ "epoch": 7.02787456445993,
+ "grad_norm": 0.04437057301402092,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 2.509481430053711,
+ "step": 506
+ },
+ {
+ "epoch": 7.041811846689895,
+ "grad_norm": 0.047125279903411865,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 2.504810333251953,
+ "step": 507
+ },
+ {
+ "epoch": 7.055749128919861,
+ "grad_norm": 0.05385598540306091,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 2.5145554542541504,
+ "step": 508
+ },
+ {
+ "epoch": 7.069686411149826,
+ "grad_norm": 0.05404049903154373,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 2.500851631164551,
+ "step": 509
+ },
+ {
+ "epoch": 7.083623693379791,
+ "grad_norm": 0.05455894395709038,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 2.4832260608673096,
+ "step": 510
+ },
+ {
+ "epoch": 7.097560975609756,
+ "grad_norm": 0.0558103583753109,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 2.524315118789673,
+ "step": 511
+ },
+ {
+ "epoch": 7.111498257839721,
+ "grad_norm": 0.057283915579319,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 2.508044719696045,
+ "step": 512
+ },
+ {
+ "epoch": 7.125435540069686,
+ "grad_norm": 0.061027105897665024,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 2.5139050483703613,
+ "step": 513
+ },
+ {
+ "epoch": 7.139372822299651,
+ "grad_norm": 0.06873901933431625,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 2.507343053817749,
+ "step": 514
+ },
+ {
+ "epoch": 7.153310104529616,
+ "grad_norm": 0.06900028139352798,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 2.520263195037842,
+ "step": 515
+ },
+ {
+ "epoch": 7.167247386759582,
+ "grad_norm": 0.06029877811670303,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 2.5027518272399902,
+ "step": 516
+ },
+ {
+ "epoch": 7.181184668989547,
+ "grad_norm": 0.06097294017672539,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 2.512634515762329,
+ "step": 517
+ },
+ {
+ "epoch": 7.195121951219512,
+ "grad_norm": 0.06655558943748474,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 2.5014023780822754,
+ "step": 518
+ },
+ {
+ "epoch": 7.209059233449477,
+ "grad_norm": 0.06343840062618256,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 2.5144271850585938,
+ "step": 519
+ },
+ {
+ "epoch": 7.2229965156794425,
+ "grad_norm": 0.08325106650590897,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 2.5239195823669434,
+ "step": 520
+ },
+ {
+ "epoch": 7.2369337979094075,
+ "grad_norm": 0.07948101311922073,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 2.5223121643066406,
+ "step": 521
+ },
+ {
+ "epoch": 7.2508710801393725,
+ "grad_norm": 0.06717163324356079,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 2.5102391242980957,
+ "step": 522
+ },
+ {
+ "epoch": 7.264808362369338,
+ "grad_norm": 0.05896087363362312,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 2.51560640335083,
+ "step": 523
+ },
+ {
+ "epoch": 7.2787456445993035,
+ "grad_norm": 0.05562684312462807,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 2.5021753311157227,
+ "step": 524
+ },
+ {
+ "epoch": 7.2926829268292686,
+ "grad_norm": 0.043904103338718414,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 2.4952425956726074,
+ "step": 525
+ },
+ {
+ "epoch": 7.306620209059234,
+ "grad_norm": 0.0436740480363369,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 2.515303611755371,
+ "step": 526
+ },
+ {
+ "epoch": 7.320557491289199,
+ "grad_norm": 0.0395866297185421,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 2.5101678371429443,
+ "step": 527
+ },
+ {
+ "epoch": 7.334494773519164,
+ "grad_norm": 0.039552897214889526,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 2.5090293884277344,
+ "step": 528
+ },
+ {
+ "epoch": 7.348432055749129,
+ "grad_norm": 0.03839687630534172,
+ "learning_rate": 0.000578351407086301,
+ "loss": 2.505296468734741,
+ "step": 529
+ },
+ {
+ "epoch": 7.362369337979094,
+ "grad_norm": 0.042542796581983566,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 2.49535870552063,
+ "step": 530
+ },
+ {
+ "epoch": 7.376306620209059,
+ "grad_norm": 0.044322993606328964,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 2.4890050888061523,
+ "step": 531
+ },
+ {
+ "epoch": 7.390243902439025,
+ "grad_norm": 0.04029953107237816,
+ "learning_rate": 0.000578050665972623,
+ "loss": 2.500995397567749,
+ "step": 532
+ },
+ {
+ "epoch": 7.40418118466899,
+ "grad_norm": 0.044392652809619904,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 2.505852222442627,
+ "step": 533
+ },
+ {
+ "epoch": 7.418118466898955,
+ "grad_norm": 0.04363880679011345,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 2.4939942359924316,
+ "step": 534
+ },
+ {
+ "epoch": 7.43205574912892,
+ "grad_norm": 0.03960833698511124,
+ "learning_rate": 0.000577747930429834,
+ "loss": 2.507826805114746,
+ "step": 535
+ },
+ {
+ "epoch": 7.445993031358885,
+ "grad_norm": 0.03880009427666664,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 2.4876725673675537,
+ "step": 536
+ },
+ {
+ "epoch": 7.45993031358885,
+ "grad_norm": 0.034344322979450226,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 2.5032553672790527,
+ "step": 537
+ },
+ {
+ "epoch": 7.473867595818815,
+ "grad_norm": 0.030360646545886993,
+ "learning_rate": 0.00057744320265311,
+ "loss": 2.4887325763702393,
+ "step": 538
+ },
+ {
+ "epoch": 7.487804878048781,
+ "grad_norm": 0.030478516593575478,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 2.5041327476501465,
+ "step": 539
+ },
+ {
+ "epoch": 7.501742160278746,
+ "grad_norm": 0.030038833618164062,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 2.488068103790283,
+ "step": 540
+ },
+ {
+ "epoch": 7.515679442508711,
+ "grad_norm": 0.03227488324046135,
+ "learning_rate": 0.000577136484852073,
+ "loss": 2.4851627349853516,
+ "step": 541
+ },
+ {
+ "epoch": 7.529616724738676,
+ "grad_norm": 0.03053610771894455,
+ "learning_rate": 0.000577033803741424,
+ "loss": 2.48903226852417,
+ "step": 542
+ },
+ {
+ "epoch": 7.543554006968641,
+ "grad_norm": 0.030809711664915085,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 2.487685203552246,
+ "step": 543
+ },
+ {
+ "epoch": 7.557491289198606,
+ "grad_norm": 0.03001537173986435,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 2.4998037815093994,
+ "step": 544
+ },
+ {
+ "epoch": 7.571428571428571,
+ "grad_norm": 0.028761114925146103,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 2.4887194633483887,
+ "step": 545
+ },
+ {
+ "epoch": 7.585365853658536,
+ "grad_norm": 0.028289001435041428,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 2.4748306274414062,
+ "step": 546
+ },
+ {
+ "epoch": 7.599303135888501,
+ "grad_norm": 0.028406348079442978,
+ "learning_rate": 0.00057651708808768,
+ "loss": 2.490642786026001,
+ "step": 547
+ },
+ {
+ "epoch": 7.613240418118467,
+ "grad_norm": 0.027616780251264572,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 2.4816768169403076,
+ "step": 548
+ },
+ {
+ "epoch": 7.627177700348432,
+ "grad_norm": 0.028579063713550568,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 2.49285888671875,
+ "step": 549
+ },
+ {
+ "epoch": 7.641114982578397,
+ "grad_norm": 0.032302722334861755,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 2.4891176223754883,
+ "step": 550
+ },
+ {
+ "epoch": 7.655052264808362,
+ "grad_norm": 0.03428734466433525,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 2.4945361614227295,
+ "step": 551
+ },
+ {
+ "epoch": 7.668989547038327,
+ "grad_norm": 0.03326137363910675,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 2.483844518661499,
+ "step": 552
+ },
+ {
+ "epoch": 7.682926829268292,
+ "grad_norm": 0.03136003762483597,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 2.4965500831604004,
+ "step": 553
+ },
+ {
+ "epoch": 7.696864111498257,
+ "grad_norm": 0.031299516558647156,
+ "learning_rate": 0.000575784433093151,
+ "loss": 2.4755914211273193,
+ "step": 554
+ },
+ {
+ "epoch": 7.710801393728223,
+ "grad_norm": 0.030511915683746338,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 2.4844446182250977,
+ "step": 555
+ },
+ {
+ "epoch": 7.724738675958188,
+ "grad_norm": 0.03106229193508625,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 2.4614830017089844,
+ "step": 556
+ },
+ {
+ "epoch": 7.7386759581881535,
+ "grad_norm": 0.032561615109443665,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 2.476231813430786,
+ "step": 557
+ },
+ {
+ "epoch": 7.7526132404181185,
+ "grad_norm": 0.03334634751081467,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 2.4722485542297363,
+ "step": 558
+ },
+ {
+ "epoch": 7.7665505226480835,
+ "grad_norm": 0.03567497059702873,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 2.471876621246338,
+ "step": 559
+ },
+ {
+ "epoch": 7.780487804878049,
+ "grad_norm": 0.038662221282720566,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 2.4947409629821777,
+ "step": 560
+ },
+ {
+ "epoch": 7.794425087108014,
+ "grad_norm": 0.036901816725730896,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 2.470515489578247,
+ "step": 561
+ },
+ {
+ "epoch": 7.80836236933798,
+ "grad_norm": 0.03382178768515587,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 2.4678587913513184,
+ "step": 562
+ },
+ {
+ "epoch": 7.822299651567945,
+ "grad_norm": 0.03480829298496246,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 2.4690866470336914,
+ "step": 563
+ },
+ {
+ "epoch": 7.83623693379791,
+ "grad_norm": 0.03593127429485321,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 2.491703748703003,
+ "step": 564
+ },
+ {
+ "epoch": 7.850174216027875,
+ "grad_norm": 0.03532601520419121,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 2.468522548675537,
+ "step": 565
+ },
+ {
+ "epoch": 7.86411149825784,
+ "grad_norm": 0.035680219531059265,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 2.4759652614593506,
+ "step": 566
+ },
+ {
+ "epoch": 7.878048780487805,
+ "grad_norm": 0.03417263925075531,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 2.4931888580322266,
+ "step": 567
+ },
+ {
+ "epoch": 7.89198606271777,
+ "grad_norm": 0.03273053467273712,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 2.466641426086426,
+ "step": 568
+ },
+ {
+ "epoch": 7.905923344947735,
+ "grad_norm": 0.032283321022987366,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 2.466756820678711,
+ "step": 569
+ },
+ {
+ "epoch": 7.9198606271777,
+ "grad_norm": 0.03162473440170288,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 2.4725847244262695,
+ "step": 570
+ },
+ {
+ "epoch": 7.933797909407666,
+ "grad_norm": 0.03218452259898186,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 2.46532940864563,
+ "step": 571
+ },
+ {
+ "epoch": 7.947735191637631,
+ "grad_norm": 0.03216313198208809,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 2.4749364852905273,
+ "step": 572
+ },
+ {
+ "epoch": 7.961672473867596,
+ "grad_norm": 0.03091583214700222,
+ "learning_rate": 0.000573741597999996,
+ "loss": 2.470108985900879,
+ "step": 573
+ },
+ {
+ "epoch": 7.975609756097561,
+ "grad_norm": 0.028130974620580673,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 2.466053009033203,
+ "step": 574
+ },
+ {
+ "epoch": 7.989547038327526,
+ "grad_norm": 0.03071889653801918,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 2.4787344932556152,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.02555985376238823,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 1.8408641815185547,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 0.6343774199485779,
+ "eval_runtime": 38.5533,
+ "eval_samples_per_second": 63.341,
+ "eval_steps_per_second": 0.519,
+ "step": 576
+ },
+ {
+ "epoch": 8.013937282229966,
+ "grad_norm": 0.03359892964363098,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 2.4359030723571777,
+ "step": 577
+ },
+ {
+ "epoch": 8.02787456445993,
+ "grad_norm": 0.05054016411304474,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 2.4193553924560547,
+ "step": 578
+ },
+ {
+ "epoch": 8.041811846689896,
+ "grad_norm": 0.062336456030607224,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 2.4455740451812744,
+ "step": 579
+ },
+ {
+ "epoch": 8.05574912891986,
+ "grad_norm": 0.06716352701187134,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 2.4429545402526855,
+ "step": 580
+ },
+ {
+ "epoch": 8.069686411149826,
+ "grad_norm": 0.06647022068500519,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 2.4446518421173096,
+ "step": 581
+ },
+ {
+ "epoch": 8.08362369337979,
+ "grad_norm": 0.0826159194111824,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 2.436643600463867,
+ "step": 582
+ },
+ {
+ "epoch": 8.097560975609756,
+ "grad_norm": 0.08472150564193726,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 2.451641082763672,
+ "step": 583
+ },
+ {
+ "epoch": 8.111498257839722,
+ "grad_norm": 0.07912597805261612,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 2.447244167327881,
+ "step": 584
+ },
+ {
+ "epoch": 8.125435540069686,
+ "grad_norm": 0.0796087384223938,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 2.4437828063964844,
+ "step": 585
+ },
+ {
+ "epoch": 8.139372822299652,
+ "grad_norm": 0.07414955645799637,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 2.437047004699707,
+ "step": 586
+ },
+ {
+ "epoch": 8.153310104529616,
+ "grad_norm": 0.06763316690921783,
+ "learning_rate": 0.000572185929672906,
+ "loss": 2.446570873260498,
+ "step": 587
+ },
+ {
+ "epoch": 8.167247386759582,
+ "grad_norm": 0.05742042511701584,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 2.445460796356201,
+ "step": 588
+ },
+ {
+ "epoch": 8.181184668989546,
+ "grad_norm": 0.0572611466050148,
+ "learning_rate": 0.000571960215520345,
+ "loss": 2.4439504146575928,
+ "step": 589
+ },
+ {
+ "epoch": 8.195121951219512,
+ "grad_norm": 0.05339052528142929,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 2.4502882957458496,
+ "step": 590
+ },
+ {
+ "epoch": 8.209059233449477,
+ "grad_norm": 0.05900551751255989,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 2.450836658477783,
+ "step": 591
+ },
+ {
+ "epoch": 8.222996515679442,
+ "grad_norm": 0.06624466180801392,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 2.4539589881896973,
+ "step": 592
+ },
+ {
+ "epoch": 8.236933797909408,
+ "grad_norm": 0.06468363106250763,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 2.448918342590332,
+ "step": 593
+ },
+ {
+ "epoch": 8.250871080139373,
+ "grad_norm": 0.04979013651609421,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 2.447591781616211,
+ "step": 594
+ },
+ {
+ "epoch": 8.264808362369338,
+ "grad_norm": 0.047402940690517426,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 2.450143337249756,
+ "step": 595
+ },
+ {
+ "epoch": 8.278745644599303,
+ "grad_norm": 0.041620269417762756,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 2.4322123527526855,
+ "step": 596
+ },
+ {
+ "epoch": 8.292682926829269,
+ "grad_norm": 0.04016399011015892,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 2.4417006969451904,
+ "step": 597
+ },
+ {
+ "epoch": 8.306620209059233,
+ "grad_norm": 0.04293493181467056,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 2.4442501068115234,
+ "step": 598
+ },
+ {
+ "epoch": 8.320557491289199,
+ "grad_norm": 0.041785892099142075,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 2.4570703506469727,
+ "step": 599
+ },
+ {
+ "epoch": 8.334494773519165,
+ "grad_norm": 0.042869169265031815,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 2.4294066429138184,
+ "step": 600
+ },
+ {
+ "epoch": 8.348432055749129,
+ "grad_norm": 0.04059606418013573,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 2.4469175338745117,
+ "step": 601
+ },
+ {
+ "epoch": 8.362369337979095,
+ "grad_norm": 0.03664898872375488,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 2.432004451751709,
+ "step": 602
+ },
+ {
+ "epoch": 8.376306620209059,
+ "grad_norm": 0.031866125762462616,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 2.4305002689361572,
+ "step": 603
+ },
+ {
+ "epoch": 8.390243902439025,
+ "grad_norm": 0.03416220843791962,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 2.4407525062561035,
+ "step": 604
+ },
+ {
+ "epoch": 8.404181184668989,
+ "grad_norm": 0.03265870735049248,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 2.426929473876953,
+ "step": 605
+ },
+ {
+ "epoch": 8.418118466898955,
+ "grad_norm": 0.03337112441658974,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 2.443507671356201,
+ "step": 606
+ },
+ {
+ "epoch": 8.43205574912892,
+ "grad_norm": 0.0337977334856987,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 2.4583749771118164,
+ "step": 607
+ },
+ {
+ "epoch": 8.445993031358885,
+ "grad_norm": 0.02970845066010952,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 2.4297292232513428,
+ "step": 608
+ },
+ {
+ "epoch": 8.45993031358885,
+ "grad_norm": 0.03051869012415409,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 2.452547550201416,
+ "step": 609
+ },
+ {
+ "epoch": 8.473867595818815,
+ "grad_norm": 0.030234314501285553,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 2.427704334259033,
+ "step": 610
+ },
+ {
+ "epoch": 8.487804878048781,
+ "grad_norm": 0.0297533068805933,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 2.4193124771118164,
+ "step": 611
+ },
+ {
+ "epoch": 8.501742160278745,
+ "grad_norm": 0.030258657410740852,
+ "learning_rate": 0.000569302387925215,
+ "loss": 2.4159011840820312,
+ "step": 612
+ },
+ {
+ "epoch": 8.515679442508711,
+ "grad_norm": 0.029942622408270836,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 2.4217724800109863,
+ "step": 613
+ },
+ {
+ "epoch": 8.529616724738675,
+ "grad_norm": 0.030715234577655792,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 2.44870662689209,
+ "step": 614
+ },
+ {
+ "epoch": 8.543554006968641,
+ "grad_norm": 0.03252873569726944,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 2.417196750640869,
+ "step": 615
+ },
+ {
+ "epoch": 8.557491289198607,
+ "grad_norm": 0.03387020155787468,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 2.4181065559387207,
+ "step": 616
+ },
+ {
+ "epoch": 8.571428571428571,
+ "grad_norm": 0.035596199333667755,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 2.4240612983703613,
+ "step": 617
+ },
+ {
+ "epoch": 8.585365853658537,
+ "grad_norm": 0.03890643268823624,
+ "learning_rate": 0.000568590328960903,
+ "loss": 2.435359477996826,
+ "step": 618
+ },
+ {
+ "epoch": 8.599303135888501,
+ "grad_norm": 0.041447605937719345,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 2.4370574951171875,
+ "step": 619
+ },
+ {
+ "epoch": 8.613240418118467,
+ "grad_norm": 0.03584018349647522,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 2.4231667518615723,
+ "step": 620
+ },
+ {
+ "epoch": 8.627177700348431,
+ "grad_norm": 0.03309513255953789,
+ "learning_rate": 0.000568231409438027,
+ "loss": 2.4281513690948486,
+ "step": 621
+ },
+ {
+ "epoch": 8.641114982578397,
+ "grad_norm": 0.0365641750395298,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 2.4262235164642334,
+ "step": 622
+ },
+ {
+ "epoch": 8.655052264808361,
+ "grad_norm": 0.033776357769966125,
+ "learning_rate": 0.000567991061134677,
+ "loss": 2.4259705543518066,
+ "step": 623
+ },
+ {
+ "epoch": 8.668989547038327,
+ "grad_norm": 0.03251301124691963,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 2.4303622245788574,
+ "step": 624
+ },
+ {
+ "epoch": 8.682926829268293,
+ "grad_norm": 0.03311233967542648,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 2.4325923919677734,
+ "step": 625
+ },
+ {
+ "epoch": 8.696864111498257,
+ "grad_norm": 0.032762084156274796,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 2.423525333404541,
+ "step": 626
+ },
+ {
+ "epoch": 8.710801393728223,
+ "grad_norm": 0.03397396206855774,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 2.421725273132324,
+ "step": 627
+ },
+ {
+ "epoch": 8.724738675958188,
+ "grad_norm": 0.03827521204948425,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 2.417745590209961,
+ "step": 628
+ },
+ {
+ "epoch": 8.738675958188153,
+ "grad_norm": 0.03194425627589226,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 2.4408435821533203,
+ "step": 629
+ },
+ {
+ "epoch": 8.752613240418118,
+ "grad_norm": 0.02894434705376625,
+ "learning_rate": 0.000567143121979179,
+ "loss": 2.430302143096924,
+ "step": 630
+ },
+ {
+ "epoch": 8.766550522648084,
+ "grad_norm": 0.03130284696817398,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 2.4167380332946777,
+ "step": 631
+ },
+ {
+ "epoch": 8.78048780487805,
+ "grad_norm": 0.03176414966583252,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 2.4211833477020264,
+ "step": 632
+ },
+ {
+ "epoch": 8.794425087108014,
+ "grad_norm": 0.03023882955312729,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 2.4175009727478027,
+ "step": 633
+ },
+ {
+ "epoch": 8.80836236933798,
+ "grad_norm": 0.03027920238673687,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 2.4296345710754395,
+ "step": 634
+ },
+ {
+ "epoch": 8.822299651567944,
+ "grad_norm": 0.031661003828048706,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 2.4292376041412354,
+ "step": 635
+ },
+ {
+ "epoch": 8.83623693379791,
+ "grad_norm": 0.02943863719701767,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 2.422773599624634,
+ "step": 636
+ },
+ {
+ "epoch": 8.850174216027874,
+ "grad_norm": 0.02999107912182808,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 2.4288015365600586,
+ "step": 637
+ },
+ {
+ "epoch": 8.86411149825784,
+ "grad_norm": 0.03127457574009895,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 2.426997184753418,
+ "step": 638
+ },
+ {
+ "epoch": 8.878048780487806,
+ "grad_norm": 0.0321597196161747,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 2.418203353881836,
+ "step": 639
+ },
+ {
+ "epoch": 8.89198606271777,
+ "grad_norm": 0.032045748084783554,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 2.4220266342163086,
+ "step": 640
+ },
+ {
+ "epoch": 8.905923344947736,
+ "grad_norm": 0.031895119696855545,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 2.421767234802246,
+ "step": 641
+ },
+ {
+ "epoch": 8.9198606271777,
+ "grad_norm": 0.0330902598798275,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 2.418246269226074,
+ "step": 642
+ },
+ {
+ "epoch": 8.933797909407666,
+ "grad_norm": 0.03361523523926735,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 2.423337697982788,
+ "step": 643
+ },
+ {
+ "epoch": 8.94773519163763,
+ "grad_norm": 0.033133652061223984,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 2.4278783798217773,
+ "step": 644
+ },
+ {
+ "epoch": 8.961672473867596,
+ "grad_norm": 0.03747311979532242,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 2.434087038040161,
+ "step": 645
+ },
+ {
+ "epoch": 8.975609756097562,
+ "grad_norm": 0.036127083003520966,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 2.4167022705078125,
+ "step": 646
+ },
+ {
+ "epoch": 8.989547038327526,
+ "grad_norm": 0.03699145093560219,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 2.4243075847625732,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.028921982273459435,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 1.8086339235305786,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 0.6271453499794006,
+ "eval_runtime": 35.9474,
+ "eval_samples_per_second": 67.933,
+ "eval_steps_per_second": 0.556,
+ "step": 648
+ },
+ {
+ "epoch": 9.013937282229966,
+ "grad_norm": 0.0380239300429821,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 2.377704381942749,
+ "step": 649
+ },
+ {
+ "epoch": 9.02787456445993,
+ "grad_norm": 0.05574064329266548,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 2.399777889251709,
+ "step": 650
+ },
+ {
+ "epoch": 9.041811846689896,
+ "grad_norm": 0.06179674342274666,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 2.3851845264434814,
+ "step": 651
+ },
+ {
+ "epoch": 9.05574912891986,
+ "grad_norm": 0.06461436301469803,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 2.385363817214966,
+ "step": 652
+ },
+ {
+ "epoch": 9.069686411149826,
+ "grad_norm": 0.058009687811136246,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 2.3721890449523926,
+ "step": 653
+ },
+ {
+ "epoch": 9.08362369337979,
+ "grad_norm": 0.06488639861345291,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 2.386878490447998,
+ "step": 654
+ },
+ {
+ "epoch": 9.097560975609756,
+ "grad_norm": 0.05683685839176178,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 2.3946213722229004,
+ "step": 655
+ },
+ {
+ "epoch": 9.111498257839722,
+ "grad_norm": 0.05336347594857216,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 2.3708930015563965,
+ "step": 656
+ },
+ {
+ "epoch": 9.125435540069686,
+ "grad_norm": 0.05320737510919571,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 2.39091157913208,
+ "step": 657
+ },
+ {
+ "epoch": 9.139372822299652,
+ "grad_norm": 0.05641087517142296,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 2.381009578704834,
+ "step": 658
+ },
+ {
+ "epoch": 9.153310104529616,
+ "grad_norm": 0.06087775528430939,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 2.377963066101074,
+ "step": 659
+ },
+ {
+ "epoch": 9.167247386759582,
+ "grad_norm": 0.06592115014791489,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 2.392094135284424,
+ "step": 660
+ },
+ {
+ "epoch": 9.181184668989546,
+ "grad_norm": 0.061441708356142044,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 2.388850212097168,
+ "step": 661
+ },
+ {
+ "epoch": 9.195121951219512,
+ "grad_norm": 0.06311637908220291,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 2.38919734954834,
+ "step": 662
+ },
+ {
+ "epoch": 9.209059233449477,
+ "grad_norm": 0.07152658700942993,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 2.3724892139434814,
+ "step": 663
+ },
+ {
+ "epoch": 9.222996515679442,
+ "grad_norm": 0.06927355378866196,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 2.4017786979675293,
+ "step": 664
+ },
+ {
+ "epoch": 9.236933797909408,
+ "grad_norm": 0.062740758061409,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 2.376430034637451,
+ "step": 665
+ },
+ {
+ "epoch": 9.250871080139373,
+ "grad_norm": 0.051289040595293045,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 2.3926010131835938,
+ "step": 666
+ },
+ {
+ "epoch": 9.264808362369338,
+ "grad_norm": 0.055630262941122055,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 2.3605382442474365,
+ "step": 667
+ },
+ {
+ "epoch": 9.278745644599303,
+ "grad_norm": 0.052814628928899765,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 2.374608039855957,
+ "step": 668
+ },
+ {
+ "epoch": 9.292682926829269,
+ "grad_norm": 0.05927073210477829,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 2.384093999862671,
+ "step": 669
+ },
+ {
+ "epoch": 9.306620209059233,
+ "grad_norm": 0.05510697513818741,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 2.374708652496338,
+ "step": 670
+ },
+ {
+ "epoch": 9.320557491289199,
+ "grad_norm": 0.048580385744571686,
+ "learning_rate": 0.000561968326197397,
+ "loss": 2.3861031532287598,
+ "step": 671
+ },
+ {
+ "epoch": 9.334494773519165,
+ "grad_norm": 0.04905429109930992,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 2.3835110664367676,
+ "step": 672
+ },
+ {
+ "epoch": 9.348432055749129,
+ "grad_norm": 0.04621037095785141,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 2.379696846008301,
+ "step": 673
+ },
+ {
+ "epoch": 9.362369337979095,
+ "grad_norm": 0.0437726229429245,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 2.3854074478149414,
+ "step": 674
+ },
+ {
+ "epoch": 9.376306620209059,
+ "grad_norm": 0.040361031889915466,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 2.39682936668396,
+ "step": 675
+ },
+ {
+ "epoch": 9.390243902439025,
+ "grad_norm": 0.03848707675933838,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 2.3752408027648926,
+ "step": 676
+ },
+ {
+ "epoch": 9.404181184668989,
+ "grad_norm": 0.04017478972673416,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 2.3912038803100586,
+ "step": 677
+ },
+ {
+ "epoch": 9.418118466898955,
+ "grad_norm": 0.03487734496593475,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 2.389535427093506,
+ "step": 678
+ },
+ {
+ "epoch": 9.43205574912892,
+ "grad_norm": 0.03736500069499016,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 2.3840279579162598,
+ "step": 679
+ },
+ {
+ "epoch": 9.445993031358885,
+ "grad_norm": 0.03499516844749451,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 2.3752779960632324,
+ "step": 680
+ },
+ {
+ "epoch": 9.45993031358885,
+ "grad_norm": 0.03297547250986099,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 2.3991637229919434,
+ "step": 681
+ },
+ {
+ "epoch": 9.473867595818815,
+ "grad_norm": 0.03387392312288284,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 2.3872644901275635,
+ "step": 682
+ },
+ {
+ "epoch": 9.487804878048781,
+ "grad_norm": 0.03756970539689064,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 2.368522882461548,
+ "step": 683
+ },
+ {
+ "epoch": 9.501742160278745,
+ "grad_norm": 0.03686998412013054,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 2.381460189819336,
+ "step": 684
+ },
+ {
+ "epoch": 9.515679442508711,
+ "grad_norm": 0.03336082771420479,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 2.3871984481811523,
+ "step": 685
+ },
+ {
+ "epoch": 9.529616724738675,
+ "grad_norm": 0.03545147553086281,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 2.3921163082122803,
+ "step": 686
+ },
+ {
+ "epoch": 9.543554006968641,
+ "grad_norm": 0.03614704683423042,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 2.388418197631836,
+ "step": 687
+ },
+ {
+ "epoch": 9.557491289198607,
+ "grad_norm": 0.0350213497877121,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 2.399055004119873,
+ "step": 688
+ },
+ {
+ "epoch": 9.571428571428571,
+ "grad_norm": 0.035602837800979614,
+ "learning_rate": 0.000559585254906272,
+ "loss": 2.3897178173065186,
+ "step": 689
+ },
+ {
+ "epoch": 9.585365853658537,
+ "grad_norm": 0.03438388183712959,
+ "learning_rate": 0.000559450892376025,
+ "loss": 2.407155990600586,
+ "step": 690
+ },
+ {
+ "epoch": 9.599303135888501,
+ "grad_norm": 0.035386405885219574,
+ "learning_rate": 0.000559316323227926,
+ "loss": 2.390408992767334,
+ "step": 691
+ },
+ {
+ "epoch": 9.613240418118467,
+ "grad_norm": 0.03753617778420448,
+ "learning_rate": 0.000559181547570395,
+ "loss": 2.3751039505004883,
+ "step": 692
+ },
+ {
+ "epoch": 9.627177700348431,
+ "grad_norm": 0.03430183231830597,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 2.3941941261291504,
+ "step": 693
+ },
+ {
+ "epoch": 9.641114982578397,
+ "grad_norm": 0.03268825262784958,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 2.3772215843200684,
+ "step": 694
+ },
+ {
+ "epoch": 9.655052264808361,
+ "grad_norm": 0.0341268889605999,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 2.3830480575561523,
+ "step": 695
+ },
+ {
+ "epoch": 9.668989547038327,
+ "grad_norm": 0.03466663882136345,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 2.3796463012695312,
+ "step": 696
+ },
+ {
+ "epoch": 9.682926829268293,
+ "grad_norm": 0.03470399230718613,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 2.385427713394165,
+ "step": 697
+ },
+ {
+ "epoch": 9.696864111498257,
+ "grad_norm": 0.0382751040160656,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 2.3877949714660645,
+ "step": 698
+ },
+ {
+ "epoch": 9.710801393728223,
+ "grad_norm": 0.035988591611385345,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 2.378014326095581,
+ "step": 699
+ },
+ {
+ "epoch": 9.724738675958188,
+ "grad_norm": 0.03295210376381874,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 2.382502555847168,
+ "step": 700
+ },
+ {
+ "epoch": 9.738675958188153,
+ "grad_norm": 0.030723385512828827,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 2.388451099395752,
+ "step": 701
+ },
+ {
+ "epoch": 9.752613240418118,
+ "grad_norm": 0.03281056135892868,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 2.387669086456299,
+ "step": 702
+ },
+ {
+ "epoch": 9.766550522648084,
+ "grad_norm": 0.03443330153822899,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 2.381460189819336,
+ "step": 703
+ },
+ {
+ "epoch": 9.78048780487805,
+ "grad_norm": 0.03670412674546242,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 2.3756155967712402,
+ "step": 704
+ },
+ {
+ "epoch": 9.794425087108014,
+ "grad_norm": 0.03445884957909584,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 2.371798515319824,
+ "step": 705
+ },
+ {
+ "epoch": 9.80836236933798,
+ "grad_norm": 0.03341168165206909,
+ "learning_rate": 0.000557273065985207,
+ "loss": 2.366093635559082,
+ "step": 706
+ },
+ {
+ "epoch": 9.822299651567944,
+ "grad_norm": 0.035434722900390625,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 2.3876760005950928,
+ "step": 707
+ },
+ {
+ "epoch": 9.83623693379791,
+ "grad_norm": 0.036071036010980606,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 2.363477945327759,
+ "step": 708
+ },
+ {
+ "epoch": 9.850174216027874,
+ "grad_norm": 0.03642858937382698,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 2.3772635459899902,
+ "step": 709
+ },
+ {
+ "epoch": 9.86411149825784,
+ "grad_norm": 0.03974858298897743,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 2.3893399238586426,
+ "step": 710
+ },
+ {
+ "epoch": 9.878048780487806,
+ "grad_norm": 0.040428902953863144,
+ "learning_rate": 0.000556581718698499,
+ "loss": 2.385814666748047,
+ "step": 711
+ },
+ {
+ "epoch": 9.89198606271777,
+ "grad_norm": 0.03710169717669487,
+ "learning_rate": 0.000556442835876097,
+ "loss": 2.3817856311798096,
+ "step": 712
+ },
+ {
+ "epoch": 9.905923344947736,
+ "grad_norm": 0.031853094696998596,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 2.3833706378936768,
+ "step": 713
+ },
+ {
+ "epoch": 9.9198606271777,
+ "grad_norm": 0.03192576766014099,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 2.380492687225342,
+ "step": 714
+ },
+ {
+ "epoch": 9.933797909407666,
+ "grad_norm": 0.03222471475601196,
+ "learning_rate": 0.000556024962691404,
+ "loss": 2.368129014968872,
+ "step": 715
+ },
+ {
+ "epoch": 9.94773519163763,
+ "grad_norm": 0.033947065472602844,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 2.392598867416382,
+ "step": 716
+ },
+ {
+ "epoch": 9.961672473867596,
+ "grad_norm": 0.030860550701618195,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 2.392878532409668,
+ "step": 717
+ },
+ {
+ "epoch": 9.975609756097562,
+ "grad_norm": 0.03237077221274376,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 2.3881583213806152,
+ "step": 718
+ },
+ {
+ "epoch": 9.989547038327526,
+ "grad_norm": 0.03429335355758667,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 2.385345458984375,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.025040561333298683,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 1.7694379091262817,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 0.6226440668106079,
+ "eval_runtime": 35.9996,
+ "eval_samples_per_second": 67.834,
+ "eval_steps_per_second": 0.556,
+ "step": 720
+ },
+ {
+ "epoch": 10.013937282229966,
+ "grad_norm": 0.04380113258957863,
+ "learning_rate": 0.0005551837152119915,
+ "loss": 2.338531494140625,
+ "step": 721
+ },
+ {
+ "epoch": 10.02787456445993,
+ "grad_norm": 0.06502492725849152,
+ "learning_rate": 0.0005550427955088455,
+ "loss": 2.336862087249756,
+ "step": 722
+ },
+ {
+ "epoch": 10.041811846689896,
+ "grad_norm": 0.06072859466075897,
+ "learning_rate": 0.0005549016727393715,
+ "loss": 2.345121383666992,
+ "step": 723
+ },
+ {
+ "epoch": 10.05574912891986,
+ "grad_norm": 0.06489435583353043,
+ "learning_rate": 0.0005547603470172697,
+ "loss": 2.3135323524475098,
+ "step": 724
+ },
+ {
+ "epoch": 10.069686411149826,
+ "grad_norm": 0.07557415962219238,
+ "learning_rate": 0.0005546188184564036,
+ "loss": 2.346886157989502,
+ "step": 725
+ },
+ {
+ "epoch": 10.08362369337979,
+ "grad_norm": 0.07416220009326935,
+ "learning_rate": 0.0005544770871708004,
+ "loss": 2.347463607788086,
+ "step": 726
+ },
+ {
+ "epoch": 10.097560975609756,
+ "grad_norm": 0.07228727638721466,
+ "learning_rate": 0.0005543351532746501,
+ "loss": 2.351980209350586,
+ "step": 727
+ },
+ {
+ "epoch": 10.111498257839722,
+ "grad_norm": 0.07207637280225754,
+ "learning_rate": 0.0005541930168823067,
+ "loss": 2.3345837593078613,
+ "step": 728
+ },
+ {
+ "epoch": 10.125435540069686,
+ "grad_norm": 0.07364149391651154,
+ "learning_rate": 0.0005540506781082864,
+ "loss": 2.3545069694519043,
+ "step": 729
+ },
+ {
+ "epoch": 10.139372822299652,
+ "grad_norm": 0.06596208363771439,
+ "learning_rate": 0.0005539081370672695,
+ "loss": 2.3250179290771484,
+ "step": 730
+ },
+ {
+ "epoch": 10.153310104529616,
+ "grad_norm": 0.07143490016460419,
+ "learning_rate": 0.0005537653938740984,
+ "loss": 2.352842330932617,
+ "step": 731
+ },
+ {
+ "epoch": 10.167247386759582,
+ "grad_norm": 0.06986920535564423,
+ "learning_rate": 0.0005536224486437788,
+ "loss": 2.3406600952148438,
+ "step": 732
+ },
+ {
+ "epoch": 10.181184668989546,
+ "grad_norm": 0.06723238527774811,
+ "learning_rate": 0.0005534793014914793,
+ "loss": 2.36100435256958,
+ "step": 733
+ },
+ {
+ "epoch": 10.195121951219512,
+ "grad_norm": 0.07599805295467377,
+ "learning_rate": 0.0005533359525325307,
+ "loss": 2.364171028137207,
+ "step": 734
+ },
+ {
+ "epoch": 10.209059233449477,
+ "grad_norm": 0.06879840791225433,
+ "learning_rate": 0.0005531924018824266,
+ "loss": 2.3600802421569824,
+ "step": 735
+ },
+ {
+ "epoch": 10.222996515679442,
+ "grad_norm": 0.06736139208078384,
+ "learning_rate": 0.0005530486496568236,
+ "loss": 2.3630075454711914,
+ "step": 736
+ },
+ {
+ "epoch": 10.236933797909408,
+ "grad_norm": 0.073630690574646,
+ "learning_rate": 0.0005529046959715397,
+ "loss": 2.3535385131835938,
+ "step": 737
+ },
+ {
+ "epoch": 10.250871080139373,
+ "grad_norm": 0.081154465675354,
+ "learning_rate": 0.0005527605409425562,
+ "loss": 2.355775833129883,
+ "step": 738
+ },
+ {
+ "epoch": 10.264808362369338,
+ "grad_norm": 0.07517901808023453,
+ "learning_rate": 0.0005526161846860161,
+ "loss": 2.3474936485290527,
+ "step": 739
+ },
+ {
+ "epoch": 10.278745644599303,
+ "grad_norm": 0.06589196622371674,
+ "learning_rate": 0.0005524716273182245,
+ "loss": 2.356273651123047,
+ "step": 740
+ },
+ {
+ "epoch": 10.292682926829269,
+ "grad_norm": 0.07035321742296219,
+ "learning_rate": 0.0005523268689556489,
+ "loss": 2.3348515033721924,
+ "step": 741
+ },
+ {
+ "epoch": 10.306620209059233,
+ "grad_norm": 0.05464137718081474,
+ "learning_rate": 0.0005521819097149183,
+ "loss": 2.340257167816162,
+ "step": 742
+ },
+ {
+ "epoch": 10.320557491289199,
+ "grad_norm": 0.05040175840258598,
+ "learning_rate": 0.0005520367497128238,
+ "loss": 2.356626033782959,
+ "step": 743
+ },
+ {
+ "epoch": 10.334494773519165,
+ "grad_norm": 0.04544971138238907,
+ "learning_rate": 0.0005518913890663182,
+ "loss": 2.3765573501586914,
+ "step": 744
+ },
+ {
+ "epoch": 10.348432055749129,
+ "grad_norm": 0.04246767982840538,
+ "learning_rate": 0.0005517458278925161,
+ "loss": 2.3584630489349365,
+ "step": 745
+ },
+ {
+ "epoch": 10.362369337979095,
+ "grad_norm": 0.0407957099378109,
+ "learning_rate": 0.0005516000663086932,
+ "loss": 2.3562331199645996,
+ "step": 746
+ },
+ {
+ "epoch": 10.376306620209059,
+ "grad_norm": 0.04157666489481926,
+ "learning_rate": 0.0005514541044322872,
+ "loss": 2.355463743209839,
+ "step": 747
+ },
+ {
+ "epoch": 10.390243902439025,
+ "grad_norm": 0.03842373192310333,
+ "learning_rate": 0.0005513079423808967,
+ "loss": 2.3644120693206787,
+ "step": 748
+ },
+ {
+ "epoch": 10.404181184668989,
+ "grad_norm": 0.03891562297940254,
+ "learning_rate": 0.0005511615802722823,
+ "loss": 2.3579063415527344,
+ "step": 749
+ },
+ {
+ "epoch": 10.418118466898955,
+ "grad_norm": 0.03712530806660652,
+ "learning_rate": 0.0005510150182243647,
+ "loss": 2.3606715202331543,
+ "step": 750
+ },
+ {
+ "epoch": 10.43205574912892,
+ "grad_norm": 0.03664202243089676,
+ "learning_rate": 0.0005508682563552269,
+ "loss": 2.3363728523254395,
+ "step": 751
+ },
+ {
+ "epoch": 10.445993031358885,
+ "grad_norm": 0.03555043414235115,
+ "learning_rate": 0.0005507212947831119,
+ "loss": 2.357100009918213,
+ "step": 752
+ },
+ {
+ "epoch": 10.45993031358885,
+ "grad_norm": 0.0355045385658741,
+ "learning_rate": 0.0005505741336264239,
+ "loss": 2.348784923553467,
+ "step": 753
+ },
+ {
+ "epoch": 10.473867595818815,
+ "grad_norm": 0.036513347178697586,
+ "learning_rate": 0.0005504267730037283,
+ "loss": 2.3371458053588867,
+ "step": 754
+ },
+ {
+ "epoch": 10.487804878048781,
+ "grad_norm": 0.034735117107629776,
+ "learning_rate": 0.0005502792130337508,
+ "loss": 2.3379664421081543,
+ "step": 755
+ },
+ {
+ "epoch": 10.501742160278745,
+ "grad_norm": 0.032890401780605316,
+ "learning_rate": 0.0005501314538353776,
+ "loss": 2.345534563064575,
+ "step": 756
+ },
+ {
+ "epoch": 10.515679442508711,
+ "grad_norm": 0.0343078076839447,
+ "learning_rate": 0.000549983495527656,
+ "loss": 2.3425400257110596,
+ "step": 757
+ },
+ {
+ "epoch": 10.529616724738675,
+ "grad_norm": 0.036330267786979675,
+ "learning_rate": 0.000549835338229793,
+ "loss": 2.353668689727783,
+ "step": 758
+ },
+ {
+ "epoch": 10.543554006968641,
+ "grad_norm": 0.03595716878771782,
+ "learning_rate": 0.0005496869820611563,
+ "loss": 2.340348958969116,
+ "step": 759
+ },
+ {
+ "epoch": 10.557491289198607,
+ "grad_norm": 0.03567204624414444,
+ "learning_rate": 0.0005495384271412739,
+ "loss": 2.3443446159362793,
+ "step": 760
+ },
+ {
+ "epoch": 10.571428571428571,
+ "grad_norm": 0.03243366256356239,
+ "learning_rate": 0.0005493896735898338,
+ "loss": 2.328749179840088,
+ "step": 761
+ },
+ {
+ "epoch": 10.585365853658537,
+ "grad_norm": 0.033156730234622955,
+ "learning_rate": 0.000549240721526684,
+ "loss": 2.3553342819213867,
+ "step": 762
+ },
+ {
+ "epoch": 10.599303135888501,
+ "grad_norm": 0.03489018976688385,
+ "learning_rate": 0.0005490915710718325,
+ "loss": 2.329984664916992,
+ "step": 763
+ },
+ {
+ "epoch": 10.613240418118467,
+ "grad_norm": 0.0352267362177372,
+ "learning_rate": 0.0005489422223454471,
+ "loss": 2.34751033782959,
+ "step": 764
+ },
+ {
+ "epoch": 10.627177700348431,
+ "grad_norm": 0.03212668001651764,
+ "learning_rate": 0.0005487926754678556,
+ "loss": 2.341987133026123,
+ "step": 765
+ },
+ {
+ "epoch": 10.641114982578397,
+ "grad_norm": 0.03473065048456192,
+ "learning_rate": 0.0005486429305595448,
+ "loss": 2.343632221221924,
+ "step": 766
+ },
+ {
+ "epoch": 10.655052264808361,
+ "grad_norm": 0.03458387404680252,
+ "learning_rate": 0.0005484929877411618,
+ "loss": 2.3420281410217285,
+ "step": 767
+ },
+ {
+ "epoch": 10.668989547038327,
+ "grad_norm": 0.03573968634009361,
+ "learning_rate": 0.0005483428471335127,
+ "loss": 2.349421501159668,
+ "step": 768
+ },
+ {
+ "epoch": 10.682926829268293,
+ "grad_norm": 0.034877803176641464,
+ "learning_rate": 0.000548192508857563,
+ "loss": 2.354094982147217,
+ "step": 769
+ },
+ {
+ "epoch": 10.696864111498257,
+ "grad_norm": 0.03350481390953064,
+ "learning_rate": 0.0005480419730344377,
+ "loss": 2.334352493286133,
+ "step": 770
+ },
+ {
+ "epoch": 10.710801393728223,
+ "grad_norm": 0.03327416628599167,
+ "learning_rate": 0.0005478912397854208,
+ "loss": 2.3445448875427246,
+ "step": 771
+ },
+ {
+ "epoch": 10.724738675958188,
+ "grad_norm": 0.03491336479783058,
+ "learning_rate": 0.0005477403092319552,
+ "loss": 2.3525538444519043,
+ "step": 772
+ },
+ {
+ "epoch": 10.738675958188153,
+ "grad_norm": 0.035869523882865906,
+ "learning_rate": 0.0005475891814956429,
+ "loss": 2.3440966606140137,
+ "step": 773
+ },
+ {
+ "epoch": 10.752613240418118,
+ "grad_norm": 0.036187391728162766,
+ "learning_rate": 0.0005474378566982449,
+ "loss": 2.33382511138916,
+ "step": 774
+ },
+ {
+ "epoch": 10.766550522648084,
+ "grad_norm": 0.037324003875255585,
+ "learning_rate": 0.0005472863349616809,
+ "loss": 2.3463244438171387,
+ "step": 775
+ },
+ {
+ "epoch": 10.78048780487805,
+ "grad_norm": 0.035808268934488297,
+ "learning_rate": 0.0005471346164080292,
+ "loss": 2.3392248153686523,
+ "step": 776
+ },
+ {
+ "epoch": 10.794425087108014,
+ "grad_norm": 0.03382394090294838,
+ "learning_rate": 0.0005469827011595266,
+ "loss": 2.3399806022644043,
+ "step": 777
+ },
+ {
+ "epoch": 10.80836236933798,
+ "grad_norm": 0.03256148472428322,
+ "learning_rate": 0.0005468305893385686,
+ "loss": 2.336940050125122,
+ "step": 778
+ },
+ {
+ "epoch": 10.822299651567944,
+ "grad_norm": 0.032796118408441544,
+ "learning_rate": 0.0005466782810677088,
+ "loss": 2.3503036499023438,
+ "step": 779
+ },
+ {
+ "epoch": 10.83623693379791,
+ "grad_norm": 0.03359639272093773,
+ "learning_rate": 0.0005465257764696593,
+ "loss": 2.340160608291626,
+ "step": 780
+ },
+ {
+ "epoch": 10.850174216027874,
+ "grad_norm": 0.03725067153573036,
+ "learning_rate": 0.0005463730756672903,
+ "loss": 2.3448994159698486,
+ "step": 781
+ },
+ {
+ "epoch": 10.86411149825784,
+ "grad_norm": 0.03396180644631386,
+ "learning_rate": 0.0005462201787836301,
+ "loss": 2.337078094482422,
+ "step": 782
+ },
+ {
+ "epoch": 10.878048780487806,
+ "grad_norm": 0.034375693649053574,
+ "learning_rate": 0.0005460670859418651,
+ "loss": 2.3564600944519043,
+ "step": 783
+ },
+ {
+ "epoch": 10.89198606271777,
+ "grad_norm": 0.034513067454099655,
+ "learning_rate": 0.000545913797265339,
+ "loss": 2.3631274700164795,
+ "step": 784
+ },
+ {
+ "epoch": 10.905923344947736,
+ "grad_norm": 0.03305843099951744,
+ "learning_rate": 0.0005457603128775541,
+ "loss": 2.345407485961914,
+ "step": 785
+ },
+ {
+ "epoch": 10.9198606271777,
+ "grad_norm": 0.03236348554491997,
+ "learning_rate": 0.0005456066329021699,
+ "loss": 2.340275526046753,
+ "step": 786
+ },
+ {
+ "epoch": 10.933797909407666,
+ "grad_norm": 0.03411583974957466,
+ "learning_rate": 0.0005454527574630037,
+ "loss": 2.341548442840576,
+ "step": 787
+ },
+ {
+ "epoch": 10.94773519163763,
+ "grad_norm": 0.03641803562641144,
+ "learning_rate": 0.0005452986866840298,
+ "loss": 2.3475522994995117,
+ "step": 788
+ },
+ {
+ "epoch": 10.961672473867596,
+ "grad_norm": 0.03492163494229317,
+ "learning_rate": 0.0005451444206893806,
+ "loss": 2.3415870666503906,
+ "step": 789
+ },
+ {
+ "epoch": 10.975609756097562,
+ "grad_norm": 0.03789013251662254,
+ "learning_rate": 0.0005449899596033453,
+ "loss": 2.3574557304382324,
+ "step": 790
+ },
+ {
+ "epoch": 10.989547038327526,
+ "grad_norm": 0.034537237137556076,
+ "learning_rate": 0.0005448353035503704,
+ "loss": 2.350353717803955,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.026393387466669083,
+ "learning_rate": 0.0005446804526550596,
+ "loss": 1.7534164190292358,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 0.6207266449928284,
+ "eval_runtime": 36.6286,
+ "eval_samples_per_second": 66.669,
+ "eval_steps_per_second": 0.546,
+ "step": 792
+ },
+ {
+ "epoch": 11.013937282229966,
+ "grad_norm": 0.04500797390937805,
+ "learning_rate": 0.0005445254070421732,
+ "loss": 2.29563570022583,
+ "step": 793
+ },
+ {
+ "epoch": 11.02787456445993,
+ "grad_norm": 0.058218058198690414,
+ "learning_rate": 0.0005443701668366288,
+ "loss": 2.285862445831299,
+ "step": 794
+ },
+ {
+ "epoch": 11.041811846689896,
+ "grad_norm": 0.06746228039264679,
+ "learning_rate": 0.0005442147321635007,
+ "loss": 2.2930586338043213,
+ "step": 795
+ },
+ {
+ "epoch": 11.05574912891986,
+ "grad_norm": 0.07853464037179947,
+ "learning_rate": 0.00054405910314802,
+ "loss": 2.2999796867370605,
+ "step": 796
+ },
+ {
+ "epoch": 11.069686411149826,
+ "grad_norm": 0.0743563324213028,
+ "learning_rate": 0.0005439032799155737,
+ "loss": 2.3127989768981934,
+ "step": 797
+ },
+ {
+ "epoch": 11.08362369337979,
+ "grad_norm": 0.06950018554925919,
+ "learning_rate": 0.000543747262591706,
+ "loss": 2.302677631378174,
+ "step": 798
+ },
+ {
+ "epoch": 11.097560975609756,
+ "grad_norm": 0.0668293684720993,
+ "learning_rate": 0.0005435910513021172,
+ "loss": 2.3067705631256104,
+ "step": 799
+ },
+ {
+ "epoch": 11.111498257839722,
+ "grad_norm": 0.05805148929357529,
+ "learning_rate": 0.0005434346461726641,
+ "loss": 2.2972123622894287,
+ "step": 800
+ },
+ {
+ "epoch": 11.125435540069686,
+ "grad_norm": 0.059285592287778854,
+ "learning_rate": 0.0005432780473293593,
+ "loss": 2.302372932434082,
+ "step": 801
+ },
+ {
+ "epoch": 11.139372822299652,
+ "grad_norm": 0.054501719772815704,
+ "learning_rate": 0.0005431212548983718,
+ "loss": 2.305246353149414,
+ "step": 802
+ },
+ {
+ "epoch": 11.153310104529616,
+ "grad_norm": 0.05490308254957199,
+ "learning_rate": 0.0005429642690060262,
+ "loss": 2.300204277038574,
+ "step": 803
+ },
+ {
+ "epoch": 11.167247386759582,
+ "grad_norm": 0.05564664676785469,
+ "learning_rate": 0.0005428070897788034,
+ "loss": 2.295349597930908,
+ "step": 804
+ },
+ {
+ "epoch": 11.181184668989546,
+ "grad_norm": 0.04841756820678711,
+ "learning_rate": 0.0005426497173433398,
+ "loss": 2.3083786964416504,
+ "step": 805
+ },
+ {
+ "epoch": 11.195121951219512,
+ "grad_norm": 0.05090150982141495,
+ "learning_rate": 0.0005424921518264275,
+ "loss": 2.2890477180480957,
+ "step": 806
+ },
+ {
+ "epoch": 11.209059233449477,
+ "grad_norm": 0.049588896334171295,
+ "learning_rate": 0.0005423343933550143,
+ "loss": 2.3092164993286133,
+ "step": 807
+ },
+ {
+ "epoch": 11.222996515679442,
+ "grad_norm": 0.059266265481710434,
+ "learning_rate": 0.0005421764420562032,
+ "loss": 2.3087329864501953,
+ "step": 808
+ },
+ {
+ "epoch": 11.236933797909408,
+ "grad_norm": 0.061635106801986694,
+ "learning_rate": 0.0005420182980572527,
+ "loss": 2.310224771499634,
+ "step": 809
+ },
+ {
+ "epoch": 11.250871080139373,
+ "grad_norm": 0.058707281947135925,
+ "learning_rate": 0.0005418599614855768,
+ "loss": 2.3094818592071533,
+ "step": 810
+ },
+ {
+ "epoch": 11.264808362369338,
+ "grad_norm": 0.05711625888943672,
+ "learning_rate": 0.0005417014324687442,
+ "loss": 2.320720672607422,
+ "step": 811
+ },
+ {
+ "epoch": 11.278745644599303,
+ "grad_norm": 0.04941999912261963,
+ "learning_rate": 0.000541542711134479,
+ "loss": 2.3037776947021484,
+ "step": 812
+ },
+ {
+ "epoch": 11.292682926829269,
+ "grad_norm": 0.0481753945350647,
+ "learning_rate": 0.0005413837976106599,
+ "loss": 2.307615280151367,
+ "step": 813
+ },
+ {
+ "epoch": 11.306620209059233,
+ "grad_norm": 0.05005398392677307,
+ "learning_rate": 0.0005412246920253208,
+ "loss": 2.302461624145508,
+ "step": 814
+ },
+ {
+ "epoch": 11.320557491289199,
+ "grad_norm": 0.051312051713466644,
+ "learning_rate": 0.0005410653945066503,
+ "loss": 2.3107659816741943,
+ "step": 815
+ },
+ {
+ "epoch": 11.334494773519165,
+ "grad_norm": 0.047787491232156754,
+ "learning_rate": 0.0005409059051829914,
+ "loss": 2.303896903991699,
+ "step": 816
+ },
+ {
+ "epoch": 11.348432055749129,
+ "grad_norm": 0.044105708599090576,
+ "learning_rate": 0.0005407462241828417,
+ "loss": 2.3028616905212402,
+ "step": 817
+ },
+ {
+ "epoch": 11.362369337979095,
+ "grad_norm": 0.04771425202488899,
+ "learning_rate": 0.0005405863516348535,
+ "loss": 2.3242416381835938,
+ "step": 818
+ },
+ {
+ "epoch": 11.376306620209059,
+ "grad_norm": 0.049508776515722275,
+ "learning_rate": 0.000540426287667833,
+ "loss": 2.317350387573242,
+ "step": 819
+ },
+ {
+ "epoch": 11.390243902439025,
+ "grad_norm": 0.04476630315184593,
+ "learning_rate": 0.000540266032410741,
+ "loss": 2.3019609451293945,
+ "step": 820
+ },
+ {
+ "epoch": 11.404181184668989,
+ "grad_norm": 0.044484466314315796,
+ "learning_rate": 0.0005401055859926923,
+ "loss": 2.3157167434692383,
+ "step": 821
+ },
+ {
+ "epoch": 11.418118466898955,
+ "grad_norm": 0.04700213670730591,
+ "learning_rate": 0.0005399449485429555,
+ "loss": 2.31441330909729,
+ "step": 822
+ },
+ {
+ "epoch": 11.43205574912892,
+ "grad_norm": 0.04357650876045227,
+ "learning_rate": 0.0005397841201909535,
+ "loss": 2.309573173522949,
+ "step": 823
+ },
+ {
+ "epoch": 11.445993031358885,
+ "grad_norm": 0.04270123690366745,
+ "learning_rate": 0.0005396231010662627,
+ "loss": 2.2956438064575195,
+ "step": 824
+ },
+ {
+ "epoch": 11.45993031358885,
+ "grad_norm": 0.04122788831591606,
+ "learning_rate": 0.0005394618912986132,
+ "loss": 2.3093338012695312,
+ "step": 825
+ },
+ {
+ "epoch": 11.473867595818815,
+ "grad_norm": 0.040944404900074005,
+ "learning_rate": 0.0005393004910178889,
+ "loss": 2.3245465755462646,
+ "step": 826
+ },
+ {
+ "epoch": 11.487804878048781,
+ "grad_norm": 0.04059522598981857,
+ "learning_rate": 0.0005391389003541271,
+ "loss": 2.307492733001709,
+ "step": 827
+ },
+ {
+ "epoch": 11.501742160278745,
+ "grad_norm": 0.04292140156030655,
+ "learning_rate": 0.0005389771194375185,
+ "loss": 2.32723069190979,
+ "step": 828
+ },
+ {
+ "epoch": 11.515679442508711,
+ "grad_norm": 0.041085343807935715,
+ "learning_rate": 0.0005388151483984071,
+ "loss": 2.3025991916656494,
+ "step": 829
+ },
+ {
+ "epoch": 11.529616724738675,
+ "grad_norm": 0.040302127599716187,
+ "learning_rate": 0.0005386529873672898,
+ "loss": 2.306711196899414,
+ "step": 830
+ },
+ {
+ "epoch": 11.543554006968641,
+ "grad_norm": 0.04179452359676361,
+ "learning_rate": 0.0005384906364748172,
+ "loss": 2.299077033996582,
+ "step": 831
+ },
+ {
+ "epoch": 11.557491289198607,
+ "grad_norm": 0.04052369296550751,
+ "learning_rate": 0.000538328095851792,
+ "loss": 2.3212227821350098,
+ "step": 832
+ },
+ {
+ "epoch": 11.571428571428571,
+ "grad_norm": 0.03855585679411888,
+ "learning_rate": 0.0005381653656291707,
+ "loss": 2.2905197143554688,
+ "step": 833
+ },
+ {
+ "epoch": 11.585365853658537,
+ "grad_norm": 0.04159102961421013,
+ "learning_rate": 0.0005380024459380619,
+ "loss": 2.2973320484161377,
+ "step": 834
+ },
+ {
+ "epoch": 11.599303135888501,
+ "grad_norm": 0.044633787125349045,
+ "learning_rate": 0.000537839336909727,
+ "loss": 2.3214757442474365,
+ "step": 835
+ },
+ {
+ "epoch": 11.613240418118467,
+ "grad_norm": 0.03999071940779686,
+ "learning_rate": 0.00053767603867558,
+ "loss": 2.332554817199707,
+ "step": 836
+ },
+ {
+ "epoch": 11.627177700348431,
+ "grad_norm": 0.03866419568657875,
+ "learning_rate": 0.0005375125513671874,
+ "loss": 2.3050875663757324,
+ "step": 837
+ },
+ {
+ "epoch": 11.641114982578397,
+ "grad_norm": 0.041100166738033295,
+ "learning_rate": 0.0005373488751162681,
+ "loss": 2.316553831100464,
+ "step": 838
+ },
+ {
+ "epoch": 11.655052264808361,
+ "grad_norm": 0.040330950170755386,
+ "learning_rate": 0.0005371850100546929,
+ "loss": 2.310610294342041,
+ "step": 839
+ },
+ {
+ "epoch": 11.668989547038327,
+ "grad_norm": 0.03405703231692314,
+ "learning_rate": 0.000537020956314485,
+ "loss": 2.311572313308716,
+ "step": 840
+ },
+ {
+ "epoch": 11.682926829268293,
+ "grad_norm": 0.038694240152835846,
+ "learning_rate": 0.0005368567140278196,
+ "loss": 2.291428565979004,
+ "step": 841
+ },
+ {
+ "epoch": 11.696864111498257,
+ "grad_norm": 0.03937961906194687,
+ "learning_rate": 0.0005366922833270235,
+ "loss": 2.315734386444092,
+ "step": 842
+ },
+ {
+ "epoch": 11.710801393728223,
+ "grad_norm": 0.038759566843509674,
+ "learning_rate": 0.0005365276643445757,
+ "loss": 2.3142471313476562,
+ "step": 843
+ },
+ {
+ "epoch": 11.724738675958188,
+ "grad_norm": 0.03737666830420494,
+ "learning_rate": 0.0005363628572131069,
+ "loss": 2.305859088897705,
+ "step": 844
+ },
+ {
+ "epoch": 11.738675958188153,
+ "grad_norm": 0.039980217814445496,
+ "learning_rate": 0.0005361978620653991,
+ "loss": 2.3132710456848145,
+ "step": 845
+ },
+ {
+ "epoch": 11.752613240418118,
+ "grad_norm": 0.040231477469205856,
+ "learning_rate": 0.0005360326790343858,
+ "loss": 2.307582139968872,
+ "step": 846
+ },
+ {
+ "epoch": 11.766550522648084,
+ "grad_norm": 0.03938363865017891,
+ "learning_rate": 0.000535867308253152,
+ "loss": 2.33015775680542,
+ "step": 847
+ },
+ {
+ "epoch": 11.78048780487805,
+ "grad_norm": 0.03871415555477142,
+ "learning_rate": 0.0005357017498549341,
+ "loss": 2.315992832183838,
+ "step": 848
+ },
+ {
+ "epoch": 11.794425087108014,
+ "grad_norm": 0.03816714137792587,
+ "learning_rate": 0.0005355360039731196,
+ "loss": 2.315371513366699,
+ "step": 849
+ },
+ {
+ "epoch": 11.80836236933798,
+ "grad_norm": 0.03860654681921005,
+ "learning_rate": 0.0005353700707412466,
+ "loss": 2.3099796772003174,
+ "step": 850
+ },
+ {
+ "epoch": 11.822299651567944,
+ "grad_norm": 0.04050910845398903,
+ "learning_rate": 0.0005352039502930048,
+ "loss": 2.331601142883301,
+ "step": 851
+ },
+ {
+ "epoch": 11.83623693379791,
+ "grad_norm": 0.040455542504787445,
+ "learning_rate": 0.0005350376427622343,
+ "loss": 2.3153774738311768,
+ "step": 852
+ },
+ {
+ "epoch": 11.850174216027874,
+ "grad_norm": 0.03606412559747696,
+ "learning_rate": 0.0005348711482829261,
+ "loss": 2.3196091651916504,
+ "step": 853
+ },
+ {
+ "epoch": 11.86411149825784,
+ "grad_norm": 0.03540179878473282,
+ "learning_rate": 0.000534704466989222,
+ "loss": 2.3175747394561768,
+ "step": 854
+ },
+ {
+ "epoch": 11.878048780487806,
+ "grad_norm": 0.03594037890434265,
+ "learning_rate": 0.0005345375990154138,
+ "loss": 2.3123281002044678,
+ "step": 855
+ },
+ {
+ "epoch": 11.89198606271777,
+ "grad_norm": 0.037316273897886276,
+ "learning_rate": 0.0005343705444959441,
+ "loss": 2.326590061187744,
+ "step": 856
+ },
+ {
+ "epoch": 11.905923344947736,
+ "grad_norm": 0.03534175828099251,
+ "learning_rate": 0.000534203303565406,
+ "loss": 2.289609670639038,
+ "step": 857
+ },
+ {
+ "epoch": 11.9198606271777,
+ "grad_norm": 0.03645944595336914,
+ "learning_rate": 0.000534035876358542,
+ "loss": 2.310405731201172,
+ "step": 858
+ },
+ {
+ "epoch": 11.933797909407666,
+ "grad_norm": 0.033878158777952194,
+ "learning_rate": 0.0005338682630102454,
+ "loss": 2.3025999069213867,
+ "step": 859
+ },
+ {
+ "epoch": 11.94773519163763,
+ "grad_norm": 0.03515630215406418,
+ "learning_rate": 0.0005337004636555595,
+ "loss": 2.3085150718688965,
+ "step": 860
+ },
+ {
+ "epoch": 11.961672473867596,
+ "grad_norm": 0.034178491681814194,
+ "learning_rate": 0.0005335324784296768,
+ "loss": 2.3223443031311035,
+ "step": 861
+ },
+ {
+ "epoch": 11.975609756097562,
+ "grad_norm": 0.0340011864900589,
+ "learning_rate": 0.0005333643074679403,
+ "loss": 2.324476957321167,
+ "step": 862
+ },
+ {
+ "epoch": 11.989547038327526,
+ "grad_norm": 0.03569193184375763,
+ "learning_rate": 0.000533195950905842,
+ "loss": 2.3087520599365234,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.030978869646787643,
+ "learning_rate": 0.0005330274088790239,
+ "loss": 1.733755350112915,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 0.6196663975715637,
+ "eval_runtime": 38.4411,
+ "eval_samples_per_second": 63.526,
+ "eval_steps_per_second": 0.52,
+ "step": 864
+ },
+ {
+ "epoch": 12.013937282229966,
+ "grad_norm": 0.04311290383338928,
+ "learning_rate": 0.0005328586815232773,
+ "loss": 2.267500638961792,
+ "step": 865
+ },
+ {
+ "epoch": 12.02787456445993,
+ "grad_norm": 0.05809512361884117,
+ "learning_rate": 0.0005326897689745428,
+ "loss": 2.269824981689453,
+ "step": 866
+ },
+ {
+ "epoch": 12.041811846689896,
+ "grad_norm": 0.06641583144664764,
+ "learning_rate": 0.0005325206713689101,
+ "loss": 2.2579562664031982,
+ "step": 867
+ },
+ {
+ "epoch": 12.05574912891986,
+ "grad_norm": 0.06946069747209549,
+ "learning_rate": 0.0005323513888426181,
+ "loss": 2.2649731636047363,
+ "step": 868
+ },
+ {
+ "epoch": 12.069686411149826,
+ "grad_norm": 0.07457753270864487,
+ "learning_rate": 0.0005321819215320546,
+ "loss": 2.271296501159668,
+ "step": 869
+ },
+ {
+ "epoch": 12.08362369337979,
+ "grad_norm": 0.08557604998350143,
+ "learning_rate": 0.0005320122695737565,
+ "loss": 2.2977068424224854,
+ "step": 870
+ },
+ {
+ "epoch": 12.097560975609756,
+ "grad_norm": 0.07865381985902786,
+ "learning_rate": 0.0005318424331044094,
+ "loss": 2.2831926345825195,
+ "step": 871
+ },
+ {
+ "epoch": 12.111498257839722,
+ "grad_norm": 0.07406128942966461,
+ "learning_rate": 0.0005316724122608473,
+ "loss": 2.280620574951172,
+ "step": 872
+ },
+ {
+ "epoch": 12.125435540069686,
+ "grad_norm": 0.08649969846010208,
+ "learning_rate": 0.0005315022071800527,
+ "loss": 2.2639617919921875,
+ "step": 873
+ },
+ {
+ "epoch": 12.139372822299652,
+ "grad_norm": 0.08262167125940323,
+ "learning_rate": 0.0005313318179991574,
+ "loss": 2.271108627319336,
+ "step": 874
+ },
+ {
+ "epoch": 12.153310104529616,
+ "grad_norm": 0.0752791240811348,
+ "learning_rate": 0.0005311612448554402,
+ "loss": 2.273391008377075,
+ "step": 875
+ },
+ {
+ "epoch": 12.167247386759582,
+ "grad_norm": 0.07095267623662949,
+ "learning_rate": 0.0005309904878863293,
+ "loss": 2.276211977005005,
+ "step": 876
+ },
+ {
+ "epoch": 12.181184668989546,
+ "grad_norm": 0.061625171452760696,
+ "learning_rate": 0.0005308195472294001,
+ "loss": 2.2848544120788574,
+ "step": 877
+ },
+ {
+ "epoch": 12.195121951219512,
+ "grad_norm": 0.06082753837108612,
+ "learning_rate": 0.0005306484230223769,
+ "loss": 2.2795495986938477,
+ "step": 878
+ },
+ {
+ "epoch": 12.209059233449477,
+ "grad_norm": 0.0587560310959816,
+ "learning_rate": 0.000530477115403131,
+ "loss": 2.257300853729248,
+ "step": 879
+ },
+ {
+ "epoch": 12.222996515679442,
+ "grad_norm": 0.05483998730778694,
+ "learning_rate": 0.0005303056245096817,
+ "loss": 2.2889161109924316,
+ "step": 880
+ },
+ {
+ "epoch": 12.236933797909408,
+ "grad_norm": 0.05021355301141739,
+ "learning_rate": 0.0005301339504801967,
+ "loss": 2.2778401374816895,
+ "step": 881
+ },
+ {
+ "epoch": 12.250871080139373,
+ "grad_norm": 0.05440690740942955,
+ "learning_rate": 0.0005299620934529902,
+ "loss": 2.2760677337646484,
+ "step": 882
+ },
+ {
+ "epoch": 12.264808362369338,
+ "grad_norm": 0.05961807072162628,
+ "learning_rate": 0.0005297900535665244,
+ "loss": 2.276120185852051,
+ "step": 883
+ },
+ {
+ "epoch": 12.278745644599303,
+ "grad_norm": 0.054035380482673645,
+ "learning_rate": 0.0005296178309594087,
+ "loss": 2.255659341812134,
+ "step": 884
+ },
+ {
+ "epoch": 12.292682926829269,
+ "grad_norm": 0.05121298506855965,
+ "learning_rate": 0.0005294454257704,
+ "loss": 2.2852983474731445,
+ "step": 885
+ },
+ {
+ "epoch": 12.306620209059233,
+ "grad_norm": 0.04890505596995354,
+ "learning_rate": 0.0005292728381384018,
+ "loss": 2.2752151489257812,
+ "step": 886
+ },
+ {
+ "epoch": 12.320557491289199,
+ "grad_norm": 0.05019564554095268,
+ "learning_rate": 0.0005291000682024647,
+ "loss": 2.261242389678955,
+ "step": 887
+ },
+ {
+ "epoch": 12.334494773519165,
+ "grad_norm": 0.04824003204703331,
+ "learning_rate": 0.0005289271161017867,
+ "loss": 2.2752835750579834,
+ "step": 888
+ },
+ {
+ "epoch": 12.348432055749129,
+ "grad_norm": 0.04195769876241684,
+ "learning_rate": 0.0005287539819757119,
+ "loss": 2.2705702781677246,
+ "step": 889
+ },
+ {
+ "epoch": 12.362369337979095,
+ "grad_norm": 0.046239253133535385,
+ "learning_rate": 0.0005285806659637315,
+ "loss": 2.2981534004211426,
+ "step": 890
+ },
+ {
+ "epoch": 12.376306620209059,
+ "grad_norm": 0.04743665084242821,
+ "learning_rate": 0.000528407168205483,
+ "loss": 2.278078079223633,
+ "step": 891
+ },
+ {
+ "epoch": 12.390243902439025,
+ "grad_norm": 0.04690218344330788,
+ "learning_rate": 0.0005282334888407503,
+ "loss": 2.2809972763061523,
+ "step": 892
+ },
+ {
+ "epoch": 12.404181184668989,
+ "grad_norm": 0.0444699302315712,
+ "learning_rate": 0.000528059628009464,
+ "loss": 2.2702579498291016,
+ "step": 893
+ },
+ {
+ "epoch": 12.418118466898955,
+ "grad_norm": 0.04225282371044159,
+ "learning_rate": 0.0005278855858517003,
+ "loss": 2.2717671394348145,
+ "step": 894
+ },
+ {
+ "epoch": 12.43205574912892,
+ "grad_norm": 0.041407857090234756,
+ "learning_rate": 0.0005277113625076822,
+ "loss": 2.266977548599243,
+ "step": 895
+ },
+ {
+ "epoch": 12.445993031358885,
+ "grad_norm": 0.042014770209789276,
+ "learning_rate": 0.000527536958117778,
+ "loss": 2.269441604614258,
+ "step": 896
+ },
+ {
+ "epoch": 12.45993031358885,
+ "grad_norm": 0.04196929931640625,
+ "learning_rate": 0.0005273623728225022,
+ "loss": 2.246767997741699,
+ "step": 897
+ },
+ {
+ "epoch": 12.473867595818815,
+ "grad_norm": 0.04507727175951004,
+ "learning_rate": 0.0005271876067625153,
+ "loss": 2.2929835319519043,
+ "step": 898
+ },
+ {
+ "epoch": 12.487804878048781,
+ "grad_norm": 0.043129295110702515,
+ "learning_rate": 0.0005270126600786228,
+ "loss": 2.280632257461548,
+ "step": 899
+ },
+ {
+ "epoch": 12.501742160278745,
+ "grad_norm": 0.041876427829265594,
+ "learning_rate": 0.0005268375329117762,
+ "loss": 2.2524752616882324,
+ "step": 900
+ },
+ {
+ "epoch": 12.515679442508711,
+ "grad_norm": 0.04281412810087204,
+ "learning_rate": 0.0005266622254030724,
+ "loss": 2.278818130493164,
+ "step": 901
+ },
+ {
+ "epoch": 12.529616724738675,
+ "grad_norm": 0.040438197553157806,
+ "learning_rate": 0.0005264867376937534,
+ "loss": 2.2771482467651367,
+ "step": 902
+ },
+ {
+ "epoch": 12.543554006968641,
+ "grad_norm": 0.03930707275867462,
+ "learning_rate": 0.0005263110699252065,
+ "loss": 2.273127555847168,
+ "step": 903
+ },
+ {
+ "epoch": 12.557491289198607,
+ "grad_norm": 0.04181307926774025,
+ "learning_rate": 0.000526135222238964,
+ "loss": 2.2839956283569336,
+ "step": 904
+ },
+ {
+ "epoch": 12.571428571428571,
+ "grad_norm": 0.042597733438014984,
+ "learning_rate": 0.0005259591947767032,
+ "loss": 2.262939929962158,
+ "step": 905
+ },
+ {
+ "epoch": 12.585365853658537,
+ "grad_norm": 0.04178392142057419,
+ "learning_rate": 0.0005257829876802464,
+ "loss": 2.286794662475586,
+ "step": 906
+ },
+ {
+ "epoch": 12.599303135888501,
+ "grad_norm": 0.04041772708296776,
+ "learning_rate": 0.0005256066010915603,
+ "loss": 2.276432991027832,
+ "step": 907
+ },
+ {
+ "epoch": 12.613240418118467,
+ "grad_norm": 0.04161509871482849,
+ "learning_rate": 0.0005254300351527566,
+ "loss": 2.2779972553253174,
+ "step": 908
+ },
+ {
+ "epoch": 12.627177700348431,
+ "grad_norm": 0.04206471145153046,
+ "learning_rate": 0.000525253290006091,
+ "loss": 2.282811164855957,
+ "step": 909
+ },
+ {
+ "epoch": 12.641114982578397,
+ "grad_norm": 0.04001585766673088,
+ "learning_rate": 0.0005250763657939641,
+ "loss": 2.29434871673584,
+ "step": 910
+ },
+ {
+ "epoch": 12.655052264808361,
+ "grad_norm": 0.041886743158102036,
+ "learning_rate": 0.0005248992626589203,
+ "loss": 2.278651237487793,
+ "step": 911
+ },
+ {
+ "epoch": 12.668989547038327,
+ "grad_norm": 0.0404231883585453,
+ "learning_rate": 0.0005247219807436489,
+ "loss": 2.2875375747680664,
+ "step": 912
+ },
+ {
+ "epoch": 12.682926829268293,
+ "grad_norm": 0.037211328744888306,
+ "learning_rate": 0.000524544520190982,
+ "loss": 2.294013023376465,
+ "step": 913
+ },
+ {
+ "epoch": 12.696864111498257,
+ "grad_norm": 0.03906721621751785,
+ "learning_rate": 0.000524366881143897,
+ "loss": 2.2899856567382812,
+ "step": 914
+ },
+ {
+ "epoch": 12.710801393728223,
+ "grad_norm": 0.04206228628754616,
+ "learning_rate": 0.0005241890637455141,
+ "loss": 2.282346248626709,
+ "step": 915
+ },
+ {
+ "epoch": 12.724738675958188,
+ "grad_norm": 0.03915264084935188,
+ "learning_rate": 0.0005240110681390978,
+ "loss": 2.2995424270629883,
+ "step": 916
+ },
+ {
+ "epoch": 12.738675958188153,
+ "grad_norm": 0.03919649496674538,
+ "learning_rate": 0.0005238328944680558,
+ "loss": 2.282196044921875,
+ "step": 917
+ },
+ {
+ "epoch": 12.752613240418118,
+ "grad_norm": 0.039669446647167206,
+ "learning_rate": 0.0005236545428759394,
+ "loss": 2.2758240699768066,
+ "step": 918
+ },
+ {
+ "epoch": 12.766550522648084,
+ "grad_norm": 0.04075023531913757,
+ "learning_rate": 0.0005234760135064434,
+ "loss": 2.278747320175171,
+ "step": 919
+ },
+ {
+ "epoch": 12.78048780487805,
+ "grad_norm": 0.03815247863531113,
+ "learning_rate": 0.0005232973065034055,
+ "loss": 2.2989745140075684,
+ "step": 920
+ },
+ {
+ "epoch": 12.794425087108014,
+ "grad_norm": 0.039577171206474304,
+ "learning_rate": 0.0005231184220108069,
+ "loss": 2.278186321258545,
+ "step": 921
+ },
+ {
+ "epoch": 12.80836236933798,
+ "grad_norm": 0.04091718792915344,
+ "learning_rate": 0.0005229393601727713,
+ "loss": 2.3046107292175293,
+ "step": 922
+ },
+ {
+ "epoch": 12.822299651567944,
+ "grad_norm": 0.04034758731722832,
+ "learning_rate": 0.000522760121133566,
+ "loss": 2.2959580421447754,
+ "step": 923
+ },
+ {
+ "epoch": 12.83623693379791,
+ "grad_norm": 0.041219793260097504,
+ "learning_rate": 0.0005225807050376004,
+ "loss": 2.289950370788574,
+ "step": 924
+ },
+ {
+ "epoch": 12.850174216027874,
+ "grad_norm": 0.042124949395656586,
+ "learning_rate": 0.0005224011120294269,
+ "loss": 2.2865607738494873,
+ "step": 925
+ },
+ {
+ "epoch": 12.86411149825784,
+ "grad_norm": 0.04259328171610832,
+ "learning_rate": 0.0005222213422537401,
+ "loss": 2.2798972129821777,
+ "step": 926
+ },
+ {
+ "epoch": 12.878048780487806,
+ "grad_norm": 0.0413426011800766,
+ "learning_rate": 0.0005220413958553777,
+ "loss": 2.2765798568725586,
+ "step": 927
+ },
+ {
+ "epoch": 12.89198606271777,
+ "grad_norm": 0.04276851564645767,
+ "learning_rate": 0.0005218612729793188,
+ "loss": 2.292202949523926,
+ "step": 928
+ },
+ {
+ "epoch": 12.905923344947736,
+ "grad_norm": 0.038679834455251694,
+ "learning_rate": 0.0005216809737706856,
+ "loss": 2.2641711235046387,
+ "step": 929
+ },
+ {
+ "epoch": 12.9198606271777,
+ "grad_norm": 0.04027910903096199,
+ "learning_rate": 0.0005215004983747415,
+ "loss": 2.297112464904785,
+ "step": 930
+ },
+ {
+ "epoch": 12.933797909407666,
+ "grad_norm": 0.037091903388500214,
+ "learning_rate": 0.0005213198469368925,
+ "loss": 2.2731027603149414,
+ "step": 931
+ },
+ {
+ "epoch": 12.94773519163763,
+ "grad_norm": 0.0381062775850296,
+ "learning_rate": 0.0005211390196026861,
+ "loss": 2.276169538497925,
+ "step": 932
+ },
+ {
+ "epoch": 12.961672473867596,
+ "grad_norm": 0.03912157565355301,
+ "learning_rate": 0.0005209580165178117,
+ "loss": 2.2855257987976074,
+ "step": 933
+ },
+ {
+ "epoch": 12.975609756097562,
+ "grad_norm": 0.03726741299033165,
+ "learning_rate": 0.0005207768378281003,
+ "loss": 2.285484790802002,
+ "step": 934
+ },
+ {
+ "epoch": 12.989547038327526,
+ "grad_norm": 0.03863261640071869,
+ "learning_rate": 0.0005205954836795241,
+ "loss": 2.2770638465881348,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.03204738348722458,
+ "learning_rate": 0.000520413954218197,
+ "loss": 1.7078638076782227,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 0.6196639537811279,
+ "eval_runtime": 36.3518,
+ "eval_samples_per_second": 67.177,
+ "eval_steps_per_second": 0.55,
+ "step": 936
+ },
+ {
+ "epoch": 13.013937282229966,
+ "grad_norm": 0.04385007545351982,
+ "learning_rate": 0.0005202322495903739,
+ "loss": 2.2220354080200195,
+ "step": 937
+ },
+ {
+ "epoch": 13.02787456445993,
+ "grad_norm": 0.05723090469837189,
+ "learning_rate": 0.0005200503699424509,
+ "loss": 2.223271369934082,
+ "step": 938
+ },
+ {
+ "epoch": 13.041811846689896,
+ "grad_norm": 0.06027279794216156,
+ "learning_rate": 0.0005198683154209654,
+ "loss": 2.2302541732788086,
+ "step": 939
+ },
+ {
+ "epoch": 13.05574912891986,
+ "grad_norm": 0.06342783570289612,
+ "learning_rate": 0.0005196860861725952,
+ "loss": 2.2211854457855225,
+ "step": 940
+ },
+ {
+ "epoch": 13.069686411149826,
+ "grad_norm": 0.06265735626220703,
+ "learning_rate": 0.0005195036823441592,
+ "loss": 2.222750425338745,
+ "step": 941
+ },
+ {
+ "epoch": 13.08362369337979,
+ "grad_norm": 0.0661185085773468,
+ "learning_rate": 0.0005193211040826169,
+ "loss": 2.230656862258911,
+ "step": 942
+ },
+ {
+ "epoch": 13.097560975609756,
+ "grad_norm": 0.06665238738059998,
+ "learning_rate": 0.0005191383515350681,
+ "loss": 2.220534563064575,
+ "step": 943
+ },
+ {
+ "epoch": 13.111498257839722,
+ "grad_norm": 0.06432333588600159,
+ "learning_rate": 0.0005189554248487536,
+ "loss": 2.2317209243774414,
+ "step": 944
+ },
+ {
+ "epoch": 13.125435540069686,
+ "grad_norm": 0.057658061385154724,
+ "learning_rate": 0.0005187723241710539,
+ "loss": 2.20767879486084,
+ "step": 945
+ },
+ {
+ "epoch": 13.139372822299652,
+ "grad_norm": 0.06340344250202179,
+ "learning_rate": 0.0005185890496494899,
+ "loss": 2.240220546722412,
+ "step": 946
+ },
+ {
+ "epoch": 13.153310104529616,
+ "grad_norm": 0.0649016872048378,
+ "learning_rate": 0.0005184056014317225,
+ "loss": 2.2353672981262207,
+ "step": 947
+ },
+ {
+ "epoch": 13.167247386759582,
+ "grad_norm": 0.05792258679866791,
+ "learning_rate": 0.0005182219796655528,
+ "loss": 2.2480835914611816,
+ "step": 948
+ },
+ {
+ "epoch": 13.181184668989546,
+ "grad_norm": 0.059482429176568985,
+ "learning_rate": 0.0005180381844989214,
+ "loss": 2.2432656288146973,
+ "step": 949
+ },
+ {
+ "epoch": 13.195121951219512,
+ "grad_norm": 0.05838126689195633,
+ "learning_rate": 0.0005178542160799088,
+ "loss": 2.237567901611328,
+ "step": 950
+ },
+ {
+ "epoch": 13.209059233449477,
+ "grad_norm": 0.05699385702610016,
+ "learning_rate": 0.0005176700745567353,
+ "loss": 2.243746280670166,
+ "step": 951
+ },
+ {
+ "epoch": 13.222996515679442,
+ "grad_norm": 0.05618268996477127,
+ "learning_rate": 0.0005174857600777599,
+ "loss": 2.2216076850891113,
+ "step": 952
+ },
+ {
+ "epoch": 13.236933797909408,
+ "grad_norm": 0.05328221991658211,
+ "learning_rate": 0.0005173012727914816,
+ "loss": 2.2413382530212402,
+ "step": 953
+ },
+ {
+ "epoch": 13.250871080139373,
+ "grad_norm": 0.05254136770963669,
+ "learning_rate": 0.0005171166128465389,
+ "loss": 2.2317683696746826,
+ "step": 954
+ },
+ {
+ "epoch": 13.264808362369338,
+ "grad_norm": 0.05144176259636879,
+ "learning_rate": 0.0005169317803917083,
+ "loss": 2.2372474670410156,
+ "step": 955
+ },
+ {
+ "epoch": 13.278745644599303,
+ "grad_norm": 0.05258858576416969,
+ "learning_rate": 0.0005167467755759065,
+ "loss": 2.2383830547332764,
+ "step": 956
+ },
+ {
+ "epoch": 13.292682926829269,
+ "grad_norm": 0.0550001785159111,
+ "learning_rate": 0.0005165615985481881,
+ "loss": 2.2456729412078857,
+ "step": 957
+ },
+ {
+ "epoch": 13.306620209059233,
+ "grad_norm": 0.050276629626750946,
+ "learning_rate": 0.0005163762494577474,
+ "loss": 2.262298345565796,
+ "step": 958
+ },
+ {
+ "epoch": 13.320557491289199,
+ "grad_norm": 0.05388111621141434,
+ "learning_rate": 0.0005161907284539165,
+ "loss": 2.250800609588623,
+ "step": 959
+ },
+ {
+ "epoch": 13.334494773519165,
+ "grad_norm": 0.05154367536306381,
+ "learning_rate": 0.0005160050356861663,
+ "loss": 2.2442479133605957,
+ "step": 960
+ },
+ {
+ "epoch": 13.348432055749129,
+ "grad_norm": 0.04562186077237129,
+ "learning_rate": 0.0005158191713041063,
+ "loss": 2.237484931945801,
+ "step": 961
+ },
+ {
+ "epoch": 13.362369337979095,
+ "grad_norm": 0.049510203301906586,
+ "learning_rate": 0.0005156331354574838,
+ "loss": 2.243274688720703,
+ "step": 962
+ },
+ {
+ "epoch": 13.376306620209059,
+ "grad_norm": 0.050305187702178955,
+ "learning_rate": 0.0005154469282961847,
+ "loss": 2.2452855110168457,
+ "step": 963
+ },
+ {
+ "epoch": 13.390243902439025,
+ "grad_norm": 0.049128562211990356,
+ "learning_rate": 0.0005152605499702328,
+ "loss": 2.2562594413757324,
+ "step": 964
+ },
+ {
+ "epoch": 13.404181184668989,
+ "grad_norm": 0.04948648437857628,
+ "learning_rate": 0.0005150740006297896,
+ "loss": 2.2388229370117188,
+ "step": 965
+ },
+ {
+ "epoch": 13.418118466898955,
+ "grad_norm": 0.053290050476789474,
+ "learning_rate": 0.0005148872804251548,
+ "loss": 2.2601318359375,
+ "step": 966
+ },
+ {
+ "epoch": 13.43205574912892,
+ "grad_norm": 0.04839639738202095,
+ "learning_rate": 0.000514700389506765,
+ "loss": 2.2303178310394287,
+ "step": 967
+ },
+ {
+ "epoch": 13.445993031358885,
+ "grad_norm": 0.04883972555398941,
+ "learning_rate": 0.0005145133280251954,
+ "loss": 2.246448040008545,
+ "step": 968
+ },
+ {
+ "epoch": 13.45993031358885,
+ "grad_norm": 0.04747871682047844,
+ "learning_rate": 0.0005143260961311578,
+ "loss": 2.259640693664551,
+ "step": 969
+ },
+ {
+ "epoch": 13.473867595818815,
+ "grad_norm": 0.046724554151296616,
+ "learning_rate": 0.0005141386939755014,
+ "loss": 2.2453014850616455,
+ "step": 970
+ },
+ {
+ "epoch": 13.487804878048781,
+ "grad_norm": 0.045614756643772125,
+ "learning_rate": 0.0005139511217092129,
+ "loss": 2.2351949214935303,
+ "step": 971
+ },
+ {
+ "epoch": 13.501742160278745,
+ "grad_norm": 0.04794120043516159,
+ "learning_rate": 0.000513763379483416,
+ "loss": 2.2457003593444824,
+ "step": 972
+ },
+ {
+ "epoch": 13.515679442508711,
+ "grad_norm": 0.05043521523475647,
+ "learning_rate": 0.0005135754674493709,
+ "loss": 2.258542060852051,
+ "step": 973
+ },
+ {
+ "epoch": 13.529616724738675,
+ "grad_norm": 0.046207673847675323,
+ "learning_rate": 0.0005133873857584753,
+ "loss": 2.2370145320892334,
+ "step": 974
+ },
+ {
+ "epoch": 13.543554006968641,
+ "grad_norm": 0.04402166232466698,
+ "learning_rate": 0.0005131991345622629,
+ "loss": 2.2408246994018555,
+ "step": 975
+ },
+ {
+ "epoch": 13.557491289198607,
+ "grad_norm": 0.04337441921234131,
+ "learning_rate": 0.0005130107140124046,
+ "loss": 2.2634308338165283,
+ "step": 976
+ },
+ {
+ "epoch": 13.571428571428571,
+ "grad_norm": 0.047244030982255936,
+ "learning_rate": 0.0005128221242607072,
+ "loss": 2.2571523189544678,
+ "step": 977
+ },
+ {
+ "epoch": 13.585365853658537,
+ "grad_norm": 0.04867873340845108,
+ "learning_rate": 0.0005126333654591141,
+ "loss": 2.248501777648926,
+ "step": 978
+ },
+ {
+ "epoch": 13.599303135888501,
+ "grad_norm": 0.048512108623981476,
+ "learning_rate": 0.0005124444377597049,
+ "loss": 2.2579822540283203,
+ "step": 979
+ },
+ {
+ "epoch": 13.613240418118467,
+ "grad_norm": 0.04615626111626625,
+ "learning_rate": 0.0005122553413146951,
+ "loss": 2.2446889877319336,
+ "step": 980
+ },
+ {
+ "epoch": 13.627177700348431,
+ "grad_norm": 0.044876713305711746,
+ "learning_rate": 0.0005120660762764366,
+ "loss": 2.2439627647399902,
+ "step": 981
+ },
+ {
+ "epoch": 13.641114982578397,
+ "grad_norm": 0.046021413058042526,
+ "learning_rate": 0.0005118766427974166,
+ "loss": 2.262195587158203,
+ "step": 982
+ },
+ {
+ "epoch": 13.655052264808361,
+ "grad_norm": 0.04974699020385742,
+ "learning_rate": 0.0005116870410302582,
+ "loss": 2.2783303260803223,
+ "step": 983
+ },
+ {
+ "epoch": 13.668989547038327,
+ "grad_norm": 0.044128481298685074,
+ "learning_rate": 0.0005114972711277202,
+ "loss": 2.2566471099853516,
+ "step": 984
+ },
+ {
+ "epoch": 13.682926829268293,
+ "grad_norm": 0.042579326778650284,
+ "learning_rate": 0.0005113073332426968,
+ "loss": 2.2596194744110107,
+ "step": 985
+ },
+ {
+ "epoch": 13.696864111498257,
+ "grad_norm": 0.044022977352142334,
+ "learning_rate": 0.0005111172275282174,
+ "loss": 2.270303726196289,
+ "step": 986
+ },
+ {
+ "epoch": 13.710801393728223,
+ "grad_norm": 0.04324937239289284,
+ "learning_rate": 0.0005109269541374469,
+ "loss": 2.2393593788146973,
+ "step": 987
+ },
+ {
+ "epoch": 13.724738675958188,
+ "grad_norm": 0.04146691411733627,
+ "learning_rate": 0.000510736513223685,
+ "loss": 2.2541770935058594,
+ "step": 988
+ },
+ {
+ "epoch": 13.738675958188153,
+ "grad_norm": 0.04146251827478409,
+ "learning_rate": 0.0005105459049403665,
+ "loss": 2.260561943054199,
+ "step": 989
+ },
+ {
+ "epoch": 13.752613240418118,
+ "grad_norm": 0.042454298585653305,
+ "learning_rate": 0.0005103551294410614,
+ "loss": 2.2623369693756104,
+ "step": 990
+ },
+ {
+ "epoch": 13.766550522648084,
+ "grad_norm": 0.04376888647675514,
+ "learning_rate": 0.0005101641868794736,
+ "loss": 2.2560131549835205,
+ "step": 991
+ },
+ {
+ "epoch": 13.78048780487805,
+ "grad_norm": 0.04379274323582649,
+ "learning_rate": 0.0005099730774094423,
+ "loss": 2.2503037452697754,
+ "step": 992
+ },
+ {
+ "epoch": 13.794425087108014,
+ "grad_norm": 0.04411308094859123,
+ "learning_rate": 0.0005097818011849408,
+ "loss": 2.244288921356201,
+ "step": 993
+ },
+ {
+ "epoch": 13.80836236933798,
+ "grad_norm": 0.04043621942400932,
+ "learning_rate": 0.0005095903583600772,
+ "loss": 2.244035243988037,
+ "step": 994
+ },
+ {
+ "epoch": 13.822299651567944,
+ "grad_norm": 0.04722495377063751,
+ "learning_rate": 0.0005093987490890933,
+ "loss": 2.269280433654785,
+ "step": 995
+ },
+ {
+ "epoch": 13.83623693379791,
+ "grad_norm": 0.049322471022605896,
+ "learning_rate": 0.0005092069735263651,
+ "loss": 2.249361515045166,
+ "step": 996
+ },
+ {
+ "epoch": 13.850174216027874,
+ "grad_norm": 0.04808150604367256,
+ "learning_rate": 0.000509015031826403,
+ "loss": 2.255721092224121,
+ "step": 997
+ },
+ {
+ "epoch": 13.86411149825784,
+ "grad_norm": 0.044958360493183136,
+ "learning_rate": 0.0005088229241438509,
+ "loss": 2.2578060626983643,
+ "step": 998
+ },
+ {
+ "epoch": 13.878048780487806,
+ "grad_norm": 0.04442335292696953,
+ "learning_rate": 0.0005086306506334864,
+ "loss": 2.2553436756134033,
+ "step": 999
+ },
+ {
+ "epoch": 13.89198606271777,
+ "grad_norm": 0.0487419068813324,
+ "learning_rate": 0.0005084382114502208,
+ "loss": 2.2526695728302,
+ "step": 1000
+ },
+ {
+ "epoch": 13.905923344947736,
+ "grad_norm": 0.047398749738931656,
+ "learning_rate": 0.0005082456067490988,
+ "loss": 2.259551763534546,
+ "step": 1001
+ },
+ {
+ "epoch": 13.9198606271777,
+ "grad_norm": 0.04429299384355545,
+ "learning_rate": 0.0005080528366852987,
+ "loss": 2.270155906677246,
+ "step": 1002
+ },
+ {
+ "epoch": 13.933797909407666,
+ "grad_norm": 0.045255087316036224,
+ "learning_rate": 0.0005078599014141318,
+ "loss": 2.2554101943969727,
+ "step": 1003
+ },
+ {
+ "epoch": 13.94773519163763,
+ "grad_norm": 0.04559073969721794,
+ "learning_rate": 0.0005076668010910425,
+ "loss": 2.2913122177124023,
+ "step": 1004
+ },
+ {
+ "epoch": 13.961672473867596,
+ "grad_norm": 0.04300642013549805,
+ "learning_rate": 0.0005074735358716083,
+ "loss": 2.241891860961914,
+ "step": 1005
+ },
+ {
+ "epoch": 13.975609756097562,
+ "grad_norm": 0.04328060522675514,
+ "learning_rate": 0.0005072801059115394,
+ "loss": 2.2659969329833984,
+ "step": 1006
+ },
+ {
+ "epoch": 13.989547038327526,
+ "grad_norm": 0.0425153523683548,
+ "learning_rate": 0.000507086511366679,
+ "loss": 2.266413450241089,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.03479035571217537,
+ "learning_rate": 0.0005068927523930027,
+ "loss": 1.6806477308273315,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 0.6199555993080139,
+ "eval_runtime": 42.3013,
+ "eval_samples_per_second": 57.729,
+ "eval_steps_per_second": 0.473,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013937282229966,
+ "grad_norm": 0.04759897664189339,
+ "learning_rate": 0.0005066988291466184,
+ "loss": 2.1937670707702637,
+ "step": 1009
+ },
+ {
+ "epoch": 14.02787456445993,
+ "grad_norm": 0.06862346827983856,
+ "learning_rate": 0.0005065047417837669,
+ "loss": 2.2141411304473877,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041811846689896,
+ "grad_norm": 0.07168037444353104,
+ "learning_rate": 0.0005063104904608206,
+ "loss": 2.198908805847168,
+ "step": 1011
+ },
+ {
+ "epoch": 14.05574912891986,
+ "grad_norm": 0.06659573316574097,
+ "learning_rate": 0.0005061160753342843,
+ "loss": 2.218000888824463,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069686411149826,
+ "grad_norm": 0.06285326927900314,
+ "learning_rate": 0.0005059214965607948,
+ "loss": 2.1995139122009277,
+ "step": 1013
+ },
+ {
+ "epoch": 14.08362369337979,
+ "grad_norm": 0.061170000582933426,
+ "learning_rate": 0.0005057267542971207,
+ "loss": 2.2026236057281494,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097560975609756,
+ "grad_norm": 0.06091141700744629,
+ "learning_rate": 0.0005055318487001624,
+ "loss": 2.2087340354919434,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111498257839722,
+ "grad_norm": 0.05953513830900192,
+ "learning_rate": 0.0005053367799269518,
+ "loss": 2.1985390186309814,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125435540069686,
+ "grad_norm": 0.06126454845070839,
+ "learning_rate": 0.0005051415481346522,
+ "loss": 2.176772117614746,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139372822299652,
+ "grad_norm": 0.0675380751490593,
+ "learning_rate": 0.0005049461534805585,
+ "loss": 2.2045438289642334,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153310104529616,
+ "grad_norm": 0.07128442823886871,
+ "learning_rate": 0.0005047505961220964,
+ "loss": 2.197822332382202,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167247386759582,
+ "grad_norm": 0.06793799996376038,
+ "learning_rate": 0.0005045548762168231,
+ "loss": 2.1957449913024902,
+ "step": 1020
+ },
+ {
+ "epoch": 14.181184668989546,
+ "grad_norm": 0.05969219282269478,
+ "learning_rate": 0.0005043589939224266,
+ "loss": 2.206712245941162,
+ "step": 1021
+ },
+ {
+ "epoch": 14.195121951219512,
+ "grad_norm": 0.061422668397426605,
+ "learning_rate": 0.0005041629493967257,
+ "loss": 2.199829578399658,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209059233449477,
+ "grad_norm": 0.06352506577968597,
+ "learning_rate": 0.0005039667427976697,
+ "loss": 2.208404064178467,
+ "step": 1023
+ },
+ {
+ "epoch": 14.222996515679442,
+ "grad_norm": 0.06349361687898636,
+ "learning_rate": 0.0005037703742833391,
+ "loss": 2.2045750617980957,
+ "step": 1024
+ },
+ {
+ "epoch": 14.236933797909408,
+ "grad_norm": 0.05827466771006584,
+ "learning_rate": 0.0005035738440119442,
+ "loss": 2.204209566116333,
+ "step": 1025
+ },
+ {
+ "epoch": 14.250871080139373,
+ "grad_norm": 0.055201269686222076,
+ "learning_rate": 0.0005033771521418261,
+ "loss": 2.210240364074707,
+ "step": 1026
+ },
+ {
+ "epoch": 14.264808362369338,
+ "grad_norm": 0.05749988183379173,
+ "learning_rate": 0.0005031802988314557,
+ "loss": 2.2068967819213867,
+ "step": 1027
+ },
+ {
+ "epoch": 14.278745644599303,
+ "grad_norm": 0.061330124735832214,
+ "learning_rate": 0.0005029832842394342,
+ "loss": 2.194495439529419,
+ "step": 1028
+ },
+ {
+ "epoch": 14.292682926829269,
+ "grad_norm": 0.05682205408811569,
+ "learning_rate": 0.0005027861085244927,
+ "loss": 2.1934378147125244,
+ "step": 1029
+ },
+ {
+ "epoch": 14.306620209059233,
+ "grad_norm": 0.054082732647657394,
+ "learning_rate": 0.0005025887718454922,
+ "loss": 2.1993770599365234,
+ "step": 1030
+ },
+ {
+ "epoch": 14.320557491289199,
+ "grad_norm": 0.05460484325885773,
+ "learning_rate": 0.0005023912743614232,
+ "loss": 2.2270498275756836,
+ "step": 1031
+ },
+ {
+ "epoch": 14.334494773519165,
+ "grad_norm": 0.05222999304533005,
+ "learning_rate": 0.0005021936162314058,
+ "loss": 2.1926186084747314,
+ "step": 1032
+ },
+ {
+ "epoch": 14.348432055749129,
+ "grad_norm": 0.04854818806052208,
+ "learning_rate": 0.0005019957976146898,
+ "loss": 2.209700584411621,
+ "step": 1033
+ },
+ {
+ "epoch": 14.362369337979095,
+ "grad_norm": 0.051000695675611496,
+ "learning_rate": 0.0005017978186706538,
+ "loss": 2.207035541534424,
+ "step": 1034
+ },
+ {
+ "epoch": 14.376306620209059,
+ "grad_norm": 0.05035366490483284,
+ "learning_rate": 0.0005015996795588062,
+ "loss": 2.227447032928467,
+ "step": 1035
+ },
+ {
+ "epoch": 14.390243902439025,
+ "grad_norm": 0.048412274569272995,
+ "learning_rate": 0.0005014013804387838,
+ "loss": 2.229435443878174,
+ "step": 1036
+ },
+ {
+ "epoch": 14.404181184668989,
+ "grad_norm": 0.04643386974930763,
+ "learning_rate": 0.0005012029214703529,
+ "loss": 2.212726593017578,
+ "step": 1037
+ },
+ {
+ "epoch": 14.418118466898955,
+ "grad_norm": 0.05282546207308769,
+ "learning_rate": 0.000501004302813408,
+ "loss": 2.2133121490478516,
+ "step": 1038
+ },
+ {
+ "epoch": 14.43205574912892,
+ "grad_norm": 0.04976656660437584,
+ "learning_rate": 0.0005008055246279727,
+ "loss": 2.222738265991211,
+ "step": 1039
+ },
+ {
+ "epoch": 14.445993031358885,
+ "grad_norm": 0.04937833175063133,
+ "learning_rate": 0.000500606587074199,
+ "loss": 2.2278215885162354,
+ "step": 1040
+ },
+ {
+ "epoch": 14.45993031358885,
+ "grad_norm": 0.05218666046857834,
+ "learning_rate": 0.0005004074903123674,
+ "loss": 2.2277817726135254,
+ "step": 1041
+ },
+ {
+ "epoch": 14.473867595818815,
+ "grad_norm": 0.05176419019699097,
+ "learning_rate": 0.0005002082345028864,
+ "loss": 2.231154203414917,
+ "step": 1042
+ },
+ {
+ "epoch": 14.487804878048781,
+ "grad_norm": 0.049131155014038086,
+ "learning_rate": 0.0005000088198062929,
+ "loss": 2.2321465015411377,
+ "step": 1043
+ },
+ {
+ "epoch": 14.501742160278745,
+ "grad_norm": 0.04980473965406418,
+ "learning_rate": 0.0004998092463832516,
+ "loss": 2.191263198852539,
+ "step": 1044
+ },
+ {
+ "epoch": 14.515679442508711,
+ "grad_norm": 0.048349328339099884,
+ "learning_rate": 0.0004996095143945554,
+ "loss": 2.2167882919311523,
+ "step": 1045
+ },
+ {
+ "epoch": 14.529616724738675,
+ "grad_norm": 0.04662036523222923,
+ "learning_rate": 0.0004994096240011246,
+ "loss": 2.213564395904541,
+ "step": 1046
+ },
+ {
+ "epoch": 14.543554006968641,
+ "grad_norm": 0.04783051833510399,
+ "learning_rate": 0.0004992095753640072,
+ "loss": 2.225752592086792,
+ "step": 1047
+ },
+ {
+ "epoch": 14.557491289198607,
+ "grad_norm": 0.05093488097190857,
+ "learning_rate": 0.0004990093686443791,
+ "loss": 2.2382640838623047,
+ "step": 1048
+ },
+ {
+ "epoch": 14.571428571428571,
+ "grad_norm": 0.05354484170675278,
+ "learning_rate": 0.000498809004003543,
+ "loss": 2.226134777069092,
+ "step": 1049
+ },
+ {
+ "epoch": 14.585365853658537,
+ "grad_norm": 0.04998788982629776,
+ "learning_rate": 0.0004986084816029291,
+ "loss": 2.2372093200683594,
+ "step": 1050
+ },
+ {
+ "epoch": 14.599303135888501,
+ "grad_norm": 0.04952755197882652,
+ "learning_rate": 0.0004984078016040946,
+ "loss": 2.232860565185547,
+ "step": 1051
+ },
+ {
+ "epoch": 14.613240418118467,
+ "grad_norm": 0.04750008508563042,
+ "learning_rate": 0.000498206964168724,
+ "loss": 2.223733901977539,
+ "step": 1052
+ },
+ {
+ "epoch": 14.627177700348431,
+ "grad_norm": 0.04636282101273537,
+ "learning_rate": 0.000498005969458628,
+ "loss": 2.227602958679199,
+ "step": 1053
+ },
+ {
+ "epoch": 14.641114982578397,
+ "grad_norm": 0.0465775765478611,
+ "learning_rate": 0.0004978048176357447,
+ "loss": 2.228397846221924,
+ "step": 1054
+ },
+ {
+ "epoch": 14.655052264808361,
+ "grad_norm": 0.04467611759901047,
+ "learning_rate": 0.0004976035088621385,
+ "loss": 2.2124547958374023,
+ "step": 1055
+ },
+ {
+ "epoch": 14.668989547038327,
+ "grad_norm": 0.04734990745782852,
+ "learning_rate": 0.0004974020433000003,
+ "loss": 2.2278337478637695,
+ "step": 1056
+ },
+ {
+ "epoch": 14.682926829268293,
+ "grad_norm": 0.048105571419000626,
+ "learning_rate": 0.000497200421111647,
+ "loss": 2.2506489753723145,
+ "step": 1057
+ },
+ {
+ "epoch": 14.696864111498257,
+ "grad_norm": 0.04658956825733185,
+ "learning_rate": 0.0004969986424595221,
+ "loss": 2.2176156044006348,
+ "step": 1058
+ },
+ {
+ "epoch": 14.710801393728223,
+ "grad_norm": 0.04707225784659386,
+ "learning_rate": 0.0004967967075061949,
+ "loss": 2.235560894012451,
+ "step": 1059
+ },
+ {
+ "epoch": 14.724738675958188,
+ "grad_norm": 0.04652702435851097,
+ "learning_rate": 0.0004965946164143609,
+ "loss": 2.2421717643737793,
+ "step": 1060
+ },
+ {
+ "epoch": 14.738675958188153,
+ "grad_norm": 0.045091014355421066,
+ "learning_rate": 0.0004963923693468413,
+ "loss": 2.233527183532715,
+ "step": 1061
+ },
+ {
+ "epoch": 14.752613240418118,
+ "grad_norm": 0.0467996746301651,
+ "learning_rate": 0.0004961899664665827,
+ "loss": 2.208993673324585,
+ "step": 1062
+ },
+ {
+ "epoch": 14.766550522648084,
+ "grad_norm": 0.04628554731607437,
+ "learning_rate": 0.0004959874079366576,
+ "loss": 2.230579376220703,
+ "step": 1063
+ },
+ {
+ "epoch": 14.78048780487805,
+ "grad_norm": 0.04599257931113243,
+ "learning_rate": 0.0004957846939202637,
+ "loss": 2.2343482971191406,
+ "step": 1064
+ },
+ {
+ "epoch": 14.794425087108014,
+ "grad_norm": 0.045816246420145035,
+ "learning_rate": 0.000495581824580724,
+ "loss": 2.242190361022949,
+ "step": 1065
+ },
+ {
+ "epoch": 14.80836236933798,
+ "grad_norm": 0.04708870127797127,
+ "learning_rate": 0.0004953788000814866,
+ "loss": 2.2468795776367188,
+ "step": 1066
+ },
+ {
+ "epoch": 14.822299651567944,
+ "grad_norm": 0.049605369567871094,
+ "learning_rate": 0.000495175620586125,
+ "loss": 2.21968412399292,
+ "step": 1067
+ },
+ {
+ "epoch": 14.83623693379791,
+ "grad_norm": 0.044056523591279984,
+ "learning_rate": 0.0004949722862583368,
+ "loss": 2.2316298484802246,
+ "step": 1068
+ },
+ {
+ "epoch": 14.850174216027874,
+ "grad_norm": 0.042938072234392166,
+ "learning_rate": 0.000494768797261945,
+ "loss": 2.252958059310913,
+ "step": 1069
+ },
+ {
+ "epoch": 14.86411149825784,
+ "grad_norm": 0.04511357098817825,
+ "learning_rate": 0.000494565153760897,
+ "loss": 2.2274842262268066,
+ "step": 1070
+ },
+ {
+ "epoch": 14.878048780487806,
+ "grad_norm": 0.04632679745554924,
+ "learning_rate": 0.0004943613559192648,
+ "loss": 2.2324767112731934,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89198606271777,
+ "grad_norm": 0.045614346861839294,
+ "learning_rate": 0.0004941574039012444,
+ "loss": 2.2428746223449707,
+ "step": 1072
+ },
+ {
+ "epoch": 14.905923344947736,
+ "grad_norm": 0.04592366889119148,
+ "learning_rate": 0.0004939532978711566,
+ "loss": 2.2330827713012695,
+ "step": 1073
+ },
+ {
+ "epoch": 14.9198606271777,
+ "grad_norm": 0.04424305632710457,
+ "learning_rate": 0.0004937490379934456,
+ "loss": 2.2334916591644287,
+ "step": 1074
+ },
+ {
+ "epoch": 14.933797909407666,
+ "grad_norm": 0.0463118739426136,
+ "learning_rate": 0.00049354462443268,
+ "loss": 2.2362606525421143,
+ "step": 1075
+ },
+ {
+ "epoch": 14.94773519163763,
+ "grad_norm": 0.04408831149339676,
+ "learning_rate": 0.0004933400573535521,
+ "loss": 2.2407727241516113,
+ "step": 1076
+ },
+ {
+ "epoch": 14.961672473867596,
+ "grad_norm": 0.04300303012132645,
+ "learning_rate": 0.000493135336920878,
+ "loss": 2.222532272338867,
+ "step": 1077
+ },
+ {
+ "epoch": 14.975609756097562,
+ "grad_norm": 0.04180522635579109,
+ "learning_rate": 0.0004929304632995973,
+ "loss": 2.242893695831299,
+ "step": 1078
+ },
+ {
+ "epoch": 14.989547038327526,
+ "grad_norm": 0.043276574462652206,
+ "learning_rate": 0.0004927254366547727,
+ "loss": 2.2241783142089844,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.036254994571208954,
+ "learning_rate": 0.0004925202571515908,
+ "loss": 1.6649963855743408,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 0.6207222938537598,
+ "eval_runtime": 37.3466,
+ "eval_samples_per_second": 65.388,
+ "eval_steps_per_second": 0.536,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013937282229966,
+ "grad_norm": 0.045301277190446854,
+ "learning_rate": 0.0004923149249553608,
+ "loss": 2.184032917022705,
+ "step": 1081
+ },
+ {
+ "epoch": 15.02787456445993,
+ "grad_norm": 0.05988018214702606,
+ "learning_rate": 0.0004921094402315152,
+ "loss": 2.1630473136901855,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041811846689896,
+ "grad_norm": 0.06664786487817764,
+ "learning_rate": 0.0004919038031456093,
+ "loss": 2.172067642211914,
+ "step": 1083
+ },
+ {
+ "epoch": 15.05574912891986,
+ "grad_norm": 0.06994126737117767,
+ "learning_rate": 0.0004916980138633213,
+ "loss": 2.185060501098633,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069686411149826,
+ "grad_norm": 0.07145395129919052,
+ "learning_rate": 0.0004914920725504518,
+ "loss": 2.173717498779297,
+ "step": 1085
+ },
+ {
+ "epoch": 15.08362369337979,
+ "grad_norm": 0.07037318497896194,
+ "learning_rate": 0.000491285979372924,
+ "loss": 2.1818294525146484,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097560975609756,
+ "grad_norm": 0.07752140611410141,
+ "learning_rate": 0.0004910797344967834,
+ "loss": 2.179530620574951,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111498257839722,
+ "grad_norm": 0.07689100503921509,
+ "learning_rate": 0.000490873338088198,
+ "loss": 2.167066812515259,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125435540069686,
+ "grad_norm": 0.07060840725898743,
+ "learning_rate": 0.0004906667903134573,
+ "loss": 2.166823387145996,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139372822299652,
+ "grad_norm": 0.07528708130121231,
+ "learning_rate": 0.0004904600913389735,
+ "loss": 2.1838769912719727,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153310104529616,
+ "grad_norm": 0.07452721893787384,
+ "learning_rate": 0.0004902532413312799,
+ "loss": 2.1846580505371094,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167247386759582,
+ "grad_norm": 0.08076248317956924,
+ "learning_rate": 0.0004900462404570321,
+ "loss": 2.1811747550964355,
+ "step": 1092
+ },
+ {
+ "epoch": 15.181184668989546,
+ "grad_norm": 0.07249059528112411,
+ "learning_rate": 0.0004898390888830067,
+ "loss": 2.187530279159546,
+ "step": 1093
+ },
+ {
+ "epoch": 15.195121951219512,
+ "grad_norm": 0.06610925495624542,
+ "learning_rate": 0.0004896317867761022,
+ "loss": 2.1889264583587646,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209059233449477,
+ "grad_norm": 0.07099732756614685,
+ "learning_rate": 0.000489424334303338,
+ "loss": 2.188560962677002,
+ "step": 1095
+ },
+ {
+ "epoch": 15.222996515679442,
+ "grad_norm": 0.0737202987074852,
+ "learning_rate": 0.0004892167316318548,
+ "loss": 2.186715841293335,
+ "step": 1096
+ },
+ {
+ "epoch": 15.236933797909408,
+ "grad_norm": 0.06986237317323685,
+ "learning_rate": 0.0004890089789289147,
+ "loss": 2.1962318420410156,
+ "step": 1097
+ },
+ {
+ "epoch": 15.250871080139373,
+ "grad_norm": 0.07112278789281845,
+ "learning_rate": 0.0004888010763618997,
+ "loss": 2.194401502609253,
+ "step": 1098
+ },
+ {
+ "epoch": 15.264808362369338,
+ "grad_norm": 0.06746342778205872,
+ "learning_rate": 0.0004885930240983136,
+ "loss": 2.188718795776367,
+ "step": 1099
+ },
+ {
+ "epoch": 15.278745644599303,
+ "grad_norm": 0.06471215933561325,
+ "learning_rate": 0.0004883848223057801,
+ "loss": 2.198849678039551,
+ "step": 1100
+ },
+ {
+ "epoch": 15.292682926829269,
+ "grad_norm": 0.05913659557700157,
+ "learning_rate": 0.00048817647115204386,
+ "loss": 2.183661937713623,
+ "step": 1101
+ },
+ {
+ "epoch": 15.306620209059233,
+ "grad_norm": 0.060666151344776154,
+ "learning_rate": 0.00048796797080496936,
+ "loss": 2.1805803775787354,
+ "step": 1102
+ },
+ {
+ "epoch": 15.320557491289199,
+ "grad_norm": 0.06026238948106766,
+ "learning_rate": 0.00048775932143254176,
+ "loss": 2.1778993606567383,
+ "step": 1103
+ },
+ {
+ "epoch": 15.334494773519165,
+ "grad_norm": 0.054371971637010574,
+ "learning_rate": 0.0004875505232028661,
+ "loss": 2.193100690841675,
+ "step": 1104
+ },
+ {
+ "epoch": 15.348432055749129,
+ "grad_norm": 0.051084667444229126,
+ "learning_rate": 0.0004873415762841672,
+ "loss": 2.1867239475250244,
+ "step": 1105
+ },
+ {
+ "epoch": 15.362369337979095,
+ "grad_norm": 0.05281403660774231,
+ "learning_rate": 0.00048713248084478986,
+ "loss": 2.1998157501220703,
+ "step": 1106
+ },
+ {
+ "epoch": 15.376306620209059,
+ "grad_norm": 0.04957163333892822,
+ "learning_rate": 0.0004869232370531986,
+ "loss": 2.1781673431396484,
+ "step": 1107
+ },
+ {
+ "epoch": 15.390243902439025,
+ "grad_norm": 0.04794200882315636,
+ "learning_rate": 0.0004867138450779773,
+ "loss": 2.1990952491760254,
+ "step": 1108
+ },
+ {
+ "epoch": 15.404181184668989,
+ "grad_norm": 0.05102508142590523,
+ "learning_rate": 0.0004865043050878293,
+ "loss": 2.199371814727783,
+ "step": 1109
+ },
+ {
+ "epoch": 15.418118466898955,
+ "grad_norm": 0.049935199320316315,
+ "learning_rate": 0.0004862946172515771,
+ "loss": 2.191676616668701,
+ "step": 1110
+ },
+ {
+ "epoch": 15.43205574912892,
+ "grad_norm": 0.05205542966723442,
+ "learning_rate": 0.0004860847817381625,
+ "loss": 2.2015931606292725,
+ "step": 1111
+ },
+ {
+ "epoch": 15.445993031358885,
+ "grad_norm": 0.051782310009002686,
+ "learning_rate": 0.0004858747987166463,
+ "loss": 2.200479030609131,
+ "step": 1112
+ },
+ {
+ "epoch": 15.45993031358885,
+ "grad_norm": 0.04914203658699989,
+ "learning_rate": 0.00048566466835620774,
+ "loss": 2.19816517829895,
+ "step": 1113
+ },
+ {
+ "epoch": 15.473867595818815,
+ "grad_norm": 0.04609949141740799,
+ "learning_rate": 0.0004854543908261453,
+ "loss": 2.1905436515808105,
+ "step": 1114
+ },
+ {
+ "epoch": 15.487804878048781,
+ "grad_norm": 0.04916610196232796,
+ "learning_rate": 0.0004852439662958756,
+ "loss": 2.203505516052246,
+ "step": 1115
+ },
+ {
+ "epoch": 15.501742160278745,
+ "grad_norm": 0.04806613177061081,
+ "learning_rate": 0.000485033394934934,
+ "loss": 2.2004809379577637,
+ "step": 1116
+ },
+ {
+ "epoch": 15.515679442508711,
+ "grad_norm": 0.04937082529067993,
+ "learning_rate": 0.000484822676912974,
+ "loss": 2.1941723823547363,
+ "step": 1117
+ },
+ {
+ "epoch": 15.529616724738675,
+ "grad_norm": 0.049360860139131546,
+ "learning_rate": 0.0004846118123997674,
+ "loss": 2.1975173950195312,
+ "step": 1118
+ },
+ {
+ "epoch": 15.543554006968641,
+ "grad_norm": 0.04772219434380531,
+ "learning_rate": 0.00048440080156520387,
+ "loss": 2.211244583129883,
+ "step": 1119
+ },
+ {
+ "epoch": 15.557491289198607,
+ "grad_norm": 0.04961530491709709,
+ "learning_rate": 0.0004841896445792909,
+ "loss": 2.191709041595459,
+ "step": 1120
+ },
+ {
+ "epoch": 15.571428571428571,
+ "grad_norm": 0.049396563321352005,
+ "learning_rate": 0.000483978341612154,
+ "loss": 2.2178797721862793,
+ "step": 1121
+ },
+ {
+ "epoch": 15.585365853658537,
+ "grad_norm": 0.0474911704659462,
+ "learning_rate": 0.0004837668928340362,
+ "loss": 2.1883950233459473,
+ "step": 1122
+ },
+ {
+ "epoch": 15.599303135888501,
+ "grad_norm": 0.0497126504778862,
+ "learning_rate": 0.0004835552984152978,
+ "loss": 2.194390296936035,
+ "step": 1123
+ },
+ {
+ "epoch": 15.613240418118467,
+ "grad_norm": 0.04819052666425705,
+ "learning_rate": 0.00048334355852641664,
+ "loss": 2.2060859203338623,
+ "step": 1124
+ },
+ {
+ "epoch": 15.627177700348431,
+ "grad_norm": 0.048422664403915405,
+ "learning_rate": 0.0004831316733379879,
+ "loss": 2.203671932220459,
+ "step": 1125
+ },
+ {
+ "epoch": 15.641114982578397,
+ "grad_norm": 0.0464651882648468,
+ "learning_rate": 0.0004829196430207235,
+ "loss": 2.193103313446045,
+ "step": 1126
+ },
+ {
+ "epoch": 15.655052264808361,
+ "grad_norm": 0.04777771607041359,
+ "learning_rate": 0.00048270746774545237,
+ "loss": 2.190608501434326,
+ "step": 1127
+ },
+ {
+ "epoch": 15.668989547038327,
+ "grad_norm": 0.048422545194625854,
+ "learning_rate": 0.0004824951476831204,
+ "loss": 2.191826105117798,
+ "step": 1128
+ },
+ {
+ "epoch": 15.682926829268293,
+ "grad_norm": 0.04907011240720749,
+ "learning_rate": 0.00048228268300479015,
+ "loss": 2.2020134925842285,
+ "step": 1129
+ },
+ {
+ "epoch": 15.696864111498257,
+ "grad_norm": 0.04749045521020889,
+ "learning_rate": 0.0004820700738816403,
+ "loss": 2.1956100463867188,
+ "step": 1130
+ },
+ {
+ "epoch": 15.710801393728223,
+ "grad_norm": 0.04741237685084343,
+ "learning_rate": 0.0004818573204849664,
+ "loss": 2.1953983306884766,
+ "step": 1131
+ },
+ {
+ "epoch": 15.724738675958188,
+ "grad_norm": 0.048426248133182526,
+ "learning_rate": 0.00048164442298617987,
+ "loss": 2.1906962394714355,
+ "step": 1132
+ },
+ {
+ "epoch": 15.738675958188153,
+ "grad_norm": 0.04688018932938576,
+ "learning_rate": 0.00048143138155680844,
+ "loss": 2.2023704051971436,
+ "step": 1133
+ },
+ {
+ "epoch": 15.752613240418118,
+ "grad_norm": 0.04573274403810501,
+ "learning_rate": 0.0004812181963684958,
+ "loss": 2.1997122764587402,
+ "step": 1134
+ },
+ {
+ "epoch": 15.766550522648084,
+ "grad_norm": 0.04500049352645874,
+ "learning_rate": 0.00048100486759300134,
+ "loss": 2.203868865966797,
+ "step": 1135
+ },
+ {
+ "epoch": 15.78048780487805,
+ "grad_norm": 0.046841904520988464,
+ "learning_rate": 0.00048079139540220024,
+ "loss": 2.2186760902404785,
+ "step": 1136
+ },
+ {
+ "epoch": 15.794425087108014,
+ "grad_norm": 0.04670709744095802,
+ "learning_rate": 0.0004805777799680831,
+ "loss": 2.2019705772399902,
+ "step": 1137
+ },
+ {
+ "epoch": 15.80836236933798,
+ "grad_norm": 0.04602878540754318,
+ "learning_rate": 0.0004803640214627561,
+ "loss": 2.21022891998291,
+ "step": 1138
+ },
+ {
+ "epoch": 15.822299651567944,
+ "grad_norm": 0.045200031250715256,
+ "learning_rate": 0.0004801501200584406,
+ "loss": 2.2007641792297363,
+ "step": 1139
+ },
+ {
+ "epoch": 15.83623693379791,
+ "grad_norm": 0.04749643802642822,
+ "learning_rate": 0.000479936075927473,
+ "loss": 2.2098441123962402,
+ "step": 1140
+ },
+ {
+ "epoch": 15.850174216027874,
+ "grad_norm": 0.04594074562191963,
+ "learning_rate": 0.000479721889242305,
+ "loss": 2.204615354537964,
+ "step": 1141
+ },
+ {
+ "epoch": 15.86411149825784,
+ "grad_norm": 0.04540146514773369,
+ "learning_rate": 0.0004795075601755027,
+ "loss": 2.2012791633605957,
+ "step": 1142
+ },
+ {
+ "epoch": 15.878048780487806,
+ "grad_norm": 0.04618830978870392,
+ "learning_rate": 0.00047929308889974737,
+ "loss": 2.1914544105529785,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89198606271777,
+ "grad_norm": 0.0450817234814167,
+ "learning_rate": 0.0004790784755878346,
+ "loss": 2.200557231903076,
+ "step": 1144
+ },
+ {
+ "epoch": 15.905923344947736,
+ "grad_norm": 0.04639074578881264,
+ "learning_rate": 0.00047886372041267434,
+ "loss": 2.204821825027466,
+ "step": 1145
+ },
+ {
+ "epoch": 15.9198606271777,
+ "grad_norm": 0.04546049237251282,
+ "learning_rate": 0.0004786488235472909,
+ "loss": 2.213542938232422,
+ "step": 1146
+ },
+ {
+ "epoch": 15.933797909407666,
+ "grad_norm": 0.04436152055859566,
+ "learning_rate": 0.0004784337851648231,
+ "loss": 2.1992855072021484,
+ "step": 1147
+ },
+ {
+ "epoch": 15.94773519163763,
+ "grad_norm": 0.04665682092308998,
+ "learning_rate": 0.0004782186054385233,
+ "loss": 2.211052417755127,
+ "step": 1148
+ },
+ {
+ "epoch": 15.961672473867596,
+ "grad_norm": 0.04532767832279205,
+ "learning_rate": 0.0004780032845417579,
+ "loss": 2.2086901664733887,
+ "step": 1149
+ },
+ {
+ "epoch": 15.975609756097562,
+ "grad_norm": 0.04679917171597481,
+ "learning_rate": 0.000477787822648007,
+ "loss": 2.1904289722442627,
+ "step": 1150
+ },
+ {
+ "epoch": 15.989547038327526,
+ "grad_norm": 0.04696613550186157,
+ "learning_rate": 0.00047757221993086443,
+ "loss": 2.17523193359375,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.03984897583723068,
+ "learning_rate": 0.00047735647656403754,
+ "loss": 1.6456931829452515,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 0.6217544674873352,
+ "eval_runtime": 36.2031,
+ "eval_samples_per_second": 67.453,
+ "eval_steps_per_second": 0.552,
+ "step": 1152
+ },
+ {
+ "epoch": 16.013937282229964,
+ "grad_norm": 0.048258837312459946,
+ "learning_rate": 0.0004771405927213467,
+ "loss": 2.149430751800537,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027874564459932,
+ "grad_norm": 0.059622205793857574,
+ "learning_rate": 0.0004769245685767255,
+ "loss": 2.146239757537842,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041811846689896,
+ "grad_norm": 0.06228978559374809,
+ "learning_rate": 0.00047670840430422113,
+ "loss": 2.1373820304870605,
+ "step": 1155
+ },
+ {
+ "epoch": 16.05574912891986,
+ "grad_norm": 0.058429088443517685,
+ "learning_rate": 0.0004764921000779928,
+ "loss": 2.153956413269043,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069686411149824,
+ "grad_norm": 0.0544302761554718,
+ "learning_rate": 0.0004762756560723131,
+ "loss": 2.1617636680603027,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083623693379792,
+ "grad_norm": 0.050771284848451614,
+ "learning_rate": 0.0004760590724615671,
+ "loss": 2.134815216064453,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097560975609756,
+ "grad_norm": 0.05482947453856468,
+ "learning_rate": 0.0004758423494202522,
+ "loss": 2.140288829803467,
+ "step": 1159
+ },
+ {
+ "epoch": 16.11149825783972,
+ "grad_norm": 0.06205987557768822,
+ "learning_rate": 0.0004756254871229782,
+ "loss": 2.1369926929473877,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125435540069688,
+ "grad_norm": 0.060936298221349716,
+ "learning_rate": 0.00047540848574446724,
+ "loss": 2.1448073387145996,
+ "step": 1161
+ },
+ {
+ "epoch": 16.139372822299652,
+ "grad_norm": 0.05571967735886574,
+ "learning_rate": 0.0004751913454595535,
+ "loss": 2.1435866355895996,
+ "step": 1162
+ },
+ {
+ "epoch": 16.153310104529616,
+ "grad_norm": 0.0552542470395565,
+ "learning_rate": 0.0004749740664431828,
+ "loss": 2.149778366088867,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16724738675958,
+ "grad_norm": 0.05414848402142525,
+ "learning_rate": 0.000474756648870413,
+ "loss": 2.149887800216675,
+ "step": 1164
+ },
+ {
+ "epoch": 16.181184668989548,
+ "grad_norm": 0.05441379174590111,
+ "learning_rate": 0.0004745390929164134,
+ "loss": 2.15389347076416,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195121951219512,
+ "grad_norm": 0.05403896048665047,
+ "learning_rate": 0.0004743213987564651,
+ "loss": 2.1331732273101807,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209059233449477,
+ "grad_norm": 0.054594095796346664,
+ "learning_rate": 0.0004741035665659603,
+ "loss": 2.158886671066284,
+ "step": 1167
+ },
+ {
+ "epoch": 16.222996515679444,
+ "grad_norm": 0.06188303232192993,
+ "learning_rate": 0.00047388559652040236,
+ "loss": 2.1471951007843018,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23693379790941,
+ "grad_norm": 0.062315408140420914,
+ "learning_rate": 0.0004736674887954059,
+ "loss": 2.147031307220459,
+ "step": 1169
+ },
+ {
+ "epoch": 16.250871080139373,
+ "grad_norm": 0.06116636097431183,
+ "learning_rate": 0.0004734492435666963,
+ "loss": 2.153916358947754,
+ "step": 1170
+ },
+ {
+ "epoch": 16.264808362369337,
+ "grad_norm": 0.05576318874955177,
+ "learning_rate": 0.0004732308610101099,
+ "loss": 2.1545660495758057,
+ "step": 1171
+ },
+ {
+ "epoch": 16.278745644599304,
+ "grad_norm": 0.05602003261446953,
+ "learning_rate": 0.00047301234130159346,
+ "loss": 2.1588096618652344,
+ "step": 1172
+ },
+ {
+ "epoch": 16.29268292682927,
+ "grad_norm": 0.05946209281682968,
+ "learning_rate": 0.00047279368461720445,
+ "loss": 2.1761999130249023,
+ "step": 1173
+ },
+ {
+ "epoch": 16.306620209059233,
+ "grad_norm": 0.062074463814496994,
+ "learning_rate": 0.0004725748911331106,
+ "loss": 2.168569326400757,
+ "step": 1174
+ },
+ {
+ "epoch": 16.320557491289197,
+ "grad_norm": 0.05756473168730736,
+ "learning_rate": 0.0004723559610255898,
+ "loss": 2.1530699729919434,
+ "step": 1175
+ },
+ {
+ "epoch": 16.334494773519165,
+ "grad_norm": 0.05881023779511452,
+ "learning_rate": 0.0004721368944710302,
+ "loss": 2.1721291542053223,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34843205574913,
+ "grad_norm": 0.06223367527127266,
+ "learning_rate": 0.00047191769164592974,
+ "loss": 2.168361186981201,
+ "step": 1177
+ },
+ {
+ "epoch": 16.362369337979093,
+ "grad_norm": 0.056093230843544006,
+ "learning_rate": 0.000471698352726896,
+ "loss": 2.164424419403076,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37630662020906,
+ "grad_norm": 0.06118649244308472,
+ "learning_rate": 0.0004714788778906467,
+ "loss": 2.158644199371338,
+ "step": 1179
+ },
+ {
+ "epoch": 16.390243902439025,
+ "grad_norm": 0.06548523902893066,
+ "learning_rate": 0.0004712592673140084,
+ "loss": 2.1728553771972656,
+ "step": 1180
+ },
+ {
+ "epoch": 16.40418118466899,
+ "grad_norm": 0.06719230860471725,
+ "learning_rate": 0.00047103952117391764,
+ "loss": 2.1555490493774414,
+ "step": 1181
+ },
+ {
+ "epoch": 16.418118466898953,
+ "grad_norm": 0.06181609630584717,
+ "learning_rate": 0.00047081963964741986,
+ "loss": 2.162527561187744,
+ "step": 1182
+ },
+ {
+ "epoch": 16.43205574912892,
+ "grad_norm": 0.05706655979156494,
+ "learning_rate": 0.0004705996229116696,
+ "loss": 2.1423912048339844,
+ "step": 1183
+ },
+ {
+ "epoch": 16.445993031358885,
+ "grad_norm": 0.05518640577793121,
+ "learning_rate": 0.0004703794711439304,
+ "loss": 2.1653032302856445,
+ "step": 1184
+ },
+ {
+ "epoch": 16.45993031358885,
+ "grad_norm": 0.05664249137043953,
+ "learning_rate": 0.0004701591845215744,
+ "loss": 2.166928291320801,
+ "step": 1185
+ },
+ {
+ "epoch": 16.473867595818817,
+ "grad_norm": 0.05873657390475273,
+ "learning_rate": 0.00046993876322208274,
+ "loss": 2.1778905391693115,
+ "step": 1186
+ },
+ {
+ "epoch": 16.48780487804878,
+ "grad_norm": 0.05944420397281647,
+ "learning_rate": 0.0004697182074230448,
+ "loss": 2.177402973175049,
+ "step": 1187
+ },
+ {
+ "epoch": 16.501742160278745,
+ "grad_norm": 0.059531547129154205,
+ "learning_rate": 0.0004694975173021586,
+ "loss": 2.1766552925109863,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51567944250871,
+ "grad_norm": 0.05503744259476662,
+ "learning_rate": 0.0004692766930372299,
+ "loss": 2.167525291442871,
+ "step": 1189
+ },
+ {
+ "epoch": 16.529616724738677,
+ "grad_norm": 0.05157329514622688,
+ "learning_rate": 0.00046905573480617285,
+ "loss": 2.1732568740844727,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54355400696864,
+ "grad_norm": 0.05355038493871689,
+ "learning_rate": 0.00046883464278700966,
+ "loss": 2.1730806827545166,
+ "step": 1191
+ },
+ {
+ "epoch": 16.557491289198605,
+ "grad_norm": 0.05118329077959061,
+ "learning_rate": 0.0004686134171578702,
+ "loss": 2.1696338653564453,
+ "step": 1192
+ },
+ {
+ "epoch": 16.571428571428573,
+ "grad_norm": 0.05029391869902611,
+ "learning_rate": 0.00046839205809699183,
+ "loss": 2.195044994354248,
+ "step": 1193
+ },
+ {
+ "epoch": 16.585365853658537,
+ "grad_norm": 0.050039373338222504,
+ "learning_rate": 0.0004681705657827195,
+ "loss": 2.1581506729125977,
+ "step": 1194
+ },
+ {
+ "epoch": 16.5993031358885,
+ "grad_norm": 0.0545598603785038,
+ "learning_rate": 0.0004679489403935058,
+ "loss": 2.1650285720825195,
+ "step": 1195
+ },
+ {
+ "epoch": 16.613240418118465,
+ "grad_norm": 0.05268346890807152,
+ "learning_rate": 0.00046772718210791005,
+ "loss": 2.184382438659668,
+ "step": 1196
+ },
+ {
+ "epoch": 16.627177700348433,
+ "grad_norm": 0.05236094444990158,
+ "learning_rate": 0.00046750529110459903,
+ "loss": 2.167102813720703,
+ "step": 1197
+ },
+ {
+ "epoch": 16.641114982578397,
+ "grad_norm": 0.052183765918016434,
+ "learning_rate": 0.0004672832675623463,
+ "loss": 2.174470901489258,
+ "step": 1198
+ },
+ {
+ "epoch": 16.65505226480836,
+ "grad_norm": 0.049528587609529495,
+ "learning_rate": 0.0004670611116600322,
+ "loss": 2.1593801975250244,
+ "step": 1199
+ },
+ {
+ "epoch": 16.66898954703833,
+ "grad_norm": 0.05077743902802467,
+ "learning_rate": 0.00046683882357664375,
+ "loss": 2.1829850673675537,
+ "step": 1200
+ },
+ {
+ "epoch": 16.682926829268293,
+ "grad_norm": 0.049165278673172,
+ "learning_rate": 0.0004666164034912744,
+ "loss": 2.1820642948150635,
+ "step": 1201
+ },
+ {
+ "epoch": 16.696864111498257,
+ "grad_norm": 0.049670539796352386,
+ "learning_rate": 0.00046639385158312406,
+ "loss": 2.1617588996887207,
+ "step": 1202
+ },
+ {
+ "epoch": 16.71080139372822,
+ "grad_norm": 0.05188990756869316,
+ "learning_rate": 0.00046617116803149874,
+ "loss": 2.1910011768341064,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72473867595819,
+ "grad_norm": 0.05106198787689209,
+ "learning_rate": 0.00046594835301581053,
+ "loss": 2.1670002937316895,
+ "step": 1204
+ },
+ {
+ "epoch": 16.738675958188153,
+ "grad_norm": 0.052352480590343475,
+ "learning_rate": 0.00046572540671557745,
+ "loss": 2.1804449558258057,
+ "step": 1205
+ },
+ {
+ "epoch": 16.752613240418118,
+ "grad_norm": 0.05456020310521126,
+ "learning_rate": 0.00046550232931042346,
+ "loss": 2.183560848236084,
+ "step": 1206
+ },
+ {
+ "epoch": 16.766550522648085,
+ "grad_norm": 0.05248325690627098,
+ "learning_rate": 0.00046527912098007787,
+ "loss": 2.1866538524627686,
+ "step": 1207
+ },
+ {
+ "epoch": 16.78048780487805,
+ "grad_norm": 0.052194926887750626,
+ "learning_rate": 0.00046505578190437564,
+ "loss": 2.179544448852539,
+ "step": 1208
+ },
+ {
+ "epoch": 16.794425087108014,
+ "grad_norm": 0.048344213515520096,
+ "learning_rate": 0.0004648323122632569,
+ "loss": 2.1895692348480225,
+ "step": 1209
+ },
+ {
+ "epoch": 16.808362369337978,
+ "grad_norm": 0.053263742476701736,
+ "learning_rate": 0.0004646087122367673,
+ "loss": 2.1922311782836914,
+ "step": 1210
+ },
+ {
+ "epoch": 16.822299651567945,
+ "grad_norm": 0.05046837404370308,
+ "learning_rate": 0.00046438498200505727,
+ "loss": 2.1986570358276367,
+ "step": 1211
+ },
+ {
+ "epoch": 16.83623693379791,
+ "grad_norm": 0.04699976369738579,
+ "learning_rate": 0.0004641611217483821,
+ "loss": 2.168755531311035,
+ "step": 1212
+ },
+ {
+ "epoch": 16.850174216027874,
+ "grad_norm": 0.0500732958316803,
+ "learning_rate": 0.00046393713164710217,
+ "loss": 2.1747398376464844,
+ "step": 1213
+ },
+ {
+ "epoch": 16.86411149825784,
+ "grad_norm": 0.048436183482408524,
+ "learning_rate": 0.00046371301188168204,
+ "loss": 2.181175947189331,
+ "step": 1214
+ },
+ {
+ "epoch": 16.878048780487806,
+ "grad_norm": 0.04788931831717491,
+ "learning_rate": 0.0004634887626326911,
+ "loss": 2.1619675159454346,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89198606271777,
+ "grad_norm": 0.04881543293595314,
+ "learning_rate": 0.00046326438408080293,
+ "loss": 2.1840174198150635,
+ "step": 1216
+ },
+ {
+ "epoch": 16.905923344947734,
+ "grad_norm": 0.049969445914030075,
+ "learning_rate": 0.00046303987640679517,
+ "loss": 2.199573040008545,
+ "step": 1217
+ },
+ {
+ "epoch": 16.9198606271777,
+ "grad_norm": 0.048629943281412125,
+ "learning_rate": 0.0004628152397915498,
+ "loss": 2.1661055088043213,
+ "step": 1218
+ },
+ {
+ "epoch": 16.933797909407666,
+ "grad_norm": 0.051450759172439575,
+ "learning_rate": 0.00046259047441605215,
+ "loss": 2.182037591934204,
+ "step": 1219
+ },
+ {
+ "epoch": 16.94773519163763,
+ "grad_norm": 0.05253942683339119,
+ "learning_rate": 0.0004623655804613919,
+ "loss": 2.1848878860473633,
+ "step": 1220
+ },
+ {
+ "epoch": 16.961672473867594,
+ "grad_norm": 0.0511169359087944,
+ "learning_rate": 0.00046214055810876194,
+ "loss": 2.181640863418579,
+ "step": 1221
+ },
+ {
+ "epoch": 16.975609756097562,
+ "grad_norm": 0.04952972009778023,
+ "learning_rate": 0.00046191540753945886,
+ "loss": 2.1824798583984375,
+ "step": 1222
+ },
+ {
+ "epoch": 16.989547038327526,
+ "grad_norm": 0.048745568841695786,
+ "learning_rate": 0.00046169012893488204,
+ "loss": 2.175996780395508,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.039088211953639984,
+ "learning_rate": 0.00046146472247653484,
+ "loss": 1.6450124979019165,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 0.6228054761886597,
+ "eval_runtime": 36.2135,
+ "eval_samples_per_second": 67.433,
+ "eval_steps_per_second": 0.552,
+ "step": 1224
+ },
+ {
+ "epoch": 17.013937282229964,
+ "grad_norm": 0.05182459577918053,
+ "learning_rate": 0.0004612391883460228,
+ "loss": 2.13407826423645,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027874564459932,
+ "grad_norm": 0.06349381804466248,
+ "learning_rate": 0.00046101352672505493,
+ "loss": 2.124786615371704,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041811846689896,
+ "grad_norm": 0.06030651181936264,
+ "learning_rate": 0.0004607877377954426,
+ "loss": 2.1319074630737305,
+ "step": 1227
+ },
+ {
+ "epoch": 17.05574912891986,
+ "grad_norm": 0.05942157283425331,
+ "learning_rate": 0.00046056182173909995,
+ "loss": 2.1155600547790527,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069686411149824,
+ "grad_norm": 0.05690222606062889,
+ "learning_rate": 0.0004603357787380435,
+ "loss": 2.1224000453948975,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083623693379792,
+ "grad_norm": 0.05549716204404831,
+ "learning_rate": 0.0004601096089743919,
+ "loss": 2.138361692428589,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097560975609756,
+ "grad_norm": 0.05572805553674698,
+ "learning_rate": 0.0004598833126303661,
+ "loss": 2.108839511871338,
+ "step": 1231
+ },
+ {
+ "epoch": 17.11149825783972,
+ "grad_norm": 0.05359194055199623,
+ "learning_rate": 0.00045965688988828884,
+ "loss": 2.111232042312622,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125435540069688,
+ "grad_norm": 0.05284698307514191,
+ "learning_rate": 0.00045943034093058507,
+ "loss": 2.111241102218628,
+ "step": 1233
+ },
+ {
+ "epoch": 17.139372822299652,
+ "grad_norm": 0.05522393807768822,
+ "learning_rate": 0.000459203665939781,
+ "loss": 2.1056082248687744,
+ "step": 1234
+ },
+ {
+ "epoch": 17.153310104529616,
+ "grad_norm": 0.05988268554210663,
+ "learning_rate": 0.00045897686509850487,
+ "loss": 2.1245055198669434,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16724738675958,
+ "grad_norm": 0.05882375314831734,
+ "learning_rate": 0.0004587499385894856,
+ "loss": 2.12105655670166,
+ "step": 1236
+ },
+ {
+ "epoch": 17.181184668989548,
+ "grad_norm": 0.05429045483469963,
+ "learning_rate": 0.000458522886595554,
+ "loss": 2.1340696811676025,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195121951219512,
+ "grad_norm": 0.05428321287035942,
+ "learning_rate": 0.0004582957092996418,
+ "loss": 2.125894546508789,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209059233449477,
+ "grad_norm": 0.05918198451399803,
+ "learning_rate": 0.0004580684068847817,
+ "loss": 2.115187168121338,
+ "step": 1239
+ },
+ {
+ "epoch": 17.222996515679444,
+ "grad_norm": 0.05467062070965767,
+ "learning_rate": 0.0004578409795341069,
+ "loss": 2.1267573833465576,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23693379790941,
+ "grad_norm": 0.05117730423808098,
+ "learning_rate": 0.0004576134274308517,
+ "loss": 2.131983757019043,
+ "step": 1241
+ },
+ {
+ "epoch": 17.250871080139373,
+ "grad_norm": 0.05354353412985802,
+ "learning_rate": 0.0004573857507583506,
+ "loss": 2.139024019241333,
+ "step": 1242
+ },
+ {
+ "epoch": 17.264808362369337,
+ "grad_norm": 0.05508217588067055,
+ "learning_rate": 0.00045715794970003874,
+ "loss": 2.123086929321289,
+ "step": 1243
+ },
+ {
+ "epoch": 17.278745644599304,
+ "grad_norm": 0.056819524616003036,
+ "learning_rate": 0.0004569300244394513,
+ "loss": 2.133049488067627,
+ "step": 1244
+ },
+ {
+ "epoch": 17.29268292682927,
+ "grad_norm": 0.06116129457950592,
+ "learning_rate": 0.0004567019751602234,
+ "loss": 2.146721601486206,
+ "step": 1245
+ },
+ {
+ "epoch": 17.306620209059233,
+ "grad_norm": 0.06482621282339096,
+ "learning_rate": 0.00045647380204609034,
+ "loss": 2.133073568344116,
+ "step": 1246
+ },
+ {
+ "epoch": 17.320557491289197,
+ "grad_norm": 0.06122269853949547,
+ "learning_rate": 0.00045624550528088704,
+ "loss": 2.1292078495025635,
+ "step": 1247
+ },
+ {
+ "epoch": 17.334494773519165,
+ "grad_norm": 0.060462113469839096,
+ "learning_rate": 0.00045601708504854803,
+ "loss": 2.1301801204681396,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34843205574913,
+ "grad_norm": 0.05775533244013786,
+ "learning_rate": 0.0004557885415331074,
+ "loss": 2.160749673843384,
+ "step": 1249
+ },
+ {
+ "epoch": 17.362369337979093,
+ "grad_norm": 0.05933118611574173,
+ "learning_rate": 0.00045555987491869865,
+ "loss": 2.138021469116211,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37630662020906,
+ "grad_norm": 0.05498939007520676,
+ "learning_rate": 0.00045533108538955416,
+ "loss": 2.1443264484405518,
+ "step": 1251
+ },
+ {
+ "epoch": 17.390243902439025,
+ "grad_norm": 0.05720233544707298,
+ "learning_rate": 0.0004551021731300055,
+ "loss": 2.1400699615478516,
+ "step": 1252
+ },
+ {
+ "epoch": 17.40418118466899,
+ "grad_norm": 0.05569229647517204,
+ "learning_rate": 0.0004548731383244834,
+ "loss": 2.1375250816345215,
+ "step": 1253
+ },
+ {
+ "epoch": 17.418118466898953,
+ "grad_norm": 0.05508109927177429,
+ "learning_rate": 0.0004546439811575169,
+ "loss": 2.1352083683013916,
+ "step": 1254
+ },
+ {
+ "epoch": 17.43205574912892,
+ "grad_norm": 0.057038020342588425,
+ "learning_rate": 0.00045441470181373375,
+ "loss": 2.1290454864501953,
+ "step": 1255
+ },
+ {
+ "epoch": 17.445993031358885,
+ "grad_norm": 0.05938584357500076,
+ "learning_rate": 0.0004541853004778603,
+ "loss": 2.14906644821167,
+ "step": 1256
+ },
+ {
+ "epoch": 17.45993031358885,
+ "grad_norm": 0.05654401332139969,
+ "learning_rate": 0.00045395577733472087,
+ "loss": 2.133410692214966,
+ "step": 1257
+ },
+ {
+ "epoch": 17.473867595818817,
+ "grad_norm": 0.05399394780397415,
+ "learning_rate": 0.0004537261325692383,
+ "loss": 2.14622163772583,
+ "step": 1258
+ },
+ {
+ "epoch": 17.48780487804878,
+ "grad_norm": 0.05683310702443123,
+ "learning_rate": 0.0004534963663664332,
+ "loss": 2.1482772827148438,
+ "step": 1259
+ },
+ {
+ "epoch": 17.501742160278745,
+ "grad_norm": 0.06314415484666824,
+ "learning_rate": 0.00045326647891142394,
+ "loss": 2.150238037109375,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51567944250871,
+ "grad_norm": 0.0595875009894371,
+ "learning_rate": 0.0004530364703894268,
+ "loss": 2.137575626373291,
+ "step": 1261
+ },
+ {
+ "epoch": 17.529616724738677,
+ "grad_norm": 0.05534850060939789,
+ "learning_rate": 0.0004528063409857554,
+ "loss": 2.169827461242676,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54355400696864,
+ "grad_norm": 0.06096148118376732,
+ "learning_rate": 0.0004525760908858209,
+ "loss": 2.142652988433838,
+ "step": 1263
+ },
+ {
+ "epoch": 17.557491289198605,
+ "grad_norm": 0.06313963979482651,
+ "learning_rate": 0.00045234572027513174,
+ "loss": 2.152920722961426,
+ "step": 1264
+ },
+ {
+ "epoch": 17.571428571428573,
+ "grad_norm": 0.058604612946510315,
+ "learning_rate": 0.00045211522933929317,
+ "loss": 2.1487669944763184,
+ "step": 1265
+ },
+ {
+ "epoch": 17.585365853658537,
+ "grad_norm": 0.056736089289188385,
+ "learning_rate": 0.0004518846182640077,
+ "loss": 2.1435699462890625,
+ "step": 1266
+ },
+ {
+ "epoch": 17.5993031358885,
+ "grad_norm": 0.05706419423222542,
+ "learning_rate": 0.0004516538872350744,
+ "loss": 2.1586122512817383,
+ "step": 1267
+ },
+ {
+ "epoch": 17.613240418118465,
+ "grad_norm": 0.05560465529561043,
+ "learning_rate": 0.0004514230364383893,
+ "loss": 2.177081346511841,
+ "step": 1268
+ },
+ {
+ "epoch": 17.627177700348433,
+ "grad_norm": 0.05601844564080238,
+ "learning_rate": 0.0004511920660599444,
+ "loss": 2.1478757858276367,
+ "step": 1269
+ },
+ {
+ "epoch": 17.641114982578397,
+ "grad_norm": 0.05756781995296478,
+ "learning_rate": 0.0004509609762858287,
+ "loss": 2.1525440216064453,
+ "step": 1270
+ },
+ {
+ "epoch": 17.65505226480836,
+ "grad_norm": 0.0531681589782238,
+ "learning_rate": 0.0004507297673022269,
+ "loss": 2.1489810943603516,
+ "step": 1271
+ },
+ {
+ "epoch": 17.66898954703833,
+ "grad_norm": 0.05216185003519058,
+ "learning_rate": 0.0004504984392954199,
+ "loss": 2.144932746887207,
+ "step": 1272
+ },
+ {
+ "epoch": 17.682926829268293,
+ "grad_norm": 0.052748095244169235,
+ "learning_rate": 0.00045026699245178444,
+ "loss": 2.148977756500244,
+ "step": 1273
+ },
+ {
+ "epoch": 17.696864111498257,
+ "grad_norm": 0.051663246005773544,
+ "learning_rate": 0.0004500354269577932,
+ "loss": 2.1617603302001953,
+ "step": 1274
+ },
+ {
+ "epoch": 17.71080139372822,
+ "grad_norm": 0.05068802461028099,
+ "learning_rate": 0.00044980374300001414,
+ "loss": 2.1467485427856445,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72473867595819,
+ "grad_norm": 0.052201591432094574,
+ "learning_rate": 0.00044957194076511095,
+ "loss": 2.1621475219726562,
+ "step": 1276
+ },
+ {
+ "epoch": 17.738675958188153,
+ "grad_norm": 0.05179779976606369,
+ "learning_rate": 0.0004493400204398426,
+ "loss": 2.1593222618103027,
+ "step": 1277
+ },
+ {
+ "epoch": 17.752613240418118,
+ "grad_norm": 0.05123918130993843,
+ "learning_rate": 0.00044910798221106283,
+ "loss": 2.1596224308013916,
+ "step": 1278
+ },
+ {
+ "epoch": 17.766550522648085,
+ "grad_norm": 0.05416003242135048,
+ "learning_rate": 0.00044887582626572105,
+ "loss": 2.156677484512329,
+ "step": 1279
+ },
+ {
+ "epoch": 17.78048780487805,
+ "grad_norm": 0.05376303568482399,
+ "learning_rate": 0.0004486435527908606,
+ "loss": 2.1515936851501465,
+ "step": 1280
+ },
+ {
+ "epoch": 17.794425087108014,
+ "grad_norm": 0.05113770812749863,
+ "learning_rate": 0.0004484111619736205,
+ "loss": 2.159501075744629,
+ "step": 1281
+ },
+ {
+ "epoch": 17.808362369337978,
+ "grad_norm": 0.05341901257634163,
+ "learning_rate": 0.0004481786540012336,
+ "loss": 2.1458449363708496,
+ "step": 1282
+ },
+ {
+ "epoch": 17.822299651567945,
+ "grad_norm": 0.05436928942799568,
+ "learning_rate": 0.00044794602906102747,
+ "loss": 2.1686582565307617,
+ "step": 1283
+ },
+ {
+ "epoch": 17.83623693379791,
+ "grad_norm": 0.05663881078362465,
+ "learning_rate": 0.00044771328734042367,
+ "loss": 2.162226676940918,
+ "step": 1284
+ },
+ {
+ "epoch": 17.850174216027874,
+ "grad_norm": 0.052064672112464905,
+ "learning_rate": 0.00044748042902693815,
+ "loss": 2.162569046020508,
+ "step": 1285
+ },
+ {
+ "epoch": 17.86411149825784,
+ "grad_norm": 0.05361185595393181,
+ "learning_rate": 0.0004472474543081805,
+ "loss": 2.156773567199707,
+ "step": 1286
+ },
+ {
+ "epoch": 17.878048780487806,
+ "grad_norm": 0.053101785480976105,
+ "learning_rate": 0.00044701436337185444,
+ "loss": 2.1460914611816406,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89198606271777,
+ "grad_norm": 0.05247222259640694,
+ "learning_rate": 0.00044678115640575704,
+ "loss": 2.1564040184020996,
+ "step": 1288
+ },
+ {
+ "epoch": 17.905923344947734,
+ "grad_norm": 0.054551344364881516,
+ "learning_rate": 0.0004465478335977788,
+ "loss": 2.1503076553344727,
+ "step": 1289
+ },
+ {
+ "epoch": 17.9198606271777,
+ "grad_norm": 0.050967201590538025,
+ "learning_rate": 0.00044631439513590393,
+ "loss": 2.165611505508423,
+ "step": 1290
+ },
+ {
+ "epoch": 17.933797909407666,
+ "grad_norm": 0.051103148609399796,
+ "learning_rate": 0.00044608084120820933,
+ "loss": 2.146416187286377,
+ "step": 1291
+ },
+ {
+ "epoch": 17.94773519163763,
+ "grad_norm": 0.04871583357453346,
+ "learning_rate": 0.0004458471720028655,
+ "loss": 2.1615967750549316,
+ "step": 1292
+ },
+ {
+ "epoch": 17.961672473867594,
+ "grad_norm": 0.05047275498509407,
+ "learning_rate": 0.0004456133877081352,
+ "loss": 2.1585195064544678,
+ "step": 1293
+ },
+ {
+ "epoch": 17.975609756097562,
+ "grad_norm": 0.05169983580708504,
+ "learning_rate": 0.0004453794885123744,
+ "loss": 2.163914680480957,
+ "step": 1294
+ },
+ {
+ "epoch": 17.989547038327526,
+ "grad_norm": 0.05178225040435791,
+ "learning_rate": 0.00044514547460403135,
+ "loss": 2.1566972732543945,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.04334854707121849,
+ "learning_rate": 0.00044491134617164694,
+ "loss": 1.6099262237548828,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 0.6236167550086975,
+ "eval_runtime": 36.363,
+ "eval_samples_per_second": 67.156,
+ "eval_steps_per_second": 0.55,
+ "step": 1296
+ },
+ {
+ "epoch": 18.013937282229964,
+ "grad_norm": 0.054574184119701385,
+ "learning_rate": 0.000444677103403854,
+ "loss": 2.097102642059326,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027874564459932,
+ "grad_norm": 0.06331679970026016,
+ "learning_rate": 0.0004444427464893779,
+ "loss": 2.113513469696045,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041811846689896,
+ "grad_norm": 0.06493321061134338,
+ "learning_rate": 0.00044420827561703573,
+ "loss": 2.1095829010009766,
+ "step": 1299
+ },
+ {
+ "epoch": 18.05574912891986,
+ "grad_norm": 0.0661960318684578,
+ "learning_rate": 0.0004439736909757365,
+ "loss": 2.0967822074890137,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069686411149824,
+ "grad_norm": 0.062145210802555084,
+ "learning_rate": 0.0004437389927544805,
+ "loss": 2.08186936378479,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083623693379792,
+ "grad_norm": 0.06310027837753296,
+ "learning_rate": 0.0004435041811423603,
+ "loss": 2.115525245666504,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097560975609756,
+ "grad_norm": 0.06527610123157501,
+ "learning_rate": 0.0004432692563285591,
+ "loss": 2.110492706298828,
+ "step": 1303
+ },
+ {
+ "epoch": 18.11149825783972,
+ "grad_norm": 0.059454720467329025,
+ "learning_rate": 0.0004430342185023517,
+ "loss": 2.105884552001953,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125435540069688,
+ "grad_norm": 0.056922316551208496,
+ "learning_rate": 0.0004427990678531038,
+ "loss": 2.1008682250976562,
+ "step": 1305
+ },
+ {
+ "epoch": 18.139372822299652,
+ "grad_norm": 0.06496447324752808,
+ "learning_rate": 0.0004425638045702719,
+ "loss": 2.0853774547576904,
+ "step": 1306
+ },
+ {
+ "epoch": 18.153310104529616,
+ "grad_norm": 0.059888552874326706,
+ "learning_rate": 0.0004423284288434035,
+ "loss": 2.1116936206817627,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16724738675958,
+ "grad_norm": 0.06061340123414993,
+ "learning_rate": 0.00044209294086213657,
+ "loss": 2.100578784942627,
+ "step": 1308
+ },
+ {
+ "epoch": 18.181184668989548,
+ "grad_norm": 0.06433615833520889,
+ "learning_rate": 0.00044185734081619957,
+ "loss": 2.0994229316711426,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195121951219512,
+ "grad_norm": 0.06373526901006699,
+ "learning_rate": 0.000441621628895411,
+ "loss": 2.1115286350250244,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209059233449477,
+ "grad_norm": 0.062120918184518814,
+ "learning_rate": 0.00044138580528967986,
+ "loss": 2.123278856277466,
+ "step": 1311
+ },
+ {
+ "epoch": 18.222996515679444,
+ "grad_norm": 0.06534294784069061,
+ "learning_rate": 0.0004411498701890051,
+ "loss": 2.0983846187591553,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23693379790941,
+ "grad_norm": 0.06486557424068451,
+ "learning_rate": 0.0004409138237834751,
+ "loss": 2.099348783493042,
+ "step": 1313
+ },
+ {
+ "epoch": 18.250871080139373,
+ "grad_norm": 0.05728910490870476,
+ "learning_rate": 0.00044067766626326835,
+ "loss": 2.0990138053894043,
+ "step": 1314
+ },
+ {
+ "epoch": 18.264808362369337,
+ "grad_norm": 0.060207612812519073,
+ "learning_rate": 0.00044044139781865255,
+ "loss": 2.1117920875549316,
+ "step": 1315
+ },
+ {
+ "epoch": 18.278745644599304,
+ "grad_norm": 0.05766129493713379,
+ "learning_rate": 0.00044020501863998516,
+ "loss": 2.101550579071045,
+ "step": 1316
+ },
+ {
+ "epoch": 18.29268292682927,
+ "grad_norm": 0.060087788850069046,
+ "learning_rate": 0.00043996852891771236,
+ "loss": 2.1135497093200684,
+ "step": 1317
+ },
+ {
+ "epoch": 18.306620209059233,
+ "grad_norm": 0.059771373867988586,
+ "learning_rate": 0.00043973192884236983,
+ "loss": 2.1124963760375977,
+ "step": 1318
+ },
+ {
+ "epoch": 18.320557491289197,
+ "grad_norm": 0.059871334582567215,
+ "learning_rate": 0.0004394952186045819,
+ "loss": 2.1254708766937256,
+ "step": 1319
+ },
+ {
+ "epoch": 18.334494773519165,
+ "grad_norm": 0.060070380568504333,
+ "learning_rate": 0.00043925839839506167,
+ "loss": 2.1019275188446045,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34843205574913,
+ "grad_norm": 0.05744089558720589,
+ "learning_rate": 0.0004390214684046111,
+ "loss": 2.112631320953369,
+ "step": 1321
+ },
+ {
+ "epoch": 18.362369337979093,
+ "grad_norm": 0.06188441440463066,
+ "learning_rate": 0.00043878442882412015,
+ "loss": 2.11454439163208,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37630662020906,
+ "grad_norm": 0.06033455580472946,
+ "learning_rate": 0.00043854727984456746,
+ "loss": 2.1136903762817383,
+ "step": 1323
+ },
+ {
+ "epoch": 18.390243902439025,
+ "grad_norm": 0.05741684511303902,
+ "learning_rate": 0.0004383100216570197,
+ "loss": 2.1244497299194336,
+ "step": 1324
+ },
+ {
+ "epoch": 18.40418118466899,
+ "grad_norm": 0.05371133238077164,
+ "learning_rate": 0.0004380726544526316,
+ "loss": 2.0973854064941406,
+ "step": 1325
+ },
+ {
+ "epoch": 18.418118466898953,
+ "grad_norm": 0.05289234593510628,
+ "learning_rate": 0.00043783517842264534,
+ "loss": 2.1062159538269043,
+ "step": 1326
+ },
+ {
+ "epoch": 18.43205574912892,
+ "grad_norm": 0.05888833478093147,
+ "learning_rate": 0.0004375975937583914,
+ "loss": 2.133770227432251,
+ "step": 1327
+ },
+ {
+ "epoch": 18.445993031358885,
+ "grad_norm": 0.057039227336645126,
+ "learning_rate": 0.0004373599006512871,
+ "loss": 2.123251438140869,
+ "step": 1328
+ },
+ {
+ "epoch": 18.45993031358885,
+ "grad_norm": 0.05389681085944176,
+ "learning_rate": 0.00043712209929283786,
+ "loss": 2.1121368408203125,
+ "step": 1329
+ },
+ {
+ "epoch": 18.473867595818817,
+ "grad_norm": 0.05782404541969299,
+ "learning_rate": 0.00043688418987463567,
+ "loss": 2.119410991668701,
+ "step": 1330
+ },
+ {
+ "epoch": 18.48780487804878,
+ "grad_norm": 0.06069990620017052,
+ "learning_rate": 0.00043664617258835995,
+ "loss": 2.1443772315979004,
+ "step": 1331
+ },
+ {
+ "epoch": 18.501742160278745,
+ "grad_norm": 0.05559232831001282,
+ "learning_rate": 0.0004364080476257769,
+ "loss": 2.1264851093292236,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51567944250871,
+ "grad_norm": 0.05432436615228653,
+ "learning_rate": 0.0004361698151787396,
+ "loss": 2.1118392944335938,
+ "step": 1333
+ },
+ {
+ "epoch": 18.529616724738677,
+ "grad_norm": 0.05471545085310936,
+ "learning_rate": 0.0004359314754391874,
+ "loss": 2.1159002780914307,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54355400696864,
+ "grad_norm": 0.05574088171124458,
+ "learning_rate": 0.0004356930285991466,
+ "loss": 2.1271533966064453,
+ "step": 1335
+ },
+ {
+ "epoch": 18.557491289198605,
+ "grad_norm": 0.05431128293275833,
+ "learning_rate": 0.00043545447485072926,
+ "loss": 2.125399589538574,
+ "step": 1336
+ },
+ {
+ "epoch": 18.571428571428573,
+ "grad_norm": 0.055981073528528214,
+ "learning_rate": 0.000435215814386134,
+ "loss": 2.113802909851074,
+ "step": 1337
+ },
+ {
+ "epoch": 18.585365853658537,
+ "grad_norm": 0.05551784485578537,
+ "learning_rate": 0.0004349770473976453,
+ "loss": 2.1233460903167725,
+ "step": 1338
+ },
+ {
+ "epoch": 18.5993031358885,
+ "grad_norm": 0.05475042760372162,
+ "learning_rate": 0.0004347381740776332,
+ "loss": 2.1365370750427246,
+ "step": 1339
+ },
+ {
+ "epoch": 18.613240418118465,
+ "grad_norm": 0.05448045954108238,
+ "learning_rate": 0.0004344991946185538,
+ "loss": 2.1288349628448486,
+ "step": 1340
+ },
+ {
+ "epoch": 18.627177700348433,
+ "grad_norm": 0.0553717240691185,
+ "learning_rate": 0.00043426010921294837,
+ "loss": 2.1383371353149414,
+ "step": 1341
+ },
+ {
+ "epoch": 18.641114982578397,
+ "grad_norm": 0.05391915515065193,
+ "learning_rate": 0.0004340209180534438,
+ "loss": 2.1390743255615234,
+ "step": 1342
+ },
+ {
+ "epoch": 18.65505226480836,
+ "grad_norm": 0.05404767021536827,
+ "learning_rate": 0.000433781621332752,
+ "loss": 2.1237120628356934,
+ "step": 1343
+ },
+ {
+ "epoch": 18.66898954703833,
+ "grad_norm": 0.05370468273758888,
+ "learning_rate": 0.0004335422192436703,
+ "loss": 2.123408079147339,
+ "step": 1344
+ },
+ {
+ "epoch": 18.682926829268293,
+ "grad_norm": 0.05490506440401077,
+ "learning_rate": 0.00043330271197908023,
+ "loss": 2.130199432373047,
+ "step": 1345
+ },
+ {
+ "epoch": 18.696864111498257,
+ "grad_norm": 0.05651344731450081,
+ "learning_rate": 0.00043306309973194874,
+ "loss": 2.1184425354003906,
+ "step": 1346
+ },
+ {
+ "epoch": 18.71080139372822,
+ "grad_norm": 0.05446930602192879,
+ "learning_rate": 0.000432823382695327,
+ "loss": 2.1391234397888184,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72473867595819,
+ "grad_norm": 0.056854017078876495,
+ "learning_rate": 0.0004325835610623508,
+ "loss": 2.1358017921447754,
+ "step": 1348
+ },
+ {
+ "epoch": 18.738675958188153,
+ "grad_norm": 0.06729792058467865,
+ "learning_rate": 0.00043234363502623994,
+ "loss": 2.1330645084381104,
+ "step": 1349
+ },
+ {
+ "epoch": 18.752613240418118,
+ "grad_norm": 0.05778411030769348,
+ "learning_rate": 0.0004321036047802985,
+ "loss": 2.1277008056640625,
+ "step": 1350
+ },
+ {
+ "epoch": 18.766550522648085,
+ "grad_norm": 0.05493835732340813,
+ "learning_rate": 0.00043186347051791466,
+ "loss": 2.1218693256378174,
+ "step": 1351
+ },
+ {
+ "epoch": 18.78048780487805,
+ "grad_norm": 0.05961703136563301,
+ "learning_rate": 0.0004316232324325602,
+ "loss": 2.141153573989868,
+ "step": 1352
+ },
+ {
+ "epoch": 18.794425087108014,
+ "grad_norm": 0.057490140199661255,
+ "learning_rate": 0.0004313828907177906,
+ "loss": 2.1218957901000977,
+ "step": 1353
+ },
+ {
+ "epoch": 18.808362369337978,
+ "grad_norm": 0.05424332618713379,
+ "learning_rate": 0.0004311424455672448,
+ "loss": 2.1294074058532715,
+ "step": 1354
+ },
+ {
+ "epoch": 18.822299651567945,
+ "grad_norm": 0.05539792776107788,
+ "learning_rate": 0.0004309018971746451,
+ "loss": 2.1287131309509277,
+ "step": 1355
+ },
+ {
+ "epoch": 18.83623693379791,
+ "grad_norm": 0.056515417993068695,
+ "learning_rate": 0.000430661245733797,
+ "loss": 2.1303625106811523,
+ "step": 1356
+ },
+ {
+ "epoch": 18.850174216027874,
+ "grad_norm": 0.053070683032274246,
+ "learning_rate": 0.00043042049143858914,
+ "loss": 2.1501715183258057,
+ "step": 1357
+ },
+ {
+ "epoch": 18.86411149825784,
+ "grad_norm": 0.05422713980078697,
+ "learning_rate": 0.0004301796344829928,
+ "loss": 2.141580581665039,
+ "step": 1358
+ },
+ {
+ "epoch": 18.878048780487806,
+ "grad_norm": 0.053621236234903336,
+ "learning_rate": 0.00042993867506106205,
+ "loss": 2.1374034881591797,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89198606271777,
+ "grad_norm": 0.05488245189189911,
+ "learning_rate": 0.0004296976133669336,
+ "loss": 2.1387908458709717,
+ "step": 1360
+ },
+ {
+ "epoch": 18.905923344947734,
+ "grad_norm": 0.05566219612956047,
+ "learning_rate": 0.0004294564495948266,
+ "loss": 2.1420421600341797,
+ "step": 1361
+ },
+ {
+ "epoch": 18.9198606271777,
+ "grad_norm": 0.05297220125794411,
+ "learning_rate": 0.0004292151839390421,
+ "loss": 2.126768112182617,
+ "step": 1362
+ },
+ {
+ "epoch": 18.933797909407666,
+ "grad_norm": 0.056281380355358124,
+ "learning_rate": 0.0004289738165939636,
+ "loss": 2.114241361618042,
+ "step": 1363
+ },
+ {
+ "epoch": 18.94773519163763,
+ "grad_norm": 0.05625050142407417,
+ "learning_rate": 0.00042873234775405654,
+ "loss": 2.134300947189331,
+ "step": 1364
+ },
+ {
+ "epoch": 18.961672473867594,
+ "grad_norm": 0.05186711251735687,
+ "learning_rate": 0.00042849077761386784,
+ "loss": 2.1409969329833984,
+ "step": 1365
+ },
+ {
+ "epoch": 18.975609756097562,
+ "grad_norm": 0.057695358991622925,
+ "learning_rate": 0.0004282491063680263,
+ "loss": 2.1331894397735596,
+ "step": 1366
+ },
+ {
+ "epoch": 18.989547038327526,
+ "grad_norm": 0.055152107030153275,
+ "learning_rate": 0.00042800733421124207,
+ "loss": 2.147555112838745,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.04286205768585205,
+ "learning_rate": 0.00042776546133830646,
+ "loss": 1.5948516130447388,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 0.6249114871025085,
+ "eval_runtime": 36.6804,
+ "eval_samples_per_second": 66.575,
+ "eval_steps_per_second": 0.545,
+ "step": 1368
+ },
+ {
+ "epoch": 19.013937282229964,
+ "grad_norm": 0.05809386819601059,
+ "learning_rate": 0.00042752348794409227,
+ "loss": 2.0782227516174316,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027874564459932,
+ "grad_norm": 0.06399382650852203,
+ "learning_rate": 0.00042728141422355287,
+ "loss": 2.078792095184326,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041811846689896,
+ "grad_norm": 0.0564531646668911,
+ "learning_rate": 0.0004270392403717229,
+ "loss": 2.083125114440918,
+ "step": 1371
+ },
+ {
+ "epoch": 19.05574912891986,
+ "grad_norm": 0.057170569896698,
+ "learning_rate": 0.00042679696658371743,
+ "loss": 2.0679214000701904,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069686411149824,
+ "grad_norm": 0.05639920011162758,
+ "learning_rate": 0.00042655459305473195,
+ "loss": 2.072279930114746,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083623693379792,
+ "grad_norm": 0.05690578371286392,
+ "learning_rate": 0.0004263121199800425,
+ "loss": 2.0732839107513428,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097560975609756,
+ "grad_norm": 0.05914883315563202,
+ "learning_rate": 0.0004260695475550054,
+ "loss": 2.0810770988464355,
+ "step": 1375
+ },
+ {
+ "epoch": 19.11149825783972,
+ "grad_norm": 0.058082643896341324,
+ "learning_rate": 0.0004258268759750566,
+ "loss": 2.074130058288574,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125435540069688,
+ "grad_norm": 0.06016257032752037,
+ "learning_rate": 0.0004255841054357124,
+ "loss": 2.084043025970459,
+ "step": 1377
+ },
+ {
+ "epoch": 19.139372822299652,
+ "grad_norm": 0.060372497886419296,
+ "learning_rate": 0.0004253412361325686,
+ "loss": 2.0811657905578613,
+ "step": 1378
+ },
+ {
+ "epoch": 19.153310104529616,
+ "grad_norm": 0.0614042803645134,
+ "learning_rate": 0.0004250982682613006,
+ "loss": 2.070756435394287,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16724738675958,
+ "grad_norm": 0.06391493231058121,
+ "learning_rate": 0.00042485520201766315,
+ "loss": 2.067322015762329,
+ "step": 1380
+ },
+ {
+ "epoch": 19.181184668989548,
+ "grad_norm": 0.06465132534503937,
+ "learning_rate": 0.0004246120375974905,
+ "loss": 2.077214002609253,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195121951219512,
+ "grad_norm": 0.06490413844585419,
+ "learning_rate": 0.0004243687751966957,
+ "loss": 2.0735957622528076,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209059233449477,
+ "grad_norm": 0.06681123375892639,
+ "learning_rate": 0.0004241254150112708,
+ "loss": 2.092386484146118,
+ "step": 1383
+ },
+ {
+ "epoch": 19.222996515679444,
+ "grad_norm": 0.07135862857103348,
+ "learning_rate": 0.000423881957237287,
+ "loss": 2.0910637378692627,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23693379790941,
+ "grad_norm": 0.06640495359897614,
+ "learning_rate": 0.0004236384020708935,
+ "loss": 2.076943874359131,
+ "step": 1385
+ },
+ {
+ "epoch": 19.250871080139373,
+ "grad_norm": 0.06542305648326874,
+ "learning_rate": 0.0004233947497083185,
+ "loss": 2.08823299407959,
+ "step": 1386
+ },
+ {
+ "epoch": 19.264808362369337,
+ "grad_norm": 0.06014764681458473,
+ "learning_rate": 0.0004231510003458682,
+ "loss": 2.0875651836395264,
+ "step": 1387
+ },
+ {
+ "epoch": 19.278745644599304,
+ "grad_norm": 0.05776312202215195,
+ "learning_rate": 0.0004229071541799272,
+ "loss": 2.097287654876709,
+ "step": 1388
+ },
+ {
+ "epoch": 19.29268292682927,
+ "grad_norm": 0.058570489287376404,
+ "learning_rate": 0.0004226632114069578,
+ "loss": 2.099949359893799,
+ "step": 1389
+ },
+ {
+ "epoch": 19.306620209059233,
+ "grad_norm": 0.059035737067461014,
+ "learning_rate": 0.0004224191722235004,
+ "loss": 2.0985028743743896,
+ "step": 1390
+ },
+ {
+ "epoch": 19.320557491289197,
+ "grad_norm": 0.05857931450009346,
+ "learning_rate": 0.00042217503682617286,
+ "loss": 2.0884578227996826,
+ "step": 1391
+ },
+ {
+ "epoch": 19.334494773519165,
+ "grad_norm": 0.057818394154310226,
+ "learning_rate": 0.0004219308054116706,
+ "loss": 2.0950827598571777,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34843205574913,
+ "grad_norm": 0.05500008538365364,
+ "learning_rate": 0.0004216864781767667,
+ "loss": 2.0837326049804688,
+ "step": 1393
+ },
+ {
+ "epoch": 19.362369337979093,
+ "grad_norm": 0.05635271221399307,
+ "learning_rate": 0.00042144205531831103,
+ "loss": 2.1017332077026367,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37630662020906,
+ "grad_norm": 0.0582125261425972,
+ "learning_rate": 0.0004211975370332308,
+ "loss": 2.0762600898742676,
+ "step": 1395
+ },
+ {
+ "epoch": 19.390243902439025,
+ "grad_norm": 0.0587347187101841,
+ "learning_rate": 0.00042095292351852976,
+ "loss": 2.0604896545410156,
+ "step": 1396
+ },
+ {
+ "epoch": 19.40418118466899,
+ "grad_norm": 0.058021727949380875,
+ "learning_rate": 0.0004207082149712888,
+ "loss": 2.0906972885131836,
+ "step": 1397
+ },
+ {
+ "epoch": 19.418118466898953,
+ "grad_norm": 0.05805983021855354,
+ "learning_rate": 0.0004204634115886651,
+ "loss": 2.0873594284057617,
+ "step": 1398
+ },
+ {
+ "epoch": 19.43205574912892,
+ "grad_norm": 0.05964788421988487,
+ "learning_rate": 0.0004202185135678924,
+ "loss": 2.1012473106384277,
+ "step": 1399
+ },
+ {
+ "epoch": 19.445993031358885,
+ "grad_norm": 0.058361511677503586,
+ "learning_rate": 0.00041997352110628033,
+ "loss": 2.09468936920166,
+ "step": 1400
+ },
+ {
+ "epoch": 19.45993031358885,
+ "grad_norm": 0.05840443819761276,
+ "learning_rate": 0.00041972843440121527,
+ "loss": 2.105898857116699,
+ "step": 1401
+ },
+ {
+ "epoch": 19.473867595818817,
+ "grad_norm": 0.06023252755403519,
+ "learning_rate": 0.00041948325365015894,
+ "loss": 2.103001594543457,
+ "step": 1402
+ },
+ {
+ "epoch": 19.48780487804878,
+ "grad_norm": 0.057779282331466675,
+ "learning_rate": 0.0004192379790506491,
+ "loss": 2.0969185829162598,
+ "step": 1403
+ },
+ {
+ "epoch": 19.501742160278745,
+ "grad_norm": 0.0592162050306797,
+ "learning_rate": 0.00041899261080029904,
+ "loss": 2.1101880073547363,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51567944250871,
+ "grad_norm": 0.06333442032337189,
+ "learning_rate": 0.00041874714909679754,
+ "loss": 2.1037089824676514,
+ "step": 1405
+ },
+ {
+ "epoch": 19.529616724738677,
+ "grad_norm": 0.06202675402164459,
+ "learning_rate": 0.00041850159413790863,
+ "loss": 2.1154634952545166,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54355400696864,
+ "grad_norm": 0.055281441658735275,
+ "learning_rate": 0.0004182559461214715,
+ "loss": 2.1098036766052246,
+ "step": 1407
+ },
+ {
+ "epoch": 19.557491289198605,
+ "grad_norm": 0.06085072085261345,
+ "learning_rate": 0.0004180102052454004,
+ "loss": 2.0985965728759766,
+ "step": 1408
+ },
+ {
+ "epoch": 19.571428571428573,
+ "grad_norm": 0.059430696070194244,
+ "learning_rate": 0.00041776437170768427,
+ "loss": 2.1063296794891357,
+ "step": 1409
+ },
+ {
+ "epoch": 19.585365853658537,
+ "grad_norm": 0.05628339946269989,
+ "learning_rate": 0.0004175184457063868,
+ "loss": 2.096975326538086,
+ "step": 1410
+ },
+ {
+ "epoch": 19.5993031358885,
+ "grad_norm": 0.056543346494436264,
+ "learning_rate": 0.000417272427439646,
+ "loss": 2.1110968589782715,
+ "step": 1411
+ },
+ {
+ "epoch": 19.613240418118465,
+ "grad_norm": 0.05971049889922142,
+ "learning_rate": 0.00041702631710567443,
+ "loss": 2.1136279106140137,
+ "step": 1412
+ },
+ {
+ "epoch": 19.627177700348433,
+ "grad_norm": 0.056699734181165695,
+ "learning_rate": 0.00041678011490275875,
+ "loss": 2.113466501235962,
+ "step": 1413
+ },
+ {
+ "epoch": 19.641114982578397,
+ "grad_norm": 0.05671929940581322,
+ "learning_rate": 0.00041653382102925957,
+ "loss": 2.1061220169067383,
+ "step": 1414
+ },
+ {
+ "epoch": 19.65505226480836,
+ "grad_norm": 0.05770038440823555,
+ "learning_rate": 0.00041628743568361147,
+ "loss": 2.1156320571899414,
+ "step": 1415
+ },
+ {
+ "epoch": 19.66898954703833,
+ "grad_norm": 0.06175893545150757,
+ "learning_rate": 0.00041604095906432265,
+ "loss": 2.112288475036621,
+ "step": 1416
+ },
+ {
+ "epoch": 19.682926829268293,
+ "grad_norm": 0.06383928656578064,
+ "learning_rate": 0.00041579439136997493,
+ "loss": 2.1029422283172607,
+ "step": 1417
+ },
+ {
+ "epoch": 19.696864111498257,
+ "grad_norm": 0.06042713671922684,
+ "learning_rate": 0.00041554773279922337,
+ "loss": 2.1106066703796387,
+ "step": 1418
+ },
+ {
+ "epoch": 19.71080139372822,
+ "grad_norm": 0.057180315256118774,
+ "learning_rate": 0.0004153009835507963,
+ "loss": 2.1148805618286133,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72473867595819,
+ "grad_norm": 0.061083171516656876,
+ "learning_rate": 0.0004150541438234952,
+ "loss": 2.0946850776672363,
+ "step": 1420
+ },
+ {
+ "epoch": 19.738675958188153,
+ "grad_norm": 0.0596432127058506,
+ "learning_rate": 0.00041480721381619435,
+ "loss": 2.1208066940307617,
+ "step": 1421
+ },
+ {
+ "epoch": 19.752613240418118,
+ "grad_norm": 0.05496669560670853,
+ "learning_rate": 0.00041456019372784086,
+ "loss": 2.1088931560516357,
+ "step": 1422
+ },
+ {
+ "epoch": 19.766550522648085,
+ "grad_norm": 0.05810244753956795,
+ "learning_rate": 0.0004143130837574543,
+ "loss": 2.1019372940063477,
+ "step": 1423
+ },
+ {
+ "epoch": 19.78048780487805,
+ "grad_norm": 0.05894653871655464,
+ "learning_rate": 0.0004140658841041267,
+ "loss": 2.1125125885009766,
+ "step": 1424
+ },
+ {
+ "epoch": 19.794425087108014,
+ "grad_norm": 0.05772726237773895,
+ "learning_rate": 0.0004138185949670224,
+ "loss": 2.126194477081299,
+ "step": 1425
+ },
+ {
+ "epoch": 19.808362369337978,
+ "grad_norm": 0.058502763509750366,
+ "learning_rate": 0.00041357121654537766,
+ "loss": 2.110621452331543,
+ "step": 1426
+ },
+ {
+ "epoch": 19.822299651567945,
+ "grad_norm": 0.058296941220760345,
+ "learning_rate": 0.00041332374903850104,
+ "loss": 2.1034765243530273,
+ "step": 1427
+ },
+ {
+ "epoch": 19.83623693379791,
+ "grad_norm": 0.05595606938004494,
+ "learning_rate": 0.00041307619264577234,
+ "loss": 2.118297815322876,
+ "step": 1428
+ },
+ {
+ "epoch": 19.850174216027874,
+ "grad_norm": 0.0563458688557148,
+ "learning_rate": 0.0004128285475666436,
+ "loss": 2.1122255325317383,
+ "step": 1429
+ },
+ {
+ "epoch": 19.86411149825784,
+ "grad_norm": 0.05421055108308792,
+ "learning_rate": 0.0004125808140006378,
+ "loss": 2.103970527648926,
+ "step": 1430
+ },
+ {
+ "epoch": 19.878048780487806,
+ "grad_norm": 0.05633455142378807,
+ "learning_rate": 0.0004123329921473494,
+ "loss": 2.11661434173584,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89198606271777,
+ "grad_norm": 0.05797342583537102,
+ "learning_rate": 0.0004120850822064439,
+ "loss": 2.1021676063537598,
+ "step": 1432
+ },
+ {
+ "epoch": 19.905923344947734,
+ "grad_norm": 0.056061360985040665,
+ "learning_rate": 0.00041183708437765815,
+ "loss": 2.123298406600952,
+ "step": 1433
+ },
+ {
+ "epoch": 19.9198606271777,
+ "grad_norm": 0.05381599813699722,
+ "learning_rate": 0.00041158899886079925,
+ "loss": 2.120389938354492,
+ "step": 1434
+ },
+ {
+ "epoch": 19.933797909407666,
+ "grad_norm": 0.05545654520392418,
+ "learning_rate": 0.00041134082585574534,
+ "loss": 2.1180779933929443,
+ "step": 1435
+ },
+ {
+ "epoch": 19.94773519163763,
+ "grad_norm": 0.056983016431331635,
+ "learning_rate": 0.00041109256556244497,
+ "loss": 2.118905544281006,
+ "step": 1436
+ },
+ {
+ "epoch": 19.961672473867594,
+ "grad_norm": 0.0575285367667675,
+ "learning_rate": 0.00041084421818091685,
+ "loss": 2.1049699783325195,
+ "step": 1437
+ },
+ {
+ "epoch": 19.975609756097562,
+ "grad_norm": 0.057964932173490524,
+ "learning_rate": 0.0004105957839112501,
+ "loss": 2.1140224933624268,
+ "step": 1438
+ },
+ {
+ "epoch": 19.989547038327526,
+ "grad_norm": 0.05869961529970169,
+ "learning_rate": 0.0004103472629536036,
+ "loss": 2.1089744567871094,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.04450551047921181,
+ "learning_rate": 0.0004100986555082063,
+ "loss": 1.579450249671936,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 0.6265780925750732,
+ "eval_runtime": 34.9259,
+ "eval_samples_per_second": 69.92,
+ "eval_steps_per_second": 0.573,
+ "step": 1440
+ },
+ {
+ "epoch": 20.013937282229964,
+ "grad_norm": 0.05954804643988609,
+ "learning_rate": 0.0004098499617753567,
+ "loss": 2.062889575958252,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027874564459932,
+ "grad_norm": 0.07035746425390244,
+ "learning_rate": 0.00040960118195542273,
+ "loss": 2.0443758964538574,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041811846689896,
+ "grad_norm": 0.0653388574719429,
+ "learning_rate": 0.00040935231624884204,
+ "loss": 2.0611963272094727,
+ "step": 1443
+ },
+ {
+ "epoch": 20.05574912891986,
+ "grad_norm": 0.06305127590894699,
+ "learning_rate": 0.0004091033648561211,
+ "loss": 2.0648036003112793,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069686411149824,
+ "grad_norm": 0.05987029895186424,
+ "learning_rate": 0.00040885432797783543,
+ "loss": 2.059682607650757,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083623693379792,
+ "grad_norm": 0.06469618529081345,
+ "learning_rate": 0.0004086052058146297,
+ "loss": 2.0656521320343018,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097560975609756,
+ "grad_norm": 0.05834262818098068,
+ "learning_rate": 0.00040835599856721725,
+ "loss": 2.0583415031433105,
+ "step": 1447
+ },
+ {
+ "epoch": 20.11149825783972,
+ "grad_norm": 0.06026774272322655,
+ "learning_rate": 0.00040810670643637954,
+ "loss": 2.0644960403442383,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125435540069688,
+ "grad_norm": 0.06032145023345947,
+ "learning_rate": 0.000407857329622967,
+ "loss": 2.050269842147827,
+ "step": 1449
+ },
+ {
+ "epoch": 20.139372822299652,
+ "grad_norm": 0.05611831694841385,
+ "learning_rate": 0.00040760786832789786,
+ "loss": 2.0559628009796143,
+ "step": 1450
+ },
+ {
+ "epoch": 20.153310104529616,
+ "grad_norm": 0.06046713516116142,
+ "learning_rate": 0.0004073583227521588,
+ "loss": 2.06439471244812,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16724738675958,
+ "grad_norm": 0.06147446483373642,
+ "learning_rate": 0.0004071086930968039,
+ "loss": 2.0606837272644043,
+ "step": 1452
+ },
+ {
+ "epoch": 20.181184668989548,
+ "grad_norm": 0.05967561900615692,
+ "learning_rate": 0.00040685897956295545,
+ "loss": 2.0494980812072754,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195121951219512,
+ "grad_norm": 0.05903508514165878,
+ "learning_rate": 0.0004066091823518031,
+ "loss": 2.059744358062744,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209059233449477,
+ "grad_norm": 0.060008060187101364,
+ "learning_rate": 0.00040635930166460385,
+ "loss": 2.0736231803894043,
+ "step": 1455
+ },
+ {
+ "epoch": 20.222996515679444,
+ "grad_norm": 0.057375747710466385,
+ "learning_rate": 0.00040610933770268226,
+ "loss": 2.062077045440674,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23693379790941,
+ "grad_norm": 0.05929991975426674,
+ "learning_rate": 0.00040585929066742964,
+ "loss": 2.059680938720703,
+ "step": 1457
+ },
+ {
+ "epoch": 20.250871080139373,
+ "grad_norm": 0.06615032255649567,
+ "learning_rate": 0.00040560916076030435,
+ "loss": 2.080033302307129,
+ "step": 1458
+ },
+ {
+ "epoch": 20.264808362369337,
+ "grad_norm": 0.06465113162994385,
+ "learning_rate": 0.00040535894818283154,
+ "loss": 2.0724852085113525,
+ "step": 1459
+ },
+ {
+ "epoch": 20.278745644599304,
+ "grad_norm": 0.0641520619392395,
+ "learning_rate": 0.0004051086531366031,
+ "loss": 2.0535552501678467,
+ "step": 1460
+ },
+ {
+ "epoch": 20.29268292682927,
+ "grad_norm": 0.060508403927087784,
+ "learning_rate": 0.000404858275823277,
+ "loss": 2.0627613067626953,
+ "step": 1461
+ },
+ {
+ "epoch": 20.306620209059233,
+ "grad_norm": 0.06028459966182709,
+ "learning_rate": 0.000404607816444578,
+ "loss": 2.062082290649414,
+ "step": 1462
+ },
+ {
+ "epoch": 20.320557491289197,
+ "grad_norm": 0.06797714531421661,
+ "learning_rate": 0.00040435727520229644,
+ "loss": 2.068223476409912,
+ "step": 1463
+ },
+ {
+ "epoch": 20.334494773519165,
+ "grad_norm": 0.07491812855005264,
+ "learning_rate": 0.0004041066522982891,
+ "loss": 2.0639474391937256,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34843205574913,
+ "grad_norm": 0.06413327902555466,
+ "learning_rate": 0.000403855947934478,
+ "loss": 2.0727763175964355,
+ "step": 1465
+ },
+ {
+ "epoch": 20.362369337979093,
+ "grad_norm": 0.05947510898113251,
+ "learning_rate": 0.00040360516231285155,
+ "loss": 2.0872607231140137,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37630662020906,
+ "grad_norm": 0.0680336281657219,
+ "learning_rate": 0.00040335429563546286,
+ "loss": 2.07262921333313,
+ "step": 1467
+ },
+ {
+ "epoch": 20.390243902439025,
+ "grad_norm": 0.06363389641046524,
+ "learning_rate": 0.0004031033481044308,
+ "loss": 2.071188449859619,
+ "step": 1468
+ },
+ {
+ "epoch": 20.40418118466899,
+ "grad_norm": 0.057794757187366486,
+ "learning_rate": 0.00040285231992193924,
+ "loss": 2.0776638984680176,
+ "step": 1469
+ },
+ {
+ "epoch": 20.418118466898953,
+ "grad_norm": 0.06159241497516632,
+ "learning_rate": 0.0004026012112902372,
+ "loss": 2.076610565185547,
+ "step": 1470
+ },
+ {
+ "epoch": 20.43205574912892,
+ "grad_norm": 0.05898696929216385,
+ "learning_rate": 0.0004023500224116381,
+ "loss": 2.0713918209075928,
+ "step": 1471
+ },
+ {
+ "epoch": 20.445993031358885,
+ "grad_norm": 0.059070803225040436,
+ "learning_rate": 0.00040209875348852037,
+ "loss": 2.073078155517578,
+ "step": 1472
+ },
+ {
+ "epoch": 20.45993031358885,
+ "grad_norm": 0.06064842641353607,
+ "learning_rate": 0.00040184740472332705,
+ "loss": 2.070858955383301,
+ "step": 1473
+ },
+ {
+ "epoch": 20.473867595818817,
+ "grad_norm": 0.060642652213573456,
+ "learning_rate": 0.000401595976318565,
+ "loss": 2.0703179836273193,
+ "step": 1474
+ },
+ {
+ "epoch": 20.48780487804878,
+ "grad_norm": 0.06281708180904388,
+ "learning_rate": 0.00040134446847680584,
+ "loss": 2.0891528129577637,
+ "step": 1475
+ },
+ {
+ "epoch": 20.501742160278745,
+ "grad_norm": 0.06964185833930969,
+ "learning_rate": 0.0004010928814006846,
+ "loss": 2.0769782066345215,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51567944250871,
+ "grad_norm": 0.0709647610783577,
+ "learning_rate": 0.0004008412152929007,
+ "loss": 2.087449550628662,
+ "step": 1477
+ },
+ {
+ "epoch": 20.529616724738677,
+ "grad_norm": 0.0604700967669487,
+ "learning_rate": 0.0004005894703562168,
+ "loss": 2.0697526931762695,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54355400696864,
+ "grad_norm": 0.066826231777668,
+ "learning_rate": 0.0004003376467934593,
+ "loss": 2.0674479007720947,
+ "step": 1479
+ },
+ {
+ "epoch": 20.557491289198605,
+ "grad_norm": 0.06124534085392952,
+ "learning_rate": 0.0004000857448075178,
+ "loss": 2.084949016571045,
+ "step": 1480
+ },
+ {
+ "epoch": 20.571428571428573,
+ "grad_norm": 0.0605972483754158,
+ "learning_rate": 0.0003998337646013455,
+ "loss": 2.0836410522460938,
+ "step": 1481
+ },
+ {
+ "epoch": 20.585365853658537,
+ "grad_norm": 0.05937602370977402,
+ "learning_rate": 0.00039958170637795806,
+ "loss": 2.085038185119629,
+ "step": 1482
+ },
+ {
+ "epoch": 20.5993031358885,
+ "grad_norm": 0.06045088917016983,
+ "learning_rate": 0.0003993295703404341,
+ "loss": 2.0811872482299805,
+ "step": 1483
+ },
+ {
+ "epoch": 20.613240418118465,
+ "grad_norm": 0.06080574169754982,
+ "learning_rate": 0.00039907735669191544,
+ "loss": 2.072998523712158,
+ "step": 1484
+ },
+ {
+ "epoch": 20.627177700348433,
+ "grad_norm": 0.06071743369102478,
+ "learning_rate": 0.00039882506563560573,
+ "loss": 2.092665672302246,
+ "step": 1485
+ },
+ {
+ "epoch": 20.641114982578397,
+ "grad_norm": 0.060432225465774536,
+ "learning_rate": 0.0003985726973747715,
+ "loss": 2.080765962600708,
+ "step": 1486
+ },
+ {
+ "epoch": 20.65505226480836,
+ "grad_norm": 0.05753706395626068,
+ "learning_rate": 0.00039832025211274113,
+ "loss": 2.0854883193969727,
+ "step": 1487
+ },
+ {
+ "epoch": 20.66898954703833,
+ "grad_norm": 0.05913816764950752,
+ "learning_rate": 0.00039806773005290544,
+ "loss": 2.0852391719818115,
+ "step": 1488
+ },
+ {
+ "epoch": 20.682926829268293,
+ "grad_norm": 0.057243719696998596,
+ "learning_rate": 0.0003978151313987168,
+ "loss": 2.069157600402832,
+ "step": 1489
+ },
+ {
+ "epoch": 20.696864111498257,
+ "grad_norm": 0.058420926332473755,
+ "learning_rate": 0.00039756245635368933,
+ "loss": 2.084345579147339,
+ "step": 1490
+ },
+ {
+ "epoch": 20.71080139372822,
+ "grad_norm": 0.057442132383584976,
+ "learning_rate": 0.00039730970512139876,
+ "loss": 2.091980218887329,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72473867595819,
+ "grad_norm": 0.05517714098095894,
+ "learning_rate": 0.0003970568779054822,
+ "loss": 2.078554153442383,
+ "step": 1492
+ },
+ {
+ "epoch": 20.738675958188153,
+ "grad_norm": 0.055716823786497116,
+ "learning_rate": 0.000396803974909638,
+ "loss": 2.094151735305786,
+ "step": 1493
+ },
+ {
+ "epoch": 20.752613240418118,
+ "grad_norm": 0.056730274111032486,
+ "learning_rate": 0.0003965509963376255,
+ "loss": 2.068563461303711,
+ "step": 1494
+ },
+ {
+ "epoch": 20.766550522648085,
+ "grad_norm": 0.05755753442645073,
+ "learning_rate": 0.000396297942393265,
+ "loss": 2.088921070098877,
+ "step": 1495
+ },
+ {
+ "epoch": 20.78048780487805,
+ "grad_norm": 0.05533437803387642,
+ "learning_rate": 0.0003960448132804375,
+ "loss": 2.0941689014434814,
+ "step": 1496
+ },
+ {
+ "epoch": 20.794425087108014,
+ "grad_norm": 0.06088414788246155,
+ "learning_rate": 0.0003957916092030845,
+ "loss": 2.0830764770507812,
+ "step": 1497
+ },
+ {
+ "epoch": 20.808362369337978,
+ "grad_norm": 0.05863271281123161,
+ "learning_rate": 0.00039553833036520803,
+ "loss": 2.090672016143799,
+ "step": 1498
+ },
+ {
+ "epoch": 20.822299651567945,
+ "grad_norm": 0.05960002914071083,
+ "learning_rate": 0.0003952849769708702,
+ "loss": 2.0864553451538086,
+ "step": 1499
+ },
+ {
+ "epoch": 20.83623693379791,
+ "grad_norm": 0.05506768077611923,
+ "learning_rate": 0.0003950315492241932,
+ "loss": 2.094161033630371,
+ "step": 1500
+ },
+ {
+ "epoch": 20.850174216027874,
+ "grad_norm": 0.05862478166818619,
+ "learning_rate": 0.0003947780473293593,
+ "loss": 2.115245819091797,
+ "step": 1501
+ },
+ {
+ "epoch": 20.86411149825784,
+ "grad_norm": 0.05872654542326927,
+ "learning_rate": 0.00039452447149061054,
+ "loss": 2.0812911987304688,
+ "step": 1502
+ },
+ {
+ "epoch": 20.878048780487806,
+ "grad_norm": 0.05998777225613594,
+ "learning_rate": 0.0003942708219122481,
+ "loss": 2.095242977142334,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89198606271777,
+ "grad_norm": 0.056095417588949203,
+ "learning_rate": 0.000394017098798633,
+ "loss": 2.092863082885742,
+ "step": 1504
+ },
+ {
+ "epoch": 20.905923344947734,
+ "grad_norm": 0.05556971952319145,
+ "learning_rate": 0.0003937633023541854,
+ "loss": 2.097186803817749,
+ "step": 1505
+ },
+ {
+ "epoch": 20.9198606271777,
+ "grad_norm": 0.055835824459791183,
+ "learning_rate": 0.0003935094327833845,
+ "loss": 2.074395179748535,
+ "step": 1506
+ },
+ {
+ "epoch": 20.933797909407666,
+ "grad_norm": 0.05587809532880783,
+ "learning_rate": 0.0003932554902907683,
+ "loss": 2.079871416091919,
+ "step": 1507
+ },
+ {
+ "epoch": 20.94773519163763,
+ "grad_norm": 0.05581265687942505,
+ "learning_rate": 0.0003930014750809338,
+ "loss": 2.097808837890625,
+ "step": 1508
+ },
+ {
+ "epoch": 20.961672473867594,
+ "grad_norm": 0.056034673005342484,
+ "learning_rate": 0.0003927473873585365,
+ "loss": 2.1134562492370605,
+ "step": 1509
+ },
+ {
+ "epoch": 20.975609756097562,
+ "grad_norm": 0.05605486407876015,
+ "learning_rate": 0.0003924932273282903,
+ "loss": 2.085361957550049,
+ "step": 1510
+ },
+ {
+ "epoch": 20.989547038327526,
+ "grad_norm": 0.056133050471544266,
+ "learning_rate": 0.00039223899519496723,
+ "loss": 2.0866618156433105,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.045700959861278534,
+ "learning_rate": 0.00039198469116339757,
+ "loss": 1.5582417249679565,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 0.6279418468475342,
+ "eval_runtime": 36.1632,
+ "eval_samples_per_second": 67.527,
+ "eval_steps_per_second": 0.553,
+ "step": 1512
+ },
+ {
+ "epoch": 21.013937282229964,
+ "grad_norm": 0.05471052974462509,
+ "learning_rate": 0.0003917303154384694,
+ "loss": 2.033940315246582,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027874564459932,
+ "grad_norm": 0.06705708801746368,
+ "learning_rate": 0.00039147586822512885,
+ "loss": 2.0360937118530273,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041811846689896,
+ "grad_norm": 0.06307924538850784,
+ "learning_rate": 0.0003912213497283793,
+ "loss": 2.0500328540802,
+ "step": 1515
+ },
+ {
+ "epoch": 21.05574912891986,
+ "grad_norm": 0.06228886917233467,
+ "learning_rate": 0.0003909667601532819,
+ "loss": 2.0308260917663574,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069686411149824,
+ "grad_norm": 0.0606699101626873,
+ "learning_rate": 0.00039071209970495445,
+ "loss": 2.0328145027160645,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083623693379792,
+ "grad_norm": 0.060405075550079346,
+ "learning_rate": 0.00039045736858857273,
+ "loss": 2.0279717445373535,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097560975609756,
+ "grad_norm": 0.0611112080514431,
+ "learning_rate": 0.0003902025670093687,
+ "loss": 2.0422918796539307,
+ "step": 1519
+ },
+ {
+ "epoch": 21.11149825783972,
+ "grad_norm": 0.05837974697351456,
+ "learning_rate": 0.00038994769517263156,
+ "loss": 2.048844337463379,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125435540069688,
+ "grad_norm": 0.06053513288497925,
+ "learning_rate": 0.0003896927532837069,
+ "loss": 2.0358529090881348,
+ "step": 1521
+ },
+ {
+ "epoch": 21.139372822299652,
+ "grad_norm": 0.06003211438655853,
+ "learning_rate": 0.0003894377415479967,
+ "loss": 2.042120933532715,
+ "step": 1522
+ },
+ {
+ "epoch": 21.153310104529616,
+ "grad_norm": 0.060802191495895386,
+ "learning_rate": 0.00038918266017095936,
+ "loss": 2.046935558319092,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16724738675958,
+ "grad_norm": 0.06367085129022598,
+ "learning_rate": 0.0003889275093581096,
+ "loss": 2.049290180206299,
+ "step": 1524
+ },
+ {
+ "epoch": 21.181184668989548,
+ "grad_norm": 0.05851449444890022,
+ "learning_rate": 0.00038867228931501737,
+ "loss": 2.052337169647217,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195121951219512,
+ "grad_norm": 0.05873304605484009,
+ "learning_rate": 0.0003884170002473091,
+ "loss": 2.0443310737609863,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209059233449477,
+ "grad_norm": 0.062345489859580994,
+ "learning_rate": 0.0003881616423606666,
+ "loss": 2.0309629440307617,
+ "step": 1527
+ },
+ {
+ "epoch": 21.222996515679444,
+ "grad_norm": 0.06157859042286873,
+ "learning_rate": 0.00038790621586082697,
+ "loss": 2.040987491607666,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23693379790941,
+ "grad_norm": 0.06326454132795334,
+ "learning_rate": 0.0003876507209535829,
+ "loss": 2.0339348316192627,
+ "step": 1529
+ },
+ {
+ "epoch": 21.250871080139373,
+ "grad_norm": 0.05967864394187927,
+ "learning_rate": 0.00038739515784478186,
+ "loss": 2.0340347290039062,
+ "step": 1530
+ },
+ {
+ "epoch": 21.264808362369337,
+ "grad_norm": 0.06237480416893959,
+ "learning_rate": 0.00038713952674032654,
+ "loss": 2.0541834831237793,
+ "step": 1531
+ },
+ {
+ "epoch": 21.278745644599304,
+ "grad_norm": 0.06269778311252594,
+ "learning_rate": 0.0003868838278461743,
+ "loss": 2.0332889556884766,
+ "step": 1532
+ },
+ {
+ "epoch": 21.29268292682927,
+ "grad_norm": 0.058931149542331696,
+ "learning_rate": 0.0003866280613683371,
+ "loss": 2.046989917755127,
+ "step": 1533
+ },
+ {
+ "epoch": 21.306620209059233,
+ "grad_norm": 0.05884654074907303,
+ "learning_rate": 0.00038637222751288126,
+ "loss": 2.0413711071014404,
+ "step": 1534
+ },
+ {
+ "epoch": 21.320557491289197,
+ "grad_norm": 0.06431130319833755,
+ "learning_rate": 0.0003861163264859277,
+ "loss": 2.043229103088379,
+ "step": 1535
+ },
+ {
+ "epoch": 21.334494773519165,
+ "grad_norm": 0.061834171414375305,
+ "learning_rate": 0.0003858603584936511,
+ "loss": 2.0472874641418457,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34843205574913,
+ "grad_norm": 0.058680370450019836,
+ "learning_rate": 0.0003856043237422803,
+ "loss": 2.058084487915039,
+ "step": 1537
+ },
+ {
+ "epoch": 21.362369337979093,
+ "grad_norm": 0.0592305064201355,
+ "learning_rate": 0.0003853482224380978,
+ "loss": 2.0515503883361816,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37630662020906,
+ "grad_norm": 0.05994146317243576,
+ "learning_rate": 0.00038509205478744,
+ "loss": 2.0377187728881836,
+ "step": 1539
+ },
+ {
+ "epoch": 21.390243902439025,
+ "grad_norm": 0.06389214843511581,
+ "learning_rate": 0.0003848358209966963,
+ "loss": 2.0533361434936523,
+ "step": 1540
+ },
+ {
+ "epoch": 21.40418118466899,
+ "grad_norm": 0.06090407446026802,
+ "learning_rate": 0.0003845795212723099,
+ "loss": 2.0553441047668457,
+ "step": 1541
+ },
+ {
+ "epoch": 21.418118466898953,
+ "grad_norm": 0.06273195147514343,
+ "learning_rate": 0.00038432315582077664,
+ "loss": 2.0590620040893555,
+ "step": 1542
+ },
+ {
+ "epoch": 21.43205574912892,
+ "grad_norm": 0.06525216996669769,
+ "learning_rate": 0.0003840667248486456,
+ "loss": 2.0517024993896484,
+ "step": 1543
+ },
+ {
+ "epoch": 21.445993031358885,
+ "grad_norm": 0.06123936176300049,
+ "learning_rate": 0.0003838102285625186,
+ "loss": 2.054276943206787,
+ "step": 1544
+ },
+ {
+ "epoch": 21.45993031358885,
+ "grad_norm": 0.06384961307048798,
+ "learning_rate": 0.00038355366716905006,
+ "loss": 2.058122396469116,
+ "step": 1545
+ },
+ {
+ "epoch": 21.473867595818817,
+ "grad_norm": 0.06391091644763947,
+ "learning_rate": 0.0003832970408749467,
+ "loss": 2.061744213104248,
+ "step": 1546
+ },
+ {
+ "epoch": 21.48780487804878,
+ "grad_norm": 0.06393741071224213,
+ "learning_rate": 0.00038304034988696816,
+ "loss": 2.0698375701904297,
+ "step": 1547
+ },
+ {
+ "epoch": 21.501742160278745,
+ "grad_norm": 0.06098850816488266,
+ "learning_rate": 0.00038278359441192516,
+ "loss": 2.0527985095977783,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51567944250871,
+ "grad_norm": 0.059852417558431625,
+ "learning_rate": 0.00038252677465668136,
+ "loss": 2.0557432174682617,
+ "step": 1549
+ },
+ {
+ "epoch": 21.529616724738677,
+ "grad_norm": 0.063257597386837,
+ "learning_rate": 0.00038226989082815156,
+ "loss": 2.0541868209838867,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54355400696864,
+ "grad_norm": 0.06203039735555649,
+ "learning_rate": 0.00038201294313330245,
+ "loss": 2.0554230213165283,
+ "step": 1551
+ },
+ {
+ "epoch": 21.557491289198605,
+ "grad_norm": 0.06832246482372284,
+ "learning_rate": 0.00038175593177915227,
+ "loss": 2.0623044967651367,
+ "step": 1552
+ },
+ {
+ "epoch": 21.571428571428573,
+ "grad_norm": 0.0681714415550232,
+ "learning_rate": 0.0003814988569727704,
+ "loss": 2.0611777305603027,
+ "step": 1553
+ },
+ {
+ "epoch": 21.585365853658537,
+ "grad_norm": 0.06245206668972969,
+ "learning_rate": 0.0003812417189212773,
+ "loss": 2.0653200149536133,
+ "step": 1554
+ },
+ {
+ "epoch": 21.5993031358885,
+ "grad_norm": 0.06456883996725082,
+ "learning_rate": 0.00038098451783184447,
+ "loss": 2.0564777851104736,
+ "step": 1555
+ },
+ {
+ "epoch": 21.613240418118465,
+ "grad_norm": 0.06580620259046555,
+ "learning_rate": 0.00038072725391169416,
+ "loss": 2.0669004917144775,
+ "step": 1556
+ },
+ {
+ "epoch": 21.627177700348433,
+ "grad_norm": 0.0615418441593647,
+ "learning_rate": 0.0003804699273680994,
+ "loss": 2.062901258468628,
+ "step": 1557
+ },
+ {
+ "epoch": 21.641114982578397,
+ "grad_norm": 0.0597493015229702,
+ "learning_rate": 0.0003802125384083834,
+ "loss": 2.051572799682617,
+ "step": 1558
+ },
+ {
+ "epoch": 21.65505226480836,
+ "grad_norm": 0.05919422581791878,
+ "learning_rate": 0.0003799550872399197,
+ "loss": 2.0755348205566406,
+ "step": 1559
+ },
+ {
+ "epoch": 21.66898954703833,
+ "grad_norm": 0.0618102103471756,
+ "learning_rate": 0.0003796975740701323,
+ "loss": 2.0373353958129883,
+ "step": 1560
+ },
+ {
+ "epoch": 21.682926829268293,
+ "grad_norm": 0.060938529670238495,
+ "learning_rate": 0.0003794399991064948,
+ "loss": 2.046900749206543,
+ "step": 1561
+ },
+ {
+ "epoch": 21.696864111498257,
+ "grad_norm": 0.059858448803424835,
+ "learning_rate": 0.00037918236255653074,
+ "loss": 2.0637502670288086,
+ "step": 1562
+ },
+ {
+ "epoch": 21.71080139372822,
+ "grad_norm": 0.061770256608724594,
+ "learning_rate": 0.00037892466462781306,
+ "loss": 2.0593981742858887,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72473867595819,
+ "grad_norm": 0.06062103807926178,
+ "learning_rate": 0.00037866690552796446,
+ "loss": 2.0643060207366943,
+ "step": 1564
+ },
+ {
+ "epoch": 21.738675958188153,
+ "grad_norm": 0.05910053849220276,
+ "learning_rate": 0.00037840908546465696,
+ "loss": 2.06599497795105,
+ "step": 1565
+ },
+ {
+ "epoch": 21.752613240418118,
+ "grad_norm": 0.057800937443971634,
+ "learning_rate": 0.0003781512046456111,
+ "loss": 2.057941198348999,
+ "step": 1566
+ },
+ {
+ "epoch": 21.766550522648085,
+ "grad_norm": 0.05939284712076187,
+ "learning_rate": 0.0003778932632785972,
+ "loss": 2.057325601577759,
+ "step": 1567
+ },
+ {
+ "epoch": 21.78048780487805,
+ "grad_norm": 0.06094905734062195,
+ "learning_rate": 0.00037763526157143376,
+ "loss": 2.058422803878784,
+ "step": 1568
+ },
+ {
+ "epoch": 21.794425087108014,
+ "grad_norm": 0.060869570821523666,
+ "learning_rate": 0.00037737719973198825,
+ "loss": 2.0537140369415283,
+ "step": 1569
+ },
+ {
+ "epoch": 21.808362369337978,
+ "grad_norm": 0.05886754021048546,
+ "learning_rate": 0.0003771190779681762,
+ "loss": 2.077362537384033,
+ "step": 1570
+ },
+ {
+ "epoch": 21.822299651567945,
+ "grad_norm": 0.061772339046001434,
+ "learning_rate": 0.0003768608964879619,
+ "loss": 2.067615032196045,
+ "step": 1571
+ },
+ {
+ "epoch": 21.83623693379791,
+ "grad_norm": 0.06018555909395218,
+ "learning_rate": 0.00037660265549935724,
+ "loss": 2.0696468353271484,
+ "step": 1572
+ },
+ {
+ "epoch": 21.850174216027874,
+ "grad_norm": 0.058483004570007324,
+ "learning_rate": 0.00037634435521042257,
+ "loss": 2.085695505142212,
+ "step": 1573
+ },
+ {
+ "epoch": 21.86411149825784,
+ "grad_norm": 0.06118083372712135,
+ "learning_rate": 0.0003760859958292656,
+ "loss": 2.0818231105804443,
+ "step": 1574
+ },
+ {
+ "epoch": 21.878048780487806,
+ "grad_norm": 0.057427361607551575,
+ "learning_rate": 0.000375827577564042,
+ "loss": 2.0525319576263428,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89198606271777,
+ "grad_norm": 0.06218957528471947,
+ "learning_rate": 0.0003755691006229545,
+ "loss": 2.0691938400268555,
+ "step": 1576
+ },
+ {
+ "epoch": 21.905923344947734,
+ "grad_norm": 0.05727244168519974,
+ "learning_rate": 0.0003753105652142534,
+ "loss": 2.0820717811584473,
+ "step": 1577
+ },
+ {
+ "epoch": 21.9198606271777,
+ "grad_norm": 0.05988473817706108,
+ "learning_rate": 0.000375051971546236,
+ "loss": 2.08701753616333,
+ "step": 1578
+ },
+ {
+ "epoch": 21.933797909407666,
+ "grad_norm": 0.05977068468928337,
+ "learning_rate": 0.0003747933198272465,
+ "loss": 2.0772976875305176,
+ "step": 1579
+ },
+ {
+ "epoch": 21.94773519163763,
+ "grad_norm": 0.05766184255480766,
+ "learning_rate": 0.00037453461026567604,
+ "loss": 2.0779075622558594,
+ "step": 1580
+ },
+ {
+ "epoch": 21.961672473867594,
+ "grad_norm": 0.06194579601287842,
+ "learning_rate": 0.00037427584306996196,
+ "loss": 2.066725254058838,
+ "step": 1581
+ },
+ {
+ "epoch": 21.975609756097562,
+ "grad_norm": 0.06117486208677292,
+ "learning_rate": 0.0003740170184485888,
+ "loss": 2.063469409942627,
+ "step": 1582
+ },
+ {
+ "epoch": 21.989547038327526,
+ "grad_norm": 0.05828284099698067,
+ "learning_rate": 0.0003737581366100864,
+ "loss": 2.0690245628356934,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.04717395827174187,
+ "learning_rate": 0.0003734991977630315,
+ "loss": 1.5481253862380981,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 0.6287422180175781,
+ "eval_runtime": 36.8966,
+ "eval_samples_per_second": 66.185,
+ "eval_steps_per_second": 0.542,
+ "step": 1584
+ },
+ {
+ "epoch": 22.013937282229964,
+ "grad_norm": 0.05935833230614662,
+ "learning_rate": 0.0003732402021160463,
+ "loss": 2.0213916301727295,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027874564459932,
+ "grad_norm": 0.0647081509232521,
+ "learning_rate": 0.00037298114987779885,
+ "loss": 2.021193504333496,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041811846689896,
+ "grad_norm": 0.060830891132354736,
+ "learning_rate": 0.000372722041257003,
+ "loss": 2.014934539794922,
+ "step": 1587
+ },
+ {
+ "epoch": 22.05574912891986,
+ "grad_norm": 0.0575600229203701,
+ "learning_rate": 0.00037246287646241783,
+ "loss": 2.0201141834259033,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069686411149824,
+ "grad_norm": 0.05999648571014404,
+ "learning_rate": 0.0003722036557028478,
+ "loss": 2.01477313041687,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083623693379792,
+ "grad_norm": 0.06243257597088814,
+ "learning_rate": 0.0003719443791871422,
+ "loss": 2.0069234371185303,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097560975609756,
+ "grad_norm": 0.061873242259025574,
+ "learning_rate": 0.0003716850471241958,
+ "loss": 2.0218544006347656,
+ "step": 1591
+ },
+ {
+ "epoch": 22.11149825783972,
+ "grad_norm": 0.0562879703938961,
+ "learning_rate": 0.0003714256597229474,
+ "loss": 2.027651786804199,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125435540069688,
+ "grad_norm": 0.06129061430692673,
+ "learning_rate": 0.0003711662171923809,
+ "loss": 2.02847957611084,
+ "step": 1593
+ },
+ {
+ "epoch": 22.139372822299652,
+ "grad_norm": 0.06575217843055725,
+ "learning_rate": 0.0003709067197415244,
+ "loss": 2.0157370567321777,
+ "step": 1594
+ },
+ {
+ "epoch": 22.153310104529616,
+ "grad_norm": 0.06006300821900368,
+ "learning_rate": 0.00037064716757945036,
+ "loss": 2.0212819576263428,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16724738675958,
+ "grad_norm": 0.05905022844672203,
+ "learning_rate": 0.0003703875609152753,
+ "loss": 2.019151449203491,
+ "step": 1596
+ },
+ {
+ "epoch": 22.181184668989548,
+ "grad_norm": 0.05942187085747719,
+ "learning_rate": 0.0003701278999581595,
+ "loss": 2.0100960731506348,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195121951219512,
+ "grad_norm": 0.06255407631397247,
+ "learning_rate": 0.0003698681849173073,
+ "loss": 2.0253348350524902,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209059233449477,
+ "grad_norm": 0.06482044607400894,
+ "learning_rate": 0.0003696084160019662,
+ "loss": 2.0148420333862305,
+ "step": 1599
+ },
+ {
+ "epoch": 22.222996515679444,
+ "grad_norm": 0.0601821169257164,
+ "learning_rate": 0.0003693485934214274,
+ "loss": 2.023470640182495,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23693379790941,
+ "grad_norm": 0.06029169633984566,
+ "learning_rate": 0.0003690887173850253,
+ "loss": 2.009469985961914,
+ "step": 1601
+ },
+ {
+ "epoch": 22.250871080139373,
+ "grad_norm": 0.059910114854574203,
+ "learning_rate": 0.0003688287881021374,
+ "loss": 2.035770893096924,
+ "step": 1602
+ },
+ {
+ "epoch": 22.264808362369337,
+ "grad_norm": 0.06215308979153633,
+ "learning_rate": 0.00036856880578218376,
+ "loss": 2.01731538772583,
+ "step": 1603
+ },
+ {
+ "epoch": 22.278745644599304,
+ "grad_norm": 0.06145225092768669,
+ "learning_rate": 0.00036830877063462786,
+ "loss": 2.026510715484619,
+ "step": 1604
+ },
+ {
+ "epoch": 22.29268292682927,
+ "grad_norm": 0.05880272388458252,
+ "learning_rate": 0.0003680486828689749,
+ "loss": 2.0214052200317383,
+ "step": 1605
+ },
+ {
+ "epoch": 22.306620209059233,
+ "grad_norm": 0.06154364347457886,
+ "learning_rate": 0.00036778854269477315,
+ "loss": 2.038039207458496,
+ "step": 1606
+ },
+ {
+ "epoch": 22.320557491289197,
+ "grad_norm": 0.06352122128009796,
+ "learning_rate": 0.0003675283503216127,
+ "loss": 2.0086398124694824,
+ "step": 1607
+ },
+ {
+ "epoch": 22.334494773519165,
+ "grad_norm": 0.06252473592758179,
+ "learning_rate": 0.000367268105959126,
+ "loss": 2.0344018936157227,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34843205574913,
+ "grad_norm": 0.05990692600607872,
+ "learning_rate": 0.00036700780981698705,
+ "loss": 2.030116558074951,
+ "step": 1609
+ },
+ {
+ "epoch": 22.362369337979093,
+ "grad_norm": 0.06241406500339508,
+ "learning_rate": 0.0003667474621049119,
+ "loss": 2.02555513381958,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37630662020906,
+ "grad_norm": 0.06356526166200638,
+ "learning_rate": 0.00036648706303265795,
+ "loss": 2.034946918487549,
+ "step": 1611
+ },
+ {
+ "epoch": 22.390243902439025,
+ "grad_norm": 0.05866849794983864,
+ "learning_rate": 0.000366226612810024,
+ "loss": 2.0180652141571045,
+ "step": 1612
+ },
+ {
+ "epoch": 22.40418118466899,
+ "grad_norm": 0.06021985039114952,
+ "learning_rate": 0.00036596611164685025,
+ "loss": 2.028763771057129,
+ "step": 1613
+ },
+ {
+ "epoch": 22.418118466898953,
+ "grad_norm": 0.0626717135310173,
+ "learning_rate": 0.0003657055597530175,
+ "loss": 2.021925926208496,
+ "step": 1614
+ },
+ {
+ "epoch": 22.43205574912892,
+ "grad_norm": 0.05952958017587662,
+ "learning_rate": 0.00036544495733844797,
+ "loss": 2.029926300048828,
+ "step": 1615
+ },
+ {
+ "epoch": 22.445993031358885,
+ "grad_norm": 0.06139490753412247,
+ "learning_rate": 0.000365184304613104,
+ "loss": 2.0357437133789062,
+ "step": 1616
+ },
+ {
+ "epoch": 22.45993031358885,
+ "grad_norm": 0.06750302016735077,
+ "learning_rate": 0.0003649236017869892,
+ "loss": 2.033015251159668,
+ "step": 1617
+ },
+ {
+ "epoch": 22.473867595818817,
+ "grad_norm": 0.06402213126420975,
+ "learning_rate": 0.00036466284907014685,
+ "loss": 2.0288286209106445,
+ "step": 1618
+ },
+ {
+ "epoch": 22.48780487804878,
+ "grad_norm": 0.06656284630298615,
+ "learning_rate": 0.0003644020466726608,
+ "loss": 2.035670042037964,
+ "step": 1619
+ },
+ {
+ "epoch": 22.501742160278745,
+ "grad_norm": 0.06058082729578018,
+ "learning_rate": 0.00036414119480465473,
+ "loss": 2.0248050689697266,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51567944250871,
+ "grad_norm": 0.0639055147767067,
+ "learning_rate": 0.0003638802936762925,
+ "loss": 2.0347347259521484,
+ "step": 1621
+ },
+ {
+ "epoch": 22.529616724738677,
+ "grad_norm": 0.06509086489677429,
+ "learning_rate": 0.0003636193434977771,
+ "loss": 2.0287723541259766,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54355400696864,
+ "grad_norm": 0.06115980073809624,
+ "learning_rate": 0.0003633583444793516,
+ "loss": 2.0428926944732666,
+ "step": 1623
+ },
+ {
+ "epoch": 22.557491289198605,
+ "grad_norm": 0.06231401860713959,
+ "learning_rate": 0.00036309729683129814,
+ "loss": 2.0409903526306152,
+ "step": 1624
+ },
+ {
+ "epoch": 22.571428571428573,
+ "grad_norm": 0.06252925843000412,
+ "learning_rate": 0.00036283620076393814,
+ "loss": 2.0263853073120117,
+ "step": 1625
+ },
+ {
+ "epoch": 22.585365853658537,
+ "grad_norm": 0.05840536579489708,
+ "learning_rate": 0.000362575056487632,
+ "loss": 2.0359339714050293,
+ "step": 1626
+ },
+ {
+ "epoch": 22.5993031358885,
+ "grad_norm": 0.06289584934711456,
+ "learning_rate": 0.00036231386421277877,
+ "loss": 2.041419267654419,
+ "step": 1627
+ },
+ {
+ "epoch": 22.613240418118465,
+ "grad_norm": 0.059172775596380234,
+ "learning_rate": 0.0003620526241498167,
+ "loss": 2.0285377502441406,
+ "step": 1628
+ },
+ {
+ "epoch": 22.627177700348433,
+ "grad_norm": 0.05929497256875038,
+ "learning_rate": 0.0003617913365092218,
+ "loss": 2.054593086242676,
+ "step": 1629
+ },
+ {
+ "epoch": 22.641114982578397,
+ "grad_norm": 0.05966512858867645,
+ "learning_rate": 0.0003615300015015091,
+ "loss": 2.0354065895080566,
+ "step": 1630
+ },
+ {
+ "epoch": 22.65505226480836,
+ "grad_norm": 0.060928668826818466,
+ "learning_rate": 0.0003612686193372312,
+ "loss": 2.0524067878723145,
+ "step": 1631
+ },
+ {
+ "epoch": 22.66898954703833,
+ "grad_norm": 0.06704723089933395,
+ "learning_rate": 0.00036100719022697924,
+ "loss": 2.0277299880981445,
+ "step": 1632
+ },
+ {
+ "epoch": 22.682926829268293,
+ "grad_norm": 0.0654405876994133,
+ "learning_rate": 0.0003607457143813819,
+ "loss": 2.0558719635009766,
+ "step": 1633
+ },
+ {
+ "epoch": 22.696864111498257,
+ "grad_norm": 0.06097044795751572,
+ "learning_rate": 0.00036048419201110553,
+ "loss": 2.064798593521118,
+ "step": 1634
+ },
+ {
+ "epoch": 22.71080139372822,
+ "grad_norm": 0.06433983147144318,
+ "learning_rate": 0.00036022262332685383,
+ "loss": 2.0563478469848633,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72473867595819,
+ "grad_norm": 0.0608518086373806,
+ "learning_rate": 0.0003599610085393681,
+ "loss": 2.034682273864746,
+ "step": 1636
+ },
+ {
+ "epoch": 22.738675958188153,
+ "grad_norm": 0.06357148289680481,
+ "learning_rate": 0.0003596993478594267,
+ "loss": 2.030651569366455,
+ "step": 1637
+ },
+ {
+ "epoch": 22.752613240418118,
+ "grad_norm": 0.05953045189380646,
+ "learning_rate": 0.0003594376414978447,
+ "loss": 2.046708345413208,
+ "step": 1638
+ },
+ {
+ "epoch": 22.766550522648085,
+ "grad_norm": 0.06323279440402985,
+ "learning_rate": 0.0003591758896654745,
+ "loss": 2.040714740753174,
+ "step": 1639
+ },
+ {
+ "epoch": 22.78048780487805,
+ "grad_norm": 0.05863328278064728,
+ "learning_rate": 0.0003589140925732045,
+ "loss": 2.0645852088928223,
+ "step": 1640
+ },
+ {
+ "epoch": 22.794425087108014,
+ "grad_norm": 0.058750979602336884,
+ "learning_rate": 0.0003586522504319602,
+ "loss": 2.0421950817108154,
+ "step": 1641
+ },
+ {
+ "epoch": 22.808362369337978,
+ "grad_norm": 0.06100532412528992,
+ "learning_rate": 0.0003583903634527029,
+ "loss": 2.037891387939453,
+ "step": 1642
+ },
+ {
+ "epoch": 22.822299651567945,
+ "grad_norm": 0.058944981545209885,
+ "learning_rate": 0.0003581284318464302,
+ "loss": 2.029283046722412,
+ "step": 1643
+ },
+ {
+ "epoch": 22.83623693379791,
+ "grad_norm": 0.060633257031440735,
+ "learning_rate": 0.00035786645582417564,
+ "loss": 2.058162212371826,
+ "step": 1644
+ },
+ {
+ "epoch": 22.850174216027874,
+ "grad_norm": 0.059548065066337585,
+ "learning_rate": 0.00035760443559700863,
+ "loss": 2.0538077354431152,
+ "step": 1645
+ },
+ {
+ "epoch": 22.86411149825784,
+ "grad_norm": 0.06102653965353966,
+ "learning_rate": 0.00035734237137603417,
+ "loss": 2.052565097808838,
+ "step": 1646
+ },
+ {
+ "epoch": 22.878048780487806,
+ "grad_norm": 0.05913171172142029,
+ "learning_rate": 0.0003570802633723927,
+ "loss": 2.0596346855163574,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89198606271777,
+ "grad_norm": 0.061698317527770996,
+ "learning_rate": 0.0003568181117972597,
+ "loss": 2.0622029304504395,
+ "step": 1648
+ },
+ {
+ "epoch": 22.905923344947734,
+ "grad_norm": 0.059588681906461716,
+ "learning_rate": 0.00035655591686184626,
+ "loss": 2.04315447807312,
+ "step": 1649
+ },
+ {
+ "epoch": 22.9198606271777,
+ "grad_norm": 0.06275669485330582,
+ "learning_rate": 0.0003562936787773979,
+ "loss": 2.0449585914611816,
+ "step": 1650
+ },
+ {
+ "epoch": 22.933797909407666,
+ "grad_norm": 0.06165294349193573,
+ "learning_rate": 0.000356031397755195,
+ "loss": 2.0373802185058594,
+ "step": 1651
+ },
+ {
+ "epoch": 22.94773519163763,
+ "grad_norm": 0.0604374073445797,
+ "learning_rate": 0.00035576907400655303,
+ "loss": 2.061960220336914,
+ "step": 1652
+ },
+ {
+ "epoch": 22.961672473867594,
+ "grad_norm": 0.05968572944402695,
+ "learning_rate": 0.00035550670774282106,
+ "loss": 2.051542282104492,
+ "step": 1653
+ },
+ {
+ "epoch": 22.975609756097562,
+ "grad_norm": 0.06063802167773247,
+ "learning_rate": 0.0003552442991753831,
+ "loss": 2.045436143875122,
+ "step": 1654
+ },
+ {
+ "epoch": 22.989547038327526,
+ "grad_norm": 0.060019318014383316,
+ "learning_rate": 0.00035498184851565697,
+ "loss": 2.0558581352233887,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.049940288066864014,
+ "learning_rate": 0.0003547193559750944,
+ "loss": 1.5244159698486328,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 0.6296067833900452,
+ "eval_runtime": 35.7678,
+ "eval_samples_per_second": 68.274,
+ "eval_steps_per_second": 0.559,
+ "step": 1656
+ },
+ {
+ "epoch": 23.013937282229964,
+ "grad_norm": 0.058643098920583725,
+ "learning_rate": 0.00035445682176518087,
+ "loss": 1.996954321861267,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027874564459932,
+ "grad_norm": 0.07890982180833817,
+ "learning_rate": 0.00035419424609743546,
+ "loss": 2.003385543823242,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041811846689896,
+ "grad_norm": 0.06572650372982025,
+ "learning_rate": 0.00035393162918341065,
+ "loss": 1.9858441352844238,
+ "step": 1659
+ },
+ {
+ "epoch": 23.05574912891986,
+ "grad_norm": 0.06063111498951912,
+ "learning_rate": 0.00035366897123469213,
+ "loss": 1.9996259212493896,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069686411149824,
+ "grad_norm": 0.06614259630441666,
+ "learning_rate": 0.0003534062724628986,
+ "loss": 2.013913869857788,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083623693379792,
+ "grad_norm": 0.06714142113924026,
+ "learning_rate": 0.00035314353307968195,
+ "loss": 1.9934425354003906,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097560975609756,
+ "grad_norm": 0.06256651133298874,
+ "learning_rate": 0.00035288075329672634,
+ "loss": 2.0107738971710205,
+ "step": 1663
+ },
+ {
+ "epoch": 23.11149825783972,
+ "grad_norm": 0.06392858177423477,
+ "learning_rate": 0.0003526179333257487,
+ "loss": 1.9977614879608154,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125435540069688,
+ "grad_norm": 0.06550068408250809,
+ "learning_rate": 0.0003523550733784984,
+ "loss": 1.9837822914123535,
+ "step": 1665
+ },
+ {
+ "epoch": 23.139372822299652,
+ "grad_norm": 0.06895361095666885,
+ "learning_rate": 0.00035209217366675706,
+ "loss": 1.9999781847000122,
+ "step": 1666
+ },
+ {
+ "epoch": 23.153310104529616,
+ "grad_norm": 0.06363921612501144,
+ "learning_rate": 0.000351829234402338,
+ "loss": 1.985809087753296,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16724738675958,
+ "grad_norm": 0.06028164550662041,
+ "learning_rate": 0.0003515662557970867,
+ "loss": 2.0019848346710205,
+ "step": 1668
+ },
+ {
+ "epoch": 23.181184668989548,
+ "grad_norm": 0.06500236690044403,
+ "learning_rate": 0.0003513032380628804,
+ "loss": 2.0089876651763916,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195121951219512,
+ "grad_norm": 0.05989453196525574,
+ "learning_rate": 0.0003510401814116277,
+ "loss": 1.9814873933792114,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209059233449477,
+ "grad_norm": 0.060608964413404465,
+ "learning_rate": 0.0003507770860552684,
+ "loss": 2.009627103805542,
+ "step": 1671
+ },
+ {
+ "epoch": 23.222996515679444,
+ "grad_norm": 0.06088849529623985,
+ "learning_rate": 0.00035051395220577397,
+ "loss": 1.9926284551620483,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23693379790941,
+ "grad_norm": 0.06073446571826935,
+ "learning_rate": 0.0003502507800751464,
+ "loss": 2.0231637954711914,
+ "step": 1673
+ },
+ {
+ "epoch": 23.250871080139373,
+ "grad_norm": 0.06006423011422157,
+ "learning_rate": 0.0003499875698754187,
+ "loss": 1.9915974140167236,
+ "step": 1674
+ },
+ {
+ "epoch": 23.264808362369337,
+ "grad_norm": 0.059542685747146606,
+ "learning_rate": 0.00034972432181865467,
+ "loss": 1.9983782768249512,
+ "step": 1675
+ },
+ {
+ "epoch": 23.278745644599304,
+ "grad_norm": 0.06081021949648857,
+ "learning_rate": 0.00034946103611694854,
+ "loss": 1.9988645315170288,
+ "step": 1676
+ },
+ {
+ "epoch": 23.29268292682927,
+ "grad_norm": 0.05827084556221962,
+ "learning_rate": 0.00034919771298242477,
+ "loss": 2.002373456954956,
+ "step": 1677
+ },
+ {
+ "epoch": 23.306620209059233,
+ "grad_norm": 0.059867121279239655,
+ "learning_rate": 0.00034893435262723814,
+ "loss": 2.0014448165893555,
+ "step": 1678
+ },
+ {
+ "epoch": 23.320557491289197,
+ "grad_norm": 0.059579163789749146,
+ "learning_rate": 0.00034867095526357325,
+ "loss": 2.018733501434326,
+ "step": 1679
+ },
+ {
+ "epoch": 23.334494773519165,
+ "grad_norm": 0.06353137642145157,
+ "learning_rate": 0.0003484075211036446,
+ "loss": 2.003769874572754,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34843205574913,
+ "grad_norm": 0.06118098273873329,
+ "learning_rate": 0.0003481440503596964,
+ "loss": 2.009033203125,
+ "step": 1681
+ },
+ {
+ "epoch": 23.362369337979093,
+ "grad_norm": 0.060457196086645126,
+ "learning_rate": 0.0003478805432440021,
+ "loss": 2.005089282989502,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37630662020906,
+ "grad_norm": 0.06178257614374161,
+ "learning_rate": 0.0003476169999688648,
+ "loss": 1.9994860887527466,
+ "step": 1683
+ },
+ {
+ "epoch": 23.390243902439025,
+ "grad_norm": 0.06617811322212219,
+ "learning_rate": 0.00034735342074661654,
+ "loss": 2.0085301399230957,
+ "step": 1684
+ },
+ {
+ "epoch": 23.40418118466899,
+ "grad_norm": 0.061164431273937225,
+ "learning_rate": 0.0003470898057896183,
+ "loss": 2.0015316009521484,
+ "step": 1685
+ },
+ {
+ "epoch": 23.418118466898953,
+ "grad_norm": 0.06309735029935837,
+ "learning_rate": 0.0003468261553102599,
+ "loss": 2.020759344100952,
+ "step": 1686
+ },
+ {
+ "epoch": 23.43205574912892,
+ "grad_norm": 0.0626831203699112,
+ "learning_rate": 0.00034656246952095984,
+ "loss": 2.009215831756592,
+ "step": 1687
+ },
+ {
+ "epoch": 23.445993031358885,
+ "grad_norm": 0.05888507142663002,
+ "learning_rate": 0.0003462987486341648,
+ "loss": 2.013838529586792,
+ "step": 1688
+ },
+ {
+ "epoch": 23.45993031358885,
+ "grad_norm": 0.0606909804046154,
+ "learning_rate": 0.00034603499286235006,
+ "loss": 2.005582571029663,
+ "step": 1689
+ },
+ {
+ "epoch": 23.473867595818817,
+ "grad_norm": 0.058872029185295105,
+ "learning_rate": 0.0003457712024180188,
+ "loss": 2.0199661254882812,
+ "step": 1690
+ },
+ {
+ "epoch": 23.48780487804878,
+ "grad_norm": 0.06124086305499077,
+ "learning_rate": 0.0003455073775137025,
+ "loss": 2.0159080028533936,
+ "step": 1691
+ },
+ {
+ "epoch": 23.501742160278745,
+ "grad_norm": 0.059814538806676865,
+ "learning_rate": 0.0003452435183619598,
+ "loss": 2.011732578277588,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51567944250871,
+ "grad_norm": 0.060436636209487915,
+ "learning_rate": 0.0003449796251753773,
+ "loss": 2.018317699432373,
+ "step": 1693
+ },
+ {
+ "epoch": 23.529616724738677,
+ "grad_norm": 0.06265381723642349,
+ "learning_rate": 0.00034471569816656915,
+ "loss": 2.010077714920044,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54355400696864,
+ "grad_norm": 0.06320856511592865,
+ "learning_rate": 0.00034445173754817646,
+ "loss": 2.0341739654541016,
+ "step": 1695
+ },
+ {
+ "epoch": 23.557491289198605,
+ "grad_norm": 0.061819177120923996,
+ "learning_rate": 0.00034418774353286747,
+ "loss": 2.032660961151123,
+ "step": 1696
+ },
+ {
+ "epoch": 23.571428571428573,
+ "grad_norm": 0.06506329029798508,
+ "learning_rate": 0.0003439237163333375,
+ "loss": 2.0272016525268555,
+ "step": 1697
+ },
+ {
+ "epoch": 23.585365853658537,
+ "grad_norm": 0.06600788235664368,
+ "learning_rate": 0.0003436596561623084,
+ "loss": 2.0060458183288574,
+ "step": 1698
+ },
+ {
+ "epoch": 23.5993031358885,
+ "grad_norm": 0.06110696122050285,
+ "learning_rate": 0.0003433955632325288,
+ "loss": 2.0102944374084473,
+ "step": 1699
+ },
+ {
+ "epoch": 23.613240418118465,
+ "grad_norm": 0.066371850669384,
+ "learning_rate": 0.00034313143775677353,
+ "loss": 2.0352327823638916,
+ "step": 1700
+ },
+ {
+ "epoch": 23.627177700348433,
+ "grad_norm": 0.06527800112962723,
+ "learning_rate": 0.00034286727994784367,
+ "loss": 2.0035440921783447,
+ "step": 1701
+ },
+ {
+ "epoch": 23.641114982578397,
+ "grad_norm": 0.06285402178764343,
+ "learning_rate": 0.0003426030900185665,
+ "loss": 2.033757448196411,
+ "step": 1702
+ },
+ {
+ "epoch": 23.65505226480836,
+ "grad_norm": 0.061433784663677216,
+ "learning_rate": 0.0003423388681817949,
+ "loss": 2.0161848068237305,
+ "step": 1703
+ },
+ {
+ "epoch": 23.66898954703833,
+ "grad_norm": 0.05987842008471489,
+ "learning_rate": 0.00034207461465040793,
+ "loss": 2.0261831283569336,
+ "step": 1704
+ },
+ {
+ "epoch": 23.682926829268293,
+ "grad_norm": 0.059953805059194565,
+ "learning_rate": 0.0003418103296373096,
+ "loss": 2.0215904712677,
+ "step": 1705
+ },
+ {
+ "epoch": 23.696864111498257,
+ "grad_norm": 0.06330372393131256,
+ "learning_rate": 0.00034154601335542964,
+ "loss": 2.025210380554199,
+ "step": 1706
+ },
+ {
+ "epoch": 23.71080139372822,
+ "grad_norm": 0.059463981539011,
+ "learning_rate": 0.00034128166601772304,
+ "loss": 2.02297306060791,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72473867595819,
+ "grad_norm": 0.05973811820149422,
+ "learning_rate": 0.0003410172878371695,
+ "loss": 2.011875629425049,
+ "step": 1708
+ },
+ {
+ "epoch": 23.738675958188153,
+ "grad_norm": 0.0624937042593956,
+ "learning_rate": 0.00034075287902677394,
+ "loss": 2.0156028270721436,
+ "step": 1709
+ },
+ {
+ "epoch": 23.752613240418118,
+ "grad_norm": 0.062002237886190414,
+ "learning_rate": 0.0003404884397995655,
+ "loss": 2.0000498294830322,
+ "step": 1710
+ },
+ {
+ "epoch": 23.766550522648085,
+ "grad_norm": 0.060854360461235046,
+ "learning_rate": 0.00034022397036859837,
+ "loss": 2.0322160720825195,
+ "step": 1711
+ },
+ {
+ "epoch": 23.78048780487805,
+ "grad_norm": 0.06054264307022095,
+ "learning_rate": 0.0003399594709469506,
+ "loss": 2.032982349395752,
+ "step": 1712
+ },
+ {
+ "epoch": 23.794425087108014,
+ "grad_norm": 0.0627431645989418,
+ "learning_rate": 0.00033969494174772465,
+ "loss": 2.020582675933838,
+ "step": 1713
+ },
+ {
+ "epoch": 23.808362369337978,
+ "grad_norm": 0.06483827531337738,
+ "learning_rate": 0.0003394303829840469,
+ "loss": 2.0398523807525635,
+ "step": 1714
+ },
+ {
+ "epoch": 23.822299651567945,
+ "grad_norm": 0.05984083190560341,
+ "learning_rate": 0.00033916579486906764,
+ "loss": 2.039645195007324,
+ "step": 1715
+ },
+ {
+ "epoch": 23.83623693379791,
+ "grad_norm": 0.06621941179037094,
+ "learning_rate": 0.0003389011776159607,
+ "loss": 2.021867275238037,
+ "step": 1716
+ },
+ {
+ "epoch": 23.850174216027874,
+ "grad_norm": 0.0623198039829731,
+ "learning_rate": 0.0003386365314379233,
+ "loss": 2.0347697734832764,
+ "step": 1717
+ },
+ {
+ "epoch": 23.86411149825784,
+ "grad_norm": 0.06399847567081451,
+ "learning_rate": 0.0003383718565481763,
+ "loss": 2.030777931213379,
+ "step": 1718
+ },
+ {
+ "epoch": 23.878048780487806,
+ "grad_norm": 0.06241384893655777,
+ "learning_rate": 0.0003381071531599633,
+ "loss": 2.011267900466919,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89198606271777,
+ "grad_norm": 0.05945252999663353,
+ "learning_rate": 0.00033784242148655115,
+ "loss": 2.0384621620178223,
+ "step": 1720
+ },
+ {
+ "epoch": 23.905923344947734,
+ "grad_norm": 0.0614384189248085,
+ "learning_rate": 0.00033757766174122934,
+ "loss": 2.030486583709717,
+ "step": 1721
+ },
+ {
+ "epoch": 23.9198606271777,
+ "grad_norm": 0.06007350608706474,
+ "learning_rate": 0.00033731287413731005,
+ "loss": 2.022603988647461,
+ "step": 1722
+ },
+ {
+ "epoch": 23.933797909407666,
+ "grad_norm": 0.059712085872888565,
+ "learning_rate": 0.0003370480588881278,
+ "loss": 2.0331850051879883,
+ "step": 1723
+ },
+ {
+ "epoch": 23.94773519163763,
+ "grad_norm": 0.0601886548101902,
+ "learning_rate": 0.0003367832162070395,
+ "loss": 2.0483477115631104,
+ "step": 1724
+ },
+ {
+ "epoch": 23.961672473867594,
+ "grad_norm": 0.06256099790334702,
+ "learning_rate": 0.000336518346307424,
+ "loss": 2.033539056777954,
+ "step": 1725
+ },
+ {
+ "epoch": 23.975609756097562,
+ "grad_norm": 0.057741131633520126,
+ "learning_rate": 0.0003362534494026824,
+ "loss": 2.024747133255005,
+ "step": 1726
+ },
+ {
+ "epoch": 23.989547038327526,
+ "grad_norm": 0.060783255845308304,
+ "learning_rate": 0.0003359885257062372,
+ "loss": 2.0209577083587646,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.04932123422622681,
+ "learning_rate": 0.0003357235754315328,
+ "loss": 1.515411376953125,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 0.6315755248069763,
+ "eval_runtime": 36.5997,
+ "eval_samples_per_second": 66.722,
+ "eval_steps_per_second": 0.546,
+ "step": 1728
+ },
+ {
+ "epoch": 24.013937282229964,
+ "grad_norm": 0.056868553161621094,
+ "learning_rate": 0.0003354585987920345,
+ "loss": 1.9798481464385986,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027874564459932,
+ "grad_norm": 0.06501385569572449,
+ "learning_rate": 0.0003351935960012296,
+ "loss": 1.9906654357910156,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041811846689896,
+ "grad_norm": 0.05838958919048309,
+ "learning_rate": 0.0003349285672726259,
+ "loss": 1.9860174655914307,
+ "step": 1731
+ },
+ {
+ "epoch": 24.05574912891986,
+ "grad_norm": 0.058145660907030106,
+ "learning_rate": 0.0003346635128197522,
+ "loss": 1.9651578664779663,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069686411149824,
+ "grad_norm": 0.060848575085401535,
+ "learning_rate": 0.0003343984328561581,
+ "loss": 1.9864778518676758,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083623693379792,
+ "grad_norm": 0.06372028589248657,
+ "learning_rate": 0.00033413332759541376,
+ "loss": 1.9852806329727173,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097560975609756,
+ "grad_norm": 0.061025235801935196,
+ "learning_rate": 0.0003338681972511098,
+ "loss": 1.9978421926498413,
+ "step": 1735
+ },
+ {
+ "epoch": 24.11149825783972,
+ "grad_norm": 0.060201771557331085,
+ "learning_rate": 0.0003336030420368568,
+ "loss": 1.9757139682769775,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125435540069688,
+ "grad_norm": 0.05975824594497681,
+ "learning_rate": 0.0003333378621662857,
+ "loss": 1.9860875606536865,
+ "step": 1737
+ },
+ {
+ "epoch": 24.139372822299652,
+ "grad_norm": 0.06081843376159668,
+ "learning_rate": 0.00033307265785304684,
+ "loss": 1.968639850616455,
+ "step": 1738
+ },
+ {
+ "epoch": 24.153310104529616,
+ "grad_norm": 0.060572270303964615,
+ "learning_rate": 0.00033280742931081076,
+ "loss": 1.9802055358886719,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16724738675958,
+ "grad_norm": 0.05910629406571388,
+ "learning_rate": 0.00033254217675326737,
+ "loss": 1.9850757122039795,
+ "step": 1740
+ },
+ {
+ "epoch": 24.181184668989548,
+ "grad_norm": 0.05974426120519638,
+ "learning_rate": 0.0003322769003941257,
+ "loss": 1.976986289024353,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195121951219512,
+ "grad_norm": 0.06145593523979187,
+ "learning_rate": 0.00033201160044711423,
+ "loss": 2.000087261199951,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209059233449477,
+ "grad_norm": 0.06071079522371292,
+ "learning_rate": 0.0003317462771259802,
+ "loss": 2.0015039443969727,
+ "step": 1743
+ },
+ {
+ "epoch": 24.222996515679444,
+ "grad_norm": 0.06183251366019249,
+ "learning_rate": 0.00033148093064449006,
+ "loss": 1.9810009002685547,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23693379790941,
+ "grad_norm": 0.05952904373407364,
+ "learning_rate": 0.0003312155612164284,
+ "loss": 1.9755181074142456,
+ "step": 1745
+ },
+ {
+ "epoch": 24.250871080139373,
+ "grad_norm": 0.06136337295174599,
+ "learning_rate": 0.00033095016905559883,
+ "loss": 1.9860830307006836,
+ "step": 1746
+ },
+ {
+ "epoch": 24.264808362369337,
+ "grad_norm": 0.05884359031915665,
+ "learning_rate": 0.0003306847543758227,
+ "loss": 1.9831082820892334,
+ "step": 1747
+ },
+ {
+ "epoch": 24.278745644599304,
+ "grad_norm": 0.06433911621570587,
+ "learning_rate": 0.0003304193173909401,
+ "loss": 1.9774551391601562,
+ "step": 1748
+ },
+ {
+ "epoch": 24.29268292682927,
+ "grad_norm": 0.06369569152593613,
+ "learning_rate": 0.00033015385831480873,
+ "loss": 1.969364881515503,
+ "step": 1749
+ },
+ {
+ "epoch": 24.306620209059233,
+ "grad_norm": 0.061907488852739334,
+ "learning_rate": 0.0003298883773613043,
+ "loss": 1.9955558776855469,
+ "step": 1750
+ },
+ {
+ "epoch": 24.320557491289197,
+ "grad_norm": 0.061493128538131714,
+ "learning_rate": 0.0003296228747443197,
+ "loss": 1.983457326889038,
+ "step": 1751
+ },
+ {
+ "epoch": 24.334494773519165,
+ "grad_norm": 0.064146488904953,
+ "learning_rate": 0.0003293573506777659,
+ "loss": 1.987483263015747,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34843205574913,
+ "grad_norm": 0.06266602128744125,
+ "learning_rate": 0.00032909180537557076,
+ "loss": 1.9783263206481934,
+ "step": 1753
+ },
+ {
+ "epoch": 24.362369337979093,
+ "grad_norm": 0.06142675131559372,
+ "learning_rate": 0.00032882623905167917,
+ "loss": 1.984071135520935,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37630662020906,
+ "grad_norm": 0.06145746260881424,
+ "learning_rate": 0.00032856065192005335,
+ "loss": 1.9964550733566284,
+ "step": 1755
+ },
+ {
+ "epoch": 24.390243902439025,
+ "grad_norm": 0.058990370482206345,
+ "learning_rate": 0.00032829504419467194,
+ "loss": 1.9879612922668457,
+ "step": 1756
+ },
+ {
+ "epoch": 24.40418118466899,
+ "grad_norm": 0.06122121214866638,
+ "learning_rate": 0.0003280294160895303,
+ "loss": 1.9812474250793457,
+ "step": 1757
+ },
+ {
+ "epoch": 24.418118466898953,
+ "grad_norm": 0.059800442308187485,
+ "learning_rate": 0.0003277637678186402,
+ "loss": 1.970646619796753,
+ "step": 1758
+ },
+ {
+ "epoch": 24.43205574912892,
+ "grad_norm": 0.0604378841817379,
+ "learning_rate": 0.00032749809959602973,
+ "loss": 2.003701686859131,
+ "step": 1759
+ },
+ {
+ "epoch": 24.445993031358885,
+ "grad_norm": 0.05989979952573776,
+ "learning_rate": 0.0003272324116357428,
+ "loss": 1.9803345203399658,
+ "step": 1760
+ },
+ {
+ "epoch": 24.45993031358885,
+ "grad_norm": 0.06310706585645676,
+ "learning_rate": 0.0003269667041518395,
+ "loss": 1.989131212234497,
+ "step": 1761
+ },
+ {
+ "epoch": 24.473867595818817,
+ "grad_norm": 0.06142299249768257,
+ "learning_rate": 0.0003267009773583956,
+ "loss": 1.9946138858795166,
+ "step": 1762
+ },
+ {
+ "epoch": 24.48780487804878,
+ "grad_norm": 0.062469176948070526,
+ "learning_rate": 0.00032643523146950234,
+ "loss": 2.001830577850342,
+ "step": 1763
+ },
+ {
+ "epoch": 24.501742160278745,
+ "grad_norm": 0.06173425912857056,
+ "learning_rate": 0.0003261694666992664,
+ "loss": 2.002091646194458,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51567944250871,
+ "grad_norm": 0.06293168663978577,
+ "learning_rate": 0.0003259036832618096,
+ "loss": 1.9954603910446167,
+ "step": 1765
+ },
+ {
+ "epoch": 24.529616724738677,
+ "grad_norm": 0.060014087706804276,
+ "learning_rate": 0.0003256378813712688,
+ "loss": 1.9944541454315186,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54355400696864,
+ "grad_norm": 0.06237431988120079,
+ "learning_rate": 0.000325372061241796,
+ "loss": 2.0007567405700684,
+ "step": 1767
+ },
+ {
+ "epoch": 24.557491289198605,
+ "grad_norm": 0.06152753531932831,
+ "learning_rate": 0.00032510622308755746,
+ "loss": 2.0018327236175537,
+ "step": 1768
+ },
+ {
+ "epoch": 24.571428571428573,
+ "grad_norm": 0.05944858118891716,
+ "learning_rate": 0.00032484036712273424,
+ "loss": 1.992608666419983,
+ "step": 1769
+ },
+ {
+ "epoch": 24.585365853658537,
+ "grad_norm": 0.062232885509729385,
+ "learning_rate": 0.0003245744935615219,
+ "loss": 2.000495433807373,
+ "step": 1770
+ },
+ {
+ "epoch": 24.5993031358885,
+ "grad_norm": 0.06566010415554047,
+ "learning_rate": 0.0003243086026181296,
+ "loss": 1.9956483840942383,
+ "step": 1771
+ },
+ {
+ "epoch": 24.613240418118465,
+ "grad_norm": 0.06141132116317749,
+ "learning_rate": 0.00032404269450678116,
+ "loss": 1.9919085502624512,
+ "step": 1772
+ },
+ {
+ "epoch": 24.627177700348433,
+ "grad_norm": 0.06355211138725281,
+ "learning_rate": 0.00032377676944171375,
+ "loss": 2.0013604164123535,
+ "step": 1773
+ },
+ {
+ "epoch": 24.641114982578397,
+ "grad_norm": 0.0633525624871254,
+ "learning_rate": 0.00032351082763717857,
+ "loss": 2.003030300140381,
+ "step": 1774
+ },
+ {
+ "epoch": 24.65505226480836,
+ "grad_norm": 0.06334961205720901,
+ "learning_rate": 0.0003232448693074399,
+ "loss": 2.0035159587860107,
+ "step": 1775
+ },
+ {
+ "epoch": 24.66898954703833,
+ "grad_norm": 0.059516388922929764,
+ "learning_rate": 0.00032297889466677575,
+ "loss": 1.9953091144561768,
+ "step": 1776
+ },
+ {
+ "epoch": 24.682926829268293,
+ "grad_norm": 0.061832234263420105,
+ "learning_rate": 0.000322712903929477,
+ "loss": 2.0096263885498047,
+ "step": 1777
+ },
+ {
+ "epoch": 24.696864111498257,
+ "grad_norm": 0.06823352724313736,
+ "learning_rate": 0.0003224468973098477,
+ "loss": 2.0014004707336426,
+ "step": 1778
+ },
+ {
+ "epoch": 24.71080139372822,
+ "grad_norm": 0.06829699873924255,
+ "learning_rate": 0.0003221808750222044,
+ "loss": 1.990633249282837,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72473867595819,
+ "grad_norm": 0.060128696262836456,
+ "learning_rate": 0.0003219148372808766,
+ "loss": 1.9862974882125854,
+ "step": 1780
+ },
+ {
+ "epoch": 24.738675958188153,
+ "grad_norm": 0.06241869926452637,
+ "learning_rate": 0.00032164878430020606,
+ "loss": 2.0125184059143066,
+ "step": 1781
+ },
+ {
+ "epoch": 24.752613240418118,
+ "grad_norm": 0.06538056582212448,
+ "learning_rate": 0.00032138271629454684,
+ "loss": 2.0079469680786133,
+ "step": 1782
+ },
+ {
+ "epoch": 24.766550522648085,
+ "grad_norm": 0.06478657573461533,
+ "learning_rate": 0.00032111663347826505,
+ "loss": 2.0092570781707764,
+ "step": 1783
+ },
+ {
+ "epoch": 24.78048780487805,
+ "grad_norm": 0.06446428596973419,
+ "learning_rate": 0.00032085053606573896,
+ "loss": 1.9926164150238037,
+ "step": 1784
+ },
+ {
+ "epoch": 24.794425087108014,
+ "grad_norm": 0.06340030580759048,
+ "learning_rate": 0.0003205844242713584,
+ "loss": 2.0052552223205566,
+ "step": 1785
+ },
+ {
+ "epoch": 24.808362369337978,
+ "grad_norm": 0.06671392917633057,
+ "learning_rate": 0.0003203182983095248,
+ "loss": 2.005016326904297,
+ "step": 1786
+ },
+ {
+ "epoch": 24.822299651567945,
+ "grad_norm": 0.06256412714719772,
+ "learning_rate": 0.0003200521583946511,
+ "loss": 1.998322606086731,
+ "step": 1787
+ },
+ {
+ "epoch": 24.83623693379791,
+ "grad_norm": 0.06253744661808014,
+ "learning_rate": 0.0003197860047411613,
+ "loss": 2.004774332046509,
+ "step": 1788
+ },
+ {
+ "epoch": 24.850174216027874,
+ "grad_norm": 0.06475425511598587,
+ "learning_rate": 0.00031951983756349066,
+ "loss": 2.010788917541504,
+ "step": 1789
+ },
+ {
+ "epoch": 24.86411149825784,
+ "grad_norm": 0.06285806000232697,
+ "learning_rate": 0.00031925365707608536,
+ "loss": 2.0189685821533203,
+ "step": 1790
+ },
+ {
+ "epoch": 24.878048780487806,
+ "grad_norm": 0.06435883790254593,
+ "learning_rate": 0.00031898746349340204,
+ "loss": 2.0078349113464355,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89198606271777,
+ "grad_norm": 0.062008004635572433,
+ "learning_rate": 0.0003187212570299082,
+ "loss": 2.005176544189453,
+ "step": 1792
+ },
+ {
+ "epoch": 24.905923344947734,
+ "grad_norm": 0.061844680458307266,
+ "learning_rate": 0.0003184550379000815,
+ "loss": 2.0120368003845215,
+ "step": 1793
+ },
+ {
+ "epoch": 24.9198606271777,
+ "grad_norm": 0.06165637448430061,
+ "learning_rate": 0.00031818880631841005,
+ "loss": 1.988783359527588,
+ "step": 1794
+ },
+ {
+ "epoch": 24.933797909407666,
+ "grad_norm": 0.061599504202604294,
+ "learning_rate": 0.0003179225624993915,
+ "loss": 2.002344846725464,
+ "step": 1795
+ },
+ {
+ "epoch": 24.94773519163763,
+ "grad_norm": 0.06298971176147461,
+ "learning_rate": 0.0003176563066575341,
+ "loss": 2.0156569480895996,
+ "step": 1796
+ },
+ {
+ "epoch": 24.961672473867594,
+ "grad_norm": 0.060080062597990036,
+ "learning_rate": 0.0003173900390073549,
+ "loss": 2.010012149810791,
+ "step": 1797
+ },
+ {
+ "epoch": 24.975609756097562,
+ "grad_norm": 0.06395968794822693,
+ "learning_rate": 0.0003171237597633813,
+ "loss": 2.0122275352478027,
+ "step": 1798
+ },
+ {
+ "epoch": 24.989547038327526,
+ "grad_norm": 0.062498848885297775,
+ "learning_rate": 0.0003168574691401496,
+ "loss": 2.0220727920532227,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.04997362941503525,
+ "learning_rate": 0.0003165911673522053,
+ "loss": 1.5085651874542236,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 0.6326767206192017,
+ "eval_runtime": 35.1333,
+ "eval_samples_per_second": 69.507,
+ "eval_steps_per_second": 0.569,
+ "step": 1800
+ },
+ {
+ "epoch": 25.013937282229964,
+ "grad_norm": 0.06232205778360367,
+ "learning_rate": 0.00031632485461410294,
+ "loss": 1.960073709487915,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027874564459932,
+ "grad_norm": 0.07617080211639404,
+ "learning_rate": 0.00031605853114040583,
+ "loss": 1.9570682048797607,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041811846689896,
+ "grad_norm": 0.06312266737222672,
+ "learning_rate": 0.00031579219714568613,
+ "loss": 1.9653043746948242,
+ "step": 1803
+ },
+ {
+ "epoch": 25.05574912891986,
+ "grad_norm": 0.06101902946829796,
+ "learning_rate": 0.0003155258528445242,
+ "loss": 1.9481754302978516,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069686411149824,
+ "grad_norm": 0.06738974899053574,
+ "learning_rate": 0.0003152594984515089,
+ "loss": 1.9733099937438965,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083623693379792,
+ "grad_norm": 0.06208112835884094,
+ "learning_rate": 0.00031499313418123704,
+ "loss": 1.9604226350784302,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097560975609756,
+ "grad_norm": 0.0632297471165657,
+ "learning_rate": 0.0003147267602483138,
+ "loss": 1.9748514890670776,
+ "step": 1807
+ },
+ {
+ "epoch": 25.11149825783972,
+ "grad_norm": 0.06286419183015823,
+ "learning_rate": 0.00031446037686735153,
+ "loss": 1.9705591201782227,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125435540069688,
+ "grad_norm": 0.061676930636167526,
+ "learning_rate": 0.0003141939842529706,
+ "loss": 1.966292381286621,
+ "step": 1809
+ },
+ {
+ "epoch": 25.139372822299652,
+ "grad_norm": 0.059966422617435455,
+ "learning_rate": 0.0003139275826197987,
+ "loss": 1.960801124572754,
+ "step": 1810
+ },
+ {
+ "epoch": 25.153310104529616,
+ "grad_norm": 0.06130777299404144,
+ "learning_rate": 0.00031366117218247094,
+ "loss": 1.9645764827728271,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16724738675958,
+ "grad_norm": 0.061480022966861725,
+ "learning_rate": 0.00031339475315562916,
+ "loss": 1.9640815258026123,
+ "step": 1812
+ },
+ {
+ "epoch": 25.181184668989548,
+ "grad_norm": 0.05976599082350731,
+ "learning_rate": 0.00031312832575392267,
+ "loss": 1.9709453582763672,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195121951219512,
+ "grad_norm": 0.06432078778743744,
+ "learning_rate": 0.0003128618901920071,
+ "loss": 1.9676944017410278,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209059233449477,
+ "grad_norm": 0.060974858701229095,
+ "learning_rate": 0.0003125954466845446,
+ "loss": 1.9607110023498535,
+ "step": 1815
+ },
+ {
+ "epoch": 25.222996515679444,
+ "grad_norm": 0.06553254276514053,
+ "learning_rate": 0.00031232899544620404,
+ "loss": 1.9504101276397705,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23693379790941,
+ "grad_norm": 0.06467615813016891,
+ "learning_rate": 0.00031206253669166045,
+ "loss": 1.962750792503357,
+ "step": 1817
+ },
+ {
+ "epoch": 25.250871080139373,
+ "grad_norm": 0.061078183352947235,
+ "learning_rate": 0.0003117960706355947,
+ "loss": 1.9658128023147583,
+ "step": 1818
+ },
+ {
+ "epoch": 25.264808362369337,
+ "grad_norm": 0.0656590387225151,
+ "learning_rate": 0.0003115295974926936,
+ "loss": 1.9687200784683228,
+ "step": 1819
+ },
+ {
+ "epoch": 25.278745644599304,
+ "grad_norm": 0.061022087931632996,
+ "learning_rate": 0.00031126311747765005,
+ "loss": 1.9684455394744873,
+ "step": 1820
+ },
+ {
+ "epoch": 25.29268292682927,
+ "grad_norm": 0.0625755786895752,
+ "learning_rate": 0.00031099663080516186,
+ "loss": 1.962731957435608,
+ "step": 1821
+ },
+ {
+ "epoch": 25.306620209059233,
+ "grad_norm": 0.06357678025960922,
+ "learning_rate": 0.0003107301376899327,
+ "loss": 1.9442671537399292,
+ "step": 1822
+ },
+ {
+ "epoch": 25.320557491289197,
+ "grad_norm": 0.062150172889232635,
+ "learning_rate": 0.00031046363834667123,
+ "loss": 1.9566235542297363,
+ "step": 1823
+ },
+ {
+ "epoch": 25.334494773519165,
+ "grad_norm": 0.061118803918361664,
+ "learning_rate": 0.00031019713299009123,
+ "loss": 1.9761946201324463,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34843205574913,
+ "grad_norm": 0.06331022083759308,
+ "learning_rate": 0.000309930621834911,
+ "loss": 1.9509797096252441,
+ "step": 1825
+ },
+ {
+ "epoch": 25.362369337979093,
+ "grad_norm": 0.06341579556465149,
+ "learning_rate": 0.0003096641050958541,
+ "loss": 1.9654616117477417,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37630662020906,
+ "grad_norm": 0.061316221952438354,
+ "learning_rate": 0.00030939758298764795,
+ "loss": 1.9767422676086426,
+ "step": 1827
+ },
+ {
+ "epoch": 25.390243902439025,
+ "grad_norm": 0.06411541253328323,
+ "learning_rate": 0.00030913105572502483,
+ "loss": 1.985473394393921,
+ "step": 1828
+ },
+ {
+ "epoch": 25.40418118466899,
+ "grad_norm": 0.061624426394701004,
+ "learning_rate": 0.00030886452352272095,
+ "loss": 1.9730801582336426,
+ "step": 1829
+ },
+ {
+ "epoch": 25.418118466898953,
+ "grad_norm": 0.06127973645925522,
+ "learning_rate": 0.00030859798659547624,
+ "loss": 1.9568986892700195,
+ "step": 1830
+ },
+ {
+ "epoch": 25.43205574912892,
+ "grad_norm": 0.06366631388664246,
+ "learning_rate": 0.0003083314451580349,
+ "loss": 1.9778714179992676,
+ "step": 1831
+ },
+ {
+ "epoch": 25.445993031358885,
+ "grad_norm": 0.06436672061681747,
+ "learning_rate": 0.0003080648994251445,
+ "loss": 1.9750032424926758,
+ "step": 1832
+ },
+ {
+ "epoch": 25.45993031358885,
+ "grad_norm": 0.06266232579946518,
+ "learning_rate": 0.0003077983496115561,
+ "loss": 1.9691630601882935,
+ "step": 1833
+ },
+ {
+ "epoch": 25.473867595818817,
+ "grad_norm": 0.06091330945491791,
+ "learning_rate": 0.00030753179593202406,
+ "loss": 1.9596004486083984,
+ "step": 1834
+ },
+ {
+ "epoch": 25.48780487804878,
+ "grad_norm": 0.0609268881380558,
+ "learning_rate": 0.0003072652386013059,
+ "loss": 1.9919569492340088,
+ "step": 1835
+ },
+ {
+ "epoch": 25.501742160278745,
+ "grad_norm": 0.06318292021751404,
+ "learning_rate": 0.00030699867783416207,
+ "loss": 1.9675531387329102,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51567944250871,
+ "grad_norm": 0.061429619789123535,
+ "learning_rate": 0.0003067321138453557,
+ "loss": 1.966346263885498,
+ "step": 1837
+ },
+ {
+ "epoch": 25.529616724738677,
+ "grad_norm": 0.06276095658540726,
+ "learning_rate": 0.0003064655468496527,
+ "loss": 1.9983158111572266,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54355400696864,
+ "grad_norm": 0.06198902055621147,
+ "learning_rate": 0.0003061989770618211,
+ "loss": 1.9685490131378174,
+ "step": 1839
+ },
+ {
+ "epoch": 25.557491289198605,
+ "grad_norm": 0.06335171312093735,
+ "learning_rate": 0.00030593240469663154,
+ "loss": 1.9861736297607422,
+ "step": 1840
+ },
+ {
+ "epoch": 25.571428571428573,
+ "grad_norm": 0.06267495453357697,
+ "learning_rate": 0.0003056658299688563,
+ "loss": 1.9693151712417603,
+ "step": 1841
+ },
+ {
+ "epoch": 25.585365853658537,
+ "grad_norm": 0.061308011412620544,
+ "learning_rate": 0.00030539925309327017,
+ "loss": 1.9826204776763916,
+ "step": 1842
+ },
+ {
+ "epoch": 25.5993031358885,
+ "grad_norm": 0.06606099754571915,
+ "learning_rate": 0.0003051326742846491,
+ "loss": 1.985427737236023,
+ "step": 1843
+ },
+ {
+ "epoch": 25.613240418118465,
+ "grad_norm": 0.06353887170553207,
+ "learning_rate": 0.000304866093757771,
+ "loss": 1.963585615158081,
+ "step": 1844
+ },
+ {
+ "epoch": 25.627177700348433,
+ "grad_norm": 0.06360059976577759,
+ "learning_rate": 0.00030459951172741474,
+ "loss": 1.9840047359466553,
+ "step": 1845
+ },
+ {
+ "epoch": 25.641114982578397,
+ "grad_norm": 0.06275399029254913,
+ "learning_rate": 0.0003043329284083609,
+ "loss": 1.9865367412567139,
+ "step": 1846
+ },
+ {
+ "epoch": 25.65505226480836,
+ "grad_norm": 0.061826832592487335,
+ "learning_rate": 0.00030406634401539053,
+ "loss": 1.9746454954147339,
+ "step": 1847
+ },
+ {
+ "epoch": 25.66898954703833,
+ "grad_norm": 0.06373758614063263,
+ "learning_rate": 0.00030379975876328614,
+ "loss": 1.970570683479309,
+ "step": 1848
+ },
+ {
+ "epoch": 25.682926829268293,
+ "grad_norm": 0.06198093667626381,
+ "learning_rate": 0.00030353317286683053,
+ "loss": 1.9856860637664795,
+ "step": 1849
+ },
+ {
+ "epoch": 25.696864111498257,
+ "grad_norm": 0.06512428820133209,
+ "learning_rate": 0.0003032665865408073,
+ "loss": 1.9919607639312744,
+ "step": 1850
+ },
+ {
+ "epoch": 25.71080139372822,
+ "grad_norm": 0.06516636162996292,
+ "learning_rate": 0.000303,
+ "loss": 1.9930028915405273,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72473867595819,
+ "grad_norm": 0.06129363179206848,
+ "learning_rate": 0.0003027334134591926,
+ "loss": 1.9975836277008057,
+ "step": 1852
+ },
+ {
+ "epoch": 25.738675958188153,
+ "grad_norm": 0.06420517712831497,
+ "learning_rate": 0.00030246682713316945,
+ "loss": 1.9728800058364868,
+ "step": 1853
+ },
+ {
+ "epoch": 25.752613240418118,
+ "grad_norm": 0.06342366337776184,
+ "learning_rate": 0.0003022002412367138,
+ "loss": 1.989312767982483,
+ "step": 1854
+ },
+ {
+ "epoch": 25.766550522648085,
+ "grad_norm": 0.061576031148433685,
+ "learning_rate": 0.00030193365598460946,
+ "loss": 1.9859075546264648,
+ "step": 1855
+ },
+ {
+ "epoch": 25.78048780487805,
+ "grad_norm": 0.0607769675552845,
+ "learning_rate": 0.0003016670715916391,
+ "loss": 1.967139482498169,
+ "step": 1856
+ },
+ {
+ "epoch": 25.794425087108014,
+ "grad_norm": 0.06282363831996918,
+ "learning_rate": 0.00030140048827258524,
+ "loss": 1.9849177598953247,
+ "step": 1857
+ },
+ {
+ "epoch": 25.808362369337978,
+ "grad_norm": 0.06485171616077423,
+ "learning_rate": 0.0003011339062422289,
+ "loss": 1.9944510459899902,
+ "step": 1858
+ },
+ {
+ "epoch": 25.822299651567945,
+ "grad_norm": 0.06280137598514557,
+ "learning_rate": 0.00030086732571535076,
+ "loss": 1.9957447052001953,
+ "step": 1859
+ },
+ {
+ "epoch": 25.83623693379791,
+ "grad_norm": 0.06692720204591751,
+ "learning_rate": 0.0003006007469067297,
+ "loss": 1.9829119443893433,
+ "step": 1860
+ },
+ {
+ "epoch": 25.850174216027874,
+ "grad_norm": 0.06662958860397339,
+ "learning_rate": 0.0003003341700311436,
+ "loss": 1.9788072109222412,
+ "step": 1861
+ },
+ {
+ "epoch": 25.86411149825784,
+ "grad_norm": 0.06748583912849426,
+ "learning_rate": 0.0003000675953033685,
+ "loss": 1.9959502220153809,
+ "step": 1862
+ },
+ {
+ "epoch": 25.878048780487806,
+ "grad_norm": 0.06759459525346756,
+ "learning_rate": 0.0002998010229381789,
+ "loss": 1.9947572946548462,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89198606271777,
+ "grad_norm": 0.06492980569601059,
+ "learning_rate": 0.0002995344531503474,
+ "loss": 1.9897825717926025,
+ "step": 1864
+ },
+ {
+ "epoch": 25.905923344947734,
+ "grad_norm": 0.06660535931587219,
+ "learning_rate": 0.0002992678861546442,
+ "loss": 1.9906097650527954,
+ "step": 1865
+ },
+ {
+ "epoch": 25.9198606271777,
+ "grad_norm": 0.06545855104923248,
+ "learning_rate": 0.00029900132216583786,
+ "loss": 1.9963207244873047,
+ "step": 1866
+ },
+ {
+ "epoch": 25.933797909407666,
+ "grad_norm": 0.06479988992214203,
+ "learning_rate": 0.0002987347613986941,
+ "loss": 1.994144082069397,
+ "step": 1867
+ },
+ {
+ "epoch": 25.94773519163763,
+ "grad_norm": 0.06334878504276276,
+ "learning_rate": 0.0002984682040679759,
+ "loss": 1.9909017086029053,
+ "step": 1868
+ },
+ {
+ "epoch": 25.961672473867594,
+ "grad_norm": 0.06454301625490189,
+ "learning_rate": 0.00029820165038844395,
+ "loss": 1.985898494720459,
+ "step": 1869
+ },
+ {
+ "epoch": 25.975609756097562,
+ "grad_norm": 0.06418111175298691,
+ "learning_rate": 0.00029793510057485556,
+ "loss": 1.9789021015167236,
+ "step": 1870
+ },
+ {
+ "epoch": 25.989547038327526,
+ "grad_norm": 0.06766562163829803,
+ "learning_rate": 0.00029766855484196513,
+ "loss": 2.0054125785827637,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.05154159665107727,
+ "learning_rate": 0.0002974020134045238,
+ "loss": 1.4703314304351807,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 0.6342733502388,
+ "eval_runtime": 40.7553,
+ "eval_samples_per_second": 59.919,
+ "eval_steps_per_second": 0.491,
+ "step": 1872
+ },
+ {
+ "epoch": 26.013937282229964,
+ "grad_norm": 0.06601504236459732,
+ "learning_rate": 0.00029713547647727904,
+ "loss": 1.9541187286376953,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027874564459932,
+ "grad_norm": 0.06637415289878845,
+ "learning_rate": 0.00029686894427497515,
+ "loss": 1.9444429874420166,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041811846689896,
+ "grad_norm": 0.06102657690644264,
+ "learning_rate": 0.0002966024170123519,
+ "loss": 1.9523404836654663,
+ "step": 1875
+ },
+ {
+ "epoch": 26.05574912891986,
+ "grad_norm": 0.06154332309961319,
+ "learning_rate": 0.0002963358949041459,
+ "loss": 1.9392805099487305,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069686411149824,
+ "grad_norm": 0.06383806467056274,
+ "learning_rate": 0.00029606937816508897,
+ "loss": 1.9280699491500854,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083623693379792,
+ "grad_norm": 0.05950536951422691,
+ "learning_rate": 0.00029580286700990887,
+ "loss": 1.9510209560394287,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097560975609756,
+ "grad_norm": 0.06285396963357925,
+ "learning_rate": 0.00029553636165332876,
+ "loss": 1.9589542150497437,
+ "step": 1879
+ },
+ {
+ "epoch": 26.11149825783972,
+ "grad_norm": 0.06018277257680893,
+ "learning_rate": 0.0002952698623100673,
+ "loss": 1.9556975364685059,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125435540069688,
+ "grad_norm": 0.06558576226234436,
+ "learning_rate": 0.0002950033691948382,
+ "loss": 1.9427529573440552,
+ "step": 1881
+ },
+ {
+ "epoch": 26.139372822299652,
+ "grad_norm": 0.06511088460683823,
+ "learning_rate": 0.00029473688252234994,
+ "loss": 1.9552985429763794,
+ "step": 1882
+ },
+ {
+ "epoch": 26.153310104529616,
+ "grad_norm": 0.06098657473921776,
+ "learning_rate": 0.0002944704025073064,
+ "loss": 1.9433622360229492,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16724738675958,
+ "grad_norm": 0.059983622282743454,
+ "learning_rate": 0.00029420392936440525,
+ "loss": 1.940507411956787,
+ "step": 1884
+ },
+ {
+ "epoch": 26.181184668989548,
+ "grad_norm": 0.06048520654439926,
+ "learning_rate": 0.00029393746330833953,
+ "loss": 1.936924695968628,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195121951219512,
+ "grad_norm": 0.06227855011820793,
+ "learning_rate": 0.0002936710045537959,
+ "loss": 1.93827486038208,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209059233449477,
+ "grad_norm": 0.06222425028681755,
+ "learning_rate": 0.0002934045533154554,
+ "loss": 1.9474766254425049,
+ "step": 1887
+ },
+ {
+ "epoch": 26.222996515679444,
+ "grad_norm": 0.06104688346385956,
+ "learning_rate": 0.00029313810980799296,
+ "loss": 1.9336830377578735,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23693379790941,
+ "grad_norm": 0.061554424464702606,
+ "learning_rate": 0.00029287167424607726,
+ "loss": 1.9518358707427979,
+ "step": 1889
+ },
+ {
+ "epoch": 26.250871080139373,
+ "grad_norm": 0.06273443251848221,
+ "learning_rate": 0.00029260524684437077,
+ "loss": 1.940516710281372,
+ "step": 1890
+ },
+ {
+ "epoch": 26.264808362369337,
+ "grad_norm": 0.05902065709233284,
+ "learning_rate": 0.00029233882781752905,
+ "loss": 1.9311795234680176,
+ "step": 1891
+ },
+ {
+ "epoch": 26.278745644599304,
+ "grad_norm": 0.0626775324344635,
+ "learning_rate": 0.00029207241738020136,
+ "loss": 1.9473145008087158,
+ "step": 1892
+ },
+ {
+ "epoch": 26.29268292682927,
+ "grad_norm": 0.05936308950185776,
+ "learning_rate": 0.0002918060157470294,
+ "loss": 1.946176290512085,
+ "step": 1893
+ },
+ {
+ "epoch": 26.306620209059233,
+ "grad_norm": 0.06098832190036774,
+ "learning_rate": 0.00029153962313264856,
+ "loss": 1.9415948390960693,
+ "step": 1894
+ },
+ {
+ "epoch": 26.320557491289197,
+ "grad_norm": 0.06257472187280655,
+ "learning_rate": 0.0002912732397516862,
+ "loss": 1.9476375579833984,
+ "step": 1895
+ },
+ {
+ "epoch": 26.334494773519165,
+ "grad_norm": 0.06173890084028244,
+ "learning_rate": 0.00029100686581876283,
+ "loss": 1.9434869289398193,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34843205574913,
+ "grad_norm": 0.0614108070731163,
+ "learning_rate": 0.0002907405015484911,
+ "loss": 1.9595987796783447,
+ "step": 1897
+ },
+ {
+ "epoch": 26.362369337979093,
+ "grad_norm": 0.06131064146757126,
+ "learning_rate": 0.0002904741471554758,
+ "loss": 1.9638384580612183,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37630662020906,
+ "grad_norm": 0.0620097853243351,
+ "learning_rate": 0.0002902078028543139,
+ "loss": 1.9308812618255615,
+ "step": 1899
+ },
+ {
+ "epoch": 26.390243902439025,
+ "grad_norm": 0.06417243927717209,
+ "learning_rate": 0.00028994146885959416,
+ "loss": 1.9541051387786865,
+ "step": 1900
+ },
+ {
+ "epoch": 26.40418118466899,
+ "grad_norm": 0.061548616737127304,
+ "learning_rate": 0.00028967514538589715,
+ "loss": 1.9431400299072266,
+ "step": 1901
+ },
+ {
+ "epoch": 26.418118466898953,
+ "grad_norm": 0.0631798654794693,
+ "learning_rate": 0.0002894088326477947,
+ "loss": 1.9591906070709229,
+ "step": 1902
+ },
+ {
+ "epoch": 26.43205574912892,
+ "grad_norm": 0.06283508986234665,
+ "learning_rate": 0.0002891425308598503,
+ "loss": 1.943403720855713,
+ "step": 1903
+ },
+ {
+ "epoch": 26.445993031358885,
+ "grad_norm": 0.06297212839126587,
+ "learning_rate": 0.00028887624023661866,
+ "loss": 1.9608395099639893,
+ "step": 1904
+ },
+ {
+ "epoch": 26.45993031358885,
+ "grad_norm": 0.06354014575481415,
+ "learning_rate": 0.00028860996099264505,
+ "loss": 1.9444423913955688,
+ "step": 1905
+ },
+ {
+ "epoch": 26.473867595818817,
+ "grad_norm": 0.06168603152036667,
+ "learning_rate": 0.000288343693342466,
+ "loss": 1.9628558158874512,
+ "step": 1906
+ },
+ {
+ "epoch": 26.48780487804878,
+ "grad_norm": 0.06447484344244003,
+ "learning_rate": 0.00028807743750060847,
+ "loss": 1.9654959440231323,
+ "step": 1907
+ },
+ {
+ "epoch": 26.501742160278745,
+ "grad_norm": 0.06281430274248123,
+ "learning_rate": 0.00028781119368159004,
+ "loss": 1.9553298950195312,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51567944250871,
+ "grad_norm": 0.06198422610759735,
+ "learning_rate": 0.00028754496209991843,
+ "loss": 1.9523322582244873,
+ "step": 1909
+ },
+ {
+ "epoch": 26.529616724738677,
+ "grad_norm": 0.062765933573246,
+ "learning_rate": 0.0002872787429700917,
+ "loss": 1.9606122970581055,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54355400696864,
+ "grad_norm": 0.06762545555830002,
+ "learning_rate": 0.0002870125365065979,
+ "loss": 1.9565579891204834,
+ "step": 1911
+ },
+ {
+ "epoch": 26.557491289198605,
+ "grad_norm": 0.06395747512578964,
+ "learning_rate": 0.00028674634292391463,
+ "loss": 1.962345838546753,
+ "step": 1912
+ },
+ {
+ "epoch": 26.571428571428573,
+ "grad_norm": 0.060820501297712326,
+ "learning_rate": 0.0002864801624365093,
+ "loss": 1.9698963165283203,
+ "step": 1913
+ },
+ {
+ "epoch": 26.585365853658537,
+ "grad_norm": 0.0644717738032341,
+ "learning_rate": 0.0002862139952588387,
+ "loss": 1.9503817558288574,
+ "step": 1914
+ },
+ {
+ "epoch": 26.5993031358885,
+ "grad_norm": 0.06223372370004654,
+ "learning_rate": 0.000285947841605349,
+ "loss": 1.9556928873062134,
+ "step": 1915
+ },
+ {
+ "epoch": 26.613240418118465,
+ "grad_norm": 0.0660606324672699,
+ "learning_rate": 0.00028568170169047523,
+ "loss": 1.9794392585754395,
+ "step": 1916
+ },
+ {
+ "epoch": 26.627177700348433,
+ "grad_norm": 0.06215149909257889,
+ "learning_rate": 0.00028541557572864154,
+ "loss": 1.956440806388855,
+ "step": 1917
+ },
+ {
+ "epoch": 26.641114982578397,
+ "grad_norm": 0.06647448241710663,
+ "learning_rate": 0.000285149463934261,
+ "loss": 1.9618154764175415,
+ "step": 1918
+ },
+ {
+ "epoch": 26.65505226480836,
+ "grad_norm": 0.06702937185764313,
+ "learning_rate": 0.0002848833665217349,
+ "loss": 1.9652760028839111,
+ "step": 1919
+ },
+ {
+ "epoch": 26.66898954703833,
+ "grad_norm": 0.06669468432664871,
+ "learning_rate": 0.0002846172837054532,
+ "loss": 1.9627275466918945,
+ "step": 1920
+ },
+ {
+ "epoch": 26.682926829268293,
+ "grad_norm": 0.06321994960308075,
+ "learning_rate": 0.0002843512156997939,
+ "loss": 1.966722846031189,
+ "step": 1921
+ },
+ {
+ "epoch": 26.696864111498257,
+ "grad_norm": 0.06267281621694565,
+ "learning_rate": 0.0002840851627191234,
+ "loss": 1.9646657705307007,
+ "step": 1922
+ },
+ {
+ "epoch": 26.71080139372822,
+ "grad_norm": 0.06576424092054367,
+ "learning_rate": 0.0002838191249777955,
+ "loss": 1.950223445892334,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72473867595819,
+ "grad_norm": 0.06047007441520691,
+ "learning_rate": 0.00028355310269015225,
+ "loss": 1.9768667221069336,
+ "step": 1924
+ },
+ {
+ "epoch": 26.738675958188153,
+ "grad_norm": 0.06493274867534637,
+ "learning_rate": 0.00028328709607052297,
+ "loss": 1.9484598636627197,
+ "step": 1925
+ },
+ {
+ "epoch": 26.752613240418118,
+ "grad_norm": 0.06330715864896774,
+ "learning_rate": 0.0002830211053332242,
+ "loss": 1.9732015132904053,
+ "step": 1926
+ },
+ {
+ "epoch": 26.766550522648085,
+ "grad_norm": 0.06184522062540054,
+ "learning_rate": 0.0002827551306925601,
+ "loss": 1.9706918001174927,
+ "step": 1927
+ },
+ {
+ "epoch": 26.78048780487805,
+ "grad_norm": 0.06290240585803986,
+ "learning_rate": 0.00028248917236282147,
+ "loss": 1.9614533185958862,
+ "step": 1928
+ },
+ {
+ "epoch": 26.794425087108014,
+ "grad_norm": 0.06381867825984955,
+ "learning_rate": 0.0002822232305582863,
+ "loss": 1.960871934890747,
+ "step": 1929
+ },
+ {
+ "epoch": 26.808362369337978,
+ "grad_norm": 0.061407096683979034,
+ "learning_rate": 0.0002819573054932188,
+ "loss": 1.970398187637329,
+ "step": 1930
+ },
+ {
+ "epoch": 26.822299651567945,
+ "grad_norm": 0.06511857360601425,
+ "learning_rate": 0.0002816913973818703,
+ "loss": 1.9459114074707031,
+ "step": 1931
+ },
+ {
+ "epoch": 26.83623693379791,
+ "grad_norm": 0.06411094218492508,
+ "learning_rate": 0.0002814255064384781,
+ "loss": 1.948549509048462,
+ "step": 1932
+ },
+ {
+ "epoch": 26.850174216027874,
+ "grad_norm": 0.06509149819612503,
+ "learning_rate": 0.00028115963287726563,
+ "loss": 1.9682888984680176,
+ "step": 1933
+ },
+ {
+ "epoch": 26.86411149825784,
+ "grad_norm": 0.06972374022006989,
+ "learning_rate": 0.0002808937769124425,
+ "loss": 1.9887568950653076,
+ "step": 1934
+ },
+ {
+ "epoch": 26.878048780487806,
+ "grad_norm": 0.07100297510623932,
+ "learning_rate": 0.000280627938758204,
+ "loss": 1.9728631973266602,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89198606271777,
+ "grad_norm": 0.06550271809101105,
+ "learning_rate": 0.00028036211862873117,
+ "loss": 1.9675276279449463,
+ "step": 1936
+ },
+ {
+ "epoch": 26.905923344947734,
+ "grad_norm": 0.06671806424856186,
+ "learning_rate": 0.0002800963167381904,
+ "loss": 1.985438346862793,
+ "step": 1937
+ },
+ {
+ "epoch": 26.9198606271777,
+ "grad_norm": 0.0698300451040268,
+ "learning_rate": 0.00027983053330073355,
+ "loss": 1.9645981788635254,
+ "step": 1938
+ },
+ {
+ "epoch": 26.933797909407666,
+ "grad_norm": 0.06594336032867432,
+ "learning_rate": 0.00027956476853049765,
+ "loss": 1.9659535884857178,
+ "step": 1939
+ },
+ {
+ "epoch": 26.94773519163763,
+ "grad_norm": 0.06825239211320877,
+ "learning_rate": 0.00027929902264160435,
+ "loss": 1.9709006547927856,
+ "step": 1940
+ },
+ {
+ "epoch": 26.961672473867594,
+ "grad_norm": 0.06996344029903412,
+ "learning_rate": 0.00027903329584816046,
+ "loss": 1.9777134656906128,
+ "step": 1941
+ },
+ {
+ "epoch": 26.975609756097562,
+ "grad_norm": 0.06491006910800934,
+ "learning_rate": 0.0002787675883642572,
+ "loss": 1.9659584760665894,
+ "step": 1942
+ },
+ {
+ "epoch": 26.989547038327526,
+ "grad_norm": 0.06465473026037216,
+ "learning_rate": 0.00027850190040397036,
+ "loss": 1.9739830493927002,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.05315341055393219,
+ "learning_rate": 0.00027823623218135976,
+ "loss": 1.480682373046875,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 0.6356088519096375,
+ "eval_runtime": 36.5058,
+ "eval_samples_per_second": 66.893,
+ "eval_steps_per_second": 0.548,
+ "step": 1944
+ },
+ {
+ "epoch": 27.013937282229964,
+ "grad_norm": 0.061814989894628525,
+ "learning_rate": 0.0002779705839104697,
+ "loss": 1.9167797565460205,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027874564459932,
+ "grad_norm": 0.06356564909219742,
+ "learning_rate": 0.0002777049558053281,
+ "loss": 1.927583932876587,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041811846689896,
+ "grad_norm": 0.06118980795145035,
+ "learning_rate": 0.0002774393480799466,
+ "loss": 1.9252214431762695,
+ "step": 1947
+ },
+ {
+ "epoch": 27.05574912891986,
+ "grad_norm": 0.059413257986307144,
+ "learning_rate": 0.00027717376094832076,
+ "loss": 1.9219372272491455,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069686411149824,
+ "grad_norm": 0.06260813027620316,
+ "learning_rate": 0.0002769081946244293,
+ "loss": 1.922504186630249,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083623693379792,
+ "grad_norm": 0.061976976692676544,
+ "learning_rate": 0.00027664264932223407,
+ "loss": 1.9327895641326904,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097560975609756,
+ "grad_norm": 0.059954315423965454,
+ "learning_rate": 0.00027637712525568024,
+ "loss": 1.9138646125793457,
+ "step": 1951
+ },
+ {
+ "epoch": 27.11149825783972,
+ "grad_norm": 0.06157257780432701,
+ "learning_rate": 0.0002761116226386958,
+ "loss": 1.9266639947891235,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125435540069688,
+ "grad_norm": 0.06179584190249443,
+ "learning_rate": 0.00027584614168519125,
+ "loss": 1.9255129098892212,
+ "step": 1953
+ },
+ {
+ "epoch": 27.139372822299652,
+ "grad_norm": 0.0608953982591629,
+ "learning_rate": 0.00027558068260905976,
+ "loss": 1.9159553050994873,
+ "step": 1954
+ },
+ {
+ "epoch": 27.153310104529616,
+ "grad_norm": 0.06067467853426933,
+ "learning_rate": 0.00027531524562417734,
+ "loss": 1.9260437488555908,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16724738675958,
+ "grad_norm": 0.06343036144971848,
+ "learning_rate": 0.00027504983094440126,
+ "loss": 1.9118573665618896,
+ "step": 1956
+ },
+ {
+ "epoch": 27.181184668989548,
+ "grad_norm": 0.06201693415641785,
+ "learning_rate": 0.0002747844387835716,
+ "loss": 1.9324994087219238,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195121951219512,
+ "grad_norm": 0.06198827177286148,
+ "learning_rate": 0.0002745190693555099,
+ "loss": 1.9376416206359863,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209059233449477,
+ "grad_norm": 0.06404320895671844,
+ "learning_rate": 0.0002742537228740197,
+ "loss": 1.9419097900390625,
+ "step": 1959
+ },
+ {
+ "epoch": 27.222996515679444,
+ "grad_norm": 0.062050990760326385,
+ "learning_rate": 0.00027398839955288575,
+ "loss": 1.9205586910247803,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23693379790941,
+ "grad_norm": 0.05903782323002815,
+ "learning_rate": 0.00027372309960587424,
+ "loss": 1.9344040155410767,
+ "step": 1961
+ },
+ {
+ "epoch": 27.250871080139373,
+ "grad_norm": 0.06662431359291077,
+ "learning_rate": 0.0002734578232467327,
+ "loss": 1.9293982982635498,
+ "step": 1962
+ },
+ {
+ "epoch": 27.264808362369337,
+ "grad_norm": 0.06605469435453415,
+ "learning_rate": 0.0002731925706891891,
+ "loss": 1.9288328886032104,
+ "step": 1963
+ },
+ {
+ "epoch": 27.278745644599304,
+ "grad_norm": 0.062087010592222214,
+ "learning_rate": 0.0002729273421469532,
+ "loss": 1.9324290752410889,
+ "step": 1964
+ },
+ {
+ "epoch": 27.29268292682927,
+ "grad_norm": 0.062059979885816574,
+ "learning_rate": 0.00027266213783371434,
+ "loss": 1.933382272720337,
+ "step": 1965
+ },
+ {
+ "epoch": 27.306620209059233,
+ "grad_norm": 0.06283893436193466,
+ "learning_rate": 0.00027239695796314327,
+ "loss": 1.9310166835784912,
+ "step": 1966
+ },
+ {
+ "epoch": 27.320557491289197,
+ "grad_norm": 0.062266793102025986,
+ "learning_rate": 0.0002721318027488902,
+ "loss": 1.9510637521743774,
+ "step": 1967
+ },
+ {
+ "epoch": 27.334494773519165,
+ "grad_norm": 0.0629708543419838,
+ "learning_rate": 0.00027186667240458617,
+ "loss": 1.921417236328125,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34843205574913,
+ "grad_norm": 0.0634312853217125,
+ "learning_rate": 0.0002716015671438419,
+ "loss": 1.9262259006500244,
+ "step": 1969
+ },
+ {
+ "epoch": 27.362369337979093,
+ "grad_norm": 0.062355365604162216,
+ "learning_rate": 0.0002713364871802478,
+ "loss": 1.9553534984588623,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37630662020906,
+ "grad_norm": 0.06175858899950981,
+ "learning_rate": 0.0002710714327273741,
+ "loss": 1.939396858215332,
+ "step": 1971
+ },
+ {
+ "epoch": 27.390243902439025,
+ "grad_norm": 0.06311390548944473,
+ "learning_rate": 0.0002708064039987704,
+ "loss": 1.9329023361206055,
+ "step": 1972
+ },
+ {
+ "epoch": 27.40418118466899,
+ "grad_norm": 0.062033023685216904,
+ "learning_rate": 0.00027054140120796546,
+ "loss": 1.9308583736419678,
+ "step": 1973
+ },
+ {
+ "epoch": 27.418118466898953,
+ "grad_norm": 0.06312143802642822,
+ "learning_rate": 0.0002702764245684672,
+ "loss": 1.9487743377685547,
+ "step": 1974
+ },
+ {
+ "epoch": 27.43205574912892,
+ "grad_norm": 0.0649493932723999,
+ "learning_rate": 0.0002700114742937627,
+ "loss": 1.9450247287750244,
+ "step": 1975
+ },
+ {
+ "epoch": 27.445993031358885,
+ "grad_norm": 0.0623517744243145,
+ "learning_rate": 0.00026974655059731754,
+ "loss": 1.9420899152755737,
+ "step": 1976
+ },
+ {
+ "epoch": 27.45993031358885,
+ "grad_norm": 0.06679189950227737,
+ "learning_rate": 0.0002694816536925759,
+ "loss": 1.9443024396896362,
+ "step": 1977
+ },
+ {
+ "epoch": 27.473867595818817,
+ "grad_norm": 0.06560137122869492,
+ "learning_rate": 0.00026921678379296057,
+ "loss": 1.953552484512329,
+ "step": 1978
+ },
+ {
+ "epoch": 27.48780487804878,
+ "grad_norm": 0.06294484436511993,
+ "learning_rate": 0.0002689519411118722,
+ "loss": 1.9333667755126953,
+ "step": 1979
+ },
+ {
+ "epoch": 27.501742160278745,
+ "grad_norm": 0.06416776031255722,
+ "learning_rate": 0.00026868712586269,
+ "loss": 1.950608491897583,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51567944250871,
+ "grad_norm": 0.06297886371612549,
+ "learning_rate": 0.00026842233825877064,
+ "loss": 1.9374010562896729,
+ "step": 1981
+ },
+ {
+ "epoch": 27.529616724738677,
+ "grad_norm": 0.06346481293439865,
+ "learning_rate": 0.0002681575785134487,
+ "loss": 1.9292755126953125,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54355400696864,
+ "grad_norm": 0.06401345133781433,
+ "learning_rate": 0.0002678928468400366,
+ "loss": 1.9518835544586182,
+ "step": 1983
+ },
+ {
+ "epoch": 27.557491289198605,
+ "grad_norm": 0.06174371764063835,
+ "learning_rate": 0.00026762814345182367,
+ "loss": 1.9246001243591309,
+ "step": 1984
+ },
+ {
+ "epoch": 27.571428571428573,
+ "grad_norm": 0.06687969714403152,
+ "learning_rate": 0.0002673634685620767,
+ "loss": 1.9456532001495361,
+ "step": 1985
+ },
+ {
+ "epoch": 27.585365853658537,
+ "grad_norm": 0.06487233936786652,
+ "learning_rate": 0.0002670988223840393,
+ "loss": 1.9369590282440186,
+ "step": 1986
+ },
+ {
+ "epoch": 27.5993031358885,
+ "grad_norm": 0.06265441328287125,
+ "learning_rate": 0.0002668342051309324,
+ "loss": 1.9478905200958252,
+ "step": 1987
+ },
+ {
+ "epoch": 27.613240418118465,
+ "grad_norm": 0.06444588303565979,
+ "learning_rate": 0.00026656961701595306,
+ "loss": 1.923633098602295,
+ "step": 1988
+ },
+ {
+ "epoch": 27.627177700348433,
+ "grad_norm": 0.06363383680582047,
+ "learning_rate": 0.0002663050582522753,
+ "loss": 1.9642283916473389,
+ "step": 1989
+ },
+ {
+ "epoch": 27.641114982578397,
+ "grad_norm": 0.06589404493570328,
+ "learning_rate": 0.00026604052905304946,
+ "loss": 1.9349925518035889,
+ "step": 1990
+ },
+ {
+ "epoch": 27.65505226480836,
+ "grad_norm": 0.0630272924900055,
+ "learning_rate": 0.00026577602963140156,
+ "loss": 1.9420092105865479,
+ "step": 1991
+ },
+ {
+ "epoch": 27.66898954703833,
+ "grad_norm": 0.06480628997087479,
+ "learning_rate": 0.0002655115602004345,
+ "loss": 1.9431254863739014,
+ "step": 1992
+ },
+ {
+ "epoch": 27.682926829268293,
+ "grad_norm": 0.0632273331284523,
+ "learning_rate": 0.00026524712097322604,
+ "loss": 1.9446561336517334,
+ "step": 1993
+ },
+ {
+ "epoch": 27.696864111498257,
+ "grad_norm": 0.06315293163061142,
+ "learning_rate": 0.0002649827121628305,
+ "loss": 1.9283469915390015,
+ "step": 1994
+ },
+ {
+ "epoch": 27.71080139372822,
+ "grad_norm": 0.0651608556509018,
+ "learning_rate": 0.00026471833398227694,
+ "loss": 1.938418984413147,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72473867595819,
+ "grad_norm": 0.06380520761013031,
+ "learning_rate": 0.0002644539866445703,
+ "loss": 1.9424567222595215,
+ "step": 1996
+ },
+ {
+ "epoch": 27.738675958188153,
+ "grad_norm": 0.0646371841430664,
+ "learning_rate": 0.00026418967036269045,
+ "loss": 1.9451972246170044,
+ "step": 1997
+ },
+ {
+ "epoch": 27.752613240418118,
+ "grad_norm": 0.06506325304508209,
+ "learning_rate": 0.0002639253853495921,
+ "loss": 1.9419035911560059,
+ "step": 1998
+ },
+ {
+ "epoch": 27.766550522648085,
+ "grad_norm": 0.06286903470754623,
+ "learning_rate": 0.00026366113181820506,
+ "loss": 1.9452807903289795,
+ "step": 1999
+ },
+ {
+ "epoch": 27.78048780487805,
+ "grad_norm": 0.06661684811115265,
+ "learning_rate": 0.00026339690998143346,
+ "loss": 1.9469493627548218,
+ "step": 2000
+ },
+ {
+ "epoch": 27.794425087108014,
+ "grad_norm": 0.06329949200153351,
+ "learning_rate": 0.00026313272005215637,
+ "loss": 1.935401201248169,
+ "step": 2001
+ },
+ {
+ "epoch": 27.808362369337978,
+ "grad_norm": 0.06465955078601837,
+ "learning_rate": 0.00026286856224322645,
+ "loss": 1.9547067880630493,
+ "step": 2002
+ },
+ {
+ "epoch": 27.822299651567945,
+ "grad_norm": 0.06732604652643204,
+ "learning_rate": 0.00026260443676747114,
+ "loss": 1.9547715187072754,
+ "step": 2003
+ },
+ {
+ "epoch": 27.83623693379791,
+ "grad_norm": 0.0651276484131813,
+ "learning_rate": 0.00026234034383769157,
+ "loss": 1.9498482942581177,
+ "step": 2004
+ },
+ {
+ "epoch": 27.850174216027874,
+ "grad_norm": 0.06699621677398682,
+ "learning_rate": 0.0002620762836666625,
+ "loss": 1.9338326454162598,
+ "step": 2005
+ },
+ {
+ "epoch": 27.86411149825784,
+ "grad_norm": 0.0657275915145874,
+ "learning_rate": 0.00026181225646713257,
+ "loss": 1.9473168849945068,
+ "step": 2006
+ },
+ {
+ "epoch": 27.878048780487806,
+ "grad_norm": 0.06368435174226761,
+ "learning_rate": 0.0002615482624518236,
+ "loss": 1.9568496942520142,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89198606271777,
+ "grad_norm": 0.06439761072397232,
+ "learning_rate": 0.0002612843018334309,
+ "loss": 1.9380487203598022,
+ "step": 2008
+ },
+ {
+ "epoch": 27.905923344947734,
+ "grad_norm": 0.06287812441587448,
+ "learning_rate": 0.00026102037482462256,
+ "loss": 1.9562499523162842,
+ "step": 2009
+ },
+ {
+ "epoch": 27.9198606271777,
+ "grad_norm": 0.06544869393110275,
+ "learning_rate": 0.0002607564816380403,
+ "loss": 1.9567855596542358,
+ "step": 2010
+ },
+ {
+ "epoch": 27.933797909407666,
+ "grad_norm": 0.06412878632545471,
+ "learning_rate": 0.0002604926224862975,
+ "loss": 1.9528976678848267,
+ "step": 2011
+ },
+ {
+ "epoch": 27.94773519163763,
+ "grad_norm": 0.06460773944854736,
+ "learning_rate": 0.0002602287975819811,
+ "loss": 1.9536967277526855,
+ "step": 2012
+ },
+ {
+ "epoch": 27.961672473867594,
+ "grad_norm": 0.06466975808143616,
+ "learning_rate": 0.00025996500713765,
+ "loss": 1.9486842155456543,
+ "step": 2013
+ },
+ {
+ "epoch": 27.975609756097562,
+ "grad_norm": 0.0657997727394104,
+ "learning_rate": 0.0002597012513658352,
+ "loss": 1.9634342193603516,
+ "step": 2014
+ },
+ {
+ "epoch": 27.989547038327526,
+ "grad_norm": 0.06382985413074493,
+ "learning_rate": 0.00025943753047904026,
+ "loss": 1.951185941696167,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.05184071138501167,
+ "learning_rate": 0.0002591738446897401,
+ "loss": 1.450034737586975,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 0.6368818283081055,
+ "eval_runtime": 36.4264,
+ "eval_samples_per_second": 67.039,
+ "eval_steps_per_second": 0.549,
+ "step": 2016
+ },
+ {
+ "epoch": 28.013937282229964,
+ "grad_norm": 0.06179628521203995,
+ "learning_rate": 0.00025891019421038177,
+ "loss": 1.8983266353607178,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027874564459932,
+ "grad_norm": 0.06494797021150589,
+ "learning_rate": 0.00025864657925338345,
+ "loss": 1.9054467678070068,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041811846689896,
+ "grad_norm": 0.0576489195227623,
+ "learning_rate": 0.00025838300003113514,
+ "loss": 1.9130041599273682,
+ "step": 2019
+ },
+ {
+ "epoch": 28.05574912891986,
+ "grad_norm": 0.06085439771413803,
+ "learning_rate": 0.0002581194567559979,
+ "loss": 1.913049578666687,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069686411149824,
+ "grad_norm": 0.06129859387874603,
+ "learning_rate": 0.00025785594964030365,
+ "loss": 1.9181420803070068,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083623693379792,
+ "grad_norm": 0.06114889681339264,
+ "learning_rate": 0.0002575924788963554,
+ "loss": 1.905306339263916,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097560975609756,
+ "grad_norm": 0.05999523028731346,
+ "learning_rate": 0.0002573290447364268,
+ "loss": 1.9111361503601074,
+ "step": 2023
+ },
+ {
+ "epoch": 28.11149825783972,
+ "grad_norm": 0.059980180114507675,
+ "learning_rate": 0.0002570656473727619,
+ "loss": 1.9141806364059448,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125435540069688,
+ "grad_norm": 0.06263387203216553,
+ "learning_rate": 0.0002568022870175752,
+ "loss": 1.9160103797912598,
+ "step": 2025
+ },
+ {
+ "epoch": 28.139372822299652,
+ "grad_norm": 0.06106845661997795,
+ "learning_rate": 0.00025653896388305134,
+ "loss": 1.9279768466949463,
+ "step": 2026
+ },
+ {
+ "epoch": 28.153310104529616,
+ "grad_norm": 0.060402341187000275,
+ "learning_rate": 0.0002562756781813453,
+ "loss": 1.9093596935272217,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16724738675958,
+ "grad_norm": 0.062007319182157516,
+ "learning_rate": 0.00025601243012458126,
+ "loss": 1.9311325550079346,
+ "step": 2028
+ },
+ {
+ "epoch": 28.181184668989548,
+ "grad_norm": 0.06392303109169006,
+ "learning_rate": 0.00025574921992485366,
+ "loss": 1.9102120399475098,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195121951219512,
+ "grad_norm": 0.06318432092666626,
+ "learning_rate": 0.000255486047794226,
+ "loss": 1.919282078742981,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209059233449477,
+ "grad_norm": 0.06065482273697853,
+ "learning_rate": 0.0002552229139447316,
+ "loss": 1.9156081676483154,
+ "step": 2031
+ },
+ {
+ "epoch": 28.222996515679444,
+ "grad_norm": 0.061966441571712494,
+ "learning_rate": 0.00025495981858837235,
+ "loss": 1.914115071296692,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23693379790941,
+ "grad_norm": 0.06226721405982971,
+ "learning_rate": 0.0002546967619371195,
+ "loss": 1.9121596813201904,
+ "step": 2033
+ },
+ {
+ "epoch": 28.250871080139373,
+ "grad_norm": 0.06150427833199501,
+ "learning_rate": 0.0002544337442029133,
+ "loss": 1.9173963069915771,
+ "step": 2034
+ },
+ {
+ "epoch": 28.264808362369337,
+ "grad_norm": 0.06378372013568878,
+ "learning_rate": 0.00025417076559766194,
+ "loss": 1.909637451171875,
+ "step": 2035
+ },
+ {
+ "epoch": 28.278745644599304,
+ "grad_norm": 0.06366439908742905,
+ "learning_rate": 0.000253907826333243,
+ "loss": 1.9096641540527344,
+ "step": 2036
+ },
+ {
+ "epoch": 28.29268292682927,
+ "grad_norm": 0.0645628497004509,
+ "learning_rate": 0.00025364492662150145,
+ "loss": 1.919980525970459,
+ "step": 2037
+ },
+ {
+ "epoch": 28.306620209059233,
+ "grad_norm": 0.06325099617242813,
+ "learning_rate": 0.0002533820666742514,
+ "loss": 1.9110815525054932,
+ "step": 2038
+ },
+ {
+ "epoch": 28.320557491289197,
+ "grad_norm": 0.06190553680062294,
+ "learning_rate": 0.00025311924670327364,
+ "loss": 1.9132925271987915,
+ "step": 2039
+ },
+ {
+ "epoch": 28.334494773519165,
+ "grad_norm": 0.066350057721138,
+ "learning_rate": 0.00025285646692031804,
+ "loss": 1.9073128700256348,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34843205574913,
+ "grad_norm": 0.06301865726709366,
+ "learning_rate": 0.0002525937275371013,
+ "loss": 1.8958029747009277,
+ "step": 2041
+ },
+ {
+ "epoch": 28.362369337979093,
+ "grad_norm": 0.06601684540510178,
+ "learning_rate": 0.00025233102876530785,
+ "loss": 1.9298090934753418,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37630662020906,
+ "grad_norm": 0.06607081741094589,
+ "learning_rate": 0.0002520683708165894,
+ "loss": 1.9166982173919678,
+ "step": 2043
+ },
+ {
+ "epoch": 28.390243902439025,
+ "grad_norm": 0.06442136317491531,
+ "learning_rate": 0.0002518057539025646,
+ "loss": 1.901548981666565,
+ "step": 2044
+ },
+ {
+ "epoch": 28.40418118466899,
+ "grad_norm": 0.06346907466650009,
+ "learning_rate": 0.00025154317823481917,
+ "loss": 1.913223147392273,
+ "step": 2045
+ },
+ {
+ "epoch": 28.418118466898953,
+ "grad_norm": 0.06854342669248581,
+ "learning_rate": 0.0002512806440249056,
+ "loss": 1.912400722503662,
+ "step": 2046
+ },
+ {
+ "epoch": 28.43205574912892,
+ "grad_norm": 0.0666179209947586,
+ "learning_rate": 0.00025101815148434296,
+ "loss": 1.917931318283081,
+ "step": 2047
+ },
+ {
+ "epoch": 28.445993031358885,
+ "grad_norm": 0.06367912888526917,
+ "learning_rate": 0.00025075570082461684,
+ "loss": 1.9296393394470215,
+ "step": 2048
+ },
+ {
+ "epoch": 28.45993031358885,
+ "grad_norm": 0.06878827512264252,
+ "learning_rate": 0.0002504932922571789,
+ "loss": 1.9146850109100342,
+ "step": 2049
+ },
+ {
+ "epoch": 28.473867595818817,
+ "grad_norm": 0.06371448934078217,
+ "learning_rate": 0.00025023092599344706,
+ "loss": 1.909759521484375,
+ "step": 2050
+ },
+ {
+ "epoch": 28.48780487804878,
+ "grad_norm": 0.06354286521673203,
+ "learning_rate": 0.0002499686022448049,
+ "loss": 1.9349541664123535,
+ "step": 2051
+ },
+ {
+ "epoch": 28.501742160278745,
+ "grad_norm": 0.06779763847589493,
+ "learning_rate": 0.00024970632122260216,
+ "loss": 1.913719654083252,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51567944250871,
+ "grad_norm": 0.06543827801942825,
+ "learning_rate": 0.0002494440831381538,
+ "loss": 1.9296395778656006,
+ "step": 2053
+ },
+ {
+ "epoch": 28.529616724738677,
+ "grad_norm": 0.06395813822746277,
+ "learning_rate": 0.00024918188820274016,
+ "loss": 1.9255974292755127,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54355400696864,
+ "grad_norm": 0.0646572858095169,
+ "learning_rate": 0.0002489197366276073,
+ "loss": 1.9387515783309937,
+ "step": 2055
+ },
+ {
+ "epoch": 28.557491289198605,
+ "grad_norm": 0.06319864094257355,
+ "learning_rate": 0.0002486576286239657,
+ "loss": 1.9284127950668335,
+ "step": 2056
+ },
+ {
+ "epoch": 28.571428571428573,
+ "grad_norm": 0.065260149538517,
+ "learning_rate": 0.0002483955644029913,
+ "loss": 1.9322850704193115,
+ "step": 2057
+ },
+ {
+ "epoch": 28.585365853658537,
+ "grad_norm": 0.06620555371046066,
+ "learning_rate": 0.0002481335441758243,
+ "loss": 1.9043277502059937,
+ "step": 2058
+ },
+ {
+ "epoch": 28.5993031358885,
+ "grad_norm": 0.06358697265386581,
+ "learning_rate": 0.0002478715681535699,
+ "loss": 1.9008917808532715,
+ "step": 2059
+ },
+ {
+ "epoch": 28.613240418118465,
+ "grad_norm": 0.06863846629858017,
+ "learning_rate": 0.00024760963654729717,
+ "loss": 1.9327411651611328,
+ "step": 2060
+ },
+ {
+ "epoch": 28.627177700348433,
+ "grad_norm": 0.06971991807222366,
+ "learning_rate": 0.0002473477495680397,
+ "loss": 1.9262962341308594,
+ "step": 2061
+ },
+ {
+ "epoch": 28.641114982578397,
+ "grad_norm": 0.06454122811555862,
+ "learning_rate": 0.00024708590742679546,
+ "loss": 1.9252219200134277,
+ "step": 2062
+ },
+ {
+ "epoch": 28.65505226480836,
+ "grad_norm": 0.0696180909872055,
+ "learning_rate": 0.00024682411033452546,
+ "loss": 1.909650444984436,
+ "step": 2063
+ },
+ {
+ "epoch": 28.66898954703833,
+ "grad_norm": 0.06893020123243332,
+ "learning_rate": 0.0002465623585021553,
+ "loss": 1.9374496936798096,
+ "step": 2064
+ },
+ {
+ "epoch": 28.682926829268293,
+ "grad_norm": 0.06522615998983383,
+ "learning_rate": 0.0002463006521405733,
+ "loss": 1.9298205375671387,
+ "step": 2065
+ },
+ {
+ "epoch": 28.696864111498257,
+ "grad_norm": 0.06601646542549133,
+ "learning_rate": 0.0002460389914606319,
+ "loss": 1.921603798866272,
+ "step": 2066
+ },
+ {
+ "epoch": 28.71080139372822,
+ "grad_norm": 0.06664327532052994,
+ "learning_rate": 0.00024577737667314615,
+ "loss": 1.9233787059783936,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72473867595819,
+ "grad_norm": 0.06673416495323181,
+ "learning_rate": 0.00024551580798889446,
+ "loss": 1.9446074962615967,
+ "step": 2068
+ },
+ {
+ "epoch": 28.738675958188153,
+ "grad_norm": 0.06593875586986542,
+ "learning_rate": 0.00024525428561861804,
+ "loss": 1.92313814163208,
+ "step": 2069
+ },
+ {
+ "epoch": 28.752613240418118,
+ "grad_norm": 0.06456844508647919,
+ "learning_rate": 0.0002449928097730207,
+ "loss": 1.944153070449829,
+ "step": 2070
+ },
+ {
+ "epoch": 28.766550522648085,
+ "grad_norm": 0.06549357622861862,
+ "learning_rate": 0.00024473138066276876,
+ "loss": 1.9299695491790771,
+ "step": 2071
+ },
+ {
+ "epoch": 28.78048780487805,
+ "grad_norm": 0.0650298222899437,
+ "learning_rate": 0.0002444699984984909,
+ "loss": 1.9266353845596313,
+ "step": 2072
+ },
+ {
+ "epoch": 28.794425087108014,
+ "grad_norm": 0.06307881325483322,
+ "learning_rate": 0.0002442086634907782,
+ "loss": 1.9165664911270142,
+ "step": 2073
+ },
+ {
+ "epoch": 28.808362369337978,
+ "grad_norm": 0.06324006617069244,
+ "learning_rate": 0.00024394737585018328,
+ "loss": 1.9054509401321411,
+ "step": 2074
+ },
+ {
+ "epoch": 28.822299651567945,
+ "grad_norm": 0.06384851038455963,
+ "learning_rate": 0.00024368613578722113,
+ "loss": 1.9158889055252075,
+ "step": 2075
+ },
+ {
+ "epoch": 28.83623693379791,
+ "grad_norm": 0.06377598643302917,
+ "learning_rate": 0.00024342494351236799,
+ "loss": 1.919345736503601,
+ "step": 2076
+ },
+ {
+ "epoch": 28.850174216027874,
+ "grad_norm": 0.0630112960934639,
+ "learning_rate": 0.0002431637992360618,
+ "loss": 1.935530662536621,
+ "step": 2077
+ },
+ {
+ "epoch": 28.86411149825784,
+ "grad_norm": 0.06481339782476425,
+ "learning_rate": 0.00024290270316870184,
+ "loss": 1.927825927734375,
+ "step": 2078
+ },
+ {
+ "epoch": 28.878048780487806,
+ "grad_norm": 0.06289646029472351,
+ "learning_rate": 0.0002426416555206484,
+ "loss": 1.9241056442260742,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89198606271777,
+ "grad_norm": 0.06385444849729538,
+ "learning_rate": 0.000242380656502223,
+ "loss": 1.9496092796325684,
+ "step": 2080
+ },
+ {
+ "epoch": 28.905923344947734,
+ "grad_norm": 0.06434157490730286,
+ "learning_rate": 0.00024211970632370756,
+ "loss": 1.945327639579773,
+ "step": 2081
+ },
+ {
+ "epoch": 28.9198606271777,
+ "grad_norm": 0.06392986327409744,
+ "learning_rate": 0.0002418588051953453,
+ "loss": 1.935096025466919,
+ "step": 2082
+ },
+ {
+ "epoch": 28.933797909407666,
+ "grad_norm": 0.06517285853624344,
+ "learning_rate": 0.0002415979533273392,
+ "loss": 1.9311943054199219,
+ "step": 2083
+ },
+ {
+ "epoch": 28.94773519163763,
+ "grad_norm": 0.06618054956197739,
+ "learning_rate": 0.0002413371509298531,
+ "loss": 1.9326963424682617,
+ "step": 2084
+ },
+ {
+ "epoch": 28.961672473867594,
+ "grad_norm": 0.06552256643772125,
+ "learning_rate": 0.00024107639821301078,
+ "loss": 1.918696403503418,
+ "step": 2085
+ },
+ {
+ "epoch": 28.975609756097562,
+ "grad_norm": 0.06556595861911774,
+ "learning_rate": 0.00024081569538689587,
+ "loss": 1.9261362552642822,
+ "step": 2086
+ },
+ {
+ "epoch": 28.989547038327526,
+ "grad_norm": 0.06585165858268738,
+ "learning_rate": 0.0002405550426615521,
+ "loss": 1.9310712814331055,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.053358353674411774,
+ "learning_rate": 0.00024029444024698248,
+ "loss": 1.4310487508773804,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 0.6385146975517273,
+ "eval_runtime": 37.1743,
+ "eval_samples_per_second": 65.691,
+ "eval_steps_per_second": 0.538,
+ "step": 2088
+ },
+ {
+ "epoch": 29.013937282229964,
+ "grad_norm": 0.06348510086536407,
+ "learning_rate": 0.00024003388835314981,
+ "loss": 1.902433156967163,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027874564459932,
+ "grad_norm": 0.06517558544874191,
+ "learning_rate": 0.00023977338718997595,
+ "loss": 1.9010097980499268,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041811846689896,
+ "grad_norm": 0.06065843999385834,
+ "learning_rate": 0.00023951293696734195,
+ "loss": 1.8971004486083984,
+ "step": 2091
+ },
+ {
+ "epoch": 29.05574912891986,
+ "grad_norm": 0.06288564950227737,
+ "learning_rate": 0.00023925253789508806,
+ "loss": 1.895255208015442,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069686411149824,
+ "grad_norm": 0.06176576018333435,
+ "learning_rate": 0.00023899219018301286,
+ "loss": 1.895385503768921,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083623693379792,
+ "grad_norm": 0.06371054798364639,
+ "learning_rate": 0.00023873189404087405,
+ "loss": 1.8836419582366943,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097560975609756,
+ "grad_norm": 0.06175517290830612,
+ "learning_rate": 0.00023847164967838726,
+ "loss": 1.8960576057434082,
+ "step": 2095
+ },
+ {
+ "epoch": 29.11149825783972,
+ "grad_norm": 0.06139659136533737,
+ "learning_rate": 0.00023821145730522692,
+ "loss": 1.8820221424102783,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125435540069688,
+ "grad_norm": 0.06477366387844086,
+ "learning_rate": 0.0002379513171310251,
+ "loss": 1.8959964513778687,
+ "step": 2097
+ },
+ {
+ "epoch": 29.139372822299652,
+ "grad_norm": 0.060843080282211304,
+ "learning_rate": 0.00023769122936537207,
+ "loss": 1.8921177387237549,
+ "step": 2098
+ },
+ {
+ "epoch": 29.153310104529616,
+ "grad_norm": 0.06286641955375671,
+ "learning_rate": 0.00023743119421781614,
+ "loss": 1.883134365081787,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16724738675958,
+ "grad_norm": 0.0616721510887146,
+ "learning_rate": 0.00023717121189786256,
+ "loss": 1.8961443901062012,
+ "step": 2100
+ },
+ {
+ "epoch": 29.181184668989548,
+ "grad_norm": 0.06490568071603775,
+ "learning_rate": 0.00023691128261497463,
+ "loss": 1.8786497116088867,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195121951219512,
+ "grad_norm": 0.06612647324800491,
+ "learning_rate": 0.0002366514065785725,
+ "loss": 1.8977265357971191,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209059233449477,
+ "grad_norm": 0.0625205710530281,
+ "learning_rate": 0.00023639158399803382,
+ "loss": 1.8995720148086548,
+ "step": 2103
+ },
+ {
+ "epoch": 29.222996515679444,
+ "grad_norm": 0.0733620822429657,
+ "learning_rate": 0.0002361318150826927,
+ "loss": 1.896169662475586,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23693379790941,
+ "grad_norm": 0.0632617399096489,
+ "learning_rate": 0.0002358721000418404,
+ "loss": 1.8905175924301147,
+ "step": 2105
+ },
+ {
+ "epoch": 29.250871080139373,
+ "grad_norm": 0.06658294796943665,
+ "learning_rate": 0.00023561243908472472,
+ "loss": 1.9076403379440308,
+ "step": 2106
+ },
+ {
+ "epoch": 29.264808362369337,
+ "grad_norm": 0.066060371696949,
+ "learning_rate": 0.00023535283242054954,
+ "loss": 1.8913660049438477,
+ "step": 2107
+ },
+ {
+ "epoch": 29.278745644599304,
+ "grad_norm": 0.0640917718410492,
+ "learning_rate": 0.00023509328025847565,
+ "loss": 1.902782678604126,
+ "step": 2108
+ },
+ {
+ "epoch": 29.29268292682927,
+ "grad_norm": 0.06251244992017746,
+ "learning_rate": 0.00023483378280761907,
+ "loss": 1.8909555673599243,
+ "step": 2109
+ },
+ {
+ "epoch": 29.306620209059233,
+ "grad_norm": 0.06345900148153305,
+ "learning_rate": 0.0002345743402770527,
+ "loss": 1.8921617269515991,
+ "step": 2110
+ },
+ {
+ "epoch": 29.320557491289197,
+ "grad_norm": 0.0616324357688427,
+ "learning_rate": 0.0002343149528758042,
+ "loss": 1.908210277557373,
+ "step": 2111
+ },
+ {
+ "epoch": 29.334494773519165,
+ "grad_norm": 0.06260500848293304,
+ "learning_rate": 0.00023405562081285766,
+ "loss": 1.8987236022949219,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34843205574913,
+ "grad_norm": 0.06122080609202385,
+ "learning_rate": 0.0002337963442971522,
+ "loss": 1.8801190853118896,
+ "step": 2113
+ },
+ {
+ "epoch": 29.362369337979093,
+ "grad_norm": 0.06256433576345444,
+ "learning_rate": 0.00023353712353758212,
+ "loss": 1.8950425386428833,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37630662020906,
+ "grad_norm": 0.06358595192432404,
+ "learning_rate": 0.00023327795874299704,
+ "loss": 1.8783059120178223,
+ "step": 2115
+ },
+ {
+ "epoch": 29.390243902439025,
+ "grad_norm": 0.06162576004862785,
+ "learning_rate": 0.0002330188501222012,
+ "loss": 1.9105693101882935,
+ "step": 2116
+ },
+ {
+ "epoch": 29.40418118466899,
+ "grad_norm": 0.06342068314552307,
+ "learning_rate": 0.0002327597978839538,
+ "loss": 1.90647554397583,
+ "step": 2117
+ },
+ {
+ "epoch": 29.418118466898953,
+ "grad_norm": 0.06257889419794083,
+ "learning_rate": 0.00023250080223696852,
+ "loss": 1.9060969352722168,
+ "step": 2118
+ },
+ {
+ "epoch": 29.43205574912892,
+ "grad_norm": 0.06276524066925049,
+ "learning_rate": 0.00023224186338991352,
+ "loss": 1.9064395427703857,
+ "step": 2119
+ },
+ {
+ "epoch": 29.445993031358885,
+ "grad_norm": 0.06155265495181084,
+ "learning_rate": 0.0002319829815514112,
+ "loss": 1.906682014465332,
+ "step": 2120
+ },
+ {
+ "epoch": 29.45993031358885,
+ "grad_norm": 0.06252801418304443,
+ "learning_rate": 0.00023172415693003789,
+ "loss": 1.9077496528625488,
+ "step": 2121
+ },
+ {
+ "epoch": 29.473867595818817,
+ "grad_norm": 0.06420299410820007,
+ "learning_rate": 0.000231465389734324,
+ "loss": 1.9100978374481201,
+ "step": 2122
+ },
+ {
+ "epoch": 29.48780487804878,
+ "grad_norm": 0.06297800689935684,
+ "learning_rate": 0.00023120668017275346,
+ "loss": 1.8885812759399414,
+ "step": 2123
+ },
+ {
+ "epoch": 29.501742160278745,
+ "grad_norm": 0.06437410414218903,
+ "learning_rate": 0.00023094802845376403,
+ "loss": 1.9056107997894287,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51567944250871,
+ "grad_norm": 0.06496672332286835,
+ "learning_rate": 0.00023068943478574662,
+ "loss": 1.8950653076171875,
+ "step": 2125
+ },
+ {
+ "epoch": 29.529616724738677,
+ "grad_norm": 0.06434459984302521,
+ "learning_rate": 0.00023043089937704541,
+ "loss": 1.9208341836929321,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54355400696864,
+ "grad_norm": 0.0647054985165596,
+ "learning_rate": 0.00023017242243595796,
+ "loss": 1.9089730978012085,
+ "step": 2127
+ },
+ {
+ "epoch": 29.557491289198605,
+ "grad_norm": 0.06392117589712143,
+ "learning_rate": 0.00022991400417073427,
+ "loss": 1.895066261291504,
+ "step": 2128
+ },
+ {
+ "epoch": 29.571428571428573,
+ "grad_norm": 0.0638301819562912,
+ "learning_rate": 0.00022965564478957739,
+ "loss": 1.9062610864639282,
+ "step": 2129
+ },
+ {
+ "epoch": 29.585365853658537,
+ "grad_norm": 0.06492150574922562,
+ "learning_rate": 0.0002293973445006427,
+ "loss": 1.9190309047698975,
+ "step": 2130
+ },
+ {
+ "epoch": 29.5993031358885,
+ "grad_norm": 0.06228528916835785,
+ "learning_rate": 0.00022913910351203816,
+ "loss": 1.9015860557556152,
+ "step": 2131
+ },
+ {
+ "epoch": 29.613240418118465,
+ "grad_norm": 0.06274473667144775,
+ "learning_rate": 0.00022888092203182377,
+ "loss": 1.9092034101486206,
+ "step": 2132
+ },
+ {
+ "epoch": 29.627177700348433,
+ "grad_norm": 0.06517026573419571,
+ "learning_rate": 0.00022862280026801182,
+ "loss": 1.9104348421096802,
+ "step": 2133
+ },
+ {
+ "epoch": 29.641114982578397,
+ "grad_norm": 0.06522919237613678,
+ "learning_rate": 0.00022836473842856623,
+ "loss": 1.906738042831421,
+ "step": 2134
+ },
+ {
+ "epoch": 29.65505226480836,
+ "grad_norm": 0.06278976052999496,
+ "learning_rate": 0.00022810673672140272,
+ "loss": 1.9056813716888428,
+ "step": 2135
+ },
+ {
+ "epoch": 29.66898954703833,
+ "grad_norm": 0.06465253978967667,
+ "learning_rate": 0.0002278487953543889,
+ "loss": 1.9165875911712646,
+ "step": 2136
+ },
+ {
+ "epoch": 29.682926829268293,
+ "grad_norm": 0.0656580775976181,
+ "learning_rate": 0.00022759091453534308,
+ "loss": 1.9225130081176758,
+ "step": 2137
+ },
+ {
+ "epoch": 29.696864111498257,
+ "grad_norm": 0.0625176951289177,
+ "learning_rate": 0.00022733309447203553,
+ "loss": 1.9104106426239014,
+ "step": 2138
+ },
+ {
+ "epoch": 29.71080139372822,
+ "grad_norm": 0.06598987430334091,
+ "learning_rate": 0.00022707533537218695,
+ "loss": 1.9182713031768799,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72473867595819,
+ "grad_norm": 0.063861183822155,
+ "learning_rate": 0.00022681763744346938,
+ "loss": 1.9201741218566895,
+ "step": 2140
+ },
+ {
+ "epoch": 29.738675958188153,
+ "grad_norm": 0.065862737596035,
+ "learning_rate": 0.00022656000089350524,
+ "loss": 1.8971748352050781,
+ "step": 2141
+ },
+ {
+ "epoch": 29.752613240418118,
+ "grad_norm": 0.06543151289224625,
+ "learning_rate": 0.00022630242592986766,
+ "loss": 1.9031867980957031,
+ "step": 2142
+ },
+ {
+ "epoch": 29.766550522648085,
+ "grad_norm": 0.06437384337186813,
+ "learning_rate": 0.0002260449127600803,
+ "loss": 1.9082727432250977,
+ "step": 2143
+ },
+ {
+ "epoch": 29.78048780487805,
+ "grad_norm": 0.06707995384931564,
+ "learning_rate": 0.0002257874615916166,
+ "loss": 1.920899748802185,
+ "step": 2144
+ },
+ {
+ "epoch": 29.794425087108014,
+ "grad_norm": 0.06488589942455292,
+ "learning_rate": 0.00022553007263190067,
+ "loss": 1.901809811592102,
+ "step": 2145
+ },
+ {
+ "epoch": 29.808362369337978,
+ "grad_norm": 0.06581971049308777,
+ "learning_rate": 0.00022527274608830574,
+ "loss": 1.9137091636657715,
+ "step": 2146
+ },
+ {
+ "epoch": 29.822299651567945,
+ "grad_norm": 0.06502900272607803,
+ "learning_rate": 0.0002250154821681555,
+ "loss": 1.9089921712875366,
+ "step": 2147
+ },
+ {
+ "epoch": 29.83623693379791,
+ "grad_norm": 0.06428463757038116,
+ "learning_rate": 0.0002247582810787227,
+ "loss": 1.907055139541626,
+ "step": 2148
+ },
+ {
+ "epoch": 29.850174216027874,
+ "grad_norm": 0.06490083038806915,
+ "learning_rate": 0.00022450114302722957,
+ "loss": 1.8931684494018555,
+ "step": 2149
+ },
+ {
+ "epoch": 29.86411149825784,
+ "grad_norm": 0.06519338488578796,
+ "learning_rate": 0.0002242440682208477,
+ "loss": 1.924349308013916,
+ "step": 2150
+ },
+ {
+ "epoch": 29.878048780487806,
+ "grad_norm": 0.06435994058847427,
+ "learning_rate": 0.00022398705686669748,
+ "loss": 1.9001131057739258,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89198606271777,
+ "grad_norm": 0.06389366835355759,
+ "learning_rate": 0.0002237301091718485,
+ "loss": 1.9222545623779297,
+ "step": 2152
+ },
+ {
+ "epoch": 29.905923344947734,
+ "grad_norm": 0.06635434180498123,
+ "learning_rate": 0.00022347322534331865,
+ "loss": 1.9115610122680664,
+ "step": 2153
+ },
+ {
+ "epoch": 29.9198606271777,
+ "grad_norm": 0.06362872570753098,
+ "learning_rate": 0.00022321640558807488,
+ "loss": 1.9033440351486206,
+ "step": 2154
+ },
+ {
+ "epoch": 29.933797909407666,
+ "grad_norm": 0.06656860560178757,
+ "learning_rate": 0.00022295965011303188,
+ "loss": 1.9024994373321533,
+ "step": 2155
+ },
+ {
+ "epoch": 29.94773519163763,
+ "grad_norm": 0.06287530809640884,
+ "learning_rate": 0.00022270295912505317,
+ "loss": 1.9141626358032227,
+ "step": 2156
+ },
+ {
+ "epoch": 29.961672473867594,
+ "grad_norm": 0.06594341993331909,
+ "learning_rate": 0.00022244633283095,
+ "loss": 1.9281123876571655,
+ "step": 2157
+ },
+ {
+ "epoch": 29.975609756097562,
+ "grad_norm": 0.06367179751396179,
+ "learning_rate": 0.0002221897714374814,
+ "loss": 1.9032683372497559,
+ "step": 2158
+ },
+ {
+ "epoch": 29.989547038327526,
+ "grad_norm": 0.06714081764221191,
+ "learning_rate": 0.00022193327515135445,
+ "loss": 1.9118046760559082,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.05437680333852768,
+ "learning_rate": 0.00022167684417922337,
+ "loss": 1.4319559335708618,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 0.6395835280418396,
+ "eval_runtime": 47.0869,
+ "eval_samples_per_second": 51.862,
+ "eval_steps_per_second": 0.425,
+ "step": 2160
+ },
+ {
+ "epoch": 30.013937282229964,
+ "grad_norm": 0.061811935156583786,
+ "learning_rate": 0.00022142047872769014,
+ "loss": 1.8821682929992676,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027874564459932,
+ "grad_norm": 0.060412414371967316,
+ "learning_rate": 0.00022116417900330365,
+ "loss": 1.8725709915161133,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041811846689896,
+ "grad_norm": 0.06219486892223358,
+ "learning_rate": 0.00022090794521255997,
+ "loss": 1.8726820945739746,
+ "step": 2163
+ },
+ {
+ "epoch": 30.05574912891986,
+ "grad_norm": 0.061067480593919754,
+ "learning_rate": 0.00022065177756190214,
+ "loss": 1.8728303909301758,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069686411149824,
+ "grad_norm": 0.05880453437566757,
+ "learning_rate": 0.00022039567625771968,
+ "loss": 1.8877463340759277,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083623693379792,
+ "grad_norm": 0.06127414479851723,
+ "learning_rate": 0.0002201396415063489,
+ "loss": 1.8891685009002686,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097560975609756,
+ "grad_norm": 0.05931060016155243,
+ "learning_rate": 0.00021988367351407227,
+ "loss": 1.8739129304885864,
+ "step": 2167
+ },
+ {
+ "epoch": 30.11149825783972,
+ "grad_norm": 0.06235767528414726,
+ "learning_rate": 0.00021962777248711872,
+ "loss": 1.8802381753921509,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125435540069688,
+ "grad_norm": 0.05874861031770706,
+ "learning_rate": 0.00021937193863166292,
+ "loss": 1.8802909851074219,
+ "step": 2169
+ },
+ {
+ "epoch": 30.139372822299652,
+ "grad_norm": 0.061103034764528275,
+ "learning_rate": 0.00021911617215382564,
+ "loss": 1.884058952331543,
+ "step": 2170
+ },
+ {
+ "epoch": 30.153310104529616,
+ "grad_norm": 0.05980055406689644,
+ "learning_rate": 0.00021886047325967348,
+ "loss": 1.8738408088684082,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16724738675958,
+ "grad_norm": 0.061332255601882935,
+ "learning_rate": 0.00021860484215521805,
+ "loss": 1.8697137832641602,
+ "step": 2172
+ },
+ {
+ "epoch": 30.181184668989548,
+ "grad_norm": 0.05897640436887741,
+ "learning_rate": 0.00021834927904641708,
+ "loss": 1.887247920036316,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195121951219512,
+ "grad_norm": 0.06039821356534958,
+ "learning_rate": 0.00021809378413917296,
+ "loss": 1.8843746185302734,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209059233449477,
+ "grad_norm": 0.06140084192156792,
+ "learning_rate": 0.00021783835763933344,
+ "loss": 1.8834288120269775,
+ "step": 2175
+ },
+ {
+ "epoch": 30.222996515679444,
+ "grad_norm": 0.06152097508311272,
+ "learning_rate": 0.0002175829997526909,
+ "loss": 1.881451964378357,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23693379790941,
+ "grad_norm": 0.06128741800785065,
+ "learning_rate": 0.0002173277106849826,
+ "loss": 1.8756582736968994,
+ "step": 2177
+ },
+ {
+ "epoch": 30.250871080139373,
+ "grad_norm": 0.0608304888010025,
+ "learning_rate": 0.0002170724906418905,
+ "loss": 1.8877084255218506,
+ "step": 2178
+ },
+ {
+ "epoch": 30.264808362369337,
+ "grad_norm": 0.05938803777098656,
+ "learning_rate": 0.00021681733982904046,
+ "loss": 1.8796486854553223,
+ "step": 2179
+ },
+ {
+ "epoch": 30.278745644599304,
+ "grad_norm": 0.06101052463054657,
+ "learning_rate": 0.00021656225845200332,
+ "loss": 1.8800137042999268,
+ "step": 2180
+ },
+ {
+ "epoch": 30.29268292682927,
+ "grad_norm": 0.06140942499041557,
+ "learning_rate": 0.0002163072467162931,
+ "loss": 1.907020092010498,
+ "step": 2181
+ },
+ {
+ "epoch": 30.306620209059233,
+ "grad_norm": 0.06322148442268372,
+ "learning_rate": 0.00021605230482736845,
+ "loss": 1.8778784275054932,
+ "step": 2182
+ },
+ {
+ "epoch": 30.320557491289197,
+ "grad_norm": 0.06144942715764046,
+ "learning_rate": 0.00021579743299063122,
+ "loss": 1.8906503915786743,
+ "step": 2183
+ },
+ {
+ "epoch": 30.334494773519165,
+ "grad_norm": 0.06323464214801788,
+ "learning_rate": 0.00021554263141142726,
+ "loss": 1.892274260520935,
+ "step": 2184
+ },
+ {
+ "epoch": 30.34843205574913,
+ "grad_norm": 0.06276610493659973,
+ "learning_rate": 0.00021528790029504548,
+ "loss": 1.8861984014511108,
+ "step": 2185
+ },
+ {
+ "epoch": 30.362369337979093,
+ "grad_norm": 0.06291946768760681,
+ "learning_rate": 0.00021503323984671814,
+ "loss": 1.8812167644500732,
+ "step": 2186
+ },
+ {
+ "epoch": 30.37630662020906,
+ "grad_norm": 0.06449956446886063,
+ "learning_rate": 0.00021477865027162067,
+ "loss": 1.8725450038909912,
+ "step": 2187
+ },
+ {
+ "epoch": 30.390243902439025,
+ "grad_norm": 0.062199078500270844,
+ "learning_rate": 0.0002145241317748711,
+ "loss": 1.8660006523132324,
+ "step": 2188
+ },
+ {
+ "epoch": 30.40418118466899,
+ "grad_norm": 0.06578577309846878,
+ "learning_rate": 0.0002142696845615306,
+ "loss": 1.8998687267303467,
+ "step": 2189
+ },
+ {
+ "epoch": 30.418118466898953,
+ "grad_norm": 0.06263040006160736,
+ "learning_rate": 0.0002140153088366024,
+ "loss": 1.8895599842071533,
+ "step": 2190
+ },
+ {
+ "epoch": 30.43205574912892,
+ "grad_norm": 0.06379809230566025,
+ "learning_rate": 0.00021376100480503276,
+ "loss": 1.888756275177002,
+ "step": 2191
+ },
+ {
+ "epoch": 30.445993031358885,
+ "grad_norm": 0.06144513934850693,
+ "learning_rate": 0.00021350677267170973,
+ "loss": 1.8797111511230469,
+ "step": 2192
+ },
+ {
+ "epoch": 30.45993031358885,
+ "grad_norm": 0.06551753729581833,
+ "learning_rate": 0.00021325261264146342,
+ "loss": 1.8898788690567017,
+ "step": 2193
+ },
+ {
+ "epoch": 30.473867595818817,
+ "grad_norm": 0.0634821429848671,
+ "learning_rate": 0.00021299852491906616,
+ "loss": 1.9081072807312012,
+ "step": 2194
+ },
+ {
+ "epoch": 30.48780487804878,
+ "grad_norm": 0.06261540949344635,
+ "learning_rate": 0.00021274450970923167,
+ "loss": 1.8862106800079346,
+ "step": 2195
+ },
+ {
+ "epoch": 30.501742160278745,
+ "grad_norm": 0.06235577166080475,
+ "learning_rate": 0.0002124905672166156,
+ "loss": 1.8701283931732178,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51567944250871,
+ "grad_norm": 0.06507014483213425,
+ "learning_rate": 0.0002122366976458146,
+ "loss": 1.906468152999878,
+ "step": 2197
+ },
+ {
+ "epoch": 30.529616724738677,
+ "grad_norm": 0.0635584145784378,
+ "learning_rate": 0.00021198290120136702,
+ "loss": 1.886523723602295,
+ "step": 2198
+ },
+ {
+ "epoch": 30.54355400696864,
+ "grad_norm": 0.06394219398498535,
+ "learning_rate": 0.0002117291780877519,
+ "loss": 1.8687143325805664,
+ "step": 2199
+ },
+ {
+ "epoch": 30.557491289198605,
+ "grad_norm": 0.06521911174058914,
+ "learning_rate": 0.00021147552850938941,
+ "loss": 1.885088324546814,
+ "step": 2200
+ },
+ {
+ "epoch": 30.571428571428573,
+ "grad_norm": 0.0646066814661026,
+ "learning_rate": 0.0002112219526706406,
+ "loss": 1.8981271982192993,
+ "step": 2201
+ },
+ {
+ "epoch": 30.585365853658537,
+ "grad_norm": 0.06708912551403046,
+ "learning_rate": 0.00021096845077580675,
+ "loss": 1.8949990272521973,
+ "step": 2202
+ },
+ {
+ "epoch": 30.5993031358885,
+ "grad_norm": 0.0656600221991539,
+ "learning_rate": 0.0002107150230291299,
+ "loss": 1.8876829147338867,
+ "step": 2203
+ },
+ {
+ "epoch": 30.613240418118465,
+ "grad_norm": 0.06315416842699051,
+ "learning_rate": 0.00021046166963479204,
+ "loss": 1.8786557912826538,
+ "step": 2204
+ },
+ {
+ "epoch": 30.627177700348433,
+ "grad_norm": 0.06558752804994583,
+ "learning_rate": 0.00021020839079691553,
+ "loss": 1.889142632484436,
+ "step": 2205
+ },
+ {
+ "epoch": 30.641114982578397,
+ "grad_norm": 0.06307908147573471,
+ "learning_rate": 0.00020995518671956256,
+ "loss": 1.8903149366378784,
+ "step": 2206
+ },
+ {
+ "epoch": 30.65505226480836,
+ "grad_norm": 0.06145390495657921,
+ "learning_rate": 0.00020970205760673493,
+ "loss": 1.8872840404510498,
+ "step": 2207
+ },
+ {
+ "epoch": 30.66898954703833,
+ "grad_norm": 0.06402356922626495,
+ "learning_rate": 0.00020944900366237453,
+ "loss": 1.8805838823318481,
+ "step": 2208
+ },
+ {
+ "epoch": 30.682926829268293,
+ "grad_norm": 0.06330732256174088,
+ "learning_rate": 0.00020919602509036195,
+ "loss": 1.8881486654281616,
+ "step": 2209
+ },
+ {
+ "epoch": 30.696864111498257,
+ "grad_norm": 0.06465929001569748,
+ "learning_rate": 0.0002089431220945178,
+ "loss": 1.877720594406128,
+ "step": 2210
+ },
+ {
+ "epoch": 30.71080139372822,
+ "grad_norm": 0.06697797030210495,
+ "learning_rate": 0.00020869029487860126,
+ "loss": 1.8768590688705444,
+ "step": 2211
+ },
+ {
+ "epoch": 30.72473867595819,
+ "grad_norm": 0.06605999171733856,
+ "learning_rate": 0.00020843754364631068,
+ "loss": 1.8825514316558838,
+ "step": 2212
+ },
+ {
+ "epoch": 30.738675958188153,
+ "grad_norm": 0.0656205341219902,
+ "learning_rate": 0.0002081848686012832,
+ "loss": 1.8852055072784424,
+ "step": 2213
+ },
+ {
+ "epoch": 30.752613240418118,
+ "grad_norm": 0.06713110208511353,
+ "learning_rate": 0.00020793226994709446,
+ "loss": 1.882007360458374,
+ "step": 2214
+ },
+ {
+ "epoch": 30.766550522648085,
+ "grad_norm": 0.06526081264019012,
+ "learning_rate": 0.0002076797478872588,
+ "loss": 1.8892399072647095,
+ "step": 2215
+ },
+ {
+ "epoch": 30.78048780487805,
+ "grad_norm": 0.06758946180343628,
+ "learning_rate": 0.00020742730262522844,
+ "loss": 1.8980051279067993,
+ "step": 2216
+ },
+ {
+ "epoch": 30.794425087108014,
+ "grad_norm": 0.06784503906965256,
+ "learning_rate": 0.00020717493436439433,
+ "loss": 1.8907029628753662,
+ "step": 2217
+ },
+ {
+ "epoch": 30.808362369337978,
+ "grad_norm": 0.06756821274757385,
+ "learning_rate": 0.00020692264330808455,
+ "loss": 1.8950631618499756,
+ "step": 2218
+ },
+ {
+ "epoch": 30.822299651567945,
+ "grad_norm": 0.06609930098056793,
+ "learning_rate": 0.00020667042965956587,
+ "loss": 1.8887443542480469,
+ "step": 2219
+ },
+ {
+ "epoch": 30.83623693379791,
+ "grad_norm": 0.06700558215379715,
+ "learning_rate": 0.00020641829362204195,
+ "loss": 1.900990605354309,
+ "step": 2220
+ },
+ {
+ "epoch": 30.850174216027874,
+ "grad_norm": 0.06835924834012985,
+ "learning_rate": 0.00020616623539865446,
+ "loss": 1.881005048751831,
+ "step": 2221
+ },
+ {
+ "epoch": 30.86411149825784,
+ "grad_norm": 0.06574281305074692,
+ "learning_rate": 0.00020591425519248213,
+ "loss": 1.8976192474365234,
+ "step": 2222
+ },
+ {
+ "epoch": 30.878048780487806,
+ "grad_norm": 0.06529807299375534,
+ "learning_rate": 0.00020566235320654069,
+ "loss": 1.8866150379180908,
+ "step": 2223
+ },
+ {
+ "epoch": 30.89198606271777,
+ "grad_norm": 0.06722450256347656,
+ "learning_rate": 0.00020541052964378323,
+ "loss": 1.9030026197433472,
+ "step": 2224
+ },
+ {
+ "epoch": 30.905923344947734,
+ "grad_norm": 0.06486845016479492,
+ "learning_rate": 0.00020515878470709928,
+ "loss": 1.8861298561096191,
+ "step": 2225
+ },
+ {
+ "epoch": 30.9198606271777,
+ "grad_norm": 0.06532816588878632,
+ "learning_rate": 0.00020490711859931545,
+ "loss": 1.893527626991272,
+ "step": 2226
+ },
+ {
+ "epoch": 30.933797909407666,
+ "grad_norm": 0.06626923382282257,
+ "learning_rate": 0.00020465553152319418,
+ "loss": 1.88838791847229,
+ "step": 2227
+ },
+ {
+ "epoch": 30.94773519163763,
+ "grad_norm": 0.0654103085398674,
+ "learning_rate": 0.00020440402368143492,
+ "loss": 1.9061450958251953,
+ "step": 2228
+ },
+ {
+ "epoch": 30.961672473867594,
+ "grad_norm": 0.06394780427217484,
+ "learning_rate": 0.00020415259527667299,
+ "loss": 1.908818244934082,
+ "step": 2229
+ },
+ {
+ "epoch": 30.975609756097562,
+ "grad_norm": 0.06630687415599823,
+ "learning_rate": 0.0002039012465114796,
+ "loss": 1.8836619853973389,
+ "step": 2230
+ },
+ {
+ "epoch": 30.989547038327526,
+ "grad_norm": 0.06586914509534836,
+ "learning_rate": 0.00020364997758836193,
+ "loss": 1.8967719078063965,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.05284066125750542,
+ "learning_rate": 0.00020339878870976287,
+ "loss": 1.4147136211395264,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 0.6414697170257568,
+ "eval_runtime": 39.9304,
+ "eval_samples_per_second": 61.156,
+ "eval_steps_per_second": 0.501,
+ "step": 2232
+ },
+ {
+ "epoch": 31.013937282229964,
+ "grad_norm": 0.060604438185691833,
+ "learning_rate": 0.00020314768007806077,
+ "loss": 1.8646475076675415,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027874564459932,
+ "grad_norm": 0.06078824773430824,
+ "learning_rate": 0.00020289665189556923,
+ "loss": 1.8648875951766968,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041811846689896,
+ "grad_norm": 0.06248131021857262,
+ "learning_rate": 0.00020264570436453707,
+ "loss": 1.8768644332885742,
+ "step": 2235
+ },
+ {
+ "epoch": 31.05574912891986,
+ "grad_norm": 0.06086263805627823,
+ "learning_rate": 0.00020239483768714843,
+ "loss": 1.870078682899475,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069686411149824,
+ "grad_norm": 0.060540031641721725,
+ "learning_rate": 0.0002021440520655219,
+ "loss": 1.8600138425827026,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083623693379792,
+ "grad_norm": 0.06146378070116043,
+ "learning_rate": 0.00020189334770171098,
+ "loss": 1.8661935329437256,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097560975609756,
+ "grad_norm": 0.06294050812721252,
+ "learning_rate": 0.00020164272479770352,
+ "loss": 1.8623647689819336,
+ "step": 2239
+ },
+ {
+ "epoch": 31.11149825783972,
+ "grad_norm": 0.06037621200084686,
+ "learning_rate": 0.00020139218355542203,
+ "loss": 1.854023814201355,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125435540069688,
+ "grad_norm": 0.0614016056060791,
+ "learning_rate": 0.000201141724176723,
+ "loss": 1.858170509338379,
+ "step": 2241
+ },
+ {
+ "epoch": 31.139372822299652,
+ "grad_norm": 0.062037430703639984,
+ "learning_rate": 0.0002008913468633969,
+ "loss": 1.8650360107421875,
+ "step": 2242
+ },
+ {
+ "epoch": 31.153310104529616,
+ "grad_norm": 0.05925912410020828,
+ "learning_rate": 0.00020064105181716847,
+ "loss": 1.8559834957122803,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16724738675958,
+ "grad_norm": 0.06082075089216232,
+ "learning_rate": 0.00020039083923969564,
+ "loss": 1.86753511428833,
+ "step": 2244
+ },
+ {
+ "epoch": 31.181184668989548,
+ "grad_norm": 0.06053556874394417,
+ "learning_rate": 0.0002001407093325704,
+ "loss": 1.859229326248169,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195121951219512,
+ "grad_norm": 0.059802569448947906,
+ "learning_rate": 0.0001998906622973177,
+ "loss": 1.8574810028076172,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209059233449477,
+ "grad_norm": 0.05929112061858177,
+ "learning_rate": 0.0001996406983353961,
+ "loss": 1.870527744293213,
+ "step": 2247
+ },
+ {
+ "epoch": 31.222996515679444,
+ "grad_norm": 0.05963680520653725,
+ "learning_rate": 0.0001993908176481969,
+ "loss": 1.8654029369354248,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23693379790941,
+ "grad_norm": 0.06305639445781708,
+ "learning_rate": 0.0001991410204370445,
+ "loss": 1.8621957302093506,
+ "step": 2249
+ },
+ {
+ "epoch": 31.250871080139373,
+ "grad_norm": 0.0604659803211689,
+ "learning_rate": 0.00019889130690319608,
+ "loss": 1.8467226028442383,
+ "step": 2250
+ },
+ {
+ "epoch": 31.264808362369337,
+ "grad_norm": 0.06070101633667946,
+ "learning_rate": 0.00019864167724784117,
+ "loss": 1.85858154296875,
+ "step": 2251
+ },
+ {
+ "epoch": 31.278745644599304,
+ "grad_norm": 0.06042332947254181,
+ "learning_rate": 0.00019839213167210213,
+ "loss": 1.860041618347168,
+ "step": 2252
+ },
+ {
+ "epoch": 31.29268292682927,
+ "grad_norm": 0.06108660250902176,
+ "learning_rate": 0.00019814267037703294,
+ "loss": 1.8745486736297607,
+ "step": 2253
+ },
+ {
+ "epoch": 31.306620209059233,
+ "grad_norm": 0.06323979049921036,
+ "learning_rate": 0.0001978932935636205,
+ "loss": 1.8638720512390137,
+ "step": 2254
+ },
+ {
+ "epoch": 31.320557491289197,
+ "grad_norm": 0.06100151315331459,
+ "learning_rate": 0.00019764400143278276,
+ "loss": 1.873995304107666,
+ "step": 2255
+ },
+ {
+ "epoch": 31.334494773519165,
+ "grad_norm": 0.06299260258674622,
+ "learning_rate": 0.00019739479418537018,
+ "loss": 1.856463074684143,
+ "step": 2256
+ },
+ {
+ "epoch": 31.34843205574913,
+ "grad_norm": 0.060268502682447433,
+ "learning_rate": 0.00019714567202216453,
+ "loss": 1.870614767074585,
+ "step": 2257
+ },
+ {
+ "epoch": 31.362369337979093,
+ "grad_norm": 0.06267309933900833,
+ "learning_rate": 0.00019689663514387896,
+ "loss": 1.8735413551330566,
+ "step": 2258
+ },
+ {
+ "epoch": 31.37630662020906,
+ "grad_norm": 0.0630616620182991,
+ "learning_rate": 0.00019664768375115798,
+ "loss": 1.87433660030365,
+ "step": 2259
+ },
+ {
+ "epoch": 31.390243902439025,
+ "grad_norm": 0.062905453145504,
+ "learning_rate": 0.00019639881804457723,
+ "loss": 1.8653037548065186,
+ "step": 2260
+ },
+ {
+ "epoch": 31.40418118466899,
+ "grad_norm": 0.061397816985845566,
+ "learning_rate": 0.00019615003822464342,
+ "loss": 1.8669100999832153,
+ "step": 2261
+ },
+ {
+ "epoch": 31.418118466898953,
+ "grad_norm": 0.06352730095386505,
+ "learning_rate": 0.00019590134449179371,
+ "loss": 1.8823096752166748,
+ "step": 2262
+ },
+ {
+ "epoch": 31.43205574912892,
+ "grad_norm": 0.06169911473989487,
+ "learning_rate": 0.00019565273704639648,
+ "loss": 1.8809747695922852,
+ "step": 2263
+ },
+ {
+ "epoch": 31.445993031358885,
+ "grad_norm": 0.06471487879753113,
+ "learning_rate": 0.00019540421608874994,
+ "loss": 1.8702677488327026,
+ "step": 2264
+ },
+ {
+ "epoch": 31.45993031358885,
+ "grad_norm": 0.062495868653059006,
+ "learning_rate": 0.0001951557818190831,
+ "loss": 1.881035566329956,
+ "step": 2265
+ },
+ {
+ "epoch": 31.473867595818817,
+ "grad_norm": 0.061863191425800323,
+ "learning_rate": 0.00019490743443755504,
+ "loss": 1.8691881895065308,
+ "step": 2266
+ },
+ {
+ "epoch": 31.48780487804878,
+ "grad_norm": 0.06295126676559448,
+ "learning_rate": 0.0001946591741442546,
+ "loss": 1.866331696510315,
+ "step": 2267
+ },
+ {
+ "epoch": 31.501742160278745,
+ "grad_norm": 0.06404458731412888,
+ "learning_rate": 0.00019441100113920076,
+ "loss": 1.8709323406219482,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51567944250871,
+ "grad_norm": 0.06424364447593689,
+ "learning_rate": 0.00019416291562234192,
+ "loss": 1.860987901687622,
+ "step": 2269
+ },
+ {
+ "epoch": 31.529616724738677,
+ "grad_norm": 0.06346628814935684,
+ "learning_rate": 0.00019391491779355608,
+ "loss": 1.8733528852462769,
+ "step": 2270
+ },
+ {
+ "epoch": 31.54355400696864,
+ "grad_norm": 0.06380122900009155,
+ "learning_rate": 0.00019366700785265065,
+ "loss": 1.8605754375457764,
+ "step": 2271
+ },
+ {
+ "epoch": 31.557491289198605,
+ "grad_norm": 0.06407288461923599,
+ "learning_rate": 0.0001934191859993622,
+ "loss": 1.865129828453064,
+ "step": 2272
+ },
+ {
+ "epoch": 31.571428571428573,
+ "grad_norm": 0.06177213042974472,
+ "learning_rate": 0.00019317145243335642,
+ "loss": 1.8731110095977783,
+ "step": 2273
+ },
+ {
+ "epoch": 31.585365853658537,
+ "grad_norm": 0.0677371472120285,
+ "learning_rate": 0.0001929238073542276,
+ "loss": 1.8737413883209229,
+ "step": 2274
+ },
+ {
+ "epoch": 31.5993031358885,
+ "grad_norm": 0.0647529736161232,
+ "learning_rate": 0.00019267625096149903,
+ "loss": 1.867060661315918,
+ "step": 2275
+ },
+ {
+ "epoch": 31.613240418118465,
+ "grad_norm": 0.06501344591379166,
+ "learning_rate": 0.00019242878345462227,
+ "loss": 1.8647403717041016,
+ "step": 2276
+ },
+ {
+ "epoch": 31.627177700348433,
+ "grad_norm": 0.06636765599250793,
+ "learning_rate": 0.00019218140503297765,
+ "loss": 1.8598473072052002,
+ "step": 2277
+ },
+ {
+ "epoch": 31.641114982578397,
+ "grad_norm": 0.06625733524560928,
+ "learning_rate": 0.00019193411589587332,
+ "loss": 1.8797805309295654,
+ "step": 2278
+ },
+ {
+ "epoch": 31.65505226480836,
+ "grad_norm": 0.0652196854352951,
+ "learning_rate": 0.00019168691624254564,
+ "loss": 1.8820933103561401,
+ "step": 2279
+ },
+ {
+ "epoch": 31.66898954703833,
+ "grad_norm": 0.06613790988922119,
+ "learning_rate": 0.00019143980627215915,
+ "loss": 1.8773422241210938,
+ "step": 2280
+ },
+ {
+ "epoch": 31.682926829268293,
+ "grad_norm": 0.0657401978969574,
+ "learning_rate": 0.00019119278618380555,
+ "loss": 1.8706395626068115,
+ "step": 2281
+ },
+ {
+ "epoch": 31.696864111498257,
+ "grad_norm": 0.06442514061927795,
+ "learning_rate": 0.00019094585617650476,
+ "loss": 1.878519892692566,
+ "step": 2282
+ },
+ {
+ "epoch": 31.71080139372822,
+ "grad_norm": 0.06672950834035873,
+ "learning_rate": 0.00019069901644920366,
+ "loss": 1.876173973083496,
+ "step": 2283
+ },
+ {
+ "epoch": 31.72473867595819,
+ "grad_norm": 0.06492309272289276,
+ "learning_rate": 0.00019045226720077667,
+ "loss": 1.8842449188232422,
+ "step": 2284
+ },
+ {
+ "epoch": 31.738675958188153,
+ "grad_norm": 0.06469793617725372,
+ "learning_rate": 0.0001902056086300251,
+ "loss": 1.8798532485961914,
+ "step": 2285
+ },
+ {
+ "epoch": 31.752613240418118,
+ "grad_norm": 0.06608608365058899,
+ "learning_rate": 0.0001899590409356773,
+ "loss": 1.866950511932373,
+ "step": 2286
+ },
+ {
+ "epoch": 31.766550522648085,
+ "grad_norm": 0.06483180820941925,
+ "learning_rate": 0.00018971256431638854,
+ "loss": 1.873096227645874,
+ "step": 2287
+ },
+ {
+ "epoch": 31.78048780487805,
+ "grad_norm": 0.06410029530525208,
+ "learning_rate": 0.00018946617897074041,
+ "loss": 1.8798564672470093,
+ "step": 2288
+ },
+ {
+ "epoch": 31.794425087108014,
+ "grad_norm": 0.06440483778715134,
+ "learning_rate": 0.0001892198850972413,
+ "loss": 1.8675113916397095,
+ "step": 2289
+ },
+ {
+ "epoch": 31.808362369337978,
+ "grad_norm": 0.06469769030809402,
+ "learning_rate": 0.00018897368289432553,
+ "loss": 1.8644737005233765,
+ "step": 2290
+ },
+ {
+ "epoch": 31.822299651567945,
+ "grad_norm": 0.06366699188947678,
+ "learning_rate": 0.00018872757256035403,
+ "loss": 1.8632454872131348,
+ "step": 2291
+ },
+ {
+ "epoch": 31.83623693379791,
+ "grad_norm": 0.06567682325839996,
+ "learning_rate": 0.00018848155429361323,
+ "loss": 1.8711936473846436,
+ "step": 2292
+ },
+ {
+ "epoch": 31.850174216027874,
+ "grad_norm": 0.06415718793869019,
+ "learning_rate": 0.00018823562829231567,
+ "loss": 1.8836743831634521,
+ "step": 2293
+ },
+ {
+ "epoch": 31.86411149825784,
+ "grad_norm": 0.06531377136707306,
+ "learning_rate": 0.0001879897947545996,
+ "loss": 1.8687281608581543,
+ "step": 2294
+ },
+ {
+ "epoch": 31.878048780487806,
+ "grad_norm": 0.06425580382347107,
+ "learning_rate": 0.00018774405387852848,
+ "loss": 1.875110149383545,
+ "step": 2295
+ },
+ {
+ "epoch": 31.89198606271777,
+ "grad_norm": 0.06651245802640915,
+ "learning_rate": 0.00018749840586209144,
+ "loss": 1.881043791770935,
+ "step": 2296
+ },
+ {
+ "epoch": 31.905923344947734,
+ "grad_norm": 0.0645023062825203,
+ "learning_rate": 0.00018725285090320245,
+ "loss": 1.8830270767211914,
+ "step": 2297
+ },
+ {
+ "epoch": 31.9198606271777,
+ "grad_norm": 0.06700874119997025,
+ "learning_rate": 0.00018700738919970103,
+ "loss": 1.8654285669326782,
+ "step": 2298
+ },
+ {
+ "epoch": 31.933797909407666,
+ "grad_norm": 0.06646879017353058,
+ "learning_rate": 0.00018676202094935085,
+ "loss": 1.8897215127944946,
+ "step": 2299
+ },
+ {
+ "epoch": 31.94773519163763,
+ "grad_norm": 0.06660740822553635,
+ "learning_rate": 0.000186516746349841,
+ "loss": 1.8914703130722046,
+ "step": 2300
+ },
+ {
+ "epoch": 31.961672473867594,
+ "grad_norm": 0.06686484813690186,
+ "learning_rate": 0.0001862715655987847,
+ "loss": 1.889345407485962,
+ "step": 2301
+ },
+ {
+ "epoch": 31.975609756097562,
+ "grad_norm": 0.06631558388471603,
+ "learning_rate": 0.00018602647889371957,
+ "loss": 1.8859820365905762,
+ "step": 2302
+ },
+ {
+ "epoch": 31.989547038327526,
+ "grad_norm": 0.06582383811473846,
+ "learning_rate": 0.00018578148643210764,
+ "loss": 1.8652012348175049,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.052844833582639694,
+ "learning_rate": 0.00018553658841133483,
+ "loss": 1.4002703428268433,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 0.6424221396446228,
+ "eval_runtime": 37.5069,
+ "eval_samples_per_second": 65.108,
+ "eval_steps_per_second": 0.533,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01393728222997,
+ "grad_norm": 0.05961986258625984,
+ "learning_rate": 0.00018529178502871117,
+ "loss": 1.854289174079895,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02787456445993,
+ "grad_norm": 0.06249764561653137,
+ "learning_rate": 0.0001850470764814702,
+ "loss": 1.8544244766235352,
+ "step": 2306
+ },
+ {
+ "epoch": 32.041811846689896,
+ "grad_norm": 0.06160780042409897,
+ "learning_rate": 0.0001848024629667691,
+ "loss": 1.842755913734436,
+ "step": 2307
+ },
+ {
+ "epoch": 32.055749128919864,
+ "grad_norm": 0.06074569746851921,
+ "learning_rate": 0.00018455794468168887,
+ "loss": 1.8530092239379883,
+ "step": 2308
+ },
+ {
+ "epoch": 32.069686411149824,
+ "grad_norm": 0.059093352407217026,
+ "learning_rate": 0.00018431352182323322,
+ "loss": 1.8404085636138916,
+ "step": 2309
+ },
+ {
+ "epoch": 32.08362369337979,
+ "grad_norm": 0.06252843141555786,
+ "learning_rate": 0.0001840691945883293,
+ "loss": 1.8402471542358398,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09756097560975,
+ "grad_norm": 0.062098030000925064,
+ "learning_rate": 0.00018382496317382715,
+ "loss": 1.8632150888442993,
+ "step": 2311
+ },
+ {
+ "epoch": 32.11149825783972,
+ "grad_norm": 0.060433197766542435,
+ "learning_rate": 0.0001835808277764997,
+ "loss": 1.8358535766601562,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12543554006969,
+ "grad_norm": 0.062378350645303726,
+ "learning_rate": 0.00018333678859304222,
+ "loss": 1.8390008211135864,
+ "step": 2313
+ },
+ {
+ "epoch": 32.13937282229965,
+ "grad_norm": 0.06074725463986397,
+ "learning_rate": 0.00018309284582007274,
+ "loss": 1.858860731124878,
+ "step": 2314
+ },
+ {
+ "epoch": 32.153310104529616,
+ "grad_norm": 0.06083287298679352,
+ "learning_rate": 0.0001828489996541318,
+ "loss": 1.8486149311065674,
+ "step": 2315
+ },
+ {
+ "epoch": 32.167247386759584,
+ "grad_norm": 0.06116314232349396,
+ "learning_rate": 0.00018260525029168147,
+ "loss": 1.8581088781356812,
+ "step": 2316
+ },
+ {
+ "epoch": 32.181184668989545,
+ "grad_norm": 0.061406541615724564,
+ "learning_rate": 0.00018236159792910648,
+ "loss": 1.8591161966323853,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19512195121951,
+ "grad_norm": 0.05874199792742729,
+ "learning_rate": 0.00018211804276271304,
+ "loss": 1.8300669193267822,
+ "step": 2318
+ },
+ {
+ "epoch": 32.20905923344948,
+ "grad_norm": 0.060864705592393875,
+ "learning_rate": 0.00018187458498872914,
+ "loss": 1.8424736261367798,
+ "step": 2319
+ },
+ {
+ "epoch": 32.22299651567944,
+ "grad_norm": 0.06172594800591469,
+ "learning_rate": 0.00018163122480330433,
+ "loss": 1.8516032695770264,
+ "step": 2320
+ },
+ {
+ "epoch": 32.23693379790941,
+ "grad_norm": 0.06272125989198685,
+ "learning_rate": 0.00018138796240250955,
+ "loss": 1.8525536060333252,
+ "step": 2321
+ },
+ {
+ "epoch": 32.250871080139376,
+ "grad_norm": 0.06103010103106499,
+ "learning_rate": 0.00018114479798233686,
+ "loss": 1.8574954271316528,
+ "step": 2322
+ },
+ {
+ "epoch": 32.26480836236934,
+ "grad_norm": 0.061883945018053055,
+ "learning_rate": 0.00018090173173869939,
+ "loss": 1.8559205532073975,
+ "step": 2323
+ },
+ {
+ "epoch": 32.278745644599304,
+ "grad_norm": 0.06176813691854477,
+ "learning_rate": 0.00018065876386743143,
+ "loss": 1.8415580987930298,
+ "step": 2324
+ },
+ {
+ "epoch": 32.292682926829265,
+ "grad_norm": 0.059729915112257004,
+ "learning_rate": 0.00018041589456428754,
+ "loss": 1.8413065671920776,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30662020905923,
+ "grad_norm": 0.062042899429798126,
+ "learning_rate": 0.0001801731240249434,
+ "loss": 1.8559092283248901,
+ "step": 2326
+ },
+ {
+ "epoch": 32.3205574912892,
+ "grad_norm": 0.06083200126886368,
+ "learning_rate": 0.00017993045244499463,
+ "loss": 1.837567687034607,
+ "step": 2327
+ },
+ {
+ "epoch": 32.33449477351916,
+ "grad_norm": 0.060482755303382874,
+ "learning_rate": 0.00017968788001995742,
+ "loss": 1.853471279144287,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34843205574913,
+ "grad_norm": 0.06265296787023544,
+ "learning_rate": 0.000179445406945268,
+ "loss": 1.8431742191314697,
+ "step": 2329
+ },
+ {
+ "epoch": 32.362369337979096,
+ "grad_norm": 0.060122255235910416,
+ "learning_rate": 0.0001792030334162825,
+ "loss": 1.8470524549484253,
+ "step": 2330
+ },
+ {
+ "epoch": 32.37630662020906,
+ "grad_norm": 0.06117526814341545,
+ "learning_rate": 0.00017896075962827706,
+ "loss": 1.8635870218276978,
+ "step": 2331
+ },
+ {
+ "epoch": 32.390243902439025,
+ "grad_norm": 0.05970590561628342,
+ "learning_rate": 0.00017871858577644712,
+ "loss": 1.8443195819854736,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40418118466899,
+ "grad_norm": 0.06281629204750061,
+ "learning_rate": 0.0001784765120559078,
+ "loss": 1.8494038581848145,
+ "step": 2333
+ },
+ {
+ "epoch": 32.41811846689895,
+ "grad_norm": 0.06238580122590065,
+ "learning_rate": 0.00017823453866169355,
+ "loss": 1.8372313976287842,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43205574912892,
+ "grad_norm": 0.062138594686985016,
+ "learning_rate": 0.00017799266578875808,
+ "loss": 1.8546266555786133,
+ "step": 2335
+ },
+ {
+ "epoch": 32.44599303135889,
+ "grad_norm": 0.06474311649799347,
+ "learning_rate": 0.00017775089363197371,
+ "loss": 1.8548964262008667,
+ "step": 2336
+ },
+ {
+ "epoch": 32.45993031358885,
+ "grad_norm": 0.061230190098285675,
+ "learning_rate": 0.00017750922238613198,
+ "loss": 1.8663136959075928,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47386759581882,
+ "grad_norm": 0.06422504782676697,
+ "learning_rate": 0.00017726765224594342,
+ "loss": 1.8415696620941162,
+ "step": 2338
+ },
+ {
+ "epoch": 32.48780487804878,
+ "grad_norm": 0.061609867960214615,
+ "learning_rate": 0.0001770261834060363,
+ "loss": 1.8407015800476074,
+ "step": 2339
+ },
+ {
+ "epoch": 32.501742160278745,
+ "grad_norm": 0.06351736187934875,
+ "learning_rate": 0.00017678481606095786,
+ "loss": 1.8690993785858154,
+ "step": 2340
+ },
+ {
+ "epoch": 32.51567944250871,
+ "grad_norm": 0.06250591576099396,
+ "learning_rate": 0.0001765435504051734,
+ "loss": 1.8602087497711182,
+ "step": 2341
+ },
+ {
+ "epoch": 32.52961672473867,
+ "grad_norm": 0.0634881779551506,
+ "learning_rate": 0.0001763023866330664,
+ "loss": 1.8532803058624268,
+ "step": 2342
+ },
+ {
+ "epoch": 32.54355400696864,
+ "grad_norm": 0.06350140273571014,
+ "learning_rate": 0.00017606132493893793,
+ "loss": 1.8563673496246338,
+ "step": 2343
+ },
+ {
+ "epoch": 32.55749128919861,
+ "grad_norm": 0.0628136470913887,
+ "learning_rate": 0.00017582036551700724,
+ "loss": 1.8458285331726074,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57142857142857,
+ "grad_norm": 0.061659421771764755,
+ "learning_rate": 0.00017557950856141085,
+ "loss": 1.8418179750442505,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58536585365854,
+ "grad_norm": 0.06315319985151291,
+ "learning_rate": 0.00017533875426620286,
+ "loss": 1.8524972200393677,
+ "step": 2346
+ },
+ {
+ "epoch": 32.599303135888505,
+ "grad_norm": 0.06313202530145645,
+ "learning_rate": 0.00017509810282535497,
+ "loss": 1.8697175979614258,
+ "step": 2347
+ },
+ {
+ "epoch": 32.613240418118465,
+ "grad_norm": 0.06376877427101135,
+ "learning_rate": 0.00017485755443275513,
+ "loss": 1.8543388843536377,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62717770034843,
+ "grad_norm": 0.06332594901323318,
+ "learning_rate": 0.0001746171092822094,
+ "loss": 1.8648786544799805,
+ "step": 2349
+ },
+ {
+ "epoch": 32.641114982578394,
+ "grad_norm": 0.06469792127609253,
+ "learning_rate": 0.00017437676756743974,
+ "loss": 1.8419265747070312,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65505226480836,
+ "grad_norm": 0.061898306012153625,
+ "learning_rate": 0.00017413652948208524,
+ "loss": 1.851563811302185,
+ "step": 2351
+ },
+ {
+ "epoch": 32.66898954703833,
+ "grad_norm": 0.06442069262266159,
+ "learning_rate": 0.00017389639521970136,
+ "loss": 1.8633778095245361,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68292682926829,
+ "grad_norm": 0.06396457552909851,
+ "learning_rate": 0.00017365636497376004,
+ "loss": 1.8566405773162842,
+ "step": 2353
+ },
+ {
+ "epoch": 32.69686411149826,
+ "grad_norm": 0.06507355719804764,
+ "learning_rate": 0.00017341643893764927,
+ "loss": 1.8515483140945435,
+ "step": 2354
+ },
+ {
+ "epoch": 32.710801393728225,
+ "grad_norm": 0.06362279504537582,
+ "learning_rate": 0.000173176617304673,
+ "loss": 1.8504688739776611,
+ "step": 2355
+ },
+ {
+ "epoch": 32.724738675958186,
+ "grad_norm": 0.06472098082304001,
+ "learning_rate": 0.00017293690026805124,
+ "loss": 1.8664718866348267,
+ "step": 2356
+ },
+ {
+ "epoch": 32.73867595818815,
+ "grad_norm": 0.06595539301633835,
+ "learning_rate": 0.00017269728802091975,
+ "loss": 1.85841703414917,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75261324041812,
+ "grad_norm": 0.06441406160593033,
+ "learning_rate": 0.00017245778075632975,
+ "loss": 1.8595399856567383,
+ "step": 2358
+ },
+ {
+ "epoch": 32.76655052264808,
+ "grad_norm": 0.06528541445732117,
+ "learning_rate": 0.00017221837866724792,
+ "loss": 1.8631956577301025,
+ "step": 2359
+ },
+ {
+ "epoch": 32.78048780487805,
+ "grad_norm": 0.06445346027612686,
+ "learning_rate": 0.00017197908194655615,
+ "loss": 1.8592196702957153,
+ "step": 2360
+ },
+ {
+ "epoch": 32.79442508710802,
+ "grad_norm": 0.06681986898183823,
+ "learning_rate": 0.00017173989078705175,
+ "loss": 1.8577229976654053,
+ "step": 2361
+ },
+ {
+ "epoch": 32.80836236933798,
+ "grad_norm": 0.06391933560371399,
+ "learning_rate": 0.0001715008053814463,
+ "loss": 1.8735485076904297,
+ "step": 2362
+ },
+ {
+ "epoch": 32.822299651567945,
+ "grad_norm": 0.06460464745759964,
+ "learning_rate": 0.00017126182592236682,
+ "loss": 1.8651924133300781,
+ "step": 2363
+ },
+ {
+ "epoch": 32.836236933797906,
+ "grad_norm": 0.06430543959140778,
+ "learning_rate": 0.00017102295260235472,
+ "loss": 1.8450695276260376,
+ "step": 2364
+ },
+ {
+ "epoch": 32.850174216027874,
+ "grad_norm": 0.0646093487739563,
+ "learning_rate": 0.0001707841856138659,
+ "loss": 1.865610122680664,
+ "step": 2365
+ },
+ {
+ "epoch": 32.86411149825784,
+ "grad_norm": 0.06532672047615051,
+ "learning_rate": 0.00017054552514927061,
+ "loss": 1.8587243556976318,
+ "step": 2366
+ },
+ {
+ "epoch": 32.8780487804878,
+ "grad_norm": 0.06643696129322052,
+ "learning_rate": 0.00017030697140085334,
+ "loss": 1.8772244453430176,
+ "step": 2367
+ },
+ {
+ "epoch": 32.89198606271777,
+ "grad_norm": 0.06484723091125488,
+ "learning_rate": 0.0001700685245608126,
+ "loss": 1.8686251640319824,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90592334494774,
+ "grad_norm": 0.06564180552959442,
+ "learning_rate": 0.00016983018482126047,
+ "loss": 1.8513834476470947,
+ "step": 2369
+ },
+ {
+ "epoch": 32.9198606271777,
+ "grad_norm": 0.06441337615251541,
+ "learning_rate": 0.00016959195237422305,
+ "loss": 1.8773045539855957,
+ "step": 2370
+ },
+ {
+ "epoch": 32.933797909407666,
+ "grad_norm": 0.06720676273107529,
+ "learning_rate": 0.00016935382741164,
+ "loss": 1.8712348937988281,
+ "step": 2371
+ },
+ {
+ "epoch": 32.94773519163763,
+ "grad_norm": 0.06504860520362854,
+ "learning_rate": 0.00016911581012536424,
+ "loss": 1.8732126951217651,
+ "step": 2372
+ },
+ {
+ "epoch": 32.961672473867594,
+ "grad_norm": 0.0659131333231926,
+ "learning_rate": 0.0001688779007071622,
+ "loss": 1.858228325843811,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97560975609756,
+ "grad_norm": 0.06513261049985886,
+ "learning_rate": 0.00016864009934871275,
+ "loss": 1.8600943088531494,
+ "step": 2374
+ },
+ {
+ "epoch": 32.98954703832753,
+ "grad_norm": 0.06422273069620132,
+ "learning_rate": 0.0001684024062416087,
+ "loss": 1.864603042602539,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.055188730359077454,
+ "learning_rate": 0.0001681648215773546,
+ "loss": 1.3973428010940552,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 0.6440953612327576,
+ "eval_runtime": 42.5396,
+ "eval_samples_per_second": 57.405,
+ "eval_steps_per_second": 0.47,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01393728222997,
+ "grad_norm": 0.058126285672187805,
+ "learning_rate": 0.0001679273455473684,
+ "loss": 1.8378994464874268,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02787456445993,
+ "grad_norm": 0.06061682105064392,
+ "learning_rate": 0.0001676899783429802,
+ "loss": 1.8208311796188354,
+ "step": 2378
+ },
+ {
+ "epoch": 33.041811846689896,
+ "grad_norm": 0.0603339746594429,
+ "learning_rate": 0.00016745272015543242,
+ "loss": 1.823789119720459,
+ "step": 2379
+ },
+ {
+ "epoch": 33.055749128919864,
+ "grad_norm": 0.06169679015874863,
+ "learning_rate": 0.0001672155711758799,
+ "loss": 1.8269317150115967,
+ "step": 2380
+ },
+ {
+ "epoch": 33.069686411149824,
+ "grad_norm": 0.0586705207824707,
+ "learning_rate": 0.00016697853159538896,
+ "loss": 1.847499132156372,
+ "step": 2381
+ },
+ {
+ "epoch": 33.08362369337979,
+ "grad_norm": 0.06207786127924919,
+ "learning_rate": 0.0001667416016049383,
+ "loss": 1.8290098905563354,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09756097560975,
+ "grad_norm": 0.05864856019616127,
+ "learning_rate": 0.0001665047813954181,
+ "loss": 1.8500827550888062,
+ "step": 2383
+ },
+ {
+ "epoch": 33.11149825783972,
+ "grad_norm": 0.058817241340875626,
+ "learning_rate": 0.00016626807115763023,
+ "loss": 1.8350820541381836,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12543554006969,
+ "grad_norm": 0.060937561094760895,
+ "learning_rate": 0.00016603147108228754,
+ "loss": 1.8292570114135742,
+ "step": 2385
+ },
+ {
+ "epoch": 33.13937282229965,
+ "grad_norm": 0.06049133092164993,
+ "learning_rate": 0.00016579498136001485,
+ "loss": 1.8366070985794067,
+ "step": 2386
+ },
+ {
+ "epoch": 33.153310104529616,
+ "grad_norm": 0.06166869029402733,
+ "learning_rate": 0.00016555860218134738,
+ "loss": 1.8381221294403076,
+ "step": 2387
+ },
+ {
+ "epoch": 33.167247386759584,
+ "grad_norm": 0.05990896746516228,
+ "learning_rate": 0.00016532233373673164,
+ "loss": 1.8373796939849854,
+ "step": 2388
+ },
+ {
+ "epoch": 33.181184668989545,
+ "grad_norm": 0.060654930770397186,
+ "learning_rate": 0.00016508617621652488,
+ "loss": 1.8394211530685425,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19512195121951,
+ "grad_norm": 0.0603005588054657,
+ "learning_rate": 0.00016485012981099488,
+ "loss": 1.8226966857910156,
+ "step": 2390
+ },
+ {
+ "epoch": 33.20905923344948,
+ "grad_norm": 0.06139668822288513,
+ "learning_rate": 0.0001646141947103201,
+ "loss": 1.8316700458526611,
+ "step": 2391
+ },
+ {
+ "epoch": 33.22299651567944,
+ "grad_norm": 0.06096554547548294,
+ "learning_rate": 0.0001643783711045889,
+ "loss": 1.847790241241455,
+ "step": 2392
+ },
+ {
+ "epoch": 33.23693379790941,
+ "grad_norm": 0.06046409532427788,
+ "learning_rate": 0.0001641426591838005,
+ "loss": 1.8410671949386597,
+ "step": 2393
+ },
+ {
+ "epoch": 33.250871080139376,
+ "grad_norm": 0.060197826474905014,
+ "learning_rate": 0.00016390705913786344,
+ "loss": 1.8428468704223633,
+ "step": 2394
+ },
+ {
+ "epoch": 33.26480836236934,
+ "grad_norm": 0.058461710810661316,
+ "learning_rate": 0.00016367157115659646,
+ "loss": 1.841080665588379,
+ "step": 2395
+ },
+ {
+ "epoch": 33.278745644599304,
+ "grad_norm": 0.0600469708442688,
+ "learning_rate": 0.00016343619542972808,
+ "loss": 1.8265113830566406,
+ "step": 2396
+ },
+ {
+ "epoch": 33.292682926829265,
+ "grad_norm": 0.05934802442789078,
+ "learning_rate": 0.0001632009321468962,
+ "loss": 1.8448898792266846,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30662020905923,
+ "grad_norm": 0.060389988124370575,
+ "learning_rate": 0.00016296578149764833,
+ "loss": 1.8332173824310303,
+ "step": 2398
+ },
+ {
+ "epoch": 33.3205574912892,
+ "grad_norm": 0.05980642884969711,
+ "learning_rate": 0.00016273074367144087,
+ "loss": 1.84235417842865,
+ "step": 2399
+ },
+ {
+ "epoch": 33.33449477351916,
+ "grad_norm": 0.06064719706773758,
+ "learning_rate": 0.00016249581885763968,
+ "loss": 1.83778715133667,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34843205574913,
+ "grad_norm": 0.060422275215387344,
+ "learning_rate": 0.0001622610072455194,
+ "loss": 1.836384654045105,
+ "step": 2401
+ },
+ {
+ "epoch": 33.362369337979096,
+ "grad_norm": 0.06085652485489845,
+ "learning_rate": 0.00016202630902426355,
+ "loss": 1.8299217224121094,
+ "step": 2402
+ },
+ {
+ "epoch": 33.37630662020906,
+ "grad_norm": 0.06078358739614487,
+ "learning_rate": 0.00016179172438296423,
+ "loss": 1.8527088165283203,
+ "step": 2403
+ },
+ {
+ "epoch": 33.390243902439025,
+ "grad_norm": 0.06237566098570824,
+ "learning_rate": 0.00016155725351062205,
+ "loss": 1.8342247009277344,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40418118466899,
+ "grad_norm": 0.06274822354316711,
+ "learning_rate": 0.00016132289659614605,
+ "loss": 1.8272922039031982,
+ "step": 2405
+ },
+ {
+ "epoch": 33.41811846689895,
+ "grad_norm": 0.06164759397506714,
+ "learning_rate": 0.00016108865382835318,
+ "loss": 1.8365296125411987,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43205574912892,
+ "grad_norm": 0.06274817883968353,
+ "learning_rate": 0.00016085452539596864,
+ "loss": 1.8382642269134521,
+ "step": 2407
+ },
+ {
+ "epoch": 33.44599303135889,
+ "grad_norm": 0.06088731437921524,
+ "learning_rate": 0.0001606205114876256,
+ "loss": 1.8406622409820557,
+ "step": 2408
+ },
+ {
+ "epoch": 33.45993031358885,
+ "grad_norm": 0.06455288827419281,
+ "learning_rate": 0.00016038661229186472,
+ "loss": 1.833195447921753,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47386759581882,
+ "grad_norm": 0.061410367488861084,
+ "learning_rate": 0.00016015282799713453,
+ "loss": 1.830909252166748,
+ "step": 2410
+ },
+ {
+ "epoch": 33.48780487804878,
+ "grad_norm": 0.06312009692192078,
+ "learning_rate": 0.0001599191587917905,
+ "loss": 1.839772343635559,
+ "step": 2411
+ },
+ {
+ "epoch": 33.501742160278745,
+ "grad_norm": 0.06414929777383804,
+ "learning_rate": 0.0001596856048640961,
+ "loss": 1.8574250936508179,
+ "step": 2412
+ },
+ {
+ "epoch": 33.51567944250871,
+ "grad_norm": 0.06299755722284317,
+ "learning_rate": 0.00015945216640222116,
+ "loss": 1.8385207653045654,
+ "step": 2413
+ },
+ {
+ "epoch": 33.52961672473867,
+ "grad_norm": 0.06244301423430443,
+ "learning_rate": 0.000159218843594243,
+ "loss": 1.845157265663147,
+ "step": 2414
+ },
+ {
+ "epoch": 33.54355400696864,
+ "grad_norm": 0.06268925219774246,
+ "learning_rate": 0.0001589856366281455,
+ "loss": 1.8225502967834473,
+ "step": 2415
+ },
+ {
+ "epoch": 33.55749128919861,
+ "grad_norm": 0.06370935589075089,
+ "learning_rate": 0.0001587525456918194,
+ "loss": 1.8363447189331055,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57142857142857,
+ "grad_norm": 0.06543995440006256,
+ "learning_rate": 0.0001585195709730619,
+ "loss": 1.833327293395996,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58536585365854,
+ "grad_norm": 0.06178088113665581,
+ "learning_rate": 0.00015828671265957623,
+ "loss": 1.8498637676239014,
+ "step": 2418
+ },
+ {
+ "epoch": 33.599303135888505,
+ "grad_norm": 0.06223836913704872,
+ "learning_rate": 0.00015805397093897255,
+ "loss": 1.838489294052124,
+ "step": 2419
+ },
+ {
+ "epoch": 33.613240418118465,
+ "grad_norm": 0.06262598931789398,
+ "learning_rate": 0.00015782134599876633,
+ "loss": 1.8468639850616455,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62717770034843,
+ "grad_norm": 0.06392983347177505,
+ "learning_rate": 0.00015758883802637953,
+ "loss": 1.8385651111602783,
+ "step": 2421
+ },
+ {
+ "epoch": 33.641114982578394,
+ "grad_norm": 0.06200742349028587,
+ "learning_rate": 0.00015735644720913923,
+ "loss": 1.8447084426879883,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65505226480836,
+ "grad_norm": 0.06597801297903061,
+ "learning_rate": 0.00015712417373427897,
+ "loss": 1.8448331356048584,
+ "step": 2423
+ },
+ {
+ "epoch": 33.66898954703833,
+ "grad_norm": 0.06509242206811905,
+ "learning_rate": 0.00015689201778893713,
+ "loss": 1.853779911994934,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68292682926829,
+ "grad_norm": 0.06515370309352875,
+ "learning_rate": 0.00015665997956015743,
+ "loss": 1.8492741584777832,
+ "step": 2425
+ },
+ {
+ "epoch": 33.69686411149826,
+ "grad_norm": 0.06344641745090485,
+ "learning_rate": 0.00015642805923488895,
+ "loss": 1.8240808248519897,
+ "step": 2426
+ },
+ {
+ "epoch": 33.710801393728225,
+ "grad_norm": 0.06296426057815552,
+ "learning_rate": 0.00015619625699998585,
+ "loss": 1.8452916145324707,
+ "step": 2427
+ },
+ {
+ "epoch": 33.724738675958186,
+ "grad_norm": 0.06552107632160187,
+ "learning_rate": 0.00015596457304220692,
+ "loss": 1.8414363861083984,
+ "step": 2428
+ },
+ {
+ "epoch": 33.73867595818815,
+ "grad_norm": 0.06322826445102692,
+ "learning_rate": 0.00015573300754821547,
+ "loss": 1.8490327596664429,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75261324041812,
+ "grad_norm": 0.06481730937957764,
+ "learning_rate": 0.00015550156070458002,
+ "loss": 1.8198773860931396,
+ "step": 2430
+ },
+ {
+ "epoch": 33.76655052264808,
+ "grad_norm": 0.06322740018367767,
+ "learning_rate": 0.0001552702326977731,
+ "loss": 1.8379902839660645,
+ "step": 2431
+ },
+ {
+ "epoch": 33.78048780487805,
+ "grad_norm": 0.0660315454006195,
+ "learning_rate": 0.00015503902371417122,
+ "loss": 1.8431508541107178,
+ "step": 2432
+ },
+ {
+ "epoch": 33.79442508710802,
+ "grad_norm": 0.06548485159873962,
+ "learning_rate": 0.00015480793394005547,
+ "loss": 1.8435306549072266,
+ "step": 2433
+ },
+ {
+ "epoch": 33.80836236933798,
+ "grad_norm": 0.0642753317952156,
+ "learning_rate": 0.0001545769635616107,
+ "loss": 1.8333635330200195,
+ "step": 2434
+ },
+ {
+ "epoch": 33.822299651567945,
+ "grad_norm": 0.06514805555343628,
+ "learning_rate": 0.0001543461127649256,
+ "loss": 1.860312819480896,
+ "step": 2435
+ },
+ {
+ "epoch": 33.836236933797906,
+ "grad_norm": 0.06455788016319275,
+ "learning_rate": 0.00015411538173599231,
+ "loss": 1.8513085842132568,
+ "step": 2436
+ },
+ {
+ "epoch": 33.850174216027874,
+ "grad_norm": 0.06607019901275635,
+ "learning_rate": 0.00015388477066070674,
+ "loss": 1.8457266092300415,
+ "step": 2437
+ },
+ {
+ "epoch": 33.86411149825784,
+ "grad_norm": 0.06435948610305786,
+ "learning_rate": 0.00015365427972486827,
+ "loss": 1.8381249904632568,
+ "step": 2438
+ },
+ {
+ "epoch": 33.8780487804878,
+ "grad_norm": 0.06571139395236969,
+ "learning_rate": 0.00015342390911417904,
+ "loss": 1.8319785594940186,
+ "step": 2439
+ },
+ {
+ "epoch": 33.89198606271777,
+ "grad_norm": 0.06674250215291977,
+ "learning_rate": 0.00015319365901424452,
+ "loss": 1.8493732213974,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90592334494774,
+ "grad_norm": 0.06501804292201996,
+ "learning_rate": 0.0001529635296105732,
+ "loss": 1.8349519968032837,
+ "step": 2441
+ },
+ {
+ "epoch": 33.9198606271777,
+ "grad_norm": 0.06749753654003143,
+ "learning_rate": 0.0001527335210885761,
+ "loss": 1.862501859664917,
+ "step": 2442
+ },
+ {
+ "epoch": 33.933797909407666,
+ "grad_norm": 0.06523770093917847,
+ "learning_rate": 0.00015250363363356685,
+ "loss": 1.84731125831604,
+ "step": 2443
+ },
+ {
+ "epoch": 33.94773519163763,
+ "grad_norm": 0.06762465834617615,
+ "learning_rate": 0.00015227386743076155,
+ "loss": 1.8576481342315674,
+ "step": 2444
+ },
+ {
+ "epoch": 33.961672473867594,
+ "grad_norm": 0.06551655381917953,
+ "learning_rate": 0.00015204422266527911,
+ "loss": 1.8472511768341064,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97560975609756,
+ "grad_norm": 0.06891904771327972,
+ "learning_rate": 0.00015181469952213968,
+ "loss": 1.8325382471084595,
+ "step": 2446
+ },
+ {
+ "epoch": 33.98954703832753,
+ "grad_norm": 0.06538119167089462,
+ "learning_rate": 0.0001515852981862663,
+ "loss": 1.8476707935333252,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.05324097350239754,
+ "learning_rate": 0.00015135601884248303,
+ "loss": 1.3832170963287354,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 0.6456387042999268,
+ "eval_runtime": 38.8493,
+ "eval_samples_per_second": 62.858,
+ "eval_steps_per_second": 0.515,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01393728222997,
+ "grad_norm": 0.061544593423604965,
+ "learning_rate": 0.0001511268616755166,
+ "loss": 1.8143833875656128,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02787456445993,
+ "grad_norm": 0.05995706468820572,
+ "learning_rate": 0.00015089782686999445,
+ "loss": 1.8281774520874023,
+ "step": 2450
+ },
+ {
+ "epoch": 34.041811846689896,
+ "grad_norm": 0.061882853507995605,
+ "learning_rate": 0.00015066891461044588,
+ "loss": 1.8186081647872925,
+ "step": 2451
+ },
+ {
+ "epoch": 34.055749128919864,
+ "grad_norm": 0.05911208316683769,
+ "learning_rate": 0.00015044012508130138,
+ "loss": 1.8171322345733643,
+ "step": 2452
+ },
+ {
+ "epoch": 34.069686411149824,
+ "grad_norm": 0.05762029439210892,
+ "learning_rate": 0.00015021145846689254,
+ "loss": 1.8289903402328491,
+ "step": 2453
+ },
+ {
+ "epoch": 34.08362369337979,
+ "grad_norm": 0.06098875030875206,
+ "learning_rate": 0.00014998291495145206,
+ "loss": 1.8244364261627197,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09756097560975,
+ "grad_norm": 0.060347780585289,
+ "learning_rate": 0.00014975449471911294,
+ "loss": 1.818152666091919,
+ "step": 2455
+ },
+ {
+ "epoch": 34.11149825783972,
+ "grad_norm": 0.06011926382780075,
+ "learning_rate": 0.0001495261979539097,
+ "loss": 1.8218905925750732,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12543554006969,
+ "grad_norm": 0.05958009883761406,
+ "learning_rate": 0.0001492980248397766,
+ "loss": 1.8378891944885254,
+ "step": 2457
+ },
+ {
+ "epoch": 34.13937282229965,
+ "grad_norm": 0.060227006673812866,
+ "learning_rate": 0.00014906997556054865,
+ "loss": 1.8179614543914795,
+ "step": 2458
+ },
+ {
+ "epoch": 34.153310104529616,
+ "grad_norm": 0.061011530458927155,
+ "learning_rate": 0.00014884205029996113,
+ "loss": 1.8247592449188232,
+ "step": 2459
+ },
+ {
+ "epoch": 34.167247386759584,
+ "grad_norm": 0.05921728536486626,
+ "learning_rate": 0.00014861424924164925,
+ "loss": 1.8255550861358643,
+ "step": 2460
+ },
+ {
+ "epoch": 34.181184668989545,
+ "grad_norm": 0.06191205978393555,
+ "learning_rate": 0.00014838657256914832,
+ "loss": 1.8160936832427979,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19512195121951,
+ "grad_norm": 0.05961717665195465,
+ "learning_rate": 0.0001481590204658931,
+ "loss": 1.7988860607147217,
+ "step": 2462
+ },
+ {
+ "epoch": 34.20905923344948,
+ "grad_norm": 0.06147215515375137,
+ "learning_rate": 0.00014793159311521833,
+ "loss": 1.8266009092330933,
+ "step": 2463
+ },
+ {
+ "epoch": 34.22299651567944,
+ "grad_norm": 0.05942768603563309,
+ "learning_rate": 0.00014770429070035812,
+ "loss": 1.8312751054763794,
+ "step": 2464
+ },
+ {
+ "epoch": 34.23693379790941,
+ "grad_norm": 0.060584649443626404,
+ "learning_rate": 0.00014747711340444601,
+ "loss": 1.822584629058838,
+ "step": 2465
+ },
+ {
+ "epoch": 34.250871080139376,
+ "grad_norm": 0.05929860472679138,
+ "learning_rate": 0.00014725006141051434,
+ "loss": 1.8148616552352905,
+ "step": 2466
+ },
+ {
+ "epoch": 34.26480836236934,
+ "grad_norm": 0.06036009266972542,
+ "learning_rate": 0.00014702313490149512,
+ "loss": 1.8295557498931885,
+ "step": 2467
+ },
+ {
+ "epoch": 34.278745644599304,
+ "grad_norm": 0.06171515956521034,
+ "learning_rate": 0.00014679633406021892,
+ "loss": 1.8145090341567993,
+ "step": 2468
+ },
+ {
+ "epoch": 34.292682926829265,
+ "grad_norm": 0.061903972178697586,
+ "learning_rate": 0.00014656965906941494,
+ "loss": 1.8265849351882935,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30662020905923,
+ "grad_norm": 0.06090715155005455,
+ "learning_rate": 0.00014634311011171112,
+ "loss": 1.8090901374816895,
+ "step": 2470
+ },
+ {
+ "epoch": 34.3205574912892,
+ "grad_norm": 0.060219816863536835,
+ "learning_rate": 0.00014611668736963396,
+ "loss": 1.8254625797271729,
+ "step": 2471
+ },
+ {
+ "epoch": 34.33449477351916,
+ "grad_norm": 0.06206131726503372,
+ "learning_rate": 0.00014589039102560822,
+ "loss": 1.831300139427185,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34843205574913,
+ "grad_norm": 0.06065662205219269,
+ "learning_rate": 0.00014566422126195656,
+ "loss": 1.8371552228927612,
+ "step": 2473
+ },
+ {
+ "epoch": 34.362369337979096,
+ "grad_norm": 0.061889007687568665,
+ "learning_rate": 0.00014543817826089992,
+ "loss": 1.8082828521728516,
+ "step": 2474
+ },
+ {
+ "epoch": 34.37630662020906,
+ "grad_norm": 0.05962798744440079,
+ "learning_rate": 0.0001452122622045574,
+ "loss": 1.8357537984848022,
+ "step": 2475
+ },
+ {
+ "epoch": 34.390243902439025,
+ "grad_norm": 0.06283676624298096,
+ "learning_rate": 0.00014498647327494506,
+ "loss": 1.8315505981445312,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40418118466899,
+ "grad_norm": 0.06130822002887726,
+ "learning_rate": 0.00014476081165397715,
+ "loss": 1.8286545276641846,
+ "step": 2477
+ },
+ {
+ "epoch": 34.41811846689895,
+ "grad_norm": 0.06045953929424286,
+ "learning_rate": 0.00014453527752346517,
+ "loss": 1.8219239711761475,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43205574912892,
+ "grad_norm": 0.06052744388580322,
+ "learning_rate": 0.00014430987106511795,
+ "loss": 1.8232624530792236,
+ "step": 2479
+ },
+ {
+ "epoch": 34.44599303135889,
+ "grad_norm": 0.06020310893654823,
+ "learning_rate": 0.00014408459246054126,
+ "loss": 1.833443522453308,
+ "step": 2480
+ },
+ {
+ "epoch": 34.45993031358885,
+ "grad_norm": 0.0614689365029335,
+ "learning_rate": 0.00014385944189123794,
+ "loss": 1.8213250637054443,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47386759581882,
+ "grad_norm": 0.06148214265704155,
+ "learning_rate": 0.00014363441953860805,
+ "loss": 1.8208796977996826,
+ "step": 2482
+ },
+ {
+ "epoch": 34.48780487804878,
+ "grad_norm": 0.061143435537815094,
+ "learning_rate": 0.00014340952558394778,
+ "loss": 1.8060634136199951,
+ "step": 2483
+ },
+ {
+ "epoch": 34.501742160278745,
+ "grad_norm": 0.06256826967000961,
+ "learning_rate": 0.00014318476020845018,
+ "loss": 1.8441283702850342,
+ "step": 2484
+ },
+ {
+ "epoch": 34.51567944250871,
+ "grad_norm": 0.06325773149728775,
+ "learning_rate": 0.0001429601235932047,
+ "loss": 1.8289194107055664,
+ "step": 2485
+ },
+ {
+ "epoch": 34.52961672473867,
+ "grad_norm": 0.06207616627216339,
+ "learning_rate": 0.00014273561591919705,
+ "loss": 1.8226757049560547,
+ "step": 2486
+ },
+ {
+ "epoch": 34.54355400696864,
+ "grad_norm": 0.062450069934129715,
+ "learning_rate": 0.00014251123736730884,
+ "loss": 1.8158135414123535,
+ "step": 2487
+ },
+ {
+ "epoch": 34.55749128919861,
+ "grad_norm": 0.06260907649993896,
+ "learning_rate": 0.00014228698811831787,
+ "loss": 1.8142571449279785,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57142857142857,
+ "grad_norm": 0.0641574040055275,
+ "learning_rate": 0.0001420628683528978,
+ "loss": 1.8269929885864258,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58536585365854,
+ "grad_norm": 0.06434120237827301,
+ "learning_rate": 0.00014183887825161779,
+ "loss": 1.8375412225723267,
+ "step": 2490
+ },
+ {
+ "epoch": 34.599303135888505,
+ "grad_norm": 0.06156579405069351,
+ "learning_rate": 0.0001416150179949428,
+ "loss": 1.8158376216888428,
+ "step": 2491
+ },
+ {
+ "epoch": 34.613240418118465,
+ "grad_norm": 0.06551021337509155,
+ "learning_rate": 0.0001413912877632326,
+ "loss": 1.8365397453308105,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62717770034843,
+ "grad_norm": 0.06178220361471176,
+ "learning_rate": 0.00014116768773674306,
+ "loss": 1.8288542032241821,
+ "step": 2493
+ },
+ {
+ "epoch": 34.641114982578394,
+ "grad_norm": 0.06431970000267029,
+ "learning_rate": 0.00014094421809562438,
+ "loss": 1.8176591396331787,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65505226480836,
+ "grad_norm": 0.06383472681045532,
+ "learning_rate": 0.00014072087901992209,
+ "loss": 1.8409924507141113,
+ "step": 2495
+ },
+ {
+ "epoch": 34.66898954703833,
+ "grad_norm": 0.06315146386623383,
+ "learning_rate": 0.00014049767068957645,
+ "loss": 1.8267871141433716,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68292682926829,
+ "grad_norm": 0.06440278142690659,
+ "learning_rate": 0.00014027459328442242,
+ "loss": 1.8300566673278809,
+ "step": 2497
+ },
+ {
+ "epoch": 34.69686411149826,
+ "grad_norm": 0.06525930017232895,
+ "learning_rate": 0.00014005164698418948,
+ "loss": 1.831039309501648,
+ "step": 2498
+ },
+ {
+ "epoch": 34.710801393728225,
+ "grad_norm": 0.06240379810333252,
+ "learning_rate": 0.0001398288319685013,
+ "loss": 1.8204154968261719,
+ "step": 2499
+ },
+ {
+ "epoch": 34.724738675958186,
+ "grad_norm": 0.06432971358299255,
+ "learning_rate": 0.00013960614841687595,
+ "loss": 1.826758861541748,
+ "step": 2500
+ },
+ {
+ "epoch": 34.73867595818815,
+ "grad_norm": 0.06324490159749985,
+ "learning_rate": 0.00013938359650872558,
+ "loss": 1.8415192365646362,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75261324041812,
+ "grad_norm": 0.06293605268001556,
+ "learning_rate": 0.00013916117642335623,
+ "loss": 1.821230411529541,
+ "step": 2502
+ },
+ {
+ "epoch": 34.76655052264808,
+ "grad_norm": 0.0630170926451683,
+ "learning_rate": 0.00013893888833996774,
+ "loss": 1.8322150707244873,
+ "step": 2503
+ },
+ {
+ "epoch": 34.78048780487805,
+ "grad_norm": 0.06433390080928802,
+ "learning_rate": 0.00013871673243765362,
+ "loss": 1.8215436935424805,
+ "step": 2504
+ },
+ {
+ "epoch": 34.79442508710802,
+ "grad_norm": 0.06179378926753998,
+ "learning_rate": 0.00013849470889540098,
+ "loss": 1.8321993350982666,
+ "step": 2505
+ },
+ {
+ "epoch": 34.80836236933798,
+ "grad_norm": 0.06337333470582962,
+ "learning_rate": 0.00013827281789208996,
+ "loss": 1.8214612007141113,
+ "step": 2506
+ },
+ {
+ "epoch": 34.822299651567945,
+ "grad_norm": 0.06581414490938187,
+ "learning_rate": 0.00013805105960649423,
+ "loss": 1.8380327224731445,
+ "step": 2507
+ },
+ {
+ "epoch": 34.836236933797906,
+ "grad_norm": 0.06505398452281952,
+ "learning_rate": 0.00013782943421728042,
+ "loss": 1.8323636054992676,
+ "step": 2508
+ },
+ {
+ "epoch": 34.850174216027874,
+ "grad_norm": 0.06261361390352249,
+ "learning_rate": 0.00013760794190300827,
+ "loss": 1.831121802330017,
+ "step": 2509
+ },
+ {
+ "epoch": 34.86411149825784,
+ "grad_norm": 0.06420202553272247,
+ "learning_rate": 0.00013738658284212973,
+ "loss": 1.8330061435699463,
+ "step": 2510
+ },
+ {
+ "epoch": 34.8780487804878,
+ "grad_norm": 0.06349224597215652,
+ "learning_rate": 0.00013716535721299016,
+ "loss": 1.814126968383789,
+ "step": 2511
+ },
+ {
+ "epoch": 34.89198606271777,
+ "grad_norm": 0.06293212622404099,
+ "learning_rate": 0.0001369442651938271,
+ "loss": 1.8446499109268188,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90592334494774,
+ "grad_norm": 0.06229215860366821,
+ "learning_rate": 0.00013672330696277014,
+ "loss": 1.8318920135498047,
+ "step": 2513
+ },
+ {
+ "epoch": 34.9198606271777,
+ "grad_norm": 0.06438733637332916,
+ "learning_rate": 0.00013650248269784143,
+ "loss": 1.8189592361450195,
+ "step": 2514
+ },
+ {
+ "epoch": 34.933797909407666,
+ "grad_norm": 0.06267774105072021,
+ "learning_rate": 0.00013628179257695508,
+ "loss": 1.820225715637207,
+ "step": 2515
+ },
+ {
+ "epoch": 34.94773519163763,
+ "grad_norm": 0.06347840279340744,
+ "learning_rate": 0.00013606123677791727,
+ "loss": 1.8195691108703613,
+ "step": 2516
+ },
+ {
+ "epoch": 34.961672473867594,
+ "grad_norm": 0.06589125096797943,
+ "learning_rate": 0.00013584081547842565,
+ "loss": 1.8382142782211304,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97560975609756,
+ "grad_norm": 0.06349477916955948,
+ "learning_rate": 0.00013562052885606957,
+ "loss": 1.8295605182647705,
+ "step": 2518
+ },
+ {
+ "epoch": 34.98954703832753,
+ "grad_norm": 0.06603765487670898,
+ "learning_rate": 0.00013540037708833043,
+ "loss": 1.8189774751663208,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.05118570849299431,
+ "learning_rate": 0.00013518036035258012,
+ "loss": 1.362122654914856,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 0.6471332311630249,
+ "eval_runtime": 36.1587,
+ "eval_samples_per_second": 67.536,
+ "eval_steps_per_second": 0.553,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01393728222997,
+ "grad_norm": 0.05908126384019852,
+ "learning_rate": 0.0001349604788260823,
+ "loss": 1.8186755180358887,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02787456445993,
+ "grad_norm": 0.05910510569810867,
+ "learning_rate": 0.00013474073268599152,
+ "loss": 1.8013967275619507,
+ "step": 2522
+ },
+ {
+ "epoch": 35.041811846689896,
+ "grad_norm": 0.06132171303033829,
+ "learning_rate": 0.00013452112210935339,
+ "loss": 1.8142056465148926,
+ "step": 2523
+ },
+ {
+ "epoch": 35.055749128919864,
+ "grad_norm": 0.059230659157037735,
+ "learning_rate": 0.00013430164727310399,
+ "loss": 1.8110339641571045,
+ "step": 2524
+ },
+ {
+ "epoch": 35.069686411149824,
+ "grad_norm": 0.05766315385699272,
+ "learning_rate": 0.00013408230835407027,
+ "loss": 1.7982637882232666,
+ "step": 2525
+ },
+ {
+ "epoch": 35.08362369337979,
+ "grad_norm": 0.06095150113105774,
+ "learning_rate": 0.00013386310552896977,
+ "loss": 1.824556589126587,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09756097560975,
+ "grad_norm": 0.058827366679906845,
+ "learning_rate": 0.00013364403897441016,
+ "loss": 1.808304786682129,
+ "step": 2527
+ },
+ {
+ "epoch": 35.11149825783972,
+ "grad_norm": 0.05928879976272583,
+ "learning_rate": 0.00013342510886688944,
+ "loss": 1.7958316802978516,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12543554006969,
+ "grad_norm": 0.059650979936122894,
+ "learning_rate": 0.00013320631538279548,
+ "loss": 1.804734230041504,
+ "step": 2529
+ },
+ {
+ "epoch": 35.13937282229965,
+ "grad_norm": 0.059706125408411026,
+ "learning_rate": 0.00013298765869840658,
+ "loss": 1.7956255674362183,
+ "step": 2530
+ },
+ {
+ "epoch": 35.153310104529616,
+ "grad_norm": 0.059284109622240067,
+ "learning_rate": 0.00013276913898989013,
+ "loss": 1.8104126453399658,
+ "step": 2531
+ },
+ {
+ "epoch": 35.167247386759584,
+ "grad_norm": 0.05987285077571869,
+ "learning_rate": 0.00013255075643330369,
+ "loss": 1.810312032699585,
+ "step": 2532
+ },
+ {
+ "epoch": 35.181184668989545,
+ "grad_norm": 0.05983385443687439,
+ "learning_rate": 0.00013233251120459407,
+ "loss": 1.7978583574295044,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19512195121951,
+ "grad_norm": 0.060581255704164505,
+ "learning_rate": 0.0001321144034795976,
+ "loss": 1.8199656009674072,
+ "step": 2534
+ },
+ {
+ "epoch": 35.20905923344948,
+ "grad_norm": 0.05911708250641823,
+ "learning_rate": 0.00013189643343403977,
+ "loss": 1.7828130722045898,
+ "step": 2535
+ },
+ {
+ "epoch": 35.22299651567944,
+ "grad_norm": 0.05990540608763695,
+ "learning_rate": 0.00013167860124353476,
+ "loss": 1.8100059032440186,
+ "step": 2536
+ },
+ {
+ "epoch": 35.23693379790941,
+ "grad_norm": 0.05927145108580589,
+ "learning_rate": 0.00013146090708358657,
+ "loss": 1.8167325258255005,
+ "step": 2537
+ },
+ {
+ "epoch": 35.250871080139376,
+ "grad_norm": 0.059669725596904755,
+ "learning_rate": 0.00013124335112958704,
+ "loss": 1.798264503479004,
+ "step": 2538
+ },
+ {
+ "epoch": 35.26480836236934,
+ "grad_norm": 0.059786438941955566,
+ "learning_rate": 0.0001310259335568172,
+ "loss": 1.8132362365722656,
+ "step": 2539
+ },
+ {
+ "epoch": 35.278745644599304,
+ "grad_norm": 0.05904815346002579,
+ "learning_rate": 0.00013080865454044647,
+ "loss": 1.8083183765411377,
+ "step": 2540
+ },
+ {
+ "epoch": 35.292682926829265,
+ "grad_norm": 0.05894903466105461,
+ "learning_rate": 0.00013059151425553263,
+ "loss": 1.8152140378952026,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30662020905923,
+ "grad_norm": 0.0585809126496315,
+ "learning_rate": 0.00013037451287702183,
+ "loss": 1.8077661991119385,
+ "step": 2542
+ },
+ {
+ "epoch": 35.3205574912892,
+ "grad_norm": 0.0597865916788578,
+ "learning_rate": 0.0001301576505797479,
+ "loss": 1.8144145011901855,
+ "step": 2543
+ },
+ {
+ "epoch": 35.33449477351916,
+ "grad_norm": 0.05984620749950409,
+ "learning_rate": 0.00012994092753843293,
+ "loss": 1.832561731338501,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34843205574913,
+ "grad_norm": 0.06088831275701523,
+ "learning_rate": 0.00012972434392768687,
+ "loss": 1.8135924339294434,
+ "step": 2545
+ },
+ {
+ "epoch": 35.362369337979096,
+ "grad_norm": 0.060645680874586105,
+ "learning_rate": 0.00012950789992200714,
+ "loss": 1.8013677597045898,
+ "step": 2546
+ },
+ {
+ "epoch": 35.37630662020906,
+ "grad_norm": 0.061454515904188156,
+ "learning_rate": 0.00012929159569577886,
+ "loss": 1.8033697605133057,
+ "step": 2547
+ },
+ {
+ "epoch": 35.390243902439025,
+ "grad_norm": 0.060311950743198395,
+ "learning_rate": 0.0001290754314232743,
+ "loss": 1.802935242652893,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40418118466899,
+ "grad_norm": 0.0625360980629921,
+ "learning_rate": 0.00012885940727865334,
+ "loss": 1.81296968460083,
+ "step": 2549
+ },
+ {
+ "epoch": 35.41811846689895,
+ "grad_norm": 0.0601397305727005,
+ "learning_rate": 0.00012864352343596247,
+ "loss": 1.8226817846298218,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43205574912892,
+ "grad_norm": 0.06244158744812012,
+ "learning_rate": 0.0001284277800691355,
+ "loss": 1.80842924118042,
+ "step": 2551
+ },
+ {
+ "epoch": 35.44599303135889,
+ "grad_norm": 0.059840865433216095,
+ "learning_rate": 0.00012821217735199298,
+ "loss": 1.7954330444335938,
+ "step": 2552
+ },
+ {
+ "epoch": 35.45993031358885,
+ "grad_norm": 0.06193596497178078,
+ "learning_rate": 0.00012799671545824212,
+ "loss": 1.8132208585739136,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47386759581882,
+ "grad_norm": 0.0602298229932785,
+ "learning_rate": 0.0001277813945614768,
+ "loss": 1.810899257659912,
+ "step": 2554
+ },
+ {
+ "epoch": 35.48780487804878,
+ "grad_norm": 0.06307514756917953,
+ "learning_rate": 0.00012756621483517682,
+ "loss": 1.8087718486785889,
+ "step": 2555
+ },
+ {
+ "epoch": 35.501742160278745,
+ "grad_norm": 0.062002021819353104,
+ "learning_rate": 0.00012735117645270905,
+ "loss": 1.8076088428497314,
+ "step": 2556
+ },
+ {
+ "epoch": 35.51567944250871,
+ "grad_norm": 0.0628097876906395,
+ "learning_rate": 0.00012713627958732567,
+ "loss": 1.8090249300003052,
+ "step": 2557
+ },
+ {
+ "epoch": 35.52961672473867,
+ "grad_norm": 0.06274416297674179,
+ "learning_rate": 0.00012692152441216539,
+ "loss": 1.8050616979599,
+ "step": 2558
+ },
+ {
+ "epoch": 35.54355400696864,
+ "grad_norm": 0.06155693158507347,
+ "learning_rate": 0.0001267069111002525,
+ "loss": 1.8042300939559937,
+ "step": 2559
+ },
+ {
+ "epoch": 35.55749128919861,
+ "grad_norm": 0.0613880380988121,
+ "learning_rate": 0.00012649243982449718,
+ "loss": 1.8077136278152466,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57142857142857,
+ "grad_norm": 0.06365271657705307,
+ "learning_rate": 0.00012627811075769502,
+ "loss": 1.8172948360443115,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58536585365854,
+ "grad_norm": 0.05991367623209953,
+ "learning_rate": 0.00012606392407252687,
+ "loss": 1.8168929815292358,
+ "step": 2562
+ },
+ {
+ "epoch": 35.599303135888505,
+ "grad_norm": 0.06306611746549606,
+ "learning_rate": 0.00012584987994155943,
+ "loss": 1.800689458847046,
+ "step": 2563
+ },
+ {
+ "epoch": 35.613240418118465,
+ "grad_norm": 0.06204739212989807,
+ "learning_rate": 0.00012563597853724388,
+ "loss": 1.8148365020751953,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62717770034843,
+ "grad_norm": 0.06187354400753975,
+ "learning_rate": 0.000125422220031917,
+ "loss": 1.825568675994873,
+ "step": 2565
+ },
+ {
+ "epoch": 35.641114982578394,
+ "grad_norm": 0.0630321055650711,
+ "learning_rate": 0.00012520860459779972,
+ "loss": 1.8002240657806396,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65505226480836,
+ "grad_norm": 0.06260699778795242,
+ "learning_rate": 0.0001249951324069986,
+ "loss": 1.793284296989441,
+ "step": 2567
+ },
+ {
+ "epoch": 35.66898954703833,
+ "grad_norm": 0.06165624037384987,
+ "learning_rate": 0.0001247818036315042,
+ "loss": 1.8106274604797363,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68292682926829,
+ "grad_norm": 0.06291734427213669,
+ "learning_rate": 0.00012456861844319155,
+ "loss": 1.802643895149231,
+ "step": 2569
+ },
+ {
+ "epoch": 35.69686411149826,
+ "grad_norm": 0.06160290911793709,
+ "learning_rate": 0.00012435557701382012,
+ "loss": 1.815314769744873,
+ "step": 2570
+ },
+ {
+ "epoch": 35.710801393728225,
+ "grad_norm": 0.06180083751678467,
+ "learning_rate": 0.0001241426795150336,
+ "loss": 1.805253267288208,
+ "step": 2571
+ },
+ {
+ "epoch": 35.724738675958186,
+ "grad_norm": 0.06322845816612244,
+ "learning_rate": 0.00012392992611835973,
+ "loss": 1.8169267177581787,
+ "step": 2572
+ },
+ {
+ "epoch": 35.73867595818815,
+ "grad_norm": 0.06337283551692963,
+ "learning_rate": 0.0001237173169952098,
+ "loss": 1.8248480558395386,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75261324041812,
+ "grad_norm": 0.06179392337799072,
+ "learning_rate": 0.00012350485231687954,
+ "loss": 1.8105932474136353,
+ "step": 2574
+ },
+ {
+ "epoch": 35.76655052264808,
+ "grad_norm": 0.06336724758148193,
+ "learning_rate": 0.0001232925322545476,
+ "loss": 1.821605920791626,
+ "step": 2575
+ },
+ {
+ "epoch": 35.78048780487805,
+ "grad_norm": 0.06384433060884476,
+ "learning_rate": 0.0001230803569792765,
+ "loss": 1.811798095703125,
+ "step": 2576
+ },
+ {
+ "epoch": 35.79442508710802,
+ "grad_norm": 0.06201609596610069,
+ "learning_rate": 0.0001228683266620121,
+ "loss": 1.8091926574707031,
+ "step": 2577
+ },
+ {
+ "epoch": 35.80836236933798,
+ "grad_norm": 0.06306285411119461,
+ "learning_rate": 0.00012265644147358326,
+ "loss": 1.819336175918579,
+ "step": 2578
+ },
+ {
+ "epoch": 35.822299651567945,
+ "grad_norm": 0.06383267790079117,
+ "learning_rate": 0.00012244470158470226,
+ "loss": 1.811619758605957,
+ "step": 2579
+ },
+ {
+ "epoch": 35.836236933797906,
+ "grad_norm": 0.06499970704317093,
+ "learning_rate": 0.00012223310716596387,
+ "loss": 1.8192344903945923,
+ "step": 2580
+ },
+ {
+ "epoch": 35.850174216027874,
+ "grad_norm": 0.06270603090524673,
+ "learning_rate": 0.00012202165838784601,
+ "loss": 1.8236922025680542,
+ "step": 2581
+ },
+ {
+ "epoch": 35.86411149825784,
+ "grad_norm": 0.06357081979513168,
+ "learning_rate": 0.00012181035542070913,
+ "loss": 1.8269872665405273,
+ "step": 2582
+ },
+ {
+ "epoch": 35.8780487804878,
+ "grad_norm": 0.06423989683389664,
+ "learning_rate": 0.00012159919843479617,
+ "loss": 1.8102588653564453,
+ "step": 2583
+ },
+ {
+ "epoch": 35.89198606271777,
+ "grad_norm": 0.06423227488994598,
+ "learning_rate": 0.00012138818760023257,
+ "loss": 1.8166489601135254,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90592334494774,
+ "grad_norm": 0.06358758360147476,
+ "learning_rate": 0.00012117732308702592,
+ "loss": 1.8135144710540771,
+ "step": 2585
+ },
+ {
+ "epoch": 35.9198606271777,
+ "grad_norm": 0.06234103813767433,
+ "learning_rate": 0.00012096660506506605,
+ "loss": 1.8288500308990479,
+ "step": 2586
+ },
+ {
+ "epoch": 35.933797909407666,
+ "grad_norm": 0.06331966072320938,
+ "learning_rate": 0.00012075603370412443,
+ "loss": 1.819105863571167,
+ "step": 2587
+ },
+ {
+ "epoch": 35.94773519163763,
+ "grad_norm": 0.06391844153404236,
+ "learning_rate": 0.00012054560917385476,
+ "loss": 1.8120977878570557,
+ "step": 2588
+ },
+ {
+ "epoch": 35.961672473867594,
+ "grad_norm": 0.06310919672250748,
+ "learning_rate": 0.00012033533164379225,
+ "loss": 1.8364615440368652,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97560975609756,
+ "grad_norm": 0.06485587358474731,
+ "learning_rate": 0.0001201252012833537,
+ "loss": 1.8377125263214111,
+ "step": 2590
+ },
+ {
+ "epoch": 35.98954703832753,
+ "grad_norm": 0.06357129663228989,
+ "learning_rate": 0.00011991521826183747,
+ "loss": 1.813971757888794,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.05116669833660126,
+ "learning_rate": 0.00011970538274842282,
+ "loss": 1.3662359714508057,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 0.6488010287284851,
+ "eval_runtime": 38.1237,
+ "eval_samples_per_second": 64.055,
+ "eval_steps_per_second": 0.525,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01393728222997,
+ "grad_norm": 0.058273524045944214,
+ "learning_rate": 0.00011949569491217073,
+ "loss": 1.7912993431091309,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02787456445993,
+ "grad_norm": 0.05773903802037239,
+ "learning_rate": 0.00011928615492202269,
+ "loss": 1.7948570251464844,
+ "step": 2594
+ },
+ {
+ "epoch": 36.041811846689896,
+ "grad_norm": 0.05757457762956619,
+ "learning_rate": 0.0001190767629468014,
+ "loss": 1.8028143644332886,
+ "step": 2595
+ },
+ {
+ "epoch": 36.055749128919864,
+ "grad_norm": 0.058159105479717255,
+ "learning_rate": 0.00011886751915521007,
+ "loss": 1.8019994497299194,
+ "step": 2596
+ },
+ {
+ "epoch": 36.069686411149824,
+ "grad_norm": 0.057715486735105515,
+ "learning_rate": 0.00011865842371583278,
+ "loss": 1.7835862636566162,
+ "step": 2597
+ },
+ {
+ "epoch": 36.08362369337979,
+ "grad_norm": 0.05769861489534378,
+ "learning_rate": 0.00011844947679713396,
+ "loss": 1.7842698097229004,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09756097560975,
+ "grad_norm": 0.05870186164975166,
+ "learning_rate": 0.00011824067856745812,
+ "loss": 1.7978391647338867,
+ "step": 2599
+ },
+ {
+ "epoch": 36.11149825783972,
+ "grad_norm": 0.05980672314763069,
+ "learning_rate": 0.00011803202919503064,
+ "loss": 1.7915937900543213,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12543554006969,
+ "grad_norm": 0.057950735092163086,
+ "learning_rate": 0.00011782352884795615,
+ "loss": 1.796860933303833,
+ "step": 2601
+ },
+ {
+ "epoch": 36.13937282229965,
+ "grad_norm": 0.059691980481147766,
+ "learning_rate": 0.00011761517769421983,
+ "loss": 1.7795453071594238,
+ "step": 2602
+ },
+ {
+ "epoch": 36.153310104529616,
+ "grad_norm": 0.05934140831232071,
+ "learning_rate": 0.00011740697590168635,
+ "loss": 1.7895190715789795,
+ "step": 2603
+ },
+ {
+ "epoch": 36.167247386759584,
+ "grad_norm": 0.0582442507147789,
+ "learning_rate": 0.00011719892363810018,
+ "loss": 1.7981176376342773,
+ "step": 2604
+ },
+ {
+ "epoch": 36.181184668989545,
+ "grad_norm": 0.05873899906873703,
+ "learning_rate": 0.00011699102107108539,
+ "loss": 1.7890758514404297,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19512195121951,
+ "grad_norm": 0.0597921647131443,
+ "learning_rate": 0.00011678326836814507,
+ "loss": 1.782232403755188,
+ "step": 2606
+ },
+ {
+ "epoch": 36.20905923344948,
+ "grad_norm": 0.05748225003480911,
+ "learning_rate": 0.00011657566569666198,
+ "loss": 1.7897863388061523,
+ "step": 2607
+ },
+ {
+ "epoch": 36.22299651567944,
+ "grad_norm": 0.059263598173856735,
+ "learning_rate": 0.00011636821322389777,
+ "loss": 1.8019763231277466,
+ "step": 2608
+ },
+ {
+ "epoch": 36.23693379790941,
+ "grad_norm": 0.05755976587533951,
+ "learning_rate": 0.00011616091111699333,
+ "loss": 1.8150629997253418,
+ "step": 2609
+ },
+ {
+ "epoch": 36.250871080139376,
+ "grad_norm": 0.0598963163793087,
+ "learning_rate": 0.00011595375954296786,
+ "loss": 1.7994740009307861,
+ "step": 2610
+ },
+ {
+ "epoch": 36.26480836236934,
+ "grad_norm": 0.057324476540088654,
+ "learning_rate": 0.00011574675866871997,
+ "loss": 1.8066706657409668,
+ "step": 2611
+ },
+ {
+ "epoch": 36.278745644599304,
+ "grad_norm": 0.05825965106487274,
+ "learning_rate": 0.00011553990866102651,
+ "loss": 1.7909674644470215,
+ "step": 2612
+ },
+ {
+ "epoch": 36.292682926829265,
+ "grad_norm": 0.05863742157816887,
+ "learning_rate": 0.00011533320968654265,
+ "loss": 1.7921855449676514,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30662020905923,
+ "grad_norm": 0.057966724038124084,
+ "learning_rate": 0.00011512666191180204,
+ "loss": 1.799203634262085,
+ "step": 2614
+ },
+ {
+ "epoch": 36.3205574912892,
+ "grad_norm": 0.058184582740068436,
+ "learning_rate": 0.00011492026550321653,
+ "loss": 1.7864094972610474,
+ "step": 2615
+ },
+ {
+ "epoch": 36.33449477351916,
+ "grad_norm": 0.06074970215559006,
+ "learning_rate": 0.00011471402062707607,
+ "loss": 1.8016419410705566,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34843205574913,
+ "grad_norm": 0.060255058109760284,
+ "learning_rate": 0.00011450792744954827,
+ "loss": 1.7989581823349,
+ "step": 2617
+ },
+ {
+ "epoch": 36.362369337979096,
+ "grad_norm": 0.058979928493499756,
+ "learning_rate": 0.00011430198613667861,
+ "loss": 1.7976062297821045,
+ "step": 2618
+ },
+ {
+ "epoch": 36.37630662020906,
+ "grad_norm": 0.06085631251335144,
+ "learning_rate": 0.00011409619685439064,
+ "loss": 1.799715518951416,
+ "step": 2619
+ },
+ {
+ "epoch": 36.390243902439025,
+ "grad_norm": 0.059801094233989716,
+ "learning_rate": 0.00011389055976848477,
+ "loss": 1.8050971031188965,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40418118466899,
+ "grad_norm": 0.06205856800079346,
+ "learning_rate": 0.00011368507504463914,
+ "loss": 1.809314489364624,
+ "step": 2621
+ },
+ {
+ "epoch": 36.41811846689895,
+ "grad_norm": 0.059292055666446686,
+ "learning_rate": 0.00011347974284840914,
+ "loss": 1.7975642681121826,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43205574912892,
+ "grad_norm": 0.05992339551448822,
+ "learning_rate": 0.00011327456334522725,
+ "loss": 1.7838283777236938,
+ "step": 2623
+ },
+ {
+ "epoch": 36.44599303135889,
+ "grad_norm": 0.059182096272706985,
+ "learning_rate": 0.00011306953670040275,
+ "loss": 1.8045337200164795,
+ "step": 2624
+ },
+ {
+ "epoch": 36.45993031358885,
+ "grad_norm": 0.05964009836316109,
+ "learning_rate": 0.00011286466307912184,
+ "loss": 1.7956809997558594,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47386759581882,
+ "grad_norm": 0.059848565608263016,
+ "learning_rate": 0.00011265994264644783,
+ "loss": 1.7996410131454468,
+ "step": 2626
+ },
+ {
+ "epoch": 36.48780487804878,
+ "grad_norm": 0.06067422404885292,
+ "learning_rate": 0.00011245537556732001,
+ "loss": 1.7993896007537842,
+ "step": 2627
+ },
+ {
+ "epoch": 36.501742160278745,
+ "grad_norm": 0.06120799481868744,
+ "learning_rate": 0.00011225096200655442,
+ "loss": 1.8088237047195435,
+ "step": 2628
+ },
+ {
+ "epoch": 36.51567944250871,
+ "grad_norm": 0.06022920086979866,
+ "learning_rate": 0.00011204670212884342,
+ "loss": 1.7926946878433228,
+ "step": 2629
+ },
+ {
+ "epoch": 36.52961672473867,
+ "grad_norm": 0.06015709787607193,
+ "learning_rate": 0.00011184259609875557,
+ "loss": 1.80572509765625,
+ "step": 2630
+ },
+ {
+ "epoch": 36.54355400696864,
+ "grad_norm": 0.06164759770035744,
+ "learning_rate": 0.00011163864408073522,
+ "loss": 1.7874038219451904,
+ "step": 2631
+ },
+ {
+ "epoch": 36.55749128919861,
+ "grad_norm": 0.060634590685367584,
+ "learning_rate": 0.00011143484623910293,
+ "loss": 1.7954940795898438,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57142857142857,
+ "grad_norm": 0.060891084372997284,
+ "learning_rate": 0.00011123120273805496,
+ "loss": 1.7963420152664185,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58536585365854,
+ "grad_norm": 0.06035187467932701,
+ "learning_rate": 0.0001110277137416632,
+ "loss": 1.8002746105194092,
+ "step": 2634
+ },
+ {
+ "epoch": 36.599303135888505,
+ "grad_norm": 0.06189136952161789,
+ "learning_rate": 0.00011082437941387512,
+ "loss": 1.809941053390503,
+ "step": 2635
+ },
+ {
+ "epoch": 36.613240418118465,
+ "grad_norm": 0.0598427951335907,
+ "learning_rate": 0.00011062119991851322,
+ "loss": 1.7951371669769287,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62717770034843,
+ "grad_norm": 0.06194192171096802,
+ "learning_rate": 0.000110418175419276,
+ "loss": 1.7994475364685059,
+ "step": 2637
+ },
+ {
+ "epoch": 36.641114982578394,
+ "grad_norm": 0.060569968074560165,
+ "learning_rate": 0.00011021530607973626,
+ "loss": 1.7968194484710693,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65505226480836,
+ "grad_norm": 0.06159248575568199,
+ "learning_rate": 0.00011001259206334235,
+ "loss": 1.8022544384002686,
+ "step": 2639
+ },
+ {
+ "epoch": 36.66898954703833,
+ "grad_norm": 0.060701292008161545,
+ "learning_rate": 0.00010981003353341721,
+ "loss": 1.798879623413086,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68292682926829,
+ "grad_norm": 0.060689397156238556,
+ "learning_rate": 0.00010960763065315864,
+ "loss": 1.787331461906433,
+ "step": 2641
+ },
+ {
+ "epoch": 36.69686411149826,
+ "grad_norm": 0.062465935945510864,
+ "learning_rate": 0.00010940538358563906,
+ "loss": 1.8018803596496582,
+ "step": 2642
+ },
+ {
+ "epoch": 36.710801393728225,
+ "grad_norm": 0.061564989387989044,
+ "learning_rate": 0.00010920329249380509,
+ "loss": 1.8022879362106323,
+ "step": 2643
+ },
+ {
+ "epoch": 36.724738675958186,
+ "grad_norm": 0.06203111261129379,
+ "learning_rate": 0.00010900135754047799,
+ "loss": 1.7954847812652588,
+ "step": 2644
+ },
+ {
+ "epoch": 36.73867595818815,
+ "grad_norm": 0.06047702953219414,
+ "learning_rate": 0.00010879957888835307,
+ "loss": 1.8152201175689697,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75261324041812,
+ "grad_norm": 0.06360939145088196,
+ "learning_rate": 0.00010859795669999981,
+ "loss": 1.7984482049942017,
+ "step": 2646
+ },
+ {
+ "epoch": 36.76655052264808,
+ "grad_norm": 0.061280008405447006,
+ "learning_rate": 0.00010839649113786137,
+ "loss": 1.794365406036377,
+ "step": 2647
+ },
+ {
+ "epoch": 36.78048780487805,
+ "grad_norm": 0.06262083351612091,
+ "learning_rate": 0.00010819518236425514,
+ "loss": 1.802119493484497,
+ "step": 2648
+ },
+ {
+ "epoch": 36.79442508710802,
+ "grad_norm": 0.062356967478990555,
+ "learning_rate": 0.00010799403054137197,
+ "loss": 1.8052328824996948,
+ "step": 2649
+ },
+ {
+ "epoch": 36.80836236933798,
+ "grad_norm": 0.06342893838882446,
+ "learning_rate": 0.00010779303583127609,
+ "loss": 1.8065122365951538,
+ "step": 2650
+ },
+ {
+ "epoch": 36.822299651567945,
+ "grad_norm": 0.06230684742331505,
+ "learning_rate": 0.00010759219839590535,
+ "loss": 1.802478551864624,
+ "step": 2651
+ },
+ {
+ "epoch": 36.836236933797906,
+ "grad_norm": 0.06416236609220505,
+ "learning_rate": 0.00010739151839707089,
+ "loss": 1.8185087442398071,
+ "step": 2652
+ },
+ {
+ "epoch": 36.850174216027874,
+ "grad_norm": 0.06391201913356781,
+ "learning_rate": 0.00010719099599645706,
+ "loss": 1.816373348236084,
+ "step": 2653
+ },
+ {
+ "epoch": 36.86411149825784,
+ "grad_norm": 0.06223445013165474,
+ "learning_rate": 0.0001069906313556208,
+ "loss": 1.8092248439788818,
+ "step": 2654
+ },
+ {
+ "epoch": 36.8780487804878,
+ "grad_norm": 0.06311052292585373,
+ "learning_rate": 0.00010679042463599263,
+ "loss": 1.8052345514297485,
+ "step": 2655
+ },
+ {
+ "epoch": 36.89198606271777,
+ "grad_norm": 0.06328947097063065,
+ "learning_rate": 0.00010659037599887545,
+ "loss": 1.798400640487671,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90592334494774,
+ "grad_norm": 0.06306478381156921,
+ "learning_rate": 0.0001063904856054446,
+ "loss": 1.800265908241272,
+ "step": 2657
+ },
+ {
+ "epoch": 36.9198606271777,
+ "grad_norm": 0.06399966031312943,
+ "learning_rate": 0.00010619075361674836,
+ "loss": 1.7947779893875122,
+ "step": 2658
+ },
+ {
+ "epoch": 36.933797909407666,
+ "grad_norm": 0.06385133415460587,
+ "learning_rate": 0.0001059911801937071,
+ "loss": 1.8032350540161133,
+ "step": 2659
+ },
+ {
+ "epoch": 36.94773519163763,
+ "grad_norm": 0.0634441003203392,
+ "learning_rate": 0.00010579176549711365,
+ "loss": 1.8048739433288574,
+ "step": 2660
+ },
+ {
+ "epoch": 36.961672473867594,
+ "grad_norm": 0.06289725005626678,
+ "learning_rate": 0.00010559250968763265,
+ "loss": 1.8113070726394653,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97560975609756,
+ "grad_norm": 0.06666543334722519,
+ "learning_rate": 0.00010539341292580086,
+ "loss": 1.8072322607040405,
+ "step": 2662
+ },
+ {
+ "epoch": 36.98954703832753,
+ "grad_norm": 0.06264351308345795,
+ "learning_rate": 0.00010519447537202729,
+ "loss": 1.7923619747161865,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.05352141708135605,
+ "learning_rate": 0.00010499569718659201,
+ "loss": 1.3402554988861084,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 0.6503449082374573,
+ "eval_runtime": 40.8339,
+ "eval_samples_per_second": 59.803,
+ "eval_steps_per_second": 0.49,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01393728222997,
+ "grad_norm": 0.055954668670892715,
+ "learning_rate": 0.00010479707852964713,
+ "loss": 1.7941787242889404,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02787456445993,
+ "grad_norm": 0.05661492794752121,
+ "learning_rate": 0.00010459861956121611,
+ "loss": 1.782745361328125,
+ "step": 2666
+ },
+ {
+ "epoch": 37.041811846689896,
+ "grad_norm": 0.061108414083719254,
+ "learning_rate": 0.00010440032044119383,
+ "loss": 1.770695686340332,
+ "step": 2667
+ },
+ {
+ "epoch": 37.055749128919864,
+ "grad_norm": 0.05666922777891159,
+ "learning_rate": 0.00010420218132934614,
+ "loss": 1.7809648513793945,
+ "step": 2668
+ },
+ {
+ "epoch": 37.069686411149824,
+ "grad_norm": 0.057485584169626236,
+ "learning_rate": 0.00010400420238531023,
+ "loss": 1.7725648880004883,
+ "step": 2669
+ },
+ {
+ "epoch": 37.08362369337979,
+ "grad_norm": 0.057979732751846313,
+ "learning_rate": 0.00010380638376859416,
+ "loss": 1.787489652633667,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09756097560975,
+ "grad_norm": 0.058842871338129044,
+ "learning_rate": 0.00010360872563857682,
+ "loss": 1.7838923931121826,
+ "step": 2671
+ },
+ {
+ "epoch": 37.11149825783972,
+ "grad_norm": 0.05769092217087746,
+ "learning_rate": 0.0001034112281545079,
+ "loss": 1.7657028436660767,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12543554006969,
+ "grad_norm": 0.057962507009506226,
+ "learning_rate": 0.00010321389147550725,
+ "loss": 1.7842955589294434,
+ "step": 2673
+ },
+ {
+ "epoch": 37.13937282229965,
+ "grad_norm": 0.059381090104579926,
+ "learning_rate": 0.00010301671576056588,
+ "loss": 1.7863147258758545,
+ "step": 2674
+ },
+ {
+ "epoch": 37.153310104529616,
+ "grad_norm": 0.05838813632726669,
+ "learning_rate": 0.00010281970116854436,
+ "loss": 1.7819740772247314,
+ "step": 2675
+ },
+ {
+ "epoch": 37.167247386759584,
+ "grad_norm": 0.05773032456636429,
+ "learning_rate": 0.00010262284785817392,
+ "loss": 1.7728110551834106,
+ "step": 2676
+ },
+ {
+ "epoch": 37.181184668989545,
+ "grad_norm": 0.05877206102013588,
+ "learning_rate": 0.00010242615598805574,
+ "loss": 1.7952494621276855,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19512195121951,
+ "grad_norm": 0.05759423226118088,
+ "learning_rate": 0.00010222962571666088,
+ "loss": 1.7932361364364624,
+ "step": 2678
+ },
+ {
+ "epoch": 37.20905923344948,
+ "grad_norm": 0.059793874621391296,
+ "learning_rate": 0.00010203325720233032,
+ "loss": 1.7818982601165771,
+ "step": 2679
+ },
+ {
+ "epoch": 37.22299651567944,
+ "grad_norm": 0.05714469775557518,
+ "learning_rate": 0.00010183705060327433,
+ "loss": 1.7894699573516846,
+ "step": 2680
+ },
+ {
+ "epoch": 37.23693379790941,
+ "grad_norm": 0.06009291484951973,
+ "learning_rate": 0.00010164100607757346,
+ "loss": 1.7877312898635864,
+ "step": 2681
+ },
+ {
+ "epoch": 37.250871080139376,
+ "grad_norm": 0.05877745524048805,
+ "learning_rate": 0.00010144512378317687,
+ "loss": 1.7893445491790771,
+ "step": 2682
+ },
+ {
+ "epoch": 37.26480836236934,
+ "grad_norm": 0.05971526354551315,
+ "learning_rate": 0.00010124940387790354,
+ "loss": 1.790606141090393,
+ "step": 2683
+ },
+ {
+ "epoch": 37.278745644599304,
+ "grad_norm": 0.05756371095776558,
+ "learning_rate": 0.00010105384651944148,
+ "loss": 1.775133490562439,
+ "step": 2684
+ },
+ {
+ "epoch": 37.292682926829265,
+ "grad_norm": 0.05870367959141731,
+ "learning_rate": 0.00010085845186534769,
+ "loss": 1.7902131080627441,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30662020905923,
+ "grad_norm": 0.05869534984230995,
+ "learning_rate": 0.00010066322007304819,
+ "loss": 1.7827963829040527,
+ "step": 2686
+ },
+ {
+ "epoch": 37.3205574912892,
+ "grad_norm": 0.0591689795255661,
+ "learning_rate": 0.00010046815129983757,
+ "loss": 1.7818281650543213,
+ "step": 2687
+ },
+ {
+ "epoch": 37.33449477351916,
+ "grad_norm": 0.05855981633067131,
+ "learning_rate": 0.00010027324570287925,
+ "loss": 1.794994592666626,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34843205574913,
+ "grad_norm": 0.05911006033420563,
+ "learning_rate": 0.00010007850343920519,
+ "loss": 1.7840418815612793,
+ "step": 2689
+ },
+ {
+ "epoch": 37.362369337979096,
+ "grad_norm": 0.05816571041941643,
+ "learning_rate": 9.988392466571572e-05,
+ "loss": 1.7875049114227295,
+ "step": 2690
+ },
+ {
+ "epoch": 37.37630662020906,
+ "grad_norm": 0.05893605574965477,
+ "learning_rate": 9.968950953917945e-05,
+ "loss": 1.7783112525939941,
+ "step": 2691
+ },
+ {
+ "epoch": 37.390243902439025,
+ "grad_norm": 0.05793707072734833,
+ "learning_rate": 9.949525821623309e-05,
+ "loss": 1.7789113521575928,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40418118466899,
+ "grad_norm": 0.05917073413729668,
+ "learning_rate": 9.930117085338156e-05,
+ "loss": 1.7670814990997314,
+ "step": 2693
+ },
+ {
+ "epoch": 37.41811846689895,
+ "grad_norm": 0.05918928608298302,
+ "learning_rate": 9.910724760699731e-05,
+ "loss": 1.79921293258667,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43205574912892,
+ "grad_norm": 0.060473326593637466,
+ "learning_rate": 9.891348863332093e-05,
+ "loss": 1.7918263673782349,
+ "step": 2695
+ },
+ {
+ "epoch": 37.44599303135889,
+ "grad_norm": 0.05952722951769829,
+ "learning_rate": 9.871989408846051e-05,
+ "loss": 1.7897589206695557,
+ "step": 2696
+ },
+ {
+ "epoch": 37.45993031358885,
+ "grad_norm": 0.05955512076616287,
+ "learning_rate": 9.852646412839178e-05,
+ "loss": 1.7902030944824219,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47386759581882,
+ "grad_norm": 0.059690166264772415,
+ "learning_rate": 9.833319890895756e-05,
+ "loss": 1.789273977279663,
+ "step": 2698
+ },
+ {
+ "epoch": 37.48780487804878,
+ "grad_norm": 0.06117507815361023,
+ "learning_rate": 9.814009858586817e-05,
+ "loss": 1.7829227447509766,
+ "step": 2699
+ },
+ {
+ "epoch": 37.501742160278745,
+ "grad_norm": 0.05962991714477539,
+ "learning_rate": 9.794716331470131e-05,
+ "loss": 1.788633108139038,
+ "step": 2700
+ },
+ {
+ "epoch": 37.51567944250871,
+ "grad_norm": 0.060302652418613434,
+ "learning_rate": 9.77543932509012e-05,
+ "loss": 1.7823851108551025,
+ "step": 2701
+ },
+ {
+ "epoch": 37.52961672473867,
+ "grad_norm": 0.06038743630051613,
+ "learning_rate": 9.756178854977925e-05,
+ "loss": 1.7907404899597168,
+ "step": 2702
+ },
+ {
+ "epoch": 37.54355400696864,
+ "grad_norm": 0.059840161353349686,
+ "learning_rate": 9.736934936651362e-05,
+ "loss": 1.7859036922454834,
+ "step": 2703
+ },
+ {
+ "epoch": 37.55749128919861,
+ "grad_norm": 0.06124330312013626,
+ "learning_rate": 9.717707585614916e-05,
+ "loss": 1.7850871086120605,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57142857142857,
+ "grad_norm": 0.060107145458459854,
+ "learning_rate": 9.698496817359698e-05,
+ "loss": 1.7971034049987793,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58536585365854,
+ "grad_norm": 0.062206294387578964,
+ "learning_rate": 9.679302647363476e-05,
+ "loss": 1.7905354499816895,
+ "step": 2706
+ },
+ {
+ "epoch": 37.599303135888505,
+ "grad_norm": 0.060184285044670105,
+ "learning_rate": 9.660125091090675e-05,
+ "loss": 1.7828166484832764,
+ "step": 2707
+ },
+ {
+ "epoch": 37.613240418118465,
+ "grad_norm": 0.05999206751585007,
+ "learning_rate": 9.64096416399228e-05,
+ "loss": 1.8008617162704468,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62717770034843,
+ "grad_norm": 0.0613752119243145,
+ "learning_rate": 9.621819881505918e-05,
+ "loss": 1.789717674255371,
+ "step": 2709
+ },
+ {
+ "epoch": 37.641114982578394,
+ "grad_norm": 0.060599468648433685,
+ "learning_rate": 9.602692259055767e-05,
+ "loss": 1.7871017456054688,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65505226480836,
+ "grad_norm": 0.06263872981071472,
+ "learning_rate": 9.583581312052646e-05,
+ "loss": 1.7943106889724731,
+ "step": 2711
+ },
+ {
+ "epoch": 37.66898954703833,
+ "grad_norm": 0.062194015830755234,
+ "learning_rate": 9.564487055893867e-05,
+ "loss": 1.788008689880371,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68292682926829,
+ "grad_norm": 0.060973457992076874,
+ "learning_rate": 9.545409505963338e-05,
+ "loss": 1.7923413515090942,
+ "step": 2713
+ },
+ {
+ "epoch": 37.69686411149826,
+ "grad_norm": 0.062401190400123596,
+ "learning_rate": 9.526348677631499e-05,
+ "loss": 1.8081228733062744,
+ "step": 2714
+ },
+ {
+ "epoch": 37.710801393728225,
+ "grad_norm": 0.060926176607608795,
+ "learning_rate": 9.507304586255311e-05,
+ "loss": 1.7845854759216309,
+ "step": 2715
+ },
+ {
+ "epoch": 37.724738675958186,
+ "grad_norm": 0.062316857278347015,
+ "learning_rate": 9.488277247178267e-05,
+ "loss": 1.7968542575836182,
+ "step": 2716
+ },
+ {
+ "epoch": 37.73867595818815,
+ "grad_norm": 0.06097151339054108,
+ "learning_rate": 9.469266675730319e-05,
+ "loss": 1.7956640720367432,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75261324041812,
+ "grad_norm": 0.06271521747112274,
+ "learning_rate": 9.450272887227983e-05,
+ "loss": 1.7865713834762573,
+ "step": 2718
+ },
+ {
+ "epoch": 37.76655052264808,
+ "grad_norm": 0.06257861852645874,
+ "learning_rate": 9.431295896974182e-05,
+ "loss": 1.7880938053131104,
+ "step": 2719
+ },
+ {
+ "epoch": 37.78048780487805,
+ "grad_norm": 0.06380198895931244,
+ "learning_rate": 9.412335720258341e-05,
+ "loss": 1.790265440940857,
+ "step": 2720
+ },
+ {
+ "epoch": 37.79442508710802,
+ "grad_norm": 0.06104693189263344,
+ "learning_rate": 9.393392372356335e-05,
+ "loss": 1.7910763025283813,
+ "step": 2721
+ },
+ {
+ "epoch": 37.80836236933798,
+ "grad_norm": 0.06306934356689453,
+ "learning_rate": 9.374465868530477e-05,
+ "loss": 1.7925502061843872,
+ "step": 2722
+ },
+ {
+ "epoch": 37.822299651567945,
+ "grad_norm": 0.06254854053258896,
+ "learning_rate": 9.355556224029515e-05,
+ "loss": 1.7916789054870605,
+ "step": 2723
+ },
+ {
+ "epoch": 37.836236933797906,
+ "grad_norm": 0.06360232084989548,
+ "learning_rate": 9.336663454088593e-05,
+ "loss": 1.7960188388824463,
+ "step": 2724
+ },
+ {
+ "epoch": 37.850174216027874,
+ "grad_norm": 0.06377686560153961,
+ "learning_rate": 9.317787573929282e-05,
+ "loss": 1.7944340705871582,
+ "step": 2725
+ },
+ {
+ "epoch": 37.86411149825784,
+ "grad_norm": 0.06208472698926926,
+ "learning_rate": 9.298928598759541e-05,
+ "loss": 1.7910699844360352,
+ "step": 2726
+ },
+ {
+ "epoch": 37.8780487804878,
+ "grad_norm": 0.0627727285027504,
+ "learning_rate": 9.280086543773698e-05,
+ "loss": 1.7890523672103882,
+ "step": 2727
+ },
+ {
+ "epoch": 37.89198606271777,
+ "grad_norm": 0.06323178857564926,
+ "learning_rate": 9.26126142415247e-05,
+ "loss": 1.7757771015167236,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90592334494774,
+ "grad_norm": 0.062019236385822296,
+ "learning_rate": 9.2424532550629e-05,
+ "loss": 1.786799430847168,
+ "step": 2729
+ },
+ {
+ "epoch": 37.9198606271777,
+ "grad_norm": 0.06305447220802307,
+ "learning_rate": 9.223662051658408e-05,
+ "loss": 1.7832386493682861,
+ "step": 2730
+ },
+ {
+ "epoch": 37.933797909407666,
+ "grad_norm": 0.06175057590007782,
+ "learning_rate": 9.204887829078709e-05,
+ "loss": 1.7787675857543945,
+ "step": 2731
+ },
+ {
+ "epoch": 37.94773519163763,
+ "grad_norm": 0.06420185416936874,
+ "learning_rate": 9.186130602449861e-05,
+ "loss": 1.789478063583374,
+ "step": 2732
+ },
+ {
+ "epoch": 37.961672473867594,
+ "grad_norm": 0.06195196136832237,
+ "learning_rate": 9.167390386884224e-05,
+ "loss": 1.7866311073303223,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97560975609756,
+ "grad_norm": 0.061849065124988556,
+ "learning_rate": 9.148667197480455e-05,
+ "loss": 1.7823681831359863,
+ "step": 2734
+ },
+ {
+ "epoch": 37.98954703832753,
+ "grad_norm": 0.06343266367912292,
+ "learning_rate": 9.129961049323494e-05,
+ "loss": 1.7910778522491455,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.051387008279561996,
+ "learning_rate": 9.111271957484519e-05,
+ "loss": 1.3254375457763672,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 0.6518338918685913,
+ "eval_runtime": 39.4344,
+ "eval_samples_per_second": 61.926,
+ "eval_steps_per_second": 0.507,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01393728222997,
+ "grad_norm": 0.054842304438352585,
+ "learning_rate": 9.092599937021031e-05,
+ "loss": 1.7629472017288208,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02787456445993,
+ "grad_norm": 0.0560758002102375,
+ "learning_rate": 9.073945002976715e-05,
+ "loss": 1.765484094619751,
+ "step": 2738
+ },
+ {
+ "epoch": 38.041811846689896,
+ "grad_norm": 0.05736801400780678,
+ "learning_rate": 9.055307170381522e-05,
+ "loss": 1.7687311172485352,
+ "step": 2739
+ },
+ {
+ "epoch": 38.055749128919864,
+ "grad_norm": 0.056426238268613815,
+ "learning_rate": 9.036686454251613e-05,
+ "loss": 1.7623649835586548,
+ "step": 2740
+ },
+ {
+ "epoch": 38.069686411149824,
+ "grad_norm": 0.055244769901037216,
+ "learning_rate": 9.018082869589369e-05,
+ "loss": 1.7769012451171875,
+ "step": 2741
+ },
+ {
+ "epoch": 38.08362369337979,
+ "grad_norm": 0.05597008392214775,
+ "learning_rate": 8.999496431383368e-05,
+ "loss": 1.7746217250823975,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09756097560975,
+ "grad_norm": 0.05772856995463371,
+ "learning_rate": 8.980927154608341e-05,
+ "loss": 1.7711513042449951,
+ "step": 2743
+ },
+ {
+ "epoch": 38.11149825783972,
+ "grad_norm": 0.05718901380896568,
+ "learning_rate": 8.962375054225255e-05,
+ "loss": 1.7798418998718262,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12543554006969,
+ "grad_norm": 0.05619210749864578,
+ "learning_rate": 8.943840145181177e-05,
+ "loss": 1.7707206010818481,
+ "step": 2745
+ },
+ {
+ "epoch": 38.13937282229965,
+ "grad_norm": 0.05785241723060608,
+ "learning_rate": 8.925322442409361e-05,
+ "loss": 1.7814784049987793,
+ "step": 2746
+ },
+ {
+ "epoch": 38.153310104529616,
+ "grad_norm": 0.05741840600967407,
+ "learning_rate": 8.906821960829163e-05,
+ "loss": 1.7686582803726196,
+ "step": 2747
+ },
+ {
+ "epoch": 38.167247386759584,
+ "grad_norm": 0.056764375418424606,
+ "learning_rate": 8.888338715346113e-05,
+ "loss": 1.7791080474853516,
+ "step": 2748
+ },
+ {
+ "epoch": 38.181184668989545,
+ "grad_norm": 0.05660741776227951,
+ "learning_rate": 8.869872720851831e-05,
+ "loss": 1.7721326351165771,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19512195121951,
+ "grad_norm": 0.057148877531290054,
+ "learning_rate": 8.851423992224012e-05,
+ "loss": 1.7865493297576904,
+ "step": 2750
+ },
+ {
+ "epoch": 38.20905923344948,
+ "grad_norm": 0.05673397332429886,
+ "learning_rate": 8.832992544326473e-05,
+ "loss": 1.775355577468872,
+ "step": 2751
+ },
+ {
+ "epoch": 38.22299651567944,
+ "grad_norm": 0.05855946987867355,
+ "learning_rate": 8.814578392009104e-05,
+ "loss": 1.7630369663238525,
+ "step": 2752
+ },
+ {
+ "epoch": 38.23693379790941,
+ "grad_norm": 0.057675641030073166,
+ "learning_rate": 8.796181550107857e-05,
+ "loss": 1.7706618309020996,
+ "step": 2753
+ },
+ {
+ "epoch": 38.250871080139376,
+ "grad_norm": 0.05693305283784866,
+ "learning_rate": 8.777802033444712e-05,
+ "loss": 1.7833642959594727,
+ "step": 2754
+ },
+ {
+ "epoch": 38.26480836236934,
+ "grad_norm": 0.05849318578839302,
+ "learning_rate": 8.75943985682774e-05,
+ "loss": 1.7712740898132324,
+ "step": 2755
+ },
+ {
+ "epoch": 38.278745644599304,
+ "grad_norm": 0.058639708906412125,
+ "learning_rate": 8.741095035051017e-05,
+ "loss": 1.7742516994476318,
+ "step": 2756
+ },
+ {
+ "epoch": 38.292682926829265,
+ "grad_norm": 0.05999431386590004,
+ "learning_rate": 8.722767582894613e-05,
+ "loss": 1.770422101020813,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30662020905923,
+ "grad_norm": 0.05881490185856819,
+ "learning_rate": 8.704457515124636e-05,
+ "loss": 1.7781115770339966,
+ "step": 2758
+ },
+ {
+ "epoch": 38.3205574912892,
+ "grad_norm": 0.05765020474791527,
+ "learning_rate": 8.686164846493176e-05,
+ "loss": 1.7714276313781738,
+ "step": 2759
+ },
+ {
+ "epoch": 38.33449477351916,
+ "grad_norm": 0.058526743203401566,
+ "learning_rate": 8.667889591738317e-05,
+ "loss": 1.766985297203064,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34843205574913,
+ "grad_norm": 0.0583895705640316,
+ "learning_rate": 8.649631765584083e-05,
+ "loss": 1.7656654119491577,
+ "step": 2761
+ },
+ {
+ "epoch": 38.362369337979096,
+ "grad_norm": 0.05924084037542343,
+ "learning_rate": 8.631391382740482e-05,
+ "loss": 1.789198875427246,
+ "step": 2762
+ },
+ {
+ "epoch": 38.37630662020906,
+ "grad_norm": 0.05770174786448479,
+ "learning_rate": 8.613168457903459e-05,
+ "loss": 1.7670378684997559,
+ "step": 2763
+ },
+ {
+ "epoch": 38.390243902439025,
+ "grad_norm": 0.0583224780857563,
+ "learning_rate": 8.594963005754901e-05,
+ "loss": 1.7765432596206665,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40418118466899,
+ "grad_norm": 0.05907677114009857,
+ "learning_rate": 8.57677504096261e-05,
+ "loss": 1.7787013053894043,
+ "step": 2765
+ },
+ {
+ "epoch": 38.41811846689895,
+ "grad_norm": 0.059105876833200455,
+ "learning_rate": 8.558604578180301e-05,
+ "loss": 1.7921006679534912,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43205574912892,
+ "grad_norm": 0.05911828950047493,
+ "learning_rate": 8.540451632047593e-05,
+ "loss": 1.7742506265640259,
+ "step": 2767
+ },
+ {
+ "epoch": 38.44599303135889,
+ "grad_norm": 0.05825108662247658,
+ "learning_rate": 8.522316217189972e-05,
+ "loss": 1.7643852233886719,
+ "step": 2768
+ },
+ {
+ "epoch": 38.45993031358885,
+ "grad_norm": 0.05910007283091545,
+ "learning_rate": 8.504198348218821e-05,
+ "loss": 1.7819852828979492,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47386759581882,
+ "grad_norm": 0.058992717415094376,
+ "learning_rate": 8.486098039731384e-05,
+ "loss": 1.7629930973052979,
+ "step": 2770
+ },
+ {
+ "epoch": 38.48780487804878,
+ "grad_norm": 0.05846566706895828,
+ "learning_rate": 8.46801530631075e-05,
+ "loss": 1.773916244506836,
+ "step": 2771
+ },
+ {
+ "epoch": 38.501742160278745,
+ "grad_norm": 0.058348461985588074,
+ "learning_rate": 8.449950162525859e-05,
+ "loss": 1.7839322090148926,
+ "step": 2772
+ },
+ {
+ "epoch": 38.51567944250871,
+ "grad_norm": 0.05947791039943695,
+ "learning_rate": 8.431902622931443e-05,
+ "loss": 1.765789270401001,
+ "step": 2773
+ },
+ {
+ "epoch": 38.52961672473867,
+ "grad_norm": 0.059648409485816956,
+ "learning_rate": 8.413872702068119e-05,
+ "loss": 1.7754334211349487,
+ "step": 2774
+ },
+ {
+ "epoch": 38.54355400696864,
+ "grad_norm": 0.05937156081199646,
+ "learning_rate": 8.395860414462238e-05,
+ "loss": 1.7900447845458984,
+ "step": 2775
+ },
+ {
+ "epoch": 38.55749128919861,
+ "grad_norm": 0.06034074351191521,
+ "learning_rate": 8.377865774625985e-05,
+ "loss": 1.7679557800292969,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57142857142857,
+ "grad_norm": 0.0595686174929142,
+ "learning_rate": 8.359888797057316e-05,
+ "loss": 1.7792972326278687,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58536585365854,
+ "grad_norm": 0.05900043621659279,
+ "learning_rate": 8.341929496239958e-05,
+ "loss": 1.7826911211013794,
+ "step": 2778
+ },
+ {
+ "epoch": 38.599303135888505,
+ "grad_norm": 0.059854842722415924,
+ "learning_rate": 8.323987886643402e-05,
+ "loss": 1.782975196838379,
+ "step": 2779
+ },
+ {
+ "epoch": 38.613240418118465,
+ "grad_norm": 0.0607217513024807,
+ "learning_rate": 8.306063982722855e-05,
+ "loss": 1.784066081047058,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62717770034843,
+ "grad_norm": 0.06086676940321922,
+ "learning_rate": 8.288157798919318e-05,
+ "loss": 1.7733347415924072,
+ "step": 2781
+ },
+ {
+ "epoch": 38.641114982578394,
+ "grad_norm": 0.06048542261123657,
+ "learning_rate": 8.27026934965945e-05,
+ "loss": 1.7637434005737305,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65505226480836,
+ "grad_norm": 0.06176905333995819,
+ "learning_rate": 8.25239864935566e-05,
+ "loss": 1.7731115818023682,
+ "step": 2783
+ },
+ {
+ "epoch": 38.66898954703833,
+ "grad_norm": 0.05974547937512398,
+ "learning_rate": 8.23454571240605e-05,
+ "loss": 1.772669792175293,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68292682926829,
+ "grad_norm": 0.06157250702381134,
+ "learning_rate": 8.216710553194416e-05,
+ "loss": 1.7675827741622925,
+ "step": 2785
+ },
+ {
+ "epoch": 38.69686411149826,
+ "grad_norm": 0.06226542964577675,
+ "learning_rate": 8.198893186090222e-05,
+ "loss": 1.7833688259124756,
+ "step": 2786
+ },
+ {
+ "epoch": 38.710801393728225,
+ "grad_norm": 0.061170827597379684,
+ "learning_rate": 8.181093625448585e-05,
+ "loss": 1.777653455734253,
+ "step": 2787
+ },
+ {
+ "epoch": 38.724738675958186,
+ "grad_norm": 0.06075199693441391,
+ "learning_rate": 8.163311885610299e-05,
+ "loss": 1.7740358114242554,
+ "step": 2788
+ },
+ {
+ "epoch": 38.73867595818815,
+ "grad_norm": 0.061266977339982986,
+ "learning_rate": 8.145547980901791e-05,
+ "loss": 1.7838897705078125,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75261324041812,
+ "grad_norm": 0.06033504754304886,
+ "learning_rate": 8.127801925635126e-05,
+ "loss": 1.7636661529541016,
+ "step": 2790
+ },
+ {
+ "epoch": 38.76655052264808,
+ "grad_norm": 0.06320908665657043,
+ "learning_rate": 8.110073734107954e-05,
+ "loss": 1.768554449081421,
+ "step": 2791
+ },
+ {
+ "epoch": 38.78048780487805,
+ "grad_norm": 0.06087823957204819,
+ "learning_rate": 8.092363420603584e-05,
+ "loss": 1.7832964658737183,
+ "step": 2792
+ },
+ {
+ "epoch": 38.79442508710802,
+ "grad_norm": 0.061426736414432526,
+ "learning_rate": 8.074670999390896e-05,
+ "loss": 1.774822473526001,
+ "step": 2793
+ },
+ {
+ "epoch": 38.80836236933798,
+ "grad_norm": 0.06240220367908478,
+ "learning_rate": 8.056996484724342e-05,
+ "loss": 1.788359522819519,
+ "step": 2794
+ },
+ {
+ "epoch": 38.822299651567945,
+ "grad_norm": 0.06103154271841049,
+ "learning_rate": 8.039339890843958e-05,
+ "loss": 1.7723958492279053,
+ "step": 2795
+ },
+ {
+ "epoch": 38.836236933797906,
+ "grad_norm": 0.06289014220237732,
+ "learning_rate": 8.02170123197535e-05,
+ "loss": 1.7608444690704346,
+ "step": 2796
+ },
+ {
+ "epoch": 38.850174216027874,
+ "grad_norm": 0.06123042851686478,
+ "learning_rate": 8.004080522329674e-05,
+ "loss": 1.784475326538086,
+ "step": 2797
+ },
+ {
+ "epoch": 38.86411149825784,
+ "grad_norm": 0.0598340779542923,
+ "learning_rate": 7.986477776103601e-05,
+ "loss": 1.7765214443206787,
+ "step": 2798
+ },
+ {
+ "epoch": 38.8780487804878,
+ "grad_norm": 0.06242257356643677,
+ "learning_rate": 7.968893007479343e-05,
+ "loss": 1.7831794023513794,
+ "step": 2799
+ },
+ {
+ "epoch": 38.89198606271777,
+ "grad_norm": 0.06315907835960388,
+ "learning_rate": 7.951326230624658e-05,
+ "loss": 1.8051912784576416,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90592334494774,
+ "grad_norm": 0.061293307691812515,
+ "learning_rate": 7.933777459692756e-05,
+ "loss": 1.776687741279602,
+ "step": 2801
+ },
+ {
+ "epoch": 38.9198606271777,
+ "grad_norm": 0.06186775118112564,
+ "learning_rate": 7.916246708822373e-05,
+ "loss": 1.7880871295928955,
+ "step": 2802
+ },
+ {
+ "epoch": 38.933797909407666,
+ "grad_norm": 0.0620921365916729,
+ "learning_rate": 7.898733992137715e-05,
+ "loss": 1.7791707515716553,
+ "step": 2803
+ },
+ {
+ "epoch": 38.94773519163763,
+ "grad_norm": 0.06211252138018608,
+ "learning_rate": 7.881239323748475e-05,
+ "loss": 1.7760372161865234,
+ "step": 2804
+ },
+ {
+ "epoch": 38.961672473867594,
+ "grad_norm": 0.06390377879142761,
+ "learning_rate": 7.863762717749771e-05,
+ "loss": 1.7718498706817627,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97560975609756,
+ "grad_norm": 0.06344659626483917,
+ "learning_rate": 7.846304188222189e-05,
+ "loss": 1.7801710367202759,
+ "step": 2806
+ },
+ {
+ "epoch": 38.98954703832753,
+ "grad_norm": 0.061760690063238144,
+ "learning_rate": 7.828863749231777e-05,
+ "loss": 1.7878985404968262,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.05050521343946457,
+ "learning_rate": 7.811441414829958e-05,
+ "loss": 1.3291038274765015,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 0.6531191468238831,
+ "eval_runtime": 38.9139,
+ "eval_samples_per_second": 62.754,
+ "eval_steps_per_second": 0.514,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01393728222997,
+ "grad_norm": 0.05571041256189346,
+ "learning_rate": 7.794037199053598e-05,
+ "loss": 1.7602754831314087,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02787456445993,
+ "grad_norm": 0.05649850144982338,
+ "learning_rate": 7.776651115924959e-05,
+ "loss": 1.7567126750946045,
+ "step": 2810
+ },
+ {
+ "epoch": 39.041811846689896,
+ "grad_norm": 0.05873497575521469,
+ "learning_rate": 7.759283179451704e-05,
+ "loss": 1.757828950881958,
+ "step": 2811
+ },
+ {
+ "epoch": 39.055749128919864,
+ "grad_norm": 0.056013382971286774,
+ "learning_rate": 7.741933403626848e-05,
+ "loss": 1.7616511583328247,
+ "step": 2812
+ },
+ {
+ "epoch": 39.069686411149824,
+ "grad_norm": 0.056703995913267136,
+ "learning_rate": 7.724601802428805e-05,
+ "loss": 1.7484111785888672,
+ "step": 2813
+ },
+ {
+ "epoch": 39.08362369337979,
+ "grad_norm": 0.05629453808069229,
+ "learning_rate": 7.707288389821329e-05,
+ "loss": 1.788665533065796,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09756097560975,
+ "grad_norm": 0.056537557393312454,
+ "learning_rate": 7.689993179753519e-05,
+ "loss": 1.7590811252593994,
+ "step": 2815
+ },
+ {
+ "epoch": 39.11149825783972,
+ "grad_norm": 0.05757816880941391,
+ "learning_rate": 7.672716186159829e-05,
+ "loss": 1.7594993114471436,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12543554006969,
+ "grad_norm": 0.05591630935668945,
+ "learning_rate": 7.655457422959993e-05,
+ "loss": 1.7654821872711182,
+ "step": 2817
+ },
+ {
+ "epoch": 39.13937282229965,
+ "grad_norm": 0.056902945041656494,
+ "learning_rate": 7.638216904059122e-05,
+ "loss": 1.7600302696228027,
+ "step": 2818
+ },
+ {
+ "epoch": 39.153310104529616,
+ "grad_norm": 0.05612136796116829,
+ "learning_rate": 7.620994643347559e-05,
+ "loss": 1.7703990936279297,
+ "step": 2819
+ },
+ {
+ "epoch": 39.167247386759584,
+ "grad_norm": 0.05739735811948776,
+ "learning_rate": 7.60379065470098e-05,
+ "loss": 1.7512180805206299,
+ "step": 2820
+ },
+ {
+ "epoch": 39.181184668989545,
+ "grad_norm": 0.05629546195268631,
+ "learning_rate": 7.586604951980326e-05,
+ "loss": 1.748405933380127,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19512195121951,
+ "grad_norm": 0.05683593824505806,
+ "learning_rate": 7.569437549031813e-05,
+ "loss": 1.7602342367172241,
+ "step": 2822
+ },
+ {
+ "epoch": 39.20905923344948,
+ "grad_norm": 0.0563126876950264,
+ "learning_rate": 7.55228845968691e-05,
+ "loss": 1.7734246253967285,
+ "step": 2823
+ },
+ {
+ "epoch": 39.22299651567944,
+ "grad_norm": 0.05859875679016113,
+ "learning_rate": 7.535157697762313e-05,
+ "loss": 1.761047124862671,
+ "step": 2824
+ },
+ {
+ "epoch": 39.23693379790941,
+ "grad_norm": 0.0567043274641037,
+ "learning_rate": 7.518045277059979e-05,
+ "loss": 1.770047664642334,
+ "step": 2825
+ },
+ {
+ "epoch": 39.250871080139376,
+ "grad_norm": 0.056725919246673584,
+ "learning_rate": 7.500951211367068e-05,
+ "loss": 1.7686347961425781,
+ "step": 2826
+ },
+ {
+ "epoch": 39.26480836236934,
+ "grad_norm": 0.05699746683239937,
+ "learning_rate": 7.483875514455979e-05,
+ "loss": 1.7612677812576294,
+ "step": 2827
+ },
+ {
+ "epoch": 39.278745644599304,
+ "grad_norm": 0.057768259197473526,
+ "learning_rate": 7.466818200084264e-05,
+ "loss": 1.7612879276275635,
+ "step": 2828
+ },
+ {
+ "epoch": 39.292682926829265,
+ "grad_norm": 0.05838700383901596,
+ "learning_rate": 7.449779281994712e-05,
+ "loss": 1.7827105522155762,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30662020905923,
+ "grad_norm": 0.05629018694162369,
+ "learning_rate": 7.43275877391528e-05,
+ "loss": 1.772542953491211,
+ "step": 2830
+ },
+ {
+ "epoch": 39.3205574912892,
+ "grad_norm": 0.058692216873168945,
+ "learning_rate": 7.415756689559061e-05,
+ "loss": 1.7646946907043457,
+ "step": 2831
+ },
+ {
+ "epoch": 39.33449477351916,
+ "grad_norm": 0.057233408093452454,
+ "learning_rate": 7.398773042624341e-05,
+ "loss": 1.7534501552581787,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34843205574913,
+ "grad_norm": 0.05912395194172859,
+ "learning_rate": 7.381807846794532e-05,
+ "loss": 1.7443028688430786,
+ "step": 2833
+ },
+ {
+ "epoch": 39.362369337979096,
+ "grad_norm": 0.058173369616270065,
+ "learning_rate": 7.3648611157382e-05,
+ "loss": 1.752382755279541,
+ "step": 2834
+ },
+ {
+ "epoch": 39.37630662020906,
+ "grad_norm": 0.05793056637048721,
+ "learning_rate": 7.34793286310899e-05,
+ "loss": 1.7651920318603516,
+ "step": 2835
+ },
+ {
+ "epoch": 39.390243902439025,
+ "grad_norm": 0.057997558265924454,
+ "learning_rate": 7.331023102545716e-05,
+ "loss": 1.7639983892440796,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40418118466899,
+ "grad_norm": 0.05872127786278725,
+ "learning_rate": 7.314131847672268e-05,
+ "loss": 1.7662757635116577,
+ "step": 2837
+ },
+ {
+ "epoch": 39.41811846689895,
+ "grad_norm": 0.05767998844385147,
+ "learning_rate": 7.297259112097608e-05,
+ "loss": 1.7753112316131592,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43205574912892,
+ "grad_norm": 0.05973566323518753,
+ "learning_rate": 7.280404909415801e-05,
+ "loss": 1.7647457122802734,
+ "step": 2839
+ },
+ {
+ "epoch": 39.44599303135889,
+ "grad_norm": 0.05860889330506325,
+ "learning_rate": 7.263569253205973e-05,
+ "loss": 1.7454320192337036,
+ "step": 2840
+ },
+ {
+ "epoch": 39.45993031358885,
+ "grad_norm": 0.05834508687257767,
+ "learning_rate": 7.24675215703232e-05,
+ "loss": 1.7634966373443604,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47386759581882,
+ "grad_norm": 0.058330077677965164,
+ "learning_rate": 7.229953634444055e-05,
+ "loss": 1.7737380266189575,
+ "step": 2842
+ },
+ {
+ "epoch": 39.48780487804878,
+ "grad_norm": 0.05816008523106575,
+ "learning_rate": 7.213173698975444e-05,
+ "loss": 1.7849770784378052,
+ "step": 2843
+ },
+ {
+ "epoch": 39.501742160278745,
+ "grad_norm": 0.0591905452311039,
+ "learning_rate": 7.1964123641458e-05,
+ "loss": 1.7493488788604736,
+ "step": 2844
+ },
+ {
+ "epoch": 39.51567944250871,
+ "grad_norm": 0.05864933878183365,
+ "learning_rate": 7.179669643459405e-05,
+ "loss": 1.7704007625579834,
+ "step": 2845
+ },
+ {
+ "epoch": 39.52961672473867,
+ "grad_norm": 0.05933962017297745,
+ "learning_rate": 7.162945550405575e-05,
+ "loss": 1.7526596784591675,
+ "step": 2846
+ },
+ {
+ "epoch": 39.54355400696864,
+ "grad_norm": 0.05753380060195923,
+ "learning_rate": 7.146240098458613e-05,
+ "loss": 1.7623823881149292,
+ "step": 2847
+ },
+ {
+ "epoch": 39.55749128919861,
+ "grad_norm": 0.05988965928554535,
+ "learning_rate": 7.129553301077801e-05,
+ "loss": 1.7672151327133179,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57142857142857,
+ "grad_norm": 0.06081433221697807,
+ "learning_rate": 7.112885171707378e-05,
+ "loss": 1.7693394422531128,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58536585365854,
+ "grad_norm": 0.05812366306781769,
+ "learning_rate": 7.096235723776562e-05,
+ "loss": 1.7645395994186401,
+ "step": 2850
+ },
+ {
+ "epoch": 39.599303135888505,
+ "grad_norm": 0.05910315737128258,
+ "learning_rate": 7.079604970699514e-05,
+ "loss": 1.7725062370300293,
+ "step": 2851
+ },
+ {
+ "epoch": 39.613240418118465,
+ "grad_norm": 0.059484075754880905,
+ "learning_rate": 7.062992925875332e-05,
+ "loss": 1.7643908262252808,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62717770034843,
+ "grad_norm": 0.05829835683107376,
+ "learning_rate": 7.046399602688045e-05,
+ "loss": 1.7774662971496582,
+ "step": 2853
+ },
+ {
+ "epoch": 39.641114982578394,
+ "grad_norm": 0.059603478759527206,
+ "learning_rate": 7.029825014506572e-05,
+ "loss": 1.7719018459320068,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65505226480836,
+ "grad_norm": 0.05839652940630913,
+ "learning_rate": 7.013269174684795e-05,
+ "loss": 1.7735795974731445,
+ "step": 2855
+ },
+ {
+ "epoch": 39.66898954703833,
+ "grad_norm": 0.05930941551923752,
+ "learning_rate": 6.996732096561422e-05,
+ "loss": 1.7792577743530273,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68292682926829,
+ "grad_norm": 0.05927743390202522,
+ "learning_rate": 6.980213793460092e-05,
+ "loss": 1.755126714706421,
+ "step": 2857
+ },
+ {
+ "epoch": 39.69686411149826,
+ "grad_norm": 0.05989091843366623,
+ "learning_rate": 6.963714278689304e-05,
+ "loss": 1.7720985412597656,
+ "step": 2858
+ },
+ {
+ "epoch": 39.710801393728225,
+ "grad_norm": 0.058541540056467056,
+ "learning_rate": 6.947233565542417e-05,
+ "loss": 1.7545472383499146,
+ "step": 2859
+ },
+ {
+ "epoch": 39.724738675958186,
+ "grad_norm": 0.059460222721099854,
+ "learning_rate": 6.930771667297653e-05,
+ "loss": 1.7513591051101685,
+ "step": 2860
+ },
+ {
+ "epoch": 39.73867595818815,
+ "grad_norm": 0.06000630557537079,
+ "learning_rate": 6.914328597218042e-05,
+ "loss": 1.7690961360931396,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75261324041812,
+ "grad_norm": 0.06078756973147392,
+ "learning_rate": 6.8979043685515e-05,
+ "loss": 1.7823233604431152,
+ "step": 2862
+ },
+ {
+ "epoch": 39.76655052264808,
+ "grad_norm": 0.06049913540482521,
+ "learning_rate": 6.881498994530708e-05,
+ "loss": 1.7722759246826172,
+ "step": 2863
+ },
+ {
+ "epoch": 39.78048780487805,
+ "grad_norm": 0.059854526072740555,
+ "learning_rate": 6.865112488373186e-05,
+ "loss": 1.7620121240615845,
+ "step": 2864
+ },
+ {
+ "epoch": 39.79442508710802,
+ "grad_norm": 0.05936812236905098,
+ "learning_rate": 6.84874486328125e-05,
+ "loss": 1.7765591144561768,
+ "step": 2865
+ },
+ {
+ "epoch": 39.80836236933798,
+ "grad_norm": 0.061247918754816055,
+ "learning_rate": 6.832396132441993e-05,
+ "loss": 1.776090145111084,
+ "step": 2866
+ },
+ {
+ "epoch": 39.822299651567945,
+ "grad_norm": 0.0605037659406662,
+ "learning_rate": 6.816066309027309e-05,
+ "loss": 1.7756134271621704,
+ "step": 2867
+ },
+ {
+ "epoch": 39.836236933797906,
+ "grad_norm": 0.06012726575136185,
+ "learning_rate": 6.799755406193815e-05,
+ "loss": 1.7574580907821655,
+ "step": 2868
+ },
+ {
+ "epoch": 39.850174216027874,
+ "grad_norm": 0.06041746586561203,
+ "learning_rate": 6.783463437082929e-05,
+ "loss": 1.7667291164398193,
+ "step": 2869
+ },
+ {
+ "epoch": 39.86411149825784,
+ "grad_norm": 0.06069319322705269,
+ "learning_rate": 6.767190414820792e-05,
+ "loss": 1.7681057453155518,
+ "step": 2870
+ },
+ {
+ "epoch": 39.8780487804878,
+ "grad_norm": 0.06130603328347206,
+ "learning_rate": 6.750936352518284e-05,
+ "loss": 1.7589905261993408,
+ "step": 2871
+ },
+ {
+ "epoch": 39.89198606271777,
+ "grad_norm": 0.06082052364945412,
+ "learning_rate": 6.734701263271011e-05,
+ "loss": 1.76715886592865,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90592334494774,
+ "grad_norm": 0.06103082001209259,
+ "learning_rate": 6.718485160159289e-05,
+ "loss": 1.766019344329834,
+ "step": 2873
+ },
+ {
+ "epoch": 39.9198606271777,
+ "grad_norm": 0.06045110151171684,
+ "learning_rate": 6.702288056248145e-05,
+ "loss": 1.768965244293213,
+ "step": 2874
+ },
+ {
+ "epoch": 39.933797909407666,
+ "grad_norm": 0.06195594742894173,
+ "learning_rate": 6.686109964587285e-05,
+ "loss": 1.7693687677383423,
+ "step": 2875
+ },
+ {
+ "epoch": 39.94773519163763,
+ "grad_norm": 0.06063162162899971,
+ "learning_rate": 6.669950898211106e-05,
+ "loss": 1.7556135654449463,
+ "step": 2876
+ },
+ {
+ "epoch": 39.961672473867594,
+ "grad_norm": 0.06114466115832329,
+ "learning_rate": 6.653810870138676e-05,
+ "loss": 1.7742180824279785,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97560975609756,
+ "grad_norm": 0.060473620891571045,
+ "learning_rate": 6.637689893373729e-05,
+ "loss": 1.7638022899627686,
+ "step": 2878
+ },
+ {
+ "epoch": 39.98954703832753,
+ "grad_norm": 0.05960119515657425,
+ "learning_rate": 6.621587980904651e-05,
+ "loss": 1.7725427150726318,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.05046868324279785,
+ "learning_rate": 6.605505145704437e-05,
+ "loss": 1.3241307735443115,
+ "step": 2880
+ },
+ {
+ "epoch": 40.0,
+ "eval_loss": 0.6549648642539978,
+ "eval_runtime": 38.8762,
+ "eval_samples_per_second": 62.815,
+ "eval_steps_per_second": 0.514,
+ "step": 2880
+ },
+ {
+ "epoch": 40.01393728222997,
+ "grad_norm": 0.05329610034823418,
+ "learning_rate": 6.58944140073077e-05,
+ "loss": 1.7612388134002686,
+ "step": 2881
+ },
+ {
+ "epoch": 40.02787456445993,
+ "grad_norm": 0.05341725051403046,
+ "learning_rate": 6.573396758925891e-05,
+ "loss": 1.7626506090164185,
+ "step": 2882
+ },
+ {
+ "epoch": 40.041811846689896,
+ "grad_norm": 0.055179744958877563,
+ "learning_rate": 6.557371233216692e-05,
+ "loss": 1.746057152748108,
+ "step": 2883
+ },
+ {
+ "epoch": 40.055749128919864,
+ "grad_norm": 0.054009512066841125,
+ "learning_rate": 6.541364836514646e-05,
+ "loss": 1.7392195463180542,
+ "step": 2884
+ },
+ {
+ "epoch": 40.069686411149824,
+ "grad_norm": 0.05434491112828255,
+ "learning_rate": 6.525377581715829e-05,
+ "loss": 1.763177752494812,
+ "step": 2885
+ },
+ {
+ "epoch": 40.08362369337979,
+ "grad_norm": 0.05450546741485596,
+ "learning_rate": 6.509409481700864e-05,
+ "loss": 1.7505466938018799,
+ "step": 2886
+ },
+ {
+ "epoch": 40.09756097560975,
+ "grad_norm": 0.05500749126076698,
+ "learning_rate": 6.49346054933496e-05,
+ "loss": 1.7472319602966309,
+ "step": 2887
+ },
+ {
+ "epoch": 40.11149825783972,
+ "grad_norm": 0.055027205497026443,
+ "learning_rate": 6.477530797467911e-05,
+ "loss": 1.755077600479126,
+ "step": 2888
+ },
+ {
+ "epoch": 40.12543554006969,
+ "grad_norm": 0.05478304252028465,
+ "learning_rate": 6.461620238934006e-05,
+ "loss": 1.75167715549469,
+ "step": 2889
+ },
+ {
+ "epoch": 40.13937282229965,
+ "grad_norm": 0.055308908224105835,
+ "learning_rate": 6.445728886552109e-05,
+ "loss": 1.7633740901947021,
+ "step": 2890
+ },
+ {
+ "epoch": 40.153310104529616,
+ "grad_norm": 0.056247279047966,
+ "learning_rate": 6.429856753125573e-05,
+ "loss": 1.7813739776611328,
+ "step": 2891
+ },
+ {
+ "epoch": 40.167247386759584,
+ "grad_norm": 0.05602998286485672,
+ "learning_rate": 6.414003851442318e-05,
+ "loss": 1.7522822618484497,
+ "step": 2892
+ },
+ {
+ "epoch": 40.181184668989545,
+ "grad_norm": 0.05592861771583557,
+ "learning_rate": 6.398170194274722e-05,
+ "loss": 1.7461259365081787,
+ "step": 2893
+ },
+ {
+ "epoch": 40.19512195121951,
+ "grad_norm": 0.05522628873586655,
+ "learning_rate": 6.38235579437968e-05,
+ "loss": 1.754199743270874,
+ "step": 2894
+ },
+ {
+ "epoch": 40.20905923344948,
+ "grad_norm": 0.053787752985954285,
+ "learning_rate": 6.366560664498572e-05,
+ "loss": 1.7648603916168213,
+ "step": 2895
+ },
+ {
+ "epoch": 40.22299651567944,
+ "grad_norm": 0.05515512079000473,
+ "learning_rate": 6.350784817357242e-05,
+ "loss": 1.7321906089782715,
+ "step": 2896
+ },
+ {
+ "epoch": 40.23693379790941,
+ "grad_norm": 0.055907025933265686,
+ "learning_rate": 6.335028265666023e-05,
+ "loss": 1.7550973892211914,
+ "step": 2897
+ },
+ {
+ "epoch": 40.250871080139376,
+ "grad_norm": 0.05606880784034729,
+ "learning_rate": 6.319291022119653e-05,
+ "loss": 1.7457480430603027,
+ "step": 2898
+ },
+ {
+ "epoch": 40.26480836236934,
+ "grad_norm": 0.056643400341272354,
+ "learning_rate": 6.303573099397378e-05,
+ "loss": 1.7461693286895752,
+ "step": 2899
+ },
+ {
+ "epoch": 40.278745644599304,
+ "grad_norm": 0.055017828941345215,
+ "learning_rate": 6.287874510162821e-05,
+ "loss": 1.7573003768920898,
+ "step": 2900
+ },
+ {
+ "epoch": 40.292682926829265,
+ "grad_norm": 0.05636011064052582,
+ "learning_rate": 6.272195267064063e-05,
+ "loss": 1.7461949586868286,
+ "step": 2901
+ },
+ {
+ "epoch": 40.30662020905923,
+ "grad_norm": 0.05673863738775253,
+ "learning_rate": 6.25653538273358e-05,
+ "loss": 1.761730670928955,
+ "step": 2902
+ },
+ {
+ "epoch": 40.3205574912892,
+ "grad_norm": 0.05672964081168175,
+ "learning_rate": 6.240894869788267e-05,
+ "loss": 1.7496947050094604,
+ "step": 2903
+ },
+ {
+ "epoch": 40.33449477351916,
+ "grad_norm": 0.05810986086726189,
+ "learning_rate": 6.225273740829404e-05,
+ "loss": 1.7652089595794678,
+ "step": 2904
+ },
+ {
+ "epoch": 40.34843205574913,
+ "grad_norm": 0.057571738958358765,
+ "learning_rate": 6.209672008442635e-05,
+ "loss": 1.7497992515563965,
+ "step": 2905
+ },
+ {
+ "epoch": 40.362369337979096,
+ "grad_norm": 0.056777361780405045,
+ "learning_rate": 6.19408968519801e-05,
+ "loss": 1.7577930688858032,
+ "step": 2906
+ },
+ {
+ "epoch": 40.37630662020906,
+ "grad_norm": 0.057860299944877625,
+ "learning_rate": 6.178526783649916e-05,
+ "loss": 1.7412835359573364,
+ "step": 2907
+ },
+ {
+ "epoch": 40.390243902439025,
+ "grad_norm": 0.05768195167183876,
+ "learning_rate": 6.162983316337109e-05,
+ "loss": 1.7525410652160645,
+ "step": 2908
+ },
+ {
+ "epoch": 40.40418118466899,
+ "grad_norm": 0.05660717561841011,
+ "learning_rate": 6.147459295782676e-05,
+ "loss": 1.7566120624542236,
+ "step": 2909
+ },
+ {
+ "epoch": 40.41811846689895,
+ "grad_norm": 0.05782219022512436,
+ "learning_rate": 6.131954734494045e-05,
+ "loss": 1.7574937343597412,
+ "step": 2910
+ },
+ {
+ "epoch": 40.43205574912892,
+ "grad_norm": 0.05836864560842514,
+ "learning_rate": 6.11646964496296e-05,
+ "loss": 1.7590690851211548,
+ "step": 2911
+ },
+ {
+ "epoch": 40.44599303135889,
+ "grad_norm": 0.05849185958504677,
+ "learning_rate": 6.101004039665471e-05,
+ "loss": 1.7411694526672363,
+ "step": 2912
+ },
+ {
+ "epoch": 40.45993031358885,
+ "grad_norm": 0.057976704090833664,
+ "learning_rate": 6.085557931061937e-05,
+ "loss": 1.7654719352722168,
+ "step": 2913
+ },
+ {
+ "epoch": 40.47386759581882,
+ "grad_norm": 0.05788232758641243,
+ "learning_rate": 6.070131331597015e-05,
+ "loss": 1.7688660621643066,
+ "step": 2914
+ },
+ {
+ "epoch": 40.48780487804878,
+ "grad_norm": 0.05881178006529808,
+ "learning_rate": 6.054724253699636e-05,
+ "loss": 1.7445406913757324,
+ "step": 2915
+ },
+ {
+ "epoch": 40.501742160278745,
+ "grad_norm": 0.058010175824165344,
+ "learning_rate": 6.03933670978301e-05,
+ "loss": 1.7510701417922974,
+ "step": 2916
+ },
+ {
+ "epoch": 40.51567944250871,
+ "grad_norm": 0.057643987238407135,
+ "learning_rate": 6.0239687122445826e-05,
+ "loss": 1.761549472808838,
+ "step": 2917
+ },
+ {
+ "epoch": 40.52961672473867,
+ "grad_norm": 0.05845414847135544,
+ "learning_rate": 6.0086202734661e-05,
+ "loss": 1.757174015045166,
+ "step": 2918
+ },
+ {
+ "epoch": 40.54355400696864,
+ "grad_norm": 0.056833695620298386,
+ "learning_rate": 5.9932914058135004e-05,
+ "loss": 1.7557662725448608,
+ "step": 2919
+ },
+ {
+ "epoch": 40.55749128919861,
+ "grad_norm": 0.058717962354421616,
+ "learning_rate": 5.977982121636984e-05,
+ "loss": 1.7634422779083252,
+ "step": 2920
+ },
+ {
+ "epoch": 40.57142857142857,
+ "grad_norm": 0.05989163741469383,
+ "learning_rate": 5.962692433270962e-05,
+ "loss": 1.7481534481048584,
+ "step": 2921
+ },
+ {
+ "epoch": 40.58536585365854,
+ "grad_norm": 0.05897611007094383,
+ "learning_rate": 5.9474223530340634e-05,
+ "loss": 1.7620482444763184,
+ "step": 2922
+ },
+ {
+ "epoch": 40.599303135888505,
+ "grad_norm": 0.05900486186146736,
+ "learning_rate": 5.932171893229124e-05,
+ "loss": 1.737398624420166,
+ "step": 2923
+ },
+ {
+ "epoch": 40.613240418118465,
+ "grad_norm": 0.05889439582824707,
+ "learning_rate": 5.916941066143137e-05,
+ "loss": 1.755040168762207,
+ "step": 2924
+ },
+ {
+ "epoch": 40.62717770034843,
+ "grad_norm": 0.05877622216939926,
+ "learning_rate": 5.9017298840473364e-05,
+ "loss": 1.7548447847366333,
+ "step": 2925
+ },
+ {
+ "epoch": 40.641114982578394,
+ "grad_norm": 0.059609122574329376,
+ "learning_rate": 5.8865383591970775e-05,
+ "loss": 1.75567626953125,
+ "step": 2926
+ },
+ {
+ "epoch": 40.65505226480836,
+ "grad_norm": 0.05786288529634476,
+ "learning_rate": 5.8713665038319e-05,
+ "loss": 1.7596291303634644,
+ "step": 2927
+ },
+ {
+ "epoch": 40.66898954703833,
+ "grad_norm": 0.058539971709251404,
+ "learning_rate": 5.856214330175498e-05,
+ "loss": 1.7571325302124023,
+ "step": 2928
+ },
+ {
+ "epoch": 40.68292682926829,
+ "grad_norm": 0.05965579301118851,
+ "learning_rate": 5.841081850435704e-05,
+ "loss": 1.7486262321472168,
+ "step": 2929
+ },
+ {
+ "epoch": 40.69686411149826,
+ "grad_norm": 0.05948231369256973,
+ "learning_rate": 5.825969076804488e-05,
+ "loss": 1.7754912376403809,
+ "step": 2930
+ },
+ {
+ "epoch": 40.710801393728225,
+ "grad_norm": 0.060370851308107376,
+ "learning_rate": 5.810876021457925e-05,
+ "loss": 1.7505199909210205,
+ "step": 2931
+ },
+ {
+ "epoch": 40.724738675958186,
+ "grad_norm": 0.060079995542764664,
+ "learning_rate": 5.795802696556222e-05,
+ "loss": 1.768754243850708,
+ "step": 2932
+ },
+ {
+ "epoch": 40.73867595818815,
+ "grad_norm": 0.05976298823952675,
+ "learning_rate": 5.78074911424369e-05,
+ "loss": 1.7482929229736328,
+ "step": 2933
+ },
+ {
+ "epoch": 40.75261324041812,
+ "grad_norm": 0.06007836386561394,
+ "learning_rate": 5.765715286648734e-05,
+ "loss": 1.7502119541168213,
+ "step": 2934
+ },
+ {
+ "epoch": 40.76655052264808,
+ "grad_norm": 0.06062794849276543,
+ "learning_rate": 5.7507012258838154e-05,
+ "loss": 1.762496829032898,
+ "step": 2935
+ },
+ {
+ "epoch": 40.78048780487805,
+ "grad_norm": 0.06048697605729103,
+ "learning_rate": 5.7357069440455095e-05,
+ "loss": 1.747687816619873,
+ "step": 2936
+ },
+ {
+ "epoch": 40.79442508710802,
+ "grad_norm": 0.060689277946949005,
+ "learning_rate": 5.7207324532144454e-05,
+ "loss": 1.7589991092681885,
+ "step": 2937
+ },
+ {
+ "epoch": 40.80836236933798,
+ "grad_norm": 0.06020907312631607,
+ "learning_rate": 5.7057777654552785e-05,
+ "loss": 1.764328956604004,
+ "step": 2938
+ },
+ {
+ "epoch": 40.822299651567945,
+ "grad_norm": 0.05968928709626198,
+ "learning_rate": 5.690842892816741e-05,
+ "loss": 1.7579362392425537,
+ "step": 2939
+ },
+ {
+ "epoch": 40.836236933797906,
+ "grad_norm": 0.05860544741153717,
+ "learning_rate": 5.675927847331593e-05,
+ "loss": 1.7408514022827148,
+ "step": 2940
+ },
+ {
+ "epoch": 40.850174216027874,
+ "grad_norm": 0.059796303510665894,
+ "learning_rate": 5.661032641016619e-05,
+ "loss": 1.7617907524108887,
+ "step": 2941
+ },
+ {
+ "epoch": 40.86411149825784,
+ "grad_norm": 0.05849650502204895,
+ "learning_rate": 5.6461572858726086e-05,
+ "loss": 1.7763279676437378,
+ "step": 2942
+ },
+ {
+ "epoch": 40.8780487804878,
+ "grad_norm": 0.06002969667315483,
+ "learning_rate": 5.6313017938843595e-05,
+ "loss": 1.7555131912231445,
+ "step": 2943
+ },
+ {
+ "epoch": 40.89198606271777,
+ "grad_norm": 0.060442935675382614,
+ "learning_rate": 5.6164661770207026e-05,
+ "loss": 1.7596445083618164,
+ "step": 2944
+ },
+ {
+ "epoch": 40.90592334494774,
+ "grad_norm": 0.05894192308187485,
+ "learning_rate": 5.6016504472344e-05,
+ "loss": 1.7602481842041016,
+ "step": 2945
+ },
+ {
+ "epoch": 40.9198606271777,
+ "grad_norm": 0.06014241650700569,
+ "learning_rate": 5.5868546164622284e-05,
+ "loss": 1.755906105041504,
+ "step": 2946
+ },
+ {
+ "epoch": 40.933797909407666,
+ "grad_norm": 0.06153898313641548,
+ "learning_rate": 5.572078696624917e-05,
+ "loss": 1.7462100982666016,
+ "step": 2947
+ },
+ {
+ "epoch": 40.94773519163763,
+ "grad_norm": 0.05898294225335121,
+ "learning_rate": 5.557322699627168e-05,
+ "loss": 1.7764217853546143,
+ "step": 2948
+ },
+ {
+ "epoch": 40.961672473867594,
+ "grad_norm": 0.06041870638728142,
+ "learning_rate": 5.542586637357607e-05,
+ "loss": 1.7452261447906494,
+ "step": 2949
+ },
+ {
+ "epoch": 40.97560975609756,
+ "grad_norm": 0.06204214319586754,
+ "learning_rate": 5.527870521688817e-05,
+ "loss": 1.7640793323516846,
+ "step": 2950
+ },
+ {
+ "epoch": 40.98954703832753,
+ "grad_norm": 0.059619251638650894,
+ "learning_rate": 5.513174364477311e-05,
+ "loss": 1.7518072128295898,
+ "step": 2951
+ },
+ {
+ "epoch": 41.0,
+ "grad_norm": 0.04948742687702179,
+ "learning_rate": 5.498498177563518e-05,
+ "loss": 1.3159854412078857,
+ "step": 2952
+ },
+ {
+ "epoch": 41.0,
+ "eval_loss": 0.6565045118331909,
+ "eval_runtime": 39.9271,
+ "eval_samples_per_second": 61.162,
+ "eval_steps_per_second": 0.501,
+ "step": 2952
+ },
+ {
+ "epoch": 41.01393728222997,
+ "grad_norm": 0.053389765322208405,
+ "learning_rate": 5.4838419727717716e-05,
+ "loss": 1.744584560394287,
+ "step": 2953
+ },
+ {
+ "epoch": 41.02787456445993,
+ "grad_norm": 0.05327652022242546,
+ "learning_rate": 5.4692057619103144e-05,
+ "loss": 1.7331609725952148,
+ "step": 2954
+ },
+ {
+ "epoch": 41.041811846689896,
+ "grad_norm": 0.05409115180373192,
+ "learning_rate": 5.454589556771286e-05,
+ "loss": 1.7575292587280273,
+ "step": 2955
+ },
+ {
+ "epoch": 41.055749128919864,
+ "grad_norm": 0.05568825453519821,
+ "learning_rate": 5.439993369130681e-05,
+ "loss": 1.7418404817581177,
+ "step": 2956
+ },
+ {
+ "epoch": 41.069686411149824,
+ "grad_norm": 0.05310272425413132,
+ "learning_rate": 5.4254172107483924e-05,
+ "loss": 1.7438266277313232,
+ "step": 2957
+ },
+ {
+ "epoch": 41.08362369337979,
+ "grad_norm": 0.05542699247598648,
+ "learning_rate": 5.410861093368169e-05,
+ "loss": 1.745741367340088,
+ "step": 2958
+ },
+ {
+ "epoch": 41.09756097560975,
+ "grad_norm": 0.05622494965791702,
+ "learning_rate": 5.3963250287176094e-05,
+ "loss": 1.762403964996338,
+ "step": 2959
+ },
+ {
+ "epoch": 41.11149825783972,
+ "grad_norm": 0.05441451445221901,
+ "learning_rate": 5.381809028508168e-05,
+ "loss": 1.7388191223144531,
+ "step": 2960
+ },
+ {
+ "epoch": 41.12543554006969,
+ "grad_norm": 0.05534256249666214,
+ "learning_rate": 5.367313104435104e-05,
+ "loss": 1.7292771339416504,
+ "step": 2961
+ },
+ {
+ "epoch": 41.13937282229965,
+ "grad_norm": 0.05409536510705948,
+ "learning_rate": 5.352837268177544e-05,
+ "loss": 1.747714638710022,
+ "step": 2962
+ },
+ {
+ "epoch": 41.153310104529616,
+ "grad_norm": 0.05489929020404816,
+ "learning_rate": 5.3383815313983916e-05,
+ "loss": 1.7458940744400024,
+ "step": 2963
+ },
+ {
+ "epoch": 41.167247386759584,
+ "grad_norm": 0.05558855086565018,
+ "learning_rate": 5.323945905744379e-05,
+ "loss": 1.7345919609069824,
+ "step": 2964
+ },
+ {
+ "epoch": 41.181184668989545,
+ "grad_norm": 0.054389894008636475,
+ "learning_rate": 5.3095304028460284e-05,
+ "loss": 1.7303307056427002,
+ "step": 2965
+ },
+ {
+ "epoch": 41.19512195121951,
+ "grad_norm": 0.05494401231408119,
+ "learning_rate": 5.2951350343176495e-05,
+ "loss": 1.7355846166610718,
+ "step": 2966
+ },
+ {
+ "epoch": 41.20905923344948,
+ "grad_norm": 0.05682668834924698,
+ "learning_rate": 5.2807598117573384e-05,
+ "loss": 1.7457060813903809,
+ "step": 2967
+ },
+ {
+ "epoch": 41.22299651567944,
+ "grad_norm": 0.05510581657290459,
+ "learning_rate": 5.266404746746939e-05,
+ "loss": 1.753556728363037,
+ "step": 2968
+ },
+ {
+ "epoch": 41.23693379790941,
+ "grad_norm": 0.054192155599594116,
+ "learning_rate": 5.252069850852072e-05,
+ "loss": 1.761225700378418,
+ "step": 2969
+ },
+ {
+ "epoch": 41.250871080139376,
+ "grad_norm": 0.0555533766746521,
+ "learning_rate": 5.237755135622107e-05,
+ "loss": 1.7361319065093994,
+ "step": 2970
+ },
+ {
+ "epoch": 41.26480836236934,
+ "grad_norm": 0.05583607777953148,
+ "learning_rate": 5.223460612590159e-05,
+ "loss": 1.7515783309936523,
+ "step": 2971
+ },
+ {
+ "epoch": 41.278745644599304,
+ "grad_norm": 0.05615803226828575,
+ "learning_rate": 5.209186293273044e-05,
+ "loss": 1.750364065170288,
+ "step": 2972
+ },
+ {
+ "epoch": 41.292682926829265,
+ "grad_norm": 0.056125134229660034,
+ "learning_rate": 5.1949321891713446e-05,
+ "loss": 1.7333505153656006,
+ "step": 2973
+ },
+ {
+ "epoch": 41.30662020905923,
+ "grad_norm": 0.05511055514216423,
+ "learning_rate": 5.180698311769338e-05,
+ "loss": 1.7543116807937622,
+ "step": 2974
+ },
+ {
+ "epoch": 41.3205574912892,
+ "grad_norm": 0.0558859221637249,
+ "learning_rate": 5.166484672534983e-05,
+ "loss": 1.7365493774414062,
+ "step": 2975
+ },
+ {
+ "epoch": 41.33449477351916,
+ "grad_norm": 0.05536917224526405,
+ "learning_rate": 5.152291282919961e-05,
+ "loss": 1.75287663936615,
+ "step": 2976
+ },
+ {
+ "epoch": 41.34843205574913,
+ "grad_norm": 0.055952467024326324,
+ "learning_rate": 5.138118154359632e-05,
+ "loss": 1.7528082132339478,
+ "step": 2977
+ },
+ {
+ "epoch": 41.362369337979096,
+ "grad_norm": 0.05669279396533966,
+ "learning_rate": 5.1239652982730335e-05,
+ "loss": 1.7285187244415283,
+ "step": 2978
+ },
+ {
+ "epoch": 41.37630662020906,
+ "grad_norm": 0.055759698152542114,
+ "learning_rate": 5.1098327260628466e-05,
+ "loss": 1.741194248199463,
+ "step": 2979
+ },
+ {
+ "epoch": 41.390243902439025,
+ "grad_norm": 0.05614893138408661,
+ "learning_rate": 5.09572044911545e-05,
+ "loss": 1.7334706783294678,
+ "step": 2980
+ },
+ {
+ "epoch": 41.40418118466899,
+ "grad_norm": 0.0576351098716259,
+ "learning_rate": 5.0816284788008527e-05,
+ "loss": 1.7409534454345703,
+ "step": 2981
+ },
+ {
+ "epoch": 41.41811846689895,
+ "grad_norm": 0.054785653948783875,
+ "learning_rate": 5.067556826472684e-05,
+ "loss": 1.7461568117141724,
+ "step": 2982
+ },
+ {
+ "epoch": 41.43205574912892,
+ "grad_norm": 0.05714823678135872,
+ "learning_rate": 5.053505503468228e-05,
+ "loss": 1.7565304040908813,
+ "step": 2983
+ },
+ {
+ "epoch": 41.44599303135889,
+ "grad_norm": 0.05810947343707085,
+ "learning_rate": 5.0394745211083785e-05,
+ "loss": 1.7428717613220215,
+ "step": 2984
+ },
+ {
+ "epoch": 41.45993031358885,
+ "grad_norm": 0.05674325302243233,
+ "learning_rate": 5.025463890697655e-05,
+ "loss": 1.746922254562378,
+ "step": 2985
+ },
+ {
+ "epoch": 41.47386759581882,
+ "grad_norm": 0.05707298219203949,
+ "learning_rate": 5.011473623524159e-05,
+ "loss": 1.7500100135803223,
+ "step": 2986
+ },
+ {
+ "epoch": 41.48780487804878,
+ "grad_norm": 0.05556417629122734,
+ "learning_rate": 4.9975037308595864e-05,
+ "loss": 1.7501108646392822,
+ "step": 2987
+ },
+ {
+ "epoch": 41.501742160278745,
+ "grad_norm": 0.05651511251926422,
+ "learning_rate": 4.983554223959257e-05,
+ "loss": 1.748642921447754,
+ "step": 2988
+ },
+ {
+ "epoch": 41.51567944250871,
+ "grad_norm": 0.0562419556081295,
+ "learning_rate": 4.9696251140620134e-05,
+ "loss": 1.7355605363845825,
+ "step": 2989
+ },
+ {
+ "epoch": 41.52961672473867,
+ "grad_norm": 0.05729687958955765,
+ "learning_rate": 4.9557164123902924e-05,
+ "loss": 1.7534375190734863,
+ "step": 2990
+ },
+ {
+ "epoch": 41.54355400696864,
+ "grad_norm": 0.05564015731215477,
+ "learning_rate": 4.9418281301500844e-05,
+ "loss": 1.7632761001586914,
+ "step": 2991
+ },
+ {
+ "epoch": 41.55749128919861,
+ "grad_norm": 0.057233307510614395,
+ "learning_rate": 4.9279602785309365e-05,
+ "loss": 1.7507392168045044,
+ "step": 2992
+ },
+ {
+ "epoch": 41.57142857142857,
+ "grad_norm": 0.05761440098285675,
+ "learning_rate": 4.914112868705911e-05,
+ "loss": 1.74878990650177,
+ "step": 2993
+ },
+ {
+ "epoch": 41.58536585365854,
+ "grad_norm": 0.05795833095908165,
+ "learning_rate": 4.900285911831624e-05,
+ "loss": 1.7476063966751099,
+ "step": 2994
+ },
+ {
+ "epoch": 41.599303135888505,
+ "grad_norm": 0.05722825229167938,
+ "learning_rate": 4.886479419048201e-05,
+ "loss": 1.740659475326538,
+ "step": 2995
+ },
+ {
+ "epoch": 41.613240418118465,
+ "grad_norm": 0.0575735941529274,
+ "learning_rate": 4.872693401479292e-05,
+ "loss": 1.7290525436401367,
+ "step": 2996
+ },
+ {
+ "epoch": 41.62717770034843,
+ "grad_norm": 0.05690573528409004,
+ "learning_rate": 4.858927870232039e-05,
+ "loss": 1.7471413612365723,
+ "step": 2997
+ },
+ {
+ "epoch": 41.641114982578394,
+ "grad_norm": 0.057813860476017,
+ "learning_rate": 4.845182836397068e-05,
+ "loss": 1.7490575313568115,
+ "step": 2998
+ },
+ {
+ "epoch": 41.65505226480836,
+ "grad_norm": 0.056658681482076645,
+ "learning_rate": 4.831458311048532e-05,
+ "loss": 1.748292088508606,
+ "step": 2999
+ },
+ {
+ "epoch": 41.66898954703833,
+ "grad_norm": 0.058063190430402756,
+ "learning_rate": 4.817754305244008e-05,
+ "loss": 1.7593414783477783,
+ "step": 3000
+ },
+ {
+ "epoch": 41.68292682926829,
+ "grad_norm": 0.056882593780756,
+ "learning_rate": 4.804070830024577e-05,
+ "loss": 1.7557659149169922,
+ "step": 3001
+ },
+ {
+ "epoch": 41.69686411149826,
+ "grad_norm": 0.05820607393980026,
+ "learning_rate": 4.7904078964147654e-05,
+ "loss": 1.7497520446777344,
+ "step": 3002
+ },
+ {
+ "epoch": 41.710801393728225,
+ "grad_norm": 0.058366596698760986,
+ "learning_rate": 4.776765515422557e-05,
+ "loss": 1.7578121423721313,
+ "step": 3003
+ },
+ {
+ "epoch": 41.724738675958186,
+ "grad_norm": 0.058660220354795456,
+ "learning_rate": 4.763143698039371e-05,
+ "loss": 1.7462737560272217,
+ "step": 3004
+ },
+ {
+ "epoch": 41.73867595818815,
+ "grad_norm": 0.05943872779607773,
+ "learning_rate": 4.749542455240043e-05,
+ "loss": 1.7522482872009277,
+ "step": 3005
+ },
+ {
+ "epoch": 41.75261324041812,
+ "grad_norm": 0.058226995170116425,
+ "learning_rate": 4.735961797982876e-05,
+ "loss": 1.7390249967575073,
+ "step": 3006
+ },
+ {
+ "epoch": 41.76655052264808,
+ "grad_norm": 0.05844676122069359,
+ "learning_rate": 4.7224017372095414e-05,
+ "loss": 1.7342069149017334,
+ "step": 3007
+ },
+ {
+ "epoch": 41.78048780487805,
+ "grad_norm": 0.05901646986603737,
+ "learning_rate": 4.708862283845143e-05,
+ "loss": 1.7475719451904297,
+ "step": 3008
+ },
+ {
+ "epoch": 41.79442508710802,
+ "grad_norm": 0.057633303105831146,
+ "learning_rate": 4.695343448798163e-05,
+ "loss": 1.7648053169250488,
+ "step": 3009
+ },
+ {
+ "epoch": 41.80836236933798,
+ "grad_norm": 0.05827447772026062,
+ "learning_rate": 4.681845242960492e-05,
+ "loss": 1.7417083978652954,
+ "step": 3010
+ },
+ {
+ "epoch": 41.822299651567945,
+ "grad_norm": 0.05831371620297432,
+ "learning_rate": 4.668367677207398e-05,
+ "loss": 1.7564820051193237,
+ "step": 3011
+ },
+ {
+ "epoch": 41.836236933797906,
+ "grad_norm": 0.05814244598150253,
+ "learning_rate": 4.654910762397499e-05,
+ "loss": 1.7442173957824707,
+ "step": 3012
+ },
+ {
+ "epoch": 41.850174216027874,
+ "grad_norm": 0.05809921398758888,
+ "learning_rate": 4.6414745093727913e-05,
+ "loss": 1.7496514320373535,
+ "step": 3013
+ },
+ {
+ "epoch": 41.86411149825784,
+ "grad_norm": 0.05783133953809738,
+ "learning_rate": 4.6280589289586255e-05,
+ "loss": 1.7409605979919434,
+ "step": 3014
+ },
+ {
+ "epoch": 41.8780487804878,
+ "grad_norm": 0.058318085968494415,
+ "learning_rate": 4.614664031963692e-05,
+ "loss": 1.7377967834472656,
+ "step": 3015
+ },
+ {
+ "epoch": 41.89198606271777,
+ "grad_norm": 0.05874738097190857,
+ "learning_rate": 4.601289829180004e-05,
+ "loss": 1.7490065097808838,
+ "step": 3016
+ },
+ {
+ "epoch": 41.90592334494774,
+ "grad_norm": 0.05748818814754486,
+ "learning_rate": 4.587936331382934e-05,
+ "loss": 1.7389873266220093,
+ "step": 3017
+ },
+ {
+ "epoch": 41.9198606271777,
+ "grad_norm": 0.05881265923380852,
+ "learning_rate": 4.574603549331151e-05,
+ "loss": 1.759662389755249,
+ "step": 3018
+ },
+ {
+ "epoch": 41.933797909407666,
+ "grad_norm": 0.059542443603277206,
+ "learning_rate": 4.561291493766625e-05,
+ "loss": 1.758399248123169,
+ "step": 3019
+ },
+ {
+ "epoch": 41.94773519163763,
+ "grad_norm": 0.05880162492394447,
+ "learning_rate": 4.5480001754146455e-05,
+ "loss": 1.7564117908477783,
+ "step": 3020
+ },
+ {
+ "epoch": 41.961672473867594,
+ "grad_norm": 0.0600244402885437,
+ "learning_rate": 4.5347296049837875e-05,
+ "loss": 1.7446315288543701,
+ "step": 3021
+ },
+ {
+ "epoch": 41.97560975609756,
+ "grad_norm": 0.05956844240427017,
+ "learning_rate": 4.52147979316592e-05,
+ "loss": 1.7390222549438477,
+ "step": 3022
+ },
+ {
+ "epoch": 41.98954703832753,
+ "grad_norm": 0.058926235884428024,
+ "learning_rate": 4.5082507506361574e-05,
+ "loss": 1.7468228340148926,
+ "step": 3023
+ },
+ {
+ "epoch": 42.0,
+ "grad_norm": 0.0481082908809185,
+ "learning_rate": 4.495042488052904e-05,
+ "loss": 1.3066598176956177,
+ "step": 3024
+ },
+ {
+ "epoch": 42.0,
+ "eval_loss": 0.657874584197998,
+ "eval_runtime": 39.4956,
+ "eval_samples_per_second": 61.83,
+ "eval_steps_per_second": 0.506,
+ "step": 3024
+ },
+ {
+ "epoch": 42.01393728222997,
+ "grad_norm": 0.05208680033683777,
+ "learning_rate": 4.481855016057839e-05,
+ "loss": 1.7607581615447998,
+ "step": 3025
+ },
+ {
+ "epoch": 42.02787456445993,
+ "grad_norm": 0.051687296479940414,
+ "learning_rate": 4.468688345275848e-05,
+ "loss": 1.7419458627700806,
+ "step": 3026
+ },
+ {
+ "epoch": 42.041811846689896,
+ "grad_norm": 0.052635665982961655,
+ "learning_rate": 4.455542486315086e-05,
+ "loss": 1.7463515996932983,
+ "step": 3027
+ },
+ {
+ "epoch": 42.055749128919864,
+ "grad_norm": 0.05592944473028183,
+ "learning_rate": 4.442417449766938e-05,
+ "loss": 1.7211248874664307,
+ "step": 3028
+ },
+ {
+ "epoch": 42.069686411149824,
+ "grad_norm": 0.05414228141307831,
+ "learning_rate": 4.429313246206014e-05,
+ "loss": 1.7274463176727295,
+ "step": 3029
+ },
+ {
+ "epoch": 42.08362369337979,
+ "grad_norm": 0.05200774595141411,
+ "learning_rate": 4.416229886190119e-05,
+ "loss": 1.7372533082962036,
+ "step": 3030
+ },
+ {
+ "epoch": 42.09756097560975,
+ "grad_norm": 0.05394597724080086,
+ "learning_rate": 4.403167380260281e-05,
+ "loss": 1.7334144115447998,
+ "step": 3031
+ },
+ {
+ "epoch": 42.11149825783972,
+ "grad_norm": 0.05299610272049904,
+ "learning_rate": 4.3901257389407475e-05,
+ "loss": 1.7404639720916748,
+ "step": 3032
+ },
+ {
+ "epoch": 42.12543554006969,
+ "grad_norm": 0.0535874217748642,
+ "learning_rate": 4.3771049727389075e-05,
+ "loss": 1.7393574714660645,
+ "step": 3033
+ },
+ {
+ "epoch": 42.13937282229965,
+ "grad_norm": 0.05436873808503151,
+ "learning_rate": 4.364105092145377e-05,
+ "loss": 1.7361713647842407,
+ "step": 3034
+ },
+ {
+ "epoch": 42.153310104529616,
+ "grad_norm": 0.05342480540275574,
+ "learning_rate": 4.3511261076339e-05,
+ "loss": 1.7330613136291504,
+ "step": 3035
+ },
+ {
+ "epoch": 42.167247386759584,
+ "grad_norm": 0.05344010889530182,
+ "learning_rate": 4.3381680296614394e-05,
+ "loss": 1.7371134757995605,
+ "step": 3036
+ },
+ {
+ "epoch": 42.181184668989545,
+ "grad_norm": 0.05387014523148537,
+ "learning_rate": 4.3252308686680626e-05,
+ "loss": 1.7318518161773682,
+ "step": 3037
+ },
+ {
+ "epoch": 42.19512195121951,
+ "grad_norm": 0.053338535130023956,
+ "learning_rate": 4.3123146350770146e-05,
+ "loss": 1.7419188022613525,
+ "step": 3038
+ },
+ {
+ "epoch": 42.20905923344948,
+ "grad_norm": 0.05352434888482094,
+ "learning_rate": 4.2994193392946726e-05,
+ "loss": 1.7303433418273926,
+ "step": 3039
+ },
+ {
+ "epoch": 42.22299651567944,
+ "grad_norm": 0.0526539571583271,
+ "learning_rate": 4.286544991710541e-05,
+ "loss": 1.7365992069244385,
+ "step": 3040
+ },
+ {
+ "epoch": 42.23693379790941,
+ "grad_norm": 0.053493719547986984,
+ "learning_rate": 4.2736916026972576e-05,
+ "loss": 1.7276771068572998,
+ "step": 3041
+ },
+ {
+ "epoch": 42.250871080139376,
+ "grad_norm": 0.05427069589495659,
+ "learning_rate": 4.260859182610542e-05,
+ "loss": 1.7256132364273071,
+ "step": 3042
+ },
+ {
+ "epoch": 42.26480836236934,
+ "grad_norm": 0.052875883877277374,
+ "learning_rate": 4.2480477417892776e-05,
+ "loss": 1.7335498332977295,
+ "step": 3043
+ },
+ {
+ "epoch": 42.278745644599304,
+ "grad_norm": 0.05313582345843315,
+ "learning_rate": 4.235257290555381e-05,
+ "loss": 1.7459813356399536,
+ "step": 3044
+ },
+ {
+ "epoch": 42.292682926829265,
+ "grad_norm": 0.05465029552578926,
+ "learning_rate": 4.222487839213903e-05,
+ "loss": 1.7475128173828125,
+ "step": 3045
+ },
+ {
+ "epoch": 42.30662020905923,
+ "grad_norm": 0.05480528250336647,
+ "learning_rate": 4.209739398052956e-05,
+ "loss": 1.7406105995178223,
+ "step": 3046
+ },
+ {
+ "epoch": 42.3205574912892,
+ "grad_norm": 0.0538000762462616,
+ "learning_rate": 4.1970119773437316e-05,
+ "loss": 1.7387456893920898,
+ "step": 3047
+ },
+ {
+ "epoch": 42.33449477351916,
+ "grad_norm": 0.054415084421634674,
+ "learning_rate": 4.184305587340483e-05,
+ "loss": 1.7384449243545532,
+ "step": 3048
+ },
+ {
+ "epoch": 42.34843205574913,
+ "grad_norm": 0.05428307130932808,
+ "learning_rate": 4.171620238280511e-05,
+ "loss": 1.7308465242385864,
+ "step": 3049
+ },
+ {
+ "epoch": 42.362369337979096,
+ "grad_norm": 0.05368340387940407,
+ "learning_rate": 4.158955940384179e-05,
+ "loss": 1.7367150783538818,
+ "step": 3050
+ },
+ {
+ "epoch": 42.37630662020906,
+ "grad_norm": 0.05506566911935806,
+ "learning_rate": 4.146312703854881e-05,
+ "loss": 1.7474619150161743,
+ "step": 3051
+ },
+ {
+ "epoch": 42.390243902439025,
+ "grad_norm": 0.05445770174264908,
+ "learning_rate": 4.133690538879046e-05,
+ "loss": 1.7390122413635254,
+ "step": 3052
+ },
+ {
+ "epoch": 42.40418118466899,
+ "grad_norm": 0.05502717196941376,
+ "learning_rate": 4.1210894556261226e-05,
+ "loss": 1.7415062189102173,
+ "step": 3053
+ },
+ {
+ "epoch": 42.41811846689895,
+ "grad_norm": 0.05497781187295914,
+ "learning_rate": 4.108509464248578e-05,
+ "loss": 1.7377595901489258,
+ "step": 3054
+ },
+ {
+ "epoch": 42.43205574912892,
+ "grad_norm": 0.05539880692958832,
+ "learning_rate": 4.095950574881891e-05,
+ "loss": 1.7212984561920166,
+ "step": 3055
+ },
+ {
+ "epoch": 42.44599303135889,
+ "grad_norm": 0.05596085265278816,
+ "learning_rate": 4.083412797644514e-05,
+ "loss": 1.7364012002944946,
+ "step": 3056
+ },
+ {
+ "epoch": 42.45993031358885,
+ "grad_norm": 0.05489261448383331,
+ "learning_rate": 4.0708961426379214e-05,
+ "loss": 1.7466539144515991,
+ "step": 3057
+ },
+ {
+ "epoch": 42.47386759581882,
+ "grad_norm": 0.05615408346056938,
+ "learning_rate": 4.0584006199465484e-05,
+ "loss": 1.7343370914459229,
+ "step": 3058
+ },
+ {
+ "epoch": 42.48780487804878,
+ "grad_norm": 0.05492844805121422,
+ "learning_rate": 4.0459262396378165e-05,
+ "loss": 1.7185142040252686,
+ "step": 3059
+ },
+ {
+ "epoch": 42.501742160278745,
+ "grad_norm": 0.05458400771021843,
+ "learning_rate": 4.033473011762116e-05,
+ "loss": 1.7361526489257812,
+ "step": 3060
+ },
+ {
+ "epoch": 42.51567944250871,
+ "grad_norm": 0.0557398647069931,
+ "learning_rate": 4.0210409463527656e-05,
+ "loss": 1.7349817752838135,
+ "step": 3061
+ },
+ {
+ "epoch": 42.52961672473867,
+ "grad_norm": 0.056416671723127365,
+ "learning_rate": 4.008630053426082e-05,
+ "loss": 1.7209566831588745,
+ "step": 3062
+ },
+ {
+ "epoch": 42.54355400696864,
+ "grad_norm": 0.055751193314790726,
+ "learning_rate": 3.996240342981279e-05,
+ "loss": 1.7442636489868164,
+ "step": 3063
+ },
+ {
+ "epoch": 42.55749128919861,
+ "grad_norm": 0.055229250341653824,
+ "learning_rate": 3.983871825000529e-05,
+ "loss": 1.7374467849731445,
+ "step": 3064
+ },
+ {
+ "epoch": 42.57142857142857,
+ "grad_norm": 0.05428178608417511,
+ "learning_rate": 3.971524509448925e-05,
+ "loss": 1.738893747329712,
+ "step": 3065
+ },
+ {
+ "epoch": 42.58536585365854,
+ "grad_norm": 0.05826052650809288,
+ "learning_rate": 3.959198406274472e-05,
+ "loss": 1.7353756427764893,
+ "step": 3066
+ },
+ {
+ "epoch": 42.599303135888505,
+ "grad_norm": 0.05567533150315285,
+ "learning_rate": 3.946893525408097e-05,
+ "loss": 1.7376806735992432,
+ "step": 3067
+ },
+ {
+ "epoch": 42.613240418118465,
+ "grad_norm": 0.05556056275963783,
+ "learning_rate": 3.934609876763604e-05,
+ "loss": 1.7425165176391602,
+ "step": 3068
+ },
+ {
+ "epoch": 42.62717770034843,
+ "grad_norm": 0.05691612884402275,
+ "learning_rate": 3.922347470237728e-05,
+ "loss": 1.74611496925354,
+ "step": 3069
+ },
+ {
+ "epoch": 42.641114982578394,
+ "grad_norm": 0.05505446344614029,
+ "learning_rate": 3.910106315710053e-05,
+ "loss": 1.7471598386764526,
+ "step": 3070
+ },
+ {
+ "epoch": 42.65505226480836,
+ "grad_norm": 0.05606447905302048,
+ "learning_rate": 3.897886423043061e-05,
+ "loss": 1.7338154315948486,
+ "step": 3071
+ },
+ {
+ "epoch": 42.66898954703833,
+ "grad_norm": 0.054854776710271835,
+ "learning_rate": 3.8856878020820975e-05,
+ "loss": 1.7437448501586914,
+ "step": 3072
+ },
+ {
+ "epoch": 42.68292682926829,
+ "grad_norm": 0.05594967305660248,
+ "learning_rate": 3.873510462655375e-05,
+ "loss": 1.7481606006622314,
+ "step": 3073
+ },
+ {
+ "epoch": 42.69686411149826,
+ "grad_norm": 0.055426109582185745,
+ "learning_rate": 3.861354414573954e-05,
+ "loss": 1.743486762046814,
+ "step": 3074
+ },
+ {
+ "epoch": 42.710801393728225,
+ "grad_norm": 0.05826818197965622,
+ "learning_rate": 3.849219667631735e-05,
+ "loss": 1.738979458808899,
+ "step": 3075
+ },
+ {
+ "epoch": 42.724738675958186,
+ "grad_norm": 0.05604671314358711,
+ "learning_rate": 3.8371062316054764e-05,
+ "loss": 1.7408664226531982,
+ "step": 3076
+ },
+ {
+ "epoch": 42.73867595818815,
+ "grad_norm": 0.05721673369407654,
+ "learning_rate": 3.8250141162547466e-05,
+ "loss": 1.7527461051940918,
+ "step": 3077
+ },
+ {
+ "epoch": 42.75261324041812,
+ "grad_norm": 0.05601170286536217,
+ "learning_rate": 3.812943331321956e-05,
+ "loss": 1.728229284286499,
+ "step": 3078
+ },
+ {
+ "epoch": 42.76655052264808,
+ "grad_norm": 0.05630524456501007,
+ "learning_rate": 3.8008938865322955e-05,
+ "loss": 1.7406551837921143,
+ "step": 3079
+ },
+ {
+ "epoch": 42.78048780487805,
+ "grad_norm": 0.05840087682008743,
+ "learning_rate": 3.788865791593813e-05,
+ "loss": 1.7291171550750732,
+ "step": 3080
+ },
+ {
+ "epoch": 42.79442508710802,
+ "grad_norm": 0.05644397437572479,
+ "learning_rate": 3.7768590561973064e-05,
+ "loss": 1.7416772842407227,
+ "step": 3081
+ },
+ {
+ "epoch": 42.80836236933798,
+ "grad_norm": 0.057627443224191666,
+ "learning_rate": 3.764873690016394e-05,
+ "loss": 1.7393077611923218,
+ "step": 3082
+ },
+ {
+ "epoch": 42.822299651567945,
+ "grad_norm": 0.056960273534059525,
+ "learning_rate": 3.7529097027074654e-05,
+ "loss": 1.7356089353561401,
+ "step": 3083
+ },
+ {
+ "epoch": 42.836236933797906,
+ "grad_norm": 0.0571947805583477,
+ "learning_rate": 3.7409671039096936e-05,
+ "loss": 1.7245415449142456,
+ "step": 3084
+ },
+ {
+ "epoch": 42.850174216027874,
+ "grad_norm": 0.05802195519208908,
+ "learning_rate": 3.7290459032450184e-05,
+ "loss": 1.7374985218048096,
+ "step": 3085
+ },
+ {
+ "epoch": 42.86411149825784,
+ "grad_norm": 0.05658788979053497,
+ "learning_rate": 3.717146110318123e-05,
+ "loss": 1.734710693359375,
+ "step": 3086
+ },
+ {
+ "epoch": 42.8780487804878,
+ "grad_norm": 0.05672605335712433,
+ "learning_rate": 3.7052677347164614e-05,
+ "loss": 1.7445356845855713,
+ "step": 3087
+ },
+ {
+ "epoch": 42.89198606271777,
+ "grad_norm": 0.057985443621873856,
+ "learning_rate": 3.693410786010231e-05,
+ "loss": 1.7436648607254028,
+ "step": 3088
+ },
+ {
+ "epoch": 42.90592334494774,
+ "grad_norm": 0.057312048971652985,
+ "learning_rate": 3.6815752737523537e-05,
+ "loss": 1.733546257019043,
+ "step": 3089
+ },
+ {
+ "epoch": 42.9198606271777,
+ "grad_norm": 0.05714614316821098,
+ "learning_rate": 3.6697612074784944e-05,
+ "loss": 1.7475671768188477,
+ "step": 3090
+ },
+ {
+ "epoch": 42.933797909407666,
+ "grad_norm": 0.05716433376073837,
+ "learning_rate": 3.657968596707029e-05,
+ "loss": 1.747363805770874,
+ "step": 3091
+ },
+ {
+ "epoch": 42.94773519163763,
+ "grad_norm": 0.0583619549870491,
+ "learning_rate": 3.64619745093906e-05,
+ "loss": 1.7315218448638916,
+ "step": 3092
+ },
+ {
+ "epoch": 42.961672473867594,
+ "grad_norm": 0.05783749744296074,
+ "learning_rate": 3.6344477796583714e-05,
+ "loss": 1.7356035709381104,
+ "step": 3093
+ },
+ {
+ "epoch": 42.97560975609756,
+ "grad_norm": 0.057828135788440704,
+ "learning_rate": 3.622719592331472e-05,
+ "loss": 1.741631269454956,
+ "step": 3094
+ },
+ {
+ "epoch": 42.98954703832753,
+ "grad_norm": 0.058276452124118805,
+ "learning_rate": 3.611012898407544e-05,
+ "loss": 1.7422380447387695,
+ "step": 3095
+ },
+ {
+ "epoch": 43.0,
+ "grad_norm": 0.04720350727438927,
+ "learning_rate": 3.599327707318464e-05,
+ "loss": 1.3168083429336548,
+ "step": 3096
+ },
+ {
+ "epoch": 43.0,
+ "eval_loss": 0.6593254804611206,
+ "eval_runtime": 40.4601,
+ "eval_samples_per_second": 60.356,
+ "eval_steps_per_second": 0.494,
+ "step": 3096
+ },
+ {
+ "epoch": 43.01393728222997,
+ "grad_norm": 0.049638550728559494,
+ "learning_rate": 3.587664028478779e-05,
+ "loss": 1.7210091352462769,
+ "step": 3097
+ },
+ {
+ "epoch": 43.02787456445993,
+ "grad_norm": 0.05109990015625954,
+ "learning_rate": 3.5760218712857046e-05,
+ "loss": 1.7293510437011719,
+ "step": 3098
+ },
+ {
+ "epoch": 43.041811846689896,
+ "grad_norm": 0.050848234444856644,
+ "learning_rate": 3.564401245119119e-05,
+ "loss": 1.7333694696426392,
+ "step": 3099
+ },
+ {
+ "epoch": 43.055749128919864,
+ "grad_norm": 0.05160995200276375,
+ "learning_rate": 3.552802159341543e-05,
+ "loss": 1.733559250831604,
+ "step": 3100
+ },
+ {
+ "epoch": 43.069686411149824,
+ "grad_norm": 0.052781928330659866,
+ "learning_rate": 3.541224623298155e-05,
+ "loss": 1.7207956314086914,
+ "step": 3101
+ },
+ {
+ "epoch": 43.08362369337979,
+ "grad_norm": 0.0514349602162838,
+ "learning_rate": 3.529668646316765e-05,
+ "loss": 1.733931064605713,
+ "step": 3102
+ },
+ {
+ "epoch": 43.09756097560975,
+ "grad_norm": 0.051527239382267,
+ "learning_rate": 3.5181342377078166e-05,
+ "loss": 1.736284852027893,
+ "step": 3103
+ },
+ {
+ "epoch": 43.11149825783972,
+ "grad_norm": 0.05159756913781166,
+ "learning_rate": 3.5066214067643785e-05,
+ "loss": 1.7323846817016602,
+ "step": 3104
+ },
+ {
+ "epoch": 43.12543554006969,
+ "grad_norm": 0.05132414400577545,
+ "learning_rate": 3.495130162762119e-05,
+ "loss": 1.721909999847412,
+ "step": 3105
+ },
+ {
+ "epoch": 43.13937282229965,
+ "grad_norm": 0.05165236070752144,
+ "learning_rate": 3.483660514959343e-05,
+ "loss": 1.7334851026535034,
+ "step": 3106
+ },
+ {
+ "epoch": 43.153310104529616,
+ "grad_norm": 0.05227863788604736,
+ "learning_rate": 3.4722124725969235e-05,
+ "loss": 1.7244406938552856,
+ "step": 3107
+ },
+ {
+ "epoch": 43.167247386759584,
+ "grad_norm": 0.0507102869451046,
+ "learning_rate": 3.460786044898346e-05,
+ "loss": 1.7296943664550781,
+ "step": 3108
+ },
+ {
+ "epoch": 43.181184668989545,
+ "grad_norm": 0.051942128688097,
+ "learning_rate": 3.4493812410696784e-05,
+ "loss": 1.7424235343933105,
+ "step": 3109
+ },
+ {
+ "epoch": 43.19512195121951,
+ "grad_norm": 0.05361393839120865,
+ "learning_rate": 3.437998070299564e-05,
+ "loss": 1.735414743423462,
+ "step": 3110
+ },
+ {
+ "epoch": 43.20905923344948,
+ "grad_norm": 0.0525725781917572,
+ "learning_rate": 3.426636541759225e-05,
+ "loss": 1.7281429767608643,
+ "step": 3111
+ },
+ {
+ "epoch": 43.22299651567944,
+ "grad_norm": 0.051599062979221344,
+ "learning_rate": 3.415296664602425e-05,
+ "loss": 1.7482497692108154,
+ "step": 3112
+ },
+ {
+ "epoch": 43.23693379790941,
+ "grad_norm": 0.053419627249240875,
+ "learning_rate": 3.403978447965507e-05,
+ "loss": 1.741397738456726,
+ "step": 3113
+ },
+ {
+ "epoch": 43.250871080139376,
+ "grad_norm": 0.0536978505551815,
+ "learning_rate": 3.392681900967355e-05,
+ "loss": 1.7282965183258057,
+ "step": 3114
+ },
+ {
+ "epoch": 43.26480836236934,
+ "grad_norm": 0.05282224342226982,
+ "learning_rate": 3.381407032709395e-05,
+ "loss": 1.7393105030059814,
+ "step": 3115
+ },
+ {
+ "epoch": 43.278745644599304,
+ "grad_norm": 0.05195239186286926,
+ "learning_rate": 3.3701538522755714e-05,
+ "loss": 1.7233878374099731,
+ "step": 3116
+ },
+ {
+ "epoch": 43.292682926829265,
+ "grad_norm": 0.0528675839304924,
+ "learning_rate": 3.35892236873238e-05,
+ "loss": 1.7237660884857178,
+ "step": 3117
+ },
+ {
+ "epoch": 43.30662020905923,
+ "grad_norm": 0.05262859910726547,
+ "learning_rate": 3.3477125911288284e-05,
+ "loss": 1.7302489280700684,
+ "step": 3118
+ },
+ {
+ "epoch": 43.3205574912892,
+ "grad_norm": 0.05272877961397171,
+ "learning_rate": 3.3365245284964225e-05,
+ "loss": 1.7126233577728271,
+ "step": 3119
+ },
+ {
+ "epoch": 43.33449477351916,
+ "grad_norm": 0.05431615933775902,
+ "learning_rate": 3.3253581898491836e-05,
+ "loss": 1.7330362796783447,
+ "step": 3120
+ },
+ {
+ "epoch": 43.34843205574913,
+ "grad_norm": 0.052712008357048035,
+ "learning_rate": 3.3142135841836276e-05,
+ "loss": 1.7317285537719727,
+ "step": 3121
+ },
+ {
+ "epoch": 43.362369337979096,
+ "grad_norm": 0.05290947109460831,
+ "learning_rate": 3.303090720478773e-05,
+ "loss": 1.7378607988357544,
+ "step": 3122
+ },
+ {
+ "epoch": 43.37630662020906,
+ "grad_norm": 0.05354118347167969,
+ "learning_rate": 3.291989607696092e-05,
+ "loss": 1.7344810962677002,
+ "step": 3123
+ },
+ {
+ "epoch": 43.390243902439025,
+ "grad_norm": 0.05180691182613373,
+ "learning_rate": 3.280910254779565e-05,
+ "loss": 1.7168121337890625,
+ "step": 3124
+ },
+ {
+ "epoch": 43.40418118466899,
+ "grad_norm": 0.053051721304655075,
+ "learning_rate": 3.269852670655629e-05,
+ "loss": 1.7246195077896118,
+ "step": 3125
+ },
+ {
+ "epoch": 43.41811846689895,
+ "grad_norm": 0.05364576354622841,
+ "learning_rate": 3.258816864233169e-05,
+ "loss": 1.7349464893341064,
+ "step": 3126
+ },
+ {
+ "epoch": 43.43205574912892,
+ "grad_norm": 0.053229302167892456,
+ "learning_rate": 3.247802844403536e-05,
+ "loss": 1.729675531387329,
+ "step": 3127
+ },
+ {
+ "epoch": 43.44599303135889,
+ "grad_norm": 0.05499981343746185,
+ "learning_rate": 3.236810620040532e-05,
+ "loss": 1.7363426685333252,
+ "step": 3128
+ },
+ {
+ "epoch": 43.45993031358885,
+ "grad_norm": 0.05298415943980217,
+ "learning_rate": 3.225840200000396e-05,
+ "loss": 1.718310832977295,
+ "step": 3129
+ },
+ {
+ "epoch": 43.47386759581882,
+ "grad_norm": 0.05337477847933769,
+ "learning_rate": 3.214891593121788e-05,
+ "loss": 1.7189042568206787,
+ "step": 3130
+ },
+ {
+ "epoch": 43.48780487804878,
+ "grad_norm": 0.05245691537857056,
+ "learning_rate": 3.203964808225801e-05,
+ "loss": 1.726578950881958,
+ "step": 3131
+ },
+ {
+ "epoch": 43.501742160278745,
+ "grad_norm": 0.05360230430960655,
+ "learning_rate": 3.193059854115968e-05,
+ "loss": 1.7311490774154663,
+ "step": 3132
+ },
+ {
+ "epoch": 43.51567944250871,
+ "grad_norm": 0.05326886102557182,
+ "learning_rate": 3.182176739578195e-05,
+ "loss": 1.7303065061569214,
+ "step": 3133
+ },
+ {
+ "epoch": 43.52961672473867,
+ "grad_norm": 0.054385583847761154,
+ "learning_rate": 3.171315473380815e-05,
+ "loss": 1.7429119348526,
+ "step": 3134
+ },
+ {
+ "epoch": 43.54355400696864,
+ "grad_norm": 0.05324076861143112,
+ "learning_rate": 3.160476064274555e-05,
+ "loss": 1.7216813564300537,
+ "step": 3135
+ },
+ {
+ "epoch": 43.55749128919861,
+ "grad_norm": 0.05422625690698624,
+ "learning_rate": 3.149658520992537e-05,
+ "loss": 1.7312194108963013,
+ "step": 3136
+ },
+ {
+ "epoch": 43.57142857142857,
+ "grad_norm": 0.053185880184173584,
+ "learning_rate": 3.138862852250249e-05,
+ "loss": 1.74150812625885,
+ "step": 3137
+ },
+ {
+ "epoch": 43.58536585365854,
+ "grad_norm": 0.05465586856007576,
+ "learning_rate": 3.1280890667455694e-05,
+ "loss": 1.7237094640731812,
+ "step": 3138
+ },
+ {
+ "epoch": 43.599303135888505,
+ "grad_norm": 0.05459308251738548,
+ "learning_rate": 3.1173371731587496e-05,
+ "loss": 1.7397316694259644,
+ "step": 3139
+ },
+ {
+ "epoch": 43.613240418118465,
+ "grad_norm": 0.0537206195294857,
+ "learning_rate": 3.1066071801523905e-05,
+ "loss": 1.7294268608093262,
+ "step": 3140
+ },
+ {
+ "epoch": 43.62717770034843,
+ "grad_norm": 0.0546269416809082,
+ "learning_rate": 3.095899096371456e-05,
+ "loss": 1.7221415042877197,
+ "step": 3141
+ },
+ {
+ "epoch": 43.641114982578394,
+ "grad_norm": 0.053113903850317,
+ "learning_rate": 3.0852129304432506e-05,
+ "loss": 1.736724615097046,
+ "step": 3142
+ },
+ {
+ "epoch": 43.65505226480836,
+ "grad_norm": 0.05498050898313522,
+ "learning_rate": 3.074548690977434e-05,
+ "loss": 1.7322667837142944,
+ "step": 3143
+ },
+ {
+ "epoch": 43.66898954703833,
+ "grad_norm": 0.05440475046634674,
+ "learning_rate": 3.0639063865659834e-05,
+ "loss": 1.73948073387146,
+ "step": 3144
+ },
+ {
+ "epoch": 43.68292682926829,
+ "grad_norm": 0.05363302677869797,
+ "learning_rate": 3.0532860257832144e-05,
+ "loss": 1.7285170555114746,
+ "step": 3145
+ },
+ {
+ "epoch": 43.69686411149826,
+ "grad_norm": 0.054400697350502014,
+ "learning_rate": 3.04268761718576e-05,
+ "loss": 1.7351844310760498,
+ "step": 3146
+ },
+ {
+ "epoch": 43.710801393728225,
+ "grad_norm": 0.05313118174672127,
+ "learning_rate": 3.0321111693125648e-05,
+ "loss": 1.7225779294967651,
+ "step": 3147
+ },
+ {
+ "epoch": 43.724738675958186,
+ "grad_norm": 0.05314374715089798,
+ "learning_rate": 3.0215566906848906e-05,
+ "loss": 1.738951325416565,
+ "step": 3148
+ },
+ {
+ "epoch": 43.73867595818815,
+ "grad_norm": 0.0563817098736763,
+ "learning_rate": 3.0110241898062726e-05,
+ "loss": 1.7275046110153198,
+ "step": 3149
+ },
+ {
+ "epoch": 43.75261324041812,
+ "grad_norm": 0.05504818260669708,
+ "learning_rate": 3.0005136751625748e-05,
+ "loss": 1.731112003326416,
+ "step": 3150
+ },
+ {
+ "epoch": 43.76655052264808,
+ "grad_norm": 0.05315326526761055,
+ "learning_rate": 2.9900251552219178e-05,
+ "loss": 1.7331246137619019,
+ "step": 3151
+ },
+ {
+ "epoch": 43.78048780487805,
+ "grad_norm": 0.05489419773221016,
+ "learning_rate": 2.9795586384347202e-05,
+ "loss": 1.738120198249817,
+ "step": 3152
+ },
+ {
+ "epoch": 43.79442508710802,
+ "grad_norm": 0.05455980822443962,
+ "learning_rate": 2.9691141332336494e-05,
+ "loss": 1.738473892211914,
+ "step": 3153
+ },
+ {
+ "epoch": 43.80836236933798,
+ "grad_norm": 0.05449097976088524,
+ "learning_rate": 2.9586916480336735e-05,
+ "loss": 1.7321404218673706,
+ "step": 3154
+ },
+ {
+ "epoch": 43.822299651567945,
+ "grad_norm": 0.05368119478225708,
+ "learning_rate": 2.9482911912320006e-05,
+ "loss": 1.728409767150879,
+ "step": 3155
+ },
+ {
+ "epoch": 43.836236933797906,
+ "grad_norm": 0.05638488754630089,
+ "learning_rate": 2.9379127712080756e-05,
+ "loss": 1.733398675918579,
+ "step": 3156
+ },
+ {
+ "epoch": 43.850174216027874,
+ "grad_norm": 0.05563381686806679,
+ "learning_rate": 2.9275563963236107e-05,
+ "loss": 1.726851463317871,
+ "step": 3157
+ },
+ {
+ "epoch": 43.86411149825784,
+ "grad_norm": 0.053953833878040314,
+ "learning_rate": 2.9172220749225548e-05,
+ "loss": 1.7333306074142456,
+ "step": 3158
+ },
+ {
+ "epoch": 43.8780487804878,
+ "grad_norm": 0.05466780066490173,
+ "learning_rate": 2.906909815331085e-05,
+ "loss": 1.7296473979949951,
+ "step": 3159
+ },
+ {
+ "epoch": 43.89198606271777,
+ "grad_norm": 0.0546705424785614,
+ "learning_rate": 2.896619625857588e-05,
+ "loss": 1.7264845371246338,
+ "step": 3160
+ },
+ {
+ "epoch": 43.90592334494774,
+ "grad_norm": 0.054817862808704376,
+ "learning_rate": 2.8863515147927003e-05,
+ "loss": 1.7292261123657227,
+ "step": 3161
+ },
+ {
+ "epoch": 43.9198606271777,
+ "grad_norm": 0.054920706897974014,
+ "learning_rate": 2.8761054904092514e-05,
+ "loss": 1.7173794507980347,
+ "step": 3162
+ },
+ {
+ "epoch": 43.933797909407666,
+ "grad_norm": 0.054250918328762054,
+ "learning_rate": 2.8658815609622665e-05,
+ "loss": 1.7082734107971191,
+ "step": 3163
+ },
+ {
+ "epoch": 43.94773519163763,
+ "grad_norm": 0.05523055046796799,
+ "learning_rate": 2.855679734688993e-05,
+ "loss": 1.7378957271575928,
+ "step": 3164
+ },
+ {
+ "epoch": 43.961672473867594,
+ "grad_norm": 0.05538921058177948,
+ "learning_rate": 2.8455000198088502e-05,
+ "loss": 1.729036569595337,
+ "step": 3165
+ },
+ {
+ "epoch": 43.97560975609756,
+ "grad_norm": 0.05559125170111656,
+ "learning_rate": 2.8353424245234582e-05,
+ "loss": 1.728592872619629,
+ "step": 3166
+ },
+ {
+ "epoch": 43.98954703832753,
+ "grad_norm": 0.0566965751349926,
+ "learning_rate": 2.825206957016599e-05,
+ "loss": 1.7317943572998047,
+ "step": 3167
+ },
+ {
+ "epoch": 44.0,
+ "grad_norm": 0.04648921266198158,
+ "learning_rate": 2.8150936254542376e-05,
+ "loss": 1.3038744926452637,
+ "step": 3168
+ },
+ {
+ "epoch": 44.0,
+ "eval_loss": 0.6606200337409973,
+ "eval_runtime": 42.0494,
+ "eval_samples_per_second": 58.075,
+ "eval_steps_per_second": 0.476,
+ "step": 3168
+ },
+ {
+ "epoch": 44.01393728222997,
+ "grad_norm": 0.04810052365064621,
+ "learning_rate": 2.8050024379845118e-05,
+ "loss": 1.7251083850860596,
+ "step": 3169
+ },
+ {
+ "epoch": 44.02787456445993,
+ "grad_norm": 0.04799323529005051,
+ "learning_rate": 2.7949334027376986e-05,
+ "loss": 1.7395541667938232,
+ "step": 3170
+ },
+ {
+ "epoch": 44.041811846689896,
+ "grad_norm": 0.048207368701696396,
+ "learning_rate": 2.7848865278262427e-05,
+ "loss": 1.7131805419921875,
+ "step": 3171
+ },
+ {
+ "epoch": 44.055749128919864,
+ "grad_norm": 0.050403010100126266,
+ "learning_rate": 2.7748618213447268e-05,
+ "loss": 1.7301462888717651,
+ "step": 3172
+ },
+ {
+ "epoch": 44.069686411149824,
+ "grad_norm": 0.04852408543229103,
+ "learning_rate": 2.764859291369885e-05,
+ "loss": 1.7110222578048706,
+ "step": 3173
+ },
+ {
+ "epoch": 44.08362369337979,
+ "grad_norm": 0.049488943070173264,
+ "learning_rate": 2.7548789459605603e-05,
+ "loss": 1.732396125793457,
+ "step": 3174
+ },
+ {
+ "epoch": 44.09756097560975,
+ "grad_norm": 0.049136314541101456,
+ "learning_rate": 2.744920793157743e-05,
+ "loss": 1.7285856008529663,
+ "step": 3175
+ },
+ {
+ "epoch": 44.11149825783972,
+ "grad_norm": 0.0498649924993515,
+ "learning_rate": 2.7349848409845462e-05,
+ "loss": 1.7257282733917236,
+ "step": 3176
+ },
+ {
+ "epoch": 44.12543554006969,
+ "grad_norm": 0.04963008314371109,
+ "learning_rate": 2.725071097446174e-05,
+ "loss": 1.7380023002624512,
+ "step": 3177
+ },
+ {
+ "epoch": 44.13937282229965,
+ "grad_norm": 0.049789007753133774,
+ "learning_rate": 2.715179570529959e-05,
+ "loss": 1.7362974882125854,
+ "step": 3178
+ },
+ {
+ "epoch": 44.153310104529616,
+ "grad_norm": 0.049131445586681366,
+ "learning_rate": 2.7053102682053134e-05,
+ "loss": 1.7316465377807617,
+ "step": 3179
+ },
+ {
+ "epoch": 44.167247386759584,
+ "grad_norm": 0.049477335065603256,
+ "learning_rate": 2.6954631984237766e-05,
+ "loss": 1.7171342372894287,
+ "step": 3180
+ },
+ {
+ "epoch": 44.181184668989545,
+ "grad_norm": 0.04945173114538193,
+ "learning_rate": 2.6856383691189347e-05,
+ "loss": 1.7230268716812134,
+ "step": 3181
+ },
+ {
+ "epoch": 44.19512195121951,
+ "grad_norm": 0.05099281296133995,
+ "learning_rate": 2.675835788206485e-05,
+ "loss": 1.7154399156570435,
+ "step": 3182
+ },
+ {
+ "epoch": 44.20905923344948,
+ "grad_norm": 0.05003630369901657,
+ "learning_rate": 2.6660554635841912e-05,
+ "loss": 1.7240588665008545,
+ "step": 3183
+ },
+ {
+ "epoch": 44.22299651567944,
+ "grad_norm": 0.050549741834402084,
+ "learning_rate": 2.6562974031318788e-05,
+ "loss": 1.7049214839935303,
+ "step": 3184
+ },
+ {
+ "epoch": 44.23693379790941,
+ "grad_norm": 0.049471259117126465,
+ "learning_rate": 2.6465616147114485e-05,
+ "loss": 1.719792127609253,
+ "step": 3185
+ },
+ {
+ "epoch": 44.250871080139376,
+ "grad_norm": 0.04968724027276039,
+ "learning_rate": 2.6368481061668344e-05,
+ "loss": 1.7355620861053467,
+ "step": 3186
+ },
+ {
+ "epoch": 44.26480836236934,
+ "grad_norm": 0.05011356249451637,
+ "learning_rate": 2.6271568853240557e-05,
+ "loss": 1.7258524894714355,
+ "step": 3187
+ },
+ {
+ "epoch": 44.278745644599304,
+ "grad_norm": 0.049676526337862015,
+ "learning_rate": 2.6174879599911347e-05,
+ "loss": 1.7210259437561035,
+ "step": 3188
+ },
+ {
+ "epoch": 44.292682926829265,
+ "grad_norm": 0.051889803260564804,
+ "learning_rate": 2.6078413379581627e-05,
+ "loss": 1.7197644710540771,
+ "step": 3189
+ },
+ {
+ "epoch": 44.30662020905923,
+ "grad_norm": 0.050644151866436005,
+ "learning_rate": 2.5982170269972397e-05,
+ "loss": 1.7159698009490967,
+ "step": 3190
+ },
+ {
+ "epoch": 44.3205574912892,
+ "grad_norm": 0.05152284726500511,
+ "learning_rate": 2.588615034862507e-05,
+ "loss": 1.725931167602539,
+ "step": 3191
+ },
+ {
+ "epoch": 44.33449477351916,
+ "grad_norm": 0.051264841109514236,
+ "learning_rate": 2.5790353692901158e-05,
+ "loss": 1.7258868217468262,
+ "step": 3192
+ },
+ {
+ "epoch": 44.34843205574913,
+ "grad_norm": 0.05107296630740166,
+ "learning_rate": 2.5694780379982238e-05,
+ "loss": 1.723544955253601,
+ "step": 3193
+ },
+ {
+ "epoch": 44.362369337979096,
+ "grad_norm": 0.051960233598947525,
+ "learning_rate": 2.5599430486870055e-05,
+ "loss": 1.7397563457489014,
+ "step": 3194
+ },
+ {
+ "epoch": 44.37630662020906,
+ "grad_norm": 0.052021075040102005,
+ "learning_rate": 2.5504304090386225e-05,
+ "loss": 1.733546495437622,
+ "step": 3195
+ },
+ {
+ "epoch": 44.390243902439025,
+ "grad_norm": 0.05020024627447128,
+ "learning_rate": 2.5409401267172474e-05,
+ "loss": 1.6998636722564697,
+ "step": 3196
+ },
+ {
+ "epoch": 44.40418118466899,
+ "grad_norm": 0.05044161528348923,
+ "learning_rate": 2.5314722093690176e-05,
+ "loss": 1.7023978233337402,
+ "step": 3197
+ },
+ {
+ "epoch": 44.41811846689895,
+ "grad_norm": 0.05114946514368057,
+ "learning_rate": 2.522026664622071e-05,
+ "loss": 1.7240948677062988,
+ "step": 3198
+ },
+ {
+ "epoch": 44.43205574912892,
+ "grad_norm": 0.05104855075478554,
+ "learning_rate": 2.5126035000865124e-05,
+ "loss": 1.7083699703216553,
+ "step": 3199
+ },
+ {
+ "epoch": 44.44599303135889,
+ "grad_norm": 0.05128896236419678,
+ "learning_rate": 2.503202723354413e-05,
+ "loss": 1.7245129346847534,
+ "step": 3200
+ },
+ {
+ "epoch": 44.45993031358885,
+ "grad_norm": 0.05274409055709839,
+ "learning_rate": 2.4938243419998047e-05,
+ "loss": 1.7297062873840332,
+ "step": 3201
+ },
+ {
+ "epoch": 44.47386759581882,
+ "grad_norm": 0.05212276428937912,
+ "learning_rate": 2.484468363578689e-05,
+ "loss": 1.7290027141571045,
+ "step": 3202
+ },
+ {
+ "epoch": 44.48780487804878,
+ "grad_norm": 0.051072943955659866,
+ "learning_rate": 2.475134795629004e-05,
+ "loss": 1.7250025272369385,
+ "step": 3203
+ },
+ {
+ "epoch": 44.501742160278745,
+ "grad_norm": 0.05227199196815491,
+ "learning_rate": 2.4658236456706357e-05,
+ "loss": 1.739984393119812,
+ "step": 3204
+ },
+ {
+ "epoch": 44.51567944250871,
+ "grad_norm": 0.05299844592809677,
+ "learning_rate": 2.456534921205403e-05,
+ "loss": 1.7240335941314697,
+ "step": 3205
+ },
+ {
+ "epoch": 44.52961672473867,
+ "grad_norm": 0.05148797854781151,
+ "learning_rate": 2.4472686297170822e-05,
+ "loss": 1.7336392402648926,
+ "step": 3206
+ },
+ {
+ "epoch": 44.54355400696864,
+ "grad_norm": 0.05192282795906067,
+ "learning_rate": 2.4380247786713403e-05,
+ "loss": 1.7241379022598267,
+ "step": 3207
+ },
+ {
+ "epoch": 44.55749128919861,
+ "grad_norm": 0.051494989544153214,
+ "learning_rate": 2.428803375515788e-05,
+ "loss": 1.7148733139038086,
+ "step": 3208
+ },
+ {
+ "epoch": 44.57142857142857,
+ "grad_norm": 0.052663806825876236,
+ "learning_rate": 2.4196044276799397e-05,
+ "loss": 1.7224645614624023,
+ "step": 3209
+ },
+ {
+ "epoch": 44.58536585365854,
+ "grad_norm": 0.05165771767497063,
+ "learning_rate": 2.410427942575228e-05,
+ "loss": 1.7237358093261719,
+ "step": 3210
+ },
+ {
+ "epoch": 44.599303135888505,
+ "grad_norm": 0.05213863402605057,
+ "learning_rate": 2.4012739275949746e-05,
+ "loss": 1.730781078338623,
+ "step": 3211
+ },
+ {
+ "epoch": 44.613240418118465,
+ "grad_norm": 0.05217474699020386,
+ "learning_rate": 2.3921423901144008e-05,
+ "loss": 1.7104840278625488,
+ "step": 3212
+ },
+ {
+ "epoch": 44.62717770034843,
+ "grad_norm": 0.05260826274752617,
+ "learning_rate": 2.3830333374906342e-05,
+ "loss": 1.7201709747314453,
+ "step": 3213
+ },
+ {
+ "epoch": 44.641114982578394,
+ "grad_norm": 0.05196409299969673,
+ "learning_rate": 2.3739467770626637e-05,
+ "loss": 1.7464969158172607,
+ "step": 3214
+ },
+ {
+ "epoch": 44.65505226480836,
+ "grad_norm": 0.0521632581949234,
+ "learning_rate": 2.3648827161513686e-05,
+ "loss": 1.7324943542480469,
+ "step": 3215
+ },
+ {
+ "epoch": 44.66898954703833,
+ "grad_norm": 0.05202251300215721,
+ "learning_rate": 2.3558411620595038e-05,
+ "loss": 1.7284767627716064,
+ "step": 3216
+ },
+ {
+ "epoch": 44.68292682926829,
+ "grad_norm": 0.05214177072048187,
+ "learning_rate": 2.3468221220716844e-05,
+ "loss": 1.72467041015625,
+ "step": 3217
+ },
+ {
+ "epoch": 44.69686411149826,
+ "grad_norm": 0.05224514380097389,
+ "learning_rate": 2.33782560345438e-05,
+ "loss": 1.7266634702682495,
+ "step": 3218
+ },
+ {
+ "epoch": 44.710801393728225,
+ "grad_norm": 0.052075136452913284,
+ "learning_rate": 2.328851613455932e-05,
+ "loss": 1.7178864479064941,
+ "step": 3219
+ },
+ {
+ "epoch": 44.724738675958186,
+ "grad_norm": 0.052775993943214417,
+ "learning_rate": 2.3199001593065204e-05,
+ "loss": 1.72368323802948,
+ "step": 3220
+ },
+ {
+ "epoch": 44.73867595818815,
+ "grad_norm": 0.05267832800745964,
+ "learning_rate": 2.3109712482181684e-05,
+ "loss": 1.7240350246429443,
+ "step": 3221
+ },
+ {
+ "epoch": 44.75261324041812,
+ "grad_norm": 0.051939260214567184,
+ "learning_rate": 2.3020648873847414e-05,
+ "loss": 1.7233244180679321,
+ "step": 3222
+ },
+ {
+ "epoch": 44.76655052264808,
+ "grad_norm": 0.0522114597260952,
+ "learning_rate": 2.2931810839819235e-05,
+ "loss": 1.7295070886611938,
+ "step": 3223
+ },
+ {
+ "epoch": 44.78048780487805,
+ "grad_norm": 0.05278675630688667,
+ "learning_rate": 2.284319845167253e-05,
+ "loss": 1.71889066696167,
+ "step": 3224
+ },
+ {
+ "epoch": 44.79442508710802,
+ "grad_norm": 0.051905177533626556,
+ "learning_rate": 2.2754811780800532e-05,
+ "loss": 1.7296419143676758,
+ "step": 3225
+ },
+ {
+ "epoch": 44.80836236933798,
+ "grad_norm": 0.05445098876953125,
+ "learning_rate": 2.2666650898414827e-05,
+ "loss": 1.7175172567367554,
+ "step": 3226
+ },
+ {
+ "epoch": 44.822299651567945,
+ "grad_norm": 0.05317043140530586,
+ "learning_rate": 2.2578715875545095e-05,
+ "loss": 1.7262303829193115,
+ "step": 3227
+ },
+ {
+ "epoch": 44.836236933797906,
+ "grad_norm": 0.05217629671096802,
+ "learning_rate": 2.2491006783038976e-05,
+ "loss": 1.7212185859680176,
+ "step": 3228
+ },
+ {
+ "epoch": 44.850174216027874,
+ "grad_norm": 0.054154038429260254,
+ "learning_rate": 2.2403523691562092e-05,
+ "loss": 1.7390978336334229,
+ "step": 3229
+ },
+ {
+ "epoch": 44.86411149825784,
+ "grad_norm": 0.053792186081409454,
+ "learning_rate": 2.2316266671598003e-05,
+ "loss": 1.7153360843658447,
+ "step": 3230
+ },
+ {
+ "epoch": 44.8780487804878,
+ "grad_norm": 0.052808087319135666,
+ "learning_rate": 2.222923579344805e-05,
+ "loss": 1.7074368000030518,
+ "step": 3231
+ },
+ {
+ "epoch": 44.89198606271777,
+ "grad_norm": 0.05260848253965378,
+ "learning_rate": 2.2142431127231502e-05,
+ "loss": 1.72408127784729,
+ "step": 3232
+ },
+ {
+ "epoch": 44.90592334494774,
+ "grad_norm": 0.052090760320425034,
+ "learning_rate": 2.2055852742885322e-05,
+ "loss": 1.7318116426467896,
+ "step": 3233
+ },
+ {
+ "epoch": 44.9198606271777,
+ "grad_norm": 0.055377885699272156,
+ "learning_rate": 2.196950071016409e-05,
+ "loss": 1.7253409624099731,
+ "step": 3234
+ },
+ {
+ "epoch": 44.933797909407666,
+ "grad_norm": 0.05375788360834122,
+ "learning_rate": 2.1883375098640134e-05,
+ "loss": 1.712152361869812,
+ "step": 3235
+ },
+ {
+ "epoch": 44.94773519163763,
+ "grad_norm": 0.05410565063357353,
+ "learning_rate": 2.1797475977703352e-05,
+ "loss": 1.717970371246338,
+ "step": 3236
+ },
+ {
+ "epoch": 44.961672473867594,
+ "grad_norm": 0.05300476774573326,
+ "learning_rate": 2.1711803416560964e-05,
+ "loss": 1.7061667442321777,
+ "step": 3237
+ },
+ {
+ "epoch": 44.97560975609756,
+ "grad_norm": 0.05325675383210182,
+ "learning_rate": 2.16263574842379e-05,
+ "loss": 1.7095091342926025,
+ "step": 3238
+ },
+ {
+ "epoch": 44.98954703832753,
+ "grad_norm": 0.0537128672003746,
+ "learning_rate": 2.15411382495764e-05,
+ "loss": 1.7317320108413696,
+ "step": 3239
+ },
+ {
+ "epoch": 45.0,
+ "grad_norm": 0.044390108436346054,
+ "learning_rate": 2.1456145781236057e-05,
+ "loss": 1.3073341846466064,
+ "step": 3240
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 3600,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 50,
+ "save_steps": 500,
+ "stateful_callbacks": {
+ "TrainerControl": {
+ "args": {
+ "should_epoch_stop": false,
+ "should_evaluate": true,
+ "should_log": false,
+ "should_save": false,
+ "should_training_stop": false
+ },
+ "attributes": {}
+ }
+ },
+ "total_flos": 1.384945207392338e+18,
+ "train_batch_size": 64,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/base-ssl/checkpoint-3240/training_args.bin b/runs/base-ssl/checkpoint-3240/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..cbb50e43950730a04421678098579c835c9d518d
--- /dev/null
+++ b/runs/base-ssl/checkpoint-3240/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7572b8029663dc4d810f9d514c80dc9b976de220cbe72e5abd832ec6ec2ef18b
+size 5265
diff --git a/runs/base-ssl/checkpoint-360/chat_template.jinja b/runs/base-ssl/checkpoint-360/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/base-ssl/checkpoint-360/chat_template.jinja
@@ -0,0 +1,85 @@
+{%- if tools %}
+ {{- '<|im_start|>system\n' }}
+ {%- if messages[0].role == 'system' %}
+ {{- messages[0].content + '\n\n' }}
+ {%- endif %}
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }}
+ {%- for tool in tools %}
+ {{- "\n" }}
+ {{- tool | tojson }}
+ {%- endfor %}
+ {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }}
+{%- else %}
+ {%- if messages[0].role == 'system' %}
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
+ {%- endif %}
+{%- endif %}
+{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
+{%- for message in messages[::-1] %}
+ {%- set index = (messages|length - 1) - loop.index0 %}
+ {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %}
+ {%- set ns.multi_step_tool = false %}
+ {%- set ns.last_query_index = index %}
+ {%- endif %}
+{%- endfor %}
+{%- for message in messages %}
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
+ {%- elif message.role == "assistant" %}
+ {%- set content = message.content %}
+ {%- set reasoning_content = '' %}
+ {%- if message.reasoning_content is defined and message.reasoning_content is not none %}
+ {%- set reasoning_content = message.reasoning_content %}
+ {%- else %}
+ {%- if '' in message.content %}
+ {%- set content = message.content.split('')[-1].lstrip('\n') %}
+ {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %}
+ {%- endif %}
+ {%- endif %}
+ {%- if loop.index0 > ns.last_query_index %}
+ {%- if loop.last or (not loop.last and reasoning_content) %}
+ {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- if message.tool_calls %}
+ {%- for tool_call in message.tool_calls %}
+ {%- if (loop.first and content) or (not loop.first) %}
+ {{- '\n' }}
+ {%- endif %}
+ {%- if tool_call.function %}
+ {%- set tool_call = tool_call.function %}
+ {%- endif %}
+ {{- '\n{"name": "' }}
+ {{- tool_call.name }}
+ {{- '", "arguments": ' }}
+ {%- if tool_call.arguments is string %}
+ {{- tool_call.arguments }}
+ {%- else %}
+ {{- tool_call.arguments | tojson }}
+ {%- endif %}
+ {{- '}\n' }}
+ {%- endfor %}
+ {%- endif %}
+ {{- '<|im_end|>\n' }}
+ {%- elif message.role == "tool" %}
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
+ {{- '<|im_start|>user' }}
+ {%- endif %}
+ {{- '\n\n' }}
+ {{- message.content }}
+ {{- '\n' }}
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
+ {{- '<|im_end|>\n' }}
+ {%- endif %}
+ {%- endif %}
+{%- endfor %}
+{%- if add_generation_prompt %}
+ {{- '<|im_start|>assistant\n' }}
+ {%- if enable_thinking is defined and enable_thinking is false %}
+ {{- '\n\n\n\n' }}
+ {%- endif %}
+{%- endif %}
\ No newline at end of file
diff --git a/runs/base-ssl/checkpoint-360/config.json b/runs/base-ssl/checkpoint-360/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/base-ssl/checkpoint-360/config.json
@@ -0,0 +1,32 @@
+{
+ "architectures": [
+ "LlamaForCausalLM"
+ ],
+ "attention_bias": false,
+ "attention_dropout": 0.0,
+ "bos_token_id": null,
+ "dtype": "float32",
+ "eos_token_id": 151645,
+ "head_dim": 128,
+ "hidden_act": "silu",
+ "hidden_size": 512,
+ "initializer_range": 0.02,
+ "intermediate_size": 1536,
+ "max_position_embeddings": 2048,
+ "mlp_bias": false,
+ "model_type": "llama",
+ "num_attention_heads": 4,
+ "num_hidden_layers": 20,
+ "num_key_value_heads": 4,
+ "pad_token_id": 151645,
+ "pretraining_tp": 1,
+ "rms_norm_eps": 1e-06,
+ "rope_parameters": {
+ "rope_theta": 10000.0,
+ "rope_type": "default"
+ },
+ "tie_word_embeddings": true,
+ "transformers_version": "5.5.0",
+ "use_cache": false,
+ "vocab_size": 151671
+}
diff --git a/runs/base-ssl/checkpoint-360/generation_config.json b/runs/base-ssl/checkpoint-360/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/base-ssl/checkpoint-360/generation_config.json
@@ -0,0 +1,11 @@
+{
+ "_from_model_config": true,
+ "eos_token_id": [
+ 151645
+ ],
+ "output_attentions": false,
+ "output_hidden_states": false,
+ "pad_token_id": 151645,
+ "transformers_version": "5.5.0",
+ "use_cache": true
+}
diff --git a/runs/base-ssl/checkpoint-360/model.safetensors b/runs/base-ssl/checkpoint-360/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..069f7d2604e47851bbff1001d705a95e76de06ee
--- /dev/null
+++ b/runs/base-ssl/checkpoint-360/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f79c1bf6eb6273db613ffef479b34c0ec174f816f8f30f01c1bbb34773515cff
+size 583356232
diff --git a/runs/base-ssl/checkpoint-360/optimizer.pt b/runs/base-ssl/checkpoint-360/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..50311482a767418b7de405440eb21fd4baad13b8
--- /dev/null
+++ b/runs/base-ssl/checkpoint-360/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:fc831ef3459176acf27556cae76a5bda2a8388f9c4bbf81a0545411de8911725
+size 1166825803
diff --git a/runs/base-ssl/checkpoint-360/rng_state_0.pth b/runs/base-ssl/checkpoint-360/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..3a2bb760d0b0b50f4b7b6980626fda172a127f68
--- /dev/null
+++ b/runs/base-ssl/checkpoint-360/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9627a7b92eeed978894313d8642baf0ecdcd808f2102543d8b58136102ad5997
+size 14917
diff --git a/runs/base-ssl/checkpoint-360/rng_state_1.pth b/runs/base-ssl/checkpoint-360/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..7b307a1ab4859d8d838e7d20293e5eb15985549a
--- /dev/null
+++ b/runs/base-ssl/checkpoint-360/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:0d79c621c2f337ae714092486c08d5a224dca6ddc4285fb0014e9b648d0c9cae
+size 14917
diff --git a/runs/base-ssl/checkpoint-360/scheduler.pt b/runs/base-ssl/checkpoint-360/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..be1c46bbc9ac67b626f5e0bb3dac16ba107193bc
--- /dev/null
+++ b/runs/base-ssl/checkpoint-360/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:79ed78fca474f0ed71de3aa751471c35bef733680fc53c36641881688dd58ce5
+size 1465
diff --git a/runs/base-ssl/checkpoint-360/tokenizer.json b/runs/base-ssl/checkpoint-360/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/base-ssl/checkpoint-360/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:59b6776030505d5b441d0727cce137047df748ab15db6ba3a1bac93c123742fb
+size 11424079
diff --git a/runs/base-ssl/checkpoint-360/tokenizer_config.json b/runs/base-ssl/checkpoint-360/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/base-ssl/checkpoint-360/tokenizer_config.json
@@ -0,0 +1,18 @@
+{
+ "add_prefix_space": false,
+ "backend": "tokenizers",
+ "bos_token": null,
+ "clean_up_tokenization_spaces": false,
+ "eos_token": "<|im_end|>",
+ "errors": "replace",
+ "extra_special_tokens": [
+ "<|l2r_pred|>",
+ "<|r2l_pred|>"
+ ],
+ "is_local": false,
+ "model_max_length": 131072,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/base-ssl/checkpoint-360/trainer_state.json b/runs/base-ssl/checkpoint-360/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..abda22d1a6a54ecfa9fed63d74fcd80149b747f8
--- /dev/null
+++ b/runs/base-ssl/checkpoint-360/trainer_state.json
@@ -0,0 +1,2586 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 5.0,
+ "eval_steps": 500,
+ "global_step": 360,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013937282229965157,
+ "grad_norm": 0.2712002694606781,
+ "learning_rate": 0.0,
+ "loss": 4.000947952270508,
+ "step": 1
+ },
+ {
+ "epoch": 0.027874564459930314,
+ "grad_norm": 0.2709888219833374,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 4.000800132751465,
+ "step": 2
+ },
+ {
+ "epoch": 0.041811846689895474,
+ "grad_norm": 0.2721220850944519,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 3.982931613922119,
+ "step": 3
+ },
+ {
+ "epoch": 0.05574912891986063,
+ "grad_norm": 0.24822379648685455,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 3.948713779449463,
+ "step": 4
+ },
+ {
+ "epoch": 0.06968641114982578,
+ "grad_norm": 0.2103811800479889,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 3.908690929412842,
+ "step": 5
+ },
+ {
+ "epoch": 0.08362369337979095,
+ "grad_norm": 0.18375654518604279,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 3.8660929203033447,
+ "step": 6
+ },
+ {
+ "epoch": 0.0975609756097561,
+ "grad_norm": 0.1471690535545349,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 3.82308030128479,
+ "step": 7
+ },
+ {
+ "epoch": 0.11149825783972125,
+ "grad_norm": 0.11132320016622543,
+ "learning_rate": 4.2e-05,
+ "loss": 3.790834426879883,
+ "step": 8
+ },
+ {
+ "epoch": 0.1254355400696864,
+ "grad_norm": 0.08796700090169907,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 3.7589545249938965,
+ "step": 9
+ },
+ {
+ "epoch": 0.13937282229965156,
+ "grad_norm": 0.07089080661535263,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 3.7346723079681396,
+ "step": 10
+ },
+ {
+ "epoch": 0.15331010452961671,
+ "grad_norm": 0.056723613291978836,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 3.7159838676452637,
+ "step": 11
+ },
+ {
+ "epoch": 0.1672473867595819,
+ "grad_norm": 0.04544799029827118,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 3.701421022415161,
+ "step": 12
+ },
+ {
+ "epoch": 0.18118466898954705,
+ "grad_norm": 0.03551485016942024,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 3.691774845123291,
+ "step": 13
+ },
+ {
+ "epoch": 0.1951219512195122,
+ "grad_norm": 0.028209710493683815,
+ "learning_rate": 7.8e-05,
+ "loss": 3.6860086917877197,
+ "step": 14
+ },
+ {
+ "epoch": 0.20905923344947736,
+ "grad_norm": 0.024290181696414948,
+ "learning_rate": 8.4e-05,
+ "loss": 3.6806883811950684,
+ "step": 15
+ },
+ {
+ "epoch": 0.2229965156794425,
+ "grad_norm": 0.022015230730175972,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 3.677751064300537,
+ "step": 16
+ },
+ {
+ "epoch": 0.23693379790940766,
+ "grad_norm": 0.01960836350917816,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 3.6738266944885254,
+ "step": 17
+ },
+ {
+ "epoch": 0.2508710801393728,
+ "grad_norm": 0.017675744369626045,
+ "learning_rate": 0.000102,
+ "loss": 3.6739063262939453,
+ "step": 18
+ },
+ {
+ "epoch": 0.26480836236933797,
+ "grad_norm": 0.01539881993085146,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 3.671247720718384,
+ "step": 19
+ },
+ {
+ "epoch": 0.2787456445993031,
+ "grad_norm": 0.013906505890190601,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 3.66833233833313,
+ "step": 20
+ },
+ {
+ "epoch": 0.2926829268292683,
+ "grad_norm": 0.01149708591401577,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 3.6706337928771973,
+ "step": 21
+ },
+ {
+ "epoch": 0.30662020905923343,
+ "grad_norm": 0.010512279346585274,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 3.667168140411377,
+ "step": 22
+ },
+ {
+ "epoch": 0.3205574912891986,
+ "grad_norm": 0.00897525716573,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 3.6630516052246094,
+ "step": 23
+ },
+ {
+ "epoch": 0.3344947735191638,
+ "grad_norm": 0.008081364445388317,
+ "learning_rate": 0.000138,
+ "loss": 3.6629021167755127,
+ "step": 24
+ },
+ {
+ "epoch": 0.34843205574912894,
+ "grad_norm": 0.0076500303111970425,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 3.66168212890625,
+ "step": 25
+ },
+ {
+ "epoch": 0.3623693379790941,
+ "grad_norm": 0.007083008531481028,
+ "learning_rate": 0.00015,
+ "loss": 3.6564559936523438,
+ "step": 26
+ },
+ {
+ "epoch": 0.37630662020905925,
+ "grad_norm": 0.006654089782387018,
+ "learning_rate": 0.000156,
+ "loss": 3.6590094566345215,
+ "step": 27
+ },
+ {
+ "epoch": 0.3902439024390244,
+ "grad_norm": 0.0073669785633683205,
+ "learning_rate": 0.000162,
+ "loss": 3.651914119720459,
+ "step": 28
+ },
+ {
+ "epoch": 0.40418118466898956,
+ "grad_norm": 0.007247959729284048,
+ "learning_rate": 0.000168,
+ "loss": 3.6557557582855225,
+ "step": 29
+ },
+ {
+ "epoch": 0.4181184668989547,
+ "grad_norm": 0.007229349110275507,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 3.651794910430908,
+ "step": 30
+ },
+ {
+ "epoch": 0.43205574912891986,
+ "grad_norm": 0.008839861489832401,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 3.653074264526367,
+ "step": 31
+ },
+ {
+ "epoch": 0.445993031358885,
+ "grad_norm": 0.009280834347009659,
+ "learning_rate": 0.000186,
+ "loss": 3.6503708362579346,
+ "step": 32
+ },
+ {
+ "epoch": 0.45993031358885017,
+ "grad_norm": 0.008585072122514248,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 3.650331497192383,
+ "step": 33
+ },
+ {
+ "epoch": 0.4738675958188153,
+ "grad_norm": 0.01164434663951397,
+ "learning_rate": 0.000198,
+ "loss": 3.6462929248809814,
+ "step": 34
+ },
+ {
+ "epoch": 0.4878048780487805,
+ "grad_norm": 0.012668018229305744,
+ "learning_rate": 0.000204,
+ "loss": 3.6516757011413574,
+ "step": 35
+ },
+ {
+ "epoch": 0.5017421602787456,
+ "grad_norm": 0.01610603742301464,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 3.647498607635498,
+ "step": 36
+ },
+ {
+ "epoch": 0.5156794425087108,
+ "grad_norm": 0.018993742763996124,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 3.642869472503662,
+ "step": 37
+ },
+ {
+ "epoch": 0.5296167247386759,
+ "grad_norm": 0.020697375759482384,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 3.639193058013916,
+ "step": 38
+ },
+ {
+ "epoch": 0.5435540069686411,
+ "grad_norm": 0.021636122837662697,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 3.630560874938965,
+ "step": 39
+ },
+ {
+ "epoch": 0.5574912891986062,
+ "grad_norm": 0.01893668621778488,
+ "learning_rate": 0.000234,
+ "loss": 3.6265769004821777,
+ "step": 40
+ },
+ {
+ "epoch": 0.5714285714285714,
+ "grad_norm": 0.025133362039923668,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 3.6185407638549805,
+ "step": 41
+ },
+ {
+ "epoch": 0.5853658536585366,
+ "grad_norm": 0.016397792845964432,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 3.609161853790283,
+ "step": 42
+ },
+ {
+ "epoch": 0.5993031358885017,
+ "grad_norm": 0.02059962786734104,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 3.5987398624420166,
+ "step": 43
+ },
+ {
+ "epoch": 0.6132404181184669,
+ "grad_norm": 0.026733839884400368,
+ "learning_rate": 0.000258,
+ "loss": 3.601898193359375,
+ "step": 44
+ },
+ {
+ "epoch": 0.627177700348432,
+ "grad_norm": 0.04592137038707733,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 3.597785472869873,
+ "step": 45
+ },
+ {
+ "epoch": 0.6411149825783972,
+ "grad_norm": 0.14618715643882751,
+ "learning_rate": 0.00027,
+ "loss": 3.597787857055664,
+ "step": 46
+ },
+ {
+ "epoch": 0.6550522648083623,
+ "grad_norm": 0.1228327602148056,
+ "learning_rate": 0.000276,
+ "loss": 3.598362922668457,
+ "step": 47
+ },
+ {
+ "epoch": 0.6689895470383276,
+ "grad_norm": 0.0651344507932663,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 3.5868940353393555,
+ "step": 48
+ },
+ {
+ "epoch": 0.6829268292682927,
+ "grad_norm": 0.030712513253092766,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 3.5800981521606445,
+ "step": 49
+ },
+ {
+ "epoch": 0.6968641114982579,
+ "grad_norm": 0.07069414854049683,
+ "learning_rate": 0.000294,
+ "loss": 3.590576171875,
+ "step": 50
+ },
+ {
+ "epoch": 0.710801393728223,
+ "grad_norm": 0.026333393529057503,
+ "learning_rate": 0.0003,
+ "loss": 3.5740621089935303,
+ "step": 51
+ },
+ {
+ "epoch": 0.7247386759581882,
+ "grad_norm": 0.050806671380996704,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 3.577582836151123,
+ "step": 52
+ },
+ {
+ "epoch": 0.7386759581881533,
+ "grad_norm": 0.04820532724261284,
+ "learning_rate": 0.000312,
+ "loss": 3.5686888694763184,
+ "step": 53
+ },
+ {
+ "epoch": 0.7526132404181185,
+ "grad_norm": 0.03834737837314606,
+ "learning_rate": 0.000318,
+ "loss": 3.571916341781616,
+ "step": 54
+ },
+ {
+ "epoch": 0.7665505226480837,
+ "grad_norm": 0.0663016214966774,
+ "learning_rate": 0.000324,
+ "loss": 3.563366413116455,
+ "step": 55
+ },
+ {
+ "epoch": 0.7804878048780488,
+ "grad_norm": 0.03111632913351059,
+ "learning_rate": 0.00033,
+ "loss": 3.555037021636963,
+ "step": 56
+ },
+ {
+ "epoch": 0.794425087108014,
+ "grad_norm": 0.06139425188302994,
+ "learning_rate": 0.000336,
+ "loss": 3.555377244949341,
+ "step": 57
+ },
+ {
+ "epoch": 0.8083623693379791,
+ "grad_norm": 0.02561746910214424,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 3.5368266105651855,
+ "step": 58
+ },
+ {
+ "epoch": 0.8222996515679443,
+ "grad_norm": 0.06502962112426758,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 3.5318264961242676,
+ "step": 59
+ },
+ {
+ "epoch": 0.8362369337979094,
+ "grad_norm": 0.06968390196561813,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 3.5210607051849365,
+ "step": 60
+ },
+ {
+ "epoch": 0.8501742160278746,
+ "grad_norm": 0.02670745924115181,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 3.5037078857421875,
+ "step": 61
+ },
+ {
+ "epoch": 0.8641114982578397,
+ "grad_norm": 0.07075569778680801,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 3.506938934326172,
+ "step": 62
+ },
+ {
+ "epoch": 0.8780487804878049,
+ "grad_norm": 0.061632659286260605,
+ "learning_rate": 0.000372,
+ "loss": 3.4960665702819824,
+ "step": 63
+ },
+ {
+ "epoch": 0.89198606271777,
+ "grad_norm": 0.10994791984558105,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 3.4926395416259766,
+ "step": 64
+ },
+ {
+ "epoch": 0.9059233449477352,
+ "grad_norm": 0.21027322113513947,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 3.502258777618408,
+ "step": 65
+ },
+ {
+ "epoch": 0.9198606271777003,
+ "grad_norm": 0.1937343329191208,
+ "learning_rate": 0.00039,
+ "loss": 3.5118448734283447,
+ "step": 66
+ },
+ {
+ "epoch": 0.9337979094076655,
+ "grad_norm": 0.07891395688056946,
+ "learning_rate": 0.000396,
+ "loss": 3.487575054168701,
+ "step": 67
+ },
+ {
+ "epoch": 0.9477351916376306,
+ "grad_norm": 0.12915678322315216,
+ "learning_rate": 0.000402,
+ "loss": 3.4890120029449463,
+ "step": 68
+ },
+ {
+ "epoch": 0.9616724738675958,
+ "grad_norm": 0.08530207723379135,
+ "learning_rate": 0.000408,
+ "loss": 3.4755735397338867,
+ "step": 69
+ },
+ {
+ "epoch": 0.975609756097561,
+ "grad_norm": 0.09704860299825668,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 3.4669318199157715,
+ "step": 70
+ },
+ {
+ "epoch": 0.9895470383275261,
+ "grad_norm": 0.07270640879869461,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 3.460634469985962,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.03984597697854042,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 2.590245485305786,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 0.8616236448287964,
+ "eval_runtime": 36.0347,
+ "eval_samples_per_second": 67.768,
+ "eval_steps_per_second": 0.555,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139372822299653,
+ "grad_norm": 0.058285508304834366,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 3.441636562347412,
+ "step": 73
+ },
+ {
+ "epoch": 1.0278745644599303,
+ "grad_norm": 0.07173695415258408,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 3.4476027488708496,
+ "step": 74
+ },
+ {
+ "epoch": 1.0418118466898956,
+ "grad_norm": 0.0367155559360981,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 3.4290428161621094,
+ "step": 75
+ },
+ {
+ "epoch": 1.0557491289198606,
+ "grad_norm": 0.05761358141899109,
+ "learning_rate": 0.00045,
+ "loss": 3.430612564086914,
+ "step": 76
+ },
+ {
+ "epoch": 1.0696864111498259,
+ "grad_norm": 0.06290662288665771,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 3.4222841262817383,
+ "step": 77
+ },
+ {
+ "epoch": 1.083623693379791,
+ "grad_norm": 0.09705018997192383,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 3.4233384132385254,
+ "step": 78
+ },
+ {
+ "epoch": 1.0975609756097562,
+ "grad_norm": 0.09656445682048798,
+ "learning_rate": 0.000468,
+ "loss": 3.422335624694824,
+ "step": 79
+ },
+ {
+ "epoch": 1.1114982578397212,
+ "grad_norm": 0.07884909957647324,
+ "learning_rate": 0.000474,
+ "loss": 3.4133338928222656,
+ "step": 80
+ },
+ {
+ "epoch": 1.1254355400696865,
+ "grad_norm": 0.06679042428731918,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 3.4053287506103516,
+ "step": 81
+ },
+ {
+ "epoch": 1.1393728222996515,
+ "grad_norm": 0.02522652968764305,
+ "learning_rate": 0.000486,
+ "loss": 3.392838478088379,
+ "step": 82
+ },
+ {
+ "epoch": 1.1533101045296168,
+ "grad_norm": 0.09408055245876312,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 3.3952789306640625,
+ "step": 83
+ },
+ {
+ "epoch": 1.1672473867595818,
+ "grad_norm": 0.08980021625757217,
+ "learning_rate": 0.000498,
+ "loss": 3.385244846343994,
+ "step": 84
+ },
+ {
+ "epoch": 1.181184668989547,
+ "grad_norm": 0.08343124389648438,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 3.382103443145752,
+ "step": 85
+ },
+ {
+ "epoch": 1.1951219512195121,
+ "grad_norm": 0.03343554213643074,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 3.374354362487793,
+ "step": 86
+ },
+ {
+ "epoch": 1.2090592334494774,
+ "grad_norm": 0.0852339118719101,
+ "learning_rate": 0.000516,
+ "loss": 3.3802456855773926,
+ "step": 87
+ },
+ {
+ "epoch": 1.2229965156794425,
+ "grad_norm": 0.09159538149833679,
+ "learning_rate": 0.000522,
+ "loss": 3.37576961517334,
+ "step": 88
+ },
+ {
+ "epoch": 1.2369337979094077,
+ "grad_norm": 0.04313444346189499,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 3.360690116882324,
+ "step": 89
+ },
+ {
+ "epoch": 1.2508710801393728,
+ "grad_norm": 0.075523741543293,
+ "learning_rate": 0.000534,
+ "loss": 3.3599460124969482,
+ "step": 90
+ },
+ {
+ "epoch": 1.264808362369338,
+ "grad_norm": 0.08516373485326767,
+ "learning_rate": 0.00054,
+ "loss": 3.3572096824645996,
+ "step": 91
+ },
+ {
+ "epoch": 1.278745644599303,
+ "grad_norm": 0.09553111344575882,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 3.3542261123657227,
+ "step": 92
+ },
+ {
+ "epoch": 1.2926829268292683,
+ "grad_norm": 0.05978025496006012,
+ "learning_rate": 0.000552,
+ "loss": 3.3440048694610596,
+ "step": 93
+ },
+ {
+ "epoch": 1.3066202090592334,
+ "grad_norm": 0.10827190428972244,
+ "learning_rate": 0.000558,
+ "loss": 3.3391332626342773,
+ "step": 94
+ },
+ {
+ "epoch": 1.3205574912891986,
+ "grad_norm": 0.1181376576423645,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 3.3493118286132812,
+ "step": 95
+ },
+ {
+ "epoch": 1.3344947735191637,
+ "grad_norm": 0.08178193867206573,
+ "learning_rate": 0.00057,
+ "loss": 3.3445382118225098,
+ "step": 96
+ },
+ {
+ "epoch": 1.348432055749129,
+ "grad_norm": 0.08283700793981552,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 3.3343238830566406,
+ "step": 97
+ },
+ {
+ "epoch": 1.3623693379790942,
+ "grad_norm": 0.11837095767259598,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 3.3336968421936035,
+ "step": 98
+ },
+ {
+ "epoch": 1.3763066202090593,
+ "grad_norm": 0.08230706304311752,
+ "learning_rate": 0.000588,
+ "loss": 3.3294646739959717,
+ "step": 99
+ },
+ {
+ "epoch": 1.3902439024390243,
+ "grad_norm": 0.09961626678705215,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 3.3242952823638916,
+ "step": 100
+ },
+ {
+ "epoch": 1.4041811846689896,
+ "grad_norm": 0.11294732987880707,
+ "learning_rate": 0.0006,
+ "loss": 3.330348491668701,
+ "step": 101
+ },
+ {
+ "epoch": 1.4181184668989548,
+ "grad_norm": 0.11236022412776947,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 3.322606086730957,
+ "step": 102
+ },
+ {
+ "epoch": 1.4320557491289199,
+ "grad_norm": 0.13230572640895844,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 3.3202784061431885,
+ "step": 103
+ },
+ {
+ "epoch": 1.445993031358885,
+ "grad_norm": 0.0783172994852066,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 3.3082056045532227,
+ "step": 104
+ },
+ {
+ "epoch": 1.4599303135888502,
+ "grad_norm": 0.07376513630151749,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 3.3011245727539062,
+ "step": 105
+ },
+ {
+ "epoch": 1.4738675958188154,
+ "grad_norm": 0.11039287596940994,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 3.2987873554229736,
+ "step": 106
+ },
+ {
+ "epoch": 1.4878048780487805,
+ "grad_norm": 0.0667329952120781,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 3.293043851852417,
+ "step": 107
+ },
+ {
+ "epoch": 1.5017421602787455,
+ "grad_norm": 0.0750635489821434,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 3.2865707874298096,
+ "step": 108
+ },
+ {
+ "epoch": 1.5156794425087108,
+ "grad_norm": 0.055155977606773376,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 3.278069496154785,
+ "step": 109
+ },
+ {
+ "epoch": 1.529616724738676,
+ "grad_norm": 0.07016722112894058,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 3.2837281227111816,
+ "step": 110
+ },
+ {
+ "epoch": 1.543554006968641,
+ "grad_norm": 0.09884901344776154,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 3.2782273292541504,
+ "step": 111
+ },
+ {
+ "epoch": 1.5574912891986061,
+ "grad_norm": 0.09402419626712799,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 3.2757701873779297,
+ "step": 112
+ },
+ {
+ "epoch": 1.5714285714285714,
+ "grad_norm": 0.06898307800292969,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 3.2636804580688477,
+ "step": 113
+ },
+ {
+ "epoch": 1.5853658536585367,
+ "grad_norm": 0.08733519911766052,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 3.2676005363464355,
+ "step": 114
+ },
+ {
+ "epoch": 1.5993031358885017,
+ "grad_norm": 0.05769918113946915,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 3.2505807876586914,
+ "step": 115
+ },
+ {
+ "epoch": 1.6132404181184667,
+ "grad_norm": 0.054460495710372925,
+ "learning_rate": 0.000599973080557108,
+ "loss": 3.259110689163208,
+ "step": 116
+ },
+ {
+ "epoch": 1.627177700348432,
+ "grad_norm": 0.055243365466594696,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 3.2438201904296875,
+ "step": 117
+ },
+ {
+ "epoch": 1.6411149825783973,
+ "grad_norm": 0.06122216582298279,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 3.2397255897521973,
+ "step": 118
+ },
+ {
+ "epoch": 1.6550522648083623,
+ "grad_norm": 0.05418086051940918,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 3.236057758331299,
+ "step": 119
+ },
+ {
+ "epoch": 1.6689895470383276,
+ "grad_norm": 0.04995540529489517,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 3.224294662475586,
+ "step": 120
+ },
+ {
+ "epoch": 1.6829268292682928,
+ "grad_norm": 0.057540878653526306,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 3.2251172065734863,
+ "step": 121
+ },
+ {
+ "epoch": 1.6968641114982579,
+ "grad_norm": 0.05698078125715256,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 3.228363513946533,
+ "step": 122
+ },
+ {
+ "epoch": 1.710801393728223,
+ "grad_norm": 0.07352662831544876,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 3.2196407318115234,
+ "step": 123
+ },
+ {
+ "epoch": 1.7247386759581882,
+ "grad_norm": 0.08591686934232712,
+ "learning_rate": 0.000599936710690505,
+ "loss": 3.2231035232543945,
+ "step": 124
+ },
+ {
+ "epoch": 1.7386759581881535,
+ "grad_norm": 0.06970733404159546,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 3.2126383781433105,
+ "step": 125
+ },
+ {
+ "epoch": 1.7526132404181185,
+ "grad_norm": 0.04472116380929947,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 3.216801881790161,
+ "step": 126
+ },
+ {
+ "epoch": 1.7665505226480835,
+ "grad_norm": 0.059133559465408325,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 3.2136807441711426,
+ "step": 127
+ },
+ {
+ "epoch": 1.7804878048780488,
+ "grad_norm": 0.08288449794054031,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 3.210519552230835,
+ "step": 128
+ },
+ {
+ "epoch": 1.794425087108014,
+ "grad_norm": 0.09659463912248611,
+ "learning_rate": 0.00059990620421714,
+ "loss": 3.205916404724121,
+ "step": 129
+ },
+ {
+ "epoch": 1.8083623693379791,
+ "grad_norm": 0.08611937612295151,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 3.206793785095215,
+ "step": 130
+ },
+ {
+ "epoch": 1.8222996515679442,
+ "grad_norm": 0.06448066979646683,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 3.2026424407958984,
+ "step": 131
+ },
+ {
+ "epoch": 1.8362369337979094,
+ "grad_norm": 0.07323113083839417,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 3.1864631175994873,
+ "step": 132
+ },
+ {
+ "epoch": 1.8501742160278747,
+ "grad_norm": 0.0739368200302124,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 3.1875557899475098,
+ "step": 133
+ },
+ {
+ "epoch": 1.8641114982578397,
+ "grad_norm": 0.08289099484682083,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 3.1901979446411133,
+ "step": 134
+ },
+ {
+ "epoch": 1.8780487804878048,
+ "grad_norm": 0.06641175597906113,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 3.1776785850524902,
+ "step": 135
+ },
+ {
+ "epoch": 1.89198606271777,
+ "grad_norm": 0.04873652383685112,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 3.1743667125701904,
+ "step": 136
+ },
+ {
+ "epoch": 1.9059233449477353,
+ "grad_norm": 0.04623038321733475,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 3.1759986877441406,
+ "step": 137
+ },
+ {
+ "epoch": 1.9198606271777003,
+ "grad_norm": 0.059709370136260986,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 3.1702799797058105,
+ "step": 138
+ },
+ {
+ "epoch": 1.9337979094076654,
+ "grad_norm": 0.040581051260232925,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 3.1607465744018555,
+ "step": 139
+ },
+ {
+ "epoch": 1.9477351916376306,
+ "grad_norm": 0.04940655827522278,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 3.1620500087738037,
+ "step": 140
+ },
+ {
+ "epoch": 1.961672473867596,
+ "grad_norm": 0.055740341544151306,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 3.1535825729370117,
+ "step": 141
+ },
+ {
+ "epoch": 1.975609756097561,
+ "grad_norm": 0.06836569309234619,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 3.1512832641601562,
+ "step": 142
+ },
+ {
+ "epoch": 1.989547038327526,
+ "grad_norm": 0.08451569080352783,
+ "learning_rate": 0.000599788973374255,
+ "loss": 3.147432804107666,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.06781627237796783,
+ "learning_rate": 0.000599778806120077,
+ "loss": 2.3624467849731445,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 0.7888243794441223,
+ "eval_runtime": 37.0572,
+ "eval_samples_per_second": 65.898,
+ "eval_steps_per_second": 0.54,
+ "step": 144
+ },
+ {
+ "epoch": 2.013937282229965,
+ "grad_norm": 0.045119598507881165,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 3.139284610748291,
+ "step": 145
+ },
+ {
+ "epoch": 2.0278745644599305,
+ "grad_norm": 0.09132017195224762,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 3.140348434448242,
+ "step": 146
+ },
+ {
+ "epoch": 2.0418118466898956,
+ "grad_norm": 0.07457596063613892,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 3.140091896057129,
+ "step": 147
+ },
+ {
+ "epoch": 2.0557491289198606,
+ "grad_norm": 0.07544369250535965,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 3.1411213874816895,
+ "step": 148
+ },
+ {
+ "epoch": 2.0696864111498257,
+ "grad_norm": 0.046033963561058044,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 3.1405649185180664,
+ "step": 149
+ },
+ {
+ "epoch": 2.083623693379791,
+ "grad_norm": 0.06651527434587479,
+ "learning_rate": 0.000599712781599403,
+ "loss": 3.135124683380127,
+ "step": 150
+ },
+ {
+ "epoch": 2.097560975609756,
+ "grad_norm": 0.07238955795764923,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 3.1302051544189453,
+ "step": 151
+ },
+ {
+ "epoch": 2.1114982578397212,
+ "grad_norm": 0.06696683913469315,
+ "learning_rate": 0.000599688860879549,
+ "loss": 3.128504991531372,
+ "step": 152
+ },
+ {
+ "epoch": 2.1254355400696863,
+ "grad_norm": 0.042010076344013214,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 3.119443893432617,
+ "step": 153
+ },
+ {
+ "epoch": 2.1393728222996518,
+ "grad_norm": 0.053164687007665634,
+ "learning_rate": 0.000599663984012462,
+ "loss": 3.1174211502075195,
+ "step": 154
+ },
+ {
+ "epoch": 2.153310104529617,
+ "grad_norm": 0.047281116247177124,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 3.1211044788360596,
+ "step": 155
+ },
+ {
+ "epoch": 2.167247386759582,
+ "grad_norm": 0.0531938374042511,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 3.1136691570281982,
+ "step": 156
+ },
+ {
+ "epoch": 2.181184668989547,
+ "grad_norm": 0.0702054500579834,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 3.112502336502075,
+ "step": 157
+ },
+ {
+ "epoch": 2.1951219512195124,
+ "grad_norm": 0.07261929661035538,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 3.1049346923828125,
+ "step": 158
+ },
+ {
+ "epoch": 2.2090592334494774,
+ "grad_norm": 0.06666582822799683,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 3.1094369888305664,
+ "step": 159
+ },
+ {
+ "epoch": 2.2229965156794425,
+ "grad_norm": 0.047446250915527344,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 3.105876922607422,
+ "step": 160
+ },
+ {
+ "epoch": 2.2369337979094075,
+ "grad_norm": 0.03833230584859848,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 3.104224681854248,
+ "step": 161
+ },
+ {
+ "epoch": 2.250871080139373,
+ "grad_norm": 0.04562874883413315,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 3.105830192565918,
+ "step": 162
+ },
+ {
+ "epoch": 2.264808362369338,
+ "grad_norm": 0.0635828971862793,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 3.1061713695526123,
+ "step": 163
+ },
+ {
+ "epoch": 2.278745644599303,
+ "grad_norm": 0.09712212532758713,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 3.108053207397461,
+ "step": 164
+ },
+ {
+ "epoch": 2.292682926829268,
+ "grad_norm": 0.15060372650623322,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 3.126777172088623,
+ "step": 165
+ },
+ {
+ "epoch": 2.3066202090592336,
+ "grad_norm": 0.12047530710697174,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 3.116323471069336,
+ "step": 166
+ },
+ {
+ "epoch": 2.3205574912891986,
+ "grad_norm": 0.07486861199140549,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 3.1138410568237305,
+ "step": 167
+ },
+ {
+ "epoch": 2.3344947735191637,
+ "grad_norm": 0.07746157795190811,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 3.1107101440429688,
+ "step": 168
+ },
+ {
+ "epoch": 2.3484320557491287,
+ "grad_norm": 0.0804097130894661,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 3.1073827743530273,
+ "step": 169
+ },
+ {
+ "epoch": 2.362369337979094,
+ "grad_norm": 0.0559227392077446,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 3.102102041244507,
+ "step": 170
+ },
+ {
+ "epoch": 2.3763066202090593,
+ "grad_norm": 0.05415646359324455,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 3.096550464630127,
+ "step": 171
+ },
+ {
+ "epoch": 2.3902439024390243,
+ "grad_norm": 0.0463285967707634,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 3.0833563804626465,
+ "step": 172
+ },
+ {
+ "epoch": 2.40418118466899,
+ "grad_norm": 0.04705670103430748,
+ "learning_rate": 0.000599379982511273,
+ "loss": 3.0935018062591553,
+ "step": 173
+ },
+ {
+ "epoch": 2.418118466898955,
+ "grad_norm": 0.03608846664428711,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 3.085629463195801,
+ "step": 174
+ },
+ {
+ "epoch": 2.43205574912892,
+ "grad_norm": 0.03648562356829643,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 3.086639165878296,
+ "step": 175
+ },
+ {
+ "epoch": 2.445993031358885,
+ "grad_norm": 0.03640111908316612,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 3.088339328765869,
+ "step": 176
+ },
+ {
+ "epoch": 2.45993031358885,
+ "grad_norm": 0.029915692284703255,
+ "learning_rate": 0.000599309205504528,
+ "loss": 3.0802769660949707,
+ "step": 177
+ },
+ {
+ "epoch": 2.4738675958188154,
+ "grad_norm": 0.031756628304719925,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 3.0739364624023438,
+ "step": 178
+ },
+ {
+ "epoch": 2.4878048780487805,
+ "grad_norm": 0.03106086328625679,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 3.07144832611084,
+ "step": 179
+ },
+ {
+ "epoch": 2.5017421602787455,
+ "grad_norm": 0.03892781585454941,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 3.074242353439331,
+ "step": 180
+ },
+ {
+ "epoch": 2.515679442508711,
+ "grad_norm": 0.05611228197813034,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 3.0675928592681885,
+ "step": 181
+ },
+ {
+ "epoch": 2.529616724738676,
+ "grad_norm": 0.03397630900144577,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 3.073423147201538,
+ "step": 182
+ },
+ {
+ "epoch": 2.543554006968641,
+ "grad_norm": 0.04135085269808769,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 3.0808069705963135,
+ "step": 183
+ },
+ {
+ "epoch": 2.557491289198606,
+ "grad_norm": 0.03421049192547798,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 3.0616936683654785,
+ "step": 184
+ },
+ {
+ "epoch": 2.571428571428571,
+ "grad_norm": 0.030827628448605537,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 3.0656299591064453,
+ "step": 185
+ },
+ {
+ "epoch": 2.5853658536585367,
+ "grad_norm": 0.033190369606018066,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 3.0479578971862793,
+ "step": 186
+ },
+ {
+ "epoch": 2.5993031358885017,
+ "grad_norm": 0.026774903759360313,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 3.054133653640747,
+ "step": 187
+ },
+ {
+ "epoch": 2.6132404181184667,
+ "grad_norm": 0.03240266814827919,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 3.0536394119262695,
+ "step": 188
+ },
+ {
+ "epoch": 2.6271777003484322,
+ "grad_norm": 0.04305516183376312,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 3.048996925354004,
+ "step": 189
+ },
+ {
+ "epoch": 2.6411149825783973,
+ "grad_norm": 0.07109381258487701,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 3.0558314323425293,
+ "step": 190
+ },
+ {
+ "epoch": 2.6550522648083623,
+ "grad_norm": 0.11467248201370239,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 3.0587801933288574,
+ "step": 191
+ },
+ {
+ "epoch": 2.6689895470383274,
+ "grad_norm": 0.13839758932590485,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 3.0634102821350098,
+ "step": 192
+ },
+ {
+ "epoch": 2.682926829268293,
+ "grad_norm": 0.09269433468580246,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 3.0586462020874023,
+ "step": 193
+ },
+ {
+ "epoch": 2.696864111498258,
+ "grad_norm": 0.0611812099814415,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 3.054201602935791,
+ "step": 194
+ },
+ {
+ "epoch": 2.710801393728223,
+ "grad_norm": 0.05347125604748726,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 3.054572105407715,
+ "step": 195
+ },
+ {
+ "epoch": 2.7247386759581884,
+ "grad_norm": 0.05996708199381828,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 3.0486035346984863,
+ "step": 196
+ },
+ {
+ "epoch": 2.7386759581881535,
+ "grad_norm": 0.06146618723869324,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 3.0344629287719727,
+ "step": 197
+ },
+ {
+ "epoch": 2.7526132404181185,
+ "grad_norm": 0.04754327982664108,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 3.0211029052734375,
+ "step": 198
+ },
+ {
+ "epoch": 2.7665505226480835,
+ "grad_norm": 0.044388528913259506,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 3.034595012664795,
+ "step": 199
+ },
+ {
+ "epoch": 2.7804878048780486,
+ "grad_norm": 0.04255649819970131,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 3.037287950515747,
+ "step": 200
+ },
+ {
+ "epoch": 2.794425087108014,
+ "grad_norm": 0.043139949440956116,
+ "learning_rate": 0.000598804365316586,
+ "loss": 3.0366177558898926,
+ "step": 201
+ },
+ {
+ "epoch": 2.808362369337979,
+ "grad_norm": 0.03383412957191467,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 3.033888101577759,
+ "step": 202
+ },
+ {
+ "epoch": 2.822299651567944,
+ "grad_norm": 0.03446805849671364,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 3.022144079208374,
+ "step": 203
+ },
+ {
+ "epoch": 2.8362369337979096,
+ "grad_norm": 0.029725519940257072,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 3.0208263397216797,
+ "step": 204
+ },
+ {
+ "epoch": 2.8501742160278747,
+ "grad_norm": 0.030237704515457153,
+ "learning_rate": 0.000598706872384039,
+ "loss": 3.0251193046569824,
+ "step": 205
+ },
+ {
+ "epoch": 2.8641114982578397,
+ "grad_norm": 0.03186488524079323,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 3.0246212482452393,
+ "step": 206
+ },
+ {
+ "epoch": 2.8780487804878048,
+ "grad_norm": 0.02844928577542305,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 3.0075716972351074,
+ "step": 207
+ },
+ {
+ "epoch": 2.89198606271777,
+ "grad_norm": 0.0350780263543129,
+ "learning_rate": 0.000598631251036868,
+ "loss": 3.0121424198150635,
+ "step": 208
+ },
+ {
+ "epoch": 2.9059233449477353,
+ "grad_norm": 0.04267824813723564,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 3.0099010467529297,
+ "step": 209
+ },
+ {
+ "epoch": 2.9198606271777003,
+ "grad_norm": 0.042932625859975815,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 3.0122969150543213,
+ "step": 210
+ },
+ {
+ "epoch": 2.9337979094076654,
+ "grad_norm": 0.04570756480097771,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 3.0111446380615234,
+ "step": 211
+ },
+ {
+ "epoch": 2.947735191637631,
+ "grad_norm": 0.04473821446299553,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 2.9976413249969482,
+ "step": 212
+ },
+ {
+ "epoch": 2.961672473867596,
+ "grad_norm": 0.040896713733673096,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 2.9942758083343506,
+ "step": 213
+ },
+ {
+ "epoch": 2.975609756097561,
+ "grad_norm": 0.04459039121866226,
+ "learning_rate": 0.000598473577921366,
+ "loss": 2.998690128326416,
+ "step": 214
+ },
+ {
+ "epoch": 2.989547038327526,
+ "grad_norm": 0.039927951991558075,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 2.988520383834839,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.030261589214205742,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 2.2433667182922363,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 0.7514154314994812,
+ "eval_runtime": 37.2184,
+ "eval_samples_per_second": 65.613,
+ "eval_steps_per_second": 0.537,
+ "step": 216
+ },
+ {
+ "epoch": 3.013937282229965,
+ "grad_norm": 0.03271438181400299,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 2.983100652694702,
+ "step": 217
+ },
+ {
+ "epoch": 3.0278745644599305,
+ "grad_norm": 0.045161835849285126,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 2.9824085235595703,
+ "step": 218
+ },
+ {
+ "epoch": 3.0418118466898956,
+ "grad_norm": 0.041259463876485825,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 2.980112075805664,
+ "step": 219
+ },
+ {
+ "epoch": 3.0557491289198606,
+ "grad_norm": 0.04854132980108261,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 2.9802699089050293,
+ "step": 220
+ },
+ {
+ "epoch": 3.0696864111498257,
+ "grad_norm": 0.06712493300437927,
+ "learning_rate": 0.000598278794687186,
+ "loss": 2.963736057281494,
+ "step": 221
+ },
+ {
+ "epoch": 3.083623693379791,
+ "grad_norm": 0.07551158964633942,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 2.9780850410461426,
+ "step": 222
+ },
+ {
+ "epoch": 3.097560975609756,
+ "grad_norm": 0.1004587933421135,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 2.982564926147461,
+ "step": 223
+ },
+ {
+ "epoch": 3.1114982578397212,
+ "grad_norm": 0.12604698538780212,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 2.994123697280884,
+ "step": 224
+ },
+ {
+ "epoch": 3.1254355400696863,
+ "grad_norm": 0.13300281763076782,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 3.0030934810638428,
+ "step": 225
+ },
+ {
+ "epoch": 3.1393728222996518,
+ "grad_norm": 0.09192433208227158,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 2.99415922164917,
+ "step": 226
+ },
+ {
+ "epoch": 3.153310104529617,
+ "grad_norm": 0.07332997024059296,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 2.9832448959350586,
+ "step": 227
+ },
+ {
+ "epoch": 3.167247386759582,
+ "grad_norm": 0.05673393979668617,
+ "learning_rate": 0.00059807235435179,
+ "loss": 2.9781603813171387,
+ "step": 228
+ },
+ {
+ "epoch": 3.181184668989547,
+ "grad_norm": 0.05591209977865219,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 2.9844987392425537,
+ "step": 229
+ },
+ {
+ "epoch": 3.1951219512195124,
+ "grad_norm": 0.04706789553165436,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 2.9794564247131348,
+ "step": 230
+ },
+ {
+ "epoch": 3.2090592334494774,
+ "grad_norm": 0.04533008486032486,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 2.963930606842041,
+ "step": 231
+ },
+ {
+ "epoch": 3.2229965156794425,
+ "grad_norm": 0.0363367535173893,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 2.9743711948394775,
+ "step": 232
+ },
+ {
+ "epoch": 3.2369337979094075,
+ "grad_norm": 0.035832252353429794,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 2.9637725353240967,
+ "step": 233
+ },
+ {
+ "epoch": 3.250871080139373,
+ "grad_norm": 0.03634851798415184,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 2.971634864807129,
+ "step": 234
+ },
+ {
+ "epoch": 3.264808362369338,
+ "grad_norm": 0.036877233535051346,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 2.960113286972046,
+ "step": 235
+ },
+ {
+ "epoch": 3.278745644599303,
+ "grad_norm": 0.02930021658539772,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 2.948853015899658,
+ "step": 236
+ },
+ {
+ "epoch": 3.292682926829268,
+ "grad_norm": 0.029241658747196198,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 2.957648277282715,
+ "step": 237
+ },
+ {
+ "epoch": 3.3066202090592336,
+ "grad_norm": 0.029683494940400124,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 2.9501960277557373,
+ "step": 238
+ },
+ {
+ "epoch": 3.3205574912891986,
+ "grad_norm": 0.028418797999620438,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 2.9593586921691895,
+ "step": 239
+ },
+ {
+ "epoch": 3.3344947735191637,
+ "grad_norm": 0.029084153473377228,
+ "learning_rate": 0.000597691359743243,
+ "loss": 2.957581043243408,
+ "step": 240
+ },
+ {
+ "epoch": 3.3484320557491287,
+ "grad_norm": 0.03031332418322563,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 2.9465126991271973,
+ "step": 241
+ },
+ {
+ "epoch": 3.362369337979094,
+ "grad_norm": 0.028176147490739822,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 2.9427034854888916,
+ "step": 242
+ },
+ {
+ "epoch": 3.3763066202090593,
+ "grad_norm": 0.025935526937246323,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 2.933248996734619,
+ "step": 243
+ },
+ {
+ "epoch": 3.3902439024390243,
+ "grad_norm": 0.026524877175688744,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 2.9334826469421387,
+ "step": 244
+ },
+ {
+ "epoch": 3.40418118466899,
+ "grad_norm": 0.026807013899087906,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 2.9502480030059814,
+ "step": 245
+ },
+ {
+ "epoch": 3.418118466898955,
+ "grad_norm": 0.026440076529979706,
+ "learning_rate": 0.000597488038559129,
+ "loss": 2.9336085319519043,
+ "step": 246
+ },
+ {
+ "epoch": 3.43205574912892,
+ "grad_norm": 0.02752632275223732,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 2.937425374984741,
+ "step": 247
+ },
+ {
+ "epoch": 3.445993031358885,
+ "grad_norm": 0.027490021660923958,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 2.9357755184173584,
+ "step": 248
+ },
+ {
+ "epoch": 3.45993031358885,
+ "grad_norm": 0.03389354050159454,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 2.934713363647461,
+ "step": 249
+ },
+ {
+ "epoch": 3.4738675958188154,
+ "grad_norm": 0.042289797216653824,
+ "learning_rate": 0.000597347745466109,
+ "loss": 2.9363629817962646,
+ "step": 250
+ },
+ {
+ "epoch": 3.4878048780487805,
+ "grad_norm": 0.07276978343725204,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 2.946735382080078,
+ "step": 251
+ },
+ {
+ "epoch": 3.5017421602787455,
+ "grad_norm": 0.09471797943115234,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 2.9240806102752686,
+ "step": 252
+ },
+ {
+ "epoch": 3.515679442508711,
+ "grad_norm": 0.09386000782251358,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 2.9194839000701904,
+ "step": 253
+ },
+ {
+ "epoch": 3.529616724738676,
+ "grad_norm": 0.1176624521613121,
+ "learning_rate": 0.000597203657966319,
+ "loss": 2.9324824810028076,
+ "step": 254
+ },
+ {
+ "epoch": 3.543554006968641,
+ "grad_norm": 0.0723927766084671,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 2.932208776473999,
+ "step": 255
+ },
+ {
+ "epoch": 3.557491289198606,
+ "grad_norm": 0.06314370036125183,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 2.936681032180786,
+ "step": 256
+ },
+ {
+ "epoch": 3.571428571428571,
+ "grad_norm": 0.06432153284549713,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 2.924858331680298,
+ "step": 257
+ },
+ {
+ "epoch": 3.5853658536585367,
+ "grad_norm": 0.07495246082544327,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 2.918736696243286,
+ "step": 258
+ },
+ {
+ "epoch": 3.5993031358885017,
+ "grad_norm": 0.058007508516311646,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 2.92120361328125,
+ "step": 259
+ },
+ {
+ "epoch": 3.6132404181184667,
+ "grad_norm": 0.047224972397089005,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 2.9181740283966064,
+ "step": 260
+ },
+ {
+ "epoch": 3.6271777003484322,
+ "grad_norm": 0.04775157943367958,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 2.9145660400390625,
+ "step": 261
+ },
+ {
+ "epoch": 3.6411149825783973,
+ "grad_norm": 0.05087953805923462,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 2.9094574451446533,
+ "step": 262
+ },
+ {
+ "epoch": 3.6550522648083623,
+ "grad_norm": 0.047325216233730316,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 2.9127790927886963,
+ "step": 263
+ },
+ {
+ "epoch": 3.6689895470383274,
+ "grad_norm": 0.04005662724375725,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 2.9124414920806885,
+ "step": 264
+ },
+ {
+ "epoch": 3.682926829268293,
+ "grad_norm": 0.03284832462668419,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 2.897369861602783,
+ "step": 265
+ },
+ {
+ "epoch": 3.696864111498258,
+ "grad_norm": 0.03538643941283226,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 2.8912787437438965,
+ "step": 266
+ },
+ {
+ "epoch": 3.710801393728223,
+ "grad_norm": 0.0338534340262413,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 2.904737949371338,
+ "step": 267
+ },
+ {
+ "epoch": 3.7247386759581884,
+ "grad_norm": 0.03059707209467888,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 2.910109519958496,
+ "step": 268
+ },
+ {
+ "epoch": 3.7386759581881535,
+ "grad_norm": 0.027421824634075165,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 2.8953540325164795,
+ "step": 269
+ },
+ {
+ "epoch": 3.7526132404181185,
+ "grad_norm": 0.031095022335648537,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 2.8983192443847656,
+ "step": 270
+ },
+ {
+ "epoch": 3.7665505226480835,
+ "grad_norm": 0.03075260855257511,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 2.9002010822296143,
+ "step": 271
+ },
+ {
+ "epoch": 3.7804878048780486,
+ "grad_norm": 0.030917232856154442,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 2.8886561393737793,
+ "step": 272
+ },
+ {
+ "epoch": 3.794425087108014,
+ "grad_norm": 0.03267431631684303,
+ "learning_rate": 0.000596467483454833,
+ "loss": 2.8845345973968506,
+ "step": 273
+ },
+ {
+ "epoch": 3.808362369337979,
+ "grad_norm": 0.034112598747015,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 2.8842294216156006,
+ "step": 274
+ },
+ {
+ "epoch": 3.822299651567944,
+ "grad_norm": 0.038153596222400665,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 2.866973400115967,
+ "step": 275
+ },
+ {
+ "epoch": 3.8362369337979096,
+ "grad_norm": 0.033103615045547485,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 2.8709988594055176,
+ "step": 276
+ },
+ {
+ "epoch": 3.8501742160278747,
+ "grad_norm": 0.030708827078342438,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 2.8715577125549316,
+ "step": 277
+ },
+ {
+ "epoch": 3.8641114982578397,
+ "grad_norm": 0.03427499905228615,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 2.8766040802001953,
+ "step": 278
+ },
+ {
+ "epoch": 3.8780487804878048,
+ "grad_norm": 0.042216721922159195,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 2.8672261238098145,
+ "step": 279
+ },
+ {
+ "epoch": 3.89198606271777,
+ "grad_norm": 0.034656424075365067,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 2.860102653503418,
+ "step": 280
+ },
+ {
+ "epoch": 3.9059233449477353,
+ "grad_norm": 0.03288520127534866,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 2.8540444374084473,
+ "step": 281
+ },
+ {
+ "epoch": 3.9198606271777003,
+ "grad_norm": 0.041709382086992264,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 2.872581958770752,
+ "step": 282
+ },
+ {
+ "epoch": 3.9337979094076654,
+ "grad_norm": 0.04955075681209564,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 2.874307632446289,
+ "step": 283
+ },
+ {
+ "epoch": 3.947735191637631,
+ "grad_norm": 0.05372118577361107,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 2.861191749572754,
+ "step": 284
+ },
+ {
+ "epoch": 3.961672473867596,
+ "grad_norm": 0.05855486914515495,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 2.8542709350585938,
+ "step": 285
+ },
+ {
+ "epoch": 3.975609756097561,
+ "grad_norm": 0.05442376434803009,
+ "learning_rate": 0.000595914592474791,
+ "loss": 2.858576536178589,
+ "step": 286
+ },
+ {
+ "epoch": 3.989547038327526,
+ "grad_norm": 0.06468870490789413,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 2.8510026931762695,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.038657791912555695,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 2.1422531604766846,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 0.7195093631744385,
+ "eval_runtime": 39.1927,
+ "eval_samples_per_second": 62.308,
+ "eval_steps_per_second": 0.51,
+ "step": 288
+ },
+ {
+ "epoch": 4.013937282229965,
+ "grad_norm": 0.041369788348674774,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 2.8407950401306152,
+ "step": 289
+ },
+ {
+ "epoch": 4.02787456445993,
+ "grad_norm": 0.045097772032022476,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 2.8446922302246094,
+ "step": 290
+ },
+ {
+ "epoch": 4.041811846689895,
+ "grad_norm": 0.05102979391813278,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 2.8316476345062256,
+ "step": 291
+ },
+ {
+ "epoch": 4.055749128919861,
+ "grad_norm": 0.05429252237081528,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 2.8510334491729736,
+ "step": 292
+ },
+ {
+ "epoch": 4.069686411149826,
+ "grad_norm": 0.0761060118675232,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 2.8289966583251953,
+ "step": 293
+ },
+ {
+ "epoch": 4.083623693379791,
+ "grad_norm": 0.09525997191667557,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 2.843992233276367,
+ "step": 294
+ },
+ {
+ "epoch": 4.097560975609756,
+ "grad_norm": 0.09715712070465088,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 2.8543810844421387,
+ "step": 295
+ },
+ {
+ "epoch": 4.111498257839721,
+ "grad_norm": 0.0634903833270073,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 2.8456456661224365,
+ "step": 296
+ },
+ {
+ "epoch": 4.125435540069686,
+ "grad_norm": 0.05771167576313019,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 2.8387022018432617,
+ "step": 297
+ },
+ {
+ "epoch": 4.139372822299651,
+ "grad_norm": 0.05440817028284073,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 2.841508388519287,
+ "step": 298
+ },
+ {
+ "epoch": 4.153310104529616,
+ "grad_norm": 0.0550493523478508,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 2.833531618118286,
+ "step": 299
+ },
+ {
+ "epoch": 4.167247386759582,
+ "grad_norm": 0.04252418503165245,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 2.8254685401916504,
+ "step": 300
+ },
+ {
+ "epoch": 4.181184668989547,
+ "grad_norm": 0.042833492159843445,
+ "learning_rate": 0.000595227087813793,
+ "loss": 2.8289575576782227,
+ "step": 301
+ },
+ {
+ "epoch": 4.195121951219512,
+ "grad_norm": 0.038360171020030975,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 2.836550712585449,
+ "step": 302
+ },
+ {
+ "epoch": 4.209059233449477,
+ "grad_norm": 0.03655572608113289,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 2.8222808837890625,
+ "step": 303
+ },
+ {
+ "epoch": 4.2229965156794425,
+ "grad_norm": 0.03215418756008148,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 2.818066120147705,
+ "step": 304
+ },
+ {
+ "epoch": 4.2369337979094075,
+ "grad_norm": 0.031601350754499435,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 2.809666395187378,
+ "step": 305
+ },
+ {
+ "epoch": 4.2508710801393725,
+ "grad_norm": 0.03221198916435242,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 2.8137047290802,
+ "step": 306
+ },
+ {
+ "epoch": 4.264808362369338,
+ "grad_norm": 0.03107992745935917,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 2.822840690612793,
+ "step": 307
+ },
+ {
+ "epoch": 4.2787456445993035,
+ "grad_norm": 0.032328397035598755,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 2.8012430667877197,
+ "step": 308
+ },
+ {
+ "epoch": 4.2926829268292686,
+ "grad_norm": 0.029429661110043526,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 2.806474447250366,
+ "step": 309
+ },
+ {
+ "epoch": 4.306620209059234,
+ "grad_norm": 0.03430404141545296,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 2.7917184829711914,
+ "step": 310
+ },
+ {
+ "epoch": 4.320557491289199,
+ "grad_norm": 0.03543714061379433,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 2.798417091369629,
+ "step": 311
+ },
+ {
+ "epoch": 4.334494773519164,
+ "grad_norm": 0.04099712520837784,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 2.793095588684082,
+ "step": 312
+ },
+ {
+ "epoch": 4.348432055749129,
+ "grad_norm": 0.046607524156570435,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 2.807809829711914,
+ "step": 313
+ },
+ {
+ "epoch": 4.362369337979094,
+ "grad_norm": 0.048917099833488464,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 2.8017094135284424,
+ "step": 314
+ },
+ {
+ "epoch": 4.376306620209059,
+ "grad_norm": 0.05221967399120331,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 2.7990846633911133,
+ "step": 315
+ },
+ {
+ "epoch": 4.390243902439025,
+ "grad_norm": 0.05263383314013481,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 2.810983657836914,
+ "step": 316
+ },
+ {
+ "epoch": 4.40418118466899,
+ "grad_norm": 0.04930173233151436,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 2.7989790439605713,
+ "step": 317
+ },
+ {
+ "epoch": 4.418118466898955,
+ "grad_norm": 0.05484982952475548,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 2.7852704524993896,
+ "step": 318
+ },
+ {
+ "epoch": 4.43205574912892,
+ "grad_norm": 0.04991631582379341,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 2.7944440841674805,
+ "step": 319
+ },
+ {
+ "epoch": 4.445993031358885,
+ "grad_norm": 0.034856196492910385,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 2.7851901054382324,
+ "step": 320
+ },
+ {
+ "epoch": 4.45993031358885,
+ "grad_norm": 0.038153354078531265,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 2.777986526489258,
+ "step": 321
+ },
+ {
+ "epoch": 4.473867595818815,
+ "grad_norm": 0.04138852655887604,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 2.7781941890716553,
+ "step": 322
+ },
+ {
+ "epoch": 4.487804878048781,
+ "grad_norm": 0.04018627852201462,
+ "learning_rate": 0.00059412296156686,
+ "loss": 2.7934627532958984,
+ "step": 323
+ },
+ {
+ "epoch": 4.501742160278746,
+ "grad_norm": 0.03592175245285034,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 2.780992031097412,
+ "step": 324
+ },
+ {
+ "epoch": 4.515679442508711,
+ "grad_norm": 0.034620169550180435,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 2.7754831314086914,
+ "step": 325
+ },
+ {
+ "epoch": 4.529616724738676,
+ "grad_norm": 0.03244427964091301,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 2.7737035751342773,
+ "step": 326
+ },
+ {
+ "epoch": 4.543554006968641,
+ "grad_norm": 0.0361688956618309,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 2.7515547275543213,
+ "step": 327
+ },
+ {
+ "epoch": 4.557491289198606,
+ "grad_norm": 0.03722141310572624,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 2.769011974334717,
+ "step": 328
+ },
+ {
+ "epoch": 4.571428571428571,
+ "grad_norm": 0.0431540347635746,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 2.7755231857299805,
+ "step": 329
+ },
+ {
+ "epoch": 4.585365853658536,
+ "grad_norm": 0.04175153374671936,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 2.767477512359619,
+ "step": 330
+ },
+ {
+ "epoch": 4.599303135888501,
+ "grad_norm": 0.04184363782405853,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 2.775984048843384,
+ "step": 331
+ },
+ {
+ "epoch": 4.613240418118467,
+ "grad_norm": 0.04054928943514824,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 2.7669193744659424,
+ "step": 332
+ },
+ {
+ "epoch": 4.627177700348432,
+ "grad_norm": 0.039442483335733414,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 2.7557153701782227,
+ "step": 333
+ },
+ {
+ "epoch": 4.641114982578397,
+ "grad_norm": 0.04334413632750511,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 2.76118803024292,
+ "step": 334
+ },
+ {
+ "epoch": 4.655052264808362,
+ "grad_norm": 0.04821610450744629,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 2.755122184753418,
+ "step": 335
+ },
+ {
+ "epoch": 4.668989547038327,
+ "grad_norm": 0.05259500443935394,
+ "learning_rate": 0.000593417134927994,
+ "loss": 2.763730764389038,
+ "step": 336
+ },
+ {
+ "epoch": 4.682926829268292,
+ "grad_norm": 0.05462924763560295,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 2.7538461685180664,
+ "step": 337
+ },
+ {
+ "epoch": 4.696864111498257,
+ "grad_norm": 0.0755213275551796,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 2.7565760612487793,
+ "step": 338
+ },
+ {
+ "epoch": 4.710801393728223,
+ "grad_norm": 0.09036742150783539,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 2.7742908000946045,
+ "step": 339
+ },
+ {
+ "epoch": 4.724738675958188,
+ "grad_norm": 0.07687609642744064,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 2.7776336669921875,
+ "step": 340
+ },
+ {
+ "epoch": 4.7386759581881535,
+ "grad_norm": 0.06167550012469292,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 2.7571194171905518,
+ "step": 341
+ },
+ {
+ "epoch": 4.7526132404181185,
+ "grad_norm": 0.05498389154672623,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 2.766094207763672,
+ "step": 342
+ },
+ {
+ "epoch": 4.7665505226480835,
+ "grad_norm": 0.056576769798994064,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 2.759814977645874,
+ "step": 343
+ },
+ {
+ "epoch": 4.780487804878049,
+ "grad_norm": 0.05287479609251022,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 2.7653424739837646,
+ "step": 344
+ },
+ {
+ "epoch": 4.794425087108014,
+ "grad_norm": 0.05006227642297745,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 2.746647357940674,
+ "step": 345
+ },
+ {
+ "epoch": 4.80836236933798,
+ "grad_norm": 0.0428367517888546,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 2.748798131942749,
+ "step": 346
+ },
+ {
+ "epoch": 4.822299651567945,
+ "grad_norm": 0.04800762981176376,
+ "learning_rate": 0.000592789007481325,
+ "loss": 2.7554736137390137,
+ "step": 347
+ },
+ {
+ "epoch": 4.83623693379791,
+ "grad_norm": 0.04984979331493378,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 2.738473415374756,
+ "step": 348
+ },
+ {
+ "epoch": 4.850174216027875,
+ "grad_norm": 0.0404483824968338,
+ "learning_rate": 0.000592671765466188,
+ "loss": 2.7486448287963867,
+ "step": 349
+ },
+ {
+ "epoch": 4.86411149825784,
+ "grad_norm": 0.03785628825426102,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 2.7317609786987305,
+ "step": 350
+ },
+ {
+ "epoch": 4.878048780487805,
+ "grad_norm": 0.04446744546294212,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 2.750211238861084,
+ "step": 351
+ },
+ {
+ "epoch": 4.89198606271777,
+ "grad_norm": 0.0561913438141346,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 2.7429988384246826,
+ "step": 352
+ },
+ {
+ "epoch": 4.905923344947735,
+ "grad_norm": 0.06165647506713867,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 2.7389450073242188,
+ "step": 353
+ },
+ {
+ "epoch": 4.9198606271777,
+ "grad_norm": 0.04764621704816818,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 2.73350191116333,
+ "step": 354
+ },
+ {
+ "epoch": 4.933797909407666,
+ "grad_norm": 0.044994648545980453,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 2.7248117923736572,
+ "step": 355
+ },
+ {
+ "epoch": 4.947735191637631,
+ "grad_norm": 0.044408753514289856,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 2.7337656021118164,
+ "step": 356
+ },
+ {
+ "epoch": 4.961672473867596,
+ "grad_norm": 0.04064524918794632,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 2.732268810272217,
+ "step": 357
+ },
+ {
+ "epoch": 4.975609756097561,
+ "grad_norm": 0.036805033683776855,
+ "learning_rate": 0.000592132629452205,
+ "loss": 2.7253570556640625,
+ "step": 358
+ },
+ {
+ "epoch": 4.989547038327526,
+ "grad_norm": 0.03321084752678871,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 2.713101863861084,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.027469763532280922,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 2.0416059494018555,
+ "step": 360
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 3600,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 50,
+ "save_steps": 500,
+ "stateful_callbacks": {
+ "TrainerControl": {
+ "args": {
+ "should_epoch_stop": false,
+ "should_evaluate": true,
+ "should_log": false,
+ "should_save": false,
+ "should_training_stop": false
+ },
+ "attributes": {}
+ }
+ },
+ "total_flos": 1.5388280082137088e+17,
+ "train_batch_size": 64,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/base-ssl/checkpoint-360/training_args.bin b/runs/base-ssl/checkpoint-360/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..cbb50e43950730a04421678098579c835c9d518d
--- /dev/null
+++ b/runs/base-ssl/checkpoint-360/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7572b8029663dc4d810f9d514c80dc9b976de220cbe72e5abd832ec6ec2ef18b
+size 5265
diff --git a/runs/base-ssl/checkpoint-3600/chat_template.jinja b/runs/base-ssl/checkpoint-3600/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/base-ssl/checkpoint-3600/chat_template.jinja
@@ -0,0 +1,85 @@
+{%- if tools %}
+ {{- '<|im_start|>system\n' }}
+ {%- if messages[0].role == 'system' %}
+ {{- messages[0].content + '\n\n' }}
+ {%- endif %}
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }}
+ {%- for tool in tools %}
+ {{- "\n" }}
+ {{- tool | tojson }}
+ {%- endfor %}
+ {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }}
+{%- else %}
+ {%- if messages[0].role == 'system' %}
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
+ {%- endif %}
+{%- endif %}
+{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
+{%- for message in messages[::-1] %}
+ {%- set index = (messages|length - 1) - loop.index0 %}
+ {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %}
+ {%- set ns.multi_step_tool = false %}
+ {%- set ns.last_query_index = index %}
+ {%- endif %}
+{%- endfor %}
+{%- for message in messages %}
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
+ {%- elif message.role == "assistant" %}
+ {%- set content = message.content %}
+ {%- set reasoning_content = '' %}
+ {%- if message.reasoning_content is defined and message.reasoning_content is not none %}
+ {%- set reasoning_content = message.reasoning_content %}
+ {%- else %}
+ {%- if '' in message.content %}
+ {%- set content = message.content.split('')[-1].lstrip('\n') %}
+ {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %}
+ {%- endif %}
+ {%- endif %}
+ {%- if loop.index0 > ns.last_query_index %}
+ {%- if loop.last or (not loop.last and reasoning_content) %}
+ {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- if message.tool_calls %}
+ {%- for tool_call in message.tool_calls %}
+ {%- if (loop.first and content) or (not loop.first) %}
+ {{- '\n' }}
+ {%- endif %}
+ {%- if tool_call.function %}
+ {%- set tool_call = tool_call.function %}
+ {%- endif %}
+ {{- '\n{"name": "' }}
+ {{- tool_call.name }}
+ {{- '", "arguments": ' }}
+ {%- if tool_call.arguments is string %}
+ {{- tool_call.arguments }}
+ {%- else %}
+ {{- tool_call.arguments | tojson }}
+ {%- endif %}
+ {{- '}\n' }}
+ {%- endfor %}
+ {%- endif %}
+ {{- '<|im_end|>\n' }}
+ {%- elif message.role == "tool" %}
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
+ {{- '<|im_start|>user' }}
+ {%- endif %}
+ {{- '\n\n' }}
+ {{- message.content }}
+ {{- '\n' }}
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
+ {{- '<|im_end|>\n' }}
+ {%- endif %}
+ {%- endif %}
+{%- endfor %}
+{%- if add_generation_prompt %}
+ {{- '<|im_start|>assistant\n' }}
+ {%- if enable_thinking is defined and enable_thinking is false %}
+ {{- '\n\n\n\n' }}
+ {%- endif %}
+{%- endif %}
\ No newline at end of file
diff --git a/runs/base-ssl/checkpoint-3600/config.json b/runs/base-ssl/checkpoint-3600/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/base-ssl/checkpoint-3600/config.json
@@ -0,0 +1,32 @@
+{
+ "architectures": [
+ "LlamaForCausalLM"
+ ],
+ "attention_bias": false,
+ "attention_dropout": 0.0,
+ "bos_token_id": null,
+ "dtype": "float32",
+ "eos_token_id": 151645,
+ "head_dim": 128,
+ "hidden_act": "silu",
+ "hidden_size": 512,
+ "initializer_range": 0.02,
+ "intermediate_size": 1536,
+ "max_position_embeddings": 2048,
+ "mlp_bias": false,
+ "model_type": "llama",
+ "num_attention_heads": 4,
+ "num_hidden_layers": 20,
+ "num_key_value_heads": 4,
+ "pad_token_id": 151645,
+ "pretraining_tp": 1,
+ "rms_norm_eps": 1e-06,
+ "rope_parameters": {
+ "rope_theta": 10000.0,
+ "rope_type": "default"
+ },
+ "tie_word_embeddings": true,
+ "transformers_version": "5.5.0",
+ "use_cache": false,
+ "vocab_size": 151671
+}
diff --git a/runs/base-ssl/checkpoint-3600/generation_config.json b/runs/base-ssl/checkpoint-3600/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/base-ssl/checkpoint-3600/generation_config.json
@@ -0,0 +1,11 @@
+{
+ "_from_model_config": true,
+ "eos_token_id": [
+ 151645
+ ],
+ "output_attentions": false,
+ "output_hidden_states": false,
+ "pad_token_id": 151645,
+ "transformers_version": "5.5.0",
+ "use_cache": true
+}
diff --git a/runs/base-ssl/checkpoint-3600/model.safetensors b/runs/base-ssl/checkpoint-3600/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..3790199feca3a6ed599a5b27c03a1c07f29f5951
--- /dev/null
+++ b/runs/base-ssl/checkpoint-3600/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:bb3e42b4f5813e229fdde24ae7fcac5aa475ca581459d1514eb7addbaf86c5e9
+size 583356232
diff --git a/runs/base-ssl/checkpoint-3600/optimizer.pt b/runs/base-ssl/checkpoint-3600/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..e0ee538be7650554813a67af84c40a5e5dc3693b
--- /dev/null
+++ b/runs/base-ssl/checkpoint-3600/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:bdc10493fa2a1312d5d4eac165d8e89d1f0876f6a612c1fc679a24756b0646be
+size 1166825803
diff --git a/runs/base-ssl/checkpoint-3600/rng_state_0.pth b/runs/base-ssl/checkpoint-3600/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..42e5fb760a4884c24f3899e0e2c34f9ab7d35d5e
--- /dev/null
+++ b/runs/base-ssl/checkpoint-3600/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b9abac844de24b211d8b88d44e1866f089edee417850520a358afe34f866a821
+size 14917
diff --git a/runs/base-ssl/checkpoint-3600/rng_state_1.pth b/runs/base-ssl/checkpoint-3600/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..d6f10c7be65a25152763463abf33eb700d784288
--- /dev/null
+++ b/runs/base-ssl/checkpoint-3600/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:68ba205d24a50bf8cdf4686014dfa7b5557eb04aefa63431dced1c3d75cbacab
+size 14917
diff --git a/runs/base-ssl/checkpoint-3600/scheduler.pt b/runs/base-ssl/checkpoint-3600/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..982d7b397b075cae944d790620cb0dfad6289952
--- /dev/null
+++ b/runs/base-ssl/checkpoint-3600/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:fcae2666f52aa083cc9b774f768ba87d551f0234d3e7800a3f2040f0f5905852
+size 1465
diff --git a/runs/base-ssl/checkpoint-3600/tokenizer.json b/runs/base-ssl/checkpoint-3600/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/base-ssl/checkpoint-3600/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:59b6776030505d5b441d0727cce137047df748ab15db6ba3a1bac93c123742fb
+size 11424079
diff --git a/runs/base-ssl/checkpoint-3600/tokenizer_config.json b/runs/base-ssl/checkpoint-3600/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/base-ssl/checkpoint-3600/tokenizer_config.json
@@ -0,0 +1,18 @@
+{
+ "add_prefix_space": false,
+ "backend": "tokenizers",
+ "bos_token": null,
+ "clean_up_tokenization_spaces": false,
+ "eos_token": "<|im_end|>",
+ "errors": "replace",
+ "extra_special_tokens": [
+ "<|l2r_pred|>",
+ "<|r2l_pred|>"
+ ],
+ "is_local": false,
+ "model_max_length": 131072,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/base-ssl/checkpoint-3600/trainer_state.json b/runs/base-ssl/checkpoint-3600/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..5924ef5eea1da3d356d2234467781ff6e1dae209
--- /dev/null
+++ b/runs/base-ssl/checkpoint-3600/trainer_state.json
@@ -0,0 +1,25626 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 50.0,
+ "eval_steps": 500,
+ "global_step": 3600,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013937282229965157,
+ "grad_norm": 0.2712002694606781,
+ "learning_rate": 0.0,
+ "loss": 4.000947952270508,
+ "step": 1
+ },
+ {
+ "epoch": 0.027874564459930314,
+ "grad_norm": 0.2709888219833374,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 4.000800132751465,
+ "step": 2
+ },
+ {
+ "epoch": 0.041811846689895474,
+ "grad_norm": 0.2721220850944519,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 3.982931613922119,
+ "step": 3
+ },
+ {
+ "epoch": 0.05574912891986063,
+ "grad_norm": 0.24822379648685455,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 3.948713779449463,
+ "step": 4
+ },
+ {
+ "epoch": 0.06968641114982578,
+ "grad_norm": 0.2103811800479889,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 3.908690929412842,
+ "step": 5
+ },
+ {
+ "epoch": 0.08362369337979095,
+ "grad_norm": 0.18375654518604279,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 3.8660929203033447,
+ "step": 6
+ },
+ {
+ "epoch": 0.0975609756097561,
+ "grad_norm": 0.1471690535545349,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 3.82308030128479,
+ "step": 7
+ },
+ {
+ "epoch": 0.11149825783972125,
+ "grad_norm": 0.11132320016622543,
+ "learning_rate": 4.2e-05,
+ "loss": 3.790834426879883,
+ "step": 8
+ },
+ {
+ "epoch": 0.1254355400696864,
+ "grad_norm": 0.08796700090169907,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 3.7589545249938965,
+ "step": 9
+ },
+ {
+ "epoch": 0.13937282229965156,
+ "grad_norm": 0.07089080661535263,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 3.7346723079681396,
+ "step": 10
+ },
+ {
+ "epoch": 0.15331010452961671,
+ "grad_norm": 0.056723613291978836,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 3.7159838676452637,
+ "step": 11
+ },
+ {
+ "epoch": 0.1672473867595819,
+ "grad_norm": 0.04544799029827118,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 3.701421022415161,
+ "step": 12
+ },
+ {
+ "epoch": 0.18118466898954705,
+ "grad_norm": 0.03551485016942024,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 3.691774845123291,
+ "step": 13
+ },
+ {
+ "epoch": 0.1951219512195122,
+ "grad_norm": 0.028209710493683815,
+ "learning_rate": 7.8e-05,
+ "loss": 3.6860086917877197,
+ "step": 14
+ },
+ {
+ "epoch": 0.20905923344947736,
+ "grad_norm": 0.024290181696414948,
+ "learning_rate": 8.4e-05,
+ "loss": 3.6806883811950684,
+ "step": 15
+ },
+ {
+ "epoch": 0.2229965156794425,
+ "grad_norm": 0.022015230730175972,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 3.677751064300537,
+ "step": 16
+ },
+ {
+ "epoch": 0.23693379790940766,
+ "grad_norm": 0.01960836350917816,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 3.6738266944885254,
+ "step": 17
+ },
+ {
+ "epoch": 0.2508710801393728,
+ "grad_norm": 0.017675744369626045,
+ "learning_rate": 0.000102,
+ "loss": 3.6739063262939453,
+ "step": 18
+ },
+ {
+ "epoch": 0.26480836236933797,
+ "grad_norm": 0.01539881993085146,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 3.671247720718384,
+ "step": 19
+ },
+ {
+ "epoch": 0.2787456445993031,
+ "grad_norm": 0.013906505890190601,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 3.66833233833313,
+ "step": 20
+ },
+ {
+ "epoch": 0.2926829268292683,
+ "grad_norm": 0.01149708591401577,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 3.6706337928771973,
+ "step": 21
+ },
+ {
+ "epoch": 0.30662020905923343,
+ "grad_norm": 0.010512279346585274,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 3.667168140411377,
+ "step": 22
+ },
+ {
+ "epoch": 0.3205574912891986,
+ "grad_norm": 0.00897525716573,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 3.6630516052246094,
+ "step": 23
+ },
+ {
+ "epoch": 0.3344947735191638,
+ "grad_norm": 0.008081364445388317,
+ "learning_rate": 0.000138,
+ "loss": 3.6629021167755127,
+ "step": 24
+ },
+ {
+ "epoch": 0.34843205574912894,
+ "grad_norm": 0.0076500303111970425,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 3.66168212890625,
+ "step": 25
+ },
+ {
+ "epoch": 0.3623693379790941,
+ "grad_norm": 0.007083008531481028,
+ "learning_rate": 0.00015,
+ "loss": 3.6564559936523438,
+ "step": 26
+ },
+ {
+ "epoch": 0.37630662020905925,
+ "grad_norm": 0.006654089782387018,
+ "learning_rate": 0.000156,
+ "loss": 3.6590094566345215,
+ "step": 27
+ },
+ {
+ "epoch": 0.3902439024390244,
+ "grad_norm": 0.0073669785633683205,
+ "learning_rate": 0.000162,
+ "loss": 3.651914119720459,
+ "step": 28
+ },
+ {
+ "epoch": 0.40418118466898956,
+ "grad_norm": 0.007247959729284048,
+ "learning_rate": 0.000168,
+ "loss": 3.6557557582855225,
+ "step": 29
+ },
+ {
+ "epoch": 0.4181184668989547,
+ "grad_norm": 0.007229349110275507,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 3.651794910430908,
+ "step": 30
+ },
+ {
+ "epoch": 0.43205574912891986,
+ "grad_norm": 0.008839861489832401,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 3.653074264526367,
+ "step": 31
+ },
+ {
+ "epoch": 0.445993031358885,
+ "grad_norm": 0.009280834347009659,
+ "learning_rate": 0.000186,
+ "loss": 3.6503708362579346,
+ "step": 32
+ },
+ {
+ "epoch": 0.45993031358885017,
+ "grad_norm": 0.008585072122514248,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 3.650331497192383,
+ "step": 33
+ },
+ {
+ "epoch": 0.4738675958188153,
+ "grad_norm": 0.01164434663951397,
+ "learning_rate": 0.000198,
+ "loss": 3.6462929248809814,
+ "step": 34
+ },
+ {
+ "epoch": 0.4878048780487805,
+ "grad_norm": 0.012668018229305744,
+ "learning_rate": 0.000204,
+ "loss": 3.6516757011413574,
+ "step": 35
+ },
+ {
+ "epoch": 0.5017421602787456,
+ "grad_norm": 0.01610603742301464,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 3.647498607635498,
+ "step": 36
+ },
+ {
+ "epoch": 0.5156794425087108,
+ "grad_norm": 0.018993742763996124,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 3.642869472503662,
+ "step": 37
+ },
+ {
+ "epoch": 0.5296167247386759,
+ "grad_norm": 0.020697375759482384,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 3.639193058013916,
+ "step": 38
+ },
+ {
+ "epoch": 0.5435540069686411,
+ "grad_norm": 0.021636122837662697,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 3.630560874938965,
+ "step": 39
+ },
+ {
+ "epoch": 0.5574912891986062,
+ "grad_norm": 0.01893668621778488,
+ "learning_rate": 0.000234,
+ "loss": 3.6265769004821777,
+ "step": 40
+ },
+ {
+ "epoch": 0.5714285714285714,
+ "grad_norm": 0.025133362039923668,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 3.6185407638549805,
+ "step": 41
+ },
+ {
+ "epoch": 0.5853658536585366,
+ "grad_norm": 0.016397792845964432,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 3.609161853790283,
+ "step": 42
+ },
+ {
+ "epoch": 0.5993031358885017,
+ "grad_norm": 0.02059962786734104,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 3.5987398624420166,
+ "step": 43
+ },
+ {
+ "epoch": 0.6132404181184669,
+ "grad_norm": 0.026733839884400368,
+ "learning_rate": 0.000258,
+ "loss": 3.601898193359375,
+ "step": 44
+ },
+ {
+ "epoch": 0.627177700348432,
+ "grad_norm": 0.04592137038707733,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 3.597785472869873,
+ "step": 45
+ },
+ {
+ "epoch": 0.6411149825783972,
+ "grad_norm": 0.14618715643882751,
+ "learning_rate": 0.00027,
+ "loss": 3.597787857055664,
+ "step": 46
+ },
+ {
+ "epoch": 0.6550522648083623,
+ "grad_norm": 0.1228327602148056,
+ "learning_rate": 0.000276,
+ "loss": 3.598362922668457,
+ "step": 47
+ },
+ {
+ "epoch": 0.6689895470383276,
+ "grad_norm": 0.0651344507932663,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 3.5868940353393555,
+ "step": 48
+ },
+ {
+ "epoch": 0.6829268292682927,
+ "grad_norm": 0.030712513253092766,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 3.5800981521606445,
+ "step": 49
+ },
+ {
+ "epoch": 0.6968641114982579,
+ "grad_norm": 0.07069414854049683,
+ "learning_rate": 0.000294,
+ "loss": 3.590576171875,
+ "step": 50
+ },
+ {
+ "epoch": 0.710801393728223,
+ "grad_norm": 0.026333393529057503,
+ "learning_rate": 0.0003,
+ "loss": 3.5740621089935303,
+ "step": 51
+ },
+ {
+ "epoch": 0.7247386759581882,
+ "grad_norm": 0.050806671380996704,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 3.577582836151123,
+ "step": 52
+ },
+ {
+ "epoch": 0.7386759581881533,
+ "grad_norm": 0.04820532724261284,
+ "learning_rate": 0.000312,
+ "loss": 3.5686888694763184,
+ "step": 53
+ },
+ {
+ "epoch": 0.7526132404181185,
+ "grad_norm": 0.03834737837314606,
+ "learning_rate": 0.000318,
+ "loss": 3.571916341781616,
+ "step": 54
+ },
+ {
+ "epoch": 0.7665505226480837,
+ "grad_norm": 0.0663016214966774,
+ "learning_rate": 0.000324,
+ "loss": 3.563366413116455,
+ "step": 55
+ },
+ {
+ "epoch": 0.7804878048780488,
+ "grad_norm": 0.03111632913351059,
+ "learning_rate": 0.00033,
+ "loss": 3.555037021636963,
+ "step": 56
+ },
+ {
+ "epoch": 0.794425087108014,
+ "grad_norm": 0.06139425188302994,
+ "learning_rate": 0.000336,
+ "loss": 3.555377244949341,
+ "step": 57
+ },
+ {
+ "epoch": 0.8083623693379791,
+ "grad_norm": 0.02561746910214424,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 3.5368266105651855,
+ "step": 58
+ },
+ {
+ "epoch": 0.8222996515679443,
+ "grad_norm": 0.06502962112426758,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 3.5318264961242676,
+ "step": 59
+ },
+ {
+ "epoch": 0.8362369337979094,
+ "grad_norm": 0.06968390196561813,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 3.5210607051849365,
+ "step": 60
+ },
+ {
+ "epoch": 0.8501742160278746,
+ "grad_norm": 0.02670745924115181,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 3.5037078857421875,
+ "step": 61
+ },
+ {
+ "epoch": 0.8641114982578397,
+ "grad_norm": 0.07075569778680801,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 3.506938934326172,
+ "step": 62
+ },
+ {
+ "epoch": 0.8780487804878049,
+ "grad_norm": 0.061632659286260605,
+ "learning_rate": 0.000372,
+ "loss": 3.4960665702819824,
+ "step": 63
+ },
+ {
+ "epoch": 0.89198606271777,
+ "grad_norm": 0.10994791984558105,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 3.4926395416259766,
+ "step": 64
+ },
+ {
+ "epoch": 0.9059233449477352,
+ "grad_norm": 0.21027322113513947,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 3.502258777618408,
+ "step": 65
+ },
+ {
+ "epoch": 0.9198606271777003,
+ "grad_norm": 0.1937343329191208,
+ "learning_rate": 0.00039,
+ "loss": 3.5118448734283447,
+ "step": 66
+ },
+ {
+ "epoch": 0.9337979094076655,
+ "grad_norm": 0.07891395688056946,
+ "learning_rate": 0.000396,
+ "loss": 3.487575054168701,
+ "step": 67
+ },
+ {
+ "epoch": 0.9477351916376306,
+ "grad_norm": 0.12915678322315216,
+ "learning_rate": 0.000402,
+ "loss": 3.4890120029449463,
+ "step": 68
+ },
+ {
+ "epoch": 0.9616724738675958,
+ "grad_norm": 0.08530207723379135,
+ "learning_rate": 0.000408,
+ "loss": 3.4755735397338867,
+ "step": 69
+ },
+ {
+ "epoch": 0.975609756097561,
+ "grad_norm": 0.09704860299825668,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 3.4669318199157715,
+ "step": 70
+ },
+ {
+ "epoch": 0.9895470383275261,
+ "grad_norm": 0.07270640879869461,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 3.460634469985962,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.03984597697854042,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 2.590245485305786,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 0.8616236448287964,
+ "eval_runtime": 36.0347,
+ "eval_samples_per_second": 67.768,
+ "eval_steps_per_second": 0.555,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139372822299653,
+ "grad_norm": 0.058285508304834366,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 3.441636562347412,
+ "step": 73
+ },
+ {
+ "epoch": 1.0278745644599303,
+ "grad_norm": 0.07173695415258408,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 3.4476027488708496,
+ "step": 74
+ },
+ {
+ "epoch": 1.0418118466898956,
+ "grad_norm": 0.0367155559360981,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 3.4290428161621094,
+ "step": 75
+ },
+ {
+ "epoch": 1.0557491289198606,
+ "grad_norm": 0.05761358141899109,
+ "learning_rate": 0.00045,
+ "loss": 3.430612564086914,
+ "step": 76
+ },
+ {
+ "epoch": 1.0696864111498259,
+ "grad_norm": 0.06290662288665771,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 3.4222841262817383,
+ "step": 77
+ },
+ {
+ "epoch": 1.083623693379791,
+ "grad_norm": 0.09705018997192383,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 3.4233384132385254,
+ "step": 78
+ },
+ {
+ "epoch": 1.0975609756097562,
+ "grad_norm": 0.09656445682048798,
+ "learning_rate": 0.000468,
+ "loss": 3.422335624694824,
+ "step": 79
+ },
+ {
+ "epoch": 1.1114982578397212,
+ "grad_norm": 0.07884909957647324,
+ "learning_rate": 0.000474,
+ "loss": 3.4133338928222656,
+ "step": 80
+ },
+ {
+ "epoch": 1.1254355400696865,
+ "grad_norm": 0.06679042428731918,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 3.4053287506103516,
+ "step": 81
+ },
+ {
+ "epoch": 1.1393728222996515,
+ "grad_norm": 0.02522652968764305,
+ "learning_rate": 0.000486,
+ "loss": 3.392838478088379,
+ "step": 82
+ },
+ {
+ "epoch": 1.1533101045296168,
+ "grad_norm": 0.09408055245876312,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 3.3952789306640625,
+ "step": 83
+ },
+ {
+ "epoch": 1.1672473867595818,
+ "grad_norm": 0.08980021625757217,
+ "learning_rate": 0.000498,
+ "loss": 3.385244846343994,
+ "step": 84
+ },
+ {
+ "epoch": 1.181184668989547,
+ "grad_norm": 0.08343124389648438,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 3.382103443145752,
+ "step": 85
+ },
+ {
+ "epoch": 1.1951219512195121,
+ "grad_norm": 0.03343554213643074,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 3.374354362487793,
+ "step": 86
+ },
+ {
+ "epoch": 1.2090592334494774,
+ "grad_norm": 0.0852339118719101,
+ "learning_rate": 0.000516,
+ "loss": 3.3802456855773926,
+ "step": 87
+ },
+ {
+ "epoch": 1.2229965156794425,
+ "grad_norm": 0.09159538149833679,
+ "learning_rate": 0.000522,
+ "loss": 3.37576961517334,
+ "step": 88
+ },
+ {
+ "epoch": 1.2369337979094077,
+ "grad_norm": 0.04313444346189499,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 3.360690116882324,
+ "step": 89
+ },
+ {
+ "epoch": 1.2508710801393728,
+ "grad_norm": 0.075523741543293,
+ "learning_rate": 0.000534,
+ "loss": 3.3599460124969482,
+ "step": 90
+ },
+ {
+ "epoch": 1.264808362369338,
+ "grad_norm": 0.08516373485326767,
+ "learning_rate": 0.00054,
+ "loss": 3.3572096824645996,
+ "step": 91
+ },
+ {
+ "epoch": 1.278745644599303,
+ "grad_norm": 0.09553111344575882,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 3.3542261123657227,
+ "step": 92
+ },
+ {
+ "epoch": 1.2926829268292683,
+ "grad_norm": 0.05978025496006012,
+ "learning_rate": 0.000552,
+ "loss": 3.3440048694610596,
+ "step": 93
+ },
+ {
+ "epoch": 1.3066202090592334,
+ "grad_norm": 0.10827190428972244,
+ "learning_rate": 0.000558,
+ "loss": 3.3391332626342773,
+ "step": 94
+ },
+ {
+ "epoch": 1.3205574912891986,
+ "grad_norm": 0.1181376576423645,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 3.3493118286132812,
+ "step": 95
+ },
+ {
+ "epoch": 1.3344947735191637,
+ "grad_norm": 0.08178193867206573,
+ "learning_rate": 0.00057,
+ "loss": 3.3445382118225098,
+ "step": 96
+ },
+ {
+ "epoch": 1.348432055749129,
+ "grad_norm": 0.08283700793981552,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 3.3343238830566406,
+ "step": 97
+ },
+ {
+ "epoch": 1.3623693379790942,
+ "grad_norm": 0.11837095767259598,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 3.3336968421936035,
+ "step": 98
+ },
+ {
+ "epoch": 1.3763066202090593,
+ "grad_norm": 0.08230706304311752,
+ "learning_rate": 0.000588,
+ "loss": 3.3294646739959717,
+ "step": 99
+ },
+ {
+ "epoch": 1.3902439024390243,
+ "grad_norm": 0.09961626678705215,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 3.3242952823638916,
+ "step": 100
+ },
+ {
+ "epoch": 1.4041811846689896,
+ "grad_norm": 0.11294732987880707,
+ "learning_rate": 0.0006,
+ "loss": 3.330348491668701,
+ "step": 101
+ },
+ {
+ "epoch": 1.4181184668989548,
+ "grad_norm": 0.11236022412776947,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 3.322606086730957,
+ "step": 102
+ },
+ {
+ "epoch": 1.4320557491289199,
+ "grad_norm": 0.13230572640895844,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 3.3202784061431885,
+ "step": 103
+ },
+ {
+ "epoch": 1.445993031358885,
+ "grad_norm": 0.0783172994852066,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 3.3082056045532227,
+ "step": 104
+ },
+ {
+ "epoch": 1.4599303135888502,
+ "grad_norm": 0.07376513630151749,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 3.3011245727539062,
+ "step": 105
+ },
+ {
+ "epoch": 1.4738675958188154,
+ "grad_norm": 0.11039287596940994,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 3.2987873554229736,
+ "step": 106
+ },
+ {
+ "epoch": 1.4878048780487805,
+ "grad_norm": 0.0667329952120781,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 3.293043851852417,
+ "step": 107
+ },
+ {
+ "epoch": 1.5017421602787455,
+ "grad_norm": 0.0750635489821434,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 3.2865707874298096,
+ "step": 108
+ },
+ {
+ "epoch": 1.5156794425087108,
+ "grad_norm": 0.055155977606773376,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 3.278069496154785,
+ "step": 109
+ },
+ {
+ "epoch": 1.529616724738676,
+ "grad_norm": 0.07016722112894058,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 3.2837281227111816,
+ "step": 110
+ },
+ {
+ "epoch": 1.543554006968641,
+ "grad_norm": 0.09884901344776154,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 3.2782273292541504,
+ "step": 111
+ },
+ {
+ "epoch": 1.5574912891986061,
+ "grad_norm": 0.09402419626712799,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 3.2757701873779297,
+ "step": 112
+ },
+ {
+ "epoch": 1.5714285714285714,
+ "grad_norm": 0.06898307800292969,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 3.2636804580688477,
+ "step": 113
+ },
+ {
+ "epoch": 1.5853658536585367,
+ "grad_norm": 0.08733519911766052,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 3.2676005363464355,
+ "step": 114
+ },
+ {
+ "epoch": 1.5993031358885017,
+ "grad_norm": 0.05769918113946915,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 3.2505807876586914,
+ "step": 115
+ },
+ {
+ "epoch": 1.6132404181184667,
+ "grad_norm": 0.054460495710372925,
+ "learning_rate": 0.000599973080557108,
+ "loss": 3.259110689163208,
+ "step": 116
+ },
+ {
+ "epoch": 1.627177700348432,
+ "grad_norm": 0.055243365466594696,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 3.2438201904296875,
+ "step": 117
+ },
+ {
+ "epoch": 1.6411149825783973,
+ "grad_norm": 0.06122216582298279,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 3.2397255897521973,
+ "step": 118
+ },
+ {
+ "epoch": 1.6550522648083623,
+ "grad_norm": 0.05418086051940918,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 3.236057758331299,
+ "step": 119
+ },
+ {
+ "epoch": 1.6689895470383276,
+ "grad_norm": 0.04995540529489517,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 3.224294662475586,
+ "step": 120
+ },
+ {
+ "epoch": 1.6829268292682928,
+ "grad_norm": 0.057540878653526306,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 3.2251172065734863,
+ "step": 121
+ },
+ {
+ "epoch": 1.6968641114982579,
+ "grad_norm": 0.05698078125715256,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 3.228363513946533,
+ "step": 122
+ },
+ {
+ "epoch": 1.710801393728223,
+ "grad_norm": 0.07352662831544876,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 3.2196407318115234,
+ "step": 123
+ },
+ {
+ "epoch": 1.7247386759581882,
+ "grad_norm": 0.08591686934232712,
+ "learning_rate": 0.000599936710690505,
+ "loss": 3.2231035232543945,
+ "step": 124
+ },
+ {
+ "epoch": 1.7386759581881535,
+ "grad_norm": 0.06970733404159546,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 3.2126383781433105,
+ "step": 125
+ },
+ {
+ "epoch": 1.7526132404181185,
+ "grad_norm": 0.04472116380929947,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 3.216801881790161,
+ "step": 126
+ },
+ {
+ "epoch": 1.7665505226480835,
+ "grad_norm": 0.059133559465408325,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 3.2136807441711426,
+ "step": 127
+ },
+ {
+ "epoch": 1.7804878048780488,
+ "grad_norm": 0.08288449794054031,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 3.210519552230835,
+ "step": 128
+ },
+ {
+ "epoch": 1.794425087108014,
+ "grad_norm": 0.09659463912248611,
+ "learning_rate": 0.00059990620421714,
+ "loss": 3.205916404724121,
+ "step": 129
+ },
+ {
+ "epoch": 1.8083623693379791,
+ "grad_norm": 0.08611937612295151,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 3.206793785095215,
+ "step": 130
+ },
+ {
+ "epoch": 1.8222996515679442,
+ "grad_norm": 0.06448066979646683,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 3.2026424407958984,
+ "step": 131
+ },
+ {
+ "epoch": 1.8362369337979094,
+ "grad_norm": 0.07323113083839417,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 3.1864631175994873,
+ "step": 132
+ },
+ {
+ "epoch": 1.8501742160278747,
+ "grad_norm": 0.0739368200302124,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 3.1875557899475098,
+ "step": 133
+ },
+ {
+ "epoch": 1.8641114982578397,
+ "grad_norm": 0.08289099484682083,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 3.1901979446411133,
+ "step": 134
+ },
+ {
+ "epoch": 1.8780487804878048,
+ "grad_norm": 0.06641175597906113,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 3.1776785850524902,
+ "step": 135
+ },
+ {
+ "epoch": 1.89198606271777,
+ "grad_norm": 0.04873652383685112,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 3.1743667125701904,
+ "step": 136
+ },
+ {
+ "epoch": 1.9059233449477353,
+ "grad_norm": 0.04623038321733475,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 3.1759986877441406,
+ "step": 137
+ },
+ {
+ "epoch": 1.9198606271777003,
+ "grad_norm": 0.059709370136260986,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 3.1702799797058105,
+ "step": 138
+ },
+ {
+ "epoch": 1.9337979094076654,
+ "grad_norm": 0.040581051260232925,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 3.1607465744018555,
+ "step": 139
+ },
+ {
+ "epoch": 1.9477351916376306,
+ "grad_norm": 0.04940655827522278,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 3.1620500087738037,
+ "step": 140
+ },
+ {
+ "epoch": 1.961672473867596,
+ "grad_norm": 0.055740341544151306,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 3.1535825729370117,
+ "step": 141
+ },
+ {
+ "epoch": 1.975609756097561,
+ "grad_norm": 0.06836569309234619,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 3.1512832641601562,
+ "step": 142
+ },
+ {
+ "epoch": 1.989547038327526,
+ "grad_norm": 0.08451569080352783,
+ "learning_rate": 0.000599788973374255,
+ "loss": 3.147432804107666,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.06781627237796783,
+ "learning_rate": 0.000599778806120077,
+ "loss": 2.3624467849731445,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 0.7888243794441223,
+ "eval_runtime": 37.0572,
+ "eval_samples_per_second": 65.898,
+ "eval_steps_per_second": 0.54,
+ "step": 144
+ },
+ {
+ "epoch": 2.013937282229965,
+ "grad_norm": 0.045119598507881165,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 3.139284610748291,
+ "step": 145
+ },
+ {
+ "epoch": 2.0278745644599305,
+ "grad_norm": 0.09132017195224762,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 3.140348434448242,
+ "step": 146
+ },
+ {
+ "epoch": 2.0418118466898956,
+ "grad_norm": 0.07457596063613892,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 3.140091896057129,
+ "step": 147
+ },
+ {
+ "epoch": 2.0557491289198606,
+ "grad_norm": 0.07544369250535965,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 3.1411213874816895,
+ "step": 148
+ },
+ {
+ "epoch": 2.0696864111498257,
+ "grad_norm": 0.046033963561058044,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 3.1405649185180664,
+ "step": 149
+ },
+ {
+ "epoch": 2.083623693379791,
+ "grad_norm": 0.06651527434587479,
+ "learning_rate": 0.000599712781599403,
+ "loss": 3.135124683380127,
+ "step": 150
+ },
+ {
+ "epoch": 2.097560975609756,
+ "grad_norm": 0.07238955795764923,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 3.1302051544189453,
+ "step": 151
+ },
+ {
+ "epoch": 2.1114982578397212,
+ "grad_norm": 0.06696683913469315,
+ "learning_rate": 0.000599688860879549,
+ "loss": 3.128504991531372,
+ "step": 152
+ },
+ {
+ "epoch": 2.1254355400696863,
+ "grad_norm": 0.042010076344013214,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 3.119443893432617,
+ "step": 153
+ },
+ {
+ "epoch": 2.1393728222996518,
+ "grad_norm": 0.053164687007665634,
+ "learning_rate": 0.000599663984012462,
+ "loss": 3.1174211502075195,
+ "step": 154
+ },
+ {
+ "epoch": 2.153310104529617,
+ "grad_norm": 0.047281116247177124,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 3.1211044788360596,
+ "step": 155
+ },
+ {
+ "epoch": 2.167247386759582,
+ "grad_norm": 0.0531938374042511,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 3.1136691570281982,
+ "step": 156
+ },
+ {
+ "epoch": 2.181184668989547,
+ "grad_norm": 0.0702054500579834,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 3.112502336502075,
+ "step": 157
+ },
+ {
+ "epoch": 2.1951219512195124,
+ "grad_norm": 0.07261929661035538,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 3.1049346923828125,
+ "step": 158
+ },
+ {
+ "epoch": 2.2090592334494774,
+ "grad_norm": 0.06666582822799683,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 3.1094369888305664,
+ "step": 159
+ },
+ {
+ "epoch": 2.2229965156794425,
+ "grad_norm": 0.047446250915527344,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 3.105876922607422,
+ "step": 160
+ },
+ {
+ "epoch": 2.2369337979094075,
+ "grad_norm": 0.03833230584859848,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 3.104224681854248,
+ "step": 161
+ },
+ {
+ "epoch": 2.250871080139373,
+ "grad_norm": 0.04562874883413315,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 3.105830192565918,
+ "step": 162
+ },
+ {
+ "epoch": 2.264808362369338,
+ "grad_norm": 0.0635828971862793,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 3.1061713695526123,
+ "step": 163
+ },
+ {
+ "epoch": 2.278745644599303,
+ "grad_norm": 0.09712212532758713,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 3.108053207397461,
+ "step": 164
+ },
+ {
+ "epoch": 2.292682926829268,
+ "grad_norm": 0.15060372650623322,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 3.126777172088623,
+ "step": 165
+ },
+ {
+ "epoch": 2.3066202090592336,
+ "grad_norm": 0.12047530710697174,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 3.116323471069336,
+ "step": 166
+ },
+ {
+ "epoch": 2.3205574912891986,
+ "grad_norm": 0.07486861199140549,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 3.1138410568237305,
+ "step": 167
+ },
+ {
+ "epoch": 2.3344947735191637,
+ "grad_norm": 0.07746157795190811,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 3.1107101440429688,
+ "step": 168
+ },
+ {
+ "epoch": 2.3484320557491287,
+ "grad_norm": 0.0804097130894661,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 3.1073827743530273,
+ "step": 169
+ },
+ {
+ "epoch": 2.362369337979094,
+ "grad_norm": 0.0559227392077446,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 3.102102041244507,
+ "step": 170
+ },
+ {
+ "epoch": 2.3763066202090593,
+ "grad_norm": 0.05415646359324455,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 3.096550464630127,
+ "step": 171
+ },
+ {
+ "epoch": 2.3902439024390243,
+ "grad_norm": 0.0463285967707634,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 3.0833563804626465,
+ "step": 172
+ },
+ {
+ "epoch": 2.40418118466899,
+ "grad_norm": 0.04705670103430748,
+ "learning_rate": 0.000599379982511273,
+ "loss": 3.0935018062591553,
+ "step": 173
+ },
+ {
+ "epoch": 2.418118466898955,
+ "grad_norm": 0.03608846664428711,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 3.085629463195801,
+ "step": 174
+ },
+ {
+ "epoch": 2.43205574912892,
+ "grad_norm": 0.03648562356829643,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 3.086639165878296,
+ "step": 175
+ },
+ {
+ "epoch": 2.445993031358885,
+ "grad_norm": 0.03640111908316612,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 3.088339328765869,
+ "step": 176
+ },
+ {
+ "epoch": 2.45993031358885,
+ "grad_norm": 0.029915692284703255,
+ "learning_rate": 0.000599309205504528,
+ "loss": 3.0802769660949707,
+ "step": 177
+ },
+ {
+ "epoch": 2.4738675958188154,
+ "grad_norm": 0.031756628304719925,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 3.0739364624023438,
+ "step": 178
+ },
+ {
+ "epoch": 2.4878048780487805,
+ "grad_norm": 0.03106086328625679,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 3.07144832611084,
+ "step": 179
+ },
+ {
+ "epoch": 2.5017421602787455,
+ "grad_norm": 0.03892781585454941,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 3.074242353439331,
+ "step": 180
+ },
+ {
+ "epoch": 2.515679442508711,
+ "grad_norm": 0.05611228197813034,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 3.0675928592681885,
+ "step": 181
+ },
+ {
+ "epoch": 2.529616724738676,
+ "grad_norm": 0.03397630900144577,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 3.073423147201538,
+ "step": 182
+ },
+ {
+ "epoch": 2.543554006968641,
+ "grad_norm": 0.04135085269808769,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 3.0808069705963135,
+ "step": 183
+ },
+ {
+ "epoch": 2.557491289198606,
+ "grad_norm": 0.03421049192547798,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 3.0616936683654785,
+ "step": 184
+ },
+ {
+ "epoch": 2.571428571428571,
+ "grad_norm": 0.030827628448605537,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 3.0656299591064453,
+ "step": 185
+ },
+ {
+ "epoch": 2.5853658536585367,
+ "grad_norm": 0.033190369606018066,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 3.0479578971862793,
+ "step": 186
+ },
+ {
+ "epoch": 2.5993031358885017,
+ "grad_norm": 0.026774903759360313,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 3.054133653640747,
+ "step": 187
+ },
+ {
+ "epoch": 2.6132404181184667,
+ "grad_norm": 0.03240266814827919,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 3.0536394119262695,
+ "step": 188
+ },
+ {
+ "epoch": 2.6271777003484322,
+ "grad_norm": 0.04305516183376312,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 3.048996925354004,
+ "step": 189
+ },
+ {
+ "epoch": 2.6411149825783973,
+ "grad_norm": 0.07109381258487701,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 3.0558314323425293,
+ "step": 190
+ },
+ {
+ "epoch": 2.6550522648083623,
+ "grad_norm": 0.11467248201370239,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 3.0587801933288574,
+ "step": 191
+ },
+ {
+ "epoch": 2.6689895470383274,
+ "grad_norm": 0.13839758932590485,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 3.0634102821350098,
+ "step": 192
+ },
+ {
+ "epoch": 2.682926829268293,
+ "grad_norm": 0.09269433468580246,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 3.0586462020874023,
+ "step": 193
+ },
+ {
+ "epoch": 2.696864111498258,
+ "grad_norm": 0.0611812099814415,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 3.054201602935791,
+ "step": 194
+ },
+ {
+ "epoch": 2.710801393728223,
+ "grad_norm": 0.05347125604748726,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 3.054572105407715,
+ "step": 195
+ },
+ {
+ "epoch": 2.7247386759581884,
+ "grad_norm": 0.05996708199381828,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 3.0486035346984863,
+ "step": 196
+ },
+ {
+ "epoch": 2.7386759581881535,
+ "grad_norm": 0.06146618723869324,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 3.0344629287719727,
+ "step": 197
+ },
+ {
+ "epoch": 2.7526132404181185,
+ "grad_norm": 0.04754327982664108,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 3.0211029052734375,
+ "step": 198
+ },
+ {
+ "epoch": 2.7665505226480835,
+ "grad_norm": 0.044388528913259506,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 3.034595012664795,
+ "step": 199
+ },
+ {
+ "epoch": 2.7804878048780486,
+ "grad_norm": 0.04255649819970131,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 3.037287950515747,
+ "step": 200
+ },
+ {
+ "epoch": 2.794425087108014,
+ "grad_norm": 0.043139949440956116,
+ "learning_rate": 0.000598804365316586,
+ "loss": 3.0366177558898926,
+ "step": 201
+ },
+ {
+ "epoch": 2.808362369337979,
+ "grad_norm": 0.03383412957191467,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 3.033888101577759,
+ "step": 202
+ },
+ {
+ "epoch": 2.822299651567944,
+ "grad_norm": 0.03446805849671364,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 3.022144079208374,
+ "step": 203
+ },
+ {
+ "epoch": 2.8362369337979096,
+ "grad_norm": 0.029725519940257072,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 3.0208263397216797,
+ "step": 204
+ },
+ {
+ "epoch": 2.8501742160278747,
+ "grad_norm": 0.030237704515457153,
+ "learning_rate": 0.000598706872384039,
+ "loss": 3.0251193046569824,
+ "step": 205
+ },
+ {
+ "epoch": 2.8641114982578397,
+ "grad_norm": 0.03186488524079323,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 3.0246212482452393,
+ "step": 206
+ },
+ {
+ "epoch": 2.8780487804878048,
+ "grad_norm": 0.02844928577542305,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 3.0075716972351074,
+ "step": 207
+ },
+ {
+ "epoch": 2.89198606271777,
+ "grad_norm": 0.0350780263543129,
+ "learning_rate": 0.000598631251036868,
+ "loss": 3.0121424198150635,
+ "step": 208
+ },
+ {
+ "epoch": 2.9059233449477353,
+ "grad_norm": 0.04267824813723564,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 3.0099010467529297,
+ "step": 209
+ },
+ {
+ "epoch": 2.9198606271777003,
+ "grad_norm": 0.042932625859975815,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 3.0122969150543213,
+ "step": 210
+ },
+ {
+ "epoch": 2.9337979094076654,
+ "grad_norm": 0.04570756480097771,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 3.0111446380615234,
+ "step": 211
+ },
+ {
+ "epoch": 2.947735191637631,
+ "grad_norm": 0.04473821446299553,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 2.9976413249969482,
+ "step": 212
+ },
+ {
+ "epoch": 2.961672473867596,
+ "grad_norm": 0.040896713733673096,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 2.9942758083343506,
+ "step": 213
+ },
+ {
+ "epoch": 2.975609756097561,
+ "grad_norm": 0.04459039121866226,
+ "learning_rate": 0.000598473577921366,
+ "loss": 2.998690128326416,
+ "step": 214
+ },
+ {
+ "epoch": 2.989547038327526,
+ "grad_norm": 0.039927951991558075,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 2.988520383834839,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.030261589214205742,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 2.2433667182922363,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 0.7514154314994812,
+ "eval_runtime": 37.2184,
+ "eval_samples_per_second": 65.613,
+ "eval_steps_per_second": 0.537,
+ "step": 216
+ },
+ {
+ "epoch": 3.013937282229965,
+ "grad_norm": 0.03271438181400299,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 2.983100652694702,
+ "step": 217
+ },
+ {
+ "epoch": 3.0278745644599305,
+ "grad_norm": 0.045161835849285126,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 2.9824085235595703,
+ "step": 218
+ },
+ {
+ "epoch": 3.0418118466898956,
+ "grad_norm": 0.041259463876485825,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 2.980112075805664,
+ "step": 219
+ },
+ {
+ "epoch": 3.0557491289198606,
+ "grad_norm": 0.04854132980108261,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 2.9802699089050293,
+ "step": 220
+ },
+ {
+ "epoch": 3.0696864111498257,
+ "grad_norm": 0.06712493300437927,
+ "learning_rate": 0.000598278794687186,
+ "loss": 2.963736057281494,
+ "step": 221
+ },
+ {
+ "epoch": 3.083623693379791,
+ "grad_norm": 0.07551158964633942,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 2.9780850410461426,
+ "step": 222
+ },
+ {
+ "epoch": 3.097560975609756,
+ "grad_norm": 0.1004587933421135,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 2.982564926147461,
+ "step": 223
+ },
+ {
+ "epoch": 3.1114982578397212,
+ "grad_norm": 0.12604698538780212,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 2.994123697280884,
+ "step": 224
+ },
+ {
+ "epoch": 3.1254355400696863,
+ "grad_norm": 0.13300281763076782,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 3.0030934810638428,
+ "step": 225
+ },
+ {
+ "epoch": 3.1393728222996518,
+ "grad_norm": 0.09192433208227158,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 2.99415922164917,
+ "step": 226
+ },
+ {
+ "epoch": 3.153310104529617,
+ "grad_norm": 0.07332997024059296,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 2.9832448959350586,
+ "step": 227
+ },
+ {
+ "epoch": 3.167247386759582,
+ "grad_norm": 0.05673393979668617,
+ "learning_rate": 0.00059807235435179,
+ "loss": 2.9781603813171387,
+ "step": 228
+ },
+ {
+ "epoch": 3.181184668989547,
+ "grad_norm": 0.05591209977865219,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 2.9844987392425537,
+ "step": 229
+ },
+ {
+ "epoch": 3.1951219512195124,
+ "grad_norm": 0.04706789553165436,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 2.9794564247131348,
+ "step": 230
+ },
+ {
+ "epoch": 3.2090592334494774,
+ "grad_norm": 0.04533008486032486,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 2.963930606842041,
+ "step": 231
+ },
+ {
+ "epoch": 3.2229965156794425,
+ "grad_norm": 0.0363367535173893,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 2.9743711948394775,
+ "step": 232
+ },
+ {
+ "epoch": 3.2369337979094075,
+ "grad_norm": 0.035832252353429794,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 2.9637725353240967,
+ "step": 233
+ },
+ {
+ "epoch": 3.250871080139373,
+ "grad_norm": 0.03634851798415184,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 2.971634864807129,
+ "step": 234
+ },
+ {
+ "epoch": 3.264808362369338,
+ "grad_norm": 0.036877233535051346,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 2.960113286972046,
+ "step": 235
+ },
+ {
+ "epoch": 3.278745644599303,
+ "grad_norm": 0.02930021658539772,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 2.948853015899658,
+ "step": 236
+ },
+ {
+ "epoch": 3.292682926829268,
+ "grad_norm": 0.029241658747196198,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 2.957648277282715,
+ "step": 237
+ },
+ {
+ "epoch": 3.3066202090592336,
+ "grad_norm": 0.029683494940400124,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 2.9501960277557373,
+ "step": 238
+ },
+ {
+ "epoch": 3.3205574912891986,
+ "grad_norm": 0.028418797999620438,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 2.9593586921691895,
+ "step": 239
+ },
+ {
+ "epoch": 3.3344947735191637,
+ "grad_norm": 0.029084153473377228,
+ "learning_rate": 0.000597691359743243,
+ "loss": 2.957581043243408,
+ "step": 240
+ },
+ {
+ "epoch": 3.3484320557491287,
+ "grad_norm": 0.03031332418322563,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 2.9465126991271973,
+ "step": 241
+ },
+ {
+ "epoch": 3.362369337979094,
+ "grad_norm": 0.028176147490739822,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 2.9427034854888916,
+ "step": 242
+ },
+ {
+ "epoch": 3.3763066202090593,
+ "grad_norm": 0.025935526937246323,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 2.933248996734619,
+ "step": 243
+ },
+ {
+ "epoch": 3.3902439024390243,
+ "grad_norm": 0.026524877175688744,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 2.9334826469421387,
+ "step": 244
+ },
+ {
+ "epoch": 3.40418118466899,
+ "grad_norm": 0.026807013899087906,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 2.9502480030059814,
+ "step": 245
+ },
+ {
+ "epoch": 3.418118466898955,
+ "grad_norm": 0.026440076529979706,
+ "learning_rate": 0.000597488038559129,
+ "loss": 2.9336085319519043,
+ "step": 246
+ },
+ {
+ "epoch": 3.43205574912892,
+ "grad_norm": 0.02752632275223732,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 2.937425374984741,
+ "step": 247
+ },
+ {
+ "epoch": 3.445993031358885,
+ "grad_norm": 0.027490021660923958,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 2.9357755184173584,
+ "step": 248
+ },
+ {
+ "epoch": 3.45993031358885,
+ "grad_norm": 0.03389354050159454,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 2.934713363647461,
+ "step": 249
+ },
+ {
+ "epoch": 3.4738675958188154,
+ "grad_norm": 0.042289797216653824,
+ "learning_rate": 0.000597347745466109,
+ "loss": 2.9363629817962646,
+ "step": 250
+ },
+ {
+ "epoch": 3.4878048780487805,
+ "grad_norm": 0.07276978343725204,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 2.946735382080078,
+ "step": 251
+ },
+ {
+ "epoch": 3.5017421602787455,
+ "grad_norm": 0.09471797943115234,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 2.9240806102752686,
+ "step": 252
+ },
+ {
+ "epoch": 3.515679442508711,
+ "grad_norm": 0.09386000782251358,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 2.9194839000701904,
+ "step": 253
+ },
+ {
+ "epoch": 3.529616724738676,
+ "grad_norm": 0.1176624521613121,
+ "learning_rate": 0.000597203657966319,
+ "loss": 2.9324824810028076,
+ "step": 254
+ },
+ {
+ "epoch": 3.543554006968641,
+ "grad_norm": 0.0723927766084671,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 2.932208776473999,
+ "step": 255
+ },
+ {
+ "epoch": 3.557491289198606,
+ "grad_norm": 0.06314370036125183,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 2.936681032180786,
+ "step": 256
+ },
+ {
+ "epoch": 3.571428571428571,
+ "grad_norm": 0.06432153284549713,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 2.924858331680298,
+ "step": 257
+ },
+ {
+ "epoch": 3.5853658536585367,
+ "grad_norm": 0.07495246082544327,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 2.918736696243286,
+ "step": 258
+ },
+ {
+ "epoch": 3.5993031358885017,
+ "grad_norm": 0.058007508516311646,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 2.92120361328125,
+ "step": 259
+ },
+ {
+ "epoch": 3.6132404181184667,
+ "grad_norm": 0.047224972397089005,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 2.9181740283966064,
+ "step": 260
+ },
+ {
+ "epoch": 3.6271777003484322,
+ "grad_norm": 0.04775157943367958,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 2.9145660400390625,
+ "step": 261
+ },
+ {
+ "epoch": 3.6411149825783973,
+ "grad_norm": 0.05087953805923462,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 2.9094574451446533,
+ "step": 262
+ },
+ {
+ "epoch": 3.6550522648083623,
+ "grad_norm": 0.047325216233730316,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 2.9127790927886963,
+ "step": 263
+ },
+ {
+ "epoch": 3.6689895470383274,
+ "grad_norm": 0.04005662724375725,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 2.9124414920806885,
+ "step": 264
+ },
+ {
+ "epoch": 3.682926829268293,
+ "grad_norm": 0.03284832462668419,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 2.897369861602783,
+ "step": 265
+ },
+ {
+ "epoch": 3.696864111498258,
+ "grad_norm": 0.03538643941283226,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 2.8912787437438965,
+ "step": 266
+ },
+ {
+ "epoch": 3.710801393728223,
+ "grad_norm": 0.0338534340262413,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 2.904737949371338,
+ "step": 267
+ },
+ {
+ "epoch": 3.7247386759581884,
+ "grad_norm": 0.03059707209467888,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 2.910109519958496,
+ "step": 268
+ },
+ {
+ "epoch": 3.7386759581881535,
+ "grad_norm": 0.027421824634075165,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 2.8953540325164795,
+ "step": 269
+ },
+ {
+ "epoch": 3.7526132404181185,
+ "grad_norm": 0.031095022335648537,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 2.8983192443847656,
+ "step": 270
+ },
+ {
+ "epoch": 3.7665505226480835,
+ "grad_norm": 0.03075260855257511,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 2.9002010822296143,
+ "step": 271
+ },
+ {
+ "epoch": 3.7804878048780486,
+ "grad_norm": 0.030917232856154442,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 2.8886561393737793,
+ "step": 272
+ },
+ {
+ "epoch": 3.794425087108014,
+ "grad_norm": 0.03267431631684303,
+ "learning_rate": 0.000596467483454833,
+ "loss": 2.8845345973968506,
+ "step": 273
+ },
+ {
+ "epoch": 3.808362369337979,
+ "grad_norm": 0.034112598747015,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 2.8842294216156006,
+ "step": 274
+ },
+ {
+ "epoch": 3.822299651567944,
+ "grad_norm": 0.038153596222400665,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 2.866973400115967,
+ "step": 275
+ },
+ {
+ "epoch": 3.8362369337979096,
+ "grad_norm": 0.033103615045547485,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 2.8709988594055176,
+ "step": 276
+ },
+ {
+ "epoch": 3.8501742160278747,
+ "grad_norm": 0.030708827078342438,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 2.8715577125549316,
+ "step": 277
+ },
+ {
+ "epoch": 3.8641114982578397,
+ "grad_norm": 0.03427499905228615,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 2.8766040802001953,
+ "step": 278
+ },
+ {
+ "epoch": 3.8780487804878048,
+ "grad_norm": 0.042216721922159195,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 2.8672261238098145,
+ "step": 279
+ },
+ {
+ "epoch": 3.89198606271777,
+ "grad_norm": 0.034656424075365067,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 2.860102653503418,
+ "step": 280
+ },
+ {
+ "epoch": 3.9059233449477353,
+ "grad_norm": 0.03288520127534866,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 2.8540444374084473,
+ "step": 281
+ },
+ {
+ "epoch": 3.9198606271777003,
+ "grad_norm": 0.041709382086992264,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 2.872581958770752,
+ "step": 282
+ },
+ {
+ "epoch": 3.9337979094076654,
+ "grad_norm": 0.04955075681209564,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 2.874307632446289,
+ "step": 283
+ },
+ {
+ "epoch": 3.947735191637631,
+ "grad_norm": 0.05372118577361107,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 2.861191749572754,
+ "step": 284
+ },
+ {
+ "epoch": 3.961672473867596,
+ "grad_norm": 0.05855486914515495,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 2.8542709350585938,
+ "step": 285
+ },
+ {
+ "epoch": 3.975609756097561,
+ "grad_norm": 0.05442376434803009,
+ "learning_rate": 0.000595914592474791,
+ "loss": 2.858576536178589,
+ "step": 286
+ },
+ {
+ "epoch": 3.989547038327526,
+ "grad_norm": 0.06468870490789413,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 2.8510026931762695,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.038657791912555695,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 2.1422531604766846,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 0.7195093631744385,
+ "eval_runtime": 39.1927,
+ "eval_samples_per_second": 62.308,
+ "eval_steps_per_second": 0.51,
+ "step": 288
+ },
+ {
+ "epoch": 4.013937282229965,
+ "grad_norm": 0.041369788348674774,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 2.8407950401306152,
+ "step": 289
+ },
+ {
+ "epoch": 4.02787456445993,
+ "grad_norm": 0.045097772032022476,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 2.8446922302246094,
+ "step": 290
+ },
+ {
+ "epoch": 4.041811846689895,
+ "grad_norm": 0.05102979391813278,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 2.8316476345062256,
+ "step": 291
+ },
+ {
+ "epoch": 4.055749128919861,
+ "grad_norm": 0.05429252237081528,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 2.8510334491729736,
+ "step": 292
+ },
+ {
+ "epoch": 4.069686411149826,
+ "grad_norm": 0.0761060118675232,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 2.8289966583251953,
+ "step": 293
+ },
+ {
+ "epoch": 4.083623693379791,
+ "grad_norm": 0.09525997191667557,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 2.843992233276367,
+ "step": 294
+ },
+ {
+ "epoch": 4.097560975609756,
+ "grad_norm": 0.09715712070465088,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 2.8543810844421387,
+ "step": 295
+ },
+ {
+ "epoch": 4.111498257839721,
+ "grad_norm": 0.0634903833270073,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 2.8456456661224365,
+ "step": 296
+ },
+ {
+ "epoch": 4.125435540069686,
+ "grad_norm": 0.05771167576313019,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 2.8387022018432617,
+ "step": 297
+ },
+ {
+ "epoch": 4.139372822299651,
+ "grad_norm": 0.05440817028284073,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 2.841508388519287,
+ "step": 298
+ },
+ {
+ "epoch": 4.153310104529616,
+ "grad_norm": 0.0550493523478508,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 2.833531618118286,
+ "step": 299
+ },
+ {
+ "epoch": 4.167247386759582,
+ "grad_norm": 0.04252418503165245,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 2.8254685401916504,
+ "step": 300
+ },
+ {
+ "epoch": 4.181184668989547,
+ "grad_norm": 0.042833492159843445,
+ "learning_rate": 0.000595227087813793,
+ "loss": 2.8289575576782227,
+ "step": 301
+ },
+ {
+ "epoch": 4.195121951219512,
+ "grad_norm": 0.038360171020030975,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 2.836550712585449,
+ "step": 302
+ },
+ {
+ "epoch": 4.209059233449477,
+ "grad_norm": 0.03655572608113289,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 2.8222808837890625,
+ "step": 303
+ },
+ {
+ "epoch": 4.2229965156794425,
+ "grad_norm": 0.03215418756008148,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 2.818066120147705,
+ "step": 304
+ },
+ {
+ "epoch": 4.2369337979094075,
+ "grad_norm": 0.031601350754499435,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 2.809666395187378,
+ "step": 305
+ },
+ {
+ "epoch": 4.2508710801393725,
+ "grad_norm": 0.03221198916435242,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 2.8137047290802,
+ "step": 306
+ },
+ {
+ "epoch": 4.264808362369338,
+ "grad_norm": 0.03107992745935917,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 2.822840690612793,
+ "step": 307
+ },
+ {
+ "epoch": 4.2787456445993035,
+ "grad_norm": 0.032328397035598755,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 2.8012430667877197,
+ "step": 308
+ },
+ {
+ "epoch": 4.2926829268292686,
+ "grad_norm": 0.029429661110043526,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 2.806474447250366,
+ "step": 309
+ },
+ {
+ "epoch": 4.306620209059234,
+ "grad_norm": 0.03430404141545296,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 2.7917184829711914,
+ "step": 310
+ },
+ {
+ "epoch": 4.320557491289199,
+ "grad_norm": 0.03543714061379433,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 2.798417091369629,
+ "step": 311
+ },
+ {
+ "epoch": 4.334494773519164,
+ "grad_norm": 0.04099712520837784,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 2.793095588684082,
+ "step": 312
+ },
+ {
+ "epoch": 4.348432055749129,
+ "grad_norm": 0.046607524156570435,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 2.807809829711914,
+ "step": 313
+ },
+ {
+ "epoch": 4.362369337979094,
+ "grad_norm": 0.048917099833488464,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 2.8017094135284424,
+ "step": 314
+ },
+ {
+ "epoch": 4.376306620209059,
+ "grad_norm": 0.05221967399120331,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 2.7990846633911133,
+ "step": 315
+ },
+ {
+ "epoch": 4.390243902439025,
+ "grad_norm": 0.05263383314013481,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 2.810983657836914,
+ "step": 316
+ },
+ {
+ "epoch": 4.40418118466899,
+ "grad_norm": 0.04930173233151436,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 2.7989790439605713,
+ "step": 317
+ },
+ {
+ "epoch": 4.418118466898955,
+ "grad_norm": 0.05484982952475548,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 2.7852704524993896,
+ "step": 318
+ },
+ {
+ "epoch": 4.43205574912892,
+ "grad_norm": 0.04991631582379341,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 2.7944440841674805,
+ "step": 319
+ },
+ {
+ "epoch": 4.445993031358885,
+ "grad_norm": 0.034856196492910385,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 2.7851901054382324,
+ "step": 320
+ },
+ {
+ "epoch": 4.45993031358885,
+ "grad_norm": 0.038153354078531265,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 2.777986526489258,
+ "step": 321
+ },
+ {
+ "epoch": 4.473867595818815,
+ "grad_norm": 0.04138852655887604,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 2.7781941890716553,
+ "step": 322
+ },
+ {
+ "epoch": 4.487804878048781,
+ "grad_norm": 0.04018627852201462,
+ "learning_rate": 0.00059412296156686,
+ "loss": 2.7934627532958984,
+ "step": 323
+ },
+ {
+ "epoch": 4.501742160278746,
+ "grad_norm": 0.03592175245285034,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 2.780992031097412,
+ "step": 324
+ },
+ {
+ "epoch": 4.515679442508711,
+ "grad_norm": 0.034620169550180435,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 2.7754831314086914,
+ "step": 325
+ },
+ {
+ "epoch": 4.529616724738676,
+ "grad_norm": 0.03244427964091301,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 2.7737035751342773,
+ "step": 326
+ },
+ {
+ "epoch": 4.543554006968641,
+ "grad_norm": 0.0361688956618309,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 2.7515547275543213,
+ "step": 327
+ },
+ {
+ "epoch": 4.557491289198606,
+ "grad_norm": 0.03722141310572624,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 2.769011974334717,
+ "step": 328
+ },
+ {
+ "epoch": 4.571428571428571,
+ "grad_norm": 0.0431540347635746,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 2.7755231857299805,
+ "step": 329
+ },
+ {
+ "epoch": 4.585365853658536,
+ "grad_norm": 0.04175153374671936,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 2.767477512359619,
+ "step": 330
+ },
+ {
+ "epoch": 4.599303135888501,
+ "grad_norm": 0.04184363782405853,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 2.775984048843384,
+ "step": 331
+ },
+ {
+ "epoch": 4.613240418118467,
+ "grad_norm": 0.04054928943514824,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 2.7669193744659424,
+ "step": 332
+ },
+ {
+ "epoch": 4.627177700348432,
+ "grad_norm": 0.039442483335733414,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 2.7557153701782227,
+ "step": 333
+ },
+ {
+ "epoch": 4.641114982578397,
+ "grad_norm": 0.04334413632750511,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 2.76118803024292,
+ "step": 334
+ },
+ {
+ "epoch": 4.655052264808362,
+ "grad_norm": 0.04821610450744629,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 2.755122184753418,
+ "step": 335
+ },
+ {
+ "epoch": 4.668989547038327,
+ "grad_norm": 0.05259500443935394,
+ "learning_rate": 0.000593417134927994,
+ "loss": 2.763730764389038,
+ "step": 336
+ },
+ {
+ "epoch": 4.682926829268292,
+ "grad_norm": 0.05462924763560295,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 2.7538461685180664,
+ "step": 337
+ },
+ {
+ "epoch": 4.696864111498257,
+ "grad_norm": 0.0755213275551796,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 2.7565760612487793,
+ "step": 338
+ },
+ {
+ "epoch": 4.710801393728223,
+ "grad_norm": 0.09036742150783539,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 2.7742908000946045,
+ "step": 339
+ },
+ {
+ "epoch": 4.724738675958188,
+ "grad_norm": 0.07687609642744064,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 2.7776336669921875,
+ "step": 340
+ },
+ {
+ "epoch": 4.7386759581881535,
+ "grad_norm": 0.06167550012469292,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 2.7571194171905518,
+ "step": 341
+ },
+ {
+ "epoch": 4.7526132404181185,
+ "grad_norm": 0.05498389154672623,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 2.766094207763672,
+ "step": 342
+ },
+ {
+ "epoch": 4.7665505226480835,
+ "grad_norm": 0.056576769798994064,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 2.759814977645874,
+ "step": 343
+ },
+ {
+ "epoch": 4.780487804878049,
+ "grad_norm": 0.05287479609251022,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 2.7653424739837646,
+ "step": 344
+ },
+ {
+ "epoch": 4.794425087108014,
+ "grad_norm": 0.05006227642297745,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 2.746647357940674,
+ "step": 345
+ },
+ {
+ "epoch": 4.80836236933798,
+ "grad_norm": 0.0428367517888546,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 2.748798131942749,
+ "step": 346
+ },
+ {
+ "epoch": 4.822299651567945,
+ "grad_norm": 0.04800762981176376,
+ "learning_rate": 0.000592789007481325,
+ "loss": 2.7554736137390137,
+ "step": 347
+ },
+ {
+ "epoch": 4.83623693379791,
+ "grad_norm": 0.04984979331493378,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 2.738473415374756,
+ "step": 348
+ },
+ {
+ "epoch": 4.850174216027875,
+ "grad_norm": 0.0404483824968338,
+ "learning_rate": 0.000592671765466188,
+ "loss": 2.7486448287963867,
+ "step": 349
+ },
+ {
+ "epoch": 4.86411149825784,
+ "grad_norm": 0.03785628825426102,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 2.7317609786987305,
+ "step": 350
+ },
+ {
+ "epoch": 4.878048780487805,
+ "grad_norm": 0.04446744546294212,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 2.750211238861084,
+ "step": 351
+ },
+ {
+ "epoch": 4.89198606271777,
+ "grad_norm": 0.0561913438141346,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 2.7429988384246826,
+ "step": 352
+ },
+ {
+ "epoch": 4.905923344947735,
+ "grad_norm": 0.06165647506713867,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 2.7389450073242188,
+ "step": 353
+ },
+ {
+ "epoch": 4.9198606271777,
+ "grad_norm": 0.04764621704816818,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 2.73350191116333,
+ "step": 354
+ },
+ {
+ "epoch": 4.933797909407666,
+ "grad_norm": 0.044994648545980453,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 2.7248117923736572,
+ "step": 355
+ },
+ {
+ "epoch": 4.947735191637631,
+ "grad_norm": 0.044408753514289856,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 2.7337656021118164,
+ "step": 356
+ },
+ {
+ "epoch": 4.961672473867596,
+ "grad_norm": 0.04064524918794632,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 2.732268810272217,
+ "step": 357
+ },
+ {
+ "epoch": 4.975609756097561,
+ "grad_norm": 0.036805033683776855,
+ "learning_rate": 0.000592132629452205,
+ "loss": 2.7253570556640625,
+ "step": 358
+ },
+ {
+ "epoch": 4.989547038327526,
+ "grad_norm": 0.03321084752678871,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 2.713101863861084,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.027469763532280922,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 2.0416059494018555,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 0.6877280473709106,
+ "eval_runtime": 37.7369,
+ "eval_samples_per_second": 64.711,
+ "eval_steps_per_second": 0.53,
+ "step": 360
+ },
+ {
+ "epoch": 5.013937282229965,
+ "grad_norm": 0.035481102764606476,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 2.6966300010681152,
+ "step": 361
+ },
+ {
+ "epoch": 5.02787456445993,
+ "grad_norm": 0.04075651615858078,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 2.701756000518799,
+ "step": 362
+ },
+ {
+ "epoch": 5.041811846689895,
+ "grad_norm": 0.03847100958228111,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 2.69856333732605,
+ "step": 363
+ },
+ {
+ "epoch": 5.055749128919861,
+ "grad_norm": 0.0439726859331131,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 2.6956000328063965,
+ "step": 364
+ },
+ {
+ "epoch": 5.069686411149826,
+ "grad_norm": 0.043925508856773376,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 2.7065486907958984,
+ "step": 365
+ },
+ {
+ "epoch": 5.083623693379791,
+ "grad_norm": 0.05349253863096237,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 2.7032744884490967,
+ "step": 366
+ },
+ {
+ "epoch": 5.097560975609756,
+ "grad_norm": 0.04957803711295128,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 2.6988987922668457,
+ "step": 367
+ },
+ {
+ "epoch": 5.111498257839721,
+ "grad_norm": 0.047412872314453125,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 2.6921496391296387,
+ "step": 368
+ },
+ {
+ "epoch": 5.125435540069686,
+ "grad_norm": 0.047648534178733826,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 2.691765308380127,
+ "step": 369
+ },
+ {
+ "epoch": 5.139372822299651,
+ "grad_norm": 0.05226794257760048,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 2.7006325721740723,
+ "step": 370
+ },
+ {
+ "epoch": 5.153310104529616,
+ "grad_norm": 0.054041698575019836,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 2.692309617996216,
+ "step": 371
+ },
+ {
+ "epoch": 5.167247386759582,
+ "grad_norm": 0.039680954068899155,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 2.685819149017334,
+ "step": 372
+ },
+ {
+ "epoch": 5.181184668989547,
+ "grad_norm": 0.04104545712471008,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 2.6913204193115234,
+ "step": 373
+ },
+ {
+ "epoch": 5.195121951219512,
+ "grad_norm": 0.037274859845638275,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 2.692324161529541,
+ "step": 374
+ },
+ {
+ "epoch": 5.209059233449477,
+ "grad_norm": 0.038038160651922226,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 2.6824822425842285,
+ "step": 375
+ },
+ {
+ "epoch": 5.2229965156794425,
+ "grad_norm": 0.04105817899107933,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 2.6830384731292725,
+ "step": 376
+ },
+ {
+ "epoch": 5.2369337979094075,
+ "grad_norm": 0.04050105810165405,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 2.676032066345215,
+ "step": 377
+ },
+ {
+ "epoch": 5.2508710801393725,
+ "grad_norm": 0.03780475631356239,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 2.6765289306640625,
+ "step": 378
+ },
+ {
+ "epoch": 5.264808362369338,
+ "grad_norm": 0.03484981507062912,
+ "learning_rate": 0.000590801330015633,
+ "loss": 2.6808249950408936,
+ "step": 379
+ },
+ {
+ "epoch": 5.2787456445993035,
+ "grad_norm": 0.03091316856443882,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 2.679382562637329,
+ "step": 380
+ },
+ {
+ "epoch": 5.2926829268292686,
+ "grad_norm": 0.03255805745720863,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 2.685393810272217,
+ "step": 381
+ },
+ {
+ "epoch": 5.306620209059234,
+ "grad_norm": 0.037457507103681564,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 2.6710822582244873,
+ "step": 382
+ },
+ {
+ "epoch": 5.320557491289199,
+ "grad_norm": 0.03654669225215912,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 2.6762566566467285,
+ "step": 383
+ },
+ {
+ "epoch": 5.334494773519164,
+ "grad_norm": 0.03590100631117821,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 2.6788597106933594,
+ "step": 384
+ },
+ {
+ "epoch": 5.348432055749129,
+ "grad_norm": 0.03647424280643463,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 2.6785120964050293,
+ "step": 385
+ },
+ {
+ "epoch": 5.362369337979094,
+ "grad_norm": 0.035309527069330215,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 2.679274082183838,
+ "step": 386
+ },
+ {
+ "epoch": 5.376306620209059,
+ "grad_norm": 0.035797759890556335,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 2.663790702819824,
+ "step": 387
+ },
+ {
+ "epoch": 5.390243902439025,
+ "grad_norm": 0.034813620150089264,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 2.661909818649292,
+ "step": 388
+ },
+ {
+ "epoch": 5.40418118466899,
+ "grad_norm": 0.03814723342657089,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 2.6648290157318115,
+ "step": 389
+ },
+ {
+ "epoch": 5.418118466898955,
+ "grad_norm": 0.03819345310330391,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 2.661344528198242,
+ "step": 390
+ },
+ {
+ "epoch": 5.43205574912892,
+ "grad_norm": 0.05034249275922775,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 2.6723971366882324,
+ "step": 391
+ },
+ {
+ "epoch": 5.445993031358885,
+ "grad_norm": 0.05302279815077782,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 2.6722166538238525,
+ "step": 392
+ },
+ {
+ "epoch": 5.45993031358885,
+ "grad_norm": 0.04576520621776581,
+ "learning_rate": 0.000589856958339686,
+ "loss": 2.650954008102417,
+ "step": 393
+ },
+ {
+ "epoch": 5.473867595818815,
+ "grad_norm": 0.04785747826099396,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 2.658161163330078,
+ "step": 394
+ },
+ {
+ "epoch": 5.487804878048781,
+ "grad_norm": 0.0524369515478611,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 2.66957688331604,
+ "step": 395
+ },
+ {
+ "epoch": 5.501742160278746,
+ "grad_norm": 0.05258813500404358,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 2.66046142578125,
+ "step": 396
+ },
+ {
+ "epoch": 5.515679442508711,
+ "grad_norm": 0.05156350135803223,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 2.6339619159698486,
+ "step": 397
+ },
+ {
+ "epoch": 5.529616724738676,
+ "grad_norm": 0.04716484993696213,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 2.656726837158203,
+ "step": 398
+ },
+ {
+ "epoch": 5.543554006968641,
+ "grad_norm": 0.048213694244623184,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 2.6740832328796387,
+ "step": 399
+ },
+ {
+ "epoch": 5.557491289198606,
+ "grad_norm": 0.046243470162153244,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 2.65981125831604,
+ "step": 400
+ },
+ {
+ "epoch": 5.571428571428571,
+ "grad_norm": 0.04331960901618004,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 2.637345790863037,
+ "step": 401
+ },
+ {
+ "epoch": 5.585365853658536,
+ "grad_norm": 0.04055584594607353,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 2.6382877826690674,
+ "step": 402
+ },
+ {
+ "epoch": 5.599303135888501,
+ "grad_norm": 0.046962495893239975,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 2.642883539199829,
+ "step": 403
+ },
+ {
+ "epoch": 5.613240418118467,
+ "grad_norm": 0.055259495973587036,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 2.6498947143554688,
+ "step": 404
+ },
+ {
+ "epoch": 5.627177700348432,
+ "grad_norm": 0.05768313631415367,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 2.6472978591918945,
+ "step": 405
+ },
+ {
+ "epoch": 5.641114982578397,
+ "grad_norm": 0.04900819808244705,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 2.6596455574035645,
+ "step": 406
+ },
+ {
+ "epoch": 5.655052264808362,
+ "grad_norm": 0.053204163908958435,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 2.6456780433654785,
+ "step": 407
+ },
+ {
+ "epoch": 5.668989547038327,
+ "grad_norm": 0.05327627807855606,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 2.651031494140625,
+ "step": 408
+ },
+ {
+ "epoch": 5.682926829268292,
+ "grad_norm": 0.050564929842948914,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 2.656858444213867,
+ "step": 409
+ },
+ {
+ "epoch": 5.696864111498257,
+ "grad_norm": 0.05613167583942413,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 2.6408069133758545,
+ "step": 410
+ },
+ {
+ "epoch": 5.710801393728223,
+ "grad_norm": 0.05399465933442116,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 2.6472203731536865,
+ "step": 411
+ },
+ {
+ "epoch": 5.724738675958188,
+ "grad_norm": 0.04919342324137688,
+ "learning_rate": 0.0005885028868537,
+ "loss": 2.656099319458008,
+ "step": 412
+ },
+ {
+ "epoch": 5.7386759581881535,
+ "grad_norm": 0.0552130751311779,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 2.6422126293182373,
+ "step": 413
+ },
+ {
+ "epoch": 5.7526132404181185,
+ "grad_norm": 0.05774940922856331,
+ "learning_rate": 0.000588355515561353,
+ "loss": 2.649722099304199,
+ "step": 414
+ },
+ {
+ "epoch": 5.7665505226480835,
+ "grad_norm": 0.04623311012983322,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 2.6475892066955566,
+ "step": 415
+ },
+ {
+ "epoch": 5.780487804878049,
+ "grad_norm": 0.04961073398590088,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 2.658733606338501,
+ "step": 416
+ },
+ {
+ "epoch": 5.794425087108014,
+ "grad_norm": 0.05006693676114082,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 2.6217124462127686,
+ "step": 417
+ },
+ {
+ "epoch": 5.80836236933798,
+ "grad_norm": 0.04175165295600891,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 2.632359027862549,
+ "step": 418
+ },
+ {
+ "epoch": 5.822299651567945,
+ "grad_norm": 0.0332355760037899,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 2.6406683921813965,
+ "step": 419
+ },
+ {
+ "epoch": 5.83623693379791,
+ "grad_norm": 0.0371745266020298,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 2.630310535430908,
+ "step": 420
+ },
+ {
+ "epoch": 5.850174216027875,
+ "grad_norm": 0.02940242365002632,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 2.6451711654663086,
+ "step": 421
+ },
+ {
+ "epoch": 5.86411149825784,
+ "grad_norm": 0.03578875586390495,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 2.637753486633301,
+ "step": 422
+ },
+ {
+ "epoch": 5.878048780487805,
+ "grad_norm": 0.03402113541960716,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 2.623744487762451,
+ "step": 423
+ },
+ {
+ "epoch": 5.89198606271777,
+ "grad_norm": 0.034094467759132385,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 2.63200044631958,
+ "step": 424
+ },
+ {
+ "epoch": 5.905923344947735,
+ "grad_norm": 0.03428930044174194,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 2.6219849586486816,
+ "step": 425
+ },
+ {
+ "epoch": 5.9198606271777,
+ "grad_norm": 0.033345405012369156,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 2.611741065979004,
+ "step": 426
+ },
+ {
+ "epoch": 5.933797909407666,
+ "grad_norm": 0.031680066138505936,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 2.6227869987487793,
+ "step": 427
+ },
+ {
+ "epoch": 5.947735191637631,
+ "grad_norm": 0.028066758066415787,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 2.6249539852142334,
+ "step": 428
+ },
+ {
+ "epoch": 5.961672473867596,
+ "grad_norm": 0.032918382436037064,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 2.6176412105560303,
+ "step": 429
+ },
+ {
+ "epoch": 5.975609756097561,
+ "grad_norm": 0.033349912613630295,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 2.6159720420837402,
+ "step": 430
+ },
+ {
+ "epoch": 5.989547038327526,
+ "grad_norm": 0.03317154198884964,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 2.619137763977051,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.025815341621637344,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 1.9473658800125122,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 0.6633820533752441,
+ "eval_runtime": 37.551,
+ "eval_samples_per_second": 65.032,
+ "eval_steps_per_second": 0.533,
+ "step": 432
+ },
+ {
+ "epoch": 6.013937282229965,
+ "grad_norm": 0.031342681497335434,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 2.5931155681610107,
+ "step": 433
+ },
+ {
+ "epoch": 6.02787456445993,
+ "grad_norm": 0.04343045502901077,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 2.587559700012207,
+ "step": 434
+ },
+ {
+ "epoch": 6.041811846689895,
+ "grad_norm": 0.052591342478990555,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 2.5950260162353516,
+ "step": 435
+ },
+ {
+ "epoch": 6.055749128919861,
+ "grad_norm": 0.05538717657327652,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 2.600468635559082,
+ "step": 436
+ },
+ {
+ "epoch": 6.069686411149826,
+ "grad_norm": 0.05505542829632759,
+ "learning_rate": 0.000586594769789753,
+ "loss": 2.5905046463012695,
+ "step": 437
+ },
+ {
+ "epoch": 6.083623693379791,
+ "grad_norm": 0.05229569226503372,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 2.591856002807617,
+ "step": 438
+ },
+ {
+ "epoch": 6.097560975609756,
+ "grad_norm": 0.05032522976398468,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 2.577693462371826,
+ "step": 439
+ },
+ {
+ "epoch": 6.111498257839721,
+ "grad_norm": 0.04670557379722595,
+ "learning_rate": 0.000586356179990052,
+ "loss": 2.5835001468658447,
+ "step": 440
+ },
+ {
+ "epoch": 6.125435540069686,
+ "grad_norm": 0.0537918359041214,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 2.596343517303467,
+ "step": 441
+ },
+ {
+ "epoch": 6.139372822299651,
+ "grad_norm": 0.06328130513429642,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 2.5912466049194336,
+ "step": 442
+ },
+ {
+ "epoch": 6.153310104529616,
+ "grad_norm": 0.06647300720214844,
+ "learning_rate": 0.000586115535536849,
+ "loss": 2.589078426361084,
+ "step": 443
+ },
+ {
+ "epoch": 6.167247386759582,
+ "grad_norm": 0.06643359363079071,
+ "learning_rate": 0.000586034864430614,
+ "loss": 2.5956435203552246,
+ "step": 444
+ },
+ {
+ "epoch": 6.181184668989547,
+ "grad_norm": 0.05613892152905464,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 2.5922906398773193,
+ "step": 445
+ },
+ {
+ "epoch": 6.195121951219512,
+ "grad_norm": 0.05655102804303169,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 2.590651512145996,
+ "step": 446
+ },
+ {
+ "epoch": 6.209059233449477,
+ "grad_norm": 0.06806499511003494,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 2.589696168899536,
+ "step": 447
+ },
+ {
+ "epoch": 6.2229965156794425,
+ "grad_norm": 0.06616773456335068,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 2.5944786071777344,
+ "step": 448
+ },
+ {
+ "epoch": 6.2369337979094075,
+ "grad_norm": 0.05937796086072922,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 2.598313331604004,
+ "step": 449
+ },
+ {
+ "epoch": 6.2508710801393725,
+ "grad_norm": 0.05284281075000763,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 2.5805535316467285,
+ "step": 450
+ },
+ {
+ "epoch": 6.264808362369338,
+ "grad_norm": 0.04509073495864868,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 2.570598840713501,
+ "step": 451
+ },
+ {
+ "epoch": 6.2787456445993035,
+ "grad_norm": 0.05604032054543495,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 2.6077847480773926,
+ "step": 452
+ },
+ {
+ "epoch": 6.2926829268292686,
+ "grad_norm": 0.06662779301404953,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 2.578629493713379,
+ "step": 453
+ },
+ {
+ "epoch": 6.306620209059234,
+ "grad_norm": 0.0585545152425766,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 2.586427688598633,
+ "step": 454
+ },
+ {
+ "epoch": 6.320557491289199,
+ "grad_norm": 0.04736408591270447,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 2.5911552906036377,
+ "step": 455
+ },
+ {
+ "epoch": 6.334494773519164,
+ "grad_norm": 0.04474812000989914,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 2.5697641372680664,
+ "step": 456
+ },
+ {
+ "epoch": 6.348432055749129,
+ "grad_norm": 0.04312862828373909,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 2.566927671432495,
+ "step": 457
+ },
+ {
+ "epoch": 6.362369337979094,
+ "grad_norm": 0.03764902800321579,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 2.5947153568267822,
+ "step": 458
+ },
+ {
+ "epoch": 6.376306620209059,
+ "grad_norm": 0.03353014215826988,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 2.5777602195739746,
+ "step": 459
+ },
+ {
+ "epoch": 6.390243902439025,
+ "grad_norm": 0.033975999802351,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 2.5783305168151855,
+ "step": 460
+ },
+ {
+ "epoch": 6.40418118466899,
+ "grad_norm": 0.03363902121782303,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 2.5673155784606934,
+ "step": 461
+ },
+ {
+ "epoch": 6.418118466898955,
+ "grad_norm": 0.034326743334531784,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 2.55814790725708,
+ "step": 462
+ },
+ {
+ "epoch": 6.43205574912892,
+ "grad_norm": 0.03194424510002136,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 2.5688910484313965,
+ "step": 463
+ },
+ {
+ "epoch": 6.445993031358885,
+ "grad_norm": 0.029925566166639328,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 2.559793710708618,
+ "step": 464
+ },
+ {
+ "epoch": 6.45993031358885,
+ "grad_norm": 0.0290202796459198,
+ "learning_rate": 0.000584288196583439,
+ "loss": 2.555941581726074,
+ "step": 465
+ },
+ {
+ "epoch": 6.473867595818815,
+ "grad_norm": 0.030976103618741035,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 2.5576136112213135,
+ "step": 466
+ },
+ {
+ "epoch": 6.487804878048781,
+ "grad_norm": 0.030049985274672508,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 2.5645012855529785,
+ "step": 467
+ },
+ {
+ "epoch": 6.501742160278746,
+ "grad_norm": 0.031192071735858917,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 2.5691795349121094,
+ "step": 468
+ },
+ {
+ "epoch": 6.515679442508711,
+ "grad_norm": 0.03066888637840748,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 2.5597329139709473,
+ "step": 469
+ },
+ {
+ "epoch": 6.529616724738676,
+ "grad_norm": 0.031034760177135468,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 2.5749378204345703,
+ "step": 470
+ },
+ {
+ "epoch": 6.543554006968641,
+ "grad_norm": 0.03199351951479912,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 2.564612627029419,
+ "step": 471
+ },
+ {
+ "epoch": 6.557491289198606,
+ "grad_norm": 0.027530083432793617,
+ "learning_rate": 0.000583683733328402,
+ "loss": 2.568983793258667,
+ "step": 472
+ },
+ {
+ "epoch": 6.571428571428571,
+ "grad_norm": 0.02841697260737419,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 2.551283836364746,
+ "step": 473
+ },
+ {
+ "epoch": 6.585365853658536,
+ "grad_norm": 0.03285123407840729,
+ "learning_rate": 0.000583508993216961,
+ "loss": 2.5753087997436523,
+ "step": 474
+ },
+ {
+ "epoch": 6.599303135888501,
+ "grad_norm": 0.0347592793405056,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 2.56103253364563,
+ "step": 475
+ },
+ {
+ "epoch": 6.613240418118467,
+ "grad_norm": 0.03750046715140343,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 2.5542030334472656,
+ "step": 476
+ },
+ {
+ "epoch": 6.627177700348432,
+ "grad_norm": 0.04254816472530365,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 2.5616328716278076,
+ "step": 477
+ },
+ {
+ "epoch": 6.641114982578397,
+ "grad_norm": 0.04370047152042389,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 2.5646753311157227,
+ "step": 478
+ },
+ {
+ "epoch": 6.655052264808362,
+ "grad_norm": 0.03816768899559975,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 2.5603585243225098,
+ "step": 479
+ },
+ {
+ "epoch": 6.668989547038327,
+ "grad_norm": 0.034390103071928024,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 2.548727512359619,
+ "step": 480
+ },
+ {
+ "epoch": 6.682926829268292,
+ "grad_norm": 0.0366024374961853,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 2.555230140686035,
+ "step": 481
+ },
+ {
+ "epoch": 6.696864111498257,
+ "grad_norm": 0.03938084468245506,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 2.5586276054382324,
+ "step": 482
+ },
+ {
+ "epoch": 6.710801393728223,
+ "grad_norm": 0.04110350087285042,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 2.542633056640625,
+ "step": 483
+ },
+ {
+ "epoch": 6.724738675958188,
+ "grad_norm": 0.03961770981550217,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 2.5494391918182373,
+ "step": 484
+ },
+ {
+ "epoch": 6.7386759581881535,
+ "grad_norm": 0.03677491098642349,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 2.563061475753784,
+ "step": 485
+ },
+ {
+ "epoch": 6.7526132404181185,
+ "grad_norm": 0.03818432241678238,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 2.5586929321289062,
+ "step": 486
+ },
+ {
+ "epoch": 6.7665505226480835,
+ "grad_norm": 0.033873286098241806,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 2.5477757453918457,
+ "step": 487
+ },
+ {
+ "epoch": 6.780487804878049,
+ "grad_norm": 0.03699466213583946,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 2.541106700897217,
+ "step": 488
+ },
+ {
+ "epoch": 6.794425087108014,
+ "grad_norm": 0.03866403177380562,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 2.5336339473724365,
+ "step": 489
+ },
+ {
+ "epoch": 6.80836236933798,
+ "grad_norm": 0.03235912322998047,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 2.5439155101776123,
+ "step": 490
+ },
+ {
+ "epoch": 6.822299651567945,
+ "grad_norm": 0.03776629641652107,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 2.5592265129089355,
+ "step": 491
+ },
+ {
+ "epoch": 6.83623693379791,
+ "grad_norm": 0.04273561015725136,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 2.5432629585266113,
+ "step": 492
+ },
+ {
+ "epoch": 6.850174216027875,
+ "grad_norm": 0.04358302056789398,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 2.5543787479400635,
+ "step": 493
+ },
+ {
+ "epoch": 6.86411149825784,
+ "grad_norm": 0.03629252687096596,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 2.562788963317871,
+ "step": 494
+ },
+ {
+ "epoch": 6.878048780487805,
+ "grad_norm": 0.03263307362794876,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 2.538097381591797,
+ "step": 495
+ },
+ {
+ "epoch": 6.89198606271777,
+ "grad_norm": 0.036420464515686035,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 2.554645299911499,
+ "step": 496
+ },
+ {
+ "epoch": 6.905923344947735,
+ "grad_norm": 0.035384103655815125,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 2.5465738773345947,
+ "step": 497
+ },
+ {
+ "epoch": 6.9198606271777,
+ "grad_norm": 0.03658696636557579,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 2.536980152130127,
+ "step": 498
+ },
+ {
+ "epoch": 6.933797909407666,
+ "grad_norm": 0.036053478717803955,
+ "learning_rate": 0.00058124865204371,
+ "loss": 2.528345823287964,
+ "step": 499
+ },
+ {
+ "epoch": 6.947735191637631,
+ "grad_norm": 0.03789985179901123,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 2.544621706008911,
+ "step": 500
+ },
+ {
+ "epoch": 6.961672473867596,
+ "grad_norm": 0.03835926949977875,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 2.5407447814941406,
+ "step": 501
+ },
+ {
+ "epoch": 6.975609756097561,
+ "grad_norm": 0.04318110644817352,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 2.5537543296813965,
+ "step": 502
+ },
+ {
+ "epoch": 6.989547038327526,
+ "grad_norm": 0.0451606847345829,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 2.5201051235198975,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.03245232254266739,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 1.9085171222686768,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 0.6467739343643188,
+ "eval_runtime": 38.2431,
+ "eval_samples_per_second": 63.855,
+ "eval_steps_per_second": 0.523,
+ "step": 504
+ },
+ {
+ "epoch": 7.013937282229965,
+ "grad_norm": 0.03788387402892113,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 2.493765354156494,
+ "step": 505
+ },
+ {
+ "epoch": 7.02787456445993,
+ "grad_norm": 0.04437057301402092,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 2.509481430053711,
+ "step": 506
+ },
+ {
+ "epoch": 7.041811846689895,
+ "grad_norm": 0.047125279903411865,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 2.504810333251953,
+ "step": 507
+ },
+ {
+ "epoch": 7.055749128919861,
+ "grad_norm": 0.05385598540306091,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 2.5145554542541504,
+ "step": 508
+ },
+ {
+ "epoch": 7.069686411149826,
+ "grad_norm": 0.05404049903154373,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 2.500851631164551,
+ "step": 509
+ },
+ {
+ "epoch": 7.083623693379791,
+ "grad_norm": 0.05455894395709038,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 2.4832260608673096,
+ "step": 510
+ },
+ {
+ "epoch": 7.097560975609756,
+ "grad_norm": 0.0558103583753109,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 2.524315118789673,
+ "step": 511
+ },
+ {
+ "epoch": 7.111498257839721,
+ "grad_norm": 0.057283915579319,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 2.508044719696045,
+ "step": 512
+ },
+ {
+ "epoch": 7.125435540069686,
+ "grad_norm": 0.061027105897665024,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 2.5139050483703613,
+ "step": 513
+ },
+ {
+ "epoch": 7.139372822299651,
+ "grad_norm": 0.06873901933431625,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 2.507343053817749,
+ "step": 514
+ },
+ {
+ "epoch": 7.153310104529616,
+ "grad_norm": 0.06900028139352798,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 2.520263195037842,
+ "step": 515
+ },
+ {
+ "epoch": 7.167247386759582,
+ "grad_norm": 0.06029877811670303,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 2.5027518272399902,
+ "step": 516
+ },
+ {
+ "epoch": 7.181184668989547,
+ "grad_norm": 0.06097294017672539,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 2.512634515762329,
+ "step": 517
+ },
+ {
+ "epoch": 7.195121951219512,
+ "grad_norm": 0.06655558943748474,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 2.5014023780822754,
+ "step": 518
+ },
+ {
+ "epoch": 7.209059233449477,
+ "grad_norm": 0.06343840062618256,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 2.5144271850585938,
+ "step": 519
+ },
+ {
+ "epoch": 7.2229965156794425,
+ "grad_norm": 0.08325106650590897,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 2.5239195823669434,
+ "step": 520
+ },
+ {
+ "epoch": 7.2369337979094075,
+ "grad_norm": 0.07948101311922073,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 2.5223121643066406,
+ "step": 521
+ },
+ {
+ "epoch": 7.2508710801393725,
+ "grad_norm": 0.06717163324356079,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 2.5102391242980957,
+ "step": 522
+ },
+ {
+ "epoch": 7.264808362369338,
+ "grad_norm": 0.05896087363362312,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 2.51560640335083,
+ "step": 523
+ },
+ {
+ "epoch": 7.2787456445993035,
+ "grad_norm": 0.05562684312462807,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 2.5021753311157227,
+ "step": 524
+ },
+ {
+ "epoch": 7.2926829268292686,
+ "grad_norm": 0.043904103338718414,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 2.4952425956726074,
+ "step": 525
+ },
+ {
+ "epoch": 7.306620209059234,
+ "grad_norm": 0.0436740480363369,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 2.515303611755371,
+ "step": 526
+ },
+ {
+ "epoch": 7.320557491289199,
+ "grad_norm": 0.0395866297185421,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 2.5101678371429443,
+ "step": 527
+ },
+ {
+ "epoch": 7.334494773519164,
+ "grad_norm": 0.039552897214889526,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 2.5090293884277344,
+ "step": 528
+ },
+ {
+ "epoch": 7.348432055749129,
+ "grad_norm": 0.03839687630534172,
+ "learning_rate": 0.000578351407086301,
+ "loss": 2.505296468734741,
+ "step": 529
+ },
+ {
+ "epoch": 7.362369337979094,
+ "grad_norm": 0.042542796581983566,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 2.49535870552063,
+ "step": 530
+ },
+ {
+ "epoch": 7.376306620209059,
+ "grad_norm": 0.044322993606328964,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 2.4890050888061523,
+ "step": 531
+ },
+ {
+ "epoch": 7.390243902439025,
+ "grad_norm": 0.04029953107237816,
+ "learning_rate": 0.000578050665972623,
+ "loss": 2.500995397567749,
+ "step": 532
+ },
+ {
+ "epoch": 7.40418118466899,
+ "grad_norm": 0.044392652809619904,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 2.505852222442627,
+ "step": 533
+ },
+ {
+ "epoch": 7.418118466898955,
+ "grad_norm": 0.04363880679011345,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 2.4939942359924316,
+ "step": 534
+ },
+ {
+ "epoch": 7.43205574912892,
+ "grad_norm": 0.03960833698511124,
+ "learning_rate": 0.000577747930429834,
+ "loss": 2.507826805114746,
+ "step": 535
+ },
+ {
+ "epoch": 7.445993031358885,
+ "grad_norm": 0.03880009427666664,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 2.4876725673675537,
+ "step": 536
+ },
+ {
+ "epoch": 7.45993031358885,
+ "grad_norm": 0.034344322979450226,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 2.5032553672790527,
+ "step": 537
+ },
+ {
+ "epoch": 7.473867595818815,
+ "grad_norm": 0.030360646545886993,
+ "learning_rate": 0.00057744320265311,
+ "loss": 2.4887325763702393,
+ "step": 538
+ },
+ {
+ "epoch": 7.487804878048781,
+ "grad_norm": 0.030478516593575478,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 2.5041327476501465,
+ "step": 539
+ },
+ {
+ "epoch": 7.501742160278746,
+ "grad_norm": 0.030038833618164062,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 2.488068103790283,
+ "step": 540
+ },
+ {
+ "epoch": 7.515679442508711,
+ "grad_norm": 0.03227488324046135,
+ "learning_rate": 0.000577136484852073,
+ "loss": 2.4851627349853516,
+ "step": 541
+ },
+ {
+ "epoch": 7.529616724738676,
+ "grad_norm": 0.03053610771894455,
+ "learning_rate": 0.000577033803741424,
+ "loss": 2.48903226852417,
+ "step": 542
+ },
+ {
+ "epoch": 7.543554006968641,
+ "grad_norm": 0.030809711664915085,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 2.487685203552246,
+ "step": 543
+ },
+ {
+ "epoch": 7.557491289198606,
+ "grad_norm": 0.03001537173986435,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 2.4998037815093994,
+ "step": 544
+ },
+ {
+ "epoch": 7.571428571428571,
+ "grad_norm": 0.028761114925146103,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 2.4887194633483887,
+ "step": 545
+ },
+ {
+ "epoch": 7.585365853658536,
+ "grad_norm": 0.028289001435041428,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 2.4748306274414062,
+ "step": 546
+ },
+ {
+ "epoch": 7.599303135888501,
+ "grad_norm": 0.028406348079442978,
+ "learning_rate": 0.00057651708808768,
+ "loss": 2.490642786026001,
+ "step": 547
+ },
+ {
+ "epoch": 7.613240418118467,
+ "grad_norm": 0.027616780251264572,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 2.4816768169403076,
+ "step": 548
+ },
+ {
+ "epoch": 7.627177700348432,
+ "grad_norm": 0.028579063713550568,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 2.49285888671875,
+ "step": 549
+ },
+ {
+ "epoch": 7.641114982578397,
+ "grad_norm": 0.032302722334861755,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 2.4891176223754883,
+ "step": 550
+ },
+ {
+ "epoch": 7.655052264808362,
+ "grad_norm": 0.03428734466433525,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 2.4945361614227295,
+ "step": 551
+ },
+ {
+ "epoch": 7.668989547038327,
+ "grad_norm": 0.03326137363910675,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 2.483844518661499,
+ "step": 552
+ },
+ {
+ "epoch": 7.682926829268292,
+ "grad_norm": 0.03136003762483597,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 2.4965500831604004,
+ "step": 553
+ },
+ {
+ "epoch": 7.696864111498257,
+ "grad_norm": 0.031299516558647156,
+ "learning_rate": 0.000575784433093151,
+ "loss": 2.4755914211273193,
+ "step": 554
+ },
+ {
+ "epoch": 7.710801393728223,
+ "grad_norm": 0.030511915683746338,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 2.4844446182250977,
+ "step": 555
+ },
+ {
+ "epoch": 7.724738675958188,
+ "grad_norm": 0.03106229193508625,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 2.4614830017089844,
+ "step": 556
+ },
+ {
+ "epoch": 7.7386759581881535,
+ "grad_norm": 0.032561615109443665,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 2.476231813430786,
+ "step": 557
+ },
+ {
+ "epoch": 7.7526132404181185,
+ "grad_norm": 0.03334634751081467,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 2.4722485542297363,
+ "step": 558
+ },
+ {
+ "epoch": 7.7665505226480835,
+ "grad_norm": 0.03567497059702873,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 2.471876621246338,
+ "step": 559
+ },
+ {
+ "epoch": 7.780487804878049,
+ "grad_norm": 0.038662221282720566,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 2.4947409629821777,
+ "step": 560
+ },
+ {
+ "epoch": 7.794425087108014,
+ "grad_norm": 0.036901816725730896,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 2.470515489578247,
+ "step": 561
+ },
+ {
+ "epoch": 7.80836236933798,
+ "grad_norm": 0.03382178768515587,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 2.4678587913513184,
+ "step": 562
+ },
+ {
+ "epoch": 7.822299651567945,
+ "grad_norm": 0.03480829298496246,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 2.4690866470336914,
+ "step": 563
+ },
+ {
+ "epoch": 7.83623693379791,
+ "grad_norm": 0.03593127429485321,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 2.491703748703003,
+ "step": 564
+ },
+ {
+ "epoch": 7.850174216027875,
+ "grad_norm": 0.03532601520419121,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 2.468522548675537,
+ "step": 565
+ },
+ {
+ "epoch": 7.86411149825784,
+ "grad_norm": 0.035680219531059265,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 2.4759652614593506,
+ "step": 566
+ },
+ {
+ "epoch": 7.878048780487805,
+ "grad_norm": 0.03417263925075531,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 2.4931888580322266,
+ "step": 567
+ },
+ {
+ "epoch": 7.89198606271777,
+ "grad_norm": 0.03273053467273712,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 2.466641426086426,
+ "step": 568
+ },
+ {
+ "epoch": 7.905923344947735,
+ "grad_norm": 0.032283321022987366,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 2.466756820678711,
+ "step": 569
+ },
+ {
+ "epoch": 7.9198606271777,
+ "grad_norm": 0.03162473440170288,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 2.4725847244262695,
+ "step": 570
+ },
+ {
+ "epoch": 7.933797909407666,
+ "grad_norm": 0.03218452259898186,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 2.46532940864563,
+ "step": 571
+ },
+ {
+ "epoch": 7.947735191637631,
+ "grad_norm": 0.03216313198208809,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 2.4749364852905273,
+ "step": 572
+ },
+ {
+ "epoch": 7.961672473867596,
+ "grad_norm": 0.03091583214700222,
+ "learning_rate": 0.000573741597999996,
+ "loss": 2.470108985900879,
+ "step": 573
+ },
+ {
+ "epoch": 7.975609756097561,
+ "grad_norm": 0.028130974620580673,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 2.466053009033203,
+ "step": 574
+ },
+ {
+ "epoch": 7.989547038327526,
+ "grad_norm": 0.03071889653801918,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 2.4787344932556152,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.02555985376238823,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 1.8408641815185547,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 0.6343774199485779,
+ "eval_runtime": 38.5533,
+ "eval_samples_per_second": 63.341,
+ "eval_steps_per_second": 0.519,
+ "step": 576
+ },
+ {
+ "epoch": 8.013937282229966,
+ "grad_norm": 0.03359892964363098,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 2.4359030723571777,
+ "step": 577
+ },
+ {
+ "epoch": 8.02787456445993,
+ "grad_norm": 0.05054016411304474,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 2.4193553924560547,
+ "step": 578
+ },
+ {
+ "epoch": 8.041811846689896,
+ "grad_norm": 0.062336456030607224,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 2.4455740451812744,
+ "step": 579
+ },
+ {
+ "epoch": 8.05574912891986,
+ "grad_norm": 0.06716352701187134,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 2.4429545402526855,
+ "step": 580
+ },
+ {
+ "epoch": 8.069686411149826,
+ "grad_norm": 0.06647022068500519,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 2.4446518421173096,
+ "step": 581
+ },
+ {
+ "epoch": 8.08362369337979,
+ "grad_norm": 0.0826159194111824,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 2.436643600463867,
+ "step": 582
+ },
+ {
+ "epoch": 8.097560975609756,
+ "grad_norm": 0.08472150564193726,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 2.451641082763672,
+ "step": 583
+ },
+ {
+ "epoch": 8.111498257839722,
+ "grad_norm": 0.07912597805261612,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 2.447244167327881,
+ "step": 584
+ },
+ {
+ "epoch": 8.125435540069686,
+ "grad_norm": 0.0796087384223938,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 2.4437828063964844,
+ "step": 585
+ },
+ {
+ "epoch": 8.139372822299652,
+ "grad_norm": 0.07414955645799637,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 2.437047004699707,
+ "step": 586
+ },
+ {
+ "epoch": 8.153310104529616,
+ "grad_norm": 0.06763316690921783,
+ "learning_rate": 0.000572185929672906,
+ "loss": 2.446570873260498,
+ "step": 587
+ },
+ {
+ "epoch": 8.167247386759582,
+ "grad_norm": 0.05742042511701584,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 2.445460796356201,
+ "step": 588
+ },
+ {
+ "epoch": 8.181184668989546,
+ "grad_norm": 0.0572611466050148,
+ "learning_rate": 0.000571960215520345,
+ "loss": 2.4439504146575928,
+ "step": 589
+ },
+ {
+ "epoch": 8.195121951219512,
+ "grad_norm": 0.05339052528142929,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 2.4502882957458496,
+ "step": 590
+ },
+ {
+ "epoch": 8.209059233449477,
+ "grad_norm": 0.05900551751255989,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 2.450836658477783,
+ "step": 591
+ },
+ {
+ "epoch": 8.222996515679442,
+ "grad_norm": 0.06624466180801392,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 2.4539589881896973,
+ "step": 592
+ },
+ {
+ "epoch": 8.236933797909408,
+ "grad_norm": 0.06468363106250763,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 2.448918342590332,
+ "step": 593
+ },
+ {
+ "epoch": 8.250871080139373,
+ "grad_norm": 0.04979013651609421,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 2.447591781616211,
+ "step": 594
+ },
+ {
+ "epoch": 8.264808362369338,
+ "grad_norm": 0.047402940690517426,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 2.450143337249756,
+ "step": 595
+ },
+ {
+ "epoch": 8.278745644599303,
+ "grad_norm": 0.041620269417762756,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 2.4322123527526855,
+ "step": 596
+ },
+ {
+ "epoch": 8.292682926829269,
+ "grad_norm": 0.04016399011015892,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 2.4417006969451904,
+ "step": 597
+ },
+ {
+ "epoch": 8.306620209059233,
+ "grad_norm": 0.04293493181467056,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 2.4442501068115234,
+ "step": 598
+ },
+ {
+ "epoch": 8.320557491289199,
+ "grad_norm": 0.041785892099142075,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 2.4570703506469727,
+ "step": 599
+ },
+ {
+ "epoch": 8.334494773519165,
+ "grad_norm": 0.042869169265031815,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 2.4294066429138184,
+ "step": 600
+ },
+ {
+ "epoch": 8.348432055749129,
+ "grad_norm": 0.04059606418013573,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 2.4469175338745117,
+ "step": 601
+ },
+ {
+ "epoch": 8.362369337979095,
+ "grad_norm": 0.03664898872375488,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 2.432004451751709,
+ "step": 602
+ },
+ {
+ "epoch": 8.376306620209059,
+ "grad_norm": 0.031866125762462616,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 2.4305002689361572,
+ "step": 603
+ },
+ {
+ "epoch": 8.390243902439025,
+ "grad_norm": 0.03416220843791962,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 2.4407525062561035,
+ "step": 604
+ },
+ {
+ "epoch": 8.404181184668989,
+ "grad_norm": 0.03265870735049248,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 2.426929473876953,
+ "step": 605
+ },
+ {
+ "epoch": 8.418118466898955,
+ "grad_norm": 0.03337112441658974,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 2.443507671356201,
+ "step": 606
+ },
+ {
+ "epoch": 8.43205574912892,
+ "grad_norm": 0.0337977334856987,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 2.4583749771118164,
+ "step": 607
+ },
+ {
+ "epoch": 8.445993031358885,
+ "grad_norm": 0.02970845066010952,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 2.4297292232513428,
+ "step": 608
+ },
+ {
+ "epoch": 8.45993031358885,
+ "grad_norm": 0.03051869012415409,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 2.452547550201416,
+ "step": 609
+ },
+ {
+ "epoch": 8.473867595818815,
+ "grad_norm": 0.030234314501285553,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 2.427704334259033,
+ "step": 610
+ },
+ {
+ "epoch": 8.487804878048781,
+ "grad_norm": 0.0297533068805933,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 2.4193124771118164,
+ "step": 611
+ },
+ {
+ "epoch": 8.501742160278745,
+ "grad_norm": 0.030258657410740852,
+ "learning_rate": 0.000569302387925215,
+ "loss": 2.4159011840820312,
+ "step": 612
+ },
+ {
+ "epoch": 8.515679442508711,
+ "grad_norm": 0.029942622408270836,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 2.4217724800109863,
+ "step": 613
+ },
+ {
+ "epoch": 8.529616724738675,
+ "grad_norm": 0.030715234577655792,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 2.44870662689209,
+ "step": 614
+ },
+ {
+ "epoch": 8.543554006968641,
+ "grad_norm": 0.03252873569726944,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 2.417196750640869,
+ "step": 615
+ },
+ {
+ "epoch": 8.557491289198607,
+ "grad_norm": 0.03387020155787468,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 2.4181065559387207,
+ "step": 616
+ },
+ {
+ "epoch": 8.571428571428571,
+ "grad_norm": 0.035596199333667755,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 2.4240612983703613,
+ "step": 617
+ },
+ {
+ "epoch": 8.585365853658537,
+ "grad_norm": 0.03890643268823624,
+ "learning_rate": 0.000568590328960903,
+ "loss": 2.435359477996826,
+ "step": 618
+ },
+ {
+ "epoch": 8.599303135888501,
+ "grad_norm": 0.041447605937719345,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 2.4370574951171875,
+ "step": 619
+ },
+ {
+ "epoch": 8.613240418118467,
+ "grad_norm": 0.03584018349647522,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 2.4231667518615723,
+ "step": 620
+ },
+ {
+ "epoch": 8.627177700348431,
+ "grad_norm": 0.03309513255953789,
+ "learning_rate": 0.000568231409438027,
+ "loss": 2.4281513690948486,
+ "step": 621
+ },
+ {
+ "epoch": 8.641114982578397,
+ "grad_norm": 0.0365641750395298,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 2.4262235164642334,
+ "step": 622
+ },
+ {
+ "epoch": 8.655052264808361,
+ "grad_norm": 0.033776357769966125,
+ "learning_rate": 0.000567991061134677,
+ "loss": 2.4259705543518066,
+ "step": 623
+ },
+ {
+ "epoch": 8.668989547038327,
+ "grad_norm": 0.03251301124691963,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 2.4303622245788574,
+ "step": 624
+ },
+ {
+ "epoch": 8.682926829268293,
+ "grad_norm": 0.03311233967542648,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 2.4325923919677734,
+ "step": 625
+ },
+ {
+ "epoch": 8.696864111498257,
+ "grad_norm": 0.032762084156274796,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 2.423525333404541,
+ "step": 626
+ },
+ {
+ "epoch": 8.710801393728223,
+ "grad_norm": 0.03397396206855774,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 2.421725273132324,
+ "step": 627
+ },
+ {
+ "epoch": 8.724738675958188,
+ "grad_norm": 0.03827521204948425,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 2.417745590209961,
+ "step": 628
+ },
+ {
+ "epoch": 8.738675958188153,
+ "grad_norm": 0.03194425627589226,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 2.4408435821533203,
+ "step": 629
+ },
+ {
+ "epoch": 8.752613240418118,
+ "grad_norm": 0.02894434705376625,
+ "learning_rate": 0.000567143121979179,
+ "loss": 2.430302143096924,
+ "step": 630
+ },
+ {
+ "epoch": 8.766550522648084,
+ "grad_norm": 0.03130284696817398,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 2.4167380332946777,
+ "step": 631
+ },
+ {
+ "epoch": 8.78048780487805,
+ "grad_norm": 0.03176414966583252,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 2.4211833477020264,
+ "step": 632
+ },
+ {
+ "epoch": 8.794425087108014,
+ "grad_norm": 0.03023882955312729,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 2.4175009727478027,
+ "step": 633
+ },
+ {
+ "epoch": 8.80836236933798,
+ "grad_norm": 0.03027920238673687,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 2.4296345710754395,
+ "step": 634
+ },
+ {
+ "epoch": 8.822299651567944,
+ "grad_norm": 0.031661003828048706,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 2.4292376041412354,
+ "step": 635
+ },
+ {
+ "epoch": 8.83623693379791,
+ "grad_norm": 0.02943863719701767,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 2.422773599624634,
+ "step": 636
+ },
+ {
+ "epoch": 8.850174216027874,
+ "grad_norm": 0.02999107912182808,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 2.4288015365600586,
+ "step": 637
+ },
+ {
+ "epoch": 8.86411149825784,
+ "grad_norm": 0.03127457574009895,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 2.426997184753418,
+ "step": 638
+ },
+ {
+ "epoch": 8.878048780487806,
+ "grad_norm": 0.0321597196161747,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 2.418203353881836,
+ "step": 639
+ },
+ {
+ "epoch": 8.89198606271777,
+ "grad_norm": 0.032045748084783554,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 2.4220266342163086,
+ "step": 640
+ },
+ {
+ "epoch": 8.905923344947736,
+ "grad_norm": 0.031895119696855545,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 2.421767234802246,
+ "step": 641
+ },
+ {
+ "epoch": 8.9198606271777,
+ "grad_norm": 0.0330902598798275,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 2.418246269226074,
+ "step": 642
+ },
+ {
+ "epoch": 8.933797909407666,
+ "grad_norm": 0.03361523523926735,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 2.423337697982788,
+ "step": 643
+ },
+ {
+ "epoch": 8.94773519163763,
+ "grad_norm": 0.033133652061223984,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 2.4278783798217773,
+ "step": 644
+ },
+ {
+ "epoch": 8.961672473867596,
+ "grad_norm": 0.03747311979532242,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 2.434087038040161,
+ "step": 645
+ },
+ {
+ "epoch": 8.975609756097562,
+ "grad_norm": 0.036127083003520966,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 2.4167022705078125,
+ "step": 646
+ },
+ {
+ "epoch": 8.989547038327526,
+ "grad_norm": 0.03699145093560219,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 2.4243075847625732,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.028921982273459435,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 1.8086339235305786,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 0.6271453499794006,
+ "eval_runtime": 35.9474,
+ "eval_samples_per_second": 67.933,
+ "eval_steps_per_second": 0.556,
+ "step": 648
+ },
+ {
+ "epoch": 9.013937282229966,
+ "grad_norm": 0.0380239300429821,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 2.377704381942749,
+ "step": 649
+ },
+ {
+ "epoch": 9.02787456445993,
+ "grad_norm": 0.05574064329266548,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 2.399777889251709,
+ "step": 650
+ },
+ {
+ "epoch": 9.041811846689896,
+ "grad_norm": 0.06179674342274666,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 2.3851845264434814,
+ "step": 651
+ },
+ {
+ "epoch": 9.05574912891986,
+ "grad_norm": 0.06461436301469803,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 2.385363817214966,
+ "step": 652
+ },
+ {
+ "epoch": 9.069686411149826,
+ "grad_norm": 0.058009687811136246,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 2.3721890449523926,
+ "step": 653
+ },
+ {
+ "epoch": 9.08362369337979,
+ "grad_norm": 0.06488639861345291,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 2.386878490447998,
+ "step": 654
+ },
+ {
+ "epoch": 9.097560975609756,
+ "grad_norm": 0.05683685839176178,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 2.3946213722229004,
+ "step": 655
+ },
+ {
+ "epoch": 9.111498257839722,
+ "grad_norm": 0.05336347594857216,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 2.3708930015563965,
+ "step": 656
+ },
+ {
+ "epoch": 9.125435540069686,
+ "grad_norm": 0.05320737510919571,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 2.39091157913208,
+ "step": 657
+ },
+ {
+ "epoch": 9.139372822299652,
+ "grad_norm": 0.05641087517142296,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 2.381009578704834,
+ "step": 658
+ },
+ {
+ "epoch": 9.153310104529616,
+ "grad_norm": 0.06087775528430939,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 2.377963066101074,
+ "step": 659
+ },
+ {
+ "epoch": 9.167247386759582,
+ "grad_norm": 0.06592115014791489,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 2.392094135284424,
+ "step": 660
+ },
+ {
+ "epoch": 9.181184668989546,
+ "grad_norm": 0.061441708356142044,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 2.388850212097168,
+ "step": 661
+ },
+ {
+ "epoch": 9.195121951219512,
+ "grad_norm": 0.06311637908220291,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 2.38919734954834,
+ "step": 662
+ },
+ {
+ "epoch": 9.209059233449477,
+ "grad_norm": 0.07152658700942993,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 2.3724892139434814,
+ "step": 663
+ },
+ {
+ "epoch": 9.222996515679442,
+ "grad_norm": 0.06927355378866196,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 2.4017786979675293,
+ "step": 664
+ },
+ {
+ "epoch": 9.236933797909408,
+ "grad_norm": 0.062740758061409,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 2.376430034637451,
+ "step": 665
+ },
+ {
+ "epoch": 9.250871080139373,
+ "grad_norm": 0.051289040595293045,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 2.3926010131835938,
+ "step": 666
+ },
+ {
+ "epoch": 9.264808362369338,
+ "grad_norm": 0.055630262941122055,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 2.3605382442474365,
+ "step": 667
+ },
+ {
+ "epoch": 9.278745644599303,
+ "grad_norm": 0.052814628928899765,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 2.374608039855957,
+ "step": 668
+ },
+ {
+ "epoch": 9.292682926829269,
+ "grad_norm": 0.05927073210477829,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 2.384093999862671,
+ "step": 669
+ },
+ {
+ "epoch": 9.306620209059233,
+ "grad_norm": 0.05510697513818741,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 2.374708652496338,
+ "step": 670
+ },
+ {
+ "epoch": 9.320557491289199,
+ "grad_norm": 0.048580385744571686,
+ "learning_rate": 0.000561968326197397,
+ "loss": 2.3861031532287598,
+ "step": 671
+ },
+ {
+ "epoch": 9.334494773519165,
+ "grad_norm": 0.04905429109930992,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 2.3835110664367676,
+ "step": 672
+ },
+ {
+ "epoch": 9.348432055749129,
+ "grad_norm": 0.04621037095785141,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 2.379696846008301,
+ "step": 673
+ },
+ {
+ "epoch": 9.362369337979095,
+ "grad_norm": 0.0437726229429245,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 2.3854074478149414,
+ "step": 674
+ },
+ {
+ "epoch": 9.376306620209059,
+ "grad_norm": 0.040361031889915466,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 2.39682936668396,
+ "step": 675
+ },
+ {
+ "epoch": 9.390243902439025,
+ "grad_norm": 0.03848707675933838,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 2.3752408027648926,
+ "step": 676
+ },
+ {
+ "epoch": 9.404181184668989,
+ "grad_norm": 0.04017478972673416,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 2.3912038803100586,
+ "step": 677
+ },
+ {
+ "epoch": 9.418118466898955,
+ "grad_norm": 0.03487734496593475,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 2.389535427093506,
+ "step": 678
+ },
+ {
+ "epoch": 9.43205574912892,
+ "grad_norm": 0.03736500069499016,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 2.3840279579162598,
+ "step": 679
+ },
+ {
+ "epoch": 9.445993031358885,
+ "grad_norm": 0.03499516844749451,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 2.3752779960632324,
+ "step": 680
+ },
+ {
+ "epoch": 9.45993031358885,
+ "grad_norm": 0.03297547250986099,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 2.3991637229919434,
+ "step": 681
+ },
+ {
+ "epoch": 9.473867595818815,
+ "grad_norm": 0.03387392312288284,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 2.3872644901275635,
+ "step": 682
+ },
+ {
+ "epoch": 9.487804878048781,
+ "grad_norm": 0.03756970539689064,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 2.368522882461548,
+ "step": 683
+ },
+ {
+ "epoch": 9.501742160278745,
+ "grad_norm": 0.03686998412013054,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 2.381460189819336,
+ "step": 684
+ },
+ {
+ "epoch": 9.515679442508711,
+ "grad_norm": 0.03336082771420479,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 2.3871984481811523,
+ "step": 685
+ },
+ {
+ "epoch": 9.529616724738675,
+ "grad_norm": 0.03545147553086281,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 2.3921163082122803,
+ "step": 686
+ },
+ {
+ "epoch": 9.543554006968641,
+ "grad_norm": 0.03614704683423042,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 2.388418197631836,
+ "step": 687
+ },
+ {
+ "epoch": 9.557491289198607,
+ "grad_norm": 0.0350213497877121,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 2.399055004119873,
+ "step": 688
+ },
+ {
+ "epoch": 9.571428571428571,
+ "grad_norm": 0.035602837800979614,
+ "learning_rate": 0.000559585254906272,
+ "loss": 2.3897178173065186,
+ "step": 689
+ },
+ {
+ "epoch": 9.585365853658537,
+ "grad_norm": 0.03438388183712959,
+ "learning_rate": 0.000559450892376025,
+ "loss": 2.407155990600586,
+ "step": 690
+ },
+ {
+ "epoch": 9.599303135888501,
+ "grad_norm": 0.035386405885219574,
+ "learning_rate": 0.000559316323227926,
+ "loss": 2.390408992767334,
+ "step": 691
+ },
+ {
+ "epoch": 9.613240418118467,
+ "grad_norm": 0.03753617778420448,
+ "learning_rate": 0.000559181547570395,
+ "loss": 2.3751039505004883,
+ "step": 692
+ },
+ {
+ "epoch": 9.627177700348431,
+ "grad_norm": 0.03430183231830597,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 2.3941941261291504,
+ "step": 693
+ },
+ {
+ "epoch": 9.641114982578397,
+ "grad_norm": 0.03268825262784958,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 2.3772215843200684,
+ "step": 694
+ },
+ {
+ "epoch": 9.655052264808361,
+ "grad_norm": 0.0341268889605999,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 2.3830480575561523,
+ "step": 695
+ },
+ {
+ "epoch": 9.668989547038327,
+ "grad_norm": 0.03466663882136345,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 2.3796463012695312,
+ "step": 696
+ },
+ {
+ "epoch": 9.682926829268293,
+ "grad_norm": 0.03470399230718613,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 2.385427713394165,
+ "step": 697
+ },
+ {
+ "epoch": 9.696864111498257,
+ "grad_norm": 0.0382751040160656,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 2.3877949714660645,
+ "step": 698
+ },
+ {
+ "epoch": 9.710801393728223,
+ "grad_norm": 0.035988591611385345,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 2.378014326095581,
+ "step": 699
+ },
+ {
+ "epoch": 9.724738675958188,
+ "grad_norm": 0.03295210376381874,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 2.382502555847168,
+ "step": 700
+ },
+ {
+ "epoch": 9.738675958188153,
+ "grad_norm": 0.030723385512828827,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 2.388451099395752,
+ "step": 701
+ },
+ {
+ "epoch": 9.752613240418118,
+ "grad_norm": 0.03281056135892868,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 2.387669086456299,
+ "step": 702
+ },
+ {
+ "epoch": 9.766550522648084,
+ "grad_norm": 0.03443330153822899,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 2.381460189819336,
+ "step": 703
+ },
+ {
+ "epoch": 9.78048780487805,
+ "grad_norm": 0.03670412674546242,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 2.3756155967712402,
+ "step": 704
+ },
+ {
+ "epoch": 9.794425087108014,
+ "grad_norm": 0.03445884957909584,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 2.371798515319824,
+ "step": 705
+ },
+ {
+ "epoch": 9.80836236933798,
+ "grad_norm": 0.03341168165206909,
+ "learning_rate": 0.000557273065985207,
+ "loss": 2.366093635559082,
+ "step": 706
+ },
+ {
+ "epoch": 9.822299651567944,
+ "grad_norm": 0.035434722900390625,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 2.3876760005950928,
+ "step": 707
+ },
+ {
+ "epoch": 9.83623693379791,
+ "grad_norm": 0.036071036010980606,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 2.363477945327759,
+ "step": 708
+ },
+ {
+ "epoch": 9.850174216027874,
+ "grad_norm": 0.03642858937382698,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 2.3772635459899902,
+ "step": 709
+ },
+ {
+ "epoch": 9.86411149825784,
+ "grad_norm": 0.03974858298897743,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 2.3893399238586426,
+ "step": 710
+ },
+ {
+ "epoch": 9.878048780487806,
+ "grad_norm": 0.040428902953863144,
+ "learning_rate": 0.000556581718698499,
+ "loss": 2.385814666748047,
+ "step": 711
+ },
+ {
+ "epoch": 9.89198606271777,
+ "grad_norm": 0.03710169717669487,
+ "learning_rate": 0.000556442835876097,
+ "loss": 2.3817856311798096,
+ "step": 712
+ },
+ {
+ "epoch": 9.905923344947736,
+ "grad_norm": 0.031853094696998596,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 2.3833706378936768,
+ "step": 713
+ },
+ {
+ "epoch": 9.9198606271777,
+ "grad_norm": 0.03192576766014099,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 2.380492687225342,
+ "step": 714
+ },
+ {
+ "epoch": 9.933797909407666,
+ "grad_norm": 0.03222471475601196,
+ "learning_rate": 0.000556024962691404,
+ "loss": 2.368129014968872,
+ "step": 715
+ },
+ {
+ "epoch": 9.94773519163763,
+ "grad_norm": 0.033947065472602844,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 2.392598867416382,
+ "step": 716
+ },
+ {
+ "epoch": 9.961672473867596,
+ "grad_norm": 0.030860550701618195,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 2.392878532409668,
+ "step": 717
+ },
+ {
+ "epoch": 9.975609756097562,
+ "grad_norm": 0.03237077221274376,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 2.3881583213806152,
+ "step": 718
+ },
+ {
+ "epoch": 9.989547038327526,
+ "grad_norm": 0.03429335355758667,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 2.385345458984375,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.025040561333298683,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 1.7694379091262817,
+ "step": 720
+ },
+ {
+ "epoch": 10.0,
+ "eval_loss": 0.6226440668106079,
+ "eval_runtime": 35.9996,
+ "eval_samples_per_second": 67.834,
+ "eval_steps_per_second": 0.556,
+ "step": 720
+ },
+ {
+ "epoch": 10.013937282229966,
+ "grad_norm": 0.04380113258957863,
+ "learning_rate": 0.0005551837152119915,
+ "loss": 2.338531494140625,
+ "step": 721
+ },
+ {
+ "epoch": 10.02787456445993,
+ "grad_norm": 0.06502492725849152,
+ "learning_rate": 0.0005550427955088455,
+ "loss": 2.336862087249756,
+ "step": 722
+ },
+ {
+ "epoch": 10.041811846689896,
+ "grad_norm": 0.06072859466075897,
+ "learning_rate": 0.0005549016727393715,
+ "loss": 2.345121383666992,
+ "step": 723
+ },
+ {
+ "epoch": 10.05574912891986,
+ "grad_norm": 0.06489435583353043,
+ "learning_rate": 0.0005547603470172697,
+ "loss": 2.3135323524475098,
+ "step": 724
+ },
+ {
+ "epoch": 10.069686411149826,
+ "grad_norm": 0.07557415962219238,
+ "learning_rate": 0.0005546188184564036,
+ "loss": 2.346886157989502,
+ "step": 725
+ },
+ {
+ "epoch": 10.08362369337979,
+ "grad_norm": 0.07416220009326935,
+ "learning_rate": 0.0005544770871708004,
+ "loss": 2.347463607788086,
+ "step": 726
+ },
+ {
+ "epoch": 10.097560975609756,
+ "grad_norm": 0.07228727638721466,
+ "learning_rate": 0.0005543351532746501,
+ "loss": 2.351980209350586,
+ "step": 727
+ },
+ {
+ "epoch": 10.111498257839722,
+ "grad_norm": 0.07207637280225754,
+ "learning_rate": 0.0005541930168823067,
+ "loss": 2.3345837593078613,
+ "step": 728
+ },
+ {
+ "epoch": 10.125435540069686,
+ "grad_norm": 0.07364149391651154,
+ "learning_rate": 0.0005540506781082864,
+ "loss": 2.3545069694519043,
+ "step": 729
+ },
+ {
+ "epoch": 10.139372822299652,
+ "grad_norm": 0.06596208363771439,
+ "learning_rate": 0.0005539081370672695,
+ "loss": 2.3250179290771484,
+ "step": 730
+ },
+ {
+ "epoch": 10.153310104529616,
+ "grad_norm": 0.07143490016460419,
+ "learning_rate": 0.0005537653938740984,
+ "loss": 2.352842330932617,
+ "step": 731
+ },
+ {
+ "epoch": 10.167247386759582,
+ "grad_norm": 0.06986920535564423,
+ "learning_rate": 0.0005536224486437788,
+ "loss": 2.3406600952148438,
+ "step": 732
+ },
+ {
+ "epoch": 10.181184668989546,
+ "grad_norm": 0.06723238527774811,
+ "learning_rate": 0.0005534793014914793,
+ "loss": 2.36100435256958,
+ "step": 733
+ },
+ {
+ "epoch": 10.195121951219512,
+ "grad_norm": 0.07599805295467377,
+ "learning_rate": 0.0005533359525325307,
+ "loss": 2.364171028137207,
+ "step": 734
+ },
+ {
+ "epoch": 10.209059233449477,
+ "grad_norm": 0.06879840791225433,
+ "learning_rate": 0.0005531924018824266,
+ "loss": 2.3600802421569824,
+ "step": 735
+ },
+ {
+ "epoch": 10.222996515679442,
+ "grad_norm": 0.06736139208078384,
+ "learning_rate": 0.0005530486496568236,
+ "loss": 2.3630075454711914,
+ "step": 736
+ },
+ {
+ "epoch": 10.236933797909408,
+ "grad_norm": 0.073630690574646,
+ "learning_rate": 0.0005529046959715397,
+ "loss": 2.3535385131835938,
+ "step": 737
+ },
+ {
+ "epoch": 10.250871080139373,
+ "grad_norm": 0.081154465675354,
+ "learning_rate": 0.0005527605409425562,
+ "loss": 2.355775833129883,
+ "step": 738
+ },
+ {
+ "epoch": 10.264808362369338,
+ "grad_norm": 0.07517901808023453,
+ "learning_rate": 0.0005526161846860161,
+ "loss": 2.3474936485290527,
+ "step": 739
+ },
+ {
+ "epoch": 10.278745644599303,
+ "grad_norm": 0.06589196622371674,
+ "learning_rate": 0.0005524716273182245,
+ "loss": 2.356273651123047,
+ "step": 740
+ },
+ {
+ "epoch": 10.292682926829269,
+ "grad_norm": 0.07035321742296219,
+ "learning_rate": 0.0005523268689556489,
+ "loss": 2.3348515033721924,
+ "step": 741
+ },
+ {
+ "epoch": 10.306620209059233,
+ "grad_norm": 0.05464137718081474,
+ "learning_rate": 0.0005521819097149183,
+ "loss": 2.340257167816162,
+ "step": 742
+ },
+ {
+ "epoch": 10.320557491289199,
+ "grad_norm": 0.05040175840258598,
+ "learning_rate": 0.0005520367497128238,
+ "loss": 2.356626033782959,
+ "step": 743
+ },
+ {
+ "epoch": 10.334494773519165,
+ "grad_norm": 0.04544971138238907,
+ "learning_rate": 0.0005518913890663182,
+ "loss": 2.3765573501586914,
+ "step": 744
+ },
+ {
+ "epoch": 10.348432055749129,
+ "grad_norm": 0.04246767982840538,
+ "learning_rate": 0.0005517458278925161,
+ "loss": 2.3584630489349365,
+ "step": 745
+ },
+ {
+ "epoch": 10.362369337979095,
+ "grad_norm": 0.0407957099378109,
+ "learning_rate": 0.0005516000663086932,
+ "loss": 2.3562331199645996,
+ "step": 746
+ },
+ {
+ "epoch": 10.376306620209059,
+ "grad_norm": 0.04157666489481926,
+ "learning_rate": 0.0005514541044322872,
+ "loss": 2.355463743209839,
+ "step": 747
+ },
+ {
+ "epoch": 10.390243902439025,
+ "grad_norm": 0.03842373192310333,
+ "learning_rate": 0.0005513079423808967,
+ "loss": 2.3644120693206787,
+ "step": 748
+ },
+ {
+ "epoch": 10.404181184668989,
+ "grad_norm": 0.03891562297940254,
+ "learning_rate": 0.0005511615802722823,
+ "loss": 2.3579063415527344,
+ "step": 749
+ },
+ {
+ "epoch": 10.418118466898955,
+ "grad_norm": 0.03712530806660652,
+ "learning_rate": 0.0005510150182243647,
+ "loss": 2.3606715202331543,
+ "step": 750
+ },
+ {
+ "epoch": 10.43205574912892,
+ "grad_norm": 0.03664202243089676,
+ "learning_rate": 0.0005508682563552269,
+ "loss": 2.3363728523254395,
+ "step": 751
+ },
+ {
+ "epoch": 10.445993031358885,
+ "grad_norm": 0.03555043414235115,
+ "learning_rate": 0.0005507212947831119,
+ "loss": 2.357100009918213,
+ "step": 752
+ },
+ {
+ "epoch": 10.45993031358885,
+ "grad_norm": 0.0355045385658741,
+ "learning_rate": 0.0005505741336264239,
+ "loss": 2.348784923553467,
+ "step": 753
+ },
+ {
+ "epoch": 10.473867595818815,
+ "grad_norm": 0.036513347178697586,
+ "learning_rate": 0.0005504267730037283,
+ "loss": 2.3371458053588867,
+ "step": 754
+ },
+ {
+ "epoch": 10.487804878048781,
+ "grad_norm": 0.034735117107629776,
+ "learning_rate": 0.0005502792130337508,
+ "loss": 2.3379664421081543,
+ "step": 755
+ },
+ {
+ "epoch": 10.501742160278745,
+ "grad_norm": 0.032890401780605316,
+ "learning_rate": 0.0005501314538353776,
+ "loss": 2.345534563064575,
+ "step": 756
+ },
+ {
+ "epoch": 10.515679442508711,
+ "grad_norm": 0.0343078076839447,
+ "learning_rate": 0.000549983495527656,
+ "loss": 2.3425400257110596,
+ "step": 757
+ },
+ {
+ "epoch": 10.529616724738675,
+ "grad_norm": 0.036330267786979675,
+ "learning_rate": 0.000549835338229793,
+ "loss": 2.353668689727783,
+ "step": 758
+ },
+ {
+ "epoch": 10.543554006968641,
+ "grad_norm": 0.03595716878771782,
+ "learning_rate": 0.0005496869820611563,
+ "loss": 2.340348958969116,
+ "step": 759
+ },
+ {
+ "epoch": 10.557491289198607,
+ "grad_norm": 0.03567204624414444,
+ "learning_rate": 0.0005495384271412739,
+ "loss": 2.3443446159362793,
+ "step": 760
+ },
+ {
+ "epoch": 10.571428571428571,
+ "grad_norm": 0.03243366256356239,
+ "learning_rate": 0.0005493896735898338,
+ "loss": 2.328749179840088,
+ "step": 761
+ },
+ {
+ "epoch": 10.585365853658537,
+ "grad_norm": 0.033156730234622955,
+ "learning_rate": 0.000549240721526684,
+ "loss": 2.3553342819213867,
+ "step": 762
+ },
+ {
+ "epoch": 10.599303135888501,
+ "grad_norm": 0.03489018976688385,
+ "learning_rate": 0.0005490915710718325,
+ "loss": 2.329984664916992,
+ "step": 763
+ },
+ {
+ "epoch": 10.613240418118467,
+ "grad_norm": 0.0352267362177372,
+ "learning_rate": 0.0005489422223454471,
+ "loss": 2.34751033782959,
+ "step": 764
+ },
+ {
+ "epoch": 10.627177700348431,
+ "grad_norm": 0.03212668001651764,
+ "learning_rate": 0.0005487926754678556,
+ "loss": 2.341987133026123,
+ "step": 765
+ },
+ {
+ "epoch": 10.641114982578397,
+ "grad_norm": 0.03473065048456192,
+ "learning_rate": 0.0005486429305595448,
+ "loss": 2.343632221221924,
+ "step": 766
+ },
+ {
+ "epoch": 10.655052264808361,
+ "grad_norm": 0.03458387404680252,
+ "learning_rate": 0.0005484929877411618,
+ "loss": 2.3420281410217285,
+ "step": 767
+ },
+ {
+ "epoch": 10.668989547038327,
+ "grad_norm": 0.03573968634009361,
+ "learning_rate": 0.0005483428471335127,
+ "loss": 2.349421501159668,
+ "step": 768
+ },
+ {
+ "epoch": 10.682926829268293,
+ "grad_norm": 0.034877803176641464,
+ "learning_rate": 0.000548192508857563,
+ "loss": 2.354094982147217,
+ "step": 769
+ },
+ {
+ "epoch": 10.696864111498257,
+ "grad_norm": 0.03350481390953064,
+ "learning_rate": 0.0005480419730344377,
+ "loss": 2.334352493286133,
+ "step": 770
+ },
+ {
+ "epoch": 10.710801393728223,
+ "grad_norm": 0.03327416628599167,
+ "learning_rate": 0.0005478912397854208,
+ "loss": 2.3445448875427246,
+ "step": 771
+ },
+ {
+ "epoch": 10.724738675958188,
+ "grad_norm": 0.03491336479783058,
+ "learning_rate": 0.0005477403092319552,
+ "loss": 2.3525538444519043,
+ "step": 772
+ },
+ {
+ "epoch": 10.738675958188153,
+ "grad_norm": 0.035869523882865906,
+ "learning_rate": 0.0005475891814956429,
+ "loss": 2.3440966606140137,
+ "step": 773
+ },
+ {
+ "epoch": 10.752613240418118,
+ "grad_norm": 0.036187391728162766,
+ "learning_rate": 0.0005474378566982449,
+ "loss": 2.33382511138916,
+ "step": 774
+ },
+ {
+ "epoch": 10.766550522648084,
+ "grad_norm": 0.037324003875255585,
+ "learning_rate": 0.0005472863349616809,
+ "loss": 2.3463244438171387,
+ "step": 775
+ },
+ {
+ "epoch": 10.78048780487805,
+ "grad_norm": 0.035808268934488297,
+ "learning_rate": 0.0005471346164080292,
+ "loss": 2.3392248153686523,
+ "step": 776
+ },
+ {
+ "epoch": 10.794425087108014,
+ "grad_norm": 0.03382394090294838,
+ "learning_rate": 0.0005469827011595266,
+ "loss": 2.3399806022644043,
+ "step": 777
+ },
+ {
+ "epoch": 10.80836236933798,
+ "grad_norm": 0.03256148472428322,
+ "learning_rate": 0.0005468305893385686,
+ "loss": 2.336940050125122,
+ "step": 778
+ },
+ {
+ "epoch": 10.822299651567944,
+ "grad_norm": 0.032796118408441544,
+ "learning_rate": 0.0005466782810677088,
+ "loss": 2.3503036499023438,
+ "step": 779
+ },
+ {
+ "epoch": 10.83623693379791,
+ "grad_norm": 0.03359639272093773,
+ "learning_rate": 0.0005465257764696593,
+ "loss": 2.340160608291626,
+ "step": 780
+ },
+ {
+ "epoch": 10.850174216027874,
+ "grad_norm": 0.03725067153573036,
+ "learning_rate": 0.0005463730756672903,
+ "loss": 2.3448994159698486,
+ "step": 781
+ },
+ {
+ "epoch": 10.86411149825784,
+ "grad_norm": 0.03396180644631386,
+ "learning_rate": 0.0005462201787836301,
+ "loss": 2.337078094482422,
+ "step": 782
+ },
+ {
+ "epoch": 10.878048780487806,
+ "grad_norm": 0.034375693649053574,
+ "learning_rate": 0.0005460670859418651,
+ "loss": 2.3564600944519043,
+ "step": 783
+ },
+ {
+ "epoch": 10.89198606271777,
+ "grad_norm": 0.034513067454099655,
+ "learning_rate": 0.000545913797265339,
+ "loss": 2.3631274700164795,
+ "step": 784
+ },
+ {
+ "epoch": 10.905923344947736,
+ "grad_norm": 0.03305843099951744,
+ "learning_rate": 0.0005457603128775541,
+ "loss": 2.345407485961914,
+ "step": 785
+ },
+ {
+ "epoch": 10.9198606271777,
+ "grad_norm": 0.03236348554491997,
+ "learning_rate": 0.0005456066329021699,
+ "loss": 2.340275526046753,
+ "step": 786
+ },
+ {
+ "epoch": 10.933797909407666,
+ "grad_norm": 0.03411583974957466,
+ "learning_rate": 0.0005454527574630037,
+ "loss": 2.341548442840576,
+ "step": 787
+ },
+ {
+ "epoch": 10.94773519163763,
+ "grad_norm": 0.03641803562641144,
+ "learning_rate": 0.0005452986866840298,
+ "loss": 2.3475522994995117,
+ "step": 788
+ },
+ {
+ "epoch": 10.961672473867596,
+ "grad_norm": 0.03492163494229317,
+ "learning_rate": 0.0005451444206893806,
+ "loss": 2.3415870666503906,
+ "step": 789
+ },
+ {
+ "epoch": 10.975609756097562,
+ "grad_norm": 0.03789013251662254,
+ "learning_rate": 0.0005449899596033453,
+ "loss": 2.3574557304382324,
+ "step": 790
+ },
+ {
+ "epoch": 10.989547038327526,
+ "grad_norm": 0.034537237137556076,
+ "learning_rate": 0.0005448353035503704,
+ "loss": 2.350353717803955,
+ "step": 791
+ },
+ {
+ "epoch": 11.0,
+ "grad_norm": 0.026393387466669083,
+ "learning_rate": 0.0005446804526550596,
+ "loss": 1.7534164190292358,
+ "step": 792
+ },
+ {
+ "epoch": 11.0,
+ "eval_loss": 0.6207266449928284,
+ "eval_runtime": 36.6286,
+ "eval_samples_per_second": 66.669,
+ "eval_steps_per_second": 0.546,
+ "step": 792
+ },
+ {
+ "epoch": 11.013937282229966,
+ "grad_norm": 0.04500797390937805,
+ "learning_rate": 0.0005445254070421732,
+ "loss": 2.29563570022583,
+ "step": 793
+ },
+ {
+ "epoch": 11.02787456445993,
+ "grad_norm": 0.058218058198690414,
+ "learning_rate": 0.0005443701668366288,
+ "loss": 2.285862445831299,
+ "step": 794
+ },
+ {
+ "epoch": 11.041811846689896,
+ "grad_norm": 0.06746228039264679,
+ "learning_rate": 0.0005442147321635007,
+ "loss": 2.2930586338043213,
+ "step": 795
+ },
+ {
+ "epoch": 11.05574912891986,
+ "grad_norm": 0.07853464037179947,
+ "learning_rate": 0.00054405910314802,
+ "loss": 2.2999796867370605,
+ "step": 796
+ },
+ {
+ "epoch": 11.069686411149826,
+ "grad_norm": 0.0743563324213028,
+ "learning_rate": 0.0005439032799155737,
+ "loss": 2.3127989768981934,
+ "step": 797
+ },
+ {
+ "epoch": 11.08362369337979,
+ "grad_norm": 0.06950018554925919,
+ "learning_rate": 0.000543747262591706,
+ "loss": 2.302677631378174,
+ "step": 798
+ },
+ {
+ "epoch": 11.097560975609756,
+ "grad_norm": 0.0668293684720993,
+ "learning_rate": 0.0005435910513021172,
+ "loss": 2.3067705631256104,
+ "step": 799
+ },
+ {
+ "epoch": 11.111498257839722,
+ "grad_norm": 0.05805148929357529,
+ "learning_rate": 0.0005434346461726641,
+ "loss": 2.2972123622894287,
+ "step": 800
+ },
+ {
+ "epoch": 11.125435540069686,
+ "grad_norm": 0.059285592287778854,
+ "learning_rate": 0.0005432780473293593,
+ "loss": 2.302372932434082,
+ "step": 801
+ },
+ {
+ "epoch": 11.139372822299652,
+ "grad_norm": 0.054501719772815704,
+ "learning_rate": 0.0005431212548983718,
+ "loss": 2.305246353149414,
+ "step": 802
+ },
+ {
+ "epoch": 11.153310104529616,
+ "grad_norm": 0.05490308254957199,
+ "learning_rate": 0.0005429642690060262,
+ "loss": 2.300204277038574,
+ "step": 803
+ },
+ {
+ "epoch": 11.167247386759582,
+ "grad_norm": 0.05564664676785469,
+ "learning_rate": 0.0005428070897788034,
+ "loss": 2.295349597930908,
+ "step": 804
+ },
+ {
+ "epoch": 11.181184668989546,
+ "grad_norm": 0.04841756820678711,
+ "learning_rate": 0.0005426497173433398,
+ "loss": 2.3083786964416504,
+ "step": 805
+ },
+ {
+ "epoch": 11.195121951219512,
+ "grad_norm": 0.05090150982141495,
+ "learning_rate": 0.0005424921518264275,
+ "loss": 2.2890477180480957,
+ "step": 806
+ },
+ {
+ "epoch": 11.209059233449477,
+ "grad_norm": 0.049588896334171295,
+ "learning_rate": 0.0005423343933550143,
+ "loss": 2.3092164993286133,
+ "step": 807
+ },
+ {
+ "epoch": 11.222996515679442,
+ "grad_norm": 0.059266265481710434,
+ "learning_rate": 0.0005421764420562032,
+ "loss": 2.3087329864501953,
+ "step": 808
+ },
+ {
+ "epoch": 11.236933797909408,
+ "grad_norm": 0.061635106801986694,
+ "learning_rate": 0.0005420182980572527,
+ "loss": 2.310224771499634,
+ "step": 809
+ },
+ {
+ "epoch": 11.250871080139373,
+ "grad_norm": 0.058707281947135925,
+ "learning_rate": 0.0005418599614855768,
+ "loss": 2.3094818592071533,
+ "step": 810
+ },
+ {
+ "epoch": 11.264808362369338,
+ "grad_norm": 0.05711625888943672,
+ "learning_rate": 0.0005417014324687442,
+ "loss": 2.320720672607422,
+ "step": 811
+ },
+ {
+ "epoch": 11.278745644599303,
+ "grad_norm": 0.04941999912261963,
+ "learning_rate": 0.000541542711134479,
+ "loss": 2.3037776947021484,
+ "step": 812
+ },
+ {
+ "epoch": 11.292682926829269,
+ "grad_norm": 0.0481753945350647,
+ "learning_rate": 0.0005413837976106599,
+ "loss": 2.307615280151367,
+ "step": 813
+ },
+ {
+ "epoch": 11.306620209059233,
+ "grad_norm": 0.05005398392677307,
+ "learning_rate": 0.0005412246920253208,
+ "loss": 2.302461624145508,
+ "step": 814
+ },
+ {
+ "epoch": 11.320557491289199,
+ "grad_norm": 0.051312051713466644,
+ "learning_rate": 0.0005410653945066503,
+ "loss": 2.3107659816741943,
+ "step": 815
+ },
+ {
+ "epoch": 11.334494773519165,
+ "grad_norm": 0.047787491232156754,
+ "learning_rate": 0.0005409059051829914,
+ "loss": 2.303896903991699,
+ "step": 816
+ },
+ {
+ "epoch": 11.348432055749129,
+ "grad_norm": 0.044105708599090576,
+ "learning_rate": 0.0005407462241828417,
+ "loss": 2.3028616905212402,
+ "step": 817
+ },
+ {
+ "epoch": 11.362369337979095,
+ "grad_norm": 0.04771425202488899,
+ "learning_rate": 0.0005405863516348535,
+ "loss": 2.3242416381835938,
+ "step": 818
+ },
+ {
+ "epoch": 11.376306620209059,
+ "grad_norm": 0.049508776515722275,
+ "learning_rate": 0.000540426287667833,
+ "loss": 2.317350387573242,
+ "step": 819
+ },
+ {
+ "epoch": 11.390243902439025,
+ "grad_norm": 0.04476630315184593,
+ "learning_rate": 0.000540266032410741,
+ "loss": 2.3019609451293945,
+ "step": 820
+ },
+ {
+ "epoch": 11.404181184668989,
+ "grad_norm": 0.044484466314315796,
+ "learning_rate": 0.0005401055859926923,
+ "loss": 2.3157167434692383,
+ "step": 821
+ },
+ {
+ "epoch": 11.418118466898955,
+ "grad_norm": 0.04700213670730591,
+ "learning_rate": 0.0005399449485429555,
+ "loss": 2.31441330909729,
+ "step": 822
+ },
+ {
+ "epoch": 11.43205574912892,
+ "grad_norm": 0.04357650876045227,
+ "learning_rate": 0.0005397841201909535,
+ "loss": 2.309573173522949,
+ "step": 823
+ },
+ {
+ "epoch": 11.445993031358885,
+ "grad_norm": 0.04270123690366745,
+ "learning_rate": 0.0005396231010662627,
+ "loss": 2.2956438064575195,
+ "step": 824
+ },
+ {
+ "epoch": 11.45993031358885,
+ "grad_norm": 0.04122788831591606,
+ "learning_rate": 0.0005394618912986132,
+ "loss": 2.3093338012695312,
+ "step": 825
+ },
+ {
+ "epoch": 11.473867595818815,
+ "grad_norm": 0.040944404900074005,
+ "learning_rate": 0.0005393004910178889,
+ "loss": 2.3245465755462646,
+ "step": 826
+ },
+ {
+ "epoch": 11.487804878048781,
+ "grad_norm": 0.04059522598981857,
+ "learning_rate": 0.0005391389003541271,
+ "loss": 2.307492733001709,
+ "step": 827
+ },
+ {
+ "epoch": 11.501742160278745,
+ "grad_norm": 0.04292140156030655,
+ "learning_rate": 0.0005389771194375185,
+ "loss": 2.32723069190979,
+ "step": 828
+ },
+ {
+ "epoch": 11.515679442508711,
+ "grad_norm": 0.041085343807935715,
+ "learning_rate": 0.0005388151483984071,
+ "loss": 2.3025991916656494,
+ "step": 829
+ },
+ {
+ "epoch": 11.529616724738675,
+ "grad_norm": 0.040302127599716187,
+ "learning_rate": 0.0005386529873672898,
+ "loss": 2.306711196899414,
+ "step": 830
+ },
+ {
+ "epoch": 11.543554006968641,
+ "grad_norm": 0.04179452359676361,
+ "learning_rate": 0.0005384906364748172,
+ "loss": 2.299077033996582,
+ "step": 831
+ },
+ {
+ "epoch": 11.557491289198607,
+ "grad_norm": 0.04052369296550751,
+ "learning_rate": 0.000538328095851792,
+ "loss": 2.3212227821350098,
+ "step": 832
+ },
+ {
+ "epoch": 11.571428571428571,
+ "grad_norm": 0.03855585679411888,
+ "learning_rate": 0.0005381653656291707,
+ "loss": 2.2905197143554688,
+ "step": 833
+ },
+ {
+ "epoch": 11.585365853658537,
+ "grad_norm": 0.04159102961421013,
+ "learning_rate": 0.0005380024459380619,
+ "loss": 2.2973320484161377,
+ "step": 834
+ },
+ {
+ "epoch": 11.599303135888501,
+ "grad_norm": 0.044633787125349045,
+ "learning_rate": 0.000537839336909727,
+ "loss": 2.3214757442474365,
+ "step": 835
+ },
+ {
+ "epoch": 11.613240418118467,
+ "grad_norm": 0.03999071940779686,
+ "learning_rate": 0.00053767603867558,
+ "loss": 2.332554817199707,
+ "step": 836
+ },
+ {
+ "epoch": 11.627177700348431,
+ "grad_norm": 0.03866419568657875,
+ "learning_rate": 0.0005375125513671874,
+ "loss": 2.3050875663757324,
+ "step": 837
+ },
+ {
+ "epoch": 11.641114982578397,
+ "grad_norm": 0.041100166738033295,
+ "learning_rate": 0.0005373488751162681,
+ "loss": 2.316553831100464,
+ "step": 838
+ },
+ {
+ "epoch": 11.655052264808361,
+ "grad_norm": 0.040330950170755386,
+ "learning_rate": 0.0005371850100546929,
+ "loss": 2.310610294342041,
+ "step": 839
+ },
+ {
+ "epoch": 11.668989547038327,
+ "grad_norm": 0.03405703231692314,
+ "learning_rate": 0.000537020956314485,
+ "loss": 2.311572313308716,
+ "step": 840
+ },
+ {
+ "epoch": 11.682926829268293,
+ "grad_norm": 0.038694240152835846,
+ "learning_rate": 0.0005368567140278196,
+ "loss": 2.291428565979004,
+ "step": 841
+ },
+ {
+ "epoch": 11.696864111498257,
+ "grad_norm": 0.03937961906194687,
+ "learning_rate": 0.0005366922833270235,
+ "loss": 2.315734386444092,
+ "step": 842
+ },
+ {
+ "epoch": 11.710801393728223,
+ "grad_norm": 0.038759566843509674,
+ "learning_rate": 0.0005365276643445757,
+ "loss": 2.3142471313476562,
+ "step": 843
+ },
+ {
+ "epoch": 11.724738675958188,
+ "grad_norm": 0.03737666830420494,
+ "learning_rate": 0.0005363628572131069,
+ "loss": 2.305859088897705,
+ "step": 844
+ },
+ {
+ "epoch": 11.738675958188153,
+ "grad_norm": 0.039980217814445496,
+ "learning_rate": 0.0005361978620653991,
+ "loss": 2.3132710456848145,
+ "step": 845
+ },
+ {
+ "epoch": 11.752613240418118,
+ "grad_norm": 0.040231477469205856,
+ "learning_rate": 0.0005360326790343858,
+ "loss": 2.307582139968872,
+ "step": 846
+ },
+ {
+ "epoch": 11.766550522648084,
+ "grad_norm": 0.03938363865017891,
+ "learning_rate": 0.000535867308253152,
+ "loss": 2.33015775680542,
+ "step": 847
+ },
+ {
+ "epoch": 11.78048780487805,
+ "grad_norm": 0.03871415555477142,
+ "learning_rate": 0.0005357017498549341,
+ "loss": 2.315992832183838,
+ "step": 848
+ },
+ {
+ "epoch": 11.794425087108014,
+ "grad_norm": 0.03816714137792587,
+ "learning_rate": 0.0005355360039731196,
+ "loss": 2.315371513366699,
+ "step": 849
+ },
+ {
+ "epoch": 11.80836236933798,
+ "grad_norm": 0.03860654681921005,
+ "learning_rate": 0.0005353700707412466,
+ "loss": 2.3099796772003174,
+ "step": 850
+ },
+ {
+ "epoch": 11.822299651567944,
+ "grad_norm": 0.04050910845398903,
+ "learning_rate": 0.0005352039502930048,
+ "loss": 2.331601142883301,
+ "step": 851
+ },
+ {
+ "epoch": 11.83623693379791,
+ "grad_norm": 0.040455542504787445,
+ "learning_rate": 0.0005350376427622343,
+ "loss": 2.3153774738311768,
+ "step": 852
+ },
+ {
+ "epoch": 11.850174216027874,
+ "grad_norm": 0.03606412559747696,
+ "learning_rate": 0.0005348711482829261,
+ "loss": 2.3196091651916504,
+ "step": 853
+ },
+ {
+ "epoch": 11.86411149825784,
+ "grad_norm": 0.03540179878473282,
+ "learning_rate": 0.000534704466989222,
+ "loss": 2.3175747394561768,
+ "step": 854
+ },
+ {
+ "epoch": 11.878048780487806,
+ "grad_norm": 0.03594037890434265,
+ "learning_rate": 0.0005345375990154138,
+ "loss": 2.3123281002044678,
+ "step": 855
+ },
+ {
+ "epoch": 11.89198606271777,
+ "grad_norm": 0.037316273897886276,
+ "learning_rate": 0.0005343705444959441,
+ "loss": 2.326590061187744,
+ "step": 856
+ },
+ {
+ "epoch": 11.905923344947736,
+ "grad_norm": 0.03534175828099251,
+ "learning_rate": 0.000534203303565406,
+ "loss": 2.289609670639038,
+ "step": 857
+ },
+ {
+ "epoch": 11.9198606271777,
+ "grad_norm": 0.03645944595336914,
+ "learning_rate": 0.000534035876358542,
+ "loss": 2.310405731201172,
+ "step": 858
+ },
+ {
+ "epoch": 11.933797909407666,
+ "grad_norm": 0.033878158777952194,
+ "learning_rate": 0.0005338682630102454,
+ "loss": 2.3025999069213867,
+ "step": 859
+ },
+ {
+ "epoch": 11.94773519163763,
+ "grad_norm": 0.03515630215406418,
+ "learning_rate": 0.0005337004636555595,
+ "loss": 2.3085150718688965,
+ "step": 860
+ },
+ {
+ "epoch": 11.961672473867596,
+ "grad_norm": 0.034178491681814194,
+ "learning_rate": 0.0005335324784296768,
+ "loss": 2.3223443031311035,
+ "step": 861
+ },
+ {
+ "epoch": 11.975609756097562,
+ "grad_norm": 0.0340011864900589,
+ "learning_rate": 0.0005333643074679403,
+ "loss": 2.324476957321167,
+ "step": 862
+ },
+ {
+ "epoch": 11.989547038327526,
+ "grad_norm": 0.03569193184375763,
+ "learning_rate": 0.000533195950905842,
+ "loss": 2.3087520599365234,
+ "step": 863
+ },
+ {
+ "epoch": 12.0,
+ "grad_norm": 0.030978869646787643,
+ "learning_rate": 0.0005330274088790239,
+ "loss": 1.733755350112915,
+ "step": 864
+ },
+ {
+ "epoch": 12.0,
+ "eval_loss": 0.6196663975715637,
+ "eval_runtime": 38.4411,
+ "eval_samples_per_second": 63.526,
+ "eval_steps_per_second": 0.52,
+ "step": 864
+ },
+ {
+ "epoch": 12.013937282229966,
+ "grad_norm": 0.04311290383338928,
+ "learning_rate": 0.0005328586815232773,
+ "loss": 2.267500638961792,
+ "step": 865
+ },
+ {
+ "epoch": 12.02787456445993,
+ "grad_norm": 0.05809512361884117,
+ "learning_rate": 0.0005326897689745428,
+ "loss": 2.269824981689453,
+ "step": 866
+ },
+ {
+ "epoch": 12.041811846689896,
+ "grad_norm": 0.06641583144664764,
+ "learning_rate": 0.0005325206713689101,
+ "loss": 2.2579562664031982,
+ "step": 867
+ },
+ {
+ "epoch": 12.05574912891986,
+ "grad_norm": 0.06946069747209549,
+ "learning_rate": 0.0005323513888426181,
+ "loss": 2.2649731636047363,
+ "step": 868
+ },
+ {
+ "epoch": 12.069686411149826,
+ "grad_norm": 0.07457753270864487,
+ "learning_rate": 0.0005321819215320546,
+ "loss": 2.271296501159668,
+ "step": 869
+ },
+ {
+ "epoch": 12.08362369337979,
+ "grad_norm": 0.08557604998350143,
+ "learning_rate": 0.0005320122695737565,
+ "loss": 2.2977068424224854,
+ "step": 870
+ },
+ {
+ "epoch": 12.097560975609756,
+ "grad_norm": 0.07865381985902786,
+ "learning_rate": 0.0005318424331044094,
+ "loss": 2.2831926345825195,
+ "step": 871
+ },
+ {
+ "epoch": 12.111498257839722,
+ "grad_norm": 0.07406128942966461,
+ "learning_rate": 0.0005316724122608473,
+ "loss": 2.280620574951172,
+ "step": 872
+ },
+ {
+ "epoch": 12.125435540069686,
+ "grad_norm": 0.08649969846010208,
+ "learning_rate": 0.0005315022071800527,
+ "loss": 2.2639617919921875,
+ "step": 873
+ },
+ {
+ "epoch": 12.139372822299652,
+ "grad_norm": 0.08262167125940323,
+ "learning_rate": 0.0005313318179991574,
+ "loss": 2.271108627319336,
+ "step": 874
+ },
+ {
+ "epoch": 12.153310104529616,
+ "grad_norm": 0.0752791240811348,
+ "learning_rate": 0.0005311612448554402,
+ "loss": 2.273391008377075,
+ "step": 875
+ },
+ {
+ "epoch": 12.167247386759582,
+ "grad_norm": 0.07095267623662949,
+ "learning_rate": 0.0005309904878863293,
+ "loss": 2.276211977005005,
+ "step": 876
+ },
+ {
+ "epoch": 12.181184668989546,
+ "grad_norm": 0.061625171452760696,
+ "learning_rate": 0.0005308195472294001,
+ "loss": 2.2848544120788574,
+ "step": 877
+ },
+ {
+ "epoch": 12.195121951219512,
+ "grad_norm": 0.06082753837108612,
+ "learning_rate": 0.0005306484230223769,
+ "loss": 2.2795495986938477,
+ "step": 878
+ },
+ {
+ "epoch": 12.209059233449477,
+ "grad_norm": 0.0587560310959816,
+ "learning_rate": 0.000530477115403131,
+ "loss": 2.257300853729248,
+ "step": 879
+ },
+ {
+ "epoch": 12.222996515679442,
+ "grad_norm": 0.05483998730778694,
+ "learning_rate": 0.0005303056245096817,
+ "loss": 2.2889161109924316,
+ "step": 880
+ },
+ {
+ "epoch": 12.236933797909408,
+ "grad_norm": 0.05021355301141739,
+ "learning_rate": 0.0005301339504801967,
+ "loss": 2.2778401374816895,
+ "step": 881
+ },
+ {
+ "epoch": 12.250871080139373,
+ "grad_norm": 0.05440690740942955,
+ "learning_rate": 0.0005299620934529902,
+ "loss": 2.2760677337646484,
+ "step": 882
+ },
+ {
+ "epoch": 12.264808362369338,
+ "grad_norm": 0.05961807072162628,
+ "learning_rate": 0.0005297900535665244,
+ "loss": 2.276120185852051,
+ "step": 883
+ },
+ {
+ "epoch": 12.278745644599303,
+ "grad_norm": 0.054035380482673645,
+ "learning_rate": 0.0005296178309594087,
+ "loss": 2.255659341812134,
+ "step": 884
+ },
+ {
+ "epoch": 12.292682926829269,
+ "grad_norm": 0.05121298506855965,
+ "learning_rate": 0.0005294454257704,
+ "loss": 2.2852983474731445,
+ "step": 885
+ },
+ {
+ "epoch": 12.306620209059233,
+ "grad_norm": 0.04890505596995354,
+ "learning_rate": 0.0005292728381384018,
+ "loss": 2.2752151489257812,
+ "step": 886
+ },
+ {
+ "epoch": 12.320557491289199,
+ "grad_norm": 0.05019564554095268,
+ "learning_rate": 0.0005291000682024647,
+ "loss": 2.261242389678955,
+ "step": 887
+ },
+ {
+ "epoch": 12.334494773519165,
+ "grad_norm": 0.04824003204703331,
+ "learning_rate": 0.0005289271161017867,
+ "loss": 2.2752835750579834,
+ "step": 888
+ },
+ {
+ "epoch": 12.348432055749129,
+ "grad_norm": 0.04195769876241684,
+ "learning_rate": 0.0005287539819757119,
+ "loss": 2.2705702781677246,
+ "step": 889
+ },
+ {
+ "epoch": 12.362369337979095,
+ "grad_norm": 0.046239253133535385,
+ "learning_rate": 0.0005285806659637315,
+ "loss": 2.2981534004211426,
+ "step": 890
+ },
+ {
+ "epoch": 12.376306620209059,
+ "grad_norm": 0.04743665084242821,
+ "learning_rate": 0.000528407168205483,
+ "loss": 2.278078079223633,
+ "step": 891
+ },
+ {
+ "epoch": 12.390243902439025,
+ "grad_norm": 0.04690218344330788,
+ "learning_rate": 0.0005282334888407503,
+ "loss": 2.2809972763061523,
+ "step": 892
+ },
+ {
+ "epoch": 12.404181184668989,
+ "grad_norm": 0.0444699302315712,
+ "learning_rate": 0.000528059628009464,
+ "loss": 2.2702579498291016,
+ "step": 893
+ },
+ {
+ "epoch": 12.418118466898955,
+ "grad_norm": 0.04225282371044159,
+ "learning_rate": 0.0005278855858517003,
+ "loss": 2.2717671394348145,
+ "step": 894
+ },
+ {
+ "epoch": 12.43205574912892,
+ "grad_norm": 0.041407857090234756,
+ "learning_rate": 0.0005277113625076822,
+ "loss": 2.266977548599243,
+ "step": 895
+ },
+ {
+ "epoch": 12.445993031358885,
+ "grad_norm": 0.042014770209789276,
+ "learning_rate": 0.000527536958117778,
+ "loss": 2.269441604614258,
+ "step": 896
+ },
+ {
+ "epoch": 12.45993031358885,
+ "grad_norm": 0.04196929931640625,
+ "learning_rate": 0.0005273623728225022,
+ "loss": 2.246767997741699,
+ "step": 897
+ },
+ {
+ "epoch": 12.473867595818815,
+ "grad_norm": 0.04507727175951004,
+ "learning_rate": 0.0005271876067625153,
+ "loss": 2.2929835319519043,
+ "step": 898
+ },
+ {
+ "epoch": 12.487804878048781,
+ "grad_norm": 0.043129295110702515,
+ "learning_rate": 0.0005270126600786228,
+ "loss": 2.280632257461548,
+ "step": 899
+ },
+ {
+ "epoch": 12.501742160278745,
+ "grad_norm": 0.041876427829265594,
+ "learning_rate": 0.0005268375329117762,
+ "loss": 2.2524752616882324,
+ "step": 900
+ },
+ {
+ "epoch": 12.515679442508711,
+ "grad_norm": 0.04281412810087204,
+ "learning_rate": 0.0005266622254030724,
+ "loss": 2.278818130493164,
+ "step": 901
+ },
+ {
+ "epoch": 12.529616724738675,
+ "grad_norm": 0.040438197553157806,
+ "learning_rate": 0.0005264867376937534,
+ "loss": 2.2771482467651367,
+ "step": 902
+ },
+ {
+ "epoch": 12.543554006968641,
+ "grad_norm": 0.03930707275867462,
+ "learning_rate": 0.0005263110699252065,
+ "loss": 2.273127555847168,
+ "step": 903
+ },
+ {
+ "epoch": 12.557491289198607,
+ "grad_norm": 0.04181307926774025,
+ "learning_rate": 0.000526135222238964,
+ "loss": 2.2839956283569336,
+ "step": 904
+ },
+ {
+ "epoch": 12.571428571428571,
+ "grad_norm": 0.042597733438014984,
+ "learning_rate": 0.0005259591947767032,
+ "loss": 2.262939929962158,
+ "step": 905
+ },
+ {
+ "epoch": 12.585365853658537,
+ "grad_norm": 0.04178392142057419,
+ "learning_rate": 0.0005257829876802464,
+ "loss": 2.286794662475586,
+ "step": 906
+ },
+ {
+ "epoch": 12.599303135888501,
+ "grad_norm": 0.04041772708296776,
+ "learning_rate": 0.0005256066010915603,
+ "loss": 2.276432991027832,
+ "step": 907
+ },
+ {
+ "epoch": 12.613240418118467,
+ "grad_norm": 0.04161509871482849,
+ "learning_rate": 0.0005254300351527566,
+ "loss": 2.2779972553253174,
+ "step": 908
+ },
+ {
+ "epoch": 12.627177700348431,
+ "grad_norm": 0.04206471145153046,
+ "learning_rate": 0.000525253290006091,
+ "loss": 2.282811164855957,
+ "step": 909
+ },
+ {
+ "epoch": 12.641114982578397,
+ "grad_norm": 0.04001585766673088,
+ "learning_rate": 0.0005250763657939641,
+ "loss": 2.29434871673584,
+ "step": 910
+ },
+ {
+ "epoch": 12.655052264808361,
+ "grad_norm": 0.041886743158102036,
+ "learning_rate": 0.0005248992626589203,
+ "loss": 2.278651237487793,
+ "step": 911
+ },
+ {
+ "epoch": 12.668989547038327,
+ "grad_norm": 0.0404231883585453,
+ "learning_rate": 0.0005247219807436489,
+ "loss": 2.2875375747680664,
+ "step": 912
+ },
+ {
+ "epoch": 12.682926829268293,
+ "grad_norm": 0.037211328744888306,
+ "learning_rate": 0.000524544520190982,
+ "loss": 2.294013023376465,
+ "step": 913
+ },
+ {
+ "epoch": 12.696864111498257,
+ "grad_norm": 0.03906721621751785,
+ "learning_rate": 0.000524366881143897,
+ "loss": 2.2899856567382812,
+ "step": 914
+ },
+ {
+ "epoch": 12.710801393728223,
+ "grad_norm": 0.04206228628754616,
+ "learning_rate": 0.0005241890637455141,
+ "loss": 2.282346248626709,
+ "step": 915
+ },
+ {
+ "epoch": 12.724738675958188,
+ "grad_norm": 0.03915264084935188,
+ "learning_rate": 0.0005240110681390978,
+ "loss": 2.2995424270629883,
+ "step": 916
+ },
+ {
+ "epoch": 12.738675958188153,
+ "grad_norm": 0.03919649496674538,
+ "learning_rate": 0.0005238328944680558,
+ "loss": 2.282196044921875,
+ "step": 917
+ },
+ {
+ "epoch": 12.752613240418118,
+ "grad_norm": 0.039669446647167206,
+ "learning_rate": 0.0005236545428759394,
+ "loss": 2.2758240699768066,
+ "step": 918
+ },
+ {
+ "epoch": 12.766550522648084,
+ "grad_norm": 0.04075023531913757,
+ "learning_rate": 0.0005234760135064434,
+ "loss": 2.278747320175171,
+ "step": 919
+ },
+ {
+ "epoch": 12.78048780487805,
+ "grad_norm": 0.03815247863531113,
+ "learning_rate": 0.0005232973065034055,
+ "loss": 2.2989745140075684,
+ "step": 920
+ },
+ {
+ "epoch": 12.794425087108014,
+ "grad_norm": 0.039577171206474304,
+ "learning_rate": 0.0005231184220108069,
+ "loss": 2.278186321258545,
+ "step": 921
+ },
+ {
+ "epoch": 12.80836236933798,
+ "grad_norm": 0.04091718792915344,
+ "learning_rate": 0.0005229393601727713,
+ "loss": 2.3046107292175293,
+ "step": 922
+ },
+ {
+ "epoch": 12.822299651567944,
+ "grad_norm": 0.04034758731722832,
+ "learning_rate": 0.000522760121133566,
+ "loss": 2.2959580421447754,
+ "step": 923
+ },
+ {
+ "epoch": 12.83623693379791,
+ "grad_norm": 0.041219793260097504,
+ "learning_rate": 0.0005225807050376004,
+ "loss": 2.289950370788574,
+ "step": 924
+ },
+ {
+ "epoch": 12.850174216027874,
+ "grad_norm": 0.042124949395656586,
+ "learning_rate": 0.0005224011120294269,
+ "loss": 2.2865607738494873,
+ "step": 925
+ },
+ {
+ "epoch": 12.86411149825784,
+ "grad_norm": 0.04259328171610832,
+ "learning_rate": 0.0005222213422537401,
+ "loss": 2.2798972129821777,
+ "step": 926
+ },
+ {
+ "epoch": 12.878048780487806,
+ "grad_norm": 0.0413426011800766,
+ "learning_rate": 0.0005220413958553777,
+ "loss": 2.2765798568725586,
+ "step": 927
+ },
+ {
+ "epoch": 12.89198606271777,
+ "grad_norm": 0.04276851564645767,
+ "learning_rate": 0.0005218612729793188,
+ "loss": 2.292202949523926,
+ "step": 928
+ },
+ {
+ "epoch": 12.905923344947736,
+ "grad_norm": 0.038679834455251694,
+ "learning_rate": 0.0005216809737706856,
+ "loss": 2.2641711235046387,
+ "step": 929
+ },
+ {
+ "epoch": 12.9198606271777,
+ "grad_norm": 0.04027910903096199,
+ "learning_rate": 0.0005215004983747415,
+ "loss": 2.297112464904785,
+ "step": 930
+ },
+ {
+ "epoch": 12.933797909407666,
+ "grad_norm": 0.037091903388500214,
+ "learning_rate": 0.0005213198469368925,
+ "loss": 2.2731027603149414,
+ "step": 931
+ },
+ {
+ "epoch": 12.94773519163763,
+ "grad_norm": 0.0381062775850296,
+ "learning_rate": 0.0005211390196026861,
+ "loss": 2.276169538497925,
+ "step": 932
+ },
+ {
+ "epoch": 12.961672473867596,
+ "grad_norm": 0.03912157565355301,
+ "learning_rate": 0.0005209580165178117,
+ "loss": 2.2855257987976074,
+ "step": 933
+ },
+ {
+ "epoch": 12.975609756097562,
+ "grad_norm": 0.03726741299033165,
+ "learning_rate": 0.0005207768378281003,
+ "loss": 2.285484790802002,
+ "step": 934
+ },
+ {
+ "epoch": 12.989547038327526,
+ "grad_norm": 0.03863261640071869,
+ "learning_rate": 0.0005205954836795241,
+ "loss": 2.2770638465881348,
+ "step": 935
+ },
+ {
+ "epoch": 13.0,
+ "grad_norm": 0.03204738348722458,
+ "learning_rate": 0.000520413954218197,
+ "loss": 1.7078638076782227,
+ "step": 936
+ },
+ {
+ "epoch": 13.0,
+ "eval_loss": 0.6196639537811279,
+ "eval_runtime": 36.3518,
+ "eval_samples_per_second": 67.177,
+ "eval_steps_per_second": 0.55,
+ "step": 936
+ },
+ {
+ "epoch": 13.013937282229966,
+ "grad_norm": 0.04385007545351982,
+ "learning_rate": 0.0005202322495903739,
+ "loss": 2.2220354080200195,
+ "step": 937
+ },
+ {
+ "epoch": 13.02787456445993,
+ "grad_norm": 0.05723090469837189,
+ "learning_rate": 0.0005200503699424509,
+ "loss": 2.223271369934082,
+ "step": 938
+ },
+ {
+ "epoch": 13.041811846689896,
+ "grad_norm": 0.06027279794216156,
+ "learning_rate": 0.0005198683154209654,
+ "loss": 2.2302541732788086,
+ "step": 939
+ },
+ {
+ "epoch": 13.05574912891986,
+ "grad_norm": 0.06342783570289612,
+ "learning_rate": 0.0005196860861725952,
+ "loss": 2.2211854457855225,
+ "step": 940
+ },
+ {
+ "epoch": 13.069686411149826,
+ "grad_norm": 0.06265735626220703,
+ "learning_rate": 0.0005195036823441592,
+ "loss": 2.222750425338745,
+ "step": 941
+ },
+ {
+ "epoch": 13.08362369337979,
+ "grad_norm": 0.0661185085773468,
+ "learning_rate": 0.0005193211040826169,
+ "loss": 2.230656862258911,
+ "step": 942
+ },
+ {
+ "epoch": 13.097560975609756,
+ "grad_norm": 0.06665238738059998,
+ "learning_rate": 0.0005191383515350681,
+ "loss": 2.220534563064575,
+ "step": 943
+ },
+ {
+ "epoch": 13.111498257839722,
+ "grad_norm": 0.06432333588600159,
+ "learning_rate": 0.0005189554248487536,
+ "loss": 2.2317209243774414,
+ "step": 944
+ },
+ {
+ "epoch": 13.125435540069686,
+ "grad_norm": 0.057658061385154724,
+ "learning_rate": 0.0005187723241710539,
+ "loss": 2.20767879486084,
+ "step": 945
+ },
+ {
+ "epoch": 13.139372822299652,
+ "grad_norm": 0.06340344250202179,
+ "learning_rate": 0.0005185890496494899,
+ "loss": 2.240220546722412,
+ "step": 946
+ },
+ {
+ "epoch": 13.153310104529616,
+ "grad_norm": 0.0649016872048378,
+ "learning_rate": 0.0005184056014317225,
+ "loss": 2.2353672981262207,
+ "step": 947
+ },
+ {
+ "epoch": 13.167247386759582,
+ "grad_norm": 0.05792258679866791,
+ "learning_rate": 0.0005182219796655528,
+ "loss": 2.2480835914611816,
+ "step": 948
+ },
+ {
+ "epoch": 13.181184668989546,
+ "grad_norm": 0.059482429176568985,
+ "learning_rate": 0.0005180381844989214,
+ "loss": 2.2432656288146973,
+ "step": 949
+ },
+ {
+ "epoch": 13.195121951219512,
+ "grad_norm": 0.05838126689195633,
+ "learning_rate": 0.0005178542160799088,
+ "loss": 2.237567901611328,
+ "step": 950
+ },
+ {
+ "epoch": 13.209059233449477,
+ "grad_norm": 0.05699385702610016,
+ "learning_rate": 0.0005176700745567353,
+ "loss": 2.243746280670166,
+ "step": 951
+ },
+ {
+ "epoch": 13.222996515679442,
+ "grad_norm": 0.05618268996477127,
+ "learning_rate": 0.0005174857600777599,
+ "loss": 2.2216076850891113,
+ "step": 952
+ },
+ {
+ "epoch": 13.236933797909408,
+ "grad_norm": 0.05328221991658211,
+ "learning_rate": 0.0005173012727914816,
+ "loss": 2.2413382530212402,
+ "step": 953
+ },
+ {
+ "epoch": 13.250871080139373,
+ "grad_norm": 0.05254136770963669,
+ "learning_rate": 0.0005171166128465389,
+ "loss": 2.2317683696746826,
+ "step": 954
+ },
+ {
+ "epoch": 13.264808362369338,
+ "grad_norm": 0.05144176259636879,
+ "learning_rate": 0.0005169317803917083,
+ "loss": 2.2372474670410156,
+ "step": 955
+ },
+ {
+ "epoch": 13.278745644599303,
+ "grad_norm": 0.05258858576416969,
+ "learning_rate": 0.0005167467755759065,
+ "loss": 2.2383830547332764,
+ "step": 956
+ },
+ {
+ "epoch": 13.292682926829269,
+ "grad_norm": 0.0550001785159111,
+ "learning_rate": 0.0005165615985481881,
+ "loss": 2.2456729412078857,
+ "step": 957
+ },
+ {
+ "epoch": 13.306620209059233,
+ "grad_norm": 0.050276629626750946,
+ "learning_rate": 0.0005163762494577474,
+ "loss": 2.262298345565796,
+ "step": 958
+ },
+ {
+ "epoch": 13.320557491289199,
+ "grad_norm": 0.05388111621141434,
+ "learning_rate": 0.0005161907284539165,
+ "loss": 2.250800609588623,
+ "step": 959
+ },
+ {
+ "epoch": 13.334494773519165,
+ "grad_norm": 0.05154367536306381,
+ "learning_rate": 0.0005160050356861663,
+ "loss": 2.2442479133605957,
+ "step": 960
+ },
+ {
+ "epoch": 13.348432055749129,
+ "grad_norm": 0.04562186077237129,
+ "learning_rate": 0.0005158191713041063,
+ "loss": 2.237484931945801,
+ "step": 961
+ },
+ {
+ "epoch": 13.362369337979095,
+ "grad_norm": 0.049510203301906586,
+ "learning_rate": 0.0005156331354574838,
+ "loss": 2.243274688720703,
+ "step": 962
+ },
+ {
+ "epoch": 13.376306620209059,
+ "grad_norm": 0.050305187702178955,
+ "learning_rate": 0.0005154469282961847,
+ "loss": 2.2452855110168457,
+ "step": 963
+ },
+ {
+ "epoch": 13.390243902439025,
+ "grad_norm": 0.049128562211990356,
+ "learning_rate": 0.0005152605499702328,
+ "loss": 2.2562594413757324,
+ "step": 964
+ },
+ {
+ "epoch": 13.404181184668989,
+ "grad_norm": 0.04948648437857628,
+ "learning_rate": 0.0005150740006297896,
+ "loss": 2.2388229370117188,
+ "step": 965
+ },
+ {
+ "epoch": 13.418118466898955,
+ "grad_norm": 0.053290050476789474,
+ "learning_rate": 0.0005148872804251548,
+ "loss": 2.2601318359375,
+ "step": 966
+ },
+ {
+ "epoch": 13.43205574912892,
+ "grad_norm": 0.04839639738202095,
+ "learning_rate": 0.000514700389506765,
+ "loss": 2.2303178310394287,
+ "step": 967
+ },
+ {
+ "epoch": 13.445993031358885,
+ "grad_norm": 0.04883972555398941,
+ "learning_rate": 0.0005145133280251954,
+ "loss": 2.246448040008545,
+ "step": 968
+ },
+ {
+ "epoch": 13.45993031358885,
+ "grad_norm": 0.04747871682047844,
+ "learning_rate": 0.0005143260961311578,
+ "loss": 2.259640693664551,
+ "step": 969
+ },
+ {
+ "epoch": 13.473867595818815,
+ "grad_norm": 0.046724554151296616,
+ "learning_rate": 0.0005141386939755014,
+ "loss": 2.2453014850616455,
+ "step": 970
+ },
+ {
+ "epoch": 13.487804878048781,
+ "grad_norm": 0.045614756643772125,
+ "learning_rate": 0.0005139511217092129,
+ "loss": 2.2351949214935303,
+ "step": 971
+ },
+ {
+ "epoch": 13.501742160278745,
+ "grad_norm": 0.04794120043516159,
+ "learning_rate": 0.000513763379483416,
+ "loss": 2.2457003593444824,
+ "step": 972
+ },
+ {
+ "epoch": 13.515679442508711,
+ "grad_norm": 0.05043521523475647,
+ "learning_rate": 0.0005135754674493709,
+ "loss": 2.258542060852051,
+ "step": 973
+ },
+ {
+ "epoch": 13.529616724738675,
+ "grad_norm": 0.046207673847675323,
+ "learning_rate": 0.0005133873857584753,
+ "loss": 2.2370145320892334,
+ "step": 974
+ },
+ {
+ "epoch": 13.543554006968641,
+ "grad_norm": 0.04402166232466698,
+ "learning_rate": 0.0005131991345622629,
+ "loss": 2.2408246994018555,
+ "step": 975
+ },
+ {
+ "epoch": 13.557491289198607,
+ "grad_norm": 0.04337441921234131,
+ "learning_rate": 0.0005130107140124046,
+ "loss": 2.2634308338165283,
+ "step": 976
+ },
+ {
+ "epoch": 13.571428571428571,
+ "grad_norm": 0.047244030982255936,
+ "learning_rate": 0.0005128221242607072,
+ "loss": 2.2571523189544678,
+ "step": 977
+ },
+ {
+ "epoch": 13.585365853658537,
+ "grad_norm": 0.04867873340845108,
+ "learning_rate": 0.0005126333654591141,
+ "loss": 2.248501777648926,
+ "step": 978
+ },
+ {
+ "epoch": 13.599303135888501,
+ "grad_norm": 0.048512108623981476,
+ "learning_rate": 0.0005124444377597049,
+ "loss": 2.2579822540283203,
+ "step": 979
+ },
+ {
+ "epoch": 13.613240418118467,
+ "grad_norm": 0.04615626111626625,
+ "learning_rate": 0.0005122553413146951,
+ "loss": 2.2446889877319336,
+ "step": 980
+ },
+ {
+ "epoch": 13.627177700348431,
+ "grad_norm": 0.044876713305711746,
+ "learning_rate": 0.0005120660762764366,
+ "loss": 2.2439627647399902,
+ "step": 981
+ },
+ {
+ "epoch": 13.641114982578397,
+ "grad_norm": 0.046021413058042526,
+ "learning_rate": 0.0005118766427974166,
+ "loss": 2.262195587158203,
+ "step": 982
+ },
+ {
+ "epoch": 13.655052264808361,
+ "grad_norm": 0.04974699020385742,
+ "learning_rate": 0.0005116870410302582,
+ "loss": 2.2783303260803223,
+ "step": 983
+ },
+ {
+ "epoch": 13.668989547038327,
+ "grad_norm": 0.044128481298685074,
+ "learning_rate": 0.0005114972711277202,
+ "loss": 2.2566471099853516,
+ "step": 984
+ },
+ {
+ "epoch": 13.682926829268293,
+ "grad_norm": 0.042579326778650284,
+ "learning_rate": 0.0005113073332426968,
+ "loss": 2.2596194744110107,
+ "step": 985
+ },
+ {
+ "epoch": 13.696864111498257,
+ "grad_norm": 0.044022977352142334,
+ "learning_rate": 0.0005111172275282174,
+ "loss": 2.270303726196289,
+ "step": 986
+ },
+ {
+ "epoch": 13.710801393728223,
+ "grad_norm": 0.04324937239289284,
+ "learning_rate": 0.0005109269541374469,
+ "loss": 2.2393593788146973,
+ "step": 987
+ },
+ {
+ "epoch": 13.724738675958188,
+ "grad_norm": 0.04146691411733627,
+ "learning_rate": 0.000510736513223685,
+ "loss": 2.2541770935058594,
+ "step": 988
+ },
+ {
+ "epoch": 13.738675958188153,
+ "grad_norm": 0.04146251827478409,
+ "learning_rate": 0.0005105459049403665,
+ "loss": 2.260561943054199,
+ "step": 989
+ },
+ {
+ "epoch": 13.752613240418118,
+ "grad_norm": 0.042454298585653305,
+ "learning_rate": 0.0005103551294410614,
+ "loss": 2.2623369693756104,
+ "step": 990
+ },
+ {
+ "epoch": 13.766550522648084,
+ "grad_norm": 0.04376888647675514,
+ "learning_rate": 0.0005101641868794736,
+ "loss": 2.2560131549835205,
+ "step": 991
+ },
+ {
+ "epoch": 13.78048780487805,
+ "grad_norm": 0.04379274323582649,
+ "learning_rate": 0.0005099730774094423,
+ "loss": 2.2503037452697754,
+ "step": 992
+ },
+ {
+ "epoch": 13.794425087108014,
+ "grad_norm": 0.04411308094859123,
+ "learning_rate": 0.0005097818011849408,
+ "loss": 2.244288921356201,
+ "step": 993
+ },
+ {
+ "epoch": 13.80836236933798,
+ "grad_norm": 0.04043621942400932,
+ "learning_rate": 0.0005095903583600772,
+ "loss": 2.244035243988037,
+ "step": 994
+ },
+ {
+ "epoch": 13.822299651567944,
+ "grad_norm": 0.04722495377063751,
+ "learning_rate": 0.0005093987490890933,
+ "loss": 2.269280433654785,
+ "step": 995
+ },
+ {
+ "epoch": 13.83623693379791,
+ "grad_norm": 0.049322471022605896,
+ "learning_rate": 0.0005092069735263651,
+ "loss": 2.249361515045166,
+ "step": 996
+ },
+ {
+ "epoch": 13.850174216027874,
+ "grad_norm": 0.04808150604367256,
+ "learning_rate": 0.000509015031826403,
+ "loss": 2.255721092224121,
+ "step": 997
+ },
+ {
+ "epoch": 13.86411149825784,
+ "grad_norm": 0.044958360493183136,
+ "learning_rate": 0.0005088229241438509,
+ "loss": 2.2578060626983643,
+ "step": 998
+ },
+ {
+ "epoch": 13.878048780487806,
+ "grad_norm": 0.04442335292696953,
+ "learning_rate": 0.0005086306506334864,
+ "loss": 2.2553436756134033,
+ "step": 999
+ },
+ {
+ "epoch": 13.89198606271777,
+ "grad_norm": 0.0487419068813324,
+ "learning_rate": 0.0005084382114502208,
+ "loss": 2.2526695728302,
+ "step": 1000
+ },
+ {
+ "epoch": 13.905923344947736,
+ "grad_norm": 0.047398749738931656,
+ "learning_rate": 0.0005082456067490988,
+ "loss": 2.259551763534546,
+ "step": 1001
+ },
+ {
+ "epoch": 13.9198606271777,
+ "grad_norm": 0.04429299384355545,
+ "learning_rate": 0.0005080528366852987,
+ "loss": 2.270155906677246,
+ "step": 1002
+ },
+ {
+ "epoch": 13.933797909407666,
+ "grad_norm": 0.045255087316036224,
+ "learning_rate": 0.0005078599014141318,
+ "loss": 2.2554101943969727,
+ "step": 1003
+ },
+ {
+ "epoch": 13.94773519163763,
+ "grad_norm": 0.04559073969721794,
+ "learning_rate": 0.0005076668010910425,
+ "loss": 2.2913122177124023,
+ "step": 1004
+ },
+ {
+ "epoch": 13.961672473867596,
+ "grad_norm": 0.04300642013549805,
+ "learning_rate": 0.0005074735358716083,
+ "loss": 2.241891860961914,
+ "step": 1005
+ },
+ {
+ "epoch": 13.975609756097562,
+ "grad_norm": 0.04328060522675514,
+ "learning_rate": 0.0005072801059115394,
+ "loss": 2.2659969329833984,
+ "step": 1006
+ },
+ {
+ "epoch": 13.989547038327526,
+ "grad_norm": 0.0425153523683548,
+ "learning_rate": 0.000507086511366679,
+ "loss": 2.266413450241089,
+ "step": 1007
+ },
+ {
+ "epoch": 14.0,
+ "grad_norm": 0.03479035571217537,
+ "learning_rate": 0.0005068927523930027,
+ "loss": 1.6806477308273315,
+ "step": 1008
+ },
+ {
+ "epoch": 14.0,
+ "eval_loss": 0.6199555993080139,
+ "eval_runtime": 42.3013,
+ "eval_samples_per_second": 57.729,
+ "eval_steps_per_second": 0.473,
+ "step": 1008
+ },
+ {
+ "epoch": 14.013937282229966,
+ "grad_norm": 0.04759897664189339,
+ "learning_rate": 0.0005066988291466184,
+ "loss": 2.1937670707702637,
+ "step": 1009
+ },
+ {
+ "epoch": 14.02787456445993,
+ "grad_norm": 0.06862346827983856,
+ "learning_rate": 0.0005065047417837669,
+ "loss": 2.2141411304473877,
+ "step": 1010
+ },
+ {
+ "epoch": 14.041811846689896,
+ "grad_norm": 0.07168037444353104,
+ "learning_rate": 0.0005063104904608206,
+ "loss": 2.198908805847168,
+ "step": 1011
+ },
+ {
+ "epoch": 14.05574912891986,
+ "grad_norm": 0.06659573316574097,
+ "learning_rate": 0.0005061160753342843,
+ "loss": 2.218000888824463,
+ "step": 1012
+ },
+ {
+ "epoch": 14.069686411149826,
+ "grad_norm": 0.06285326927900314,
+ "learning_rate": 0.0005059214965607948,
+ "loss": 2.1995139122009277,
+ "step": 1013
+ },
+ {
+ "epoch": 14.08362369337979,
+ "grad_norm": 0.061170000582933426,
+ "learning_rate": 0.0005057267542971207,
+ "loss": 2.2026236057281494,
+ "step": 1014
+ },
+ {
+ "epoch": 14.097560975609756,
+ "grad_norm": 0.06091141700744629,
+ "learning_rate": 0.0005055318487001624,
+ "loss": 2.2087340354919434,
+ "step": 1015
+ },
+ {
+ "epoch": 14.111498257839722,
+ "grad_norm": 0.05953513830900192,
+ "learning_rate": 0.0005053367799269518,
+ "loss": 2.1985390186309814,
+ "step": 1016
+ },
+ {
+ "epoch": 14.125435540069686,
+ "grad_norm": 0.06126454845070839,
+ "learning_rate": 0.0005051415481346522,
+ "loss": 2.176772117614746,
+ "step": 1017
+ },
+ {
+ "epoch": 14.139372822299652,
+ "grad_norm": 0.0675380751490593,
+ "learning_rate": 0.0005049461534805585,
+ "loss": 2.2045438289642334,
+ "step": 1018
+ },
+ {
+ "epoch": 14.153310104529616,
+ "grad_norm": 0.07128442823886871,
+ "learning_rate": 0.0005047505961220964,
+ "loss": 2.197822332382202,
+ "step": 1019
+ },
+ {
+ "epoch": 14.167247386759582,
+ "grad_norm": 0.06793799996376038,
+ "learning_rate": 0.0005045548762168231,
+ "loss": 2.1957449913024902,
+ "step": 1020
+ },
+ {
+ "epoch": 14.181184668989546,
+ "grad_norm": 0.05969219282269478,
+ "learning_rate": 0.0005043589939224266,
+ "loss": 2.206712245941162,
+ "step": 1021
+ },
+ {
+ "epoch": 14.195121951219512,
+ "grad_norm": 0.061422668397426605,
+ "learning_rate": 0.0005041629493967257,
+ "loss": 2.199829578399658,
+ "step": 1022
+ },
+ {
+ "epoch": 14.209059233449477,
+ "grad_norm": 0.06352506577968597,
+ "learning_rate": 0.0005039667427976697,
+ "loss": 2.208404064178467,
+ "step": 1023
+ },
+ {
+ "epoch": 14.222996515679442,
+ "grad_norm": 0.06349361687898636,
+ "learning_rate": 0.0005037703742833391,
+ "loss": 2.2045750617980957,
+ "step": 1024
+ },
+ {
+ "epoch": 14.236933797909408,
+ "grad_norm": 0.05827466771006584,
+ "learning_rate": 0.0005035738440119442,
+ "loss": 2.204209566116333,
+ "step": 1025
+ },
+ {
+ "epoch": 14.250871080139373,
+ "grad_norm": 0.055201269686222076,
+ "learning_rate": 0.0005033771521418261,
+ "loss": 2.210240364074707,
+ "step": 1026
+ },
+ {
+ "epoch": 14.264808362369338,
+ "grad_norm": 0.05749988183379173,
+ "learning_rate": 0.0005031802988314557,
+ "loss": 2.2068967819213867,
+ "step": 1027
+ },
+ {
+ "epoch": 14.278745644599303,
+ "grad_norm": 0.061330124735832214,
+ "learning_rate": 0.0005029832842394342,
+ "loss": 2.194495439529419,
+ "step": 1028
+ },
+ {
+ "epoch": 14.292682926829269,
+ "grad_norm": 0.05682205408811569,
+ "learning_rate": 0.0005027861085244927,
+ "loss": 2.1934378147125244,
+ "step": 1029
+ },
+ {
+ "epoch": 14.306620209059233,
+ "grad_norm": 0.054082732647657394,
+ "learning_rate": 0.0005025887718454922,
+ "loss": 2.1993770599365234,
+ "step": 1030
+ },
+ {
+ "epoch": 14.320557491289199,
+ "grad_norm": 0.05460484325885773,
+ "learning_rate": 0.0005023912743614232,
+ "loss": 2.2270498275756836,
+ "step": 1031
+ },
+ {
+ "epoch": 14.334494773519165,
+ "grad_norm": 0.05222999304533005,
+ "learning_rate": 0.0005021936162314058,
+ "loss": 2.1926186084747314,
+ "step": 1032
+ },
+ {
+ "epoch": 14.348432055749129,
+ "grad_norm": 0.04854818806052208,
+ "learning_rate": 0.0005019957976146898,
+ "loss": 2.209700584411621,
+ "step": 1033
+ },
+ {
+ "epoch": 14.362369337979095,
+ "grad_norm": 0.051000695675611496,
+ "learning_rate": 0.0005017978186706538,
+ "loss": 2.207035541534424,
+ "step": 1034
+ },
+ {
+ "epoch": 14.376306620209059,
+ "grad_norm": 0.05035366490483284,
+ "learning_rate": 0.0005015996795588062,
+ "loss": 2.227447032928467,
+ "step": 1035
+ },
+ {
+ "epoch": 14.390243902439025,
+ "grad_norm": 0.048412274569272995,
+ "learning_rate": 0.0005014013804387838,
+ "loss": 2.229435443878174,
+ "step": 1036
+ },
+ {
+ "epoch": 14.404181184668989,
+ "grad_norm": 0.04643386974930763,
+ "learning_rate": 0.0005012029214703529,
+ "loss": 2.212726593017578,
+ "step": 1037
+ },
+ {
+ "epoch": 14.418118466898955,
+ "grad_norm": 0.05282546207308769,
+ "learning_rate": 0.000501004302813408,
+ "loss": 2.2133121490478516,
+ "step": 1038
+ },
+ {
+ "epoch": 14.43205574912892,
+ "grad_norm": 0.04976656660437584,
+ "learning_rate": 0.0005008055246279727,
+ "loss": 2.222738265991211,
+ "step": 1039
+ },
+ {
+ "epoch": 14.445993031358885,
+ "grad_norm": 0.04937833175063133,
+ "learning_rate": 0.000500606587074199,
+ "loss": 2.2278215885162354,
+ "step": 1040
+ },
+ {
+ "epoch": 14.45993031358885,
+ "grad_norm": 0.05218666046857834,
+ "learning_rate": 0.0005004074903123674,
+ "loss": 2.2277817726135254,
+ "step": 1041
+ },
+ {
+ "epoch": 14.473867595818815,
+ "grad_norm": 0.05176419019699097,
+ "learning_rate": 0.0005002082345028864,
+ "loss": 2.231154203414917,
+ "step": 1042
+ },
+ {
+ "epoch": 14.487804878048781,
+ "grad_norm": 0.049131155014038086,
+ "learning_rate": 0.0005000088198062929,
+ "loss": 2.2321465015411377,
+ "step": 1043
+ },
+ {
+ "epoch": 14.501742160278745,
+ "grad_norm": 0.04980473965406418,
+ "learning_rate": 0.0004998092463832516,
+ "loss": 2.191263198852539,
+ "step": 1044
+ },
+ {
+ "epoch": 14.515679442508711,
+ "grad_norm": 0.048349328339099884,
+ "learning_rate": 0.0004996095143945554,
+ "loss": 2.2167882919311523,
+ "step": 1045
+ },
+ {
+ "epoch": 14.529616724738675,
+ "grad_norm": 0.04662036523222923,
+ "learning_rate": 0.0004994096240011246,
+ "loss": 2.213564395904541,
+ "step": 1046
+ },
+ {
+ "epoch": 14.543554006968641,
+ "grad_norm": 0.04783051833510399,
+ "learning_rate": 0.0004992095753640072,
+ "loss": 2.225752592086792,
+ "step": 1047
+ },
+ {
+ "epoch": 14.557491289198607,
+ "grad_norm": 0.05093488097190857,
+ "learning_rate": 0.0004990093686443791,
+ "loss": 2.2382640838623047,
+ "step": 1048
+ },
+ {
+ "epoch": 14.571428571428571,
+ "grad_norm": 0.05354484170675278,
+ "learning_rate": 0.000498809004003543,
+ "loss": 2.226134777069092,
+ "step": 1049
+ },
+ {
+ "epoch": 14.585365853658537,
+ "grad_norm": 0.04998788982629776,
+ "learning_rate": 0.0004986084816029291,
+ "loss": 2.2372093200683594,
+ "step": 1050
+ },
+ {
+ "epoch": 14.599303135888501,
+ "grad_norm": 0.04952755197882652,
+ "learning_rate": 0.0004984078016040946,
+ "loss": 2.232860565185547,
+ "step": 1051
+ },
+ {
+ "epoch": 14.613240418118467,
+ "grad_norm": 0.04750008508563042,
+ "learning_rate": 0.000498206964168724,
+ "loss": 2.223733901977539,
+ "step": 1052
+ },
+ {
+ "epoch": 14.627177700348431,
+ "grad_norm": 0.04636282101273537,
+ "learning_rate": 0.000498005969458628,
+ "loss": 2.227602958679199,
+ "step": 1053
+ },
+ {
+ "epoch": 14.641114982578397,
+ "grad_norm": 0.0465775765478611,
+ "learning_rate": 0.0004978048176357447,
+ "loss": 2.228397846221924,
+ "step": 1054
+ },
+ {
+ "epoch": 14.655052264808361,
+ "grad_norm": 0.04467611759901047,
+ "learning_rate": 0.0004976035088621385,
+ "loss": 2.2124547958374023,
+ "step": 1055
+ },
+ {
+ "epoch": 14.668989547038327,
+ "grad_norm": 0.04734990745782852,
+ "learning_rate": 0.0004974020433000003,
+ "loss": 2.2278337478637695,
+ "step": 1056
+ },
+ {
+ "epoch": 14.682926829268293,
+ "grad_norm": 0.048105571419000626,
+ "learning_rate": 0.000497200421111647,
+ "loss": 2.2506489753723145,
+ "step": 1057
+ },
+ {
+ "epoch": 14.696864111498257,
+ "grad_norm": 0.04658956825733185,
+ "learning_rate": 0.0004969986424595221,
+ "loss": 2.2176156044006348,
+ "step": 1058
+ },
+ {
+ "epoch": 14.710801393728223,
+ "grad_norm": 0.04707225784659386,
+ "learning_rate": 0.0004967967075061949,
+ "loss": 2.235560894012451,
+ "step": 1059
+ },
+ {
+ "epoch": 14.724738675958188,
+ "grad_norm": 0.04652702435851097,
+ "learning_rate": 0.0004965946164143609,
+ "loss": 2.2421717643737793,
+ "step": 1060
+ },
+ {
+ "epoch": 14.738675958188153,
+ "grad_norm": 0.045091014355421066,
+ "learning_rate": 0.0004963923693468413,
+ "loss": 2.233527183532715,
+ "step": 1061
+ },
+ {
+ "epoch": 14.752613240418118,
+ "grad_norm": 0.0467996746301651,
+ "learning_rate": 0.0004961899664665827,
+ "loss": 2.208993673324585,
+ "step": 1062
+ },
+ {
+ "epoch": 14.766550522648084,
+ "grad_norm": 0.04628554731607437,
+ "learning_rate": 0.0004959874079366576,
+ "loss": 2.230579376220703,
+ "step": 1063
+ },
+ {
+ "epoch": 14.78048780487805,
+ "grad_norm": 0.04599257931113243,
+ "learning_rate": 0.0004957846939202637,
+ "loss": 2.2343482971191406,
+ "step": 1064
+ },
+ {
+ "epoch": 14.794425087108014,
+ "grad_norm": 0.045816246420145035,
+ "learning_rate": 0.000495581824580724,
+ "loss": 2.242190361022949,
+ "step": 1065
+ },
+ {
+ "epoch": 14.80836236933798,
+ "grad_norm": 0.04708870127797127,
+ "learning_rate": 0.0004953788000814866,
+ "loss": 2.2468795776367188,
+ "step": 1066
+ },
+ {
+ "epoch": 14.822299651567944,
+ "grad_norm": 0.049605369567871094,
+ "learning_rate": 0.000495175620586125,
+ "loss": 2.21968412399292,
+ "step": 1067
+ },
+ {
+ "epoch": 14.83623693379791,
+ "grad_norm": 0.044056523591279984,
+ "learning_rate": 0.0004949722862583368,
+ "loss": 2.2316298484802246,
+ "step": 1068
+ },
+ {
+ "epoch": 14.850174216027874,
+ "grad_norm": 0.042938072234392166,
+ "learning_rate": 0.000494768797261945,
+ "loss": 2.252958059310913,
+ "step": 1069
+ },
+ {
+ "epoch": 14.86411149825784,
+ "grad_norm": 0.04511357098817825,
+ "learning_rate": 0.000494565153760897,
+ "loss": 2.2274842262268066,
+ "step": 1070
+ },
+ {
+ "epoch": 14.878048780487806,
+ "grad_norm": 0.04632679745554924,
+ "learning_rate": 0.0004943613559192648,
+ "loss": 2.2324767112731934,
+ "step": 1071
+ },
+ {
+ "epoch": 14.89198606271777,
+ "grad_norm": 0.045614346861839294,
+ "learning_rate": 0.0004941574039012444,
+ "loss": 2.2428746223449707,
+ "step": 1072
+ },
+ {
+ "epoch": 14.905923344947736,
+ "grad_norm": 0.04592366889119148,
+ "learning_rate": 0.0004939532978711566,
+ "loss": 2.2330827713012695,
+ "step": 1073
+ },
+ {
+ "epoch": 14.9198606271777,
+ "grad_norm": 0.04424305632710457,
+ "learning_rate": 0.0004937490379934456,
+ "loss": 2.2334916591644287,
+ "step": 1074
+ },
+ {
+ "epoch": 14.933797909407666,
+ "grad_norm": 0.0463118739426136,
+ "learning_rate": 0.00049354462443268,
+ "loss": 2.2362606525421143,
+ "step": 1075
+ },
+ {
+ "epoch": 14.94773519163763,
+ "grad_norm": 0.04408831149339676,
+ "learning_rate": 0.0004933400573535521,
+ "loss": 2.2407727241516113,
+ "step": 1076
+ },
+ {
+ "epoch": 14.961672473867596,
+ "grad_norm": 0.04300303012132645,
+ "learning_rate": 0.000493135336920878,
+ "loss": 2.222532272338867,
+ "step": 1077
+ },
+ {
+ "epoch": 14.975609756097562,
+ "grad_norm": 0.04180522635579109,
+ "learning_rate": 0.0004929304632995973,
+ "loss": 2.242893695831299,
+ "step": 1078
+ },
+ {
+ "epoch": 14.989547038327526,
+ "grad_norm": 0.043276574462652206,
+ "learning_rate": 0.0004927254366547727,
+ "loss": 2.2241783142089844,
+ "step": 1079
+ },
+ {
+ "epoch": 15.0,
+ "grad_norm": 0.036254994571208954,
+ "learning_rate": 0.0004925202571515908,
+ "loss": 1.6649963855743408,
+ "step": 1080
+ },
+ {
+ "epoch": 15.0,
+ "eval_loss": 0.6207222938537598,
+ "eval_runtime": 37.3466,
+ "eval_samples_per_second": 65.388,
+ "eval_steps_per_second": 0.536,
+ "step": 1080
+ },
+ {
+ "epoch": 15.013937282229966,
+ "grad_norm": 0.045301277190446854,
+ "learning_rate": 0.0004923149249553608,
+ "loss": 2.184032917022705,
+ "step": 1081
+ },
+ {
+ "epoch": 15.02787456445993,
+ "grad_norm": 0.05988018214702606,
+ "learning_rate": 0.0004921094402315152,
+ "loss": 2.1630473136901855,
+ "step": 1082
+ },
+ {
+ "epoch": 15.041811846689896,
+ "grad_norm": 0.06664786487817764,
+ "learning_rate": 0.0004919038031456093,
+ "loss": 2.172067642211914,
+ "step": 1083
+ },
+ {
+ "epoch": 15.05574912891986,
+ "grad_norm": 0.06994126737117767,
+ "learning_rate": 0.0004916980138633213,
+ "loss": 2.185060501098633,
+ "step": 1084
+ },
+ {
+ "epoch": 15.069686411149826,
+ "grad_norm": 0.07145395129919052,
+ "learning_rate": 0.0004914920725504518,
+ "loss": 2.173717498779297,
+ "step": 1085
+ },
+ {
+ "epoch": 15.08362369337979,
+ "grad_norm": 0.07037318497896194,
+ "learning_rate": 0.000491285979372924,
+ "loss": 2.1818294525146484,
+ "step": 1086
+ },
+ {
+ "epoch": 15.097560975609756,
+ "grad_norm": 0.07752140611410141,
+ "learning_rate": 0.0004910797344967834,
+ "loss": 2.179530620574951,
+ "step": 1087
+ },
+ {
+ "epoch": 15.111498257839722,
+ "grad_norm": 0.07689100503921509,
+ "learning_rate": 0.000490873338088198,
+ "loss": 2.167066812515259,
+ "step": 1088
+ },
+ {
+ "epoch": 15.125435540069686,
+ "grad_norm": 0.07060840725898743,
+ "learning_rate": 0.0004906667903134573,
+ "loss": 2.166823387145996,
+ "step": 1089
+ },
+ {
+ "epoch": 15.139372822299652,
+ "grad_norm": 0.07528708130121231,
+ "learning_rate": 0.0004904600913389735,
+ "loss": 2.1838769912719727,
+ "step": 1090
+ },
+ {
+ "epoch": 15.153310104529616,
+ "grad_norm": 0.07452721893787384,
+ "learning_rate": 0.0004902532413312799,
+ "loss": 2.1846580505371094,
+ "step": 1091
+ },
+ {
+ "epoch": 15.167247386759582,
+ "grad_norm": 0.08076248317956924,
+ "learning_rate": 0.0004900462404570321,
+ "loss": 2.1811747550964355,
+ "step": 1092
+ },
+ {
+ "epoch": 15.181184668989546,
+ "grad_norm": 0.07249059528112411,
+ "learning_rate": 0.0004898390888830067,
+ "loss": 2.187530279159546,
+ "step": 1093
+ },
+ {
+ "epoch": 15.195121951219512,
+ "grad_norm": 0.06610925495624542,
+ "learning_rate": 0.0004896317867761022,
+ "loss": 2.1889264583587646,
+ "step": 1094
+ },
+ {
+ "epoch": 15.209059233449477,
+ "grad_norm": 0.07099732756614685,
+ "learning_rate": 0.000489424334303338,
+ "loss": 2.188560962677002,
+ "step": 1095
+ },
+ {
+ "epoch": 15.222996515679442,
+ "grad_norm": 0.0737202987074852,
+ "learning_rate": 0.0004892167316318548,
+ "loss": 2.186715841293335,
+ "step": 1096
+ },
+ {
+ "epoch": 15.236933797909408,
+ "grad_norm": 0.06986237317323685,
+ "learning_rate": 0.0004890089789289147,
+ "loss": 2.1962318420410156,
+ "step": 1097
+ },
+ {
+ "epoch": 15.250871080139373,
+ "grad_norm": 0.07112278789281845,
+ "learning_rate": 0.0004888010763618997,
+ "loss": 2.194401502609253,
+ "step": 1098
+ },
+ {
+ "epoch": 15.264808362369338,
+ "grad_norm": 0.06746342778205872,
+ "learning_rate": 0.0004885930240983136,
+ "loss": 2.188718795776367,
+ "step": 1099
+ },
+ {
+ "epoch": 15.278745644599303,
+ "grad_norm": 0.06471215933561325,
+ "learning_rate": 0.0004883848223057801,
+ "loss": 2.198849678039551,
+ "step": 1100
+ },
+ {
+ "epoch": 15.292682926829269,
+ "grad_norm": 0.05913659557700157,
+ "learning_rate": 0.00048817647115204386,
+ "loss": 2.183661937713623,
+ "step": 1101
+ },
+ {
+ "epoch": 15.306620209059233,
+ "grad_norm": 0.060666151344776154,
+ "learning_rate": 0.00048796797080496936,
+ "loss": 2.1805803775787354,
+ "step": 1102
+ },
+ {
+ "epoch": 15.320557491289199,
+ "grad_norm": 0.06026238948106766,
+ "learning_rate": 0.00048775932143254176,
+ "loss": 2.1778993606567383,
+ "step": 1103
+ },
+ {
+ "epoch": 15.334494773519165,
+ "grad_norm": 0.054371971637010574,
+ "learning_rate": 0.0004875505232028661,
+ "loss": 2.193100690841675,
+ "step": 1104
+ },
+ {
+ "epoch": 15.348432055749129,
+ "grad_norm": 0.051084667444229126,
+ "learning_rate": 0.0004873415762841672,
+ "loss": 2.1867239475250244,
+ "step": 1105
+ },
+ {
+ "epoch": 15.362369337979095,
+ "grad_norm": 0.05281403660774231,
+ "learning_rate": 0.00048713248084478986,
+ "loss": 2.1998157501220703,
+ "step": 1106
+ },
+ {
+ "epoch": 15.376306620209059,
+ "grad_norm": 0.04957163333892822,
+ "learning_rate": 0.0004869232370531986,
+ "loss": 2.1781673431396484,
+ "step": 1107
+ },
+ {
+ "epoch": 15.390243902439025,
+ "grad_norm": 0.04794200882315636,
+ "learning_rate": 0.0004867138450779773,
+ "loss": 2.1990952491760254,
+ "step": 1108
+ },
+ {
+ "epoch": 15.404181184668989,
+ "grad_norm": 0.05102508142590523,
+ "learning_rate": 0.0004865043050878293,
+ "loss": 2.199371814727783,
+ "step": 1109
+ },
+ {
+ "epoch": 15.418118466898955,
+ "grad_norm": 0.049935199320316315,
+ "learning_rate": 0.0004862946172515771,
+ "loss": 2.191676616668701,
+ "step": 1110
+ },
+ {
+ "epoch": 15.43205574912892,
+ "grad_norm": 0.05205542966723442,
+ "learning_rate": 0.0004860847817381625,
+ "loss": 2.2015931606292725,
+ "step": 1111
+ },
+ {
+ "epoch": 15.445993031358885,
+ "grad_norm": 0.051782310009002686,
+ "learning_rate": 0.0004858747987166463,
+ "loss": 2.200479030609131,
+ "step": 1112
+ },
+ {
+ "epoch": 15.45993031358885,
+ "grad_norm": 0.04914203658699989,
+ "learning_rate": 0.00048566466835620774,
+ "loss": 2.19816517829895,
+ "step": 1113
+ },
+ {
+ "epoch": 15.473867595818815,
+ "grad_norm": 0.04609949141740799,
+ "learning_rate": 0.0004854543908261453,
+ "loss": 2.1905436515808105,
+ "step": 1114
+ },
+ {
+ "epoch": 15.487804878048781,
+ "grad_norm": 0.04916610196232796,
+ "learning_rate": 0.0004852439662958756,
+ "loss": 2.203505516052246,
+ "step": 1115
+ },
+ {
+ "epoch": 15.501742160278745,
+ "grad_norm": 0.04806613177061081,
+ "learning_rate": 0.000485033394934934,
+ "loss": 2.2004809379577637,
+ "step": 1116
+ },
+ {
+ "epoch": 15.515679442508711,
+ "grad_norm": 0.04937082529067993,
+ "learning_rate": 0.000484822676912974,
+ "loss": 2.1941723823547363,
+ "step": 1117
+ },
+ {
+ "epoch": 15.529616724738675,
+ "grad_norm": 0.049360860139131546,
+ "learning_rate": 0.0004846118123997674,
+ "loss": 2.1975173950195312,
+ "step": 1118
+ },
+ {
+ "epoch": 15.543554006968641,
+ "grad_norm": 0.04772219434380531,
+ "learning_rate": 0.00048440080156520387,
+ "loss": 2.211244583129883,
+ "step": 1119
+ },
+ {
+ "epoch": 15.557491289198607,
+ "grad_norm": 0.04961530491709709,
+ "learning_rate": 0.0004841896445792909,
+ "loss": 2.191709041595459,
+ "step": 1120
+ },
+ {
+ "epoch": 15.571428571428571,
+ "grad_norm": 0.049396563321352005,
+ "learning_rate": 0.000483978341612154,
+ "loss": 2.2178797721862793,
+ "step": 1121
+ },
+ {
+ "epoch": 15.585365853658537,
+ "grad_norm": 0.0474911704659462,
+ "learning_rate": 0.0004837668928340362,
+ "loss": 2.1883950233459473,
+ "step": 1122
+ },
+ {
+ "epoch": 15.599303135888501,
+ "grad_norm": 0.0497126504778862,
+ "learning_rate": 0.0004835552984152978,
+ "loss": 2.194390296936035,
+ "step": 1123
+ },
+ {
+ "epoch": 15.613240418118467,
+ "grad_norm": 0.04819052666425705,
+ "learning_rate": 0.00048334355852641664,
+ "loss": 2.2060859203338623,
+ "step": 1124
+ },
+ {
+ "epoch": 15.627177700348431,
+ "grad_norm": 0.048422664403915405,
+ "learning_rate": 0.0004831316733379879,
+ "loss": 2.203671932220459,
+ "step": 1125
+ },
+ {
+ "epoch": 15.641114982578397,
+ "grad_norm": 0.0464651882648468,
+ "learning_rate": 0.0004829196430207235,
+ "loss": 2.193103313446045,
+ "step": 1126
+ },
+ {
+ "epoch": 15.655052264808361,
+ "grad_norm": 0.04777771607041359,
+ "learning_rate": 0.00048270746774545237,
+ "loss": 2.190608501434326,
+ "step": 1127
+ },
+ {
+ "epoch": 15.668989547038327,
+ "grad_norm": 0.048422545194625854,
+ "learning_rate": 0.0004824951476831204,
+ "loss": 2.191826105117798,
+ "step": 1128
+ },
+ {
+ "epoch": 15.682926829268293,
+ "grad_norm": 0.04907011240720749,
+ "learning_rate": 0.00048228268300479015,
+ "loss": 2.2020134925842285,
+ "step": 1129
+ },
+ {
+ "epoch": 15.696864111498257,
+ "grad_norm": 0.04749045521020889,
+ "learning_rate": 0.0004820700738816403,
+ "loss": 2.1956100463867188,
+ "step": 1130
+ },
+ {
+ "epoch": 15.710801393728223,
+ "grad_norm": 0.04741237685084343,
+ "learning_rate": 0.0004818573204849664,
+ "loss": 2.1953983306884766,
+ "step": 1131
+ },
+ {
+ "epoch": 15.724738675958188,
+ "grad_norm": 0.048426248133182526,
+ "learning_rate": 0.00048164442298617987,
+ "loss": 2.1906962394714355,
+ "step": 1132
+ },
+ {
+ "epoch": 15.738675958188153,
+ "grad_norm": 0.04688018932938576,
+ "learning_rate": 0.00048143138155680844,
+ "loss": 2.2023704051971436,
+ "step": 1133
+ },
+ {
+ "epoch": 15.752613240418118,
+ "grad_norm": 0.04573274403810501,
+ "learning_rate": 0.0004812181963684958,
+ "loss": 2.1997122764587402,
+ "step": 1134
+ },
+ {
+ "epoch": 15.766550522648084,
+ "grad_norm": 0.04500049352645874,
+ "learning_rate": 0.00048100486759300134,
+ "loss": 2.203868865966797,
+ "step": 1135
+ },
+ {
+ "epoch": 15.78048780487805,
+ "grad_norm": 0.046841904520988464,
+ "learning_rate": 0.00048079139540220024,
+ "loss": 2.2186760902404785,
+ "step": 1136
+ },
+ {
+ "epoch": 15.794425087108014,
+ "grad_norm": 0.04670709744095802,
+ "learning_rate": 0.0004805777799680831,
+ "loss": 2.2019705772399902,
+ "step": 1137
+ },
+ {
+ "epoch": 15.80836236933798,
+ "grad_norm": 0.04602878540754318,
+ "learning_rate": 0.0004803640214627561,
+ "loss": 2.21022891998291,
+ "step": 1138
+ },
+ {
+ "epoch": 15.822299651567944,
+ "grad_norm": 0.045200031250715256,
+ "learning_rate": 0.0004801501200584406,
+ "loss": 2.2007641792297363,
+ "step": 1139
+ },
+ {
+ "epoch": 15.83623693379791,
+ "grad_norm": 0.04749643802642822,
+ "learning_rate": 0.000479936075927473,
+ "loss": 2.2098441123962402,
+ "step": 1140
+ },
+ {
+ "epoch": 15.850174216027874,
+ "grad_norm": 0.04594074562191963,
+ "learning_rate": 0.000479721889242305,
+ "loss": 2.204615354537964,
+ "step": 1141
+ },
+ {
+ "epoch": 15.86411149825784,
+ "grad_norm": 0.04540146514773369,
+ "learning_rate": 0.0004795075601755027,
+ "loss": 2.2012791633605957,
+ "step": 1142
+ },
+ {
+ "epoch": 15.878048780487806,
+ "grad_norm": 0.04618830978870392,
+ "learning_rate": 0.00047929308889974737,
+ "loss": 2.1914544105529785,
+ "step": 1143
+ },
+ {
+ "epoch": 15.89198606271777,
+ "grad_norm": 0.0450817234814167,
+ "learning_rate": 0.0004790784755878346,
+ "loss": 2.200557231903076,
+ "step": 1144
+ },
+ {
+ "epoch": 15.905923344947736,
+ "grad_norm": 0.04639074578881264,
+ "learning_rate": 0.00047886372041267434,
+ "loss": 2.204821825027466,
+ "step": 1145
+ },
+ {
+ "epoch": 15.9198606271777,
+ "grad_norm": 0.04546049237251282,
+ "learning_rate": 0.0004786488235472909,
+ "loss": 2.213542938232422,
+ "step": 1146
+ },
+ {
+ "epoch": 15.933797909407666,
+ "grad_norm": 0.04436152055859566,
+ "learning_rate": 0.0004784337851648231,
+ "loss": 2.1992855072021484,
+ "step": 1147
+ },
+ {
+ "epoch": 15.94773519163763,
+ "grad_norm": 0.04665682092308998,
+ "learning_rate": 0.0004782186054385233,
+ "loss": 2.211052417755127,
+ "step": 1148
+ },
+ {
+ "epoch": 15.961672473867596,
+ "grad_norm": 0.04532767832279205,
+ "learning_rate": 0.0004780032845417579,
+ "loss": 2.2086901664733887,
+ "step": 1149
+ },
+ {
+ "epoch": 15.975609756097562,
+ "grad_norm": 0.04679917171597481,
+ "learning_rate": 0.000477787822648007,
+ "loss": 2.1904289722442627,
+ "step": 1150
+ },
+ {
+ "epoch": 15.989547038327526,
+ "grad_norm": 0.04696613550186157,
+ "learning_rate": 0.00047757221993086443,
+ "loss": 2.17523193359375,
+ "step": 1151
+ },
+ {
+ "epoch": 16.0,
+ "grad_norm": 0.03984897583723068,
+ "learning_rate": 0.00047735647656403754,
+ "loss": 1.6456931829452515,
+ "step": 1152
+ },
+ {
+ "epoch": 16.0,
+ "eval_loss": 0.6217544674873352,
+ "eval_runtime": 36.2031,
+ "eval_samples_per_second": 67.453,
+ "eval_steps_per_second": 0.552,
+ "step": 1152
+ },
+ {
+ "epoch": 16.013937282229964,
+ "grad_norm": 0.048258837312459946,
+ "learning_rate": 0.0004771405927213467,
+ "loss": 2.149430751800537,
+ "step": 1153
+ },
+ {
+ "epoch": 16.027874564459932,
+ "grad_norm": 0.059622205793857574,
+ "learning_rate": 0.0004769245685767255,
+ "loss": 2.146239757537842,
+ "step": 1154
+ },
+ {
+ "epoch": 16.041811846689896,
+ "grad_norm": 0.06228978559374809,
+ "learning_rate": 0.00047670840430422113,
+ "loss": 2.1373820304870605,
+ "step": 1155
+ },
+ {
+ "epoch": 16.05574912891986,
+ "grad_norm": 0.058429088443517685,
+ "learning_rate": 0.0004764921000779928,
+ "loss": 2.153956413269043,
+ "step": 1156
+ },
+ {
+ "epoch": 16.069686411149824,
+ "grad_norm": 0.0544302761554718,
+ "learning_rate": 0.0004762756560723131,
+ "loss": 2.1617636680603027,
+ "step": 1157
+ },
+ {
+ "epoch": 16.083623693379792,
+ "grad_norm": 0.050771284848451614,
+ "learning_rate": 0.0004760590724615671,
+ "loss": 2.134815216064453,
+ "step": 1158
+ },
+ {
+ "epoch": 16.097560975609756,
+ "grad_norm": 0.05482947453856468,
+ "learning_rate": 0.0004758423494202522,
+ "loss": 2.140288829803467,
+ "step": 1159
+ },
+ {
+ "epoch": 16.11149825783972,
+ "grad_norm": 0.06205987557768822,
+ "learning_rate": 0.0004756254871229782,
+ "loss": 2.1369926929473877,
+ "step": 1160
+ },
+ {
+ "epoch": 16.125435540069688,
+ "grad_norm": 0.060936298221349716,
+ "learning_rate": 0.00047540848574446724,
+ "loss": 2.1448073387145996,
+ "step": 1161
+ },
+ {
+ "epoch": 16.139372822299652,
+ "grad_norm": 0.05571967735886574,
+ "learning_rate": 0.0004751913454595535,
+ "loss": 2.1435866355895996,
+ "step": 1162
+ },
+ {
+ "epoch": 16.153310104529616,
+ "grad_norm": 0.0552542470395565,
+ "learning_rate": 0.0004749740664431828,
+ "loss": 2.149778366088867,
+ "step": 1163
+ },
+ {
+ "epoch": 16.16724738675958,
+ "grad_norm": 0.05414848402142525,
+ "learning_rate": 0.000474756648870413,
+ "loss": 2.149887800216675,
+ "step": 1164
+ },
+ {
+ "epoch": 16.181184668989548,
+ "grad_norm": 0.05441379174590111,
+ "learning_rate": 0.0004745390929164134,
+ "loss": 2.15389347076416,
+ "step": 1165
+ },
+ {
+ "epoch": 16.195121951219512,
+ "grad_norm": 0.05403896048665047,
+ "learning_rate": 0.0004743213987564651,
+ "loss": 2.1331732273101807,
+ "step": 1166
+ },
+ {
+ "epoch": 16.209059233449477,
+ "grad_norm": 0.054594095796346664,
+ "learning_rate": 0.0004741035665659603,
+ "loss": 2.158886671066284,
+ "step": 1167
+ },
+ {
+ "epoch": 16.222996515679444,
+ "grad_norm": 0.06188303232192993,
+ "learning_rate": 0.00047388559652040236,
+ "loss": 2.1471951007843018,
+ "step": 1168
+ },
+ {
+ "epoch": 16.23693379790941,
+ "grad_norm": 0.062315408140420914,
+ "learning_rate": 0.0004736674887954059,
+ "loss": 2.147031307220459,
+ "step": 1169
+ },
+ {
+ "epoch": 16.250871080139373,
+ "grad_norm": 0.06116636097431183,
+ "learning_rate": 0.0004734492435666963,
+ "loss": 2.153916358947754,
+ "step": 1170
+ },
+ {
+ "epoch": 16.264808362369337,
+ "grad_norm": 0.05576318874955177,
+ "learning_rate": 0.0004732308610101099,
+ "loss": 2.1545660495758057,
+ "step": 1171
+ },
+ {
+ "epoch": 16.278745644599304,
+ "grad_norm": 0.05602003261446953,
+ "learning_rate": 0.00047301234130159346,
+ "loss": 2.1588096618652344,
+ "step": 1172
+ },
+ {
+ "epoch": 16.29268292682927,
+ "grad_norm": 0.05946209281682968,
+ "learning_rate": 0.00047279368461720445,
+ "loss": 2.1761999130249023,
+ "step": 1173
+ },
+ {
+ "epoch": 16.306620209059233,
+ "grad_norm": 0.062074463814496994,
+ "learning_rate": 0.0004725748911331106,
+ "loss": 2.168569326400757,
+ "step": 1174
+ },
+ {
+ "epoch": 16.320557491289197,
+ "grad_norm": 0.05756473168730736,
+ "learning_rate": 0.0004723559610255898,
+ "loss": 2.1530699729919434,
+ "step": 1175
+ },
+ {
+ "epoch": 16.334494773519165,
+ "grad_norm": 0.05881023779511452,
+ "learning_rate": 0.0004721368944710302,
+ "loss": 2.1721291542053223,
+ "step": 1176
+ },
+ {
+ "epoch": 16.34843205574913,
+ "grad_norm": 0.06223367527127266,
+ "learning_rate": 0.00047191769164592974,
+ "loss": 2.168361186981201,
+ "step": 1177
+ },
+ {
+ "epoch": 16.362369337979093,
+ "grad_norm": 0.056093230843544006,
+ "learning_rate": 0.000471698352726896,
+ "loss": 2.164424419403076,
+ "step": 1178
+ },
+ {
+ "epoch": 16.37630662020906,
+ "grad_norm": 0.06118649244308472,
+ "learning_rate": 0.0004714788778906467,
+ "loss": 2.158644199371338,
+ "step": 1179
+ },
+ {
+ "epoch": 16.390243902439025,
+ "grad_norm": 0.06548523902893066,
+ "learning_rate": 0.0004712592673140084,
+ "loss": 2.1728553771972656,
+ "step": 1180
+ },
+ {
+ "epoch": 16.40418118466899,
+ "grad_norm": 0.06719230860471725,
+ "learning_rate": 0.00047103952117391764,
+ "loss": 2.1555490493774414,
+ "step": 1181
+ },
+ {
+ "epoch": 16.418118466898953,
+ "grad_norm": 0.06181609630584717,
+ "learning_rate": 0.00047081963964741986,
+ "loss": 2.162527561187744,
+ "step": 1182
+ },
+ {
+ "epoch": 16.43205574912892,
+ "grad_norm": 0.05706655979156494,
+ "learning_rate": 0.0004705996229116696,
+ "loss": 2.1423912048339844,
+ "step": 1183
+ },
+ {
+ "epoch": 16.445993031358885,
+ "grad_norm": 0.05518640577793121,
+ "learning_rate": 0.0004703794711439304,
+ "loss": 2.1653032302856445,
+ "step": 1184
+ },
+ {
+ "epoch": 16.45993031358885,
+ "grad_norm": 0.05664249137043953,
+ "learning_rate": 0.0004701591845215744,
+ "loss": 2.166928291320801,
+ "step": 1185
+ },
+ {
+ "epoch": 16.473867595818817,
+ "grad_norm": 0.05873657390475273,
+ "learning_rate": 0.00046993876322208274,
+ "loss": 2.1778905391693115,
+ "step": 1186
+ },
+ {
+ "epoch": 16.48780487804878,
+ "grad_norm": 0.05944420397281647,
+ "learning_rate": 0.0004697182074230448,
+ "loss": 2.177402973175049,
+ "step": 1187
+ },
+ {
+ "epoch": 16.501742160278745,
+ "grad_norm": 0.059531547129154205,
+ "learning_rate": 0.0004694975173021586,
+ "loss": 2.1766552925109863,
+ "step": 1188
+ },
+ {
+ "epoch": 16.51567944250871,
+ "grad_norm": 0.05503744259476662,
+ "learning_rate": 0.0004692766930372299,
+ "loss": 2.167525291442871,
+ "step": 1189
+ },
+ {
+ "epoch": 16.529616724738677,
+ "grad_norm": 0.05157329514622688,
+ "learning_rate": 0.00046905573480617285,
+ "loss": 2.1732568740844727,
+ "step": 1190
+ },
+ {
+ "epoch": 16.54355400696864,
+ "grad_norm": 0.05355038493871689,
+ "learning_rate": 0.00046883464278700966,
+ "loss": 2.1730806827545166,
+ "step": 1191
+ },
+ {
+ "epoch": 16.557491289198605,
+ "grad_norm": 0.05118329077959061,
+ "learning_rate": 0.0004686134171578702,
+ "loss": 2.1696338653564453,
+ "step": 1192
+ },
+ {
+ "epoch": 16.571428571428573,
+ "grad_norm": 0.05029391869902611,
+ "learning_rate": 0.00046839205809699183,
+ "loss": 2.195044994354248,
+ "step": 1193
+ },
+ {
+ "epoch": 16.585365853658537,
+ "grad_norm": 0.050039373338222504,
+ "learning_rate": 0.0004681705657827195,
+ "loss": 2.1581506729125977,
+ "step": 1194
+ },
+ {
+ "epoch": 16.5993031358885,
+ "grad_norm": 0.0545598603785038,
+ "learning_rate": 0.0004679489403935058,
+ "loss": 2.1650285720825195,
+ "step": 1195
+ },
+ {
+ "epoch": 16.613240418118465,
+ "grad_norm": 0.05268346890807152,
+ "learning_rate": 0.00046772718210791005,
+ "loss": 2.184382438659668,
+ "step": 1196
+ },
+ {
+ "epoch": 16.627177700348433,
+ "grad_norm": 0.05236094444990158,
+ "learning_rate": 0.00046750529110459903,
+ "loss": 2.167102813720703,
+ "step": 1197
+ },
+ {
+ "epoch": 16.641114982578397,
+ "grad_norm": 0.052183765918016434,
+ "learning_rate": 0.0004672832675623463,
+ "loss": 2.174470901489258,
+ "step": 1198
+ },
+ {
+ "epoch": 16.65505226480836,
+ "grad_norm": 0.049528587609529495,
+ "learning_rate": 0.0004670611116600322,
+ "loss": 2.1593801975250244,
+ "step": 1199
+ },
+ {
+ "epoch": 16.66898954703833,
+ "grad_norm": 0.05077743902802467,
+ "learning_rate": 0.00046683882357664375,
+ "loss": 2.1829850673675537,
+ "step": 1200
+ },
+ {
+ "epoch": 16.682926829268293,
+ "grad_norm": 0.049165278673172,
+ "learning_rate": 0.0004666164034912744,
+ "loss": 2.1820642948150635,
+ "step": 1201
+ },
+ {
+ "epoch": 16.696864111498257,
+ "grad_norm": 0.049670539796352386,
+ "learning_rate": 0.00046639385158312406,
+ "loss": 2.1617588996887207,
+ "step": 1202
+ },
+ {
+ "epoch": 16.71080139372822,
+ "grad_norm": 0.05188990756869316,
+ "learning_rate": 0.00046617116803149874,
+ "loss": 2.1910011768341064,
+ "step": 1203
+ },
+ {
+ "epoch": 16.72473867595819,
+ "grad_norm": 0.05106198787689209,
+ "learning_rate": 0.00046594835301581053,
+ "loss": 2.1670002937316895,
+ "step": 1204
+ },
+ {
+ "epoch": 16.738675958188153,
+ "grad_norm": 0.052352480590343475,
+ "learning_rate": 0.00046572540671557745,
+ "loss": 2.1804449558258057,
+ "step": 1205
+ },
+ {
+ "epoch": 16.752613240418118,
+ "grad_norm": 0.05456020310521126,
+ "learning_rate": 0.00046550232931042346,
+ "loss": 2.183560848236084,
+ "step": 1206
+ },
+ {
+ "epoch": 16.766550522648085,
+ "grad_norm": 0.05248325690627098,
+ "learning_rate": 0.00046527912098007787,
+ "loss": 2.1866538524627686,
+ "step": 1207
+ },
+ {
+ "epoch": 16.78048780487805,
+ "grad_norm": 0.052194926887750626,
+ "learning_rate": 0.00046505578190437564,
+ "loss": 2.179544448852539,
+ "step": 1208
+ },
+ {
+ "epoch": 16.794425087108014,
+ "grad_norm": 0.048344213515520096,
+ "learning_rate": 0.0004648323122632569,
+ "loss": 2.1895692348480225,
+ "step": 1209
+ },
+ {
+ "epoch": 16.808362369337978,
+ "grad_norm": 0.053263742476701736,
+ "learning_rate": 0.0004646087122367673,
+ "loss": 2.1922311782836914,
+ "step": 1210
+ },
+ {
+ "epoch": 16.822299651567945,
+ "grad_norm": 0.05046837404370308,
+ "learning_rate": 0.00046438498200505727,
+ "loss": 2.1986570358276367,
+ "step": 1211
+ },
+ {
+ "epoch": 16.83623693379791,
+ "grad_norm": 0.04699976369738579,
+ "learning_rate": 0.0004641611217483821,
+ "loss": 2.168755531311035,
+ "step": 1212
+ },
+ {
+ "epoch": 16.850174216027874,
+ "grad_norm": 0.0500732958316803,
+ "learning_rate": 0.00046393713164710217,
+ "loss": 2.1747398376464844,
+ "step": 1213
+ },
+ {
+ "epoch": 16.86411149825784,
+ "grad_norm": 0.048436183482408524,
+ "learning_rate": 0.00046371301188168204,
+ "loss": 2.181175947189331,
+ "step": 1214
+ },
+ {
+ "epoch": 16.878048780487806,
+ "grad_norm": 0.04788931831717491,
+ "learning_rate": 0.0004634887626326911,
+ "loss": 2.1619675159454346,
+ "step": 1215
+ },
+ {
+ "epoch": 16.89198606271777,
+ "grad_norm": 0.04881543293595314,
+ "learning_rate": 0.00046326438408080293,
+ "loss": 2.1840174198150635,
+ "step": 1216
+ },
+ {
+ "epoch": 16.905923344947734,
+ "grad_norm": 0.049969445914030075,
+ "learning_rate": 0.00046303987640679517,
+ "loss": 2.199573040008545,
+ "step": 1217
+ },
+ {
+ "epoch": 16.9198606271777,
+ "grad_norm": 0.048629943281412125,
+ "learning_rate": 0.0004628152397915498,
+ "loss": 2.1661055088043213,
+ "step": 1218
+ },
+ {
+ "epoch": 16.933797909407666,
+ "grad_norm": 0.051450759172439575,
+ "learning_rate": 0.00046259047441605215,
+ "loss": 2.182037591934204,
+ "step": 1219
+ },
+ {
+ "epoch": 16.94773519163763,
+ "grad_norm": 0.05253942683339119,
+ "learning_rate": 0.0004623655804613919,
+ "loss": 2.1848878860473633,
+ "step": 1220
+ },
+ {
+ "epoch": 16.961672473867594,
+ "grad_norm": 0.0511169359087944,
+ "learning_rate": 0.00046214055810876194,
+ "loss": 2.181640863418579,
+ "step": 1221
+ },
+ {
+ "epoch": 16.975609756097562,
+ "grad_norm": 0.04952972009778023,
+ "learning_rate": 0.00046191540753945886,
+ "loss": 2.1824798583984375,
+ "step": 1222
+ },
+ {
+ "epoch": 16.989547038327526,
+ "grad_norm": 0.048745568841695786,
+ "learning_rate": 0.00046169012893488204,
+ "loss": 2.175996780395508,
+ "step": 1223
+ },
+ {
+ "epoch": 17.0,
+ "grad_norm": 0.039088211953639984,
+ "learning_rate": 0.00046146472247653484,
+ "loss": 1.6450124979019165,
+ "step": 1224
+ },
+ {
+ "epoch": 17.0,
+ "eval_loss": 0.6228054761886597,
+ "eval_runtime": 36.2135,
+ "eval_samples_per_second": 67.433,
+ "eval_steps_per_second": 0.552,
+ "step": 1224
+ },
+ {
+ "epoch": 17.013937282229964,
+ "grad_norm": 0.05182459577918053,
+ "learning_rate": 0.0004612391883460228,
+ "loss": 2.13407826423645,
+ "step": 1225
+ },
+ {
+ "epoch": 17.027874564459932,
+ "grad_norm": 0.06349381804466248,
+ "learning_rate": 0.00046101352672505493,
+ "loss": 2.124786615371704,
+ "step": 1226
+ },
+ {
+ "epoch": 17.041811846689896,
+ "grad_norm": 0.06030651181936264,
+ "learning_rate": 0.0004607877377954426,
+ "loss": 2.1319074630737305,
+ "step": 1227
+ },
+ {
+ "epoch": 17.05574912891986,
+ "grad_norm": 0.05942157283425331,
+ "learning_rate": 0.00046056182173909995,
+ "loss": 2.1155600547790527,
+ "step": 1228
+ },
+ {
+ "epoch": 17.069686411149824,
+ "grad_norm": 0.05690222606062889,
+ "learning_rate": 0.0004603357787380435,
+ "loss": 2.1224000453948975,
+ "step": 1229
+ },
+ {
+ "epoch": 17.083623693379792,
+ "grad_norm": 0.05549716204404831,
+ "learning_rate": 0.0004601096089743919,
+ "loss": 2.138361692428589,
+ "step": 1230
+ },
+ {
+ "epoch": 17.097560975609756,
+ "grad_norm": 0.05572805553674698,
+ "learning_rate": 0.0004598833126303661,
+ "loss": 2.108839511871338,
+ "step": 1231
+ },
+ {
+ "epoch": 17.11149825783972,
+ "grad_norm": 0.05359194055199623,
+ "learning_rate": 0.00045965688988828884,
+ "loss": 2.111232042312622,
+ "step": 1232
+ },
+ {
+ "epoch": 17.125435540069688,
+ "grad_norm": 0.05284698307514191,
+ "learning_rate": 0.00045943034093058507,
+ "loss": 2.111241102218628,
+ "step": 1233
+ },
+ {
+ "epoch": 17.139372822299652,
+ "grad_norm": 0.05522393807768822,
+ "learning_rate": 0.000459203665939781,
+ "loss": 2.1056082248687744,
+ "step": 1234
+ },
+ {
+ "epoch": 17.153310104529616,
+ "grad_norm": 0.05988268554210663,
+ "learning_rate": 0.00045897686509850487,
+ "loss": 2.1245055198669434,
+ "step": 1235
+ },
+ {
+ "epoch": 17.16724738675958,
+ "grad_norm": 0.05882375314831734,
+ "learning_rate": 0.0004587499385894856,
+ "loss": 2.12105655670166,
+ "step": 1236
+ },
+ {
+ "epoch": 17.181184668989548,
+ "grad_norm": 0.05429045483469963,
+ "learning_rate": 0.000458522886595554,
+ "loss": 2.1340696811676025,
+ "step": 1237
+ },
+ {
+ "epoch": 17.195121951219512,
+ "grad_norm": 0.05428321287035942,
+ "learning_rate": 0.0004582957092996418,
+ "loss": 2.125894546508789,
+ "step": 1238
+ },
+ {
+ "epoch": 17.209059233449477,
+ "grad_norm": 0.05918198451399803,
+ "learning_rate": 0.0004580684068847817,
+ "loss": 2.115187168121338,
+ "step": 1239
+ },
+ {
+ "epoch": 17.222996515679444,
+ "grad_norm": 0.05467062070965767,
+ "learning_rate": 0.0004578409795341069,
+ "loss": 2.1267573833465576,
+ "step": 1240
+ },
+ {
+ "epoch": 17.23693379790941,
+ "grad_norm": 0.05117730423808098,
+ "learning_rate": 0.0004576134274308517,
+ "loss": 2.131983757019043,
+ "step": 1241
+ },
+ {
+ "epoch": 17.250871080139373,
+ "grad_norm": 0.05354353412985802,
+ "learning_rate": 0.0004573857507583506,
+ "loss": 2.139024019241333,
+ "step": 1242
+ },
+ {
+ "epoch": 17.264808362369337,
+ "grad_norm": 0.05508217588067055,
+ "learning_rate": 0.00045715794970003874,
+ "loss": 2.123086929321289,
+ "step": 1243
+ },
+ {
+ "epoch": 17.278745644599304,
+ "grad_norm": 0.056819524616003036,
+ "learning_rate": 0.0004569300244394513,
+ "loss": 2.133049488067627,
+ "step": 1244
+ },
+ {
+ "epoch": 17.29268292682927,
+ "grad_norm": 0.06116129457950592,
+ "learning_rate": 0.0004567019751602234,
+ "loss": 2.146721601486206,
+ "step": 1245
+ },
+ {
+ "epoch": 17.306620209059233,
+ "grad_norm": 0.06482621282339096,
+ "learning_rate": 0.00045647380204609034,
+ "loss": 2.133073568344116,
+ "step": 1246
+ },
+ {
+ "epoch": 17.320557491289197,
+ "grad_norm": 0.06122269853949547,
+ "learning_rate": 0.00045624550528088704,
+ "loss": 2.1292078495025635,
+ "step": 1247
+ },
+ {
+ "epoch": 17.334494773519165,
+ "grad_norm": 0.060462113469839096,
+ "learning_rate": 0.00045601708504854803,
+ "loss": 2.1301801204681396,
+ "step": 1248
+ },
+ {
+ "epoch": 17.34843205574913,
+ "grad_norm": 0.05775533244013786,
+ "learning_rate": 0.0004557885415331074,
+ "loss": 2.160749673843384,
+ "step": 1249
+ },
+ {
+ "epoch": 17.362369337979093,
+ "grad_norm": 0.05933118611574173,
+ "learning_rate": 0.00045555987491869865,
+ "loss": 2.138021469116211,
+ "step": 1250
+ },
+ {
+ "epoch": 17.37630662020906,
+ "grad_norm": 0.05498939007520676,
+ "learning_rate": 0.00045533108538955416,
+ "loss": 2.1443264484405518,
+ "step": 1251
+ },
+ {
+ "epoch": 17.390243902439025,
+ "grad_norm": 0.05720233544707298,
+ "learning_rate": 0.0004551021731300055,
+ "loss": 2.1400699615478516,
+ "step": 1252
+ },
+ {
+ "epoch": 17.40418118466899,
+ "grad_norm": 0.05569229647517204,
+ "learning_rate": 0.0004548731383244834,
+ "loss": 2.1375250816345215,
+ "step": 1253
+ },
+ {
+ "epoch": 17.418118466898953,
+ "grad_norm": 0.05508109927177429,
+ "learning_rate": 0.0004546439811575169,
+ "loss": 2.1352083683013916,
+ "step": 1254
+ },
+ {
+ "epoch": 17.43205574912892,
+ "grad_norm": 0.057038020342588425,
+ "learning_rate": 0.00045441470181373375,
+ "loss": 2.1290454864501953,
+ "step": 1255
+ },
+ {
+ "epoch": 17.445993031358885,
+ "grad_norm": 0.05938584357500076,
+ "learning_rate": 0.0004541853004778603,
+ "loss": 2.14906644821167,
+ "step": 1256
+ },
+ {
+ "epoch": 17.45993031358885,
+ "grad_norm": 0.05654401332139969,
+ "learning_rate": 0.00045395577733472087,
+ "loss": 2.133410692214966,
+ "step": 1257
+ },
+ {
+ "epoch": 17.473867595818817,
+ "grad_norm": 0.05399394780397415,
+ "learning_rate": 0.0004537261325692383,
+ "loss": 2.14622163772583,
+ "step": 1258
+ },
+ {
+ "epoch": 17.48780487804878,
+ "grad_norm": 0.05683310702443123,
+ "learning_rate": 0.0004534963663664332,
+ "loss": 2.1482772827148438,
+ "step": 1259
+ },
+ {
+ "epoch": 17.501742160278745,
+ "grad_norm": 0.06314415484666824,
+ "learning_rate": 0.00045326647891142394,
+ "loss": 2.150238037109375,
+ "step": 1260
+ },
+ {
+ "epoch": 17.51567944250871,
+ "grad_norm": 0.0595875009894371,
+ "learning_rate": 0.0004530364703894268,
+ "loss": 2.137575626373291,
+ "step": 1261
+ },
+ {
+ "epoch": 17.529616724738677,
+ "grad_norm": 0.05534850060939789,
+ "learning_rate": 0.0004528063409857554,
+ "loss": 2.169827461242676,
+ "step": 1262
+ },
+ {
+ "epoch": 17.54355400696864,
+ "grad_norm": 0.06096148118376732,
+ "learning_rate": 0.0004525760908858209,
+ "loss": 2.142652988433838,
+ "step": 1263
+ },
+ {
+ "epoch": 17.557491289198605,
+ "grad_norm": 0.06313963979482651,
+ "learning_rate": 0.00045234572027513174,
+ "loss": 2.152920722961426,
+ "step": 1264
+ },
+ {
+ "epoch": 17.571428571428573,
+ "grad_norm": 0.058604612946510315,
+ "learning_rate": 0.00045211522933929317,
+ "loss": 2.1487669944763184,
+ "step": 1265
+ },
+ {
+ "epoch": 17.585365853658537,
+ "grad_norm": 0.056736089289188385,
+ "learning_rate": 0.0004518846182640077,
+ "loss": 2.1435699462890625,
+ "step": 1266
+ },
+ {
+ "epoch": 17.5993031358885,
+ "grad_norm": 0.05706419423222542,
+ "learning_rate": 0.0004516538872350744,
+ "loss": 2.1586122512817383,
+ "step": 1267
+ },
+ {
+ "epoch": 17.613240418118465,
+ "grad_norm": 0.05560465529561043,
+ "learning_rate": 0.0004514230364383893,
+ "loss": 2.177081346511841,
+ "step": 1268
+ },
+ {
+ "epoch": 17.627177700348433,
+ "grad_norm": 0.05601844564080238,
+ "learning_rate": 0.0004511920660599444,
+ "loss": 2.1478757858276367,
+ "step": 1269
+ },
+ {
+ "epoch": 17.641114982578397,
+ "grad_norm": 0.05756781995296478,
+ "learning_rate": 0.0004509609762858287,
+ "loss": 2.1525440216064453,
+ "step": 1270
+ },
+ {
+ "epoch": 17.65505226480836,
+ "grad_norm": 0.0531681589782238,
+ "learning_rate": 0.0004507297673022269,
+ "loss": 2.1489810943603516,
+ "step": 1271
+ },
+ {
+ "epoch": 17.66898954703833,
+ "grad_norm": 0.05216185003519058,
+ "learning_rate": 0.0004504984392954199,
+ "loss": 2.144932746887207,
+ "step": 1272
+ },
+ {
+ "epoch": 17.682926829268293,
+ "grad_norm": 0.052748095244169235,
+ "learning_rate": 0.00045026699245178444,
+ "loss": 2.148977756500244,
+ "step": 1273
+ },
+ {
+ "epoch": 17.696864111498257,
+ "grad_norm": 0.051663246005773544,
+ "learning_rate": 0.0004500354269577932,
+ "loss": 2.1617603302001953,
+ "step": 1274
+ },
+ {
+ "epoch": 17.71080139372822,
+ "grad_norm": 0.05068802461028099,
+ "learning_rate": 0.00044980374300001414,
+ "loss": 2.1467485427856445,
+ "step": 1275
+ },
+ {
+ "epoch": 17.72473867595819,
+ "grad_norm": 0.052201591432094574,
+ "learning_rate": 0.00044957194076511095,
+ "loss": 2.1621475219726562,
+ "step": 1276
+ },
+ {
+ "epoch": 17.738675958188153,
+ "grad_norm": 0.05179779976606369,
+ "learning_rate": 0.0004493400204398426,
+ "loss": 2.1593222618103027,
+ "step": 1277
+ },
+ {
+ "epoch": 17.752613240418118,
+ "grad_norm": 0.05123918130993843,
+ "learning_rate": 0.00044910798221106283,
+ "loss": 2.1596224308013916,
+ "step": 1278
+ },
+ {
+ "epoch": 17.766550522648085,
+ "grad_norm": 0.05416003242135048,
+ "learning_rate": 0.00044887582626572105,
+ "loss": 2.156677484512329,
+ "step": 1279
+ },
+ {
+ "epoch": 17.78048780487805,
+ "grad_norm": 0.05376303568482399,
+ "learning_rate": 0.0004486435527908606,
+ "loss": 2.1515936851501465,
+ "step": 1280
+ },
+ {
+ "epoch": 17.794425087108014,
+ "grad_norm": 0.05113770812749863,
+ "learning_rate": 0.0004484111619736205,
+ "loss": 2.159501075744629,
+ "step": 1281
+ },
+ {
+ "epoch": 17.808362369337978,
+ "grad_norm": 0.05341901257634163,
+ "learning_rate": 0.0004481786540012336,
+ "loss": 2.1458449363708496,
+ "step": 1282
+ },
+ {
+ "epoch": 17.822299651567945,
+ "grad_norm": 0.05436928942799568,
+ "learning_rate": 0.00044794602906102747,
+ "loss": 2.1686582565307617,
+ "step": 1283
+ },
+ {
+ "epoch": 17.83623693379791,
+ "grad_norm": 0.05663881078362465,
+ "learning_rate": 0.00044771328734042367,
+ "loss": 2.162226676940918,
+ "step": 1284
+ },
+ {
+ "epoch": 17.850174216027874,
+ "grad_norm": 0.052064672112464905,
+ "learning_rate": 0.00044748042902693815,
+ "loss": 2.162569046020508,
+ "step": 1285
+ },
+ {
+ "epoch": 17.86411149825784,
+ "grad_norm": 0.05361185595393181,
+ "learning_rate": 0.0004472474543081805,
+ "loss": 2.156773567199707,
+ "step": 1286
+ },
+ {
+ "epoch": 17.878048780487806,
+ "grad_norm": 0.053101785480976105,
+ "learning_rate": 0.00044701436337185444,
+ "loss": 2.1460914611816406,
+ "step": 1287
+ },
+ {
+ "epoch": 17.89198606271777,
+ "grad_norm": 0.05247222259640694,
+ "learning_rate": 0.00044678115640575704,
+ "loss": 2.1564040184020996,
+ "step": 1288
+ },
+ {
+ "epoch": 17.905923344947734,
+ "grad_norm": 0.054551344364881516,
+ "learning_rate": 0.0004465478335977788,
+ "loss": 2.1503076553344727,
+ "step": 1289
+ },
+ {
+ "epoch": 17.9198606271777,
+ "grad_norm": 0.050967201590538025,
+ "learning_rate": 0.00044631439513590393,
+ "loss": 2.165611505508423,
+ "step": 1290
+ },
+ {
+ "epoch": 17.933797909407666,
+ "grad_norm": 0.051103148609399796,
+ "learning_rate": 0.00044608084120820933,
+ "loss": 2.146416187286377,
+ "step": 1291
+ },
+ {
+ "epoch": 17.94773519163763,
+ "grad_norm": 0.04871583357453346,
+ "learning_rate": 0.0004458471720028655,
+ "loss": 2.1615967750549316,
+ "step": 1292
+ },
+ {
+ "epoch": 17.961672473867594,
+ "grad_norm": 0.05047275498509407,
+ "learning_rate": 0.0004456133877081352,
+ "loss": 2.1585195064544678,
+ "step": 1293
+ },
+ {
+ "epoch": 17.975609756097562,
+ "grad_norm": 0.05169983580708504,
+ "learning_rate": 0.0004453794885123744,
+ "loss": 2.163914680480957,
+ "step": 1294
+ },
+ {
+ "epoch": 17.989547038327526,
+ "grad_norm": 0.05178225040435791,
+ "learning_rate": 0.00044514547460403135,
+ "loss": 2.1566972732543945,
+ "step": 1295
+ },
+ {
+ "epoch": 18.0,
+ "grad_norm": 0.04334854707121849,
+ "learning_rate": 0.00044491134617164694,
+ "loss": 1.6099262237548828,
+ "step": 1296
+ },
+ {
+ "epoch": 18.0,
+ "eval_loss": 0.6236167550086975,
+ "eval_runtime": 36.363,
+ "eval_samples_per_second": 67.156,
+ "eval_steps_per_second": 0.55,
+ "step": 1296
+ },
+ {
+ "epoch": 18.013937282229964,
+ "grad_norm": 0.054574184119701385,
+ "learning_rate": 0.000444677103403854,
+ "loss": 2.097102642059326,
+ "step": 1297
+ },
+ {
+ "epoch": 18.027874564459932,
+ "grad_norm": 0.06331679970026016,
+ "learning_rate": 0.0004444427464893779,
+ "loss": 2.113513469696045,
+ "step": 1298
+ },
+ {
+ "epoch": 18.041811846689896,
+ "grad_norm": 0.06493321061134338,
+ "learning_rate": 0.00044420827561703573,
+ "loss": 2.1095829010009766,
+ "step": 1299
+ },
+ {
+ "epoch": 18.05574912891986,
+ "grad_norm": 0.0661960318684578,
+ "learning_rate": 0.0004439736909757365,
+ "loss": 2.0967822074890137,
+ "step": 1300
+ },
+ {
+ "epoch": 18.069686411149824,
+ "grad_norm": 0.062145210802555084,
+ "learning_rate": 0.0004437389927544805,
+ "loss": 2.08186936378479,
+ "step": 1301
+ },
+ {
+ "epoch": 18.083623693379792,
+ "grad_norm": 0.06310027837753296,
+ "learning_rate": 0.0004435041811423603,
+ "loss": 2.115525245666504,
+ "step": 1302
+ },
+ {
+ "epoch": 18.097560975609756,
+ "grad_norm": 0.06527610123157501,
+ "learning_rate": 0.0004432692563285591,
+ "loss": 2.110492706298828,
+ "step": 1303
+ },
+ {
+ "epoch": 18.11149825783972,
+ "grad_norm": 0.059454720467329025,
+ "learning_rate": 0.0004430342185023517,
+ "loss": 2.105884552001953,
+ "step": 1304
+ },
+ {
+ "epoch": 18.125435540069688,
+ "grad_norm": 0.056922316551208496,
+ "learning_rate": 0.0004427990678531038,
+ "loss": 2.1008682250976562,
+ "step": 1305
+ },
+ {
+ "epoch": 18.139372822299652,
+ "grad_norm": 0.06496447324752808,
+ "learning_rate": 0.0004425638045702719,
+ "loss": 2.0853774547576904,
+ "step": 1306
+ },
+ {
+ "epoch": 18.153310104529616,
+ "grad_norm": 0.059888552874326706,
+ "learning_rate": 0.0004423284288434035,
+ "loss": 2.1116936206817627,
+ "step": 1307
+ },
+ {
+ "epoch": 18.16724738675958,
+ "grad_norm": 0.06061340123414993,
+ "learning_rate": 0.00044209294086213657,
+ "loss": 2.100578784942627,
+ "step": 1308
+ },
+ {
+ "epoch": 18.181184668989548,
+ "grad_norm": 0.06433615833520889,
+ "learning_rate": 0.00044185734081619957,
+ "loss": 2.0994229316711426,
+ "step": 1309
+ },
+ {
+ "epoch": 18.195121951219512,
+ "grad_norm": 0.06373526901006699,
+ "learning_rate": 0.000441621628895411,
+ "loss": 2.1115286350250244,
+ "step": 1310
+ },
+ {
+ "epoch": 18.209059233449477,
+ "grad_norm": 0.062120918184518814,
+ "learning_rate": 0.00044138580528967986,
+ "loss": 2.123278856277466,
+ "step": 1311
+ },
+ {
+ "epoch": 18.222996515679444,
+ "grad_norm": 0.06534294784069061,
+ "learning_rate": 0.0004411498701890051,
+ "loss": 2.0983846187591553,
+ "step": 1312
+ },
+ {
+ "epoch": 18.23693379790941,
+ "grad_norm": 0.06486557424068451,
+ "learning_rate": 0.0004409138237834751,
+ "loss": 2.099348783493042,
+ "step": 1313
+ },
+ {
+ "epoch": 18.250871080139373,
+ "grad_norm": 0.05728910490870476,
+ "learning_rate": 0.00044067766626326835,
+ "loss": 2.0990138053894043,
+ "step": 1314
+ },
+ {
+ "epoch": 18.264808362369337,
+ "grad_norm": 0.060207612812519073,
+ "learning_rate": 0.00044044139781865255,
+ "loss": 2.1117920875549316,
+ "step": 1315
+ },
+ {
+ "epoch": 18.278745644599304,
+ "grad_norm": 0.05766129493713379,
+ "learning_rate": 0.00044020501863998516,
+ "loss": 2.101550579071045,
+ "step": 1316
+ },
+ {
+ "epoch": 18.29268292682927,
+ "grad_norm": 0.060087788850069046,
+ "learning_rate": 0.00043996852891771236,
+ "loss": 2.1135497093200684,
+ "step": 1317
+ },
+ {
+ "epoch": 18.306620209059233,
+ "grad_norm": 0.059771373867988586,
+ "learning_rate": 0.00043973192884236983,
+ "loss": 2.1124963760375977,
+ "step": 1318
+ },
+ {
+ "epoch": 18.320557491289197,
+ "grad_norm": 0.059871334582567215,
+ "learning_rate": 0.0004394952186045819,
+ "loss": 2.1254708766937256,
+ "step": 1319
+ },
+ {
+ "epoch": 18.334494773519165,
+ "grad_norm": 0.060070380568504333,
+ "learning_rate": 0.00043925839839506167,
+ "loss": 2.1019275188446045,
+ "step": 1320
+ },
+ {
+ "epoch": 18.34843205574913,
+ "grad_norm": 0.05744089558720589,
+ "learning_rate": 0.0004390214684046111,
+ "loss": 2.112631320953369,
+ "step": 1321
+ },
+ {
+ "epoch": 18.362369337979093,
+ "grad_norm": 0.06188441440463066,
+ "learning_rate": 0.00043878442882412015,
+ "loss": 2.11454439163208,
+ "step": 1322
+ },
+ {
+ "epoch": 18.37630662020906,
+ "grad_norm": 0.06033455580472946,
+ "learning_rate": 0.00043854727984456746,
+ "loss": 2.1136903762817383,
+ "step": 1323
+ },
+ {
+ "epoch": 18.390243902439025,
+ "grad_norm": 0.05741684511303902,
+ "learning_rate": 0.0004383100216570197,
+ "loss": 2.1244497299194336,
+ "step": 1324
+ },
+ {
+ "epoch": 18.40418118466899,
+ "grad_norm": 0.05371133238077164,
+ "learning_rate": 0.0004380726544526316,
+ "loss": 2.0973854064941406,
+ "step": 1325
+ },
+ {
+ "epoch": 18.418118466898953,
+ "grad_norm": 0.05289234593510628,
+ "learning_rate": 0.00043783517842264534,
+ "loss": 2.1062159538269043,
+ "step": 1326
+ },
+ {
+ "epoch": 18.43205574912892,
+ "grad_norm": 0.05888833478093147,
+ "learning_rate": 0.0004375975937583914,
+ "loss": 2.133770227432251,
+ "step": 1327
+ },
+ {
+ "epoch": 18.445993031358885,
+ "grad_norm": 0.057039227336645126,
+ "learning_rate": 0.0004373599006512871,
+ "loss": 2.123251438140869,
+ "step": 1328
+ },
+ {
+ "epoch": 18.45993031358885,
+ "grad_norm": 0.05389681085944176,
+ "learning_rate": 0.00043712209929283786,
+ "loss": 2.1121368408203125,
+ "step": 1329
+ },
+ {
+ "epoch": 18.473867595818817,
+ "grad_norm": 0.05782404541969299,
+ "learning_rate": 0.00043688418987463567,
+ "loss": 2.119410991668701,
+ "step": 1330
+ },
+ {
+ "epoch": 18.48780487804878,
+ "grad_norm": 0.06069990620017052,
+ "learning_rate": 0.00043664617258835995,
+ "loss": 2.1443772315979004,
+ "step": 1331
+ },
+ {
+ "epoch": 18.501742160278745,
+ "grad_norm": 0.05559232831001282,
+ "learning_rate": 0.0004364080476257769,
+ "loss": 2.1264851093292236,
+ "step": 1332
+ },
+ {
+ "epoch": 18.51567944250871,
+ "grad_norm": 0.05432436615228653,
+ "learning_rate": 0.0004361698151787396,
+ "loss": 2.1118392944335938,
+ "step": 1333
+ },
+ {
+ "epoch": 18.529616724738677,
+ "grad_norm": 0.05471545085310936,
+ "learning_rate": 0.0004359314754391874,
+ "loss": 2.1159002780914307,
+ "step": 1334
+ },
+ {
+ "epoch": 18.54355400696864,
+ "grad_norm": 0.05574088171124458,
+ "learning_rate": 0.0004356930285991466,
+ "loss": 2.1271533966064453,
+ "step": 1335
+ },
+ {
+ "epoch": 18.557491289198605,
+ "grad_norm": 0.05431128293275833,
+ "learning_rate": 0.00043545447485072926,
+ "loss": 2.125399589538574,
+ "step": 1336
+ },
+ {
+ "epoch": 18.571428571428573,
+ "grad_norm": 0.055981073528528214,
+ "learning_rate": 0.000435215814386134,
+ "loss": 2.113802909851074,
+ "step": 1337
+ },
+ {
+ "epoch": 18.585365853658537,
+ "grad_norm": 0.05551784485578537,
+ "learning_rate": 0.0004349770473976453,
+ "loss": 2.1233460903167725,
+ "step": 1338
+ },
+ {
+ "epoch": 18.5993031358885,
+ "grad_norm": 0.05475042760372162,
+ "learning_rate": 0.0004347381740776332,
+ "loss": 2.1365370750427246,
+ "step": 1339
+ },
+ {
+ "epoch": 18.613240418118465,
+ "grad_norm": 0.05448045954108238,
+ "learning_rate": 0.0004344991946185538,
+ "loss": 2.1288349628448486,
+ "step": 1340
+ },
+ {
+ "epoch": 18.627177700348433,
+ "grad_norm": 0.0553717240691185,
+ "learning_rate": 0.00043426010921294837,
+ "loss": 2.1383371353149414,
+ "step": 1341
+ },
+ {
+ "epoch": 18.641114982578397,
+ "grad_norm": 0.05391915515065193,
+ "learning_rate": 0.0004340209180534438,
+ "loss": 2.1390743255615234,
+ "step": 1342
+ },
+ {
+ "epoch": 18.65505226480836,
+ "grad_norm": 0.05404767021536827,
+ "learning_rate": 0.000433781621332752,
+ "loss": 2.1237120628356934,
+ "step": 1343
+ },
+ {
+ "epoch": 18.66898954703833,
+ "grad_norm": 0.05370468273758888,
+ "learning_rate": 0.0004335422192436703,
+ "loss": 2.123408079147339,
+ "step": 1344
+ },
+ {
+ "epoch": 18.682926829268293,
+ "grad_norm": 0.05490506440401077,
+ "learning_rate": 0.00043330271197908023,
+ "loss": 2.130199432373047,
+ "step": 1345
+ },
+ {
+ "epoch": 18.696864111498257,
+ "grad_norm": 0.05651344731450081,
+ "learning_rate": 0.00043306309973194874,
+ "loss": 2.1184425354003906,
+ "step": 1346
+ },
+ {
+ "epoch": 18.71080139372822,
+ "grad_norm": 0.05446930602192879,
+ "learning_rate": 0.000432823382695327,
+ "loss": 2.1391234397888184,
+ "step": 1347
+ },
+ {
+ "epoch": 18.72473867595819,
+ "grad_norm": 0.056854017078876495,
+ "learning_rate": 0.0004325835610623508,
+ "loss": 2.1358017921447754,
+ "step": 1348
+ },
+ {
+ "epoch": 18.738675958188153,
+ "grad_norm": 0.06729792058467865,
+ "learning_rate": 0.00043234363502623994,
+ "loss": 2.1330645084381104,
+ "step": 1349
+ },
+ {
+ "epoch": 18.752613240418118,
+ "grad_norm": 0.05778411030769348,
+ "learning_rate": 0.0004321036047802985,
+ "loss": 2.1277008056640625,
+ "step": 1350
+ },
+ {
+ "epoch": 18.766550522648085,
+ "grad_norm": 0.05493835732340813,
+ "learning_rate": 0.00043186347051791466,
+ "loss": 2.1218693256378174,
+ "step": 1351
+ },
+ {
+ "epoch": 18.78048780487805,
+ "grad_norm": 0.05961703136563301,
+ "learning_rate": 0.0004316232324325602,
+ "loss": 2.141153573989868,
+ "step": 1352
+ },
+ {
+ "epoch": 18.794425087108014,
+ "grad_norm": 0.057490140199661255,
+ "learning_rate": 0.0004313828907177906,
+ "loss": 2.1218957901000977,
+ "step": 1353
+ },
+ {
+ "epoch": 18.808362369337978,
+ "grad_norm": 0.05424332618713379,
+ "learning_rate": 0.0004311424455672448,
+ "loss": 2.1294074058532715,
+ "step": 1354
+ },
+ {
+ "epoch": 18.822299651567945,
+ "grad_norm": 0.05539792776107788,
+ "learning_rate": 0.0004309018971746451,
+ "loss": 2.1287131309509277,
+ "step": 1355
+ },
+ {
+ "epoch": 18.83623693379791,
+ "grad_norm": 0.056515417993068695,
+ "learning_rate": 0.000430661245733797,
+ "loss": 2.1303625106811523,
+ "step": 1356
+ },
+ {
+ "epoch": 18.850174216027874,
+ "grad_norm": 0.053070683032274246,
+ "learning_rate": 0.00043042049143858914,
+ "loss": 2.1501715183258057,
+ "step": 1357
+ },
+ {
+ "epoch": 18.86411149825784,
+ "grad_norm": 0.05422713980078697,
+ "learning_rate": 0.0004301796344829928,
+ "loss": 2.141580581665039,
+ "step": 1358
+ },
+ {
+ "epoch": 18.878048780487806,
+ "grad_norm": 0.053621236234903336,
+ "learning_rate": 0.00042993867506106205,
+ "loss": 2.1374034881591797,
+ "step": 1359
+ },
+ {
+ "epoch": 18.89198606271777,
+ "grad_norm": 0.05488245189189911,
+ "learning_rate": 0.0004296976133669336,
+ "loss": 2.1387908458709717,
+ "step": 1360
+ },
+ {
+ "epoch": 18.905923344947734,
+ "grad_norm": 0.05566219612956047,
+ "learning_rate": 0.0004294564495948266,
+ "loss": 2.1420421600341797,
+ "step": 1361
+ },
+ {
+ "epoch": 18.9198606271777,
+ "grad_norm": 0.05297220125794411,
+ "learning_rate": 0.0004292151839390421,
+ "loss": 2.126768112182617,
+ "step": 1362
+ },
+ {
+ "epoch": 18.933797909407666,
+ "grad_norm": 0.056281380355358124,
+ "learning_rate": 0.0004289738165939636,
+ "loss": 2.114241361618042,
+ "step": 1363
+ },
+ {
+ "epoch": 18.94773519163763,
+ "grad_norm": 0.05625050142407417,
+ "learning_rate": 0.00042873234775405654,
+ "loss": 2.134300947189331,
+ "step": 1364
+ },
+ {
+ "epoch": 18.961672473867594,
+ "grad_norm": 0.05186711251735687,
+ "learning_rate": 0.00042849077761386784,
+ "loss": 2.1409969329833984,
+ "step": 1365
+ },
+ {
+ "epoch": 18.975609756097562,
+ "grad_norm": 0.057695358991622925,
+ "learning_rate": 0.0004282491063680263,
+ "loss": 2.1331894397735596,
+ "step": 1366
+ },
+ {
+ "epoch": 18.989547038327526,
+ "grad_norm": 0.055152107030153275,
+ "learning_rate": 0.00042800733421124207,
+ "loss": 2.147555112838745,
+ "step": 1367
+ },
+ {
+ "epoch": 19.0,
+ "grad_norm": 0.04286205768585205,
+ "learning_rate": 0.00042776546133830646,
+ "loss": 1.5948516130447388,
+ "step": 1368
+ },
+ {
+ "epoch": 19.0,
+ "eval_loss": 0.6249114871025085,
+ "eval_runtime": 36.6804,
+ "eval_samples_per_second": 66.575,
+ "eval_steps_per_second": 0.545,
+ "step": 1368
+ },
+ {
+ "epoch": 19.013937282229964,
+ "grad_norm": 0.05809386819601059,
+ "learning_rate": 0.00042752348794409227,
+ "loss": 2.0782227516174316,
+ "step": 1369
+ },
+ {
+ "epoch": 19.027874564459932,
+ "grad_norm": 0.06399382650852203,
+ "learning_rate": 0.00042728141422355287,
+ "loss": 2.078792095184326,
+ "step": 1370
+ },
+ {
+ "epoch": 19.041811846689896,
+ "grad_norm": 0.0564531646668911,
+ "learning_rate": 0.0004270392403717229,
+ "loss": 2.083125114440918,
+ "step": 1371
+ },
+ {
+ "epoch": 19.05574912891986,
+ "grad_norm": 0.057170569896698,
+ "learning_rate": 0.00042679696658371743,
+ "loss": 2.0679214000701904,
+ "step": 1372
+ },
+ {
+ "epoch": 19.069686411149824,
+ "grad_norm": 0.05639920011162758,
+ "learning_rate": 0.00042655459305473195,
+ "loss": 2.072279930114746,
+ "step": 1373
+ },
+ {
+ "epoch": 19.083623693379792,
+ "grad_norm": 0.05690578371286392,
+ "learning_rate": 0.0004263121199800425,
+ "loss": 2.0732839107513428,
+ "step": 1374
+ },
+ {
+ "epoch": 19.097560975609756,
+ "grad_norm": 0.05914883315563202,
+ "learning_rate": 0.0004260695475550054,
+ "loss": 2.0810770988464355,
+ "step": 1375
+ },
+ {
+ "epoch": 19.11149825783972,
+ "grad_norm": 0.058082643896341324,
+ "learning_rate": 0.0004258268759750566,
+ "loss": 2.074130058288574,
+ "step": 1376
+ },
+ {
+ "epoch": 19.125435540069688,
+ "grad_norm": 0.06016257032752037,
+ "learning_rate": 0.0004255841054357124,
+ "loss": 2.084043025970459,
+ "step": 1377
+ },
+ {
+ "epoch": 19.139372822299652,
+ "grad_norm": 0.060372497886419296,
+ "learning_rate": 0.0004253412361325686,
+ "loss": 2.0811657905578613,
+ "step": 1378
+ },
+ {
+ "epoch": 19.153310104529616,
+ "grad_norm": 0.0614042803645134,
+ "learning_rate": 0.0004250982682613006,
+ "loss": 2.070756435394287,
+ "step": 1379
+ },
+ {
+ "epoch": 19.16724738675958,
+ "grad_norm": 0.06391493231058121,
+ "learning_rate": 0.00042485520201766315,
+ "loss": 2.067322015762329,
+ "step": 1380
+ },
+ {
+ "epoch": 19.181184668989548,
+ "grad_norm": 0.06465132534503937,
+ "learning_rate": 0.0004246120375974905,
+ "loss": 2.077214002609253,
+ "step": 1381
+ },
+ {
+ "epoch": 19.195121951219512,
+ "grad_norm": 0.06490413844585419,
+ "learning_rate": 0.0004243687751966957,
+ "loss": 2.0735957622528076,
+ "step": 1382
+ },
+ {
+ "epoch": 19.209059233449477,
+ "grad_norm": 0.06681123375892639,
+ "learning_rate": 0.0004241254150112708,
+ "loss": 2.092386484146118,
+ "step": 1383
+ },
+ {
+ "epoch": 19.222996515679444,
+ "grad_norm": 0.07135862857103348,
+ "learning_rate": 0.000423881957237287,
+ "loss": 2.0910637378692627,
+ "step": 1384
+ },
+ {
+ "epoch": 19.23693379790941,
+ "grad_norm": 0.06640495359897614,
+ "learning_rate": 0.0004236384020708935,
+ "loss": 2.076943874359131,
+ "step": 1385
+ },
+ {
+ "epoch": 19.250871080139373,
+ "grad_norm": 0.06542305648326874,
+ "learning_rate": 0.0004233947497083185,
+ "loss": 2.08823299407959,
+ "step": 1386
+ },
+ {
+ "epoch": 19.264808362369337,
+ "grad_norm": 0.06014764681458473,
+ "learning_rate": 0.0004231510003458682,
+ "loss": 2.0875651836395264,
+ "step": 1387
+ },
+ {
+ "epoch": 19.278745644599304,
+ "grad_norm": 0.05776312202215195,
+ "learning_rate": 0.0004229071541799272,
+ "loss": 2.097287654876709,
+ "step": 1388
+ },
+ {
+ "epoch": 19.29268292682927,
+ "grad_norm": 0.058570489287376404,
+ "learning_rate": 0.0004226632114069578,
+ "loss": 2.099949359893799,
+ "step": 1389
+ },
+ {
+ "epoch": 19.306620209059233,
+ "grad_norm": 0.059035737067461014,
+ "learning_rate": 0.0004224191722235004,
+ "loss": 2.0985028743743896,
+ "step": 1390
+ },
+ {
+ "epoch": 19.320557491289197,
+ "grad_norm": 0.05857931450009346,
+ "learning_rate": 0.00042217503682617286,
+ "loss": 2.0884578227996826,
+ "step": 1391
+ },
+ {
+ "epoch": 19.334494773519165,
+ "grad_norm": 0.057818394154310226,
+ "learning_rate": 0.0004219308054116706,
+ "loss": 2.0950827598571777,
+ "step": 1392
+ },
+ {
+ "epoch": 19.34843205574913,
+ "grad_norm": 0.05500008538365364,
+ "learning_rate": 0.0004216864781767667,
+ "loss": 2.0837326049804688,
+ "step": 1393
+ },
+ {
+ "epoch": 19.362369337979093,
+ "grad_norm": 0.05635271221399307,
+ "learning_rate": 0.00042144205531831103,
+ "loss": 2.1017332077026367,
+ "step": 1394
+ },
+ {
+ "epoch": 19.37630662020906,
+ "grad_norm": 0.0582125261425972,
+ "learning_rate": 0.0004211975370332308,
+ "loss": 2.0762600898742676,
+ "step": 1395
+ },
+ {
+ "epoch": 19.390243902439025,
+ "grad_norm": 0.0587347187101841,
+ "learning_rate": 0.00042095292351852976,
+ "loss": 2.0604896545410156,
+ "step": 1396
+ },
+ {
+ "epoch": 19.40418118466899,
+ "grad_norm": 0.058021727949380875,
+ "learning_rate": 0.0004207082149712888,
+ "loss": 2.0906972885131836,
+ "step": 1397
+ },
+ {
+ "epoch": 19.418118466898953,
+ "grad_norm": 0.05805983021855354,
+ "learning_rate": 0.0004204634115886651,
+ "loss": 2.0873594284057617,
+ "step": 1398
+ },
+ {
+ "epoch": 19.43205574912892,
+ "grad_norm": 0.05964788421988487,
+ "learning_rate": 0.0004202185135678924,
+ "loss": 2.1012473106384277,
+ "step": 1399
+ },
+ {
+ "epoch": 19.445993031358885,
+ "grad_norm": 0.058361511677503586,
+ "learning_rate": 0.00041997352110628033,
+ "loss": 2.09468936920166,
+ "step": 1400
+ },
+ {
+ "epoch": 19.45993031358885,
+ "grad_norm": 0.05840443819761276,
+ "learning_rate": 0.00041972843440121527,
+ "loss": 2.105898857116699,
+ "step": 1401
+ },
+ {
+ "epoch": 19.473867595818817,
+ "grad_norm": 0.06023252755403519,
+ "learning_rate": 0.00041948325365015894,
+ "loss": 2.103001594543457,
+ "step": 1402
+ },
+ {
+ "epoch": 19.48780487804878,
+ "grad_norm": 0.057779282331466675,
+ "learning_rate": 0.0004192379790506491,
+ "loss": 2.0969185829162598,
+ "step": 1403
+ },
+ {
+ "epoch": 19.501742160278745,
+ "grad_norm": 0.0592162050306797,
+ "learning_rate": 0.00041899261080029904,
+ "loss": 2.1101880073547363,
+ "step": 1404
+ },
+ {
+ "epoch": 19.51567944250871,
+ "grad_norm": 0.06333442032337189,
+ "learning_rate": 0.00041874714909679754,
+ "loss": 2.1037089824676514,
+ "step": 1405
+ },
+ {
+ "epoch": 19.529616724738677,
+ "grad_norm": 0.06202675402164459,
+ "learning_rate": 0.00041850159413790863,
+ "loss": 2.1154634952545166,
+ "step": 1406
+ },
+ {
+ "epoch": 19.54355400696864,
+ "grad_norm": 0.055281441658735275,
+ "learning_rate": 0.0004182559461214715,
+ "loss": 2.1098036766052246,
+ "step": 1407
+ },
+ {
+ "epoch": 19.557491289198605,
+ "grad_norm": 0.06085072085261345,
+ "learning_rate": 0.0004180102052454004,
+ "loss": 2.0985965728759766,
+ "step": 1408
+ },
+ {
+ "epoch": 19.571428571428573,
+ "grad_norm": 0.059430696070194244,
+ "learning_rate": 0.00041776437170768427,
+ "loss": 2.1063296794891357,
+ "step": 1409
+ },
+ {
+ "epoch": 19.585365853658537,
+ "grad_norm": 0.05628339946269989,
+ "learning_rate": 0.0004175184457063868,
+ "loss": 2.096975326538086,
+ "step": 1410
+ },
+ {
+ "epoch": 19.5993031358885,
+ "grad_norm": 0.056543346494436264,
+ "learning_rate": 0.000417272427439646,
+ "loss": 2.1110968589782715,
+ "step": 1411
+ },
+ {
+ "epoch": 19.613240418118465,
+ "grad_norm": 0.05971049889922142,
+ "learning_rate": 0.00041702631710567443,
+ "loss": 2.1136279106140137,
+ "step": 1412
+ },
+ {
+ "epoch": 19.627177700348433,
+ "grad_norm": 0.056699734181165695,
+ "learning_rate": 0.00041678011490275875,
+ "loss": 2.113466501235962,
+ "step": 1413
+ },
+ {
+ "epoch": 19.641114982578397,
+ "grad_norm": 0.05671929940581322,
+ "learning_rate": 0.00041653382102925957,
+ "loss": 2.1061220169067383,
+ "step": 1414
+ },
+ {
+ "epoch": 19.65505226480836,
+ "grad_norm": 0.05770038440823555,
+ "learning_rate": 0.00041628743568361147,
+ "loss": 2.1156320571899414,
+ "step": 1415
+ },
+ {
+ "epoch": 19.66898954703833,
+ "grad_norm": 0.06175893545150757,
+ "learning_rate": 0.00041604095906432265,
+ "loss": 2.112288475036621,
+ "step": 1416
+ },
+ {
+ "epoch": 19.682926829268293,
+ "grad_norm": 0.06383928656578064,
+ "learning_rate": 0.00041579439136997493,
+ "loss": 2.1029422283172607,
+ "step": 1417
+ },
+ {
+ "epoch": 19.696864111498257,
+ "grad_norm": 0.06042713671922684,
+ "learning_rate": 0.00041554773279922337,
+ "loss": 2.1106066703796387,
+ "step": 1418
+ },
+ {
+ "epoch": 19.71080139372822,
+ "grad_norm": 0.057180315256118774,
+ "learning_rate": 0.0004153009835507963,
+ "loss": 2.1148805618286133,
+ "step": 1419
+ },
+ {
+ "epoch": 19.72473867595819,
+ "grad_norm": 0.061083171516656876,
+ "learning_rate": 0.0004150541438234952,
+ "loss": 2.0946850776672363,
+ "step": 1420
+ },
+ {
+ "epoch": 19.738675958188153,
+ "grad_norm": 0.0596432127058506,
+ "learning_rate": 0.00041480721381619435,
+ "loss": 2.1208066940307617,
+ "step": 1421
+ },
+ {
+ "epoch": 19.752613240418118,
+ "grad_norm": 0.05496669560670853,
+ "learning_rate": 0.00041456019372784086,
+ "loss": 2.1088931560516357,
+ "step": 1422
+ },
+ {
+ "epoch": 19.766550522648085,
+ "grad_norm": 0.05810244753956795,
+ "learning_rate": 0.0004143130837574543,
+ "loss": 2.1019372940063477,
+ "step": 1423
+ },
+ {
+ "epoch": 19.78048780487805,
+ "grad_norm": 0.05894653871655464,
+ "learning_rate": 0.0004140658841041267,
+ "loss": 2.1125125885009766,
+ "step": 1424
+ },
+ {
+ "epoch": 19.794425087108014,
+ "grad_norm": 0.05772726237773895,
+ "learning_rate": 0.0004138185949670224,
+ "loss": 2.126194477081299,
+ "step": 1425
+ },
+ {
+ "epoch": 19.808362369337978,
+ "grad_norm": 0.058502763509750366,
+ "learning_rate": 0.00041357121654537766,
+ "loss": 2.110621452331543,
+ "step": 1426
+ },
+ {
+ "epoch": 19.822299651567945,
+ "grad_norm": 0.058296941220760345,
+ "learning_rate": 0.00041332374903850104,
+ "loss": 2.1034765243530273,
+ "step": 1427
+ },
+ {
+ "epoch": 19.83623693379791,
+ "grad_norm": 0.05595606938004494,
+ "learning_rate": 0.00041307619264577234,
+ "loss": 2.118297815322876,
+ "step": 1428
+ },
+ {
+ "epoch": 19.850174216027874,
+ "grad_norm": 0.0563458688557148,
+ "learning_rate": 0.0004128285475666436,
+ "loss": 2.1122255325317383,
+ "step": 1429
+ },
+ {
+ "epoch": 19.86411149825784,
+ "grad_norm": 0.05421055108308792,
+ "learning_rate": 0.0004125808140006378,
+ "loss": 2.103970527648926,
+ "step": 1430
+ },
+ {
+ "epoch": 19.878048780487806,
+ "grad_norm": 0.05633455142378807,
+ "learning_rate": 0.0004123329921473494,
+ "loss": 2.11661434173584,
+ "step": 1431
+ },
+ {
+ "epoch": 19.89198606271777,
+ "grad_norm": 0.05797342583537102,
+ "learning_rate": 0.0004120850822064439,
+ "loss": 2.1021676063537598,
+ "step": 1432
+ },
+ {
+ "epoch": 19.905923344947734,
+ "grad_norm": 0.056061360985040665,
+ "learning_rate": 0.00041183708437765815,
+ "loss": 2.123298406600952,
+ "step": 1433
+ },
+ {
+ "epoch": 19.9198606271777,
+ "grad_norm": 0.05381599813699722,
+ "learning_rate": 0.00041158899886079925,
+ "loss": 2.120389938354492,
+ "step": 1434
+ },
+ {
+ "epoch": 19.933797909407666,
+ "grad_norm": 0.05545654520392418,
+ "learning_rate": 0.00041134082585574534,
+ "loss": 2.1180779933929443,
+ "step": 1435
+ },
+ {
+ "epoch": 19.94773519163763,
+ "grad_norm": 0.056983016431331635,
+ "learning_rate": 0.00041109256556244497,
+ "loss": 2.118905544281006,
+ "step": 1436
+ },
+ {
+ "epoch": 19.961672473867594,
+ "grad_norm": 0.0575285367667675,
+ "learning_rate": 0.00041084421818091685,
+ "loss": 2.1049699783325195,
+ "step": 1437
+ },
+ {
+ "epoch": 19.975609756097562,
+ "grad_norm": 0.057964932173490524,
+ "learning_rate": 0.0004105957839112501,
+ "loss": 2.1140224933624268,
+ "step": 1438
+ },
+ {
+ "epoch": 19.989547038327526,
+ "grad_norm": 0.05869961529970169,
+ "learning_rate": 0.0004103472629536036,
+ "loss": 2.1089744567871094,
+ "step": 1439
+ },
+ {
+ "epoch": 20.0,
+ "grad_norm": 0.04450551047921181,
+ "learning_rate": 0.0004100986555082063,
+ "loss": 1.579450249671936,
+ "step": 1440
+ },
+ {
+ "epoch": 20.0,
+ "eval_loss": 0.6265780925750732,
+ "eval_runtime": 34.9259,
+ "eval_samples_per_second": 69.92,
+ "eval_steps_per_second": 0.573,
+ "step": 1440
+ },
+ {
+ "epoch": 20.013937282229964,
+ "grad_norm": 0.05954804643988609,
+ "learning_rate": 0.0004098499617753567,
+ "loss": 2.062889575958252,
+ "step": 1441
+ },
+ {
+ "epoch": 20.027874564459932,
+ "grad_norm": 0.07035746425390244,
+ "learning_rate": 0.00040960118195542273,
+ "loss": 2.0443758964538574,
+ "step": 1442
+ },
+ {
+ "epoch": 20.041811846689896,
+ "grad_norm": 0.0653388574719429,
+ "learning_rate": 0.00040935231624884204,
+ "loss": 2.0611963272094727,
+ "step": 1443
+ },
+ {
+ "epoch": 20.05574912891986,
+ "grad_norm": 0.06305127590894699,
+ "learning_rate": 0.0004091033648561211,
+ "loss": 2.0648036003112793,
+ "step": 1444
+ },
+ {
+ "epoch": 20.069686411149824,
+ "grad_norm": 0.05987029895186424,
+ "learning_rate": 0.00040885432797783543,
+ "loss": 2.059682607650757,
+ "step": 1445
+ },
+ {
+ "epoch": 20.083623693379792,
+ "grad_norm": 0.06469618529081345,
+ "learning_rate": 0.0004086052058146297,
+ "loss": 2.0656521320343018,
+ "step": 1446
+ },
+ {
+ "epoch": 20.097560975609756,
+ "grad_norm": 0.05834262818098068,
+ "learning_rate": 0.00040835599856721725,
+ "loss": 2.0583415031433105,
+ "step": 1447
+ },
+ {
+ "epoch": 20.11149825783972,
+ "grad_norm": 0.06026774272322655,
+ "learning_rate": 0.00040810670643637954,
+ "loss": 2.0644960403442383,
+ "step": 1448
+ },
+ {
+ "epoch": 20.125435540069688,
+ "grad_norm": 0.06032145023345947,
+ "learning_rate": 0.000407857329622967,
+ "loss": 2.050269842147827,
+ "step": 1449
+ },
+ {
+ "epoch": 20.139372822299652,
+ "grad_norm": 0.05611831694841385,
+ "learning_rate": 0.00040760786832789786,
+ "loss": 2.0559628009796143,
+ "step": 1450
+ },
+ {
+ "epoch": 20.153310104529616,
+ "grad_norm": 0.06046713516116142,
+ "learning_rate": 0.0004073583227521588,
+ "loss": 2.06439471244812,
+ "step": 1451
+ },
+ {
+ "epoch": 20.16724738675958,
+ "grad_norm": 0.06147446483373642,
+ "learning_rate": 0.0004071086930968039,
+ "loss": 2.0606837272644043,
+ "step": 1452
+ },
+ {
+ "epoch": 20.181184668989548,
+ "grad_norm": 0.05967561900615692,
+ "learning_rate": 0.00040685897956295545,
+ "loss": 2.0494980812072754,
+ "step": 1453
+ },
+ {
+ "epoch": 20.195121951219512,
+ "grad_norm": 0.05903508514165878,
+ "learning_rate": 0.0004066091823518031,
+ "loss": 2.059744358062744,
+ "step": 1454
+ },
+ {
+ "epoch": 20.209059233449477,
+ "grad_norm": 0.060008060187101364,
+ "learning_rate": 0.00040635930166460385,
+ "loss": 2.0736231803894043,
+ "step": 1455
+ },
+ {
+ "epoch": 20.222996515679444,
+ "grad_norm": 0.057375747710466385,
+ "learning_rate": 0.00040610933770268226,
+ "loss": 2.062077045440674,
+ "step": 1456
+ },
+ {
+ "epoch": 20.23693379790941,
+ "grad_norm": 0.05929991975426674,
+ "learning_rate": 0.00040585929066742964,
+ "loss": 2.059680938720703,
+ "step": 1457
+ },
+ {
+ "epoch": 20.250871080139373,
+ "grad_norm": 0.06615032255649567,
+ "learning_rate": 0.00040560916076030435,
+ "loss": 2.080033302307129,
+ "step": 1458
+ },
+ {
+ "epoch": 20.264808362369337,
+ "grad_norm": 0.06465113162994385,
+ "learning_rate": 0.00040535894818283154,
+ "loss": 2.0724852085113525,
+ "step": 1459
+ },
+ {
+ "epoch": 20.278745644599304,
+ "grad_norm": 0.0641520619392395,
+ "learning_rate": 0.0004051086531366031,
+ "loss": 2.0535552501678467,
+ "step": 1460
+ },
+ {
+ "epoch": 20.29268292682927,
+ "grad_norm": 0.060508403927087784,
+ "learning_rate": 0.000404858275823277,
+ "loss": 2.0627613067626953,
+ "step": 1461
+ },
+ {
+ "epoch": 20.306620209059233,
+ "grad_norm": 0.06028459966182709,
+ "learning_rate": 0.000404607816444578,
+ "loss": 2.062082290649414,
+ "step": 1462
+ },
+ {
+ "epoch": 20.320557491289197,
+ "grad_norm": 0.06797714531421661,
+ "learning_rate": 0.00040435727520229644,
+ "loss": 2.068223476409912,
+ "step": 1463
+ },
+ {
+ "epoch": 20.334494773519165,
+ "grad_norm": 0.07491812855005264,
+ "learning_rate": 0.0004041066522982891,
+ "loss": 2.0639474391937256,
+ "step": 1464
+ },
+ {
+ "epoch": 20.34843205574913,
+ "grad_norm": 0.06413327902555466,
+ "learning_rate": 0.000403855947934478,
+ "loss": 2.0727763175964355,
+ "step": 1465
+ },
+ {
+ "epoch": 20.362369337979093,
+ "grad_norm": 0.05947510898113251,
+ "learning_rate": 0.00040360516231285155,
+ "loss": 2.0872607231140137,
+ "step": 1466
+ },
+ {
+ "epoch": 20.37630662020906,
+ "grad_norm": 0.0680336281657219,
+ "learning_rate": 0.00040335429563546286,
+ "loss": 2.07262921333313,
+ "step": 1467
+ },
+ {
+ "epoch": 20.390243902439025,
+ "grad_norm": 0.06363389641046524,
+ "learning_rate": 0.0004031033481044308,
+ "loss": 2.071188449859619,
+ "step": 1468
+ },
+ {
+ "epoch": 20.40418118466899,
+ "grad_norm": 0.057794757187366486,
+ "learning_rate": 0.00040285231992193924,
+ "loss": 2.0776638984680176,
+ "step": 1469
+ },
+ {
+ "epoch": 20.418118466898953,
+ "grad_norm": 0.06159241497516632,
+ "learning_rate": 0.0004026012112902372,
+ "loss": 2.076610565185547,
+ "step": 1470
+ },
+ {
+ "epoch": 20.43205574912892,
+ "grad_norm": 0.05898696929216385,
+ "learning_rate": 0.0004023500224116381,
+ "loss": 2.0713918209075928,
+ "step": 1471
+ },
+ {
+ "epoch": 20.445993031358885,
+ "grad_norm": 0.059070803225040436,
+ "learning_rate": 0.00040209875348852037,
+ "loss": 2.073078155517578,
+ "step": 1472
+ },
+ {
+ "epoch": 20.45993031358885,
+ "grad_norm": 0.06064842641353607,
+ "learning_rate": 0.00040184740472332705,
+ "loss": 2.070858955383301,
+ "step": 1473
+ },
+ {
+ "epoch": 20.473867595818817,
+ "grad_norm": 0.060642652213573456,
+ "learning_rate": 0.000401595976318565,
+ "loss": 2.0703179836273193,
+ "step": 1474
+ },
+ {
+ "epoch": 20.48780487804878,
+ "grad_norm": 0.06281708180904388,
+ "learning_rate": 0.00040134446847680584,
+ "loss": 2.0891528129577637,
+ "step": 1475
+ },
+ {
+ "epoch": 20.501742160278745,
+ "grad_norm": 0.06964185833930969,
+ "learning_rate": 0.0004010928814006846,
+ "loss": 2.0769782066345215,
+ "step": 1476
+ },
+ {
+ "epoch": 20.51567944250871,
+ "grad_norm": 0.0709647610783577,
+ "learning_rate": 0.0004008412152929007,
+ "loss": 2.087449550628662,
+ "step": 1477
+ },
+ {
+ "epoch": 20.529616724738677,
+ "grad_norm": 0.0604700967669487,
+ "learning_rate": 0.0004005894703562168,
+ "loss": 2.0697526931762695,
+ "step": 1478
+ },
+ {
+ "epoch": 20.54355400696864,
+ "grad_norm": 0.066826231777668,
+ "learning_rate": 0.0004003376467934593,
+ "loss": 2.0674479007720947,
+ "step": 1479
+ },
+ {
+ "epoch": 20.557491289198605,
+ "grad_norm": 0.06124534085392952,
+ "learning_rate": 0.0004000857448075178,
+ "loss": 2.084949016571045,
+ "step": 1480
+ },
+ {
+ "epoch": 20.571428571428573,
+ "grad_norm": 0.0605972483754158,
+ "learning_rate": 0.0003998337646013455,
+ "loss": 2.0836410522460938,
+ "step": 1481
+ },
+ {
+ "epoch": 20.585365853658537,
+ "grad_norm": 0.05937602370977402,
+ "learning_rate": 0.00039958170637795806,
+ "loss": 2.085038185119629,
+ "step": 1482
+ },
+ {
+ "epoch": 20.5993031358885,
+ "grad_norm": 0.06045088917016983,
+ "learning_rate": 0.0003993295703404341,
+ "loss": 2.0811872482299805,
+ "step": 1483
+ },
+ {
+ "epoch": 20.613240418118465,
+ "grad_norm": 0.06080574169754982,
+ "learning_rate": 0.00039907735669191544,
+ "loss": 2.072998523712158,
+ "step": 1484
+ },
+ {
+ "epoch": 20.627177700348433,
+ "grad_norm": 0.06071743369102478,
+ "learning_rate": 0.00039882506563560573,
+ "loss": 2.092665672302246,
+ "step": 1485
+ },
+ {
+ "epoch": 20.641114982578397,
+ "grad_norm": 0.060432225465774536,
+ "learning_rate": 0.0003985726973747715,
+ "loss": 2.080765962600708,
+ "step": 1486
+ },
+ {
+ "epoch": 20.65505226480836,
+ "grad_norm": 0.05753706395626068,
+ "learning_rate": 0.00039832025211274113,
+ "loss": 2.0854883193969727,
+ "step": 1487
+ },
+ {
+ "epoch": 20.66898954703833,
+ "grad_norm": 0.05913816764950752,
+ "learning_rate": 0.00039806773005290544,
+ "loss": 2.0852391719818115,
+ "step": 1488
+ },
+ {
+ "epoch": 20.682926829268293,
+ "grad_norm": 0.057243719696998596,
+ "learning_rate": 0.0003978151313987168,
+ "loss": 2.069157600402832,
+ "step": 1489
+ },
+ {
+ "epoch": 20.696864111498257,
+ "grad_norm": 0.058420926332473755,
+ "learning_rate": 0.00039756245635368933,
+ "loss": 2.084345579147339,
+ "step": 1490
+ },
+ {
+ "epoch": 20.71080139372822,
+ "grad_norm": 0.057442132383584976,
+ "learning_rate": 0.00039730970512139876,
+ "loss": 2.091980218887329,
+ "step": 1491
+ },
+ {
+ "epoch": 20.72473867595819,
+ "grad_norm": 0.05517714098095894,
+ "learning_rate": 0.0003970568779054822,
+ "loss": 2.078554153442383,
+ "step": 1492
+ },
+ {
+ "epoch": 20.738675958188153,
+ "grad_norm": 0.055716823786497116,
+ "learning_rate": 0.000396803974909638,
+ "loss": 2.094151735305786,
+ "step": 1493
+ },
+ {
+ "epoch": 20.752613240418118,
+ "grad_norm": 0.056730274111032486,
+ "learning_rate": 0.0003965509963376255,
+ "loss": 2.068563461303711,
+ "step": 1494
+ },
+ {
+ "epoch": 20.766550522648085,
+ "grad_norm": 0.05755753442645073,
+ "learning_rate": 0.000396297942393265,
+ "loss": 2.088921070098877,
+ "step": 1495
+ },
+ {
+ "epoch": 20.78048780487805,
+ "grad_norm": 0.05533437803387642,
+ "learning_rate": 0.0003960448132804375,
+ "loss": 2.0941689014434814,
+ "step": 1496
+ },
+ {
+ "epoch": 20.794425087108014,
+ "grad_norm": 0.06088414788246155,
+ "learning_rate": 0.0003957916092030845,
+ "loss": 2.0830764770507812,
+ "step": 1497
+ },
+ {
+ "epoch": 20.808362369337978,
+ "grad_norm": 0.05863271281123161,
+ "learning_rate": 0.00039553833036520803,
+ "loss": 2.090672016143799,
+ "step": 1498
+ },
+ {
+ "epoch": 20.822299651567945,
+ "grad_norm": 0.05960002914071083,
+ "learning_rate": 0.0003952849769708702,
+ "loss": 2.0864553451538086,
+ "step": 1499
+ },
+ {
+ "epoch": 20.83623693379791,
+ "grad_norm": 0.05506768077611923,
+ "learning_rate": 0.0003950315492241932,
+ "loss": 2.094161033630371,
+ "step": 1500
+ },
+ {
+ "epoch": 20.850174216027874,
+ "grad_norm": 0.05862478166818619,
+ "learning_rate": 0.0003947780473293593,
+ "loss": 2.115245819091797,
+ "step": 1501
+ },
+ {
+ "epoch": 20.86411149825784,
+ "grad_norm": 0.05872654542326927,
+ "learning_rate": 0.00039452447149061054,
+ "loss": 2.0812911987304688,
+ "step": 1502
+ },
+ {
+ "epoch": 20.878048780487806,
+ "grad_norm": 0.05998777225613594,
+ "learning_rate": 0.0003942708219122481,
+ "loss": 2.095242977142334,
+ "step": 1503
+ },
+ {
+ "epoch": 20.89198606271777,
+ "grad_norm": 0.056095417588949203,
+ "learning_rate": 0.000394017098798633,
+ "loss": 2.092863082885742,
+ "step": 1504
+ },
+ {
+ "epoch": 20.905923344947734,
+ "grad_norm": 0.05556971952319145,
+ "learning_rate": 0.0003937633023541854,
+ "loss": 2.097186803817749,
+ "step": 1505
+ },
+ {
+ "epoch": 20.9198606271777,
+ "grad_norm": 0.055835824459791183,
+ "learning_rate": 0.0003935094327833845,
+ "loss": 2.074395179748535,
+ "step": 1506
+ },
+ {
+ "epoch": 20.933797909407666,
+ "grad_norm": 0.05587809532880783,
+ "learning_rate": 0.0003932554902907683,
+ "loss": 2.079871416091919,
+ "step": 1507
+ },
+ {
+ "epoch": 20.94773519163763,
+ "grad_norm": 0.05581265687942505,
+ "learning_rate": 0.0003930014750809338,
+ "loss": 2.097808837890625,
+ "step": 1508
+ },
+ {
+ "epoch": 20.961672473867594,
+ "grad_norm": 0.056034673005342484,
+ "learning_rate": 0.0003927473873585365,
+ "loss": 2.1134562492370605,
+ "step": 1509
+ },
+ {
+ "epoch": 20.975609756097562,
+ "grad_norm": 0.05605486407876015,
+ "learning_rate": 0.0003924932273282903,
+ "loss": 2.085361957550049,
+ "step": 1510
+ },
+ {
+ "epoch": 20.989547038327526,
+ "grad_norm": 0.056133050471544266,
+ "learning_rate": 0.00039223899519496723,
+ "loss": 2.0866618156433105,
+ "step": 1511
+ },
+ {
+ "epoch": 21.0,
+ "grad_norm": 0.045700959861278534,
+ "learning_rate": 0.00039198469116339757,
+ "loss": 1.5582417249679565,
+ "step": 1512
+ },
+ {
+ "epoch": 21.0,
+ "eval_loss": 0.6279418468475342,
+ "eval_runtime": 36.1632,
+ "eval_samples_per_second": 67.527,
+ "eval_steps_per_second": 0.553,
+ "step": 1512
+ },
+ {
+ "epoch": 21.013937282229964,
+ "grad_norm": 0.05471052974462509,
+ "learning_rate": 0.0003917303154384694,
+ "loss": 2.033940315246582,
+ "step": 1513
+ },
+ {
+ "epoch": 21.027874564459932,
+ "grad_norm": 0.06705708801746368,
+ "learning_rate": 0.00039147586822512885,
+ "loss": 2.0360937118530273,
+ "step": 1514
+ },
+ {
+ "epoch": 21.041811846689896,
+ "grad_norm": 0.06307924538850784,
+ "learning_rate": 0.0003912213497283793,
+ "loss": 2.0500328540802,
+ "step": 1515
+ },
+ {
+ "epoch": 21.05574912891986,
+ "grad_norm": 0.06228886917233467,
+ "learning_rate": 0.0003909667601532819,
+ "loss": 2.0308260917663574,
+ "step": 1516
+ },
+ {
+ "epoch": 21.069686411149824,
+ "grad_norm": 0.0606699101626873,
+ "learning_rate": 0.00039071209970495445,
+ "loss": 2.0328145027160645,
+ "step": 1517
+ },
+ {
+ "epoch": 21.083623693379792,
+ "grad_norm": 0.060405075550079346,
+ "learning_rate": 0.00039045736858857273,
+ "loss": 2.0279717445373535,
+ "step": 1518
+ },
+ {
+ "epoch": 21.097560975609756,
+ "grad_norm": 0.0611112080514431,
+ "learning_rate": 0.0003902025670093687,
+ "loss": 2.0422918796539307,
+ "step": 1519
+ },
+ {
+ "epoch": 21.11149825783972,
+ "grad_norm": 0.05837974697351456,
+ "learning_rate": 0.00038994769517263156,
+ "loss": 2.048844337463379,
+ "step": 1520
+ },
+ {
+ "epoch": 21.125435540069688,
+ "grad_norm": 0.06053513288497925,
+ "learning_rate": 0.0003896927532837069,
+ "loss": 2.0358529090881348,
+ "step": 1521
+ },
+ {
+ "epoch": 21.139372822299652,
+ "grad_norm": 0.06003211438655853,
+ "learning_rate": 0.0003894377415479967,
+ "loss": 2.042120933532715,
+ "step": 1522
+ },
+ {
+ "epoch": 21.153310104529616,
+ "grad_norm": 0.060802191495895386,
+ "learning_rate": 0.00038918266017095936,
+ "loss": 2.046935558319092,
+ "step": 1523
+ },
+ {
+ "epoch": 21.16724738675958,
+ "grad_norm": 0.06367085129022598,
+ "learning_rate": 0.0003889275093581096,
+ "loss": 2.049290180206299,
+ "step": 1524
+ },
+ {
+ "epoch": 21.181184668989548,
+ "grad_norm": 0.05851449444890022,
+ "learning_rate": 0.00038867228931501737,
+ "loss": 2.052337169647217,
+ "step": 1525
+ },
+ {
+ "epoch": 21.195121951219512,
+ "grad_norm": 0.05873304605484009,
+ "learning_rate": 0.0003884170002473091,
+ "loss": 2.0443310737609863,
+ "step": 1526
+ },
+ {
+ "epoch": 21.209059233449477,
+ "grad_norm": 0.062345489859580994,
+ "learning_rate": 0.0003881616423606666,
+ "loss": 2.0309629440307617,
+ "step": 1527
+ },
+ {
+ "epoch": 21.222996515679444,
+ "grad_norm": 0.06157859042286873,
+ "learning_rate": 0.00038790621586082697,
+ "loss": 2.040987491607666,
+ "step": 1528
+ },
+ {
+ "epoch": 21.23693379790941,
+ "grad_norm": 0.06326454132795334,
+ "learning_rate": 0.0003876507209535829,
+ "loss": 2.0339348316192627,
+ "step": 1529
+ },
+ {
+ "epoch": 21.250871080139373,
+ "grad_norm": 0.05967864394187927,
+ "learning_rate": 0.00038739515784478186,
+ "loss": 2.0340347290039062,
+ "step": 1530
+ },
+ {
+ "epoch": 21.264808362369337,
+ "grad_norm": 0.06237480416893959,
+ "learning_rate": 0.00038713952674032654,
+ "loss": 2.0541834831237793,
+ "step": 1531
+ },
+ {
+ "epoch": 21.278745644599304,
+ "grad_norm": 0.06269778311252594,
+ "learning_rate": 0.0003868838278461743,
+ "loss": 2.0332889556884766,
+ "step": 1532
+ },
+ {
+ "epoch": 21.29268292682927,
+ "grad_norm": 0.058931149542331696,
+ "learning_rate": 0.0003866280613683371,
+ "loss": 2.046989917755127,
+ "step": 1533
+ },
+ {
+ "epoch": 21.306620209059233,
+ "grad_norm": 0.05884654074907303,
+ "learning_rate": 0.00038637222751288126,
+ "loss": 2.0413711071014404,
+ "step": 1534
+ },
+ {
+ "epoch": 21.320557491289197,
+ "grad_norm": 0.06431130319833755,
+ "learning_rate": 0.0003861163264859277,
+ "loss": 2.043229103088379,
+ "step": 1535
+ },
+ {
+ "epoch": 21.334494773519165,
+ "grad_norm": 0.061834171414375305,
+ "learning_rate": 0.0003858603584936511,
+ "loss": 2.0472874641418457,
+ "step": 1536
+ },
+ {
+ "epoch": 21.34843205574913,
+ "grad_norm": 0.058680370450019836,
+ "learning_rate": 0.0003856043237422803,
+ "loss": 2.058084487915039,
+ "step": 1537
+ },
+ {
+ "epoch": 21.362369337979093,
+ "grad_norm": 0.0592305064201355,
+ "learning_rate": 0.0003853482224380978,
+ "loss": 2.0515503883361816,
+ "step": 1538
+ },
+ {
+ "epoch": 21.37630662020906,
+ "grad_norm": 0.05994146317243576,
+ "learning_rate": 0.00038509205478744,
+ "loss": 2.0377187728881836,
+ "step": 1539
+ },
+ {
+ "epoch": 21.390243902439025,
+ "grad_norm": 0.06389214843511581,
+ "learning_rate": 0.0003848358209966963,
+ "loss": 2.0533361434936523,
+ "step": 1540
+ },
+ {
+ "epoch": 21.40418118466899,
+ "grad_norm": 0.06090407446026802,
+ "learning_rate": 0.0003845795212723099,
+ "loss": 2.0553441047668457,
+ "step": 1541
+ },
+ {
+ "epoch": 21.418118466898953,
+ "grad_norm": 0.06273195147514343,
+ "learning_rate": 0.00038432315582077664,
+ "loss": 2.0590620040893555,
+ "step": 1542
+ },
+ {
+ "epoch": 21.43205574912892,
+ "grad_norm": 0.06525216996669769,
+ "learning_rate": 0.0003840667248486456,
+ "loss": 2.0517024993896484,
+ "step": 1543
+ },
+ {
+ "epoch": 21.445993031358885,
+ "grad_norm": 0.06123936176300049,
+ "learning_rate": 0.0003838102285625186,
+ "loss": 2.054276943206787,
+ "step": 1544
+ },
+ {
+ "epoch": 21.45993031358885,
+ "grad_norm": 0.06384961307048798,
+ "learning_rate": 0.00038355366716905006,
+ "loss": 2.058122396469116,
+ "step": 1545
+ },
+ {
+ "epoch": 21.473867595818817,
+ "grad_norm": 0.06391091644763947,
+ "learning_rate": 0.0003832970408749467,
+ "loss": 2.061744213104248,
+ "step": 1546
+ },
+ {
+ "epoch": 21.48780487804878,
+ "grad_norm": 0.06393741071224213,
+ "learning_rate": 0.00038304034988696816,
+ "loss": 2.0698375701904297,
+ "step": 1547
+ },
+ {
+ "epoch": 21.501742160278745,
+ "grad_norm": 0.06098850816488266,
+ "learning_rate": 0.00038278359441192516,
+ "loss": 2.0527985095977783,
+ "step": 1548
+ },
+ {
+ "epoch": 21.51567944250871,
+ "grad_norm": 0.059852417558431625,
+ "learning_rate": 0.00038252677465668136,
+ "loss": 2.0557432174682617,
+ "step": 1549
+ },
+ {
+ "epoch": 21.529616724738677,
+ "grad_norm": 0.063257597386837,
+ "learning_rate": 0.00038226989082815156,
+ "loss": 2.0541868209838867,
+ "step": 1550
+ },
+ {
+ "epoch": 21.54355400696864,
+ "grad_norm": 0.06203039735555649,
+ "learning_rate": 0.00038201294313330245,
+ "loss": 2.0554230213165283,
+ "step": 1551
+ },
+ {
+ "epoch": 21.557491289198605,
+ "grad_norm": 0.06832246482372284,
+ "learning_rate": 0.00038175593177915227,
+ "loss": 2.0623044967651367,
+ "step": 1552
+ },
+ {
+ "epoch": 21.571428571428573,
+ "grad_norm": 0.0681714415550232,
+ "learning_rate": 0.0003814988569727704,
+ "loss": 2.0611777305603027,
+ "step": 1553
+ },
+ {
+ "epoch": 21.585365853658537,
+ "grad_norm": 0.06245206668972969,
+ "learning_rate": 0.0003812417189212773,
+ "loss": 2.0653200149536133,
+ "step": 1554
+ },
+ {
+ "epoch": 21.5993031358885,
+ "grad_norm": 0.06456883996725082,
+ "learning_rate": 0.00038098451783184447,
+ "loss": 2.0564777851104736,
+ "step": 1555
+ },
+ {
+ "epoch": 21.613240418118465,
+ "grad_norm": 0.06580620259046555,
+ "learning_rate": 0.00038072725391169416,
+ "loss": 2.0669004917144775,
+ "step": 1556
+ },
+ {
+ "epoch": 21.627177700348433,
+ "grad_norm": 0.0615418441593647,
+ "learning_rate": 0.0003804699273680994,
+ "loss": 2.062901258468628,
+ "step": 1557
+ },
+ {
+ "epoch": 21.641114982578397,
+ "grad_norm": 0.0597493015229702,
+ "learning_rate": 0.0003802125384083834,
+ "loss": 2.051572799682617,
+ "step": 1558
+ },
+ {
+ "epoch": 21.65505226480836,
+ "grad_norm": 0.05919422581791878,
+ "learning_rate": 0.0003799550872399197,
+ "loss": 2.0755348205566406,
+ "step": 1559
+ },
+ {
+ "epoch": 21.66898954703833,
+ "grad_norm": 0.0618102103471756,
+ "learning_rate": 0.0003796975740701323,
+ "loss": 2.0373353958129883,
+ "step": 1560
+ },
+ {
+ "epoch": 21.682926829268293,
+ "grad_norm": 0.060938529670238495,
+ "learning_rate": 0.0003794399991064948,
+ "loss": 2.046900749206543,
+ "step": 1561
+ },
+ {
+ "epoch": 21.696864111498257,
+ "grad_norm": 0.059858448803424835,
+ "learning_rate": 0.00037918236255653074,
+ "loss": 2.0637502670288086,
+ "step": 1562
+ },
+ {
+ "epoch": 21.71080139372822,
+ "grad_norm": 0.061770256608724594,
+ "learning_rate": 0.00037892466462781306,
+ "loss": 2.0593981742858887,
+ "step": 1563
+ },
+ {
+ "epoch": 21.72473867595819,
+ "grad_norm": 0.06062103807926178,
+ "learning_rate": 0.00037866690552796446,
+ "loss": 2.0643060207366943,
+ "step": 1564
+ },
+ {
+ "epoch": 21.738675958188153,
+ "grad_norm": 0.05910053849220276,
+ "learning_rate": 0.00037840908546465696,
+ "loss": 2.06599497795105,
+ "step": 1565
+ },
+ {
+ "epoch": 21.752613240418118,
+ "grad_norm": 0.057800937443971634,
+ "learning_rate": 0.0003781512046456111,
+ "loss": 2.057941198348999,
+ "step": 1566
+ },
+ {
+ "epoch": 21.766550522648085,
+ "grad_norm": 0.05939284712076187,
+ "learning_rate": 0.0003778932632785972,
+ "loss": 2.057325601577759,
+ "step": 1567
+ },
+ {
+ "epoch": 21.78048780487805,
+ "grad_norm": 0.06094905734062195,
+ "learning_rate": 0.00037763526157143376,
+ "loss": 2.058422803878784,
+ "step": 1568
+ },
+ {
+ "epoch": 21.794425087108014,
+ "grad_norm": 0.060869570821523666,
+ "learning_rate": 0.00037737719973198825,
+ "loss": 2.0537140369415283,
+ "step": 1569
+ },
+ {
+ "epoch": 21.808362369337978,
+ "grad_norm": 0.05886754021048546,
+ "learning_rate": 0.0003771190779681762,
+ "loss": 2.077362537384033,
+ "step": 1570
+ },
+ {
+ "epoch": 21.822299651567945,
+ "grad_norm": 0.061772339046001434,
+ "learning_rate": 0.0003768608964879619,
+ "loss": 2.067615032196045,
+ "step": 1571
+ },
+ {
+ "epoch": 21.83623693379791,
+ "grad_norm": 0.06018555909395218,
+ "learning_rate": 0.00037660265549935724,
+ "loss": 2.0696468353271484,
+ "step": 1572
+ },
+ {
+ "epoch": 21.850174216027874,
+ "grad_norm": 0.058483004570007324,
+ "learning_rate": 0.00037634435521042257,
+ "loss": 2.085695505142212,
+ "step": 1573
+ },
+ {
+ "epoch": 21.86411149825784,
+ "grad_norm": 0.06118083372712135,
+ "learning_rate": 0.0003760859958292656,
+ "loss": 2.0818231105804443,
+ "step": 1574
+ },
+ {
+ "epoch": 21.878048780487806,
+ "grad_norm": 0.057427361607551575,
+ "learning_rate": 0.000375827577564042,
+ "loss": 2.0525319576263428,
+ "step": 1575
+ },
+ {
+ "epoch": 21.89198606271777,
+ "grad_norm": 0.06218957528471947,
+ "learning_rate": 0.0003755691006229545,
+ "loss": 2.0691938400268555,
+ "step": 1576
+ },
+ {
+ "epoch": 21.905923344947734,
+ "grad_norm": 0.05727244168519974,
+ "learning_rate": 0.0003753105652142534,
+ "loss": 2.0820717811584473,
+ "step": 1577
+ },
+ {
+ "epoch": 21.9198606271777,
+ "grad_norm": 0.05988473817706108,
+ "learning_rate": 0.000375051971546236,
+ "loss": 2.08701753616333,
+ "step": 1578
+ },
+ {
+ "epoch": 21.933797909407666,
+ "grad_norm": 0.05977068468928337,
+ "learning_rate": 0.0003747933198272465,
+ "loss": 2.0772976875305176,
+ "step": 1579
+ },
+ {
+ "epoch": 21.94773519163763,
+ "grad_norm": 0.05766184255480766,
+ "learning_rate": 0.00037453461026567604,
+ "loss": 2.0779075622558594,
+ "step": 1580
+ },
+ {
+ "epoch": 21.961672473867594,
+ "grad_norm": 0.06194579601287842,
+ "learning_rate": 0.00037427584306996196,
+ "loss": 2.066725254058838,
+ "step": 1581
+ },
+ {
+ "epoch": 21.975609756097562,
+ "grad_norm": 0.06117486208677292,
+ "learning_rate": 0.0003740170184485888,
+ "loss": 2.063469409942627,
+ "step": 1582
+ },
+ {
+ "epoch": 21.989547038327526,
+ "grad_norm": 0.05828284099698067,
+ "learning_rate": 0.0003737581366100864,
+ "loss": 2.0690245628356934,
+ "step": 1583
+ },
+ {
+ "epoch": 22.0,
+ "grad_norm": 0.04717395827174187,
+ "learning_rate": 0.0003734991977630315,
+ "loss": 1.5481253862380981,
+ "step": 1584
+ },
+ {
+ "epoch": 22.0,
+ "eval_loss": 0.6287422180175781,
+ "eval_runtime": 36.8966,
+ "eval_samples_per_second": 66.185,
+ "eval_steps_per_second": 0.542,
+ "step": 1584
+ },
+ {
+ "epoch": 22.013937282229964,
+ "grad_norm": 0.05935833230614662,
+ "learning_rate": 0.0003732402021160463,
+ "loss": 2.0213916301727295,
+ "step": 1585
+ },
+ {
+ "epoch": 22.027874564459932,
+ "grad_norm": 0.0647081509232521,
+ "learning_rate": 0.00037298114987779885,
+ "loss": 2.021193504333496,
+ "step": 1586
+ },
+ {
+ "epoch": 22.041811846689896,
+ "grad_norm": 0.060830891132354736,
+ "learning_rate": 0.000372722041257003,
+ "loss": 2.014934539794922,
+ "step": 1587
+ },
+ {
+ "epoch": 22.05574912891986,
+ "grad_norm": 0.0575600229203701,
+ "learning_rate": 0.00037246287646241783,
+ "loss": 2.0201141834259033,
+ "step": 1588
+ },
+ {
+ "epoch": 22.069686411149824,
+ "grad_norm": 0.05999648571014404,
+ "learning_rate": 0.0003722036557028478,
+ "loss": 2.01477313041687,
+ "step": 1589
+ },
+ {
+ "epoch": 22.083623693379792,
+ "grad_norm": 0.06243257597088814,
+ "learning_rate": 0.0003719443791871422,
+ "loss": 2.0069234371185303,
+ "step": 1590
+ },
+ {
+ "epoch": 22.097560975609756,
+ "grad_norm": 0.061873242259025574,
+ "learning_rate": 0.0003716850471241958,
+ "loss": 2.0218544006347656,
+ "step": 1591
+ },
+ {
+ "epoch": 22.11149825783972,
+ "grad_norm": 0.0562879703938961,
+ "learning_rate": 0.0003714256597229474,
+ "loss": 2.027651786804199,
+ "step": 1592
+ },
+ {
+ "epoch": 22.125435540069688,
+ "grad_norm": 0.06129061430692673,
+ "learning_rate": 0.0003711662171923809,
+ "loss": 2.02847957611084,
+ "step": 1593
+ },
+ {
+ "epoch": 22.139372822299652,
+ "grad_norm": 0.06575217843055725,
+ "learning_rate": 0.0003709067197415244,
+ "loss": 2.0157370567321777,
+ "step": 1594
+ },
+ {
+ "epoch": 22.153310104529616,
+ "grad_norm": 0.06006300821900368,
+ "learning_rate": 0.00037064716757945036,
+ "loss": 2.0212819576263428,
+ "step": 1595
+ },
+ {
+ "epoch": 22.16724738675958,
+ "grad_norm": 0.05905022844672203,
+ "learning_rate": 0.0003703875609152753,
+ "loss": 2.019151449203491,
+ "step": 1596
+ },
+ {
+ "epoch": 22.181184668989548,
+ "grad_norm": 0.05942187085747719,
+ "learning_rate": 0.0003701278999581595,
+ "loss": 2.0100960731506348,
+ "step": 1597
+ },
+ {
+ "epoch": 22.195121951219512,
+ "grad_norm": 0.06255407631397247,
+ "learning_rate": 0.0003698681849173073,
+ "loss": 2.0253348350524902,
+ "step": 1598
+ },
+ {
+ "epoch": 22.209059233449477,
+ "grad_norm": 0.06482044607400894,
+ "learning_rate": 0.0003696084160019662,
+ "loss": 2.0148420333862305,
+ "step": 1599
+ },
+ {
+ "epoch": 22.222996515679444,
+ "grad_norm": 0.0601821169257164,
+ "learning_rate": 0.0003693485934214274,
+ "loss": 2.023470640182495,
+ "step": 1600
+ },
+ {
+ "epoch": 22.23693379790941,
+ "grad_norm": 0.06029169633984566,
+ "learning_rate": 0.0003690887173850253,
+ "loss": 2.009469985961914,
+ "step": 1601
+ },
+ {
+ "epoch": 22.250871080139373,
+ "grad_norm": 0.059910114854574203,
+ "learning_rate": 0.0003688287881021374,
+ "loss": 2.035770893096924,
+ "step": 1602
+ },
+ {
+ "epoch": 22.264808362369337,
+ "grad_norm": 0.06215308979153633,
+ "learning_rate": 0.00036856880578218376,
+ "loss": 2.01731538772583,
+ "step": 1603
+ },
+ {
+ "epoch": 22.278745644599304,
+ "grad_norm": 0.06145225092768669,
+ "learning_rate": 0.00036830877063462786,
+ "loss": 2.026510715484619,
+ "step": 1604
+ },
+ {
+ "epoch": 22.29268292682927,
+ "grad_norm": 0.05880272388458252,
+ "learning_rate": 0.0003680486828689749,
+ "loss": 2.0214052200317383,
+ "step": 1605
+ },
+ {
+ "epoch": 22.306620209059233,
+ "grad_norm": 0.06154364347457886,
+ "learning_rate": 0.00036778854269477315,
+ "loss": 2.038039207458496,
+ "step": 1606
+ },
+ {
+ "epoch": 22.320557491289197,
+ "grad_norm": 0.06352122128009796,
+ "learning_rate": 0.0003675283503216127,
+ "loss": 2.0086398124694824,
+ "step": 1607
+ },
+ {
+ "epoch": 22.334494773519165,
+ "grad_norm": 0.06252473592758179,
+ "learning_rate": 0.000367268105959126,
+ "loss": 2.0344018936157227,
+ "step": 1608
+ },
+ {
+ "epoch": 22.34843205574913,
+ "grad_norm": 0.05990692600607872,
+ "learning_rate": 0.00036700780981698705,
+ "loss": 2.030116558074951,
+ "step": 1609
+ },
+ {
+ "epoch": 22.362369337979093,
+ "grad_norm": 0.06241406500339508,
+ "learning_rate": 0.0003667474621049119,
+ "loss": 2.02555513381958,
+ "step": 1610
+ },
+ {
+ "epoch": 22.37630662020906,
+ "grad_norm": 0.06356526166200638,
+ "learning_rate": 0.00036648706303265795,
+ "loss": 2.034946918487549,
+ "step": 1611
+ },
+ {
+ "epoch": 22.390243902439025,
+ "grad_norm": 0.05866849794983864,
+ "learning_rate": 0.000366226612810024,
+ "loss": 2.0180652141571045,
+ "step": 1612
+ },
+ {
+ "epoch": 22.40418118466899,
+ "grad_norm": 0.06021985039114952,
+ "learning_rate": 0.00036596611164685025,
+ "loss": 2.028763771057129,
+ "step": 1613
+ },
+ {
+ "epoch": 22.418118466898953,
+ "grad_norm": 0.0626717135310173,
+ "learning_rate": 0.0003657055597530175,
+ "loss": 2.021925926208496,
+ "step": 1614
+ },
+ {
+ "epoch": 22.43205574912892,
+ "grad_norm": 0.05952958017587662,
+ "learning_rate": 0.00036544495733844797,
+ "loss": 2.029926300048828,
+ "step": 1615
+ },
+ {
+ "epoch": 22.445993031358885,
+ "grad_norm": 0.06139490753412247,
+ "learning_rate": 0.000365184304613104,
+ "loss": 2.0357437133789062,
+ "step": 1616
+ },
+ {
+ "epoch": 22.45993031358885,
+ "grad_norm": 0.06750302016735077,
+ "learning_rate": 0.0003649236017869892,
+ "loss": 2.033015251159668,
+ "step": 1617
+ },
+ {
+ "epoch": 22.473867595818817,
+ "grad_norm": 0.06402213126420975,
+ "learning_rate": 0.00036466284907014685,
+ "loss": 2.0288286209106445,
+ "step": 1618
+ },
+ {
+ "epoch": 22.48780487804878,
+ "grad_norm": 0.06656284630298615,
+ "learning_rate": 0.0003644020466726608,
+ "loss": 2.035670042037964,
+ "step": 1619
+ },
+ {
+ "epoch": 22.501742160278745,
+ "grad_norm": 0.06058082729578018,
+ "learning_rate": 0.00036414119480465473,
+ "loss": 2.0248050689697266,
+ "step": 1620
+ },
+ {
+ "epoch": 22.51567944250871,
+ "grad_norm": 0.0639055147767067,
+ "learning_rate": 0.0003638802936762925,
+ "loss": 2.0347347259521484,
+ "step": 1621
+ },
+ {
+ "epoch": 22.529616724738677,
+ "grad_norm": 0.06509086489677429,
+ "learning_rate": 0.0003636193434977771,
+ "loss": 2.0287723541259766,
+ "step": 1622
+ },
+ {
+ "epoch": 22.54355400696864,
+ "grad_norm": 0.06115980073809624,
+ "learning_rate": 0.0003633583444793516,
+ "loss": 2.0428926944732666,
+ "step": 1623
+ },
+ {
+ "epoch": 22.557491289198605,
+ "grad_norm": 0.06231401860713959,
+ "learning_rate": 0.00036309729683129814,
+ "loss": 2.0409903526306152,
+ "step": 1624
+ },
+ {
+ "epoch": 22.571428571428573,
+ "grad_norm": 0.06252925843000412,
+ "learning_rate": 0.00036283620076393814,
+ "loss": 2.0263853073120117,
+ "step": 1625
+ },
+ {
+ "epoch": 22.585365853658537,
+ "grad_norm": 0.05840536579489708,
+ "learning_rate": 0.000362575056487632,
+ "loss": 2.0359339714050293,
+ "step": 1626
+ },
+ {
+ "epoch": 22.5993031358885,
+ "grad_norm": 0.06289584934711456,
+ "learning_rate": 0.00036231386421277877,
+ "loss": 2.041419267654419,
+ "step": 1627
+ },
+ {
+ "epoch": 22.613240418118465,
+ "grad_norm": 0.059172775596380234,
+ "learning_rate": 0.0003620526241498167,
+ "loss": 2.0285377502441406,
+ "step": 1628
+ },
+ {
+ "epoch": 22.627177700348433,
+ "grad_norm": 0.05929497256875038,
+ "learning_rate": 0.0003617913365092218,
+ "loss": 2.054593086242676,
+ "step": 1629
+ },
+ {
+ "epoch": 22.641114982578397,
+ "grad_norm": 0.05966512858867645,
+ "learning_rate": 0.0003615300015015091,
+ "loss": 2.0354065895080566,
+ "step": 1630
+ },
+ {
+ "epoch": 22.65505226480836,
+ "grad_norm": 0.060928668826818466,
+ "learning_rate": 0.0003612686193372312,
+ "loss": 2.0524067878723145,
+ "step": 1631
+ },
+ {
+ "epoch": 22.66898954703833,
+ "grad_norm": 0.06704723089933395,
+ "learning_rate": 0.00036100719022697924,
+ "loss": 2.0277299880981445,
+ "step": 1632
+ },
+ {
+ "epoch": 22.682926829268293,
+ "grad_norm": 0.0654405876994133,
+ "learning_rate": 0.0003607457143813819,
+ "loss": 2.0558719635009766,
+ "step": 1633
+ },
+ {
+ "epoch": 22.696864111498257,
+ "grad_norm": 0.06097044795751572,
+ "learning_rate": 0.00036048419201110553,
+ "loss": 2.064798593521118,
+ "step": 1634
+ },
+ {
+ "epoch": 22.71080139372822,
+ "grad_norm": 0.06433983147144318,
+ "learning_rate": 0.00036022262332685383,
+ "loss": 2.0563478469848633,
+ "step": 1635
+ },
+ {
+ "epoch": 22.72473867595819,
+ "grad_norm": 0.0608518086373806,
+ "learning_rate": 0.0003599610085393681,
+ "loss": 2.034682273864746,
+ "step": 1636
+ },
+ {
+ "epoch": 22.738675958188153,
+ "grad_norm": 0.06357148289680481,
+ "learning_rate": 0.0003596993478594267,
+ "loss": 2.030651569366455,
+ "step": 1637
+ },
+ {
+ "epoch": 22.752613240418118,
+ "grad_norm": 0.05953045189380646,
+ "learning_rate": 0.0003594376414978447,
+ "loss": 2.046708345413208,
+ "step": 1638
+ },
+ {
+ "epoch": 22.766550522648085,
+ "grad_norm": 0.06323279440402985,
+ "learning_rate": 0.0003591758896654745,
+ "loss": 2.040714740753174,
+ "step": 1639
+ },
+ {
+ "epoch": 22.78048780487805,
+ "grad_norm": 0.05863328278064728,
+ "learning_rate": 0.0003589140925732045,
+ "loss": 2.0645852088928223,
+ "step": 1640
+ },
+ {
+ "epoch": 22.794425087108014,
+ "grad_norm": 0.058750979602336884,
+ "learning_rate": 0.0003586522504319602,
+ "loss": 2.0421950817108154,
+ "step": 1641
+ },
+ {
+ "epoch": 22.808362369337978,
+ "grad_norm": 0.06100532412528992,
+ "learning_rate": 0.0003583903634527029,
+ "loss": 2.037891387939453,
+ "step": 1642
+ },
+ {
+ "epoch": 22.822299651567945,
+ "grad_norm": 0.058944981545209885,
+ "learning_rate": 0.0003581284318464302,
+ "loss": 2.029283046722412,
+ "step": 1643
+ },
+ {
+ "epoch": 22.83623693379791,
+ "grad_norm": 0.060633257031440735,
+ "learning_rate": 0.00035786645582417564,
+ "loss": 2.058162212371826,
+ "step": 1644
+ },
+ {
+ "epoch": 22.850174216027874,
+ "grad_norm": 0.059548065066337585,
+ "learning_rate": 0.00035760443559700863,
+ "loss": 2.0538077354431152,
+ "step": 1645
+ },
+ {
+ "epoch": 22.86411149825784,
+ "grad_norm": 0.06102653965353966,
+ "learning_rate": 0.00035734237137603417,
+ "loss": 2.052565097808838,
+ "step": 1646
+ },
+ {
+ "epoch": 22.878048780487806,
+ "grad_norm": 0.05913171172142029,
+ "learning_rate": 0.0003570802633723927,
+ "loss": 2.0596346855163574,
+ "step": 1647
+ },
+ {
+ "epoch": 22.89198606271777,
+ "grad_norm": 0.061698317527770996,
+ "learning_rate": 0.0003568181117972597,
+ "loss": 2.0622029304504395,
+ "step": 1648
+ },
+ {
+ "epoch": 22.905923344947734,
+ "grad_norm": 0.059588681906461716,
+ "learning_rate": 0.00035655591686184626,
+ "loss": 2.04315447807312,
+ "step": 1649
+ },
+ {
+ "epoch": 22.9198606271777,
+ "grad_norm": 0.06275669485330582,
+ "learning_rate": 0.0003562936787773979,
+ "loss": 2.0449585914611816,
+ "step": 1650
+ },
+ {
+ "epoch": 22.933797909407666,
+ "grad_norm": 0.06165294349193573,
+ "learning_rate": 0.000356031397755195,
+ "loss": 2.0373802185058594,
+ "step": 1651
+ },
+ {
+ "epoch": 22.94773519163763,
+ "grad_norm": 0.0604374073445797,
+ "learning_rate": 0.00035576907400655303,
+ "loss": 2.061960220336914,
+ "step": 1652
+ },
+ {
+ "epoch": 22.961672473867594,
+ "grad_norm": 0.05968572944402695,
+ "learning_rate": 0.00035550670774282106,
+ "loss": 2.051542282104492,
+ "step": 1653
+ },
+ {
+ "epoch": 22.975609756097562,
+ "grad_norm": 0.06063802167773247,
+ "learning_rate": 0.0003552442991753831,
+ "loss": 2.045436143875122,
+ "step": 1654
+ },
+ {
+ "epoch": 22.989547038327526,
+ "grad_norm": 0.060019318014383316,
+ "learning_rate": 0.00035498184851565697,
+ "loss": 2.0558581352233887,
+ "step": 1655
+ },
+ {
+ "epoch": 23.0,
+ "grad_norm": 0.049940288066864014,
+ "learning_rate": 0.0003547193559750944,
+ "loss": 1.5244159698486328,
+ "step": 1656
+ },
+ {
+ "epoch": 23.0,
+ "eval_loss": 0.6296067833900452,
+ "eval_runtime": 35.7678,
+ "eval_samples_per_second": 68.274,
+ "eval_steps_per_second": 0.559,
+ "step": 1656
+ },
+ {
+ "epoch": 23.013937282229964,
+ "grad_norm": 0.058643098920583725,
+ "learning_rate": 0.00035445682176518087,
+ "loss": 1.996954321861267,
+ "step": 1657
+ },
+ {
+ "epoch": 23.027874564459932,
+ "grad_norm": 0.07890982180833817,
+ "learning_rate": 0.00035419424609743546,
+ "loss": 2.003385543823242,
+ "step": 1658
+ },
+ {
+ "epoch": 23.041811846689896,
+ "grad_norm": 0.06572650372982025,
+ "learning_rate": 0.00035393162918341065,
+ "loss": 1.9858441352844238,
+ "step": 1659
+ },
+ {
+ "epoch": 23.05574912891986,
+ "grad_norm": 0.06063111498951912,
+ "learning_rate": 0.00035366897123469213,
+ "loss": 1.9996259212493896,
+ "step": 1660
+ },
+ {
+ "epoch": 23.069686411149824,
+ "grad_norm": 0.06614259630441666,
+ "learning_rate": 0.0003534062724628986,
+ "loss": 2.013913869857788,
+ "step": 1661
+ },
+ {
+ "epoch": 23.083623693379792,
+ "grad_norm": 0.06714142113924026,
+ "learning_rate": 0.00035314353307968195,
+ "loss": 1.9934425354003906,
+ "step": 1662
+ },
+ {
+ "epoch": 23.097560975609756,
+ "grad_norm": 0.06256651133298874,
+ "learning_rate": 0.00035288075329672634,
+ "loss": 2.0107738971710205,
+ "step": 1663
+ },
+ {
+ "epoch": 23.11149825783972,
+ "grad_norm": 0.06392858177423477,
+ "learning_rate": 0.0003526179333257487,
+ "loss": 1.9977614879608154,
+ "step": 1664
+ },
+ {
+ "epoch": 23.125435540069688,
+ "grad_norm": 0.06550068408250809,
+ "learning_rate": 0.0003523550733784984,
+ "loss": 1.9837822914123535,
+ "step": 1665
+ },
+ {
+ "epoch": 23.139372822299652,
+ "grad_norm": 0.06895361095666885,
+ "learning_rate": 0.00035209217366675706,
+ "loss": 1.9999781847000122,
+ "step": 1666
+ },
+ {
+ "epoch": 23.153310104529616,
+ "grad_norm": 0.06363921612501144,
+ "learning_rate": 0.000351829234402338,
+ "loss": 1.985809087753296,
+ "step": 1667
+ },
+ {
+ "epoch": 23.16724738675958,
+ "grad_norm": 0.06028164550662041,
+ "learning_rate": 0.0003515662557970867,
+ "loss": 2.0019848346710205,
+ "step": 1668
+ },
+ {
+ "epoch": 23.181184668989548,
+ "grad_norm": 0.06500236690044403,
+ "learning_rate": 0.0003513032380628804,
+ "loss": 2.0089876651763916,
+ "step": 1669
+ },
+ {
+ "epoch": 23.195121951219512,
+ "grad_norm": 0.05989453196525574,
+ "learning_rate": 0.0003510401814116277,
+ "loss": 1.9814873933792114,
+ "step": 1670
+ },
+ {
+ "epoch": 23.209059233449477,
+ "grad_norm": 0.060608964413404465,
+ "learning_rate": 0.0003507770860552684,
+ "loss": 2.009627103805542,
+ "step": 1671
+ },
+ {
+ "epoch": 23.222996515679444,
+ "grad_norm": 0.06088849529623985,
+ "learning_rate": 0.00035051395220577397,
+ "loss": 1.9926284551620483,
+ "step": 1672
+ },
+ {
+ "epoch": 23.23693379790941,
+ "grad_norm": 0.06073446571826935,
+ "learning_rate": 0.0003502507800751464,
+ "loss": 2.0231637954711914,
+ "step": 1673
+ },
+ {
+ "epoch": 23.250871080139373,
+ "grad_norm": 0.06006423011422157,
+ "learning_rate": 0.0003499875698754187,
+ "loss": 1.9915974140167236,
+ "step": 1674
+ },
+ {
+ "epoch": 23.264808362369337,
+ "grad_norm": 0.059542685747146606,
+ "learning_rate": 0.00034972432181865467,
+ "loss": 1.9983782768249512,
+ "step": 1675
+ },
+ {
+ "epoch": 23.278745644599304,
+ "grad_norm": 0.06081021949648857,
+ "learning_rate": 0.00034946103611694854,
+ "loss": 1.9988645315170288,
+ "step": 1676
+ },
+ {
+ "epoch": 23.29268292682927,
+ "grad_norm": 0.05827084556221962,
+ "learning_rate": 0.00034919771298242477,
+ "loss": 2.002373456954956,
+ "step": 1677
+ },
+ {
+ "epoch": 23.306620209059233,
+ "grad_norm": 0.059867121279239655,
+ "learning_rate": 0.00034893435262723814,
+ "loss": 2.0014448165893555,
+ "step": 1678
+ },
+ {
+ "epoch": 23.320557491289197,
+ "grad_norm": 0.059579163789749146,
+ "learning_rate": 0.00034867095526357325,
+ "loss": 2.018733501434326,
+ "step": 1679
+ },
+ {
+ "epoch": 23.334494773519165,
+ "grad_norm": 0.06353137642145157,
+ "learning_rate": 0.0003484075211036446,
+ "loss": 2.003769874572754,
+ "step": 1680
+ },
+ {
+ "epoch": 23.34843205574913,
+ "grad_norm": 0.06118098273873329,
+ "learning_rate": 0.0003481440503596964,
+ "loss": 2.009033203125,
+ "step": 1681
+ },
+ {
+ "epoch": 23.362369337979093,
+ "grad_norm": 0.060457196086645126,
+ "learning_rate": 0.0003478805432440021,
+ "loss": 2.005089282989502,
+ "step": 1682
+ },
+ {
+ "epoch": 23.37630662020906,
+ "grad_norm": 0.06178257614374161,
+ "learning_rate": 0.0003476169999688648,
+ "loss": 1.9994860887527466,
+ "step": 1683
+ },
+ {
+ "epoch": 23.390243902439025,
+ "grad_norm": 0.06617811322212219,
+ "learning_rate": 0.00034735342074661654,
+ "loss": 2.0085301399230957,
+ "step": 1684
+ },
+ {
+ "epoch": 23.40418118466899,
+ "grad_norm": 0.061164431273937225,
+ "learning_rate": 0.0003470898057896183,
+ "loss": 2.0015316009521484,
+ "step": 1685
+ },
+ {
+ "epoch": 23.418118466898953,
+ "grad_norm": 0.06309735029935837,
+ "learning_rate": 0.0003468261553102599,
+ "loss": 2.020759344100952,
+ "step": 1686
+ },
+ {
+ "epoch": 23.43205574912892,
+ "grad_norm": 0.0626831203699112,
+ "learning_rate": 0.00034656246952095984,
+ "loss": 2.009215831756592,
+ "step": 1687
+ },
+ {
+ "epoch": 23.445993031358885,
+ "grad_norm": 0.05888507142663002,
+ "learning_rate": 0.0003462987486341648,
+ "loss": 2.013838529586792,
+ "step": 1688
+ },
+ {
+ "epoch": 23.45993031358885,
+ "grad_norm": 0.0606909804046154,
+ "learning_rate": 0.00034603499286235006,
+ "loss": 2.005582571029663,
+ "step": 1689
+ },
+ {
+ "epoch": 23.473867595818817,
+ "grad_norm": 0.058872029185295105,
+ "learning_rate": 0.0003457712024180188,
+ "loss": 2.0199661254882812,
+ "step": 1690
+ },
+ {
+ "epoch": 23.48780487804878,
+ "grad_norm": 0.06124086305499077,
+ "learning_rate": 0.0003455073775137025,
+ "loss": 2.0159080028533936,
+ "step": 1691
+ },
+ {
+ "epoch": 23.501742160278745,
+ "grad_norm": 0.059814538806676865,
+ "learning_rate": 0.0003452435183619598,
+ "loss": 2.011732578277588,
+ "step": 1692
+ },
+ {
+ "epoch": 23.51567944250871,
+ "grad_norm": 0.060436636209487915,
+ "learning_rate": 0.0003449796251753773,
+ "loss": 2.018317699432373,
+ "step": 1693
+ },
+ {
+ "epoch": 23.529616724738677,
+ "grad_norm": 0.06265381723642349,
+ "learning_rate": 0.00034471569816656915,
+ "loss": 2.010077714920044,
+ "step": 1694
+ },
+ {
+ "epoch": 23.54355400696864,
+ "grad_norm": 0.06320856511592865,
+ "learning_rate": 0.00034445173754817646,
+ "loss": 2.0341739654541016,
+ "step": 1695
+ },
+ {
+ "epoch": 23.557491289198605,
+ "grad_norm": 0.061819177120923996,
+ "learning_rate": 0.00034418774353286747,
+ "loss": 2.032660961151123,
+ "step": 1696
+ },
+ {
+ "epoch": 23.571428571428573,
+ "grad_norm": 0.06506329029798508,
+ "learning_rate": 0.0003439237163333375,
+ "loss": 2.0272016525268555,
+ "step": 1697
+ },
+ {
+ "epoch": 23.585365853658537,
+ "grad_norm": 0.06600788235664368,
+ "learning_rate": 0.0003436596561623084,
+ "loss": 2.0060458183288574,
+ "step": 1698
+ },
+ {
+ "epoch": 23.5993031358885,
+ "grad_norm": 0.06110696122050285,
+ "learning_rate": 0.0003433955632325288,
+ "loss": 2.0102944374084473,
+ "step": 1699
+ },
+ {
+ "epoch": 23.613240418118465,
+ "grad_norm": 0.066371850669384,
+ "learning_rate": 0.00034313143775677353,
+ "loss": 2.0352327823638916,
+ "step": 1700
+ },
+ {
+ "epoch": 23.627177700348433,
+ "grad_norm": 0.06527800112962723,
+ "learning_rate": 0.00034286727994784367,
+ "loss": 2.0035440921783447,
+ "step": 1701
+ },
+ {
+ "epoch": 23.641114982578397,
+ "grad_norm": 0.06285402178764343,
+ "learning_rate": 0.0003426030900185665,
+ "loss": 2.033757448196411,
+ "step": 1702
+ },
+ {
+ "epoch": 23.65505226480836,
+ "grad_norm": 0.061433784663677216,
+ "learning_rate": 0.0003423388681817949,
+ "loss": 2.0161848068237305,
+ "step": 1703
+ },
+ {
+ "epoch": 23.66898954703833,
+ "grad_norm": 0.05987842008471489,
+ "learning_rate": 0.00034207461465040793,
+ "loss": 2.0261831283569336,
+ "step": 1704
+ },
+ {
+ "epoch": 23.682926829268293,
+ "grad_norm": 0.059953805059194565,
+ "learning_rate": 0.0003418103296373096,
+ "loss": 2.0215904712677,
+ "step": 1705
+ },
+ {
+ "epoch": 23.696864111498257,
+ "grad_norm": 0.06330372393131256,
+ "learning_rate": 0.00034154601335542964,
+ "loss": 2.025210380554199,
+ "step": 1706
+ },
+ {
+ "epoch": 23.71080139372822,
+ "grad_norm": 0.059463981539011,
+ "learning_rate": 0.00034128166601772304,
+ "loss": 2.02297306060791,
+ "step": 1707
+ },
+ {
+ "epoch": 23.72473867595819,
+ "grad_norm": 0.05973811820149422,
+ "learning_rate": 0.0003410172878371695,
+ "loss": 2.011875629425049,
+ "step": 1708
+ },
+ {
+ "epoch": 23.738675958188153,
+ "grad_norm": 0.0624937042593956,
+ "learning_rate": 0.00034075287902677394,
+ "loss": 2.0156028270721436,
+ "step": 1709
+ },
+ {
+ "epoch": 23.752613240418118,
+ "grad_norm": 0.062002237886190414,
+ "learning_rate": 0.0003404884397995655,
+ "loss": 2.0000498294830322,
+ "step": 1710
+ },
+ {
+ "epoch": 23.766550522648085,
+ "grad_norm": 0.060854360461235046,
+ "learning_rate": 0.00034022397036859837,
+ "loss": 2.0322160720825195,
+ "step": 1711
+ },
+ {
+ "epoch": 23.78048780487805,
+ "grad_norm": 0.06054264307022095,
+ "learning_rate": 0.0003399594709469506,
+ "loss": 2.032982349395752,
+ "step": 1712
+ },
+ {
+ "epoch": 23.794425087108014,
+ "grad_norm": 0.0627431645989418,
+ "learning_rate": 0.00033969494174772465,
+ "loss": 2.020582675933838,
+ "step": 1713
+ },
+ {
+ "epoch": 23.808362369337978,
+ "grad_norm": 0.06483827531337738,
+ "learning_rate": 0.0003394303829840469,
+ "loss": 2.0398523807525635,
+ "step": 1714
+ },
+ {
+ "epoch": 23.822299651567945,
+ "grad_norm": 0.05984083190560341,
+ "learning_rate": 0.00033916579486906764,
+ "loss": 2.039645195007324,
+ "step": 1715
+ },
+ {
+ "epoch": 23.83623693379791,
+ "grad_norm": 0.06621941179037094,
+ "learning_rate": 0.0003389011776159607,
+ "loss": 2.021867275238037,
+ "step": 1716
+ },
+ {
+ "epoch": 23.850174216027874,
+ "grad_norm": 0.0623198039829731,
+ "learning_rate": 0.0003386365314379233,
+ "loss": 2.0347697734832764,
+ "step": 1717
+ },
+ {
+ "epoch": 23.86411149825784,
+ "grad_norm": 0.06399847567081451,
+ "learning_rate": 0.0003383718565481763,
+ "loss": 2.030777931213379,
+ "step": 1718
+ },
+ {
+ "epoch": 23.878048780487806,
+ "grad_norm": 0.06241384893655777,
+ "learning_rate": 0.0003381071531599633,
+ "loss": 2.011267900466919,
+ "step": 1719
+ },
+ {
+ "epoch": 23.89198606271777,
+ "grad_norm": 0.05945252999663353,
+ "learning_rate": 0.00033784242148655115,
+ "loss": 2.0384621620178223,
+ "step": 1720
+ },
+ {
+ "epoch": 23.905923344947734,
+ "grad_norm": 0.0614384189248085,
+ "learning_rate": 0.00033757766174122934,
+ "loss": 2.030486583709717,
+ "step": 1721
+ },
+ {
+ "epoch": 23.9198606271777,
+ "grad_norm": 0.06007350608706474,
+ "learning_rate": 0.00033731287413731005,
+ "loss": 2.022603988647461,
+ "step": 1722
+ },
+ {
+ "epoch": 23.933797909407666,
+ "grad_norm": 0.059712085872888565,
+ "learning_rate": 0.0003370480588881278,
+ "loss": 2.0331850051879883,
+ "step": 1723
+ },
+ {
+ "epoch": 23.94773519163763,
+ "grad_norm": 0.0601886548101902,
+ "learning_rate": 0.0003367832162070395,
+ "loss": 2.0483477115631104,
+ "step": 1724
+ },
+ {
+ "epoch": 23.961672473867594,
+ "grad_norm": 0.06256099790334702,
+ "learning_rate": 0.000336518346307424,
+ "loss": 2.033539056777954,
+ "step": 1725
+ },
+ {
+ "epoch": 23.975609756097562,
+ "grad_norm": 0.057741131633520126,
+ "learning_rate": 0.0003362534494026824,
+ "loss": 2.024747133255005,
+ "step": 1726
+ },
+ {
+ "epoch": 23.989547038327526,
+ "grad_norm": 0.060783255845308304,
+ "learning_rate": 0.0003359885257062372,
+ "loss": 2.0209577083587646,
+ "step": 1727
+ },
+ {
+ "epoch": 24.0,
+ "grad_norm": 0.04932123422622681,
+ "learning_rate": 0.0003357235754315328,
+ "loss": 1.515411376953125,
+ "step": 1728
+ },
+ {
+ "epoch": 24.0,
+ "eval_loss": 0.6315755248069763,
+ "eval_runtime": 36.5997,
+ "eval_samples_per_second": 66.722,
+ "eval_steps_per_second": 0.546,
+ "step": 1728
+ },
+ {
+ "epoch": 24.013937282229964,
+ "grad_norm": 0.056868553161621094,
+ "learning_rate": 0.0003354585987920345,
+ "loss": 1.9798481464385986,
+ "step": 1729
+ },
+ {
+ "epoch": 24.027874564459932,
+ "grad_norm": 0.06501385569572449,
+ "learning_rate": 0.0003351935960012296,
+ "loss": 1.9906654357910156,
+ "step": 1730
+ },
+ {
+ "epoch": 24.041811846689896,
+ "grad_norm": 0.05838958919048309,
+ "learning_rate": 0.0003349285672726259,
+ "loss": 1.9860174655914307,
+ "step": 1731
+ },
+ {
+ "epoch": 24.05574912891986,
+ "grad_norm": 0.058145660907030106,
+ "learning_rate": 0.0003346635128197522,
+ "loss": 1.9651578664779663,
+ "step": 1732
+ },
+ {
+ "epoch": 24.069686411149824,
+ "grad_norm": 0.060848575085401535,
+ "learning_rate": 0.0003343984328561581,
+ "loss": 1.9864778518676758,
+ "step": 1733
+ },
+ {
+ "epoch": 24.083623693379792,
+ "grad_norm": 0.06372028589248657,
+ "learning_rate": 0.00033413332759541376,
+ "loss": 1.9852806329727173,
+ "step": 1734
+ },
+ {
+ "epoch": 24.097560975609756,
+ "grad_norm": 0.061025235801935196,
+ "learning_rate": 0.0003338681972511098,
+ "loss": 1.9978421926498413,
+ "step": 1735
+ },
+ {
+ "epoch": 24.11149825783972,
+ "grad_norm": 0.060201771557331085,
+ "learning_rate": 0.0003336030420368568,
+ "loss": 1.9757139682769775,
+ "step": 1736
+ },
+ {
+ "epoch": 24.125435540069688,
+ "grad_norm": 0.05975824594497681,
+ "learning_rate": 0.0003333378621662857,
+ "loss": 1.9860875606536865,
+ "step": 1737
+ },
+ {
+ "epoch": 24.139372822299652,
+ "grad_norm": 0.06081843376159668,
+ "learning_rate": 0.00033307265785304684,
+ "loss": 1.968639850616455,
+ "step": 1738
+ },
+ {
+ "epoch": 24.153310104529616,
+ "grad_norm": 0.060572270303964615,
+ "learning_rate": 0.00033280742931081076,
+ "loss": 1.9802055358886719,
+ "step": 1739
+ },
+ {
+ "epoch": 24.16724738675958,
+ "grad_norm": 0.05910629406571388,
+ "learning_rate": 0.00033254217675326737,
+ "loss": 1.9850757122039795,
+ "step": 1740
+ },
+ {
+ "epoch": 24.181184668989548,
+ "grad_norm": 0.05974426120519638,
+ "learning_rate": 0.0003322769003941257,
+ "loss": 1.976986289024353,
+ "step": 1741
+ },
+ {
+ "epoch": 24.195121951219512,
+ "grad_norm": 0.06145593523979187,
+ "learning_rate": 0.00033201160044711423,
+ "loss": 2.000087261199951,
+ "step": 1742
+ },
+ {
+ "epoch": 24.209059233449477,
+ "grad_norm": 0.06071079522371292,
+ "learning_rate": 0.0003317462771259802,
+ "loss": 2.0015039443969727,
+ "step": 1743
+ },
+ {
+ "epoch": 24.222996515679444,
+ "grad_norm": 0.06183251366019249,
+ "learning_rate": 0.00033148093064449006,
+ "loss": 1.9810009002685547,
+ "step": 1744
+ },
+ {
+ "epoch": 24.23693379790941,
+ "grad_norm": 0.05952904373407364,
+ "learning_rate": 0.0003312155612164284,
+ "loss": 1.9755181074142456,
+ "step": 1745
+ },
+ {
+ "epoch": 24.250871080139373,
+ "grad_norm": 0.06136337295174599,
+ "learning_rate": 0.00033095016905559883,
+ "loss": 1.9860830307006836,
+ "step": 1746
+ },
+ {
+ "epoch": 24.264808362369337,
+ "grad_norm": 0.05884359031915665,
+ "learning_rate": 0.0003306847543758227,
+ "loss": 1.9831082820892334,
+ "step": 1747
+ },
+ {
+ "epoch": 24.278745644599304,
+ "grad_norm": 0.06433911621570587,
+ "learning_rate": 0.0003304193173909401,
+ "loss": 1.9774551391601562,
+ "step": 1748
+ },
+ {
+ "epoch": 24.29268292682927,
+ "grad_norm": 0.06369569152593613,
+ "learning_rate": 0.00033015385831480873,
+ "loss": 1.969364881515503,
+ "step": 1749
+ },
+ {
+ "epoch": 24.306620209059233,
+ "grad_norm": 0.061907488852739334,
+ "learning_rate": 0.0003298883773613043,
+ "loss": 1.9955558776855469,
+ "step": 1750
+ },
+ {
+ "epoch": 24.320557491289197,
+ "grad_norm": 0.061493128538131714,
+ "learning_rate": 0.0003296228747443197,
+ "loss": 1.983457326889038,
+ "step": 1751
+ },
+ {
+ "epoch": 24.334494773519165,
+ "grad_norm": 0.064146488904953,
+ "learning_rate": 0.0003293573506777659,
+ "loss": 1.987483263015747,
+ "step": 1752
+ },
+ {
+ "epoch": 24.34843205574913,
+ "grad_norm": 0.06266602128744125,
+ "learning_rate": 0.00032909180537557076,
+ "loss": 1.9783263206481934,
+ "step": 1753
+ },
+ {
+ "epoch": 24.362369337979093,
+ "grad_norm": 0.06142675131559372,
+ "learning_rate": 0.00032882623905167917,
+ "loss": 1.984071135520935,
+ "step": 1754
+ },
+ {
+ "epoch": 24.37630662020906,
+ "grad_norm": 0.06145746260881424,
+ "learning_rate": 0.00032856065192005335,
+ "loss": 1.9964550733566284,
+ "step": 1755
+ },
+ {
+ "epoch": 24.390243902439025,
+ "grad_norm": 0.058990370482206345,
+ "learning_rate": 0.00032829504419467194,
+ "loss": 1.9879612922668457,
+ "step": 1756
+ },
+ {
+ "epoch": 24.40418118466899,
+ "grad_norm": 0.06122121214866638,
+ "learning_rate": 0.0003280294160895303,
+ "loss": 1.9812474250793457,
+ "step": 1757
+ },
+ {
+ "epoch": 24.418118466898953,
+ "grad_norm": 0.059800442308187485,
+ "learning_rate": 0.0003277637678186402,
+ "loss": 1.970646619796753,
+ "step": 1758
+ },
+ {
+ "epoch": 24.43205574912892,
+ "grad_norm": 0.0604378841817379,
+ "learning_rate": 0.00032749809959602973,
+ "loss": 2.003701686859131,
+ "step": 1759
+ },
+ {
+ "epoch": 24.445993031358885,
+ "grad_norm": 0.05989979952573776,
+ "learning_rate": 0.0003272324116357428,
+ "loss": 1.9803345203399658,
+ "step": 1760
+ },
+ {
+ "epoch": 24.45993031358885,
+ "grad_norm": 0.06310706585645676,
+ "learning_rate": 0.0003269667041518395,
+ "loss": 1.989131212234497,
+ "step": 1761
+ },
+ {
+ "epoch": 24.473867595818817,
+ "grad_norm": 0.06142299249768257,
+ "learning_rate": 0.0003267009773583956,
+ "loss": 1.9946138858795166,
+ "step": 1762
+ },
+ {
+ "epoch": 24.48780487804878,
+ "grad_norm": 0.062469176948070526,
+ "learning_rate": 0.00032643523146950234,
+ "loss": 2.001830577850342,
+ "step": 1763
+ },
+ {
+ "epoch": 24.501742160278745,
+ "grad_norm": 0.06173425912857056,
+ "learning_rate": 0.0003261694666992664,
+ "loss": 2.002091646194458,
+ "step": 1764
+ },
+ {
+ "epoch": 24.51567944250871,
+ "grad_norm": 0.06293168663978577,
+ "learning_rate": 0.0003259036832618096,
+ "loss": 1.9954603910446167,
+ "step": 1765
+ },
+ {
+ "epoch": 24.529616724738677,
+ "grad_norm": 0.060014087706804276,
+ "learning_rate": 0.0003256378813712688,
+ "loss": 1.9944541454315186,
+ "step": 1766
+ },
+ {
+ "epoch": 24.54355400696864,
+ "grad_norm": 0.06237431988120079,
+ "learning_rate": 0.000325372061241796,
+ "loss": 2.0007567405700684,
+ "step": 1767
+ },
+ {
+ "epoch": 24.557491289198605,
+ "grad_norm": 0.06152753531932831,
+ "learning_rate": 0.00032510622308755746,
+ "loss": 2.0018327236175537,
+ "step": 1768
+ },
+ {
+ "epoch": 24.571428571428573,
+ "grad_norm": 0.05944858118891716,
+ "learning_rate": 0.00032484036712273424,
+ "loss": 1.992608666419983,
+ "step": 1769
+ },
+ {
+ "epoch": 24.585365853658537,
+ "grad_norm": 0.062232885509729385,
+ "learning_rate": 0.0003245744935615219,
+ "loss": 2.000495433807373,
+ "step": 1770
+ },
+ {
+ "epoch": 24.5993031358885,
+ "grad_norm": 0.06566010415554047,
+ "learning_rate": 0.0003243086026181296,
+ "loss": 1.9956483840942383,
+ "step": 1771
+ },
+ {
+ "epoch": 24.613240418118465,
+ "grad_norm": 0.06141132116317749,
+ "learning_rate": 0.00032404269450678116,
+ "loss": 1.9919085502624512,
+ "step": 1772
+ },
+ {
+ "epoch": 24.627177700348433,
+ "grad_norm": 0.06355211138725281,
+ "learning_rate": 0.00032377676944171375,
+ "loss": 2.0013604164123535,
+ "step": 1773
+ },
+ {
+ "epoch": 24.641114982578397,
+ "grad_norm": 0.0633525624871254,
+ "learning_rate": 0.00032351082763717857,
+ "loss": 2.003030300140381,
+ "step": 1774
+ },
+ {
+ "epoch": 24.65505226480836,
+ "grad_norm": 0.06334961205720901,
+ "learning_rate": 0.0003232448693074399,
+ "loss": 2.0035159587860107,
+ "step": 1775
+ },
+ {
+ "epoch": 24.66898954703833,
+ "grad_norm": 0.059516388922929764,
+ "learning_rate": 0.00032297889466677575,
+ "loss": 1.9953091144561768,
+ "step": 1776
+ },
+ {
+ "epoch": 24.682926829268293,
+ "grad_norm": 0.061832234263420105,
+ "learning_rate": 0.000322712903929477,
+ "loss": 2.0096263885498047,
+ "step": 1777
+ },
+ {
+ "epoch": 24.696864111498257,
+ "grad_norm": 0.06823352724313736,
+ "learning_rate": 0.0003224468973098477,
+ "loss": 2.0014004707336426,
+ "step": 1778
+ },
+ {
+ "epoch": 24.71080139372822,
+ "grad_norm": 0.06829699873924255,
+ "learning_rate": 0.0003221808750222044,
+ "loss": 1.990633249282837,
+ "step": 1779
+ },
+ {
+ "epoch": 24.72473867595819,
+ "grad_norm": 0.060128696262836456,
+ "learning_rate": 0.0003219148372808766,
+ "loss": 1.9862974882125854,
+ "step": 1780
+ },
+ {
+ "epoch": 24.738675958188153,
+ "grad_norm": 0.06241869926452637,
+ "learning_rate": 0.00032164878430020606,
+ "loss": 2.0125184059143066,
+ "step": 1781
+ },
+ {
+ "epoch": 24.752613240418118,
+ "grad_norm": 0.06538056582212448,
+ "learning_rate": 0.00032138271629454684,
+ "loss": 2.0079469680786133,
+ "step": 1782
+ },
+ {
+ "epoch": 24.766550522648085,
+ "grad_norm": 0.06478657573461533,
+ "learning_rate": 0.00032111663347826505,
+ "loss": 2.0092570781707764,
+ "step": 1783
+ },
+ {
+ "epoch": 24.78048780487805,
+ "grad_norm": 0.06446428596973419,
+ "learning_rate": 0.00032085053606573896,
+ "loss": 1.9926164150238037,
+ "step": 1784
+ },
+ {
+ "epoch": 24.794425087108014,
+ "grad_norm": 0.06340030580759048,
+ "learning_rate": 0.0003205844242713584,
+ "loss": 2.0052552223205566,
+ "step": 1785
+ },
+ {
+ "epoch": 24.808362369337978,
+ "grad_norm": 0.06671392917633057,
+ "learning_rate": 0.0003203182983095248,
+ "loss": 2.005016326904297,
+ "step": 1786
+ },
+ {
+ "epoch": 24.822299651567945,
+ "grad_norm": 0.06256412714719772,
+ "learning_rate": 0.0003200521583946511,
+ "loss": 1.998322606086731,
+ "step": 1787
+ },
+ {
+ "epoch": 24.83623693379791,
+ "grad_norm": 0.06253744661808014,
+ "learning_rate": 0.0003197860047411613,
+ "loss": 2.004774332046509,
+ "step": 1788
+ },
+ {
+ "epoch": 24.850174216027874,
+ "grad_norm": 0.06475425511598587,
+ "learning_rate": 0.00031951983756349066,
+ "loss": 2.010788917541504,
+ "step": 1789
+ },
+ {
+ "epoch": 24.86411149825784,
+ "grad_norm": 0.06285806000232697,
+ "learning_rate": 0.00031925365707608536,
+ "loss": 2.0189685821533203,
+ "step": 1790
+ },
+ {
+ "epoch": 24.878048780487806,
+ "grad_norm": 0.06435883790254593,
+ "learning_rate": 0.00031898746349340204,
+ "loss": 2.0078349113464355,
+ "step": 1791
+ },
+ {
+ "epoch": 24.89198606271777,
+ "grad_norm": 0.062008004635572433,
+ "learning_rate": 0.0003187212570299082,
+ "loss": 2.005176544189453,
+ "step": 1792
+ },
+ {
+ "epoch": 24.905923344947734,
+ "grad_norm": 0.061844680458307266,
+ "learning_rate": 0.0003184550379000815,
+ "loss": 2.0120368003845215,
+ "step": 1793
+ },
+ {
+ "epoch": 24.9198606271777,
+ "grad_norm": 0.06165637448430061,
+ "learning_rate": 0.00031818880631841005,
+ "loss": 1.988783359527588,
+ "step": 1794
+ },
+ {
+ "epoch": 24.933797909407666,
+ "grad_norm": 0.061599504202604294,
+ "learning_rate": 0.0003179225624993915,
+ "loss": 2.002344846725464,
+ "step": 1795
+ },
+ {
+ "epoch": 24.94773519163763,
+ "grad_norm": 0.06298971176147461,
+ "learning_rate": 0.0003176563066575341,
+ "loss": 2.0156569480895996,
+ "step": 1796
+ },
+ {
+ "epoch": 24.961672473867594,
+ "grad_norm": 0.060080062597990036,
+ "learning_rate": 0.0003173900390073549,
+ "loss": 2.010012149810791,
+ "step": 1797
+ },
+ {
+ "epoch": 24.975609756097562,
+ "grad_norm": 0.06395968794822693,
+ "learning_rate": 0.0003171237597633813,
+ "loss": 2.0122275352478027,
+ "step": 1798
+ },
+ {
+ "epoch": 24.989547038327526,
+ "grad_norm": 0.062498848885297775,
+ "learning_rate": 0.0003168574691401496,
+ "loss": 2.0220727920532227,
+ "step": 1799
+ },
+ {
+ "epoch": 25.0,
+ "grad_norm": 0.04997362941503525,
+ "learning_rate": 0.0003165911673522053,
+ "loss": 1.5085651874542236,
+ "step": 1800
+ },
+ {
+ "epoch": 25.0,
+ "eval_loss": 0.6326767206192017,
+ "eval_runtime": 35.1333,
+ "eval_samples_per_second": 69.507,
+ "eval_steps_per_second": 0.569,
+ "step": 1800
+ },
+ {
+ "epoch": 25.013937282229964,
+ "grad_norm": 0.06232205778360367,
+ "learning_rate": 0.00031632485461410294,
+ "loss": 1.960073709487915,
+ "step": 1801
+ },
+ {
+ "epoch": 25.027874564459932,
+ "grad_norm": 0.07617080211639404,
+ "learning_rate": 0.00031605853114040583,
+ "loss": 1.9570682048797607,
+ "step": 1802
+ },
+ {
+ "epoch": 25.041811846689896,
+ "grad_norm": 0.06312266737222672,
+ "learning_rate": 0.00031579219714568613,
+ "loss": 1.9653043746948242,
+ "step": 1803
+ },
+ {
+ "epoch": 25.05574912891986,
+ "grad_norm": 0.06101902946829796,
+ "learning_rate": 0.0003155258528445242,
+ "loss": 1.9481754302978516,
+ "step": 1804
+ },
+ {
+ "epoch": 25.069686411149824,
+ "grad_norm": 0.06738974899053574,
+ "learning_rate": 0.0003152594984515089,
+ "loss": 1.9733099937438965,
+ "step": 1805
+ },
+ {
+ "epoch": 25.083623693379792,
+ "grad_norm": 0.06208112835884094,
+ "learning_rate": 0.00031499313418123704,
+ "loss": 1.9604226350784302,
+ "step": 1806
+ },
+ {
+ "epoch": 25.097560975609756,
+ "grad_norm": 0.0632297471165657,
+ "learning_rate": 0.0003147267602483138,
+ "loss": 1.9748514890670776,
+ "step": 1807
+ },
+ {
+ "epoch": 25.11149825783972,
+ "grad_norm": 0.06286419183015823,
+ "learning_rate": 0.00031446037686735153,
+ "loss": 1.9705591201782227,
+ "step": 1808
+ },
+ {
+ "epoch": 25.125435540069688,
+ "grad_norm": 0.061676930636167526,
+ "learning_rate": 0.0003141939842529706,
+ "loss": 1.966292381286621,
+ "step": 1809
+ },
+ {
+ "epoch": 25.139372822299652,
+ "grad_norm": 0.059966422617435455,
+ "learning_rate": 0.0003139275826197987,
+ "loss": 1.960801124572754,
+ "step": 1810
+ },
+ {
+ "epoch": 25.153310104529616,
+ "grad_norm": 0.06130777299404144,
+ "learning_rate": 0.00031366117218247094,
+ "loss": 1.9645764827728271,
+ "step": 1811
+ },
+ {
+ "epoch": 25.16724738675958,
+ "grad_norm": 0.061480022966861725,
+ "learning_rate": 0.00031339475315562916,
+ "loss": 1.9640815258026123,
+ "step": 1812
+ },
+ {
+ "epoch": 25.181184668989548,
+ "grad_norm": 0.05976599082350731,
+ "learning_rate": 0.00031312832575392267,
+ "loss": 1.9709453582763672,
+ "step": 1813
+ },
+ {
+ "epoch": 25.195121951219512,
+ "grad_norm": 0.06432078778743744,
+ "learning_rate": 0.0003128618901920071,
+ "loss": 1.9676944017410278,
+ "step": 1814
+ },
+ {
+ "epoch": 25.209059233449477,
+ "grad_norm": 0.060974858701229095,
+ "learning_rate": 0.0003125954466845446,
+ "loss": 1.9607110023498535,
+ "step": 1815
+ },
+ {
+ "epoch": 25.222996515679444,
+ "grad_norm": 0.06553254276514053,
+ "learning_rate": 0.00031232899544620404,
+ "loss": 1.9504101276397705,
+ "step": 1816
+ },
+ {
+ "epoch": 25.23693379790941,
+ "grad_norm": 0.06467615813016891,
+ "learning_rate": 0.00031206253669166045,
+ "loss": 1.962750792503357,
+ "step": 1817
+ },
+ {
+ "epoch": 25.250871080139373,
+ "grad_norm": 0.061078183352947235,
+ "learning_rate": 0.0003117960706355947,
+ "loss": 1.9658128023147583,
+ "step": 1818
+ },
+ {
+ "epoch": 25.264808362369337,
+ "grad_norm": 0.0656590387225151,
+ "learning_rate": 0.0003115295974926936,
+ "loss": 1.9687200784683228,
+ "step": 1819
+ },
+ {
+ "epoch": 25.278745644599304,
+ "grad_norm": 0.061022087931632996,
+ "learning_rate": 0.00031126311747765005,
+ "loss": 1.9684455394744873,
+ "step": 1820
+ },
+ {
+ "epoch": 25.29268292682927,
+ "grad_norm": 0.0625755786895752,
+ "learning_rate": 0.00031099663080516186,
+ "loss": 1.962731957435608,
+ "step": 1821
+ },
+ {
+ "epoch": 25.306620209059233,
+ "grad_norm": 0.06357678025960922,
+ "learning_rate": 0.0003107301376899327,
+ "loss": 1.9442671537399292,
+ "step": 1822
+ },
+ {
+ "epoch": 25.320557491289197,
+ "grad_norm": 0.062150172889232635,
+ "learning_rate": 0.00031046363834667123,
+ "loss": 1.9566235542297363,
+ "step": 1823
+ },
+ {
+ "epoch": 25.334494773519165,
+ "grad_norm": 0.061118803918361664,
+ "learning_rate": 0.00031019713299009123,
+ "loss": 1.9761946201324463,
+ "step": 1824
+ },
+ {
+ "epoch": 25.34843205574913,
+ "grad_norm": 0.06331022083759308,
+ "learning_rate": 0.000309930621834911,
+ "loss": 1.9509797096252441,
+ "step": 1825
+ },
+ {
+ "epoch": 25.362369337979093,
+ "grad_norm": 0.06341579556465149,
+ "learning_rate": 0.0003096641050958541,
+ "loss": 1.9654616117477417,
+ "step": 1826
+ },
+ {
+ "epoch": 25.37630662020906,
+ "grad_norm": 0.061316221952438354,
+ "learning_rate": 0.00030939758298764795,
+ "loss": 1.9767422676086426,
+ "step": 1827
+ },
+ {
+ "epoch": 25.390243902439025,
+ "grad_norm": 0.06411541253328323,
+ "learning_rate": 0.00030913105572502483,
+ "loss": 1.985473394393921,
+ "step": 1828
+ },
+ {
+ "epoch": 25.40418118466899,
+ "grad_norm": 0.061624426394701004,
+ "learning_rate": 0.00030886452352272095,
+ "loss": 1.9730801582336426,
+ "step": 1829
+ },
+ {
+ "epoch": 25.418118466898953,
+ "grad_norm": 0.06127973645925522,
+ "learning_rate": 0.00030859798659547624,
+ "loss": 1.9568986892700195,
+ "step": 1830
+ },
+ {
+ "epoch": 25.43205574912892,
+ "grad_norm": 0.06366631388664246,
+ "learning_rate": 0.0003083314451580349,
+ "loss": 1.9778714179992676,
+ "step": 1831
+ },
+ {
+ "epoch": 25.445993031358885,
+ "grad_norm": 0.06436672061681747,
+ "learning_rate": 0.0003080648994251445,
+ "loss": 1.9750032424926758,
+ "step": 1832
+ },
+ {
+ "epoch": 25.45993031358885,
+ "grad_norm": 0.06266232579946518,
+ "learning_rate": 0.0003077983496115561,
+ "loss": 1.9691630601882935,
+ "step": 1833
+ },
+ {
+ "epoch": 25.473867595818817,
+ "grad_norm": 0.06091330945491791,
+ "learning_rate": 0.00030753179593202406,
+ "loss": 1.9596004486083984,
+ "step": 1834
+ },
+ {
+ "epoch": 25.48780487804878,
+ "grad_norm": 0.0609268881380558,
+ "learning_rate": 0.0003072652386013059,
+ "loss": 1.9919569492340088,
+ "step": 1835
+ },
+ {
+ "epoch": 25.501742160278745,
+ "grad_norm": 0.06318292021751404,
+ "learning_rate": 0.00030699867783416207,
+ "loss": 1.9675531387329102,
+ "step": 1836
+ },
+ {
+ "epoch": 25.51567944250871,
+ "grad_norm": 0.061429619789123535,
+ "learning_rate": 0.0003067321138453557,
+ "loss": 1.966346263885498,
+ "step": 1837
+ },
+ {
+ "epoch": 25.529616724738677,
+ "grad_norm": 0.06276095658540726,
+ "learning_rate": 0.0003064655468496527,
+ "loss": 1.9983158111572266,
+ "step": 1838
+ },
+ {
+ "epoch": 25.54355400696864,
+ "grad_norm": 0.06198902055621147,
+ "learning_rate": 0.0003061989770618211,
+ "loss": 1.9685490131378174,
+ "step": 1839
+ },
+ {
+ "epoch": 25.557491289198605,
+ "grad_norm": 0.06335171312093735,
+ "learning_rate": 0.00030593240469663154,
+ "loss": 1.9861736297607422,
+ "step": 1840
+ },
+ {
+ "epoch": 25.571428571428573,
+ "grad_norm": 0.06267495453357697,
+ "learning_rate": 0.0003056658299688563,
+ "loss": 1.9693151712417603,
+ "step": 1841
+ },
+ {
+ "epoch": 25.585365853658537,
+ "grad_norm": 0.061308011412620544,
+ "learning_rate": 0.00030539925309327017,
+ "loss": 1.9826204776763916,
+ "step": 1842
+ },
+ {
+ "epoch": 25.5993031358885,
+ "grad_norm": 0.06606099754571915,
+ "learning_rate": 0.0003051326742846491,
+ "loss": 1.985427737236023,
+ "step": 1843
+ },
+ {
+ "epoch": 25.613240418118465,
+ "grad_norm": 0.06353887170553207,
+ "learning_rate": 0.000304866093757771,
+ "loss": 1.963585615158081,
+ "step": 1844
+ },
+ {
+ "epoch": 25.627177700348433,
+ "grad_norm": 0.06360059976577759,
+ "learning_rate": 0.00030459951172741474,
+ "loss": 1.9840047359466553,
+ "step": 1845
+ },
+ {
+ "epoch": 25.641114982578397,
+ "grad_norm": 0.06275399029254913,
+ "learning_rate": 0.0003043329284083609,
+ "loss": 1.9865367412567139,
+ "step": 1846
+ },
+ {
+ "epoch": 25.65505226480836,
+ "grad_norm": 0.061826832592487335,
+ "learning_rate": 0.00030406634401539053,
+ "loss": 1.9746454954147339,
+ "step": 1847
+ },
+ {
+ "epoch": 25.66898954703833,
+ "grad_norm": 0.06373758614063263,
+ "learning_rate": 0.00030379975876328614,
+ "loss": 1.970570683479309,
+ "step": 1848
+ },
+ {
+ "epoch": 25.682926829268293,
+ "grad_norm": 0.06198093667626381,
+ "learning_rate": 0.00030353317286683053,
+ "loss": 1.9856860637664795,
+ "step": 1849
+ },
+ {
+ "epoch": 25.696864111498257,
+ "grad_norm": 0.06512428820133209,
+ "learning_rate": 0.0003032665865408073,
+ "loss": 1.9919607639312744,
+ "step": 1850
+ },
+ {
+ "epoch": 25.71080139372822,
+ "grad_norm": 0.06516636162996292,
+ "learning_rate": 0.000303,
+ "loss": 1.9930028915405273,
+ "step": 1851
+ },
+ {
+ "epoch": 25.72473867595819,
+ "grad_norm": 0.06129363179206848,
+ "learning_rate": 0.0003027334134591926,
+ "loss": 1.9975836277008057,
+ "step": 1852
+ },
+ {
+ "epoch": 25.738675958188153,
+ "grad_norm": 0.06420517712831497,
+ "learning_rate": 0.00030246682713316945,
+ "loss": 1.9728800058364868,
+ "step": 1853
+ },
+ {
+ "epoch": 25.752613240418118,
+ "grad_norm": 0.06342366337776184,
+ "learning_rate": 0.0003022002412367138,
+ "loss": 1.989312767982483,
+ "step": 1854
+ },
+ {
+ "epoch": 25.766550522648085,
+ "grad_norm": 0.061576031148433685,
+ "learning_rate": 0.00030193365598460946,
+ "loss": 1.9859075546264648,
+ "step": 1855
+ },
+ {
+ "epoch": 25.78048780487805,
+ "grad_norm": 0.0607769675552845,
+ "learning_rate": 0.0003016670715916391,
+ "loss": 1.967139482498169,
+ "step": 1856
+ },
+ {
+ "epoch": 25.794425087108014,
+ "grad_norm": 0.06282363831996918,
+ "learning_rate": 0.00030140048827258524,
+ "loss": 1.9849177598953247,
+ "step": 1857
+ },
+ {
+ "epoch": 25.808362369337978,
+ "grad_norm": 0.06485171616077423,
+ "learning_rate": 0.0003011339062422289,
+ "loss": 1.9944510459899902,
+ "step": 1858
+ },
+ {
+ "epoch": 25.822299651567945,
+ "grad_norm": 0.06280137598514557,
+ "learning_rate": 0.00030086732571535076,
+ "loss": 1.9957447052001953,
+ "step": 1859
+ },
+ {
+ "epoch": 25.83623693379791,
+ "grad_norm": 0.06692720204591751,
+ "learning_rate": 0.0003006007469067297,
+ "loss": 1.9829119443893433,
+ "step": 1860
+ },
+ {
+ "epoch": 25.850174216027874,
+ "grad_norm": 0.06662958860397339,
+ "learning_rate": 0.0003003341700311436,
+ "loss": 1.9788072109222412,
+ "step": 1861
+ },
+ {
+ "epoch": 25.86411149825784,
+ "grad_norm": 0.06748583912849426,
+ "learning_rate": 0.0003000675953033685,
+ "loss": 1.9959502220153809,
+ "step": 1862
+ },
+ {
+ "epoch": 25.878048780487806,
+ "grad_norm": 0.06759459525346756,
+ "learning_rate": 0.0002998010229381789,
+ "loss": 1.9947572946548462,
+ "step": 1863
+ },
+ {
+ "epoch": 25.89198606271777,
+ "grad_norm": 0.06492980569601059,
+ "learning_rate": 0.0002995344531503474,
+ "loss": 1.9897825717926025,
+ "step": 1864
+ },
+ {
+ "epoch": 25.905923344947734,
+ "grad_norm": 0.06660535931587219,
+ "learning_rate": 0.0002992678861546442,
+ "loss": 1.9906097650527954,
+ "step": 1865
+ },
+ {
+ "epoch": 25.9198606271777,
+ "grad_norm": 0.06545855104923248,
+ "learning_rate": 0.00029900132216583786,
+ "loss": 1.9963207244873047,
+ "step": 1866
+ },
+ {
+ "epoch": 25.933797909407666,
+ "grad_norm": 0.06479988992214203,
+ "learning_rate": 0.0002987347613986941,
+ "loss": 1.994144082069397,
+ "step": 1867
+ },
+ {
+ "epoch": 25.94773519163763,
+ "grad_norm": 0.06334878504276276,
+ "learning_rate": 0.0002984682040679759,
+ "loss": 1.9909017086029053,
+ "step": 1868
+ },
+ {
+ "epoch": 25.961672473867594,
+ "grad_norm": 0.06454301625490189,
+ "learning_rate": 0.00029820165038844395,
+ "loss": 1.985898494720459,
+ "step": 1869
+ },
+ {
+ "epoch": 25.975609756097562,
+ "grad_norm": 0.06418111175298691,
+ "learning_rate": 0.00029793510057485556,
+ "loss": 1.9789021015167236,
+ "step": 1870
+ },
+ {
+ "epoch": 25.989547038327526,
+ "grad_norm": 0.06766562163829803,
+ "learning_rate": 0.00029766855484196513,
+ "loss": 2.0054125785827637,
+ "step": 1871
+ },
+ {
+ "epoch": 26.0,
+ "grad_norm": 0.05154159665107727,
+ "learning_rate": 0.0002974020134045238,
+ "loss": 1.4703314304351807,
+ "step": 1872
+ },
+ {
+ "epoch": 26.0,
+ "eval_loss": 0.6342733502388,
+ "eval_runtime": 40.7553,
+ "eval_samples_per_second": 59.919,
+ "eval_steps_per_second": 0.491,
+ "step": 1872
+ },
+ {
+ "epoch": 26.013937282229964,
+ "grad_norm": 0.06601504236459732,
+ "learning_rate": 0.00029713547647727904,
+ "loss": 1.9541187286376953,
+ "step": 1873
+ },
+ {
+ "epoch": 26.027874564459932,
+ "grad_norm": 0.06637415289878845,
+ "learning_rate": 0.00029686894427497515,
+ "loss": 1.9444429874420166,
+ "step": 1874
+ },
+ {
+ "epoch": 26.041811846689896,
+ "grad_norm": 0.06102657690644264,
+ "learning_rate": 0.0002966024170123519,
+ "loss": 1.9523404836654663,
+ "step": 1875
+ },
+ {
+ "epoch": 26.05574912891986,
+ "grad_norm": 0.06154332309961319,
+ "learning_rate": 0.0002963358949041459,
+ "loss": 1.9392805099487305,
+ "step": 1876
+ },
+ {
+ "epoch": 26.069686411149824,
+ "grad_norm": 0.06383806467056274,
+ "learning_rate": 0.00029606937816508897,
+ "loss": 1.9280699491500854,
+ "step": 1877
+ },
+ {
+ "epoch": 26.083623693379792,
+ "grad_norm": 0.05950536951422691,
+ "learning_rate": 0.00029580286700990887,
+ "loss": 1.9510209560394287,
+ "step": 1878
+ },
+ {
+ "epoch": 26.097560975609756,
+ "grad_norm": 0.06285396963357925,
+ "learning_rate": 0.00029553636165332876,
+ "loss": 1.9589542150497437,
+ "step": 1879
+ },
+ {
+ "epoch": 26.11149825783972,
+ "grad_norm": 0.06018277257680893,
+ "learning_rate": 0.0002952698623100673,
+ "loss": 1.9556975364685059,
+ "step": 1880
+ },
+ {
+ "epoch": 26.125435540069688,
+ "grad_norm": 0.06558576226234436,
+ "learning_rate": 0.0002950033691948382,
+ "loss": 1.9427529573440552,
+ "step": 1881
+ },
+ {
+ "epoch": 26.139372822299652,
+ "grad_norm": 0.06511088460683823,
+ "learning_rate": 0.00029473688252234994,
+ "loss": 1.9552985429763794,
+ "step": 1882
+ },
+ {
+ "epoch": 26.153310104529616,
+ "grad_norm": 0.06098657473921776,
+ "learning_rate": 0.0002944704025073064,
+ "loss": 1.9433622360229492,
+ "step": 1883
+ },
+ {
+ "epoch": 26.16724738675958,
+ "grad_norm": 0.059983622282743454,
+ "learning_rate": 0.00029420392936440525,
+ "loss": 1.940507411956787,
+ "step": 1884
+ },
+ {
+ "epoch": 26.181184668989548,
+ "grad_norm": 0.06048520654439926,
+ "learning_rate": 0.00029393746330833953,
+ "loss": 1.936924695968628,
+ "step": 1885
+ },
+ {
+ "epoch": 26.195121951219512,
+ "grad_norm": 0.06227855011820793,
+ "learning_rate": 0.0002936710045537959,
+ "loss": 1.93827486038208,
+ "step": 1886
+ },
+ {
+ "epoch": 26.209059233449477,
+ "grad_norm": 0.06222425028681755,
+ "learning_rate": 0.0002934045533154554,
+ "loss": 1.9474766254425049,
+ "step": 1887
+ },
+ {
+ "epoch": 26.222996515679444,
+ "grad_norm": 0.06104688346385956,
+ "learning_rate": 0.00029313810980799296,
+ "loss": 1.9336830377578735,
+ "step": 1888
+ },
+ {
+ "epoch": 26.23693379790941,
+ "grad_norm": 0.061554424464702606,
+ "learning_rate": 0.00029287167424607726,
+ "loss": 1.9518358707427979,
+ "step": 1889
+ },
+ {
+ "epoch": 26.250871080139373,
+ "grad_norm": 0.06273443251848221,
+ "learning_rate": 0.00029260524684437077,
+ "loss": 1.940516710281372,
+ "step": 1890
+ },
+ {
+ "epoch": 26.264808362369337,
+ "grad_norm": 0.05902065709233284,
+ "learning_rate": 0.00029233882781752905,
+ "loss": 1.9311795234680176,
+ "step": 1891
+ },
+ {
+ "epoch": 26.278745644599304,
+ "grad_norm": 0.0626775324344635,
+ "learning_rate": 0.00029207241738020136,
+ "loss": 1.9473145008087158,
+ "step": 1892
+ },
+ {
+ "epoch": 26.29268292682927,
+ "grad_norm": 0.05936308950185776,
+ "learning_rate": 0.0002918060157470294,
+ "loss": 1.946176290512085,
+ "step": 1893
+ },
+ {
+ "epoch": 26.306620209059233,
+ "grad_norm": 0.06098832190036774,
+ "learning_rate": 0.00029153962313264856,
+ "loss": 1.9415948390960693,
+ "step": 1894
+ },
+ {
+ "epoch": 26.320557491289197,
+ "grad_norm": 0.06257472187280655,
+ "learning_rate": 0.0002912732397516862,
+ "loss": 1.9476375579833984,
+ "step": 1895
+ },
+ {
+ "epoch": 26.334494773519165,
+ "grad_norm": 0.06173890084028244,
+ "learning_rate": 0.00029100686581876283,
+ "loss": 1.9434869289398193,
+ "step": 1896
+ },
+ {
+ "epoch": 26.34843205574913,
+ "grad_norm": 0.0614108070731163,
+ "learning_rate": 0.0002907405015484911,
+ "loss": 1.9595987796783447,
+ "step": 1897
+ },
+ {
+ "epoch": 26.362369337979093,
+ "grad_norm": 0.06131064146757126,
+ "learning_rate": 0.0002904741471554758,
+ "loss": 1.9638384580612183,
+ "step": 1898
+ },
+ {
+ "epoch": 26.37630662020906,
+ "grad_norm": 0.0620097853243351,
+ "learning_rate": 0.0002902078028543139,
+ "loss": 1.9308812618255615,
+ "step": 1899
+ },
+ {
+ "epoch": 26.390243902439025,
+ "grad_norm": 0.06417243927717209,
+ "learning_rate": 0.00028994146885959416,
+ "loss": 1.9541051387786865,
+ "step": 1900
+ },
+ {
+ "epoch": 26.40418118466899,
+ "grad_norm": 0.061548616737127304,
+ "learning_rate": 0.00028967514538589715,
+ "loss": 1.9431400299072266,
+ "step": 1901
+ },
+ {
+ "epoch": 26.418118466898953,
+ "grad_norm": 0.0631798654794693,
+ "learning_rate": 0.0002894088326477947,
+ "loss": 1.9591906070709229,
+ "step": 1902
+ },
+ {
+ "epoch": 26.43205574912892,
+ "grad_norm": 0.06283508986234665,
+ "learning_rate": 0.0002891425308598503,
+ "loss": 1.943403720855713,
+ "step": 1903
+ },
+ {
+ "epoch": 26.445993031358885,
+ "grad_norm": 0.06297212839126587,
+ "learning_rate": 0.00028887624023661866,
+ "loss": 1.9608395099639893,
+ "step": 1904
+ },
+ {
+ "epoch": 26.45993031358885,
+ "grad_norm": 0.06354014575481415,
+ "learning_rate": 0.00028860996099264505,
+ "loss": 1.9444423913955688,
+ "step": 1905
+ },
+ {
+ "epoch": 26.473867595818817,
+ "grad_norm": 0.06168603152036667,
+ "learning_rate": 0.000288343693342466,
+ "loss": 1.9628558158874512,
+ "step": 1906
+ },
+ {
+ "epoch": 26.48780487804878,
+ "grad_norm": 0.06447484344244003,
+ "learning_rate": 0.00028807743750060847,
+ "loss": 1.9654959440231323,
+ "step": 1907
+ },
+ {
+ "epoch": 26.501742160278745,
+ "grad_norm": 0.06281430274248123,
+ "learning_rate": 0.00028781119368159004,
+ "loss": 1.9553298950195312,
+ "step": 1908
+ },
+ {
+ "epoch": 26.51567944250871,
+ "grad_norm": 0.06198422610759735,
+ "learning_rate": 0.00028754496209991843,
+ "loss": 1.9523322582244873,
+ "step": 1909
+ },
+ {
+ "epoch": 26.529616724738677,
+ "grad_norm": 0.062765933573246,
+ "learning_rate": 0.0002872787429700917,
+ "loss": 1.9606122970581055,
+ "step": 1910
+ },
+ {
+ "epoch": 26.54355400696864,
+ "grad_norm": 0.06762545555830002,
+ "learning_rate": 0.0002870125365065979,
+ "loss": 1.9565579891204834,
+ "step": 1911
+ },
+ {
+ "epoch": 26.557491289198605,
+ "grad_norm": 0.06395747512578964,
+ "learning_rate": 0.00028674634292391463,
+ "loss": 1.962345838546753,
+ "step": 1912
+ },
+ {
+ "epoch": 26.571428571428573,
+ "grad_norm": 0.060820501297712326,
+ "learning_rate": 0.0002864801624365093,
+ "loss": 1.9698963165283203,
+ "step": 1913
+ },
+ {
+ "epoch": 26.585365853658537,
+ "grad_norm": 0.0644717738032341,
+ "learning_rate": 0.0002862139952588387,
+ "loss": 1.9503817558288574,
+ "step": 1914
+ },
+ {
+ "epoch": 26.5993031358885,
+ "grad_norm": 0.06223372370004654,
+ "learning_rate": 0.000285947841605349,
+ "loss": 1.9556928873062134,
+ "step": 1915
+ },
+ {
+ "epoch": 26.613240418118465,
+ "grad_norm": 0.0660606324672699,
+ "learning_rate": 0.00028568170169047523,
+ "loss": 1.9794392585754395,
+ "step": 1916
+ },
+ {
+ "epoch": 26.627177700348433,
+ "grad_norm": 0.06215149909257889,
+ "learning_rate": 0.00028541557572864154,
+ "loss": 1.956440806388855,
+ "step": 1917
+ },
+ {
+ "epoch": 26.641114982578397,
+ "grad_norm": 0.06647448241710663,
+ "learning_rate": 0.000285149463934261,
+ "loss": 1.9618154764175415,
+ "step": 1918
+ },
+ {
+ "epoch": 26.65505226480836,
+ "grad_norm": 0.06702937185764313,
+ "learning_rate": 0.0002848833665217349,
+ "loss": 1.9652760028839111,
+ "step": 1919
+ },
+ {
+ "epoch": 26.66898954703833,
+ "grad_norm": 0.06669468432664871,
+ "learning_rate": 0.0002846172837054532,
+ "loss": 1.9627275466918945,
+ "step": 1920
+ },
+ {
+ "epoch": 26.682926829268293,
+ "grad_norm": 0.06321994960308075,
+ "learning_rate": 0.0002843512156997939,
+ "loss": 1.966722846031189,
+ "step": 1921
+ },
+ {
+ "epoch": 26.696864111498257,
+ "grad_norm": 0.06267281621694565,
+ "learning_rate": 0.0002840851627191234,
+ "loss": 1.9646657705307007,
+ "step": 1922
+ },
+ {
+ "epoch": 26.71080139372822,
+ "grad_norm": 0.06576424092054367,
+ "learning_rate": 0.0002838191249777955,
+ "loss": 1.950223445892334,
+ "step": 1923
+ },
+ {
+ "epoch": 26.72473867595819,
+ "grad_norm": 0.06047007441520691,
+ "learning_rate": 0.00028355310269015225,
+ "loss": 1.9768667221069336,
+ "step": 1924
+ },
+ {
+ "epoch": 26.738675958188153,
+ "grad_norm": 0.06493274867534637,
+ "learning_rate": 0.00028328709607052297,
+ "loss": 1.9484598636627197,
+ "step": 1925
+ },
+ {
+ "epoch": 26.752613240418118,
+ "grad_norm": 0.06330715864896774,
+ "learning_rate": 0.0002830211053332242,
+ "loss": 1.9732015132904053,
+ "step": 1926
+ },
+ {
+ "epoch": 26.766550522648085,
+ "grad_norm": 0.06184522062540054,
+ "learning_rate": 0.0002827551306925601,
+ "loss": 1.9706918001174927,
+ "step": 1927
+ },
+ {
+ "epoch": 26.78048780487805,
+ "grad_norm": 0.06290240585803986,
+ "learning_rate": 0.00028248917236282147,
+ "loss": 1.9614533185958862,
+ "step": 1928
+ },
+ {
+ "epoch": 26.794425087108014,
+ "grad_norm": 0.06381867825984955,
+ "learning_rate": 0.0002822232305582863,
+ "loss": 1.960871934890747,
+ "step": 1929
+ },
+ {
+ "epoch": 26.808362369337978,
+ "grad_norm": 0.061407096683979034,
+ "learning_rate": 0.0002819573054932188,
+ "loss": 1.970398187637329,
+ "step": 1930
+ },
+ {
+ "epoch": 26.822299651567945,
+ "grad_norm": 0.06511857360601425,
+ "learning_rate": 0.0002816913973818703,
+ "loss": 1.9459114074707031,
+ "step": 1931
+ },
+ {
+ "epoch": 26.83623693379791,
+ "grad_norm": 0.06411094218492508,
+ "learning_rate": 0.0002814255064384781,
+ "loss": 1.948549509048462,
+ "step": 1932
+ },
+ {
+ "epoch": 26.850174216027874,
+ "grad_norm": 0.06509149819612503,
+ "learning_rate": 0.00028115963287726563,
+ "loss": 1.9682888984680176,
+ "step": 1933
+ },
+ {
+ "epoch": 26.86411149825784,
+ "grad_norm": 0.06972374022006989,
+ "learning_rate": 0.0002808937769124425,
+ "loss": 1.9887568950653076,
+ "step": 1934
+ },
+ {
+ "epoch": 26.878048780487806,
+ "grad_norm": 0.07100297510623932,
+ "learning_rate": 0.000280627938758204,
+ "loss": 1.9728631973266602,
+ "step": 1935
+ },
+ {
+ "epoch": 26.89198606271777,
+ "grad_norm": 0.06550271809101105,
+ "learning_rate": 0.00028036211862873117,
+ "loss": 1.9675276279449463,
+ "step": 1936
+ },
+ {
+ "epoch": 26.905923344947734,
+ "grad_norm": 0.06671806424856186,
+ "learning_rate": 0.0002800963167381904,
+ "loss": 1.985438346862793,
+ "step": 1937
+ },
+ {
+ "epoch": 26.9198606271777,
+ "grad_norm": 0.0698300451040268,
+ "learning_rate": 0.00027983053330073355,
+ "loss": 1.9645981788635254,
+ "step": 1938
+ },
+ {
+ "epoch": 26.933797909407666,
+ "grad_norm": 0.06594336032867432,
+ "learning_rate": 0.00027956476853049765,
+ "loss": 1.9659535884857178,
+ "step": 1939
+ },
+ {
+ "epoch": 26.94773519163763,
+ "grad_norm": 0.06825239211320877,
+ "learning_rate": 0.00027929902264160435,
+ "loss": 1.9709006547927856,
+ "step": 1940
+ },
+ {
+ "epoch": 26.961672473867594,
+ "grad_norm": 0.06996344029903412,
+ "learning_rate": 0.00027903329584816046,
+ "loss": 1.9777134656906128,
+ "step": 1941
+ },
+ {
+ "epoch": 26.975609756097562,
+ "grad_norm": 0.06491006910800934,
+ "learning_rate": 0.0002787675883642572,
+ "loss": 1.9659584760665894,
+ "step": 1942
+ },
+ {
+ "epoch": 26.989547038327526,
+ "grad_norm": 0.06465473026037216,
+ "learning_rate": 0.00027850190040397036,
+ "loss": 1.9739830493927002,
+ "step": 1943
+ },
+ {
+ "epoch": 27.0,
+ "grad_norm": 0.05315341055393219,
+ "learning_rate": 0.00027823623218135976,
+ "loss": 1.480682373046875,
+ "step": 1944
+ },
+ {
+ "epoch": 27.0,
+ "eval_loss": 0.6356088519096375,
+ "eval_runtime": 36.5058,
+ "eval_samples_per_second": 66.893,
+ "eval_steps_per_second": 0.548,
+ "step": 1944
+ },
+ {
+ "epoch": 27.013937282229964,
+ "grad_norm": 0.061814989894628525,
+ "learning_rate": 0.0002779705839104697,
+ "loss": 1.9167797565460205,
+ "step": 1945
+ },
+ {
+ "epoch": 27.027874564459932,
+ "grad_norm": 0.06356564909219742,
+ "learning_rate": 0.0002777049558053281,
+ "loss": 1.927583932876587,
+ "step": 1946
+ },
+ {
+ "epoch": 27.041811846689896,
+ "grad_norm": 0.06118980795145035,
+ "learning_rate": 0.0002774393480799466,
+ "loss": 1.9252214431762695,
+ "step": 1947
+ },
+ {
+ "epoch": 27.05574912891986,
+ "grad_norm": 0.059413257986307144,
+ "learning_rate": 0.00027717376094832076,
+ "loss": 1.9219372272491455,
+ "step": 1948
+ },
+ {
+ "epoch": 27.069686411149824,
+ "grad_norm": 0.06260813027620316,
+ "learning_rate": 0.0002769081946244293,
+ "loss": 1.922504186630249,
+ "step": 1949
+ },
+ {
+ "epoch": 27.083623693379792,
+ "grad_norm": 0.061976976692676544,
+ "learning_rate": 0.00027664264932223407,
+ "loss": 1.9327895641326904,
+ "step": 1950
+ },
+ {
+ "epoch": 27.097560975609756,
+ "grad_norm": 0.059954315423965454,
+ "learning_rate": 0.00027637712525568024,
+ "loss": 1.9138646125793457,
+ "step": 1951
+ },
+ {
+ "epoch": 27.11149825783972,
+ "grad_norm": 0.06157257780432701,
+ "learning_rate": 0.0002761116226386958,
+ "loss": 1.9266639947891235,
+ "step": 1952
+ },
+ {
+ "epoch": 27.125435540069688,
+ "grad_norm": 0.06179584190249443,
+ "learning_rate": 0.00027584614168519125,
+ "loss": 1.9255129098892212,
+ "step": 1953
+ },
+ {
+ "epoch": 27.139372822299652,
+ "grad_norm": 0.0608953982591629,
+ "learning_rate": 0.00027558068260905976,
+ "loss": 1.9159553050994873,
+ "step": 1954
+ },
+ {
+ "epoch": 27.153310104529616,
+ "grad_norm": 0.06067467853426933,
+ "learning_rate": 0.00027531524562417734,
+ "loss": 1.9260437488555908,
+ "step": 1955
+ },
+ {
+ "epoch": 27.16724738675958,
+ "grad_norm": 0.06343036144971848,
+ "learning_rate": 0.00027504983094440126,
+ "loss": 1.9118573665618896,
+ "step": 1956
+ },
+ {
+ "epoch": 27.181184668989548,
+ "grad_norm": 0.06201693415641785,
+ "learning_rate": 0.0002747844387835716,
+ "loss": 1.9324994087219238,
+ "step": 1957
+ },
+ {
+ "epoch": 27.195121951219512,
+ "grad_norm": 0.06198827177286148,
+ "learning_rate": 0.0002745190693555099,
+ "loss": 1.9376416206359863,
+ "step": 1958
+ },
+ {
+ "epoch": 27.209059233449477,
+ "grad_norm": 0.06404320895671844,
+ "learning_rate": 0.0002742537228740197,
+ "loss": 1.9419097900390625,
+ "step": 1959
+ },
+ {
+ "epoch": 27.222996515679444,
+ "grad_norm": 0.062050990760326385,
+ "learning_rate": 0.00027398839955288575,
+ "loss": 1.9205586910247803,
+ "step": 1960
+ },
+ {
+ "epoch": 27.23693379790941,
+ "grad_norm": 0.05903782323002815,
+ "learning_rate": 0.00027372309960587424,
+ "loss": 1.9344040155410767,
+ "step": 1961
+ },
+ {
+ "epoch": 27.250871080139373,
+ "grad_norm": 0.06662431359291077,
+ "learning_rate": 0.0002734578232467327,
+ "loss": 1.9293982982635498,
+ "step": 1962
+ },
+ {
+ "epoch": 27.264808362369337,
+ "grad_norm": 0.06605469435453415,
+ "learning_rate": 0.0002731925706891891,
+ "loss": 1.9288328886032104,
+ "step": 1963
+ },
+ {
+ "epoch": 27.278745644599304,
+ "grad_norm": 0.062087010592222214,
+ "learning_rate": 0.0002729273421469532,
+ "loss": 1.9324290752410889,
+ "step": 1964
+ },
+ {
+ "epoch": 27.29268292682927,
+ "grad_norm": 0.062059979885816574,
+ "learning_rate": 0.00027266213783371434,
+ "loss": 1.933382272720337,
+ "step": 1965
+ },
+ {
+ "epoch": 27.306620209059233,
+ "grad_norm": 0.06283893436193466,
+ "learning_rate": 0.00027239695796314327,
+ "loss": 1.9310166835784912,
+ "step": 1966
+ },
+ {
+ "epoch": 27.320557491289197,
+ "grad_norm": 0.062266793102025986,
+ "learning_rate": 0.0002721318027488902,
+ "loss": 1.9510637521743774,
+ "step": 1967
+ },
+ {
+ "epoch": 27.334494773519165,
+ "grad_norm": 0.0629708543419838,
+ "learning_rate": 0.00027186667240458617,
+ "loss": 1.921417236328125,
+ "step": 1968
+ },
+ {
+ "epoch": 27.34843205574913,
+ "grad_norm": 0.0634312853217125,
+ "learning_rate": 0.0002716015671438419,
+ "loss": 1.9262259006500244,
+ "step": 1969
+ },
+ {
+ "epoch": 27.362369337979093,
+ "grad_norm": 0.062355365604162216,
+ "learning_rate": 0.0002713364871802478,
+ "loss": 1.9553534984588623,
+ "step": 1970
+ },
+ {
+ "epoch": 27.37630662020906,
+ "grad_norm": 0.06175858899950981,
+ "learning_rate": 0.0002710714327273741,
+ "loss": 1.939396858215332,
+ "step": 1971
+ },
+ {
+ "epoch": 27.390243902439025,
+ "grad_norm": 0.06311390548944473,
+ "learning_rate": 0.0002708064039987704,
+ "loss": 1.9329023361206055,
+ "step": 1972
+ },
+ {
+ "epoch": 27.40418118466899,
+ "grad_norm": 0.062033023685216904,
+ "learning_rate": 0.00027054140120796546,
+ "loss": 1.9308583736419678,
+ "step": 1973
+ },
+ {
+ "epoch": 27.418118466898953,
+ "grad_norm": 0.06312143802642822,
+ "learning_rate": 0.0002702764245684672,
+ "loss": 1.9487743377685547,
+ "step": 1974
+ },
+ {
+ "epoch": 27.43205574912892,
+ "grad_norm": 0.0649493932723999,
+ "learning_rate": 0.0002700114742937627,
+ "loss": 1.9450247287750244,
+ "step": 1975
+ },
+ {
+ "epoch": 27.445993031358885,
+ "grad_norm": 0.0623517744243145,
+ "learning_rate": 0.00026974655059731754,
+ "loss": 1.9420899152755737,
+ "step": 1976
+ },
+ {
+ "epoch": 27.45993031358885,
+ "grad_norm": 0.06679189950227737,
+ "learning_rate": 0.0002694816536925759,
+ "loss": 1.9443024396896362,
+ "step": 1977
+ },
+ {
+ "epoch": 27.473867595818817,
+ "grad_norm": 0.06560137122869492,
+ "learning_rate": 0.00026921678379296057,
+ "loss": 1.953552484512329,
+ "step": 1978
+ },
+ {
+ "epoch": 27.48780487804878,
+ "grad_norm": 0.06294484436511993,
+ "learning_rate": 0.0002689519411118722,
+ "loss": 1.9333667755126953,
+ "step": 1979
+ },
+ {
+ "epoch": 27.501742160278745,
+ "grad_norm": 0.06416776031255722,
+ "learning_rate": 0.00026868712586269,
+ "loss": 1.950608491897583,
+ "step": 1980
+ },
+ {
+ "epoch": 27.51567944250871,
+ "grad_norm": 0.06297886371612549,
+ "learning_rate": 0.00026842233825877064,
+ "loss": 1.9374010562896729,
+ "step": 1981
+ },
+ {
+ "epoch": 27.529616724738677,
+ "grad_norm": 0.06346481293439865,
+ "learning_rate": 0.0002681575785134487,
+ "loss": 1.9292755126953125,
+ "step": 1982
+ },
+ {
+ "epoch": 27.54355400696864,
+ "grad_norm": 0.06401345133781433,
+ "learning_rate": 0.0002678928468400366,
+ "loss": 1.9518835544586182,
+ "step": 1983
+ },
+ {
+ "epoch": 27.557491289198605,
+ "grad_norm": 0.06174371764063835,
+ "learning_rate": 0.00026762814345182367,
+ "loss": 1.9246001243591309,
+ "step": 1984
+ },
+ {
+ "epoch": 27.571428571428573,
+ "grad_norm": 0.06687969714403152,
+ "learning_rate": 0.0002673634685620767,
+ "loss": 1.9456532001495361,
+ "step": 1985
+ },
+ {
+ "epoch": 27.585365853658537,
+ "grad_norm": 0.06487233936786652,
+ "learning_rate": 0.0002670988223840393,
+ "loss": 1.9369590282440186,
+ "step": 1986
+ },
+ {
+ "epoch": 27.5993031358885,
+ "grad_norm": 0.06265441328287125,
+ "learning_rate": 0.0002668342051309324,
+ "loss": 1.9478905200958252,
+ "step": 1987
+ },
+ {
+ "epoch": 27.613240418118465,
+ "grad_norm": 0.06444588303565979,
+ "learning_rate": 0.00026656961701595306,
+ "loss": 1.923633098602295,
+ "step": 1988
+ },
+ {
+ "epoch": 27.627177700348433,
+ "grad_norm": 0.06363383680582047,
+ "learning_rate": 0.0002663050582522753,
+ "loss": 1.9642283916473389,
+ "step": 1989
+ },
+ {
+ "epoch": 27.641114982578397,
+ "grad_norm": 0.06589404493570328,
+ "learning_rate": 0.00026604052905304946,
+ "loss": 1.9349925518035889,
+ "step": 1990
+ },
+ {
+ "epoch": 27.65505226480836,
+ "grad_norm": 0.0630272924900055,
+ "learning_rate": 0.00026577602963140156,
+ "loss": 1.9420092105865479,
+ "step": 1991
+ },
+ {
+ "epoch": 27.66898954703833,
+ "grad_norm": 0.06480628997087479,
+ "learning_rate": 0.0002655115602004345,
+ "loss": 1.9431254863739014,
+ "step": 1992
+ },
+ {
+ "epoch": 27.682926829268293,
+ "grad_norm": 0.0632273331284523,
+ "learning_rate": 0.00026524712097322604,
+ "loss": 1.9446561336517334,
+ "step": 1993
+ },
+ {
+ "epoch": 27.696864111498257,
+ "grad_norm": 0.06315293163061142,
+ "learning_rate": 0.0002649827121628305,
+ "loss": 1.9283469915390015,
+ "step": 1994
+ },
+ {
+ "epoch": 27.71080139372822,
+ "grad_norm": 0.0651608556509018,
+ "learning_rate": 0.00026471833398227694,
+ "loss": 1.938418984413147,
+ "step": 1995
+ },
+ {
+ "epoch": 27.72473867595819,
+ "grad_norm": 0.06380520761013031,
+ "learning_rate": 0.0002644539866445703,
+ "loss": 1.9424567222595215,
+ "step": 1996
+ },
+ {
+ "epoch": 27.738675958188153,
+ "grad_norm": 0.0646371841430664,
+ "learning_rate": 0.00026418967036269045,
+ "loss": 1.9451972246170044,
+ "step": 1997
+ },
+ {
+ "epoch": 27.752613240418118,
+ "grad_norm": 0.06506325304508209,
+ "learning_rate": 0.0002639253853495921,
+ "loss": 1.9419035911560059,
+ "step": 1998
+ },
+ {
+ "epoch": 27.766550522648085,
+ "grad_norm": 0.06286903470754623,
+ "learning_rate": 0.00026366113181820506,
+ "loss": 1.9452807903289795,
+ "step": 1999
+ },
+ {
+ "epoch": 27.78048780487805,
+ "grad_norm": 0.06661684811115265,
+ "learning_rate": 0.00026339690998143346,
+ "loss": 1.9469493627548218,
+ "step": 2000
+ },
+ {
+ "epoch": 27.794425087108014,
+ "grad_norm": 0.06329949200153351,
+ "learning_rate": 0.00026313272005215637,
+ "loss": 1.935401201248169,
+ "step": 2001
+ },
+ {
+ "epoch": 27.808362369337978,
+ "grad_norm": 0.06465955078601837,
+ "learning_rate": 0.00026286856224322645,
+ "loss": 1.9547067880630493,
+ "step": 2002
+ },
+ {
+ "epoch": 27.822299651567945,
+ "grad_norm": 0.06732604652643204,
+ "learning_rate": 0.00026260443676747114,
+ "loss": 1.9547715187072754,
+ "step": 2003
+ },
+ {
+ "epoch": 27.83623693379791,
+ "grad_norm": 0.0651276484131813,
+ "learning_rate": 0.00026234034383769157,
+ "loss": 1.9498482942581177,
+ "step": 2004
+ },
+ {
+ "epoch": 27.850174216027874,
+ "grad_norm": 0.06699621677398682,
+ "learning_rate": 0.0002620762836666625,
+ "loss": 1.9338326454162598,
+ "step": 2005
+ },
+ {
+ "epoch": 27.86411149825784,
+ "grad_norm": 0.0657275915145874,
+ "learning_rate": 0.00026181225646713257,
+ "loss": 1.9473168849945068,
+ "step": 2006
+ },
+ {
+ "epoch": 27.878048780487806,
+ "grad_norm": 0.06368435174226761,
+ "learning_rate": 0.0002615482624518236,
+ "loss": 1.9568496942520142,
+ "step": 2007
+ },
+ {
+ "epoch": 27.89198606271777,
+ "grad_norm": 0.06439761072397232,
+ "learning_rate": 0.0002612843018334309,
+ "loss": 1.9380487203598022,
+ "step": 2008
+ },
+ {
+ "epoch": 27.905923344947734,
+ "grad_norm": 0.06287812441587448,
+ "learning_rate": 0.00026102037482462256,
+ "loss": 1.9562499523162842,
+ "step": 2009
+ },
+ {
+ "epoch": 27.9198606271777,
+ "grad_norm": 0.06544869393110275,
+ "learning_rate": 0.0002607564816380403,
+ "loss": 1.9567855596542358,
+ "step": 2010
+ },
+ {
+ "epoch": 27.933797909407666,
+ "grad_norm": 0.06412878632545471,
+ "learning_rate": 0.0002604926224862975,
+ "loss": 1.9528976678848267,
+ "step": 2011
+ },
+ {
+ "epoch": 27.94773519163763,
+ "grad_norm": 0.06460773944854736,
+ "learning_rate": 0.0002602287975819811,
+ "loss": 1.9536967277526855,
+ "step": 2012
+ },
+ {
+ "epoch": 27.961672473867594,
+ "grad_norm": 0.06466975808143616,
+ "learning_rate": 0.00025996500713765,
+ "loss": 1.9486842155456543,
+ "step": 2013
+ },
+ {
+ "epoch": 27.975609756097562,
+ "grad_norm": 0.0657997727394104,
+ "learning_rate": 0.0002597012513658352,
+ "loss": 1.9634342193603516,
+ "step": 2014
+ },
+ {
+ "epoch": 27.989547038327526,
+ "grad_norm": 0.06382985413074493,
+ "learning_rate": 0.00025943753047904026,
+ "loss": 1.951185941696167,
+ "step": 2015
+ },
+ {
+ "epoch": 28.0,
+ "grad_norm": 0.05184071138501167,
+ "learning_rate": 0.0002591738446897401,
+ "loss": 1.450034737586975,
+ "step": 2016
+ },
+ {
+ "epoch": 28.0,
+ "eval_loss": 0.6368818283081055,
+ "eval_runtime": 36.4264,
+ "eval_samples_per_second": 67.039,
+ "eval_steps_per_second": 0.549,
+ "step": 2016
+ },
+ {
+ "epoch": 28.013937282229964,
+ "grad_norm": 0.06179628521203995,
+ "learning_rate": 0.00025891019421038177,
+ "loss": 1.8983266353607178,
+ "step": 2017
+ },
+ {
+ "epoch": 28.027874564459932,
+ "grad_norm": 0.06494797021150589,
+ "learning_rate": 0.00025864657925338345,
+ "loss": 1.9054467678070068,
+ "step": 2018
+ },
+ {
+ "epoch": 28.041811846689896,
+ "grad_norm": 0.0576489195227623,
+ "learning_rate": 0.00025838300003113514,
+ "loss": 1.9130041599273682,
+ "step": 2019
+ },
+ {
+ "epoch": 28.05574912891986,
+ "grad_norm": 0.06085439771413803,
+ "learning_rate": 0.0002581194567559979,
+ "loss": 1.913049578666687,
+ "step": 2020
+ },
+ {
+ "epoch": 28.069686411149824,
+ "grad_norm": 0.06129859387874603,
+ "learning_rate": 0.00025785594964030365,
+ "loss": 1.9181420803070068,
+ "step": 2021
+ },
+ {
+ "epoch": 28.083623693379792,
+ "grad_norm": 0.06114889681339264,
+ "learning_rate": 0.0002575924788963554,
+ "loss": 1.905306339263916,
+ "step": 2022
+ },
+ {
+ "epoch": 28.097560975609756,
+ "grad_norm": 0.05999523028731346,
+ "learning_rate": 0.0002573290447364268,
+ "loss": 1.9111361503601074,
+ "step": 2023
+ },
+ {
+ "epoch": 28.11149825783972,
+ "grad_norm": 0.059980180114507675,
+ "learning_rate": 0.0002570656473727619,
+ "loss": 1.9141806364059448,
+ "step": 2024
+ },
+ {
+ "epoch": 28.125435540069688,
+ "grad_norm": 0.06263387203216553,
+ "learning_rate": 0.0002568022870175752,
+ "loss": 1.9160103797912598,
+ "step": 2025
+ },
+ {
+ "epoch": 28.139372822299652,
+ "grad_norm": 0.06106845661997795,
+ "learning_rate": 0.00025653896388305134,
+ "loss": 1.9279768466949463,
+ "step": 2026
+ },
+ {
+ "epoch": 28.153310104529616,
+ "grad_norm": 0.060402341187000275,
+ "learning_rate": 0.0002562756781813453,
+ "loss": 1.9093596935272217,
+ "step": 2027
+ },
+ {
+ "epoch": 28.16724738675958,
+ "grad_norm": 0.062007319182157516,
+ "learning_rate": 0.00025601243012458126,
+ "loss": 1.9311325550079346,
+ "step": 2028
+ },
+ {
+ "epoch": 28.181184668989548,
+ "grad_norm": 0.06392303109169006,
+ "learning_rate": 0.00025574921992485366,
+ "loss": 1.9102120399475098,
+ "step": 2029
+ },
+ {
+ "epoch": 28.195121951219512,
+ "grad_norm": 0.06318432092666626,
+ "learning_rate": 0.000255486047794226,
+ "loss": 1.919282078742981,
+ "step": 2030
+ },
+ {
+ "epoch": 28.209059233449477,
+ "grad_norm": 0.06065482273697853,
+ "learning_rate": 0.0002552229139447316,
+ "loss": 1.9156081676483154,
+ "step": 2031
+ },
+ {
+ "epoch": 28.222996515679444,
+ "grad_norm": 0.061966441571712494,
+ "learning_rate": 0.00025495981858837235,
+ "loss": 1.914115071296692,
+ "step": 2032
+ },
+ {
+ "epoch": 28.23693379790941,
+ "grad_norm": 0.06226721405982971,
+ "learning_rate": 0.0002546967619371195,
+ "loss": 1.9121596813201904,
+ "step": 2033
+ },
+ {
+ "epoch": 28.250871080139373,
+ "grad_norm": 0.06150427833199501,
+ "learning_rate": 0.0002544337442029133,
+ "loss": 1.9173963069915771,
+ "step": 2034
+ },
+ {
+ "epoch": 28.264808362369337,
+ "grad_norm": 0.06378372013568878,
+ "learning_rate": 0.00025417076559766194,
+ "loss": 1.909637451171875,
+ "step": 2035
+ },
+ {
+ "epoch": 28.278745644599304,
+ "grad_norm": 0.06366439908742905,
+ "learning_rate": 0.000253907826333243,
+ "loss": 1.9096641540527344,
+ "step": 2036
+ },
+ {
+ "epoch": 28.29268292682927,
+ "grad_norm": 0.0645628497004509,
+ "learning_rate": 0.00025364492662150145,
+ "loss": 1.919980525970459,
+ "step": 2037
+ },
+ {
+ "epoch": 28.306620209059233,
+ "grad_norm": 0.06325099617242813,
+ "learning_rate": 0.0002533820666742514,
+ "loss": 1.9110815525054932,
+ "step": 2038
+ },
+ {
+ "epoch": 28.320557491289197,
+ "grad_norm": 0.06190553680062294,
+ "learning_rate": 0.00025311924670327364,
+ "loss": 1.9132925271987915,
+ "step": 2039
+ },
+ {
+ "epoch": 28.334494773519165,
+ "grad_norm": 0.066350057721138,
+ "learning_rate": 0.00025285646692031804,
+ "loss": 1.9073128700256348,
+ "step": 2040
+ },
+ {
+ "epoch": 28.34843205574913,
+ "grad_norm": 0.06301865726709366,
+ "learning_rate": 0.0002525937275371013,
+ "loss": 1.8958029747009277,
+ "step": 2041
+ },
+ {
+ "epoch": 28.362369337979093,
+ "grad_norm": 0.06601684540510178,
+ "learning_rate": 0.00025233102876530785,
+ "loss": 1.9298090934753418,
+ "step": 2042
+ },
+ {
+ "epoch": 28.37630662020906,
+ "grad_norm": 0.06607081741094589,
+ "learning_rate": 0.0002520683708165894,
+ "loss": 1.9166982173919678,
+ "step": 2043
+ },
+ {
+ "epoch": 28.390243902439025,
+ "grad_norm": 0.06442136317491531,
+ "learning_rate": 0.0002518057539025646,
+ "loss": 1.901548981666565,
+ "step": 2044
+ },
+ {
+ "epoch": 28.40418118466899,
+ "grad_norm": 0.06346907466650009,
+ "learning_rate": 0.00025154317823481917,
+ "loss": 1.913223147392273,
+ "step": 2045
+ },
+ {
+ "epoch": 28.418118466898953,
+ "grad_norm": 0.06854342669248581,
+ "learning_rate": 0.0002512806440249056,
+ "loss": 1.912400722503662,
+ "step": 2046
+ },
+ {
+ "epoch": 28.43205574912892,
+ "grad_norm": 0.0666179209947586,
+ "learning_rate": 0.00025101815148434296,
+ "loss": 1.917931318283081,
+ "step": 2047
+ },
+ {
+ "epoch": 28.445993031358885,
+ "grad_norm": 0.06367912888526917,
+ "learning_rate": 0.00025075570082461684,
+ "loss": 1.9296393394470215,
+ "step": 2048
+ },
+ {
+ "epoch": 28.45993031358885,
+ "grad_norm": 0.06878827512264252,
+ "learning_rate": 0.0002504932922571789,
+ "loss": 1.9146850109100342,
+ "step": 2049
+ },
+ {
+ "epoch": 28.473867595818817,
+ "grad_norm": 0.06371448934078217,
+ "learning_rate": 0.00025023092599344706,
+ "loss": 1.909759521484375,
+ "step": 2050
+ },
+ {
+ "epoch": 28.48780487804878,
+ "grad_norm": 0.06354286521673203,
+ "learning_rate": 0.0002499686022448049,
+ "loss": 1.9349541664123535,
+ "step": 2051
+ },
+ {
+ "epoch": 28.501742160278745,
+ "grad_norm": 0.06779763847589493,
+ "learning_rate": 0.00024970632122260216,
+ "loss": 1.913719654083252,
+ "step": 2052
+ },
+ {
+ "epoch": 28.51567944250871,
+ "grad_norm": 0.06543827801942825,
+ "learning_rate": 0.0002494440831381538,
+ "loss": 1.9296395778656006,
+ "step": 2053
+ },
+ {
+ "epoch": 28.529616724738677,
+ "grad_norm": 0.06395813822746277,
+ "learning_rate": 0.00024918188820274016,
+ "loss": 1.9255974292755127,
+ "step": 2054
+ },
+ {
+ "epoch": 28.54355400696864,
+ "grad_norm": 0.0646572858095169,
+ "learning_rate": 0.0002489197366276073,
+ "loss": 1.9387515783309937,
+ "step": 2055
+ },
+ {
+ "epoch": 28.557491289198605,
+ "grad_norm": 0.06319864094257355,
+ "learning_rate": 0.0002486576286239657,
+ "loss": 1.9284127950668335,
+ "step": 2056
+ },
+ {
+ "epoch": 28.571428571428573,
+ "grad_norm": 0.065260149538517,
+ "learning_rate": 0.0002483955644029913,
+ "loss": 1.9322850704193115,
+ "step": 2057
+ },
+ {
+ "epoch": 28.585365853658537,
+ "grad_norm": 0.06620555371046066,
+ "learning_rate": 0.0002481335441758243,
+ "loss": 1.9043277502059937,
+ "step": 2058
+ },
+ {
+ "epoch": 28.5993031358885,
+ "grad_norm": 0.06358697265386581,
+ "learning_rate": 0.0002478715681535699,
+ "loss": 1.9008917808532715,
+ "step": 2059
+ },
+ {
+ "epoch": 28.613240418118465,
+ "grad_norm": 0.06863846629858017,
+ "learning_rate": 0.00024760963654729717,
+ "loss": 1.9327411651611328,
+ "step": 2060
+ },
+ {
+ "epoch": 28.627177700348433,
+ "grad_norm": 0.06971991807222366,
+ "learning_rate": 0.0002473477495680397,
+ "loss": 1.9262962341308594,
+ "step": 2061
+ },
+ {
+ "epoch": 28.641114982578397,
+ "grad_norm": 0.06454122811555862,
+ "learning_rate": 0.00024708590742679546,
+ "loss": 1.9252219200134277,
+ "step": 2062
+ },
+ {
+ "epoch": 28.65505226480836,
+ "grad_norm": 0.0696180909872055,
+ "learning_rate": 0.00024682411033452546,
+ "loss": 1.909650444984436,
+ "step": 2063
+ },
+ {
+ "epoch": 28.66898954703833,
+ "grad_norm": 0.06893020123243332,
+ "learning_rate": 0.0002465623585021553,
+ "loss": 1.9374496936798096,
+ "step": 2064
+ },
+ {
+ "epoch": 28.682926829268293,
+ "grad_norm": 0.06522615998983383,
+ "learning_rate": 0.0002463006521405733,
+ "loss": 1.9298205375671387,
+ "step": 2065
+ },
+ {
+ "epoch": 28.696864111498257,
+ "grad_norm": 0.06601646542549133,
+ "learning_rate": 0.0002460389914606319,
+ "loss": 1.921603798866272,
+ "step": 2066
+ },
+ {
+ "epoch": 28.71080139372822,
+ "grad_norm": 0.06664327532052994,
+ "learning_rate": 0.00024577737667314615,
+ "loss": 1.9233787059783936,
+ "step": 2067
+ },
+ {
+ "epoch": 28.72473867595819,
+ "grad_norm": 0.06673416495323181,
+ "learning_rate": 0.00024551580798889446,
+ "loss": 1.9446074962615967,
+ "step": 2068
+ },
+ {
+ "epoch": 28.738675958188153,
+ "grad_norm": 0.06593875586986542,
+ "learning_rate": 0.00024525428561861804,
+ "loss": 1.92313814163208,
+ "step": 2069
+ },
+ {
+ "epoch": 28.752613240418118,
+ "grad_norm": 0.06456844508647919,
+ "learning_rate": 0.0002449928097730207,
+ "loss": 1.944153070449829,
+ "step": 2070
+ },
+ {
+ "epoch": 28.766550522648085,
+ "grad_norm": 0.06549357622861862,
+ "learning_rate": 0.00024473138066276876,
+ "loss": 1.9299695491790771,
+ "step": 2071
+ },
+ {
+ "epoch": 28.78048780487805,
+ "grad_norm": 0.0650298222899437,
+ "learning_rate": 0.0002444699984984909,
+ "loss": 1.9266353845596313,
+ "step": 2072
+ },
+ {
+ "epoch": 28.794425087108014,
+ "grad_norm": 0.06307881325483322,
+ "learning_rate": 0.0002442086634907782,
+ "loss": 1.9165664911270142,
+ "step": 2073
+ },
+ {
+ "epoch": 28.808362369337978,
+ "grad_norm": 0.06324006617069244,
+ "learning_rate": 0.00024394737585018328,
+ "loss": 1.9054509401321411,
+ "step": 2074
+ },
+ {
+ "epoch": 28.822299651567945,
+ "grad_norm": 0.06384851038455963,
+ "learning_rate": 0.00024368613578722113,
+ "loss": 1.9158889055252075,
+ "step": 2075
+ },
+ {
+ "epoch": 28.83623693379791,
+ "grad_norm": 0.06377598643302917,
+ "learning_rate": 0.00024342494351236799,
+ "loss": 1.919345736503601,
+ "step": 2076
+ },
+ {
+ "epoch": 28.850174216027874,
+ "grad_norm": 0.0630112960934639,
+ "learning_rate": 0.0002431637992360618,
+ "loss": 1.935530662536621,
+ "step": 2077
+ },
+ {
+ "epoch": 28.86411149825784,
+ "grad_norm": 0.06481339782476425,
+ "learning_rate": 0.00024290270316870184,
+ "loss": 1.927825927734375,
+ "step": 2078
+ },
+ {
+ "epoch": 28.878048780487806,
+ "grad_norm": 0.06289646029472351,
+ "learning_rate": 0.0002426416555206484,
+ "loss": 1.9241056442260742,
+ "step": 2079
+ },
+ {
+ "epoch": 28.89198606271777,
+ "grad_norm": 0.06385444849729538,
+ "learning_rate": 0.000242380656502223,
+ "loss": 1.9496092796325684,
+ "step": 2080
+ },
+ {
+ "epoch": 28.905923344947734,
+ "grad_norm": 0.06434157490730286,
+ "learning_rate": 0.00024211970632370756,
+ "loss": 1.945327639579773,
+ "step": 2081
+ },
+ {
+ "epoch": 28.9198606271777,
+ "grad_norm": 0.06392986327409744,
+ "learning_rate": 0.0002418588051953453,
+ "loss": 1.935096025466919,
+ "step": 2082
+ },
+ {
+ "epoch": 28.933797909407666,
+ "grad_norm": 0.06517285853624344,
+ "learning_rate": 0.0002415979533273392,
+ "loss": 1.9311943054199219,
+ "step": 2083
+ },
+ {
+ "epoch": 28.94773519163763,
+ "grad_norm": 0.06618054956197739,
+ "learning_rate": 0.0002413371509298531,
+ "loss": 1.9326963424682617,
+ "step": 2084
+ },
+ {
+ "epoch": 28.961672473867594,
+ "grad_norm": 0.06552256643772125,
+ "learning_rate": 0.00024107639821301078,
+ "loss": 1.918696403503418,
+ "step": 2085
+ },
+ {
+ "epoch": 28.975609756097562,
+ "grad_norm": 0.06556595861911774,
+ "learning_rate": 0.00024081569538689587,
+ "loss": 1.9261362552642822,
+ "step": 2086
+ },
+ {
+ "epoch": 28.989547038327526,
+ "grad_norm": 0.06585165858268738,
+ "learning_rate": 0.0002405550426615521,
+ "loss": 1.9310712814331055,
+ "step": 2087
+ },
+ {
+ "epoch": 29.0,
+ "grad_norm": 0.053358353674411774,
+ "learning_rate": 0.00024029444024698248,
+ "loss": 1.4310487508773804,
+ "step": 2088
+ },
+ {
+ "epoch": 29.0,
+ "eval_loss": 0.6385146975517273,
+ "eval_runtime": 37.1743,
+ "eval_samples_per_second": 65.691,
+ "eval_steps_per_second": 0.538,
+ "step": 2088
+ },
+ {
+ "epoch": 29.013937282229964,
+ "grad_norm": 0.06348510086536407,
+ "learning_rate": 0.00024003388835314981,
+ "loss": 1.902433156967163,
+ "step": 2089
+ },
+ {
+ "epoch": 29.027874564459932,
+ "grad_norm": 0.06517558544874191,
+ "learning_rate": 0.00023977338718997595,
+ "loss": 1.9010097980499268,
+ "step": 2090
+ },
+ {
+ "epoch": 29.041811846689896,
+ "grad_norm": 0.06065843999385834,
+ "learning_rate": 0.00023951293696734195,
+ "loss": 1.8971004486083984,
+ "step": 2091
+ },
+ {
+ "epoch": 29.05574912891986,
+ "grad_norm": 0.06288564950227737,
+ "learning_rate": 0.00023925253789508806,
+ "loss": 1.895255208015442,
+ "step": 2092
+ },
+ {
+ "epoch": 29.069686411149824,
+ "grad_norm": 0.06176576018333435,
+ "learning_rate": 0.00023899219018301286,
+ "loss": 1.895385503768921,
+ "step": 2093
+ },
+ {
+ "epoch": 29.083623693379792,
+ "grad_norm": 0.06371054798364639,
+ "learning_rate": 0.00023873189404087405,
+ "loss": 1.8836419582366943,
+ "step": 2094
+ },
+ {
+ "epoch": 29.097560975609756,
+ "grad_norm": 0.06175517290830612,
+ "learning_rate": 0.00023847164967838726,
+ "loss": 1.8960576057434082,
+ "step": 2095
+ },
+ {
+ "epoch": 29.11149825783972,
+ "grad_norm": 0.06139659136533737,
+ "learning_rate": 0.00023821145730522692,
+ "loss": 1.8820221424102783,
+ "step": 2096
+ },
+ {
+ "epoch": 29.125435540069688,
+ "grad_norm": 0.06477366387844086,
+ "learning_rate": 0.0002379513171310251,
+ "loss": 1.8959964513778687,
+ "step": 2097
+ },
+ {
+ "epoch": 29.139372822299652,
+ "grad_norm": 0.060843080282211304,
+ "learning_rate": 0.00023769122936537207,
+ "loss": 1.8921177387237549,
+ "step": 2098
+ },
+ {
+ "epoch": 29.153310104529616,
+ "grad_norm": 0.06286641955375671,
+ "learning_rate": 0.00023743119421781614,
+ "loss": 1.883134365081787,
+ "step": 2099
+ },
+ {
+ "epoch": 29.16724738675958,
+ "grad_norm": 0.0616721510887146,
+ "learning_rate": 0.00023717121189786256,
+ "loss": 1.8961443901062012,
+ "step": 2100
+ },
+ {
+ "epoch": 29.181184668989548,
+ "grad_norm": 0.06490568071603775,
+ "learning_rate": 0.00023691128261497463,
+ "loss": 1.8786497116088867,
+ "step": 2101
+ },
+ {
+ "epoch": 29.195121951219512,
+ "grad_norm": 0.06612647324800491,
+ "learning_rate": 0.0002366514065785725,
+ "loss": 1.8977265357971191,
+ "step": 2102
+ },
+ {
+ "epoch": 29.209059233449477,
+ "grad_norm": 0.0625205710530281,
+ "learning_rate": 0.00023639158399803382,
+ "loss": 1.8995720148086548,
+ "step": 2103
+ },
+ {
+ "epoch": 29.222996515679444,
+ "grad_norm": 0.0733620822429657,
+ "learning_rate": 0.0002361318150826927,
+ "loss": 1.896169662475586,
+ "step": 2104
+ },
+ {
+ "epoch": 29.23693379790941,
+ "grad_norm": 0.0632617399096489,
+ "learning_rate": 0.0002358721000418404,
+ "loss": 1.8905175924301147,
+ "step": 2105
+ },
+ {
+ "epoch": 29.250871080139373,
+ "grad_norm": 0.06658294796943665,
+ "learning_rate": 0.00023561243908472472,
+ "loss": 1.9076403379440308,
+ "step": 2106
+ },
+ {
+ "epoch": 29.264808362369337,
+ "grad_norm": 0.066060371696949,
+ "learning_rate": 0.00023535283242054954,
+ "loss": 1.8913660049438477,
+ "step": 2107
+ },
+ {
+ "epoch": 29.278745644599304,
+ "grad_norm": 0.0640917718410492,
+ "learning_rate": 0.00023509328025847565,
+ "loss": 1.902782678604126,
+ "step": 2108
+ },
+ {
+ "epoch": 29.29268292682927,
+ "grad_norm": 0.06251244992017746,
+ "learning_rate": 0.00023483378280761907,
+ "loss": 1.8909555673599243,
+ "step": 2109
+ },
+ {
+ "epoch": 29.306620209059233,
+ "grad_norm": 0.06345900148153305,
+ "learning_rate": 0.0002345743402770527,
+ "loss": 1.8921617269515991,
+ "step": 2110
+ },
+ {
+ "epoch": 29.320557491289197,
+ "grad_norm": 0.0616324357688427,
+ "learning_rate": 0.0002343149528758042,
+ "loss": 1.908210277557373,
+ "step": 2111
+ },
+ {
+ "epoch": 29.334494773519165,
+ "grad_norm": 0.06260500848293304,
+ "learning_rate": 0.00023405562081285766,
+ "loss": 1.8987236022949219,
+ "step": 2112
+ },
+ {
+ "epoch": 29.34843205574913,
+ "grad_norm": 0.06122080609202385,
+ "learning_rate": 0.0002337963442971522,
+ "loss": 1.8801190853118896,
+ "step": 2113
+ },
+ {
+ "epoch": 29.362369337979093,
+ "grad_norm": 0.06256433576345444,
+ "learning_rate": 0.00023353712353758212,
+ "loss": 1.8950425386428833,
+ "step": 2114
+ },
+ {
+ "epoch": 29.37630662020906,
+ "grad_norm": 0.06358595192432404,
+ "learning_rate": 0.00023327795874299704,
+ "loss": 1.8783059120178223,
+ "step": 2115
+ },
+ {
+ "epoch": 29.390243902439025,
+ "grad_norm": 0.06162576004862785,
+ "learning_rate": 0.0002330188501222012,
+ "loss": 1.9105693101882935,
+ "step": 2116
+ },
+ {
+ "epoch": 29.40418118466899,
+ "grad_norm": 0.06342068314552307,
+ "learning_rate": 0.0002327597978839538,
+ "loss": 1.90647554397583,
+ "step": 2117
+ },
+ {
+ "epoch": 29.418118466898953,
+ "grad_norm": 0.06257889419794083,
+ "learning_rate": 0.00023250080223696852,
+ "loss": 1.9060969352722168,
+ "step": 2118
+ },
+ {
+ "epoch": 29.43205574912892,
+ "grad_norm": 0.06276524066925049,
+ "learning_rate": 0.00023224186338991352,
+ "loss": 1.9064395427703857,
+ "step": 2119
+ },
+ {
+ "epoch": 29.445993031358885,
+ "grad_norm": 0.06155265495181084,
+ "learning_rate": 0.0002319829815514112,
+ "loss": 1.906682014465332,
+ "step": 2120
+ },
+ {
+ "epoch": 29.45993031358885,
+ "grad_norm": 0.06252801418304443,
+ "learning_rate": 0.00023172415693003789,
+ "loss": 1.9077496528625488,
+ "step": 2121
+ },
+ {
+ "epoch": 29.473867595818817,
+ "grad_norm": 0.06420299410820007,
+ "learning_rate": 0.000231465389734324,
+ "loss": 1.9100978374481201,
+ "step": 2122
+ },
+ {
+ "epoch": 29.48780487804878,
+ "grad_norm": 0.06297800689935684,
+ "learning_rate": 0.00023120668017275346,
+ "loss": 1.8885812759399414,
+ "step": 2123
+ },
+ {
+ "epoch": 29.501742160278745,
+ "grad_norm": 0.06437410414218903,
+ "learning_rate": 0.00023094802845376403,
+ "loss": 1.9056107997894287,
+ "step": 2124
+ },
+ {
+ "epoch": 29.51567944250871,
+ "grad_norm": 0.06496672332286835,
+ "learning_rate": 0.00023068943478574662,
+ "loss": 1.8950653076171875,
+ "step": 2125
+ },
+ {
+ "epoch": 29.529616724738677,
+ "grad_norm": 0.06434459984302521,
+ "learning_rate": 0.00023043089937704541,
+ "loss": 1.9208341836929321,
+ "step": 2126
+ },
+ {
+ "epoch": 29.54355400696864,
+ "grad_norm": 0.0647054985165596,
+ "learning_rate": 0.00023017242243595796,
+ "loss": 1.9089730978012085,
+ "step": 2127
+ },
+ {
+ "epoch": 29.557491289198605,
+ "grad_norm": 0.06392117589712143,
+ "learning_rate": 0.00022991400417073427,
+ "loss": 1.895066261291504,
+ "step": 2128
+ },
+ {
+ "epoch": 29.571428571428573,
+ "grad_norm": 0.0638301819562912,
+ "learning_rate": 0.00022965564478957739,
+ "loss": 1.9062610864639282,
+ "step": 2129
+ },
+ {
+ "epoch": 29.585365853658537,
+ "grad_norm": 0.06492150574922562,
+ "learning_rate": 0.0002293973445006427,
+ "loss": 1.9190309047698975,
+ "step": 2130
+ },
+ {
+ "epoch": 29.5993031358885,
+ "grad_norm": 0.06228528916835785,
+ "learning_rate": 0.00022913910351203816,
+ "loss": 1.9015860557556152,
+ "step": 2131
+ },
+ {
+ "epoch": 29.613240418118465,
+ "grad_norm": 0.06274473667144775,
+ "learning_rate": 0.00022888092203182377,
+ "loss": 1.9092034101486206,
+ "step": 2132
+ },
+ {
+ "epoch": 29.627177700348433,
+ "grad_norm": 0.06517026573419571,
+ "learning_rate": 0.00022862280026801182,
+ "loss": 1.9104348421096802,
+ "step": 2133
+ },
+ {
+ "epoch": 29.641114982578397,
+ "grad_norm": 0.06522919237613678,
+ "learning_rate": 0.00022836473842856623,
+ "loss": 1.906738042831421,
+ "step": 2134
+ },
+ {
+ "epoch": 29.65505226480836,
+ "grad_norm": 0.06278976052999496,
+ "learning_rate": 0.00022810673672140272,
+ "loss": 1.9056813716888428,
+ "step": 2135
+ },
+ {
+ "epoch": 29.66898954703833,
+ "grad_norm": 0.06465253978967667,
+ "learning_rate": 0.0002278487953543889,
+ "loss": 1.9165875911712646,
+ "step": 2136
+ },
+ {
+ "epoch": 29.682926829268293,
+ "grad_norm": 0.0656580775976181,
+ "learning_rate": 0.00022759091453534308,
+ "loss": 1.9225130081176758,
+ "step": 2137
+ },
+ {
+ "epoch": 29.696864111498257,
+ "grad_norm": 0.0625176951289177,
+ "learning_rate": 0.00022733309447203553,
+ "loss": 1.9104106426239014,
+ "step": 2138
+ },
+ {
+ "epoch": 29.71080139372822,
+ "grad_norm": 0.06598987430334091,
+ "learning_rate": 0.00022707533537218695,
+ "loss": 1.9182713031768799,
+ "step": 2139
+ },
+ {
+ "epoch": 29.72473867595819,
+ "grad_norm": 0.063861183822155,
+ "learning_rate": 0.00022681763744346938,
+ "loss": 1.9201741218566895,
+ "step": 2140
+ },
+ {
+ "epoch": 29.738675958188153,
+ "grad_norm": 0.065862737596035,
+ "learning_rate": 0.00022656000089350524,
+ "loss": 1.8971748352050781,
+ "step": 2141
+ },
+ {
+ "epoch": 29.752613240418118,
+ "grad_norm": 0.06543151289224625,
+ "learning_rate": 0.00022630242592986766,
+ "loss": 1.9031867980957031,
+ "step": 2142
+ },
+ {
+ "epoch": 29.766550522648085,
+ "grad_norm": 0.06437384337186813,
+ "learning_rate": 0.0002260449127600803,
+ "loss": 1.9082727432250977,
+ "step": 2143
+ },
+ {
+ "epoch": 29.78048780487805,
+ "grad_norm": 0.06707995384931564,
+ "learning_rate": 0.0002257874615916166,
+ "loss": 1.920899748802185,
+ "step": 2144
+ },
+ {
+ "epoch": 29.794425087108014,
+ "grad_norm": 0.06488589942455292,
+ "learning_rate": 0.00022553007263190067,
+ "loss": 1.901809811592102,
+ "step": 2145
+ },
+ {
+ "epoch": 29.808362369337978,
+ "grad_norm": 0.06581971049308777,
+ "learning_rate": 0.00022527274608830574,
+ "loss": 1.9137091636657715,
+ "step": 2146
+ },
+ {
+ "epoch": 29.822299651567945,
+ "grad_norm": 0.06502900272607803,
+ "learning_rate": 0.0002250154821681555,
+ "loss": 1.9089921712875366,
+ "step": 2147
+ },
+ {
+ "epoch": 29.83623693379791,
+ "grad_norm": 0.06428463757038116,
+ "learning_rate": 0.0002247582810787227,
+ "loss": 1.907055139541626,
+ "step": 2148
+ },
+ {
+ "epoch": 29.850174216027874,
+ "grad_norm": 0.06490083038806915,
+ "learning_rate": 0.00022450114302722957,
+ "loss": 1.8931684494018555,
+ "step": 2149
+ },
+ {
+ "epoch": 29.86411149825784,
+ "grad_norm": 0.06519338488578796,
+ "learning_rate": 0.0002242440682208477,
+ "loss": 1.924349308013916,
+ "step": 2150
+ },
+ {
+ "epoch": 29.878048780487806,
+ "grad_norm": 0.06435994058847427,
+ "learning_rate": 0.00022398705686669748,
+ "loss": 1.9001131057739258,
+ "step": 2151
+ },
+ {
+ "epoch": 29.89198606271777,
+ "grad_norm": 0.06389366835355759,
+ "learning_rate": 0.0002237301091718485,
+ "loss": 1.9222545623779297,
+ "step": 2152
+ },
+ {
+ "epoch": 29.905923344947734,
+ "grad_norm": 0.06635434180498123,
+ "learning_rate": 0.00022347322534331865,
+ "loss": 1.9115610122680664,
+ "step": 2153
+ },
+ {
+ "epoch": 29.9198606271777,
+ "grad_norm": 0.06362872570753098,
+ "learning_rate": 0.00022321640558807488,
+ "loss": 1.9033440351486206,
+ "step": 2154
+ },
+ {
+ "epoch": 29.933797909407666,
+ "grad_norm": 0.06656860560178757,
+ "learning_rate": 0.00022295965011303188,
+ "loss": 1.9024994373321533,
+ "step": 2155
+ },
+ {
+ "epoch": 29.94773519163763,
+ "grad_norm": 0.06287530809640884,
+ "learning_rate": 0.00022270295912505317,
+ "loss": 1.9141626358032227,
+ "step": 2156
+ },
+ {
+ "epoch": 29.961672473867594,
+ "grad_norm": 0.06594341993331909,
+ "learning_rate": 0.00022244633283095,
+ "loss": 1.9281123876571655,
+ "step": 2157
+ },
+ {
+ "epoch": 29.975609756097562,
+ "grad_norm": 0.06367179751396179,
+ "learning_rate": 0.0002221897714374814,
+ "loss": 1.9032683372497559,
+ "step": 2158
+ },
+ {
+ "epoch": 29.989547038327526,
+ "grad_norm": 0.06714081764221191,
+ "learning_rate": 0.00022193327515135445,
+ "loss": 1.9118046760559082,
+ "step": 2159
+ },
+ {
+ "epoch": 30.0,
+ "grad_norm": 0.05437680333852768,
+ "learning_rate": 0.00022167684417922337,
+ "loss": 1.4319559335708618,
+ "step": 2160
+ },
+ {
+ "epoch": 30.0,
+ "eval_loss": 0.6395835280418396,
+ "eval_runtime": 47.0869,
+ "eval_samples_per_second": 51.862,
+ "eval_steps_per_second": 0.425,
+ "step": 2160
+ },
+ {
+ "epoch": 30.013937282229964,
+ "grad_norm": 0.061811935156583786,
+ "learning_rate": 0.00022142047872769014,
+ "loss": 1.8821682929992676,
+ "step": 2161
+ },
+ {
+ "epoch": 30.027874564459932,
+ "grad_norm": 0.060412414371967316,
+ "learning_rate": 0.00022116417900330365,
+ "loss": 1.8725709915161133,
+ "step": 2162
+ },
+ {
+ "epoch": 30.041811846689896,
+ "grad_norm": 0.06219486892223358,
+ "learning_rate": 0.00022090794521255997,
+ "loss": 1.8726820945739746,
+ "step": 2163
+ },
+ {
+ "epoch": 30.05574912891986,
+ "grad_norm": 0.061067480593919754,
+ "learning_rate": 0.00022065177756190214,
+ "loss": 1.8728303909301758,
+ "step": 2164
+ },
+ {
+ "epoch": 30.069686411149824,
+ "grad_norm": 0.05880453437566757,
+ "learning_rate": 0.00022039567625771968,
+ "loss": 1.8877463340759277,
+ "step": 2165
+ },
+ {
+ "epoch": 30.083623693379792,
+ "grad_norm": 0.06127414479851723,
+ "learning_rate": 0.0002201396415063489,
+ "loss": 1.8891685009002686,
+ "step": 2166
+ },
+ {
+ "epoch": 30.097560975609756,
+ "grad_norm": 0.05931060016155243,
+ "learning_rate": 0.00021988367351407227,
+ "loss": 1.8739129304885864,
+ "step": 2167
+ },
+ {
+ "epoch": 30.11149825783972,
+ "grad_norm": 0.06235767528414726,
+ "learning_rate": 0.00021962777248711872,
+ "loss": 1.8802381753921509,
+ "step": 2168
+ },
+ {
+ "epoch": 30.125435540069688,
+ "grad_norm": 0.05874861031770706,
+ "learning_rate": 0.00021937193863166292,
+ "loss": 1.8802909851074219,
+ "step": 2169
+ },
+ {
+ "epoch": 30.139372822299652,
+ "grad_norm": 0.061103034764528275,
+ "learning_rate": 0.00021911617215382564,
+ "loss": 1.884058952331543,
+ "step": 2170
+ },
+ {
+ "epoch": 30.153310104529616,
+ "grad_norm": 0.05980055406689644,
+ "learning_rate": 0.00021886047325967348,
+ "loss": 1.8738408088684082,
+ "step": 2171
+ },
+ {
+ "epoch": 30.16724738675958,
+ "grad_norm": 0.061332255601882935,
+ "learning_rate": 0.00021860484215521805,
+ "loss": 1.8697137832641602,
+ "step": 2172
+ },
+ {
+ "epoch": 30.181184668989548,
+ "grad_norm": 0.05897640436887741,
+ "learning_rate": 0.00021834927904641708,
+ "loss": 1.887247920036316,
+ "step": 2173
+ },
+ {
+ "epoch": 30.195121951219512,
+ "grad_norm": 0.06039821356534958,
+ "learning_rate": 0.00021809378413917296,
+ "loss": 1.8843746185302734,
+ "step": 2174
+ },
+ {
+ "epoch": 30.209059233449477,
+ "grad_norm": 0.06140084192156792,
+ "learning_rate": 0.00021783835763933344,
+ "loss": 1.8834288120269775,
+ "step": 2175
+ },
+ {
+ "epoch": 30.222996515679444,
+ "grad_norm": 0.06152097508311272,
+ "learning_rate": 0.0002175829997526909,
+ "loss": 1.881451964378357,
+ "step": 2176
+ },
+ {
+ "epoch": 30.23693379790941,
+ "grad_norm": 0.06128741800785065,
+ "learning_rate": 0.0002173277106849826,
+ "loss": 1.8756582736968994,
+ "step": 2177
+ },
+ {
+ "epoch": 30.250871080139373,
+ "grad_norm": 0.0608304888010025,
+ "learning_rate": 0.0002170724906418905,
+ "loss": 1.8877084255218506,
+ "step": 2178
+ },
+ {
+ "epoch": 30.264808362369337,
+ "grad_norm": 0.05938803777098656,
+ "learning_rate": 0.00021681733982904046,
+ "loss": 1.8796486854553223,
+ "step": 2179
+ },
+ {
+ "epoch": 30.278745644599304,
+ "grad_norm": 0.06101052463054657,
+ "learning_rate": 0.00021656225845200332,
+ "loss": 1.8800137042999268,
+ "step": 2180
+ },
+ {
+ "epoch": 30.29268292682927,
+ "grad_norm": 0.06140942499041557,
+ "learning_rate": 0.0002163072467162931,
+ "loss": 1.907020092010498,
+ "step": 2181
+ },
+ {
+ "epoch": 30.306620209059233,
+ "grad_norm": 0.06322148442268372,
+ "learning_rate": 0.00021605230482736845,
+ "loss": 1.8778784275054932,
+ "step": 2182
+ },
+ {
+ "epoch": 30.320557491289197,
+ "grad_norm": 0.06144942715764046,
+ "learning_rate": 0.00021579743299063122,
+ "loss": 1.8906503915786743,
+ "step": 2183
+ },
+ {
+ "epoch": 30.334494773519165,
+ "grad_norm": 0.06323464214801788,
+ "learning_rate": 0.00021554263141142726,
+ "loss": 1.892274260520935,
+ "step": 2184
+ },
+ {
+ "epoch": 30.34843205574913,
+ "grad_norm": 0.06276610493659973,
+ "learning_rate": 0.00021528790029504548,
+ "loss": 1.8861984014511108,
+ "step": 2185
+ },
+ {
+ "epoch": 30.362369337979093,
+ "grad_norm": 0.06291946768760681,
+ "learning_rate": 0.00021503323984671814,
+ "loss": 1.8812167644500732,
+ "step": 2186
+ },
+ {
+ "epoch": 30.37630662020906,
+ "grad_norm": 0.06449956446886063,
+ "learning_rate": 0.00021477865027162067,
+ "loss": 1.8725450038909912,
+ "step": 2187
+ },
+ {
+ "epoch": 30.390243902439025,
+ "grad_norm": 0.062199078500270844,
+ "learning_rate": 0.0002145241317748711,
+ "loss": 1.8660006523132324,
+ "step": 2188
+ },
+ {
+ "epoch": 30.40418118466899,
+ "grad_norm": 0.06578577309846878,
+ "learning_rate": 0.0002142696845615306,
+ "loss": 1.8998687267303467,
+ "step": 2189
+ },
+ {
+ "epoch": 30.418118466898953,
+ "grad_norm": 0.06263040006160736,
+ "learning_rate": 0.0002140153088366024,
+ "loss": 1.8895599842071533,
+ "step": 2190
+ },
+ {
+ "epoch": 30.43205574912892,
+ "grad_norm": 0.06379809230566025,
+ "learning_rate": 0.00021376100480503276,
+ "loss": 1.888756275177002,
+ "step": 2191
+ },
+ {
+ "epoch": 30.445993031358885,
+ "grad_norm": 0.06144513934850693,
+ "learning_rate": 0.00021350677267170973,
+ "loss": 1.8797111511230469,
+ "step": 2192
+ },
+ {
+ "epoch": 30.45993031358885,
+ "grad_norm": 0.06551753729581833,
+ "learning_rate": 0.00021325261264146342,
+ "loss": 1.8898788690567017,
+ "step": 2193
+ },
+ {
+ "epoch": 30.473867595818817,
+ "grad_norm": 0.0634821429848671,
+ "learning_rate": 0.00021299852491906616,
+ "loss": 1.9081072807312012,
+ "step": 2194
+ },
+ {
+ "epoch": 30.48780487804878,
+ "grad_norm": 0.06261540949344635,
+ "learning_rate": 0.00021274450970923167,
+ "loss": 1.8862106800079346,
+ "step": 2195
+ },
+ {
+ "epoch": 30.501742160278745,
+ "grad_norm": 0.06235577166080475,
+ "learning_rate": 0.0002124905672166156,
+ "loss": 1.8701283931732178,
+ "step": 2196
+ },
+ {
+ "epoch": 30.51567944250871,
+ "grad_norm": 0.06507014483213425,
+ "learning_rate": 0.0002122366976458146,
+ "loss": 1.906468152999878,
+ "step": 2197
+ },
+ {
+ "epoch": 30.529616724738677,
+ "grad_norm": 0.0635584145784378,
+ "learning_rate": 0.00021198290120136702,
+ "loss": 1.886523723602295,
+ "step": 2198
+ },
+ {
+ "epoch": 30.54355400696864,
+ "grad_norm": 0.06394219398498535,
+ "learning_rate": 0.0002117291780877519,
+ "loss": 1.8687143325805664,
+ "step": 2199
+ },
+ {
+ "epoch": 30.557491289198605,
+ "grad_norm": 0.06521911174058914,
+ "learning_rate": 0.00021147552850938941,
+ "loss": 1.885088324546814,
+ "step": 2200
+ },
+ {
+ "epoch": 30.571428571428573,
+ "grad_norm": 0.0646066814661026,
+ "learning_rate": 0.0002112219526706406,
+ "loss": 1.8981271982192993,
+ "step": 2201
+ },
+ {
+ "epoch": 30.585365853658537,
+ "grad_norm": 0.06708912551403046,
+ "learning_rate": 0.00021096845077580675,
+ "loss": 1.8949990272521973,
+ "step": 2202
+ },
+ {
+ "epoch": 30.5993031358885,
+ "grad_norm": 0.0656600221991539,
+ "learning_rate": 0.0002107150230291299,
+ "loss": 1.8876829147338867,
+ "step": 2203
+ },
+ {
+ "epoch": 30.613240418118465,
+ "grad_norm": 0.06315416842699051,
+ "learning_rate": 0.00021046166963479204,
+ "loss": 1.8786557912826538,
+ "step": 2204
+ },
+ {
+ "epoch": 30.627177700348433,
+ "grad_norm": 0.06558752804994583,
+ "learning_rate": 0.00021020839079691553,
+ "loss": 1.889142632484436,
+ "step": 2205
+ },
+ {
+ "epoch": 30.641114982578397,
+ "grad_norm": 0.06307908147573471,
+ "learning_rate": 0.00020995518671956256,
+ "loss": 1.8903149366378784,
+ "step": 2206
+ },
+ {
+ "epoch": 30.65505226480836,
+ "grad_norm": 0.06145390495657921,
+ "learning_rate": 0.00020970205760673493,
+ "loss": 1.8872840404510498,
+ "step": 2207
+ },
+ {
+ "epoch": 30.66898954703833,
+ "grad_norm": 0.06402356922626495,
+ "learning_rate": 0.00020944900366237453,
+ "loss": 1.8805838823318481,
+ "step": 2208
+ },
+ {
+ "epoch": 30.682926829268293,
+ "grad_norm": 0.06330732256174088,
+ "learning_rate": 0.00020919602509036195,
+ "loss": 1.8881486654281616,
+ "step": 2209
+ },
+ {
+ "epoch": 30.696864111498257,
+ "grad_norm": 0.06465929001569748,
+ "learning_rate": 0.0002089431220945178,
+ "loss": 1.877720594406128,
+ "step": 2210
+ },
+ {
+ "epoch": 30.71080139372822,
+ "grad_norm": 0.06697797030210495,
+ "learning_rate": 0.00020869029487860126,
+ "loss": 1.8768590688705444,
+ "step": 2211
+ },
+ {
+ "epoch": 30.72473867595819,
+ "grad_norm": 0.06605999171733856,
+ "learning_rate": 0.00020843754364631068,
+ "loss": 1.8825514316558838,
+ "step": 2212
+ },
+ {
+ "epoch": 30.738675958188153,
+ "grad_norm": 0.0656205341219902,
+ "learning_rate": 0.0002081848686012832,
+ "loss": 1.8852055072784424,
+ "step": 2213
+ },
+ {
+ "epoch": 30.752613240418118,
+ "grad_norm": 0.06713110208511353,
+ "learning_rate": 0.00020793226994709446,
+ "loss": 1.882007360458374,
+ "step": 2214
+ },
+ {
+ "epoch": 30.766550522648085,
+ "grad_norm": 0.06526081264019012,
+ "learning_rate": 0.0002076797478872588,
+ "loss": 1.8892399072647095,
+ "step": 2215
+ },
+ {
+ "epoch": 30.78048780487805,
+ "grad_norm": 0.06758946180343628,
+ "learning_rate": 0.00020742730262522844,
+ "loss": 1.8980051279067993,
+ "step": 2216
+ },
+ {
+ "epoch": 30.794425087108014,
+ "grad_norm": 0.06784503906965256,
+ "learning_rate": 0.00020717493436439433,
+ "loss": 1.8907029628753662,
+ "step": 2217
+ },
+ {
+ "epoch": 30.808362369337978,
+ "grad_norm": 0.06756821274757385,
+ "learning_rate": 0.00020692264330808455,
+ "loss": 1.8950631618499756,
+ "step": 2218
+ },
+ {
+ "epoch": 30.822299651567945,
+ "grad_norm": 0.06609930098056793,
+ "learning_rate": 0.00020667042965956587,
+ "loss": 1.8887443542480469,
+ "step": 2219
+ },
+ {
+ "epoch": 30.83623693379791,
+ "grad_norm": 0.06700558215379715,
+ "learning_rate": 0.00020641829362204195,
+ "loss": 1.900990605354309,
+ "step": 2220
+ },
+ {
+ "epoch": 30.850174216027874,
+ "grad_norm": 0.06835924834012985,
+ "learning_rate": 0.00020616623539865446,
+ "loss": 1.881005048751831,
+ "step": 2221
+ },
+ {
+ "epoch": 30.86411149825784,
+ "grad_norm": 0.06574281305074692,
+ "learning_rate": 0.00020591425519248213,
+ "loss": 1.8976192474365234,
+ "step": 2222
+ },
+ {
+ "epoch": 30.878048780487806,
+ "grad_norm": 0.06529807299375534,
+ "learning_rate": 0.00020566235320654069,
+ "loss": 1.8866150379180908,
+ "step": 2223
+ },
+ {
+ "epoch": 30.89198606271777,
+ "grad_norm": 0.06722450256347656,
+ "learning_rate": 0.00020541052964378323,
+ "loss": 1.9030026197433472,
+ "step": 2224
+ },
+ {
+ "epoch": 30.905923344947734,
+ "grad_norm": 0.06486845016479492,
+ "learning_rate": 0.00020515878470709928,
+ "loss": 1.8861298561096191,
+ "step": 2225
+ },
+ {
+ "epoch": 30.9198606271777,
+ "grad_norm": 0.06532816588878632,
+ "learning_rate": 0.00020490711859931545,
+ "loss": 1.893527626991272,
+ "step": 2226
+ },
+ {
+ "epoch": 30.933797909407666,
+ "grad_norm": 0.06626923382282257,
+ "learning_rate": 0.00020465553152319418,
+ "loss": 1.88838791847229,
+ "step": 2227
+ },
+ {
+ "epoch": 30.94773519163763,
+ "grad_norm": 0.0654103085398674,
+ "learning_rate": 0.00020440402368143492,
+ "loss": 1.9061450958251953,
+ "step": 2228
+ },
+ {
+ "epoch": 30.961672473867594,
+ "grad_norm": 0.06394780427217484,
+ "learning_rate": 0.00020415259527667299,
+ "loss": 1.908818244934082,
+ "step": 2229
+ },
+ {
+ "epoch": 30.975609756097562,
+ "grad_norm": 0.06630687415599823,
+ "learning_rate": 0.0002039012465114796,
+ "loss": 1.8836619853973389,
+ "step": 2230
+ },
+ {
+ "epoch": 30.989547038327526,
+ "grad_norm": 0.06586914509534836,
+ "learning_rate": 0.00020364997758836193,
+ "loss": 1.8967719078063965,
+ "step": 2231
+ },
+ {
+ "epoch": 31.0,
+ "grad_norm": 0.05284066125750542,
+ "learning_rate": 0.00020339878870976287,
+ "loss": 1.4147136211395264,
+ "step": 2232
+ },
+ {
+ "epoch": 31.0,
+ "eval_loss": 0.6414697170257568,
+ "eval_runtime": 39.9304,
+ "eval_samples_per_second": 61.156,
+ "eval_steps_per_second": 0.501,
+ "step": 2232
+ },
+ {
+ "epoch": 31.013937282229964,
+ "grad_norm": 0.060604438185691833,
+ "learning_rate": 0.00020314768007806077,
+ "loss": 1.8646475076675415,
+ "step": 2233
+ },
+ {
+ "epoch": 31.027874564459932,
+ "grad_norm": 0.06078824773430824,
+ "learning_rate": 0.00020289665189556923,
+ "loss": 1.8648875951766968,
+ "step": 2234
+ },
+ {
+ "epoch": 31.041811846689896,
+ "grad_norm": 0.06248131021857262,
+ "learning_rate": 0.00020264570436453707,
+ "loss": 1.8768644332885742,
+ "step": 2235
+ },
+ {
+ "epoch": 31.05574912891986,
+ "grad_norm": 0.06086263805627823,
+ "learning_rate": 0.00020239483768714843,
+ "loss": 1.870078682899475,
+ "step": 2236
+ },
+ {
+ "epoch": 31.069686411149824,
+ "grad_norm": 0.060540031641721725,
+ "learning_rate": 0.0002021440520655219,
+ "loss": 1.8600138425827026,
+ "step": 2237
+ },
+ {
+ "epoch": 31.083623693379792,
+ "grad_norm": 0.06146378070116043,
+ "learning_rate": 0.00020189334770171098,
+ "loss": 1.8661935329437256,
+ "step": 2238
+ },
+ {
+ "epoch": 31.097560975609756,
+ "grad_norm": 0.06294050812721252,
+ "learning_rate": 0.00020164272479770352,
+ "loss": 1.8623647689819336,
+ "step": 2239
+ },
+ {
+ "epoch": 31.11149825783972,
+ "grad_norm": 0.06037621200084686,
+ "learning_rate": 0.00020139218355542203,
+ "loss": 1.854023814201355,
+ "step": 2240
+ },
+ {
+ "epoch": 31.125435540069688,
+ "grad_norm": 0.0614016056060791,
+ "learning_rate": 0.000201141724176723,
+ "loss": 1.858170509338379,
+ "step": 2241
+ },
+ {
+ "epoch": 31.139372822299652,
+ "grad_norm": 0.062037430703639984,
+ "learning_rate": 0.0002008913468633969,
+ "loss": 1.8650360107421875,
+ "step": 2242
+ },
+ {
+ "epoch": 31.153310104529616,
+ "grad_norm": 0.05925912410020828,
+ "learning_rate": 0.00020064105181716847,
+ "loss": 1.8559834957122803,
+ "step": 2243
+ },
+ {
+ "epoch": 31.16724738675958,
+ "grad_norm": 0.06082075089216232,
+ "learning_rate": 0.00020039083923969564,
+ "loss": 1.86753511428833,
+ "step": 2244
+ },
+ {
+ "epoch": 31.181184668989548,
+ "grad_norm": 0.06053556874394417,
+ "learning_rate": 0.0002001407093325704,
+ "loss": 1.859229326248169,
+ "step": 2245
+ },
+ {
+ "epoch": 31.195121951219512,
+ "grad_norm": 0.059802569448947906,
+ "learning_rate": 0.0001998906622973177,
+ "loss": 1.8574810028076172,
+ "step": 2246
+ },
+ {
+ "epoch": 31.209059233449477,
+ "grad_norm": 0.05929112061858177,
+ "learning_rate": 0.0001996406983353961,
+ "loss": 1.870527744293213,
+ "step": 2247
+ },
+ {
+ "epoch": 31.222996515679444,
+ "grad_norm": 0.05963680520653725,
+ "learning_rate": 0.0001993908176481969,
+ "loss": 1.8654029369354248,
+ "step": 2248
+ },
+ {
+ "epoch": 31.23693379790941,
+ "grad_norm": 0.06305639445781708,
+ "learning_rate": 0.0001991410204370445,
+ "loss": 1.8621957302093506,
+ "step": 2249
+ },
+ {
+ "epoch": 31.250871080139373,
+ "grad_norm": 0.0604659803211689,
+ "learning_rate": 0.00019889130690319608,
+ "loss": 1.8467226028442383,
+ "step": 2250
+ },
+ {
+ "epoch": 31.264808362369337,
+ "grad_norm": 0.06070101633667946,
+ "learning_rate": 0.00019864167724784117,
+ "loss": 1.85858154296875,
+ "step": 2251
+ },
+ {
+ "epoch": 31.278745644599304,
+ "grad_norm": 0.06042332947254181,
+ "learning_rate": 0.00019839213167210213,
+ "loss": 1.860041618347168,
+ "step": 2252
+ },
+ {
+ "epoch": 31.29268292682927,
+ "grad_norm": 0.06108660250902176,
+ "learning_rate": 0.00019814267037703294,
+ "loss": 1.8745486736297607,
+ "step": 2253
+ },
+ {
+ "epoch": 31.306620209059233,
+ "grad_norm": 0.06323979049921036,
+ "learning_rate": 0.0001978932935636205,
+ "loss": 1.8638720512390137,
+ "step": 2254
+ },
+ {
+ "epoch": 31.320557491289197,
+ "grad_norm": 0.06100151315331459,
+ "learning_rate": 0.00019764400143278276,
+ "loss": 1.873995304107666,
+ "step": 2255
+ },
+ {
+ "epoch": 31.334494773519165,
+ "grad_norm": 0.06299260258674622,
+ "learning_rate": 0.00019739479418537018,
+ "loss": 1.856463074684143,
+ "step": 2256
+ },
+ {
+ "epoch": 31.34843205574913,
+ "grad_norm": 0.060268502682447433,
+ "learning_rate": 0.00019714567202216453,
+ "loss": 1.870614767074585,
+ "step": 2257
+ },
+ {
+ "epoch": 31.362369337979093,
+ "grad_norm": 0.06267309933900833,
+ "learning_rate": 0.00019689663514387896,
+ "loss": 1.8735413551330566,
+ "step": 2258
+ },
+ {
+ "epoch": 31.37630662020906,
+ "grad_norm": 0.0630616620182991,
+ "learning_rate": 0.00019664768375115798,
+ "loss": 1.87433660030365,
+ "step": 2259
+ },
+ {
+ "epoch": 31.390243902439025,
+ "grad_norm": 0.062905453145504,
+ "learning_rate": 0.00019639881804457723,
+ "loss": 1.8653037548065186,
+ "step": 2260
+ },
+ {
+ "epoch": 31.40418118466899,
+ "grad_norm": 0.061397816985845566,
+ "learning_rate": 0.00019615003822464342,
+ "loss": 1.8669100999832153,
+ "step": 2261
+ },
+ {
+ "epoch": 31.418118466898953,
+ "grad_norm": 0.06352730095386505,
+ "learning_rate": 0.00019590134449179371,
+ "loss": 1.8823096752166748,
+ "step": 2262
+ },
+ {
+ "epoch": 31.43205574912892,
+ "grad_norm": 0.06169911473989487,
+ "learning_rate": 0.00019565273704639648,
+ "loss": 1.8809747695922852,
+ "step": 2263
+ },
+ {
+ "epoch": 31.445993031358885,
+ "grad_norm": 0.06471487879753113,
+ "learning_rate": 0.00019540421608874994,
+ "loss": 1.8702677488327026,
+ "step": 2264
+ },
+ {
+ "epoch": 31.45993031358885,
+ "grad_norm": 0.062495868653059006,
+ "learning_rate": 0.0001951557818190831,
+ "loss": 1.881035566329956,
+ "step": 2265
+ },
+ {
+ "epoch": 31.473867595818817,
+ "grad_norm": 0.061863191425800323,
+ "learning_rate": 0.00019490743443755504,
+ "loss": 1.8691881895065308,
+ "step": 2266
+ },
+ {
+ "epoch": 31.48780487804878,
+ "grad_norm": 0.06295126676559448,
+ "learning_rate": 0.0001946591741442546,
+ "loss": 1.866331696510315,
+ "step": 2267
+ },
+ {
+ "epoch": 31.501742160278745,
+ "grad_norm": 0.06404458731412888,
+ "learning_rate": 0.00019441100113920076,
+ "loss": 1.8709323406219482,
+ "step": 2268
+ },
+ {
+ "epoch": 31.51567944250871,
+ "grad_norm": 0.06424364447593689,
+ "learning_rate": 0.00019416291562234192,
+ "loss": 1.860987901687622,
+ "step": 2269
+ },
+ {
+ "epoch": 31.529616724738677,
+ "grad_norm": 0.06346628814935684,
+ "learning_rate": 0.00019391491779355608,
+ "loss": 1.8733528852462769,
+ "step": 2270
+ },
+ {
+ "epoch": 31.54355400696864,
+ "grad_norm": 0.06380122900009155,
+ "learning_rate": 0.00019366700785265065,
+ "loss": 1.8605754375457764,
+ "step": 2271
+ },
+ {
+ "epoch": 31.557491289198605,
+ "grad_norm": 0.06407288461923599,
+ "learning_rate": 0.0001934191859993622,
+ "loss": 1.865129828453064,
+ "step": 2272
+ },
+ {
+ "epoch": 31.571428571428573,
+ "grad_norm": 0.06177213042974472,
+ "learning_rate": 0.00019317145243335642,
+ "loss": 1.8731110095977783,
+ "step": 2273
+ },
+ {
+ "epoch": 31.585365853658537,
+ "grad_norm": 0.0677371472120285,
+ "learning_rate": 0.0001929238073542276,
+ "loss": 1.8737413883209229,
+ "step": 2274
+ },
+ {
+ "epoch": 31.5993031358885,
+ "grad_norm": 0.0647529736161232,
+ "learning_rate": 0.00019267625096149903,
+ "loss": 1.867060661315918,
+ "step": 2275
+ },
+ {
+ "epoch": 31.613240418118465,
+ "grad_norm": 0.06501344591379166,
+ "learning_rate": 0.00019242878345462227,
+ "loss": 1.8647403717041016,
+ "step": 2276
+ },
+ {
+ "epoch": 31.627177700348433,
+ "grad_norm": 0.06636765599250793,
+ "learning_rate": 0.00019218140503297765,
+ "loss": 1.8598473072052002,
+ "step": 2277
+ },
+ {
+ "epoch": 31.641114982578397,
+ "grad_norm": 0.06625733524560928,
+ "learning_rate": 0.00019193411589587332,
+ "loss": 1.8797805309295654,
+ "step": 2278
+ },
+ {
+ "epoch": 31.65505226480836,
+ "grad_norm": 0.0652196854352951,
+ "learning_rate": 0.00019168691624254564,
+ "loss": 1.8820933103561401,
+ "step": 2279
+ },
+ {
+ "epoch": 31.66898954703833,
+ "grad_norm": 0.06613790988922119,
+ "learning_rate": 0.00019143980627215915,
+ "loss": 1.8773422241210938,
+ "step": 2280
+ },
+ {
+ "epoch": 31.682926829268293,
+ "grad_norm": 0.0657401978969574,
+ "learning_rate": 0.00019119278618380555,
+ "loss": 1.8706395626068115,
+ "step": 2281
+ },
+ {
+ "epoch": 31.696864111498257,
+ "grad_norm": 0.06442514061927795,
+ "learning_rate": 0.00019094585617650476,
+ "loss": 1.878519892692566,
+ "step": 2282
+ },
+ {
+ "epoch": 31.71080139372822,
+ "grad_norm": 0.06672950834035873,
+ "learning_rate": 0.00019069901644920366,
+ "loss": 1.876173973083496,
+ "step": 2283
+ },
+ {
+ "epoch": 31.72473867595819,
+ "grad_norm": 0.06492309272289276,
+ "learning_rate": 0.00019045226720077667,
+ "loss": 1.8842449188232422,
+ "step": 2284
+ },
+ {
+ "epoch": 31.738675958188153,
+ "grad_norm": 0.06469793617725372,
+ "learning_rate": 0.0001902056086300251,
+ "loss": 1.8798532485961914,
+ "step": 2285
+ },
+ {
+ "epoch": 31.752613240418118,
+ "grad_norm": 0.06608608365058899,
+ "learning_rate": 0.0001899590409356773,
+ "loss": 1.866950511932373,
+ "step": 2286
+ },
+ {
+ "epoch": 31.766550522648085,
+ "grad_norm": 0.06483180820941925,
+ "learning_rate": 0.00018971256431638854,
+ "loss": 1.873096227645874,
+ "step": 2287
+ },
+ {
+ "epoch": 31.78048780487805,
+ "grad_norm": 0.06410029530525208,
+ "learning_rate": 0.00018946617897074041,
+ "loss": 1.8798564672470093,
+ "step": 2288
+ },
+ {
+ "epoch": 31.794425087108014,
+ "grad_norm": 0.06440483778715134,
+ "learning_rate": 0.0001892198850972413,
+ "loss": 1.8675113916397095,
+ "step": 2289
+ },
+ {
+ "epoch": 31.808362369337978,
+ "grad_norm": 0.06469769030809402,
+ "learning_rate": 0.00018897368289432553,
+ "loss": 1.8644737005233765,
+ "step": 2290
+ },
+ {
+ "epoch": 31.822299651567945,
+ "grad_norm": 0.06366699188947678,
+ "learning_rate": 0.00018872757256035403,
+ "loss": 1.8632454872131348,
+ "step": 2291
+ },
+ {
+ "epoch": 31.83623693379791,
+ "grad_norm": 0.06567682325839996,
+ "learning_rate": 0.00018848155429361323,
+ "loss": 1.8711936473846436,
+ "step": 2292
+ },
+ {
+ "epoch": 31.850174216027874,
+ "grad_norm": 0.06415718793869019,
+ "learning_rate": 0.00018823562829231567,
+ "loss": 1.8836743831634521,
+ "step": 2293
+ },
+ {
+ "epoch": 31.86411149825784,
+ "grad_norm": 0.06531377136707306,
+ "learning_rate": 0.0001879897947545996,
+ "loss": 1.8687281608581543,
+ "step": 2294
+ },
+ {
+ "epoch": 31.878048780487806,
+ "grad_norm": 0.06425580382347107,
+ "learning_rate": 0.00018774405387852848,
+ "loss": 1.875110149383545,
+ "step": 2295
+ },
+ {
+ "epoch": 31.89198606271777,
+ "grad_norm": 0.06651245802640915,
+ "learning_rate": 0.00018749840586209144,
+ "loss": 1.881043791770935,
+ "step": 2296
+ },
+ {
+ "epoch": 31.905923344947734,
+ "grad_norm": 0.0645023062825203,
+ "learning_rate": 0.00018725285090320245,
+ "loss": 1.8830270767211914,
+ "step": 2297
+ },
+ {
+ "epoch": 31.9198606271777,
+ "grad_norm": 0.06700874119997025,
+ "learning_rate": 0.00018700738919970103,
+ "loss": 1.8654285669326782,
+ "step": 2298
+ },
+ {
+ "epoch": 31.933797909407666,
+ "grad_norm": 0.06646879017353058,
+ "learning_rate": 0.00018676202094935085,
+ "loss": 1.8897215127944946,
+ "step": 2299
+ },
+ {
+ "epoch": 31.94773519163763,
+ "grad_norm": 0.06660740822553635,
+ "learning_rate": 0.000186516746349841,
+ "loss": 1.8914703130722046,
+ "step": 2300
+ },
+ {
+ "epoch": 31.961672473867594,
+ "grad_norm": 0.06686484813690186,
+ "learning_rate": 0.0001862715655987847,
+ "loss": 1.889345407485962,
+ "step": 2301
+ },
+ {
+ "epoch": 31.975609756097562,
+ "grad_norm": 0.06631558388471603,
+ "learning_rate": 0.00018602647889371957,
+ "loss": 1.8859820365905762,
+ "step": 2302
+ },
+ {
+ "epoch": 31.989547038327526,
+ "grad_norm": 0.06582383811473846,
+ "learning_rate": 0.00018578148643210764,
+ "loss": 1.8652012348175049,
+ "step": 2303
+ },
+ {
+ "epoch": 32.0,
+ "grad_norm": 0.052844833582639694,
+ "learning_rate": 0.00018553658841133483,
+ "loss": 1.4002703428268433,
+ "step": 2304
+ },
+ {
+ "epoch": 32.0,
+ "eval_loss": 0.6424221396446228,
+ "eval_runtime": 37.5069,
+ "eval_samples_per_second": 65.108,
+ "eval_steps_per_second": 0.533,
+ "step": 2304
+ },
+ {
+ "epoch": 32.01393728222997,
+ "grad_norm": 0.05961986258625984,
+ "learning_rate": 0.00018529178502871117,
+ "loss": 1.854289174079895,
+ "step": 2305
+ },
+ {
+ "epoch": 32.02787456445993,
+ "grad_norm": 0.06249764561653137,
+ "learning_rate": 0.0001850470764814702,
+ "loss": 1.8544244766235352,
+ "step": 2306
+ },
+ {
+ "epoch": 32.041811846689896,
+ "grad_norm": 0.06160780042409897,
+ "learning_rate": 0.0001848024629667691,
+ "loss": 1.842755913734436,
+ "step": 2307
+ },
+ {
+ "epoch": 32.055749128919864,
+ "grad_norm": 0.06074569746851921,
+ "learning_rate": 0.00018455794468168887,
+ "loss": 1.8530092239379883,
+ "step": 2308
+ },
+ {
+ "epoch": 32.069686411149824,
+ "grad_norm": 0.059093352407217026,
+ "learning_rate": 0.00018431352182323322,
+ "loss": 1.8404085636138916,
+ "step": 2309
+ },
+ {
+ "epoch": 32.08362369337979,
+ "grad_norm": 0.06252843141555786,
+ "learning_rate": 0.0001840691945883293,
+ "loss": 1.8402471542358398,
+ "step": 2310
+ },
+ {
+ "epoch": 32.09756097560975,
+ "grad_norm": 0.062098030000925064,
+ "learning_rate": 0.00018382496317382715,
+ "loss": 1.8632150888442993,
+ "step": 2311
+ },
+ {
+ "epoch": 32.11149825783972,
+ "grad_norm": 0.060433197766542435,
+ "learning_rate": 0.0001835808277764997,
+ "loss": 1.8358535766601562,
+ "step": 2312
+ },
+ {
+ "epoch": 32.12543554006969,
+ "grad_norm": 0.062378350645303726,
+ "learning_rate": 0.00018333678859304222,
+ "loss": 1.8390008211135864,
+ "step": 2313
+ },
+ {
+ "epoch": 32.13937282229965,
+ "grad_norm": 0.06074725463986397,
+ "learning_rate": 0.00018309284582007274,
+ "loss": 1.858860731124878,
+ "step": 2314
+ },
+ {
+ "epoch": 32.153310104529616,
+ "grad_norm": 0.06083287298679352,
+ "learning_rate": 0.0001828489996541318,
+ "loss": 1.8486149311065674,
+ "step": 2315
+ },
+ {
+ "epoch": 32.167247386759584,
+ "grad_norm": 0.06116314232349396,
+ "learning_rate": 0.00018260525029168147,
+ "loss": 1.8581088781356812,
+ "step": 2316
+ },
+ {
+ "epoch": 32.181184668989545,
+ "grad_norm": 0.061406541615724564,
+ "learning_rate": 0.00018236159792910648,
+ "loss": 1.8591161966323853,
+ "step": 2317
+ },
+ {
+ "epoch": 32.19512195121951,
+ "grad_norm": 0.05874199792742729,
+ "learning_rate": 0.00018211804276271304,
+ "loss": 1.8300669193267822,
+ "step": 2318
+ },
+ {
+ "epoch": 32.20905923344948,
+ "grad_norm": 0.060864705592393875,
+ "learning_rate": 0.00018187458498872914,
+ "loss": 1.8424736261367798,
+ "step": 2319
+ },
+ {
+ "epoch": 32.22299651567944,
+ "grad_norm": 0.06172594800591469,
+ "learning_rate": 0.00018163122480330433,
+ "loss": 1.8516032695770264,
+ "step": 2320
+ },
+ {
+ "epoch": 32.23693379790941,
+ "grad_norm": 0.06272125989198685,
+ "learning_rate": 0.00018138796240250955,
+ "loss": 1.8525536060333252,
+ "step": 2321
+ },
+ {
+ "epoch": 32.250871080139376,
+ "grad_norm": 0.06103010103106499,
+ "learning_rate": 0.00018114479798233686,
+ "loss": 1.8574954271316528,
+ "step": 2322
+ },
+ {
+ "epoch": 32.26480836236934,
+ "grad_norm": 0.061883945018053055,
+ "learning_rate": 0.00018090173173869939,
+ "loss": 1.8559205532073975,
+ "step": 2323
+ },
+ {
+ "epoch": 32.278745644599304,
+ "grad_norm": 0.06176813691854477,
+ "learning_rate": 0.00018065876386743143,
+ "loss": 1.8415580987930298,
+ "step": 2324
+ },
+ {
+ "epoch": 32.292682926829265,
+ "grad_norm": 0.059729915112257004,
+ "learning_rate": 0.00018041589456428754,
+ "loss": 1.8413065671920776,
+ "step": 2325
+ },
+ {
+ "epoch": 32.30662020905923,
+ "grad_norm": 0.062042899429798126,
+ "learning_rate": 0.0001801731240249434,
+ "loss": 1.8559092283248901,
+ "step": 2326
+ },
+ {
+ "epoch": 32.3205574912892,
+ "grad_norm": 0.06083200126886368,
+ "learning_rate": 0.00017993045244499463,
+ "loss": 1.837567687034607,
+ "step": 2327
+ },
+ {
+ "epoch": 32.33449477351916,
+ "grad_norm": 0.060482755303382874,
+ "learning_rate": 0.00017968788001995742,
+ "loss": 1.853471279144287,
+ "step": 2328
+ },
+ {
+ "epoch": 32.34843205574913,
+ "grad_norm": 0.06265296787023544,
+ "learning_rate": 0.000179445406945268,
+ "loss": 1.8431742191314697,
+ "step": 2329
+ },
+ {
+ "epoch": 32.362369337979096,
+ "grad_norm": 0.060122255235910416,
+ "learning_rate": 0.0001792030334162825,
+ "loss": 1.8470524549484253,
+ "step": 2330
+ },
+ {
+ "epoch": 32.37630662020906,
+ "grad_norm": 0.06117526814341545,
+ "learning_rate": 0.00017896075962827706,
+ "loss": 1.8635870218276978,
+ "step": 2331
+ },
+ {
+ "epoch": 32.390243902439025,
+ "grad_norm": 0.05970590561628342,
+ "learning_rate": 0.00017871858577644712,
+ "loss": 1.8443195819854736,
+ "step": 2332
+ },
+ {
+ "epoch": 32.40418118466899,
+ "grad_norm": 0.06281629204750061,
+ "learning_rate": 0.0001784765120559078,
+ "loss": 1.8494038581848145,
+ "step": 2333
+ },
+ {
+ "epoch": 32.41811846689895,
+ "grad_norm": 0.06238580122590065,
+ "learning_rate": 0.00017823453866169355,
+ "loss": 1.8372313976287842,
+ "step": 2334
+ },
+ {
+ "epoch": 32.43205574912892,
+ "grad_norm": 0.062138594686985016,
+ "learning_rate": 0.00017799266578875808,
+ "loss": 1.8546266555786133,
+ "step": 2335
+ },
+ {
+ "epoch": 32.44599303135889,
+ "grad_norm": 0.06474311649799347,
+ "learning_rate": 0.00017775089363197371,
+ "loss": 1.8548964262008667,
+ "step": 2336
+ },
+ {
+ "epoch": 32.45993031358885,
+ "grad_norm": 0.061230190098285675,
+ "learning_rate": 0.00017750922238613198,
+ "loss": 1.8663136959075928,
+ "step": 2337
+ },
+ {
+ "epoch": 32.47386759581882,
+ "grad_norm": 0.06422504782676697,
+ "learning_rate": 0.00017726765224594342,
+ "loss": 1.8415696620941162,
+ "step": 2338
+ },
+ {
+ "epoch": 32.48780487804878,
+ "grad_norm": 0.061609867960214615,
+ "learning_rate": 0.0001770261834060363,
+ "loss": 1.8407015800476074,
+ "step": 2339
+ },
+ {
+ "epoch": 32.501742160278745,
+ "grad_norm": 0.06351736187934875,
+ "learning_rate": 0.00017678481606095786,
+ "loss": 1.8690993785858154,
+ "step": 2340
+ },
+ {
+ "epoch": 32.51567944250871,
+ "grad_norm": 0.06250591576099396,
+ "learning_rate": 0.0001765435504051734,
+ "loss": 1.8602087497711182,
+ "step": 2341
+ },
+ {
+ "epoch": 32.52961672473867,
+ "grad_norm": 0.0634881779551506,
+ "learning_rate": 0.0001763023866330664,
+ "loss": 1.8532803058624268,
+ "step": 2342
+ },
+ {
+ "epoch": 32.54355400696864,
+ "grad_norm": 0.06350140273571014,
+ "learning_rate": 0.00017606132493893793,
+ "loss": 1.8563673496246338,
+ "step": 2343
+ },
+ {
+ "epoch": 32.55749128919861,
+ "grad_norm": 0.0628136470913887,
+ "learning_rate": 0.00017582036551700724,
+ "loss": 1.8458285331726074,
+ "step": 2344
+ },
+ {
+ "epoch": 32.57142857142857,
+ "grad_norm": 0.061659421771764755,
+ "learning_rate": 0.00017557950856141085,
+ "loss": 1.8418179750442505,
+ "step": 2345
+ },
+ {
+ "epoch": 32.58536585365854,
+ "grad_norm": 0.06315319985151291,
+ "learning_rate": 0.00017533875426620286,
+ "loss": 1.8524972200393677,
+ "step": 2346
+ },
+ {
+ "epoch": 32.599303135888505,
+ "grad_norm": 0.06313202530145645,
+ "learning_rate": 0.00017509810282535497,
+ "loss": 1.8697175979614258,
+ "step": 2347
+ },
+ {
+ "epoch": 32.613240418118465,
+ "grad_norm": 0.06376877427101135,
+ "learning_rate": 0.00017485755443275513,
+ "loss": 1.8543388843536377,
+ "step": 2348
+ },
+ {
+ "epoch": 32.62717770034843,
+ "grad_norm": 0.06332594901323318,
+ "learning_rate": 0.0001746171092822094,
+ "loss": 1.8648786544799805,
+ "step": 2349
+ },
+ {
+ "epoch": 32.641114982578394,
+ "grad_norm": 0.06469792127609253,
+ "learning_rate": 0.00017437676756743974,
+ "loss": 1.8419265747070312,
+ "step": 2350
+ },
+ {
+ "epoch": 32.65505226480836,
+ "grad_norm": 0.061898306012153625,
+ "learning_rate": 0.00017413652948208524,
+ "loss": 1.851563811302185,
+ "step": 2351
+ },
+ {
+ "epoch": 32.66898954703833,
+ "grad_norm": 0.06442069262266159,
+ "learning_rate": 0.00017389639521970136,
+ "loss": 1.8633778095245361,
+ "step": 2352
+ },
+ {
+ "epoch": 32.68292682926829,
+ "grad_norm": 0.06396457552909851,
+ "learning_rate": 0.00017365636497376004,
+ "loss": 1.8566405773162842,
+ "step": 2353
+ },
+ {
+ "epoch": 32.69686411149826,
+ "grad_norm": 0.06507355719804764,
+ "learning_rate": 0.00017341643893764927,
+ "loss": 1.8515483140945435,
+ "step": 2354
+ },
+ {
+ "epoch": 32.710801393728225,
+ "grad_norm": 0.06362279504537582,
+ "learning_rate": 0.000173176617304673,
+ "loss": 1.8504688739776611,
+ "step": 2355
+ },
+ {
+ "epoch": 32.724738675958186,
+ "grad_norm": 0.06472098082304001,
+ "learning_rate": 0.00017293690026805124,
+ "loss": 1.8664718866348267,
+ "step": 2356
+ },
+ {
+ "epoch": 32.73867595818815,
+ "grad_norm": 0.06595539301633835,
+ "learning_rate": 0.00017269728802091975,
+ "loss": 1.85841703414917,
+ "step": 2357
+ },
+ {
+ "epoch": 32.75261324041812,
+ "grad_norm": 0.06441406160593033,
+ "learning_rate": 0.00017245778075632975,
+ "loss": 1.8595399856567383,
+ "step": 2358
+ },
+ {
+ "epoch": 32.76655052264808,
+ "grad_norm": 0.06528541445732117,
+ "learning_rate": 0.00017221837866724792,
+ "loss": 1.8631956577301025,
+ "step": 2359
+ },
+ {
+ "epoch": 32.78048780487805,
+ "grad_norm": 0.06445346027612686,
+ "learning_rate": 0.00017197908194655615,
+ "loss": 1.8592196702957153,
+ "step": 2360
+ },
+ {
+ "epoch": 32.79442508710802,
+ "grad_norm": 0.06681986898183823,
+ "learning_rate": 0.00017173989078705175,
+ "loss": 1.8577229976654053,
+ "step": 2361
+ },
+ {
+ "epoch": 32.80836236933798,
+ "grad_norm": 0.06391933560371399,
+ "learning_rate": 0.0001715008053814463,
+ "loss": 1.8735485076904297,
+ "step": 2362
+ },
+ {
+ "epoch": 32.822299651567945,
+ "grad_norm": 0.06460464745759964,
+ "learning_rate": 0.00017126182592236682,
+ "loss": 1.8651924133300781,
+ "step": 2363
+ },
+ {
+ "epoch": 32.836236933797906,
+ "grad_norm": 0.06430543959140778,
+ "learning_rate": 0.00017102295260235472,
+ "loss": 1.8450695276260376,
+ "step": 2364
+ },
+ {
+ "epoch": 32.850174216027874,
+ "grad_norm": 0.0646093487739563,
+ "learning_rate": 0.0001707841856138659,
+ "loss": 1.865610122680664,
+ "step": 2365
+ },
+ {
+ "epoch": 32.86411149825784,
+ "grad_norm": 0.06532672047615051,
+ "learning_rate": 0.00017054552514927061,
+ "loss": 1.8587243556976318,
+ "step": 2366
+ },
+ {
+ "epoch": 32.8780487804878,
+ "grad_norm": 0.06643696129322052,
+ "learning_rate": 0.00017030697140085334,
+ "loss": 1.8772244453430176,
+ "step": 2367
+ },
+ {
+ "epoch": 32.89198606271777,
+ "grad_norm": 0.06484723091125488,
+ "learning_rate": 0.0001700685245608126,
+ "loss": 1.8686251640319824,
+ "step": 2368
+ },
+ {
+ "epoch": 32.90592334494774,
+ "grad_norm": 0.06564180552959442,
+ "learning_rate": 0.00016983018482126047,
+ "loss": 1.8513834476470947,
+ "step": 2369
+ },
+ {
+ "epoch": 32.9198606271777,
+ "grad_norm": 0.06441337615251541,
+ "learning_rate": 0.00016959195237422305,
+ "loss": 1.8773045539855957,
+ "step": 2370
+ },
+ {
+ "epoch": 32.933797909407666,
+ "grad_norm": 0.06720676273107529,
+ "learning_rate": 0.00016935382741164,
+ "loss": 1.8712348937988281,
+ "step": 2371
+ },
+ {
+ "epoch": 32.94773519163763,
+ "grad_norm": 0.06504860520362854,
+ "learning_rate": 0.00016911581012536424,
+ "loss": 1.8732126951217651,
+ "step": 2372
+ },
+ {
+ "epoch": 32.961672473867594,
+ "grad_norm": 0.0659131333231926,
+ "learning_rate": 0.0001688779007071622,
+ "loss": 1.858228325843811,
+ "step": 2373
+ },
+ {
+ "epoch": 32.97560975609756,
+ "grad_norm": 0.06513261049985886,
+ "learning_rate": 0.00016864009934871275,
+ "loss": 1.8600943088531494,
+ "step": 2374
+ },
+ {
+ "epoch": 32.98954703832753,
+ "grad_norm": 0.06422273069620132,
+ "learning_rate": 0.0001684024062416087,
+ "loss": 1.864603042602539,
+ "step": 2375
+ },
+ {
+ "epoch": 33.0,
+ "grad_norm": 0.055188730359077454,
+ "learning_rate": 0.0001681648215773546,
+ "loss": 1.3973428010940552,
+ "step": 2376
+ },
+ {
+ "epoch": 33.0,
+ "eval_loss": 0.6440953612327576,
+ "eval_runtime": 42.5396,
+ "eval_samples_per_second": 57.405,
+ "eval_steps_per_second": 0.47,
+ "step": 2376
+ },
+ {
+ "epoch": 33.01393728222997,
+ "grad_norm": 0.058126285672187805,
+ "learning_rate": 0.0001679273455473684,
+ "loss": 1.8378994464874268,
+ "step": 2377
+ },
+ {
+ "epoch": 33.02787456445993,
+ "grad_norm": 0.06061682105064392,
+ "learning_rate": 0.0001676899783429802,
+ "loss": 1.8208311796188354,
+ "step": 2378
+ },
+ {
+ "epoch": 33.041811846689896,
+ "grad_norm": 0.0603339746594429,
+ "learning_rate": 0.00016745272015543242,
+ "loss": 1.823789119720459,
+ "step": 2379
+ },
+ {
+ "epoch": 33.055749128919864,
+ "grad_norm": 0.06169679015874863,
+ "learning_rate": 0.0001672155711758799,
+ "loss": 1.8269317150115967,
+ "step": 2380
+ },
+ {
+ "epoch": 33.069686411149824,
+ "grad_norm": 0.0586705207824707,
+ "learning_rate": 0.00016697853159538896,
+ "loss": 1.847499132156372,
+ "step": 2381
+ },
+ {
+ "epoch": 33.08362369337979,
+ "grad_norm": 0.06207786127924919,
+ "learning_rate": 0.0001667416016049383,
+ "loss": 1.8290098905563354,
+ "step": 2382
+ },
+ {
+ "epoch": 33.09756097560975,
+ "grad_norm": 0.05864856019616127,
+ "learning_rate": 0.0001665047813954181,
+ "loss": 1.8500827550888062,
+ "step": 2383
+ },
+ {
+ "epoch": 33.11149825783972,
+ "grad_norm": 0.058817241340875626,
+ "learning_rate": 0.00016626807115763023,
+ "loss": 1.8350820541381836,
+ "step": 2384
+ },
+ {
+ "epoch": 33.12543554006969,
+ "grad_norm": 0.060937561094760895,
+ "learning_rate": 0.00016603147108228754,
+ "loss": 1.8292570114135742,
+ "step": 2385
+ },
+ {
+ "epoch": 33.13937282229965,
+ "grad_norm": 0.06049133092164993,
+ "learning_rate": 0.00016579498136001485,
+ "loss": 1.8366070985794067,
+ "step": 2386
+ },
+ {
+ "epoch": 33.153310104529616,
+ "grad_norm": 0.06166869029402733,
+ "learning_rate": 0.00016555860218134738,
+ "loss": 1.8381221294403076,
+ "step": 2387
+ },
+ {
+ "epoch": 33.167247386759584,
+ "grad_norm": 0.05990896746516228,
+ "learning_rate": 0.00016532233373673164,
+ "loss": 1.8373796939849854,
+ "step": 2388
+ },
+ {
+ "epoch": 33.181184668989545,
+ "grad_norm": 0.060654930770397186,
+ "learning_rate": 0.00016508617621652488,
+ "loss": 1.8394211530685425,
+ "step": 2389
+ },
+ {
+ "epoch": 33.19512195121951,
+ "grad_norm": 0.0603005588054657,
+ "learning_rate": 0.00016485012981099488,
+ "loss": 1.8226966857910156,
+ "step": 2390
+ },
+ {
+ "epoch": 33.20905923344948,
+ "grad_norm": 0.06139668822288513,
+ "learning_rate": 0.0001646141947103201,
+ "loss": 1.8316700458526611,
+ "step": 2391
+ },
+ {
+ "epoch": 33.22299651567944,
+ "grad_norm": 0.06096554547548294,
+ "learning_rate": 0.0001643783711045889,
+ "loss": 1.847790241241455,
+ "step": 2392
+ },
+ {
+ "epoch": 33.23693379790941,
+ "grad_norm": 0.06046409532427788,
+ "learning_rate": 0.0001641426591838005,
+ "loss": 1.8410671949386597,
+ "step": 2393
+ },
+ {
+ "epoch": 33.250871080139376,
+ "grad_norm": 0.060197826474905014,
+ "learning_rate": 0.00016390705913786344,
+ "loss": 1.8428468704223633,
+ "step": 2394
+ },
+ {
+ "epoch": 33.26480836236934,
+ "grad_norm": 0.058461710810661316,
+ "learning_rate": 0.00016367157115659646,
+ "loss": 1.841080665588379,
+ "step": 2395
+ },
+ {
+ "epoch": 33.278745644599304,
+ "grad_norm": 0.0600469708442688,
+ "learning_rate": 0.00016343619542972808,
+ "loss": 1.8265113830566406,
+ "step": 2396
+ },
+ {
+ "epoch": 33.292682926829265,
+ "grad_norm": 0.05934802442789078,
+ "learning_rate": 0.0001632009321468962,
+ "loss": 1.8448898792266846,
+ "step": 2397
+ },
+ {
+ "epoch": 33.30662020905923,
+ "grad_norm": 0.060389988124370575,
+ "learning_rate": 0.00016296578149764833,
+ "loss": 1.8332173824310303,
+ "step": 2398
+ },
+ {
+ "epoch": 33.3205574912892,
+ "grad_norm": 0.05980642884969711,
+ "learning_rate": 0.00016273074367144087,
+ "loss": 1.84235417842865,
+ "step": 2399
+ },
+ {
+ "epoch": 33.33449477351916,
+ "grad_norm": 0.06064719706773758,
+ "learning_rate": 0.00016249581885763968,
+ "loss": 1.83778715133667,
+ "step": 2400
+ },
+ {
+ "epoch": 33.34843205574913,
+ "grad_norm": 0.060422275215387344,
+ "learning_rate": 0.0001622610072455194,
+ "loss": 1.836384654045105,
+ "step": 2401
+ },
+ {
+ "epoch": 33.362369337979096,
+ "grad_norm": 0.06085652485489845,
+ "learning_rate": 0.00016202630902426355,
+ "loss": 1.8299217224121094,
+ "step": 2402
+ },
+ {
+ "epoch": 33.37630662020906,
+ "grad_norm": 0.06078358739614487,
+ "learning_rate": 0.00016179172438296423,
+ "loss": 1.8527088165283203,
+ "step": 2403
+ },
+ {
+ "epoch": 33.390243902439025,
+ "grad_norm": 0.06237566098570824,
+ "learning_rate": 0.00016155725351062205,
+ "loss": 1.8342247009277344,
+ "step": 2404
+ },
+ {
+ "epoch": 33.40418118466899,
+ "grad_norm": 0.06274822354316711,
+ "learning_rate": 0.00016132289659614605,
+ "loss": 1.8272922039031982,
+ "step": 2405
+ },
+ {
+ "epoch": 33.41811846689895,
+ "grad_norm": 0.06164759397506714,
+ "learning_rate": 0.00016108865382835318,
+ "loss": 1.8365296125411987,
+ "step": 2406
+ },
+ {
+ "epoch": 33.43205574912892,
+ "grad_norm": 0.06274817883968353,
+ "learning_rate": 0.00016085452539596864,
+ "loss": 1.8382642269134521,
+ "step": 2407
+ },
+ {
+ "epoch": 33.44599303135889,
+ "grad_norm": 0.06088731437921524,
+ "learning_rate": 0.0001606205114876256,
+ "loss": 1.8406622409820557,
+ "step": 2408
+ },
+ {
+ "epoch": 33.45993031358885,
+ "grad_norm": 0.06455288827419281,
+ "learning_rate": 0.00016038661229186472,
+ "loss": 1.833195447921753,
+ "step": 2409
+ },
+ {
+ "epoch": 33.47386759581882,
+ "grad_norm": 0.061410367488861084,
+ "learning_rate": 0.00016015282799713453,
+ "loss": 1.830909252166748,
+ "step": 2410
+ },
+ {
+ "epoch": 33.48780487804878,
+ "grad_norm": 0.06312009692192078,
+ "learning_rate": 0.0001599191587917905,
+ "loss": 1.839772343635559,
+ "step": 2411
+ },
+ {
+ "epoch": 33.501742160278745,
+ "grad_norm": 0.06414929777383804,
+ "learning_rate": 0.0001596856048640961,
+ "loss": 1.8574250936508179,
+ "step": 2412
+ },
+ {
+ "epoch": 33.51567944250871,
+ "grad_norm": 0.06299755722284317,
+ "learning_rate": 0.00015945216640222116,
+ "loss": 1.8385207653045654,
+ "step": 2413
+ },
+ {
+ "epoch": 33.52961672473867,
+ "grad_norm": 0.06244301423430443,
+ "learning_rate": 0.000159218843594243,
+ "loss": 1.845157265663147,
+ "step": 2414
+ },
+ {
+ "epoch": 33.54355400696864,
+ "grad_norm": 0.06268925219774246,
+ "learning_rate": 0.0001589856366281455,
+ "loss": 1.8225502967834473,
+ "step": 2415
+ },
+ {
+ "epoch": 33.55749128919861,
+ "grad_norm": 0.06370935589075089,
+ "learning_rate": 0.0001587525456918194,
+ "loss": 1.8363447189331055,
+ "step": 2416
+ },
+ {
+ "epoch": 33.57142857142857,
+ "grad_norm": 0.06543995440006256,
+ "learning_rate": 0.0001585195709730619,
+ "loss": 1.833327293395996,
+ "step": 2417
+ },
+ {
+ "epoch": 33.58536585365854,
+ "grad_norm": 0.06178088113665581,
+ "learning_rate": 0.00015828671265957623,
+ "loss": 1.8498637676239014,
+ "step": 2418
+ },
+ {
+ "epoch": 33.599303135888505,
+ "grad_norm": 0.06223836913704872,
+ "learning_rate": 0.00015805397093897255,
+ "loss": 1.838489294052124,
+ "step": 2419
+ },
+ {
+ "epoch": 33.613240418118465,
+ "grad_norm": 0.06262598931789398,
+ "learning_rate": 0.00015782134599876633,
+ "loss": 1.8468639850616455,
+ "step": 2420
+ },
+ {
+ "epoch": 33.62717770034843,
+ "grad_norm": 0.06392983347177505,
+ "learning_rate": 0.00015758883802637953,
+ "loss": 1.8385651111602783,
+ "step": 2421
+ },
+ {
+ "epoch": 33.641114982578394,
+ "grad_norm": 0.06200742349028587,
+ "learning_rate": 0.00015735644720913923,
+ "loss": 1.8447084426879883,
+ "step": 2422
+ },
+ {
+ "epoch": 33.65505226480836,
+ "grad_norm": 0.06597801297903061,
+ "learning_rate": 0.00015712417373427897,
+ "loss": 1.8448331356048584,
+ "step": 2423
+ },
+ {
+ "epoch": 33.66898954703833,
+ "grad_norm": 0.06509242206811905,
+ "learning_rate": 0.00015689201778893713,
+ "loss": 1.853779911994934,
+ "step": 2424
+ },
+ {
+ "epoch": 33.68292682926829,
+ "grad_norm": 0.06515370309352875,
+ "learning_rate": 0.00015665997956015743,
+ "loss": 1.8492741584777832,
+ "step": 2425
+ },
+ {
+ "epoch": 33.69686411149826,
+ "grad_norm": 0.06344641745090485,
+ "learning_rate": 0.00015642805923488895,
+ "loss": 1.8240808248519897,
+ "step": 2426
+ },
+ {
+ "epoch": 33.710801393728225,
+ "grad_norm": 0.06296426057815552,
+ "learning_rate": 0.00015619625699998585,
+ "loss": 1.8452916145324707,
+ "step": 2427
+ },
+ {
+ "epoch": 33.724738675958186,
+ "grad_norm": 0.06552107632160187,
+ "learning_rate": 0.00015596457304220692,
+ "loss": 1.8414363861083984,
+ "step": 2428
+ },
+ {
+ "epoch": 33.73867595818815,
+ "grad_norm": 0.06322826445102692,
+ "learning_rate": 0.00015573300754821547,
+ "loss": 1.8490327596664429,
+ "step": 2429
+ },
+ {
+ "epoch": 33.75261324041812,
+ "grad_norm": 0.06481730937957764,
+ "learning_rate": 0.00015550156070458002,
+ "loss": 1.8198773860931396,
+ "step": 2430
+ },
+ {
+ "epoch": 33.76655052264808,
+ "grad_norm": 0.06322740018367767,
+ "learning_rate": 0.0001552702326977731,
+ "loss": 1.8379902839660645,
+ "step": 2431
+ },
+ {
+ "epoch": 33.78048780487805,
+ "grad_norm": 0.0660315454006195,
+ "learning_rate": 0.00015503902371417122,
+ "loss": 1.8431508541107178,
+ "step": 2432
+ },
+ {
+ "epoch": 33.79442508710802,
+ "grad_norm": 0.06548485159873962,
+ "learning_rate": 0.00015480793394005547,
+ "loss": 1.8435306549072266,
+ "step": 2433
+ },
+ {
+ "epoch": 33.80836236933798,
+ "grad_norm": 0.0642753317952156,
+ "learning_rate": 0.0001545769635616107,
+ "loss": 1.8333635330200195,
+ "step": 2434
+ },
+ {
+ "epoch": 33.822299651567945,
+ "grad_norm": 0.06514805555343628,
+ "learning_rate": 0.0001543461127649256,
+ "loss": 1.860312819480896,
+ "step": 2435
+ },
+ {
+ "epoch": 33.836236933797906,
+ "grad_norm": 0.06455788016319275,
+ "learning_rate": 0.00015411538173599231,
+ "loss": 1.8513085842132568,
+ "step": 2436
+ },
+ {
+ "epoch": 33.850174216027874,
+ "grad_norm": 0.06607019901275635,
+ "learning_rate": 0.00015388477066070674,
+ "loss": 1.8457266092300415,
+ "step": 2437
+ },
+ {
+ "epoch": 33.86411149825784,
+ "grad_norm": 0.06435948610305786,
+ "learning_rate": 0.00015365427972486827,
+ "loss": 1.8381249904632568,
+ "step": 2438
+ },
+ {
+ "epoch": 33.8780487804878,
+ "grad_norm": 0.06571139395236969,
+ "learning_rate": 0.00015342390911417904,
+ "loss": 1.8319785594940186,
+ "step": 2439
+ },
+ {
+ "epoch": 33.89198606271777,
+ "grad_norm": 0.06674250215291977,
+ "learning_rate": 0.00015319365901424452,
+ "loss": 1.8493732213974,
+ "step": 2440
+ },
+ {
+ "epoch": 33.90592334494774,
+ "grad_norm": 0.06501804292201996,
+ "learning_rate": 0.0001529635296105732,
+ "loss": 1.8349519968032837,
+ "step": 2441
+ },
+ {
+ "epoch": 33.9198606271777,
+ "grad_norm": 0.06749753654003143,
+ "learning_rate": 0.0001527335210885761,
+ "loss": 1.862501859664917,
+ "step": 2442
+ },
+ {
+ "epoch": 33.933797909407666,
+ "grad_norm": 0.06523770093917847,
+ "learning_rate": 0.00015250363363356685,
+ "loss": 1.84731125831604,
+ "step": 2443
+ },
+ {
+ "epoch": 33.94773519163763,
+ "grad_norm": 0.06762465834617615,
+ "learning_rate": 0.00015227386743076155,
+ "loss": 1.8576481342315674,
+ "step": 2444
+ },
+ {
+ "epoch": 33.961672473867594,
+ "grad_norm": 0.06551655381917953,
+ "learning_rate": 0.00015204422266527911,
+ "loss": 1.8472511768341064,
+ "step": 2445
+ },
+ {
+ "epoch": 33.97560975609756,
+ "grad_norm": 0.06891904771327972,
+ "learning_rate": 0.00015181469952213968,
+ "loss": 1.8325382471084595,
+ "step": 2446
+ },
+ {
+ "epoch": 33.98954703832753,
+ "grad_norm": 0.06538119167089462,
+ "learning_rate": 0.0001515852981862663,
+ "loss": 1.8476707935333252,
+ "step": 2447
+ },
+ {
+ "epoch": 34.0,
+ "grad_norm": 0.05324097350239754,
+ "learning_rate": 0.00015135601884248303,
+ "loss": 1.3832170963287354,
+ "step": 2448
+ },
+ {
+ "epoch": 34.0,
+ "eval_loss": 0.6456387042999268,
+ "eval_runtime": 38.8493,
+ "eval_samples_per_second": 62.858,
+ "eval_steps_per_second": 0.515,
+ "step": 2448
+ },
+ {
+ "epoch": 34.01393728222997,
+ "grad_norm": 0.061544593423604965,
+ "learning_rate": 0.0001511268616755166,
+ "loss": 1.8143833875656128,
+ "step": 2449
+ },
+ {
+ "epoch": 34.02787456445993,
+ "grad_norm": 0.05995706468820572,
+ "learning_rate": 0.00015089782686999445,
+ "loss": 1.8281774520874023,
+ "step": 2450
+ },
+ {
+ "epoch": 34.041811846689896,
+ "grad_norm": 0.061882853507995605,
+ "learning_rate": 0.00015066891461044588,
+ "loss": 1.8186081647872925,
+ "step": 2451
+ },
+ {
+ "epoch": 34.055749128919864,
+ "grad_norm": 0.05911208316683769,
+ "learning_rate": 0.00015044012508130138,
+ "loss": 1.8171322345733643,
+ "step": 2452
+ },
+ {
+ "epoch": 34.069686411149824,
+ "grad_norm": 0.05762029439210892,
+ "learning_rate": 0.00015021145846689254,
+ "loss": 1.8289903402328491,
+ "step": 2453
+ },
+ {
+ "epoch": 34.08362369337979,
+ "grad_norm": 0.06098875030875206,
+ "learning_rate": 0.00014998291495145206,
+ "loss": 1.8244364261627197,
+ "step": 2454
+ },
+ {
+ "epoch": 34.09756097560975,
+ "grad_norm": 0.060347780585289,
+ "learning_rate": 0.00014975449471911294,
+ "loss": 1.818152666091919,
+ "step": 2455
+ },
+ {
+ "epoch": 34.11149825783972,
+ "grad_norm": 0.06011926382780075,
+ "learning_rate": 0.0001495261979539097,
+ "loss": 1.8218905925750732,
+ "step": 2456
+ },
+ {
+ "epoch": 34.12543554006969,
+ "grad_norm": 0.05958009883761406,
+ "learning_rate": 0.0001492980248397766,
+ "loss": 1.8378891944885254,
+ "step": 2457
+ },
+ {
+ "epoch": 34.13937282229965,
+ "grad_norm": 0.060227006673812866,
+ "learning_rate": 0.00014906997556054865,
+ "loss": 1.8179614543914795,
+ "step": 2458
+ },
+ {
+ "epoch": 34.153310104529616,
+ "grad_norm": 0.061011530458927155,
+ "learning_rate": 0.00014884205029996113,
+ "loss": 1.8247592449188232,
+ "step": 2459
+ },
+ {
+ "epoch": 34.167247386759584,
+ "grad_norm": 0.05921728536486626,
+ "learning_rate": 0.00014861424924164925,
+ "loss": 1.8255550861358643,
+ "step": 2460
+ },
+ {
+ "epoch": 34.181184668989545,
+ "grad_norm": 0.06191205978393555,
+ "learning_rate": 0.00014838657256914832,
+ "loss": 1.8160936832427979,
+ "step": 2461
+ },
+ {
+ "epoch": 34.19512195121951,
+ "grad_norm": 0.05961717665195465,
+ "learning_rate": 0.0001481590204658931,
+ "loss": 1.7988860607147217,
+ "step": 2462
+ },
+ {
+ "epoch": 34.20905923344948,
+ "grad_norm": 0.06147215515375137,
+ "learning_rate": 0.00014793159311521833,
+ "loss": 1.8266009092330933,
+ "step": 2463
+ },
+ {
+ "epoch": 34.22299651567944,
+ "grad_norm": 0.05942768603563309,
+ "learning_rate": 0.00014770429070035812,
+ "loss": 1.8312751054763794,
+ "step": 2464
+ },
+ {
+ "epoch": 34.23693379790941,
+ "grad_norm": 0.060584649443626404,
+ "learning_rate": 0.00014747711340444601,
+ "loss": 1.822584629058838,
+ "step": 2465
+ },
+ {
+ "epoch": 34.250871080139376,
+ "grad_norm": 0.05929860472679138,
+ "learning_rate": 0.00014725006141051434,
+ "loss": 1.8148616552352905,
+ "step": 2466
+ },
+ {
+ "epoch": 34.26480836236934,
+ "grad_norm": 0.06036009266972542,
+ "learning_rate": 0.00014702313490149512,
+ "loss": 1.8295557498931885,
+ "step": 2467
+ },
+ {
+ "epoch": 34.278745644599304,
+ "grad_norm": 0.06171515956521034,
+ "learning_rate": 0.00014679633406021892,
+ "loss": 1.8145090341567993,
+ "step": 2468
+ },
+ {
+ "epoch": 34.292682926829265,
+ "grad_norm": 0.061903972178697586,
+ "learning_rate": 0.00014656965906941494,
+ "loss": 1.8265849351882935,
+ "step": 2469
+ },
+ {
+ "epoch": 34.30662020905923,
+ "grad_norm": 0.06090715155005455,
+ "learning_rate": 0.00014634311011171112,
+ "loss": 1.8090901374816895,
+ "step": 2470
+ },
+ {
+ "epoch": 34.3205574912892,
+ "grad_norm": 0.060219816863536835,
+ "learning_rate": 0.00014611668736963396,
+ "loss": 1.8254625797271729,
+ "step": 2471
+ },
+ {
+ "epoch": 34.33449477351916,
+ "grad_norm": 0.06206131726503372,
+ "learning_rate": 0.00014589039102560822,
+ "loss": 1.831300139427185,
+ "step": 2472
+ },
+ {
+ "epoch": 34.34843205574913,
+ "grad_norm": 0.06065662205219269,
+ "learning_rate": 0.00014566422126195656,
+ "loss": 1.8371552228927612,
+ "step": 2473
+ },
+ {
+ "epoch": 34.362369337979096,
+ "grad_norm": 0.061889007687568665,
+ "learning_rate": 0.00014543817826089992,
+ "loss": 1.8082828521728516,
+ "step": 2474
+ },
+ {
+ "epoch": 34.37630662020906,
+ "grad_norm": 0.05962798744440079,
+ "learning_rate": 0.0001452122622045574,
+ "loss": 1.8357537984848022,
+ "step": 2475
+ },
+ {
+ "epoch": 34.390243902439025,
+ "grad_norm": 0.06283676624298096,
+ "learning_rate": 0.00014498647327494506,
+ "loss": 1.8315505981445312,
+ "step": 2476
+ },
+ {
+ "epoch": 34.40418118466899,
+ "grad_norm": 0.06130822002887726,
+ "learning_rate": 0.00014476081165397715,
+ "loss": 1.8286545276641846,
+ "step": 2477
+ },
+ {
+ "epoch": 34.41811846689895,
+ "grad_norm": 0.06045953929424286,
+ "learning_rate": 0.00014453527752346517,
+ "loss": 1.8219239711761475,
+ "step": 2478
+ },
+ {
+ "epoch": 34.43205574912892,
+ "grad_norm": 0.06052744388580322,
+ "learning_rate": 0.00014430987106511795,
+ "loss": 1.8232624530792236,
+ "step": 2479
+ },
+ {
+ "epoch": 34.44599303135889,
+ "grad_norm": 0.06020310893654823,
+ "learning_rate": 0.00014408459246054126,
+ "loss": 1.833443522453308,
+ "step": 2480
+ },
+ {
+ "epoch": 34.45993031358885,
+ "grad_norm": 0.0614689365029335,
+ "learning_rate": 0.00014385944189123794,
+ "loss": 1.8213250637054443,
+ "step": 2481
+ },
+ {
+ "epoch": 34.47386759581882,
+ "grad_norm": 0.06148214265704155,
+ "learning_rate": 0.00014363441953860805,
+ "loss": 1.8208796977996826,
+ "step": 2482
+ },
+ {
+ "epoch": 34.48780487804878,
+ "grad_norm": 0.061143435537815094,
+ "learning_rate": 0.00014340952558394778,
+ "loss": 1.8060634136199951,
+ "step": 2483
+ },
+ {
+ "epoch": 34.501742160278745,
+ "grad_norm": 0.06256826967000961,
+ "learning_rate": 0.00014318476020845018,
+ "loss": 1.8441283702850342,
+ "step": 2484
+ },
+ {
+ "epoch": 34.51567944250871,
+ "grad_norm": 0.06325773149728775,
+ "learning_rate": 0.0001429601235932047,
+ "loss": 1.8289194107055664,
+ "step": 2485
+ },
+ {
+ "epoch": 34.52961672473867,
+ "grad_norm": 0.06207616627216339,
+ "learning_rate": 0.00014273561591919705,
+ "loss": 1.8226757049560547,
+ "step": 2486
+ },
+ {
+ "epoch": 34.54355400696864,
+ "grad_norm": 0.062450069934129715,
+ "learning_rate": 0.00014251123736730884,
+ "loss": 1.8158135414123535,
+ "step": 2487
+ },
+ {
+ "epoch": 34.55749128919861,
+ "grad_norm": 0.06260907649993896,
+ "learning_rate": 0.00014228698811831787,
+ "loss": 1.8142571449279785,
+ "step": 2488
+ },
+ {
+ "epoch": 34.57142857142857,
+ "grad_norm": 0.0641574040055275,
+ "learning_rate": 0.0001420628683528978,
+ "loss": 1.8269929885864258,
+ "step": 2489
+ },
+ {
+ "epoch": 34.58536585365854,
+ "grad_norm": 0.06434120237827301,
+ "learning_rate": 0.00014183887825161779,
+ "loss": 1.8375412225723267,
+ "step": 2490
+ },
+ {
+ "epoch": 34.599303135888505,
+ "grad_norm": 0.06156579405069351,
+ "learning_rate": 0.0001416150179949428,
+ "loss": 1.8158376216888428,
+ "step": 2491
+ },
+ {
+ "epoch": 34.613240418118465,
+ "grad_norm": 0.06551021337509155,
+ "learning_rate": 0.0001413912877632326,
+ "loss": 1.8365397453308105,
+ "step": 2492
+ },
+ {
+ "epoch": 34.62717770034843,
+ "grad_norm": 0.06178220361471176,
+ "learning_rate": 0.00014116768773674306,
+ "loss": 1.8288542032241821,
+ "step": 2493
+ },
+ {
+ "epoch": 34.641114982578394,
+ "grad_norm": 0.06431970000267029,
+ "learning_rate": 0.00014094421809562438,
+ "loss": 1.8176591396331787,
+ "step": 2494
+ },
+ {
+ "epoch": 34.65505226480836,
+ "grad_norm": 0.06383472681045532,
+ "learning_rate": 0.00014072087901992209,
+ "loss": 1.8409924507141113,
+ "step": 2495
+ },
+ {
+ "epoch": 34.66898954703833,
+ "grad_norm": 0.06315146386623383,
+ "learning_rate": 0.00014049767068957645,
+ "loss": 1.8267871141433716,
+ "step": 2496
+ },
+ {
+ "epoch": 34.68292682926829,
+ "grad_norm": 0.06440278142690659,
+ "learning_rate": 0.00014027459328442242,
+ "loss": 1.8300566673278809,
+ "step": 2497
+ },
+ {
+ "epoch": 34.69686411149826,
+ "grad_norm": 0.06525930017232895,
+ "learning_rate": 0.00014005164698418948,
+ "loss": 1.831039309501648,
+ "step": 2498
+ },
+ {
+ "epoch": 34.710801393728225,
+ "grad_norm": 0.06240379810333252,
+ "learning_rate": 0.0001398288319685013,
+ "loss": 1.8204154968261719,
+ "step": 2499
+ },
+ {
+ "epoch": 34.724738675958186,
+ "grad_norm": 0.06432971358299255,
+ "learning_rate": 0.00013960614841687595,
+ "loss": 1.826758861541748,
+ "step": 2500
+ },
+ {
+ "epoch": 34.73867595818815,
+ "grad_norm": 0.06324490159749985,
+ "learning_rate": 0.00013938359650872558,
+ "loss": 1.8415192365646362,
+ "step": 2501
+ },
+ {
+ "epoch": 34.75261324041812,
+ "grad_norm": 0.06293605268001556,
+ "learning_rate": 0.00013916117642335623,
+ "loss": 1.821230411529541,
+ "step": 2502
+ },
+ {
+ "epoch": 34.76655052264808,
+ "grad_norm": 0.0630170926451683,
+ "learning_rate": 0.00013893888833996774,
+ "loss": 1.8322150707244873,
+ "step": 2503
+ },
+ {
+ "epoch": 34.78048780487805,
+ "grad_norm": 0.06433390080928802,
+ "learning_rate": 0.00013871673243765362,
+ "loss": 1.8215436935424805,
+ "step": 2504
+ },
+ {
+ "epoch": 34.79442508710802,
+ "grad_norm": 0.06179378926753998,
+ "learning_rate": 0.00013849470889540098,
+ "loss": 1.8321993350982666,
+ "step": 2505
+ },
+ {
+ "epoch": 34.80836236933798,
+ "grad_norm": 0.06337333470582962,
+ "learning_rate": 0.00013827281789208996,
+ "loss": 1.8214612007141113,
+ "step": 2506
+ },
+ {
+ "epoch": 34.822299651567945,
+ "grad_norm": 0.06581414490938187,
+ "learning_rate": 0.00013805105960649423,
+ "loss": 1.8380327224731445,
+ "step": 2507
+ },
+ {
+ "epoch": 34.836236933797906,
+ "grad_norm": 0.06505398452281952,
+ "learning_rate": 0.00013782943421728042,
+ "loss": 1.8323636054992676,
+ "step": 2508
+ },
+ {
+ "epoch": 34.850174216027874,
+ "grad_norm": 0.06261361390352249,
+ "learning_rate": 0.00013760794190300827,
+ "loss": 1.831121802330017,
+ "step": 2509
+ },
+ {
+ "epoch": 34.86411149825784,
+ "grad_norm": 0.06420202553272247,
+ "learning_rate": 0.00013738658284212973,
+ "loss": 1.8330061435699463,
+ "step": 2510
+ },
+ {
+ "epoch": 34.8780487804878,
+ "grad_norm": 0.06349224597215652,
+ "learning_rate": 0.00013716535721299016,
+ "loss": 1.814126968383789,
+ "step": 2511
+ },
+ {
+ "epoch": 34.89198606271777,
+ "grad_norm": 0.06293212622404099,
+ "learning_rate": 0.0001369442651938271,
+ "loss": 1.8446499109268188,
+ "step": 2512
+ },
+ {
+ "epoch": 34.90592334494774,
+ "grad_norm": 0.06229215860366821,
+ "learning_rate": 0.00013672330696277014,
+ "loss": 1.8318920135498047,
+ "step": 2513
+ },
+ {
+ "epoch": 34.9198606271777,
+ "grad_norm": 0.06438733637332916,
+ "learning_rate": 0.00013650248269784143,
+ "loss": 1.8189592361450195,
+ "step": 2514
+ },
+ {
+ "epoch": 34.933797909407666,
+ "grad_norm": 0.06267774105072021,
+ "learning_rate": 0.00013628179257695508,
+ "loss": 1.820225715637207,
+ "step": 2515
+ },
+ {
+ "epoch": 34.94773519163763,
+ "grad_norm": 0.06347840279340744,
+ "learning_rate": 0.00013606123677791727,
+ "loss": 1.8195691108703613,
+ "step": 2516
+ },
+ {
+ "epoch": 34.961672473867594,
+ "grad_norm": 0.06589125096797943,
+ "learning_rate": 0.00013584081547842565,
+ "loss": 1.8382142782211304,
+ "step": 2517
+ },
+ {
+ "epoch": 34.97560975609756,
+ "grad_norm": 0.06349477916955948,
+ "learning_rate": 0.00013562052885606957,
+ "loss": 1.8295605182647705,
+ "step": 2518
+ },
+ {
+ "epoch": 34.98954703832753,
+ "grad_norm": 0.06603765487670898,
+ "learning_rate": 0.00013540037708833043,
+ "loss": 1.8189774751663208,
+ "step": 2519
+ },
+ {
+ "epoch": 35.0,
+ "grad_norm": 0.05118570849299431,
+ "learning_rate": 0.00013518036035258012,
+ "loss": 1.362122654914856,
+ "step": 2520
+ },
+ {
+ "epoch": 35.0,
+ "eval_loss": 0.6471332311630249,
+ "eval_runtime": 36.1587,
+ "eval_samples_per_second": 67.536,
+ "eval_steps_per_second": 0.553,
+ "step": 2520
+ },
+ {
+ "epoch": 35.01393728222997,
+ "grad_norm": 0.05908126384019852,
+ "learning_rate": 0.0001349604788260823,
+ "loss": 1.8186755180358887,
+ "step": 2521
+ },
+ {
+ "epoch": 35.02787456445993,
+ "grad_norm": 0.05910510569810867,
+ "learning_rate": 0.00013474073268599152,
+ "loss": 1.8013967275619507,
+ "step": 2522
+ },
+ {
+ "epoch": 35.041811846689896,
+ "grad_norm": 0.06132171303033829,
+ "learning_rate": 0.00013452112210935339,
+ "loss": 1.8142056465148926,
+ "step": 2523
+ },
+ {
+ "epoch": 35.055749128919864,
+ "grad_norm": 0.059230659157037735,
+ "learning_rate": 0.00013430164727310399,
+ "loss": 1.8110339641571045,
+ "step": 2524
+ },
+ {
+ "epoch": 35.069686411149824,
+ "grad_norm": 0.05766315385699272,
+ "learning_rate": 0.00013408230835407027,
+ "loss": 1.7982637882232666,
+ "step": 2525
+ },
+ {
+ "epoch": 35.08362369337979,
+ "grad_norm": 0.06095150113105774,
+ "learning_rate": 0.00013386310552896977,
+ "loss": 1.824556589126587,
+ "step": 2526
+ },
+ {
+ "epoch": 35.09756097560975,
+ "grad_norm": 0.058827366679906845,
+ "learning_rate": 0.00013364403897441016,
+ "loss": 1.808304786682129,
+ "step": 2527
+ },
+ {
+ "epoch": 35.11149825783972,
+ "grad_norm": 0.05928879976272583,
+ "learning_rate": 0.00013342510886688944,
+ "loss": 1.7958316802978516,
+ "step": 2528
+ },
+ {
+ "epoch": 35.12543554006969,
+ "grad_norm": 0.059650979936122894,
+ "learning_rate": 0.00013320631538279548,
+ "loss": 1.804734230041504,
+ "step": 2529
+ },
+ {
+ "epoch": 35.13937282229965,
+ "grad_norm": 0.059706125408411026,
+ "learning_rate": 0.00013298765869840658,
+ "loss": 1.7956255674362183,
+ "step": 2530
+ },
+ {
+ "epoch": 35.153310104529616,
+ "grad_norm": 0.059284109622240067,
+ "learning_rate": 0.00013276913898989013,
+ "loss": 1.8104126453399658,
+ "step": 2531
+ },
+ {
+ "epoch": 35.167247386759584,
+ "grad_norm": 0.05987285077571869,
+ "learning_rate": 0.00013255075643330369,
+ "loss": 1.810312032699585,
+ "step": 2532
+ },
+ {
+ "epoch": 35.181184668989545,
+ "grad_norm": 0.05983385443687439,
+ "learning_rate": 0.00013233251120459407,
+ "loss": 1.7978583574295044,
+ "step": 2533
+ },
+ {
+ "epoch": 35.19512195121951,
+ "grad_norm": 0.060581255704164505,
+ "learning_rate": 0.0001321144034795976,
+ "loss": 1.8199656009674072,
+ "step": 2534
+ },
+ {
+ "epoch": 35.20905923344948,
+ "grad_norm": 0.05911708250641823,
+ "learning_rate": 0.00013189643343403977,
+ "loss": 1.7828130722045898,
+ "step": 2535
+ },
+ {
+ "epoch": 35.22299651567944,
+ "grad_norm": 0.05990540608763695,
+ "learning_rate": 0.00013167860124353476,
+ "loss": 1.8100059032440186,
+ "step": 2536
+ },
+ {
+ "epoch": 35.23693379790941,
+ "grad_norm": 0.05927145108580589,
+ "learning_rate": 0.00013146090708358657,
+ "loss": 1.8167325258255005,
+ "step": 2537
+ },
+ {
+ "epoch": 35.250871080139376,
+ "grad_norm": 0.059669725596904755,
+ "learning_rate": 0.00013124335112958704,
+ "loss": 1.798264503479004,
+ "step": 2538
+ },
+ {
+ "epoch": 35.26480836236934,
+ "grad_norm": 0.059786438941955566,
+ "learning_rate": 0.0001310259335568172,
+ "loss": 1.8132362365722656,
+ "step": 2539
+ },
+ {
+ "epoch": 35.278745644599304,
+ "grad_norm": 0.05904815346002579,
+ "learning_rate": 0.00013080865454044647,
+ "loss": 1.8083183765411377,
+ "step": 2540
+ },
+ {
+ "epoch": 35.292682926829265,
+ "grad_norm": 0.05894903466105461,
+ "learning_rate": 0.00013059151425553263,
+ "loss": 1.8152140378952026,
+ "step": 2541
+ },
+ {
+ "epoch": 35.30662020905923,
+ "grad_norm": 0.0585809126496315,
+ "learning_rate": 0.00013037451287702183,
+ "loss": 1.8077661991119385,
+ "step": 2542
+ },
+ {
+ "epoch": 35.3205574912892,
+ "grad_norm": 0.0597865916788578,
+ "learning_rate": 0.0001301576505797479,
+ "loss": 1.8144145011901855,
+ "step": 2543
+ },
+ {
+ "epoch": 35.33449477351916,
+ "grad_norm": 0.05984620749950409,
+ "learning_rate": 0.00012994092753843293,
+ "loss": 1.832561731338501,
+ "step": 2544
+ },
+ {
+ "epoch": 35.34843205574913,
+ "grad_norm": 0.06088831275701523,
+ "learning_rate": 0.00012972434392768687,
+ "loss": 1.8135924339294434,
+ "step": 2545
+ },
+ {
+ "epoch": 35.362369337979096,
+ "grad_norm": 0.060645680874586105,
+ "learning_rate": 0.00012950789992200714,
+ "loss": 1.8013677597045898,
+ "step": 2546
+ },
+ {
+ "epoch": 35.37630662020906,
+ "grad_norm": 0.061454515904188156,
+ "learning_rate": 0.00012929159569577886,
+ "loss": 1.8033697605133057,
+ "step": 2547
+ },
+ {
+ "epoch": 35.390243902439025,
+ "grad_norm": 0.060311950743198395,
+ "learning_rate": 0.0001290754314232743,
+ "loss": 1.802935242652893,
+ "step": 2548
+ },
+ {
+ "epoch": 35.40418118466899,
+ "grad_norm": 0.0625360980629921,
+ "learning_rate": 0.00012885940727865334,
+ "loss": 1.81296968460083,
+ "step": 2549
+ },
+ {
+ "epoch": 35.41811846689895,
+ "grad_norm": 0.0601397305727005,
+ "learning_rate": 0.00012864352343596247,
+ "loss": 1.8226817846298218,
+ "step": 2550
+ },
+ {
+ "epoch": 35.43205574912892,
+ "grad_norm": 0.06244158744812012,
+ "learning_rate": 0.0001284277800691355,
+ "loss": 1.80842924118042,
+ "step": 2551
+ },
+ {
+ "epoch": 35.44599303135889,
+ "grad_norm": 0.059840865433216095,
+ "learning_rate": 0.00012821217735199298,
+ "loss": 1.7954330444335938,
+ "step": 2552
+ },
+ {
+ "epoch": 35.45993031358885,
+ "grad_norm": 0.06193596497178078,
+ "learning_rate": 0.00012799671545824212,
+ "loss": 1.8132208585739136,
+ "step": 2553
+ },
+ {
+ "epoch": 35.47386759581882,
+ "grad_norm": 0.0602298229932785,
+ "learning_rate": 0.0001277813945614768,
+ "loss": 1.810899257659912,
+ "step": 2554
+ },
+ {
+ "epoch": 35.48780487804878,
+ "grad_norm": 0.06307514756917953,
+ "learning_rate": 0.00012756621483517682,
+ "loss": 1.8087718486785889,
+ "step": 2555
+ },
+ {
+ "epoch": 35.501742160278745,
+ "grad_norm": 0.062002021819353104,
+ "learning_rate": 0.00012735117645270905,
+ "loss": 1.8076088428497314,
+ "step": 2556
+ },
+ {
+ "epoch": 35.51567944250871,
+ "grad_norm": 0.0628097876906395,
+ "learning_rate": 0.00012713627958732567,
+ "loss": 1.8090249300003052,
+ "step": 2557
+ },
+ {
+ "epoch": 35.52961672473867,
+ "grad_norm": 0.06274416297674179,
+ "learning_rate": 0.00012692152441216539,
+ "loss": 1.8050616979599,
+ "step": 2558
+ },
+ {
+ "epoch": 35.54355400696864,
+ "grad_norm": 0.06155693158507347,
+ "learning_rate": 0.0001267069111002525,
+ "loss": 1.8042300939559937,
+ "step": 2559
+ },
+ {
+ "epoch": 35.55749128919861,
+ "grad_norm": 0.0613880380988121,
+ "learning_rate": 0.00012649243982449718,
+ "loss": 1.8077136278152466,
+ "step": 2560
+ },
+ {
+ "epoch": 35.57142857142857,
+ "grad_norm": 0.06365271657705307,
+ "learning_rate": 0.00012627811075769502,
+ "loss": 1.8172948360443115,
+ "step": 2561
+ },
+ {
+ "epoch": 35.58536585365854,
+ "grad_norm": 0.05991367623209953,
+ "learning_rate": 0.00012606392407252687,
+ "loss": 1.8168929815292358,
+ "step": 2562
+ },
+ {
+ "epoch": 35.599303135888505,
+ "grad_norm": 0.06306611746549606,
+ "learning_rate": 0.00012584987994155943,
+ "loss": 1.800689458847046,
+ "step": 2563
+ },
+ {
+ "epoch": 35.613240418118465,
+ "grad_norm": 0.06204739212989807,
+ "learning_rate": 0.00012563597853724388,
+ "loss": 1.8148365020751953,
+ "step": 2564
+ },
+ {
+ "epoch": 35.62717770034843,
+ "grad_norm": 0.06187354400753975,
+ "learning_rate": 0.000125422220031917,
+ "loss": 1.825568675994873,
+ "step": 2565
+ },
+ {
+ "epoch": 35.641114982578394,
+ "grad_norm": 0.0630321055650711,
+ "learning_rate": 0.00012520860459779972,
+ "loss": 1.8002240657806396,
+ "step": 2566
+ },
+ {
+ "epoch": 35.65505226480836,
+ "grad_norm": 0.06260699778795242,
+ "learning_rate": 0.0001249951324069986,
+ "loss": 1.793284296989441,
+ "step": 2567
+ },
+ {
+ "epoch": 35.66898954703833,
+ "grad_norm": 0.06165624037384987,
+ "learning_rate": 0.0001247818036315042,
+ "loss": 1.8106274604797363,
+ "step": 2568
+ },
+ {
+ "epoch": 35.68292682926829,
+ "grad_norm": 0.06291734427213669,
+ "learning_rate": 0.00012456861844319155,
+ "loss": 1.802643895149231,
+ "step": 2569
+ },
+ {
+ "epoch": 35.69686411149826,
+ "grad_norm": 0.06160290911793709,
+ "learning_rate": 0.00012435557701382012,
+ "loss": 1.815314769744873,
+ "step": 2570
+ },
+ {
+ "epoch": 35.710801393728225,
+ "grad_norm": 0.06180083751678467,
+ "learning_rate": 0.0001241426795150336,
+ "loss": 1.805253267288208,
+ "step": 2571
+ },
+ {
+ "epoch": 35.724738675958186,
+ "grad_norm": 0.06322845816612244,
+ "learning_rate": 0.00012392992611835973,
+ "loss": 1.8169267177581787,
+ "step": 2572
+ },
+ {
+ "epoch": 35.73867595818815,
+ "grad_norm": 0.06337283551692963,
+ "learning_rate": 0.0001237173169952098,
+ "loss": 1.8248480558395386,
+ "step": 2573
+ },
+ {
+ "epoch": 35.75261324041812,
+ "grad_norm": 0.06179392337799072,
+ "learning_rate": 0.00012350485231687954,
+ "loss": 1.8105932474136353,
+ "step": 2574
+ },
+ {
+ "epoch": 35.76655052264808,
+ "grad_norm": 0.06336724758148193,
+ "learning_rate": 0.0001232925322545476,
+ "loss": 1.821605920791626,
+ "step": 2575
+ },
+ {
+ "epoch": 35.78048780487805,
+ "grad_norm": 0.06384433060884476,
+ "learning_rate": 0.0001230803569792765,
+ "loss": 1.811798095703125,
+ "step": 2576
+ },
+ {
+ "epoch": 35.79442508710802,
+ "grad_norm": 0.06201609596610069,
+ "learning_rate": 0.0001228683266620121,
+ "loss": 1.8091926574707031,
+ "step": 2577
+ },
+ {
+ "epoch": 35.80836236933798,
+ "grad_norm": 0.06306285411119461,
+ "learning_rate": 0.00012265644147358326,
+ "loss": 1.819336175918579,
+ "step": 2578
+ },
+ {
+ "epoch": 35.822299651567945,
+ "grad_norm": 0.06383267790079117,
+ "learning_rate": 0.00012244470158470226,
+ "loss": 1.811619758605957,
+ "step": 2579
+ },
+ {
+ "epoch": 35.836236933797906,
+ "grad_norm": 0.06499970704317093,
+ "learning_rate": 0.00012223310716596387,
+ "loss": 1.8192344903945923,
+ "step": 2580
+ },
+ {
+ "epoch": 35.850174216027874,
+ "grad_norm": 0.06270603090524673,
+ "learning_rate": 0.00012202165838784601,
+ "loss": 1.8236922025680542,
+ "step": 2581
+ },
+ {
+ "epoch": 35.86411149825784,
+ "grad_norm": 0.06357081979513168,
+ "learning_rate": 0.00012181035542070913,
+ "loss": 1.8269872665405273,
+ "step": 2582
+ },
+ {
+ "epoch": 35.8780487804878,
+ "grad_norm": 0.06423989683389664,
+ "learning_rate": 0.00012159919843479617,
+ "loss": 1.8102588653564453,
+ "step": 2583
+ },
+ {
+ "epoch": 35.89198606271777,
+ "grad_norm": 0.06423227488994598,
+ "learning_rate": 0.00012138818760023257,
+ "loss": 1.8166489601135254,
+ "step": 2584
+ },
+ {
+ "epoch": 35.90592334494774,
+ "grad_norm": 0.06358758360147476,
+ "learning_rate": 0.00012117732308702592,
+ "loss": 1.8135144710540771,
+ "step": 2585
+ },
+ {
+ "epoch": 35.9198606271777,
+ "grad_norm": 0.06234103813767433,
+ "learning_rate": 0.00012096660506506605,
+ "loss": 1.8288500308990479,
+ "step": 2586
+ },
+ {
+ "epoch": 35.933797909407666,
+ "grad_norm": 0.06331966072320938,
+ "learning_rate": 0.00012075603370412443,
+ "loss": 1.819105863571167,
+ "step": 2587
+ },
+ {
+ "epoch": 35.94773519163763,
+ "grad_norm": 0.06391844153404236,
+ "learning_rate": 0.00012054560917385476,
+ "loss": 1.8120977878570557,
+ "step": 2588
+ },
+ {
+ "epoch": 35.961672473867594,
+ "grad_norm": 0.06310919672250748,
+ "learning_rate": 0.00012033533164379225,
+ "loss": 1.8364615440368652,
+ "step": 2589
+ },
+ {
+ "epoch": 35.97560975609756,
+ "grad_norm": 0.06485587358474731,
+ "learning_rate": 0.0001201252012833537,
+ "loss": 1.8377125263214111,
+ "step": 2590
+ },
+ {
+ "epoch": 35.98954703832753,
+ "grad_norm": 0.06357129663228989,
+ "learning_rate": 0.00011991521826183747,
+ "loss": 1.813971757888794,
+ "step": 2591
+ },
+ {
+ "epoch": 36.0,
+ "grad_norm": 0.05116669833660126,
+ "learning_rate": 0.00011970538274842282,
+ "loss": 1.3662359714508057,
+ "step": 2592
+ },
+ {
+ "epoch": 36.0,
+ "eval_loss": 0.6488010287284851,
+ "eval_runtime": 38.1237,
+ "eval_samples_per_second": 64.055,
+ "eval_steps_per_second": 0.525,
+ "step": 2592
+ },
+ {
+ "epoch": 36.01393728222997,
+ "grad_norm": 0.058273524045944214,
+ "learning_rate": 0.00011949569491217073,
+ "loss": 1.7912993431091309,
+ "step": 2593
+ },
+ {
+ "epoch": 36.02787456445993,
+ "grad_norm": 0.05773903802037239,
+ "learning_rate": 0.00011928615492202269,
+ "loss": 1.7948570251464844,
+ "step": 2594
+ },
+ {
+ "epoch": 36.041811846689896,
+ "grad_norm": 0.05757457762956619,
+ "learning_rate": 0.0001190767629468014,
+ "loss": 1.8028143644332886,
+ "step": 2595
+ },
+ {
+ "epoch": 36.055749128919864,
+ "grad_norm": 0.058159105479717255,
+ "learning_rate": 0.00011886751915521007,
+ "loss": 1.8019994497299194,
+ "step": 2596
+ },
+ {
+ "epoch": 36.069686411149824,
+ "grad_norm": 0.057715486735105515,
+ "learning_rate": 0.00011865842371583278,
+ "loss": 1.7835862636566162,
+ "step": 2597
+ },
+ {
+ "epoch": 36.08362369337979,
+ "grad_norm": 0.05769861489534378,
+ "learning_rate": 0.00011844947679713396,
+ "loss": 1.7842698097229004,
+ "step": 2598
+ },
+ {
+ "epoch": 36.09756097560975,
+ "grad_norm": 0.05870186164975166,
+ "learning_rate": 0.00011824067856745812,
+ "loss": 1.7978391647338867,
+ "step": 2599
+ },
+ {
+ "epoch": 36.11149825783972,
+ "grad_norm": 0.05980672314763069,
+ "learning_rate": 0.00011803202919503064,
+ "loss": 1.7915937900543213,
+ "step": 2600
+ },
+ {
+ "epoch": 36.12543554006969,
+ "grad_norm": 0.057950735092163086,
+ "learning_rate": 0.00011782352884795615,
+ "loss": 1.796860933303833,
+ "step": 2601
+ },
+ {
+ "epoch": 36.13937282229965,
+ "grad_norm": 0.059691980481147766,
+ "learning_rate": 0.00011761517769421983,
+ "loss": 1.7795453071594238,
+ "step": 2602
+ },
+ {
+ "epoch": 36.153310104529616,
+ "grad_norm": 0.05934140831232071,
+ "learning_rate": 0.00011740697590168635,
+ "loss": 1.7895190715789795,
+ "step": 2603
+ },
+ {
+ "epoch": 36.167247386759584,
+ "grad_norm": 0.0582442507147789,
+ "learning_rate": 0.00011719892363810018,
+ "loss": 1.7981176376342773,
+ "step": 2604
+ },
+ {
+ "epoch": 36.181184668989545,
+ "grad_norm": 0.05873899906873703,
+ "learning_rate": 0.00011699102107108539,
+ "loss": 1.7890758514404297,
+ "step": 2605
+ },
+ {
+ "epoch": 36.19512195121951,
+ "grad_norm": 0.0597921647131443,
+ "learning_rate": 0.00011678326836814507,
+ "loss": 1.782232403755188,
+ "step": 2606
+ },
+ {
+ "epoch": 36.20905923344948,
+ "grad_norm": 0.05748225003480911,
+ "learning_rate": 0.00011657566569666198,
+ "loss": 1.7897863388061523,
+ "step": 2607
+ },
+ {
+ "epoch": 36.22299651567944,
+ "grad_norm": 0.059263598173856735,
+ "learning_rate": 0.00011636821322389777,
+ "loss": 1.8019763231277466,
+ "step": 2608
+ },
+ {
+ "epoch": 36.23693379790941,
+ "grad_norm": 0.05755976587533951,
+ "learning_rate": 0.00011616091111699333,
+ "loss": 1.8150629997253418,
+ "step": 2609
+ },
+ {
+ "epoch": 36.250871080139376,
+ "grad_norm": 0.0598963163793087,
+ "learning_rate": 0.00011595375954296786,
+ "loss": 1.7994740009307861,
+ "step": 2610
+ },
+ {
+ "epoch": 36.26480836236934,
+ "grad_norm": 0.057324476540088654,
+ "learning_rate": 0.00011574675866871997,
+ "loss": 1.8066706657409668,
+ "step": 2611
+ },
+ {
+ "epoch": 36.278745644599304,
+ "grad_norm": 0.05825965106487274,
+ "learning_rate": 0.00011553990866102651,
+ "loss": 1.7909674644470215,
+ "step": 2612
+ },
+ {
+ "epoch": 36.292682926829265,
+ "grad_norm": 0.05863742157816887,
+ "learning_rate": 0.00011533320968654265,
+ "loss": 1.7921855449676514,
+ "step": 2613
+ },
+ {
+ "epoch": 36.30662020905923,
+ "grad_norm": 0.057966724038124084,
+ "learning_rate": 0.00011512666191180204,
+ "loss": 1.799203634262085,
+ "step": 2614
+ },
+ {
+ "epoch": 36.3205574912892,
+ "grad_norm": 0.058184582740068436,
+ "learning_rate": 0.00011492026550321653,
+ "loss": 1.7864094972610474,
+ "step": 2615
+ },
+ {
+ "epoch": 36.33449477351916,
+ "grad_norm": 0.06074970215559006,
+ "learning_rate": 0.00011471402062707607,
+ "loss": 1.8016419410705566,
+ "step": 2616
+ },
+ {
+ "epoch": 36.34843205574913,
+ "grad_norm": 0.060255058109760284,
+ "learning_rate": 0.00011450792744954827,
+ "loss": 1.7989581823349,
+ "step": 2617
+ },
+ {
+ "epoch": 36.362369337979096,
+ "grad_norm": 0.058979928493499756,
+ "learning_rate": 0.00011430198613667861,
+ "loss": 1.7976062297821045,
+ "step": 2618
+ },
+ {
+ "epoch": 36.37630662020906,
+ "grad_norm": 0.06085631251335144,
+ "learning_rate": 0.00011409619685439064,
+ "loss": 1.799715518951416,
+ "step": 2619
+ },
+ {
+ "epoch": 36.390243902439025,
+ "grad_norm": 0.059801094233989716,
+ "learning_rate": 0.00011389055976848477,
+ "loss": 1.8050971031188965,
+ "step": 2620
+ },
+ {
+ "epoch": 36.40418118466899,
+ "grad_norm": 0.06205856800079346,
+ "learning_rate": 0.00011368507504463914,
+ "loss": 1.809314489364624,
+ "step": 2621
+ },
+ {
+ "epoch": 36.41811846689895,
+ "grad_norm": 0.059292055666446686,
+ "learning_rate": 0.00011347974284840914,
+ "loss": 1.7975642681121826,
+ "step": 2622
+ },
+ {
+ "epoch": 36.43205574912892,
+ "grad_norm": 0.05992339551448822,
+ "learning_rate": 0.00011327456334522725,
+ "loss": 1.7838283777236938,
+ "step": 2623
+ },
+ {
+ "epoch": 36.44599303135889,
+ "grad_norm": 0.059182096272706985,
+ "learning_rate": 0.00011306953670040275,
+ "loss": 1.8045337200164795,
+ "step": 2624
+ },
+ {
+ "epoch": 36.45993031358885,
+ "grad_norm": 0.05964009836316109,
+ "learning_rate": 0.00011286466307912184,
+ "loss": 1.7956809997558594,
+ "step": 2625
+ },
+ {
+ "epoch": 36.47386759581882,
+ "grad_norm": 0.059848565608263016,
+ "learning_rate": 0.00011265994264644783,
+ "loss": 1.7996410131454468,
+ "step": 2626
+ },
+ {
+ "epoch": 36.48780487804878,
+ "grad_norm": 0.06067422404885292,
+ "learning_rate": 0.00011245537556732001,
+ "loss": 1.7993896007537842,
+ "step": 2627
+ },
+ {
+ "epoch": 36.501742160278745,
+ "grad_norm": 0.06120799481868744,
+ "learning_rate": 0.00011225096200655442,
+ "loss": 1.8088237047195435,
+ "step": 2628
+ },
+ {
+ "epoch": 36.51567944250871,
+ "grad_norm": 0.06022920086979866,
+ "learning_rate": 0.00011204670212884342,
+ "loss": 1.7926946878433228,
+ "step": 2629
+ },
+ {
+ "epoch": 36.52961672473867,
+ "grad_norm": 0.06015709787607193,
+ "learning_rate": 0.00011184259609875557,
+ "loss": 1.80572509765625,
+ "step": 2630
+ },
+ {
+ "epoch": 36.54355400696864,
+ "grad_norm": 0.06164759770035744,
+ "learning_rate": 0.00011163864408073522,
+ "loss": 1.7874038219451904,
+ "step": 2631
+ },
+ {
+ "epoch": 36.55749128919861,
+ "grad_norm": 0.060634590685367584,
+ "learning_rate": 0.00011143484623910293,
+ "loss": 1.7954940795898438,
+ "step": 2632
+ },
+ {
+ "epoch": 36.57142857142857,
+ "grad_norm": 0.060891084372997284,
+ "learning_rate": 0.00011123120273805496,
+ "loss": 1.7963420152664185,
+ "step": 2633
+ },
+ {
+ "epoch": 36.58536585365854,
+ "grad_norm": 0.06035187467932701,
+ "learning_rate": 0.0001110277137416632,
+ "loss": 1.8002746105194092,
+ "step": 2634
+ },
+ {
+ "epoch": 36.599303135888505,
+ "grad_norm": 0.06189136952161789,
+ "learning_rate": 0.00011082437941387512,
+ "loss": 1.809941053390503,
+ "step": 2635
+ },
+ {
+ "epoch": 36.613240418118465,
+ "grad_norm": 0.0598427951335907,
+ "learning_rate": 0.00011062119991851322,
+ "loss": 1.7951371669769287,
+ "step": 2636
+ },
+ {
+ "epoch": 36.62717770034843,
+ "grad_norm": 0.06194192171096802,
+ "learning_rate": 0.000110418175419276,
+ "loss": 1.7994475364685059,
+ "step": 2637
+ },
+ {
+ "epoch": 36.641114982578394,
+ "grad_norm": 0.060569968074560165,
+ "learning_rate": 0.00011021530607973626,
+ "loss": 1.7968194484710693,
+ "step": 2638
+ },
+ {
+ "epoch": 36.65505226480836,
+ "grad_norm": 0.06159248575568199,
+ "learning_rate": 0.00011001259206334235,
+ "loss": 1.8022544384002686,
+ "step": 2639
+ },
+ {
+ "epoch": 36.66898954703833,
+ "grad_norm": 0.060701292008161545,
+ "learning_rate": 0.00010981003353341721,
+ "loss": 1.798879623413086,
+ "step": 2640
+ },
+ {
+ "epoch": 36.68292682926829,
+ "grad_norm": 0.060689397156238556,
+ "learning_rate": 0.00010960763065315864,
+ "loss": 1.787331461906433,
+ "step": 2641
+ },
+ {
+ "epoch": 36.69686411149826,
+ "grad_norm": 0.062465935945510864,
+ "learning_rate": 0.00010940538358563906,
+ "loss": 1.8018803596496582,
+ "step": 2642
+ },
+ {
+ "epoch": 36.710801393728225,
+ "grad_norm": 0.061564989387989044,
+ "learning_rate": 0.00010920329249380509,
+ "loss": 1.8022879362106323,
+ "step": 2643
+ },
+ {
+ "epoch": 36.724738675958186,
+ "grad_norm": 0.06203111261129379,
+ "learning_rate": 0.00010900135754047799,
+ "loss": 1.7954847812652588,
+ "step": 2644
+ },
+ {
+ "epoch": 36.73867595818815,
+ "grad_norm": 0.06047702953219414,
+ "learning_rate": 0.00010879957888835307,
+ "loss": 1.8152201175689697,
+ "step": 2645
+ },
+ {
+ "epoch": 36.75261324041812,
+ "grad_norm": 0.06360939145088196,
+ "learning_rate": 0.00010859795669999981,
+ "loss": 1.7984482049942017,
+ "step": 2646
+ },
+ {
+ "epoch": 36.76655052264808,
+ "grad_norm": 0.061280008405447006,
+ "learning_rate": 0.00010839649113786137,
+ "loss": 1.794365406036377,
+ "step": 2647
+ },
+ {
+ "epoch": 36.78048780487805,
+ "grad_norm": 0.06262083351612091,
+ "learning_rate": 0.00010819518236425514,
+ "loss": 1.802119493484497,
+ "step": 2648
+ },
+ {
+ "epoch": 36.79442508710802,
+ "grad_norm": 0.062356967478990555,
+ "learning_rate": 0.00010799403054137197,
+ "loss": 1.8052328824996948,
+ "step": 2649
+ },
+ {
+ "epoch": 36.80836236933798,
+ "grad_norm": 0.06342893838882446,
+ "learning_rate": 0.00010779303583127609,
+ "loss": 1.8065122365951538,
+ "step": 2650
+ },
+ {
+ "epoch": 36.822299651567945,
+ "grad_norm": 0.06230684742331505,
+ "learning_rate": 0.00010759219839590535,
+ "loss": 1.802478551864624,
+ "step": 2651
+ },
+ {
+ "epoch": 36.836236933797906,
+ "grad_norm": 0.06416236609220505,
+ "learning_rate": 0.00010739151839707089,
+ "loss": 1.8185087442398071,
+ "step": 2652
+ },
+ {
+ "epoch": 36.850174216027874,
+ "grad_norm": 0.06391201913356781,
+ "learning_rate": 0.00010719099599645706,
+ "loss": 1.816373348236084,
+ "step": 2653
+ },
+ {
+ "epoch": 36.86411149825784,
+ "grad_norm": 0.06223445013165474,
+ "learning_rate": 0.0001069906313556208,
+ "loss": 1.8092248439788818,
+ "step": 2654
+ },
+ {
+ "epoch": 36.8780487804878,
+ "grad_norm": 0.06311052292585373,
+ "learning_rate": 0.00010679042463599263,
+ "loss": 1.8052345514297485,
+ "step": 2655
+ },
+ {
+ "epoch": 36.89198606271777,
+ "grad_norm": 0.06328947097063065,
+ "learning_rate": 0.00010659037599887545,
+ "loss": 1.798400640487671,
+ "step": 2656
+ },
+ {
+ "epoch": 36.90592334494774,
+ "grad_norm": 0.06306478381156921,
+ "learning_rate": 0.0001063904856054446,
+ "loss": 1.800265908241272,
+ "step": 2657
+ },
+ {
+ "epoch": 36.9198606271777,
+ "grad_norm": 0.06399966031312943,
+ "learning_rate": 0.00010619075361674836,
+ "loss": 1.7947779893875122,
+ "step": 2658
+ },
+ {
+ "epoch": 36.933797909407666,
+ "grad_norm": 0.06385133415460587,
+ "learning_rate": 0.0001059911801937071,
+ "loss": 1.8032350540161133,
+ "step": 2659
+ },
+ {
+ "epoch": 36.94773519163763,
+ "grad_norm": 0.0634441003203392,
+ "learning_rate": 0.00010579176549711365,
+ "loss": 1.8048739433288574,
+ "step": 2660
+ },
+ {
+ "epoch": 36.961672473867594,
+ "grad_norm": 0.06289725005626678,
+ "learning_rate": 0.00010559250968763265,
+ "loss": 1.8113070726394653,
+ "step": 2661
+ },
+ {
+ "epoch": 36.97560975609756,
+ "grad_norm": 0.06666543334722519,
+ "learning_rate": 0.00010539341292580086,
+ "loss": 1.8072322607040405,
+ "step": 2662
+ },
+ {
+ "epoch": 36.98954703832753,
+ "grad_norm": 0.06264351308345795,
+ "learning_rate": 0.00010519447537202729,
+ "loss": 1.7923619747161865,
+ "step": 2663
+ },
+ {
+ "epoch": 37.0,
+ "grad_norm": 0.05352141708135605,
+ "learning_rate": 0.00010499569718659201,
+ "loss": 1.3402554988861084,
+ "step": 2664
+ },
+ {
+ "epoch": 37.0,
+ "eval_loss": 0.6503449082374573,
+ "eval_runtime": 40.8339,
+ "eval_samples_per_second": 59.803,
+ "eval_steps_per_second": 0.49,
+ "step": 2664
+ },
+ {
+ "epoch": 37.01393728222997,
+ "grad_norm": 0.055954668670892715,
+ "learning_rate": 0.00010479707852964713,
+ "loss": 1.7941787242889404,
+ "step": 2665
+ },
+ {
+ "epoch": 37.02787456445993,
+ "grad_norm": 0.05661492794752121,
+ "learning_rate": 0.00010459861956121611,
+ "loss": 1.782745361328125,
+ "step": 2666
+ },
+ {
+ "epoch": 37.041811846689896,
+ "grad_norm": 0.061108414083719254,
+ "learning_rate": 0.00010440032044119383,
+ "loss": 1.770695686340332,
+ "step": 2667
+ },
+ {
+ "epoch": 37.055749128919864,
+ "grad_norm": 0.05666922777891159,
+ "learning_rate": 0.00010420218132934614,
+ "loss": 1.7809648513793945,
+ "step": 2668
+ },
+ {
+ "epoch": 37.069686411149824,
+ "grad_norm": 0.057485584169626236,
+ "learning_rate": 0.00010400420238531023,
+ "loss": 1.7725648880004883,
+ "step": 2669
+ },
+ {
+ "epoch": 37.08362369337979,
+ "grad_norm": 0.057979732751846313,
+ "learning_rate": 0.00010380638376859416,
+ "loss": 1.787489652633667,
+ "step": 2670
+ },
+ {
+ "epoch": 37.09756097560975,
+ "grad_norm": 0.058842871338129044,
+ "learning_rate": 0.00010360872563857682,
+ "loss": 1.7838923931121826,
+ "step": 2671
+ },
+ {
+ "epoch": 37.11149825783972,
+ "grad_norm": 0.05769092217087746,
+ "learning_rate": 0.0001034112281545079,
+ "loss": 1.7657028436660767,
+ "step": 2672
+ },
+ {
+ "epoch": 37.12543554006969,
+ "grad_norm": 0.057962507009506226,
+ "learning_rate": 0.00010321389147550725,
+ "loss": 1.7842955589294434,
+ "step": 2673
+ },
+ {
+ "epoch": 37.13937282229965,
+ "grad_norm": 0.059381090104579926,
+ "learning_rate": 0.00010301671576056588,
+ "loss": 1.7863147258758545,
+ "step": 2674
+ },
+ {
+ "epoch": 37.153310104529616,
+ "grad_norm": 0.05838813632726669,
+ "learning_rate": 0.00010281970116854436,
+ "loss": 1.7819740772247314,
+ "step": 2675
+ },
+ {
+ "epoch": 37.167247386759584,
+ "grad_norm": 0.05773032456636429,
+ "learning_rate": 0.00010262284785817392,
+ "loss": 1.7728110551834106,
+ "step": 2676
+ },
+ {
+ "epoch": 37.181184668989545,
+ "grad_norm": 0.05877206102013588,
+ "learning_rate": 0.00010242615598805574,
+ "loss": 1.7952494621276855,
+ "step": 2677
+ },
+ {
+ "epoch": 37.19512195121951,
+ "grad_norm": 0.05759423226118088,
+ "learning_rate": 0.00010222962571666088,
+ "loss": 1.7932361364364624,
+ "step": 2678
+ },
+ {
+ "epoch": 37.20905923344948,
+ "grad_norm": 0.059793874621391296,
+ "learning_rate": 0.00010203325720233032,
+ "loss": 1.7818982601165771,
+ "step": 2679
+ },
+ {
+ "epoch": 37.22299651567944,
+ "grad_norm": 0.05714469775557518,
+ "learning_rate": 0.00010183705060327433,
+ "loss": 1.7894699573516846,
+ "step": 2680
+ },
+ {
+ "epoch": 37.23693379790941,
+ "grad_norm": 0.06009291484951973,
+ "learning_rate": 0.00010164100607757346,
+ "loss": 1.7877312898635864,
+ "step": 2681
+ },
+ {
+ "epoch": 37.250871080139376,
+ "grad_norm": 0.05877745524048805,
+ "learning_rate": 0.00010144512378317687,
+ "loss": 1.7893445491790771,
+ "step": 2682
+ },
+ {
+ "epoch": 37.26480836236934,
+ "grad_norm": 0.05971526354551315,
+ "learning_rate": 0.00010124940387790354,
+ "loss": 1.790606141090393,
+ "step": 2683
+ },
+ {
+ "epoch": 37.278745644599304,
+ "grad_norm": 0.05756371095776558,
+ "learning_rate": 0.00010105384651944148,
+ "loss": 1.775133490562439,
+ "step": 2684
+ },
+ {
+ "epoch": 37.292682926829265,
+ "grad_norm": 0.05870367959141731,
+ "learning_rate": 0.00010085845186534769,
+ "loss": 1.7902131080627441,
+ "step": 2685
+ },
+ {
+ "epoch": 37.30662020905923,
+ "grad_norm": 0.05869534984230995,
+ "learning_rate": 0.00010066322007304819,
+ "loss": 1.7827963829040527,
+ "step": 2686
+ },
+ {
+ "epoch": 37.3205574912892,
+ "grad_norm": 0.0591689795255661,
+ "learning_rate": 0.00010046815129983757,
+ "loss": 1.7818281650543213,
+ "step": 2687
+ },
+ {
+ "epoch": 37.33449477351916,
+ "grad_norm": 0.05855981633067131,
+ "learning_rate": 0.00010027324570287925,
+ "loss": 1.794994592666626,
+ "step": 2688
+ },
+ {
+ "epoch": 37.34843205574913,
+ "grad_norm": 0.05911006033420563,
+ "learning_rate": 0.00010007850343920519,
+ "loss": 1.7840418815612793,
+ "step": 2689
+ },
+ {
+ "epoch": 37.362369337979096,
+ "grad_norm": 0.05816571041941643,
+ "learning_rate": 9.988392466571572e-05,
+ "loss": 1.7875049114227295,
+ "step": 2690
+ },
+ {
+ "epoch": 37.37630662020906,
+ "grad_norm": 0.05893605574965477,
+ "learning_rate": 9.968950953917945e-05,
+ "loss": 1.7783112525939941,
+ "step": 2691
+ },
+ {
+ "epoch": 37.390243902439025,
+ "grad_norm": 0.05793707072734833,
+ "learning_rate": 9.949525821623309e-05,
+ "loss": 1.7789113521575928,
+ "step": 2692
+ },
+ {
+ "epoch": 37.40418118466899,
+ "grad_norm": 0.05917073413729668,
+ "learning_rate": 9.930117085338156e-05,
+ "loss": 1.7670814990997314,
+ "step": 2693
+ },
+ {
+ "epoch": 37.41811846689895,
+ "grad_norm": 0.05918928608298302,
+ "learning_rate": 9.910724760699731e-05,
+ "loss": 1.79921293258667,
+ "step": 2694
+ },
+ {
+ "epoch": 37.43205574912892,
+ "grad_norm": 0.060473326593637466,
+ "learning_rate": 9.891348863332093e-05,
+ "loss": 1.7918263673782349,
+ "step": 2695
+ },
+ {
+ "epoch": 37.44599303135889,
+ "grad_norm": 0.05952722951769829,
+ "learning_rate": 9.871989408846051e-05,
+ "loss": 1.7897589206695557,
+ "step": 2696
+ },
+ {
+ "epoch": 37.45993031358885,
+ "grad_norm": 0.05955512076616287,
+ "learning_rate": 9.852646412839178e-05,
+ "loss": 1.7902030944824219,
+ "step": 2697
+ },
+ {
+ "epoch": 37.47386759581882,
+ "grad_norm": 0.059690166264772415,
+ "learning_rate": 9.833319890895756e-05,
+ "loss": 1.789273977279663,
+ "step": 2698
+ },
+ {
+ "epoch": 37.48780487804878,
+ "grad_norm": 0.06117507815361023,
+ "learning_rate": 9.814009858586817e-05,
+ "loss": 1.7829227447509766,
+ "step": 2699
+ },
+ {
+ "epoch": 37.501742160278745,
+ "grad_norm": 0.05962991714477539,
+ "learning_rate": 9.794716331470131e-05,
+ "loss": 1.788633108139038,
+ "step": 2700
+ },
+ {
+ "epoch": 37.51567944250871,
+ "grad_norm": 0.060302652418613434,
+ "learning_rate": 9.77543932509012e-05,
+ "loss": 1.7823851108551025,
+ "step": 2701
+ },
+ {
+ "epoch": 37.52961672473867,
+ "grad_norm": 0.06038743630051613,
+ "learning_rate": 9.756178854977925e-05,
+ "loss": 1.7907404899597168,
+ "step": 2702
+ },
+ {
+ "epoch": 37.54355400696864,
+ "grad_norm": 0.059840161353349686,
+ "learning_rate": 9.736934936651362e-05,
+ "loss": 1.7859036922454834,
+ "step": 2703
+ },
+ {
+ "epoch": 37.55749128919861,
+ "grad_norm": 0.06124330312013626,
+ "learning_rate": 9.717707585614916e-05,
+ "loss": 1.7850871086120605,
+ "step": 2704
+ },
+ {
+ "epoch": 37.57142857142857,
+ "grad_norm": 0.060107145458459854,
+ "learning_rate": 9.698496817359698e-05,
+ "loss": 1.7971034049987793,
+ "step": 2705
+ },
+ {
+ "epoch": 37.58536585365854,
+ "grad_norm": 0.062206294387578964,
+ "learning_rate": 9.679302647363476e-05,
+ "loss": 1.7905354499816895,
+ "step": 2706
+ },
+ {
+ "epoch": 37.599303135888505,
+ "grad_norm": 0.060184285044670105,
+ "learning_rate": 9.660125091090675e-05,
+ "loss": 1.7828166484832764,
+ "step": 2707
+ },
+ {
+ "epoch": 37.613240418118465,
+ "grad_norm": 0.05999206751585007,
+ "learning_rate": 9.64096416399228e-05,
+ "loss": 1.8008617162704468,
+ "step": 2708
+ },
+ {
+ "epoch": 37.62717770034843,
+ "grad_norm": 0.0613752119243145,
+ "learning_rate": 9.621819881505918e-05,
+ "loss": 1.789717674255371,
+ "step": 2709
+ },
+ {
+ "epoch": 37.641114982578394,
+ "grad_norm": 0.060599468648433685,
+ "learning_rate": 9.602692259055767e-05,
+ "loss": 1.7871017456054688,
+ "step": 2710
+ },
+ {
+ "epoch": 37.65505226480836,
+ "grad_norm": 0.06263872981071472,
+ "learning_rate": 9.583581312052646e-05,
+ "loss": 1.7943106889724731,
+ "step": 2711
+ },
+ {
+ "epoch": 37.66898954703833,
+ "grad_norm": 0.062194015830755234,
+ "learning_rate": 9.564487055893867e-05,
+ "loss": 1.788008689880371,
+ "step": 2712
+ },
+ {
+ "epoch": 37.68292682926829,
+ "grad_norm": 0.060973457992076874,
+ "learning_rate": 9.545409505963338e-05,
+ "loss": 1.7923413515090942,
+ "step": 2713
+ },
+ {
+ "epoch": 37.69686411149826,
+ "grad_norm": 0.062401190400123596,
+ "learning_rate": 9.526348677631499e-05,
+ "loss": 1.8081228733062744,
+ "step": 2714
+ },
+ {
+ "epoch": 37.710801393728225,
+ "grad_norm": 0.060926176607608795,
+ "learning_rate": 9.507304586255311e-05,
+ "loss": 1.7845854759216309,
+ "step": 2715
+ },
+ {
+ "epoch": 37.724738675958186,
+ "grad_norm": 0.062316857278347015,
+ "learning_rate": 9.488277247178267e-05,
+ "loss": 1.7968542575836182,
+ "step": 2716
+ },
+ {
+ "epoch": 37.73867595818815,
+ "grad_norm": 0.06097151339054108,
+ "learning_rate": 9.469266675730319e-05,
+ "loss": 1.7956640720367432,
+ "step": 2717
+ },
+ {
+ "epoch": 37.75261324041812,
+ "grad_norm": 0.06271521747112274,
+ "learning_rate": 9.450272887227983e-05,
+ "loss": 1.7865713834762573,
+ "step": 2718
+ },
+ {
+ "epoch": 37.76655052264808,
+ "grad_norm": 0.06257861852645874,
+ "learning_rate": 9.431295896974182e-05,
+ "loss": 1.7880938053131104,
+ "step": 2719
+ },
+ {
+ "epoch": 37.78048780487805,
+ "grad_norm": 0.06380198895931244,
+ "learning_rate": 9.412335720258341e-05,
+ "loss": 1.790265440940857,
+ "step": 2720
+ },
+ {
+ "epoch": 37.79442508710802,
+ "grad_norm": 0.06104693189263344,
+ "learning_rate": 9.393392372356335e-05,
+ "loss": 1.7910763025283813,
+ "step": 2721
+ },
+ {
+ "epoch": 37.80836236933798,
+ "grad_norm": 0.06306934356689453,
+ "learning_rate": 9.374465868530477e-05,
+ "loss": 1.7925502061843872,
+ "step": 2722
+ },
+ {
+ "epoch": 37.822299651567945,
+ "grad_norm": 0.06254854053258896,
+ "learning_rate": 9.355556224029515e-05,
+ "loss": 1.7916789054870605,
+ "step": 2723
+ },
+ {
+ "epoch": 37.836236933797906,
+ "grad_norm": 0.06360232084989548,
+ "learning_rate": 9.336663454088593e-05,
+ "loss": 1.7960188388824463,
+ "step": 2724
+ },
+ {
+ "epoch": 37.850174216027874,
+ "grad_norm": 0.06377686560153961,
+ "learning_rate": 9.317787573929282e-05,
+ "loss": 1.7944340705871582,
+ "step": 2725
+ },
+ {
+ "epoch": 37.86411149825784,
+ "grad_norm": 0.06208472698926926,
+ "learning_rate": 9.298928598759541e-05,
+ "loss": 1.7910699844360352,
+ "step": 2726
+ },
+ {
+ "epoch": 37.8780487804878,
+ "grad_norm": 0.0627727285027504,
+ "learning_rate": 9.280086543773698e-05,
+ "loss": 1.7890523672103882,
+ "step": 2727
+ },
+ {
+ "epoch": 37.89198606271777,
+ "grad_norm": 0.06323178857564926,
+ "learning_rate": 9.26126142415247e-05,
+ "loss": 1.7757771015167236,
+ "step": 2728
+ },
+ {
+ "epoch": 37.90592334494774,
+ "grad_norm": 0.062019236385822296,
+ "learning_rate": 9.2424532550629e-05,
+ "loss": 1.786799430847168,
+ "step": 2729
+ },
+ {
+ "epoch": 37.9198606271777,
+ "grad_norm": 0.06305447220802307,
+ "learning_rate": 9.223662051658408e-05,
+ "loss": 1.7832386493682861,
+ "step": 2730
+ },
+ {
+ "epoch": 37.933797909407666,
+ "grad_norm": 0.06175057590007782,
+ "learning_rate": 9.204887829078709e-05,
+ "loss": 1.7787675857543945,
+ "step": 2731
+ },
+ {
+ "epoch": 37.94773519163763,
+ "grad_norm": 0.06420185416936874,
+ "learning_rate": 9.186130602449861e-05,
+ "loss": 1.789478063583374,
+ "step": 2732
+ },
+ {
+ "epoch": 37.961672473867594,
+ "grad_norm": 0.06195196136832237,
+ "learning_rate": 9.167390386884224e-05,
+ "loss": 1.7866311073303223,
+ "step": 2733
+ },
+ {
+ "epoch": 37.97560975609756,
+ "grad_norm": 0.061849065124988556,
+ "learning_rate": 9.148667197480455e-05,
+ "loss": 1.7823681831359863,
+ "step": 2734
+ },
+ {
+ "epoch": 37.98954703832753,
+ "grad_norm": 0.06343266367912292,
+ "learning_rate": 9.129961049323494e-05,
+ "loss": 1.7910778522491455,
+ "step": 2735
+ },
+ {
+ "epoch": 38.0,
+ "grad_norm": 0.051387008279561996,
+ "learning_rate": 9.111271957484519e-05,
+ "loss": 1.3254375457763672,
+ "step": 2736
+ },
+ {
+ "epoch": 38.0,
+ "eval_loss": 0.6518338918685913,
+ "eval_runtime": 39.4344,
+ "eval_samples_per_second": 61.926,
+ "eval_steps_per_second": 0.507,
+ "step": 2736
+ },
+ {
+ "epoch": 38.01393728222997,
+ "grad_norm": 0.054842304438352585,
+ "learning_rate": 9.092599937021031e-05,
+ "loss": 1.7629472017288208,
+ "step": 2737
+ },
+ {
+ "epoch": 38.02787456445993,
+ "grad_norm": 0.0560758002102375,
+ "learning_rate": 9.073945002976715e-05,
+ "loss": 1.765484094619751,
+ "step": 2738
+ },
+ {
+ "epoch": 38.041811846689896,
+ "grad_norm": 0.05736801400780678,
+ "learning_rate": 9.055307170381522e-05,
+ "loss": 1.7687311172485352,
+ "step": 2739
+ },
+ {
+ "epoch": 38.055749128919864,
+ "grad_norm": 0.056426238268613815,
+ "learning_rate": 9.036686454251613e-05,
+ "loss": 1.7623649835586548,
+ "step": 2740
+ },
+ {
+ "epoch": 38.069686411149824,
+ "grad_norm": 0.055244769901037216,
+ "learning_rate": 9.018082869589369e-05,
+ "loss": 1.7769012451171875,
+ "step": 2741
+ },
+ {
+ "epoch": 38.08362369337979,
+ "grad_norm": 0.05597008392214775,
+ "learning_rate": 8.999496431383368e-05,
+ "loss": 1.7746217250823975,
+ "step": 2742
+ },
+ {
+ "epoch": 38.09756097560975,
+ "grad_norm": 0.05772856995463371,
+ "learning_rate": 8.980927154608341e-05,
+ "loss": 1.7711513042449951,
+ "step": 2743
+ },
+ {
+ "epoch": 38.11149825783972,
+ "grad_norm": 0.05718901380896568,
+ "learning_rate": 8.962375054225255e-05,
+ "loss": 1.7798418998718262,
+ "step": 2744
+ },
+ {
+ "epoch": 38.12543554006969,
+ "grad_norm": 0.05619210749864578,
+ "learning_rate": 8.943840145181177e-05,
+ "loss": 1.7707206010818481,
+ "step": 2745
+ },
+ {
+ "epoch": 38.13937282229965,
+ "grad_norm": 0.05785241723060608,
+ "learning_rate": 8.925322442409361e-05,
+ "loss": 1.7814784049987793,
+ "step": 2746
+ },
+ {
+ "epoch": 38.153310104529616,
+ "grad_norm": 0.05741840600967407,
+ "learning_rate": 8.906821960829163e-05,
+ "loss": 1.7686582803726196,
+ "step": 2747
+ },
+ {
+ "epoch": 38.167247386759584,
+ "grad_norm": 0.056764375418424606,
+ "learning_rate": 8.888338715346113e-05,
+ "loss": 1.7791080474853516,
+ "step": 2748
+ },
+ {
+ "epoch": 38.181184668989545,
+ "grad_norm": 0.05660741776227951,
+ "learning_rate": 8.869872720851831e-05,
+ "loss": 1.7721326351165771,
+ "step": 2749
+ },
+ {
+ "epoch": 38.19512195121951,
+ "grad_norm": 0.057148877531290054,
+ "learning_rate": 8.851423992224012e-05,
+ "loss": 1.7865493297576904,
+ "step": 2750
+ },
+ {
+ "epoch": 38.20905923344948,
+ "grad_norm": 0.05673397332429886,
+ "learning_rate": 8.832992544326473e-05,
+ "loss": 1.775355577468872,
+ "step": 2751
+ },
+ {
+ "epoch": 38.22299651567944,
+ "grad_norm": 0.05855946987867355,
+ "learning_rate": 8.814578392009104e-05,
+ "loss": 1.7630369663238525,
+ "step": 2752
+ },
+ {
+ "epoch": 38.23693379790941,
+ "grad_norm": 0.057675641030073166,
+ "learning_rate": 8.796181550107857e-05,
+ "loss": 1.7706618309020996,
+ "step": 2753
+ },
+ {
+ "epoch": 38.250871080139376,
+ "grad_norm": 0.05693305283784866,
+ "learning_rate": 8.777802033444712e-05,
+ "loss": 1.7833642959594727,
+ "step": 2754
+ },
+ {
+ "epoch": 38.26480836236934,
+ "grad_norm": 0.05849318578839302,
+ "learning_rate": 8.75943985682774e-05,
+ "loss": 1.7712740898132324,
+ "step": 2755
+ },
+ {
+ "epoch": 38.278745644599304,
+ "grad_norm": 0.058639708906412125,
+ "learning_rate": 8.741095035051017e-05,
+ "loss": 1.7742516994476318,
+ "step": 2756
+ },
+ {
+ "epoch": 38.292682926829265,
+ "grad_norm": 0.05999431386590004,
+ "learning_rate": 8.722767582894613e-05,
+ "loss": 1.770422101020813,
+ "step": 2757
+ },
+ {
+ "epoch": 38.30662020905923,
+ "grad_norm": 0.05881490185856819,
+ "learning_rate": 8.704457515124636e-05,
+ "loss": 1.7781115770339966,
+ "step": 2758
+ },
+ {
+ "epoch": 38.3205574912892,
+ "grad_norm": 0.05765020474791527,
+ "learning_rate": 8.686164846493176e-05,
+ "loss": 1.7714276313781738,
+ "step": 2759
+ },
+ {
+ "epoch": 38.33449477351916,
+ "grad_norm": 0.058526743203401566,
+ "learning_rate": 8.667889591738317e-05,
+ "loss": 1.766985297203064,
+ "step": 2760
+ },
+ {
+ "epoch": 38.34843205574913,
+ "grad_norm": 0.0583895705640316,
+ "learning_rate": 8.649631765584083e-05,
+ "loss": 1.7656654119491577,
+ "step": 2761
+ },
+ {
+ "epoch": 38.362369337979096,
+ "grad_norm": 0.05924084037542343,
+ "learning_rate": 8.631391382740482e-05,
+ "loss": 1.789198875427246,
+ "step": 2762
+ },
+ {
+ "epoch": 38.37630662020906,
+ "grad_norm": 0.05770174786448479,
+ "learning_rate": 8.613168457903459e-05,
+ "loss": 1.7670378684997559,
+ "step": 2763
+ },
+ {
+ "epoch": 38.390243902439025,
+ "grad_norm": 0.0583224780857563,
+ "learning_rate": 8.594963005754901e-05,
+ "loss": 1.7765432596206665,
+ "step": 2764
+ },
+ {
+ "epoch": 38.40418118466899,
+ "grad_norm": 0.05907677114009857,
+ "learning_rate": 8.57677504096261e-05,
+ "loss": 1.7787013053894043,
+ "step": 2765
+ },
+ {
+ "epoch": 38.41811846689895,
+ "grad_norm": 0.059105876833200455,
+ "learning_rate": 8.558604578180301e-05,
+ "loss": 1.7921006679534912,
+ "step": 2766
+ },
+ {
+ "epoch": 38.43205574912892,
+ "grad_norm": 0.05911828950047493,
+ "learning_rate": 8.540451632047593e-05,
+ "loss": 1.7742506265640259,
+ "step": 2767
+ },
+ {
+ "epoch": 38.44599303135889,
+ "grad_norm": 0.05825108662247658,
+ "learning_rate": 8.522316217189972e-05,
+ "loss": 1.7643852233886719,
+ "step": 2768
+ },
+ {
+ "epoch": 38.45993031358885,
+ "grad_norm": 0.05910007283091545,
+ "learning_rate": 8.504198348218821e-05,
+ "loss": 1.7819852828979492,
+ "step": 2769
+ },
+ {
+ "epoch": 38.47386759581882,
+ "grad_norm": 0.058992717415094376,
+ "learning_rate": 8.486098039731384e-05,
+ "loss": 1.7629930973052979,
+ "step": 2770
+ },
+ {
+ "epoch": 38.48780487804878,
+ "grad_norm": 0.05846566706895828,
+ "learning_rate": 8.46801530631075e-05,
+ "loss": 1.773916244506836,
+ "step": 2771
+ },
+ {
+ "epoch": 38.501742160278745,
+ "grad_norm": 0.058348461985588074,
+ "learning_rate": 8.449950162525859e-05,
+ "loss": 1.7839322090148926,
+ "step": 2772
+ },
+ {
+ "epoch": 38.51567944250871,
+ "grad_norm": 0.05947791039943695,
+ "learning_rate": 8.431902622931443e-05,
+ "loss": 1.765789270401001,
+ "step": 2773
+ },
+ {
+ "epoch": 38.52961672473867,
+ "grad_norm": 0.059648409485816956,
+ "learning_rate": 8.413872702068119e-05,
+ "loss": 1.7754334211349487,
+ "step": 2774
+ },
+ {
+ "epoch": 38.54355400696864,
+ "grad_norm": 0.05937156081199646,
+ "learning_rate": 8.395860414462238e-05,
+ "loss": 1.7900447845458984,
+ "step": 2775
+ },
+ {
+ "epoch": 38.55749128919861,
+ "grad_norm": 0.06034074351191521,
+ "learning_rate": 8.377865774625985e-05,
+ "loss": 1.7679557800292969,
+ "step": 2776
+ },
+ {
+ "epoch": 38.57142857142857,
+ "grad_norm": 0.0595686174929142,
+ "learning_rate": 8.359888797057316e-05,
+ "loss": 1.7792972326278687,
+ "step": 2777
+ },
+ {
+ "epoch": 38.58536585365854,
+ "grad_norm": 0.05900043621659279,
+ "learning_rate": 8.341929496239958e-05,
+ "loss": 1.7826911211013794,
+ "step": 2778
+ },
+ {
+ "epoch": 38.599303135888505,
+ "grad_norm": 0.059854842722415924,
+ "learning_rate": 8.323987886643402e-05,
+ "loss": 1.782975196838379,
+ "step": 2779
+ },
+ {
+ "epoch": 38.613240418118465,
+ "grad_norm": 0.0607217513024807,
+ "learning_rate": 8.306063982722855e-05,
+ "loss": 1.784066081047058,
+ "step": 2780
+ },
+ {
+ "epoch": 38.62717770034843,
+ "grad_norm": 0.06086676940321922,
+ "learning_rate": 8.288157798919318e-05,
+ "loss": 1.7733347415924072,
+ "step": 2781
+ },
+ {
+ "epoch": 38.641114982578394,
+ "grad_norm": 0.06048542261123657,
+ "learning_rate": 8.27026934965945e-05,
+ "loss": 1.7637434005737305,
+ "step": 2782
+ },
+ {
+ "epoch": 38.65505226480836,
+ "grad_norm": 0.06176905333995819,
+ "learning_rate": 8.25239864935566e-05,
+ "loss": 1.7731115818023682,
+ "step": 2783
+ },
+ {
+ "epoch": 38.66898954703833,
+ "grad_norm": 0.05974547937512398,
+ "learning_rate": 8.23454571240605e-05,
+ "loss": 1.772669792175293,
+ "step": 2784
+ },
+ {
+ "epoch": 38.68292682926829,
+ "grad_norm": 0.06157250702381134,
+ "learning_rate": 8.216710553194416e-05,
+ "loss": 1.7675827741622925,
+ "step": 2785
+ },
+ {
+ "epoch": 38.69686411149826,
+ "grad_norm": 0.06226542964577675,
+ "learning_rate": 8.198893186090222e-05,
+ "loss": 1.7833688259124756,
+ "step": 2786
+ },
+ {
+ "epoch": 38.710801393728225,
+ "grad_norm": 0.061170827597379684,
+ "learning_rate": 8.181093625448585e-05,
+ "loss": 1.777653455734253,
+ "step": 2787
+ },
+ {
+ "epoch": 38.724738675958186,
+ "grad_norm": 0.06075199693441391,
+ "learning_rate": 8.163311885610299e-05,
+ "loss": 1.7740358114242554,
+ "step": 2788
+ },
+ {
+ "epoch": 38.73867595818815,
+ "grad_norm": 0.061266977339982986,
+ "learning_rate": 8.145547980901791e-05,
+ "loss": 1.7838897705078125,
+ "step": 2789
+ },
+ {
+ "epoch": 38.75261324041812,
+ "grad_norm": 0.06033504754304886,
+ "learning_rate": 8.127801925635126e-05,
+ "loss": 1.7636661529541016,
+ "step": 2790
+ },
+ {
+ "epoch": 38.76655052264808,
+ "grad_norm": 0.06320908665657043,
+ "learning_rate": 8.110073734107954e-05,
+ "loss": 1.768554449081421,
+ "step": 2791
+ },
+ {
+ "epoch": 38.78048780487805,
+ "grad_norm": 0.06087823957204819,
+ "learning_rate": 8.092363420603584e-05,
+ "loss": 1.7832964658737183,
+ "step": 2792
+ },
+ {
+ "epoch": 38.79442508710802,
+ "grad_norm": 0.061426736414432526,
+ "learning_rate": 8.074670999390896e-05,
+ "loss": 1.774822473526001,
+ "step": 2793
+ },
+ {
+ "epoch": 38.80836236933798,
+ "grad_norm": 0.06240220367908478,
+ "learning_rate": 8.056996484724342e-05,
+ "loss": 1.788359522819519,
+ "step": 2794
+ },
+ {
+ "epoch": 38.822299651567945,
+ "grad_norm": 0.06103154271841049,
+ "learning_rate": 8.039339890843958e-05,
+ "loss": 1.7723958492279053,
+ "step": 2795
+ },
+ {
+ "epoch": 38.836236933797906,
+ "grad_norm": 0.06289014220237732,
+ "learning_rate": 8.02170123197535e-05,
+ "loss": 1.7608444690704346,
+ "step": 2796
+ },
+ {
+ "epoch": 38.850174216027874,
+ "grad_norm": 0.06123042851686478,
+ "learning_rate": 8.004080522329674e-05,
+ "loss": 1.784475326538086,
+ "step": 2797
+ },
+ {
+ "epoch": 38.86411149825784,
+ "grad_norm": 0.0598340779542923,
+ "learning_rate": 7.986477776103601e-05,
+ "loss": 1.7765214443206787,
+ "step": 2798
+ },
+ {
+ "epoch": 38.8780487804878,
+ "grad_norm": 0.06242257356643677,
+ "learning_rate": 7.968893007479343e-05,
+ "loss": 1.7831794023513794,
+ "step": 2799
+ },
+ {
+ "epoch": 38.89198606271777,
+ "grad_norm": 0.06315907835960388,
+ "learning_rate": 7.951326230624658e-05,
+ "loss": 1.8051912784576416,
+ "step": 2800
+ },
+ {
+ "epoch": 38.90592334494774,
+ "grad_norm": 0.061293307691812515,
+ "learning_rate": 7.933777459692756e-05,
+ "loss": 1.776687741279602,
+ "step": 2801
+ },
+ {
+ "epoch": 38.9198606271777,
+ "grad_norm": 0.06186775118112564,
+ "learning_rate": 7.916246708822373e-05,
+ "loss": 1.7880871295928955,
+ "step": 2802
+ },
+ {
+ "epoch": 38.933797909407666,
+ "grad_norm": 0.0620921365916729,
+ "learning_rate": 7.898733992137715e-05,
+ "loss": 1.7791707515716553,
+ "step": 2803
+ },
+ {
+ "epoch": 38.94773519163763,
+ "grad_norm": 0.06211252138018608,
+ "learning_rate": 7.881239323748475e-05,
+ "loss": 1.7760372161865234,
+ "step": 2804
+ },
+ {
+ "epoch": 38.961672473867594,
+ "grad_norm": 0.06390377879142761,
+ "learning_rate": 7.863762717749771e-05,
+ "loss": 1.7718498706817627,
+ "step": 2805
+ },
+ {
+ "epoch": 38.97560975609756,
+ "grad_norm": 0.06344659626483917,
+ "learning_rate": 7.846304188222189e-05,
+ "loss": 1.7801710367202759,
+ "step": 2806
+ },
+ {
+ "epoch": 38.98954703832753,
+ "grad_norm": 0.061760690063238144,
+ "learning_rate": 7.828863749231777e-05,
+ "loss": 1.7878985404968262,
+ "step": 2807
+ },
+ {
+ "epoch": 39.0,
+ "grad_norm": 0.05050521343946457,
+ "learning_rate": 7.811441414829958e-05,
+ "loss": 1.3291038274765015,
+ "step": 2808
+ },
+ {
+ "epoch": 39.0,
+ "eval_loss": 0.6531191468238831,
+ "eval_runtime": 38.9139,
+ "eval_samples_per_second": 62.754,
+ "eval_steps_per_second": 0.514,
+ "step": 2808
+ },
+ {
+ "epoch": 39.01393728222997,
+ "grad_norm": 0.05571041256189346,
+ "learning_rate": 7.794037199053598e-05,
+ "loss": 1.7602754831314087,
+ "step": 2809
+ },
+ {
+ "epoch": 39.02787456445993,
+ "grad_norm": 0.05649850144982338,
+ "learning_rate": 7.776651115924959e-05,
+ "loss": 1.7567126750946045,
+ "step": 2810
+ },
+ {
+ "epoch": 39.041811846689896,
+ "grad_norm": 0.05873497575521469,
+ "learning_rate": 7.759283179451704e-05,
+ "loss": 1.757828950881958,
+ "step": 2811
+ },
+ {
+ "epoch": 39.055749128919864,
+ "grad_norm": 0.056013382971286774,
+ "learning_rate": 7.741933403626848e-05,
+ "loss": 1.7616511583328247,
+ "step": 2812
+ },
+ {
+ "epoch": 39.069686411149824,
+ "grad_norm": 0.056703995913267136,
+ "learning_rate": 7.724601802428805e-05,
+ "loss": 1.7484111785888672,
+ "step": 2813
+ },
+ {
+ "epoch": 39.08362369337979,
+ "grad_norm": 0.05629453808069229,
+ "learning_rate": 7.707288389821329e-05,
+ "loss": 1.788665533065796,
+ "step": 2814
+ },
+ {
+ "epoch": 39.09756097560975,
+ "grad_norm": 0.056537557393312454,
+ "learning_rate": 7.689993179753519e-05,
+ "loss": 1.7590811252593994,
+ "step": 2815
+ },
+ {
+ "epoch": 39.11149825783972,
+ "grad_norm": 0.05757816880941391,
+ "learning_rate": 7.672716186159829e-05,
+ "loss": 1.7594993114471436,
+ "step": 2816
+ },
+ {
+ "epoch": 39.12543554006969,
+ "grad_norm": 0.05591630935668945,
+ "learning_rate": 7.655457422959993e-05,
+ "loss": 1.7654821872711182,
+ "step": 2817
+ },
+ {
+ "epoch": 39.13937282229965,
+ "grad_norm": 0.056902945041656494,
+ "learning_rate": 7.638216904059122e-05,
+ "loss": 1.7600302696228027,
+ "step": 2818
+ },
+ {
+ "epoch": 39.153310104529616,
+ "grad_norm": 0.05612136796116829,
+ "learning_rate": 7.620994643347559e-05,
+ "loss": 1.7703990936279297,
+ "step": 2819
+ },
+ {
+ "epoch": 39.167247386759584,
+ "grad_norm": 0.05739735811948776,
+ "learning_rate": 7.60379065470098e-05,
+ "loss": 1.7512180805206299,
+ "step": 2820
+ },
+ {
+ "epoch": 39.181184668989545,
+ "grad_norm": 0.05629546195268631,
+ "learning_rate": 7.586604951980326e-05,
+ "loss": 1.748405933380127,
+ "step": 2821
+ },
+ {
+ "epoch": 39.19512195121951,
+ "grad_norm": 0.05683593824505806,
+ "learning_rate": 7.569437549031813e-05,
+ "loss": 1.7602342367172241,
+ "step": 2822
+ },
+ {
+ "epoch": 39.20905923344948,
+ "grad_norm": 0.0563126876950264,
+ "learning_rate": 7.55228845968691e-05,
+ "loss": 1.7734246253967285,
+ "step": 2823
+ },
+ {
+ "epoch": 39.22299651567944,
+ "grad_norm": 0.05859875679016113,
+ "learning_rate": 7.535157697762313e-05,
+ "loss": 1.761047124862671,
+ "step": 2824
+ },
+ {
+ "epoch": 39.23693379790941,
+ "grad_norm": 0.0567043274641037,
+ "learning_rate": 7.518045277059979e-05,
+ "loss": 1.770047664642334,
+ "step": 2825
+ },
+ {
+ "epoch": 39.250871080139376,
+ "grad_norm": 0.056725919246673584,
+ "learning_rate": 7.500951211367068e-05,
+ "loss": 1.7686347961425781,
+ "step": 2826
+ },
+ {
+ "epoch": 39.26480836236934,
+ "grad_norm": 0.05699746683239937,
+ "learning_rate": 7.483875514455979e-05,
+ "loss": 1.7612677812576294,
+ "step": 2827
+ },
+ {
+ "epoch": 39.278745644599304,
+ "grad_norm": 0.057768259197473526,
+ "learning_rate": 7.466818200084264e-05,
+ "loss": 1.7612879276275635,
+ "step": 2828
+ },
+ {
+ "epoch": 39.292682926829265,
+ "grad_norm": 0.05838700383901596,
+ "learning_rate": 7.449779281994712e-05,
+ "loss": 1.7827105522155762,
+ "step": 2829
+ },
+ {
+ "epoch": 39.30662020905923,
+ "grad_norm": 0.05629018694162369,
+ "learning_rate": 7.43275877391528e-05,
+ "loss": 1.772542953491211,
+ "step": 2830
+ },
+ {
+ "epoch": 39.3205574912892,
+ "grad_norm": 0.058692216873168945,
+ "learning_rate": 7.415756689559061e-05,
+ "loss": 1.7646946907043457,
+ "step": 2831
+ },
+ {
+ "epoch": 39.33449477351916,
+ "grad_norm": 0.057233408093452454,
+ "learning_rate": 7.398773042624341e-05,
+ "loss": 1.7534501552581787,
+ "step": 2832
+ },
+ {
+ "epoch": 39.34843205574913,
+ "grad_norm": 0.05912395194172859,
+ "learning_rate": 7.381807846794532e-05,
+ "loss": 1.7443028688430786,
+ "step": 2833
+ },
+ {
+ "epoch": 39.362369337979096,
+ "grad_norm": 0.058173369616270065,
+ "learning_rate": 7.3648611157382e-05,
+ "loss": 1.752382755279541,
+ "step": 2834
+ },
+ {
+ "epoch": 39.37630662020906,
+ "grad_norm": 0.05793056637048721,
+ "learning_rate": 7.34793286310899e-05,
+ "loss": 1.7651920318603516,
+ "step": 2835
+ },
+ {
+ "epoch": 39.390243902439025,
+ "grad_norm": 0.057997558265924454,
+ "learning_rate": 7.331023102545716e-05,
+ "loss": 1.7639983892440796,
+ "step": 2836
+ },
+ {
+ "epoch": 39.40418118466899,
+ "grad_norm": 0.05872127786278725,
+ "learning_rate": 7.314131847672268e-05,
+ "loss": 1.7662757635116577,
+ "step": 2837
+ },
+ {
+ "epoch": 39.41811846689895,
+ "grad_norm": 0.05767998844385147,
+ "learning_rate": 7.297259112097608e-05,
+ "loss": 1.7753112316131592,
+ "step": 2838
+ },
+ {
+ "epoch": 39.43205574912892,
+ "grad_norm": 0.05973566323518753,
+ "learning_rate": 7.280404909415801e-05,
+ "loss": 1.7647457122802734,
+ "step": 2839
+ },
+ {
+ "epoch": 39.44599303135889,
+ "grad_norm": 0.05860889330506325,
+ "learning_rate": 7.263569253205973e-05,
+ "loss": 1.7454320192337036,
+ "step": 2840
+ },
+ {
+ "epoch": 39.45993031358885,
+ "grad_norm": 0.05834508687257767,
+ "learning_rate": 7.24675215703232e-05,
+ "loss": 1.7634966373443604,
+ "step": 2841
+ },
+ {
+ "epoch": 39.47386759581882,
+ "grad_norm": 0.058330077677965164,
+ "learning_rate": 7.229953634444055e-05,
+ "loss": 1.7737380266189575,
+ "step": 2842
+ },
+ {
+ "epoch": 39.48780487804878,
+ "grad_norm": 0.05816008523106575,
+ "learning_rate": 7.213173698975444e-05,
+ "loss": 1.7849770784378052,
+ "step": 2843
+ },
+ {
+ "epoch": 39.501742160278745,
+ "grad_norm": 0.0591905452311039,
+ "learning_rate": 7.1964123641458e-05,
+ "loss": 1.7493488788604736,
+ "step": 2844
+ },
+ {
+ "epoch": 39.51567944250871,
+ "grad_norm": 0.05864933878183365,
+ "learning_rate": 7.179669643459405e-05,
+ "loss": 1.7704007625579834,
+ "step": 2845
+ },
+ {
+ "epoch": 39.52961672473867,
+ "grad_norm": 0.05933962017297745,
+ "learning_rate": 7.162945550405575e-05,
+ "loss": 1.7526596784591675,
+ "step": 2846
+ },
+ {
+ "epoch": 39.54355400696864,
+ "grad_norm": 0.05753380060195923,
+ "learning_rate": 7.146240098458613e-05,
+ "loss": 1.7623823881149292,
+ "step": 2847
+ },
+ {
+ "epoch": 39.55749128919861,
+ "grad_norm": 0.05988965928554535,
+ "learning_rate": 7.129553301077801e-05,
+ "loss": 1.7672151327133179,
+ "step": 2848
+ },
+ {
+ "epoch": 39.57142857142857,
+ "grad_norm": 0.06081433221697807,
+ "learning_rate": 7.112885171707378e-05,
+ "loss": 1.7693394422531128,
+ "step": 2849
+ },
+ {
+ "epoch": 39.58536585365854,
+ "grad_norm": 0.05812366306781769,
+ "learning_rate": 7.096235723776562e-05,
+ "loss": 1.7645395994186401,
+ "step": 2850
+ },
+ {
+ "epoch": 39.599303135888505,
+ "grad_norm": 0.05910315737128258,
+ "learning_rate": 7.079604970699514e-05,
+ "loss": 1.7725062370300293,
+ "step": 2851
+ },
+ {
+ "epoch": 39.613240418118465,
+ "grad_norm": 0.059484075754880905,
+ "learning_rate": 7.062992925875332e-05,
+ "loss": 1.7643908262252808,
+ "step": 2852
+ },
+ {
+ "epoch": 39.62717770034843,
+ "grad_norm": 0.05829835683107376,
+ "learning_rate": 7.046399602688045e-05,
+ "loss": 1.7774662971496582,
+ "step": 2853
+ },
+ {
+ "epoch": 39.641114982578394,
+ "grad_norm": 0.059603478759527206,
+ "learning_rate": 7.029825014506572e-05,
+ "loss": 1.7719018459320068,
+ "step": 2854
+ },
+ {
+ "epoch": 39.65505226480836,
+ "grad_norm": 0.05839652940630913,
+ "learning_rate": 7.013269174684795e-05,
+ "loss": 1.7735795974731445,
+ "step": 2855
+ },
+ {
+ "epoch": 39.66898954703833,
+ "grad_norm": 0.05930941551923752,
+ "learning_rate": 6.996732096561422e-05,
+ "loss": 1.7792577743530273,
+ "step": 2856
+ },
+ {
+ "epoch": 39.68292682926829,
+ "grad_norm": 0.05927743390202522,
+ "learning_rate": 6.980213793460092e-05,
+ "loss": 1.755126714706421,
+ "step": 2857
+ },
+ {
+ "epoch": 39.69686411149826,
+ "grad_norm": 0.05989091843366623,
+ "learning_rate": 6.963714278689304e-05,
+ "loss": 1.7720985412597656,
+ "step": 2858
+ },
+ {
+ "epoch": 39.710801393728225,
+ "grad_norm": 0.058541540056467056,
+ "learning_rate": 6.947233565542417e-05,
+ "loss": 1.7545472383499146,
+ "step": 2859
+ },
+ {
+ "epoch": 39.724738675958186,
+ "grad_norm": 0.059460222721099854,
+ "learning_rate": 6.930771667297653e-05,
+ "loss": 1.7513591051101685,
+ "step": 2860
+ },
+ {
+ "epoch": 39.73867595818815,
+ "grad_norm": 0.06000630557537079,
+ "learning_rate": 6.914328597218042e-05,
+ "loss": 1.7690961360931396,
+ "step": 2861
+ },
+ {
+ "epoch": 39.75261324041812,
+ "grad_norm": 0.06078756973147392,
+ "learning_rate": 6.8979043685515e-05,
+ "loss": 1.7823233604431152,
+ "step": 2862
+ },
+ {
+ "epoch": 39.76655052264808,
+ "grad_norm": 0.06049913540482521,
+ "learning_rate": 6.881498994530708e-05,
+ "loss": 1.7722759246826172,
+ "step": 2863
+ },
+ {
+ "epoch": 39.78048780487805,
+ "grad_norm": 0.059854526072740555,
+ "learning_rate": 6.865112488373186e-05,
+ "loss": 1.7620121240615845,
+ "step": 2864
+ },
+ {
+ "epoch": 39.79442508710802,
+ "grad_norm": 0.05936812236905098,
+ "learning_rate": 6.84874486328125e-05,
+ "loss": 1.7765591144561768,
+ "step": 2865
+ },
+ {
+ "epoch": 39.80836236933798,
+ "grad_norm": 0.061247918754816055,
+ "learning_rate": 6.832396132441993e-05,
+ "loss": 1.776090145111084,
+ "step": 2866
+ },
+ {
+ "epoch": 39.822299651567945,
+ "grad_norm": 0.0605037659406662,
+ "learning_rate": 6.816066309027309e-05,
+ "loss": 1.7756134271621704,
+ "step": 2867
+ },
+ {
+ "epoch": 39.836236933797906,
+ "grad_norm": 0.06012726575136185,
+ "learning_rate": 6.799755406193815e-05,
+ "loss": 1.7574580907821655,
+ "step": 2868
+ },
+ {
+ "epoch": 39.850174216027874,
+ "grad_norm": 0.06041746586561203,
+ "learning_rate": 6.783463437082929e-05,
+ "loss": 1.7667291164398193,
+ "step": 2869
+ },
+ {
+ "epoch": 39.86411149825784,
+ "grad_norm": 0.06069319322705269,
+ "learning_rate": 6.767190414820792e-05,
+ "loss": 1.7681057453155518,
+ "step": 2870
+ },
+ {
+ "epoch": 39.8780487804878,
+ "grad_norm": 0.06130603328347206,
+ "learning_rate": 6.750936352518284e-05,
+ "loss": 1.7589905261993408,
+ "step": 2871
+ },
+ {
+ "epoch": 39.89198606271777,
+ "grad_norm": 0.06082052364945412,
+ "learning_rate": 6.734701263271011e-05,
+ "loss": 1.76715886592865,
+ "step": 2872
+ },
+ {
+ "epoch": 39.90592334494774,
+ "grad_norm": 0.06103082001209259,
+ "learning_rate": 6.718485160159289e-05,
+ "loss": 1.766019344329834,
+ "step": 2873
+ },
+ {
+ "epoch": 39.9198606271777,
+ "grad_norm": 0.06045110151171684,
+ "learning_rate": 6.702288056248145e-05,
+ "loss": 1.768965244293213,
+ "step": 2874
+ },
+ {
+ "epoch": 39.933797909407666,
+ "grad_norm": 0.06195594742894173,
+ "learning_rate": 6.686109964587285e-05,
+ "loss": 1.7693687677383423,
+ "step": 2875
+ },
+ {
+ "epoch": 39.94773519163763,
+ "grad_norm": 0.06063162162899971,
+ "learning_rate": 6.669950898211106e-05,
+ "loss": 1.7556135654449463,
+ "step": 2876
+ },
+ {
+ "epoch": 39.961672473867594,
+ "grad_norm": 0.06114466115832329,
+ "learning_rate": 6.653810870138676e-05,
+ "loss": 1.7742180824279785,
+ "step": 2877
+ },
+ {
+ "epoch": 39.97560975609756,
+ "grad_norm": 0.060473620891571045,
+ "learning_rate": 6.637689893373729e-05,
+ "loss": 1.7638022899627686,
+ "step": 2878
+ },
+ {
+ "epoch": 39.98954703832753,
+ "grad_norm": 0.05960119515657425,
+ "learning_rate": 6.621587980904651e-05,
+ "loss": 1.7725427150726318,
+ "step": 2879
+ },
+ {
+ "epoch": 40.0,
+ "grad_norm": 0.05046868324279785,
+ "learning_rate": 6.605505145704437e-05,
+ "loss": 1.3241307735443115,
+ "step": 2880
+ },
+ {
+ "epoch": 40.0,
+ "eval_loss": 0.6549648642539978,
+ "eval_runtime": 38.8762,
+ "eval_samples_per_second": 62.815,
+ "eval_steps_per_second": 0.514,
+ "step": 2880
+ },
+ {
+ "epoch": 40.01393728222997,
+ "grad_norm": 0.05329610034823418,
+ "learning_rate": 6.58944140073077e-05,
+ "loss": 1.7612388134002686,
+ "step": 2881
+ },
+ {
+ "epoch": 40.02787456445993,
+ "grad_norm": 0.05341725051403046,
+ "learning_rate": 6.573396758925891e-05,
+ "loss": 1.7626506090164185,
+ "step": 2882
+ },
+ {
+ "epoch": 40.041811846689896,
+ "grad_norm": 0.055179744958877563,
+ "learning_rate": 6.557371233216692e-05,
+ "loss": 1.746057152748108,
+ "step": 2883
+ },
+ {
+ "epoch": 40.055749128919864,
+ "grad_norm": 0.054009512066841125,
+ "learning_rate": 6.541364836514646e-05,
+ "loss": 1.7392195463180542,
+ "step": 2884
+ },
+ {
+ "epoch": 40.069686411149824,
+ "grad_norm": 0.05434491112828255,
+ "learning_rate": 6.525377581715829e-05,
+ "loss": 1.763177752494812,
+ "step": 2885
+ },
+ {
+ "epoch": 40.08362369337979,
+ "grad_norm": 0.05450546741485596,
+ "learning_rate": 6.509409481700864e-05,
+ "loss": 1.7505466938018799,
+ "step": 2886
+ },
+ {
+ "epoch": 40.09756097560975,
+ "grad_norm": 0.05500749126076698,
+ "learning_rate": 6.49346054933496e-05,
+ "loss": 1.7472319602966309,
+ "step": 2887
+ },
+ {
+ "epoch": 40.11149825783972,
+ "grad_norm": 0.055027205497026443,
+ "learning_rate": 6.477530797467911e-05,
+ "loss": 1.755077600479126,
+ "step": 2888
+ },
+ {
+ "epoch": 40.12543554006969,
+ "grad_norm": 0.05478304252028465,
+ "learning_rate": 6.461620238934006e-05,
+ "loss": 1.75167715549469,
+ "step": 2889
+ },
+ {
+ "epoch": 40.13937282229965,
+ "grad_norm": 0.055308908224105835,
+ "learning_rate": 6.445728886552109e-05,
+ "loss": 1.7633740901947021,
+ "step": 2890
+ },
+ {
+ "epoch": 40.153310104529616,
+ "grad_norm": 0.056247279047966,
+ "learning_rate": 6.429856753125573e-05,
+ "loss": 1.7813739776611328,
+ "step": 2891
+ },
+ {
+ "epoch": 40.167247386759584,
+ "grad_norm": 0.05602998286485672,
+ "learning_rate": 6.414003851442318e-05,
+ "loss": 1.7522822618484497,
+ "step": 2892
+ },
+ {
+ "epoch": 40.181184668989545,
+ "grad_norm": 0.05592861771583557,
+ "learning_rate": 6.398170194274722e-05,
+ "loss": 1.7461259365081787,
+ "step": 2893
+ },
+ {
+ "epoch": 40.19512195121951,
+ "grad_norm": 0.05522628873586655,
+ "learning_rate": 6.38235579437968e-05,
+ "loss": 1.754199743270874,
+ "step": 2894
+ },
+ {
+ "epoch": 40.20905923344948,
+ "grad_norm": 0.053787752985954285,
+ "learning_rate": 6.366560664498572e-05,
+ "loss": 1.7648603916168213,
+ "step": 2895
+ },
+ {
+ "epoch": 40.22299651567944,
+ "grad_norm": 0.05515512079000473,
+ "learning_rate": 6.350784817357242e-05,
+ "loss": 1.7321906089782715,
+ "step": 2896
+ },
+ {
+ "epoch": 40.23693379790941,
+ "grad_norm": 0.055907025933265686,
+ "learning_rate": 6.335028265666023e-05,
+ "loss": 1.7550973892211914,
+ "step": 2897
+ },
+ {
+ "epoch": 40.250871080139376,
+ "grad_norm": 0.05606880784034729,
+ "learning_rate": 6.319291022119653e-05,
+ "loss": 1.7457480430603027,
+ "step": 2898
+ },
+ {
+ "epoch": 40.26480836236934,
+ "grad_norm": 0.056643400341272354,
+ "learning_rate": 6.303573099397378e-05,
+ "loss": 1.7461693286895752,
+ "step": 2899
+ },
+ {
+ "epoch": 40.278745644599304,
+ "grad_norm": 0.055017828941345215,
+ "learning_rate": 6.287874510162821e-05,
+ "loss": 1.7573003768920898,
+ "step": 2900
+ },
+ {
+ "epoch": 40.292682926829265,
+ "grad_norm": 0.05636011064052582,
+ "learning_rate": 6.272195267064063e-05,
+ "loss": 1.7461949586868286,
+ "step": 2901
+ },
+ {
+ "epoch": 40.30662020905923,
+ "grad_norm": 0.05673863738775253,
+ "learning_rate": 6.25653538273358e-05,
+ "loss": 1.761730670928955,
+ "step": 2902
+ },
+ {
+ "epoch": 40.3205574912892,
+ "grad_norm": 0.05672964081168175,
+ "learning_rate": 6.240894869788267e-05,
+ "loss": 1.7496947050094604,
+ "step": 2903
+ },
+ {
+ "epoch": 40.33449477351916,
+ "grad_norm": 0.05810986086726189,
+ "learning_rate": 6.225273740829404e-05,
+ "loss": 1.7652089595794678,
+ "step": 2904
+ },
+ {
+ "epoch": 40.34843205574913,
+ "grad_norm": 0.057571738958358765,
+ "learning_rate": 6.209672008442635e-05,
+ "loss": 1.7497992515563965,
+ "step": 2905
+ },
+ {
+ "epoch": 40.362369337979096,
+ "grad_norm": 0.056777361780405045,
+ "learning_rate": 6.19408968519801e-05,
+ "loss": 1.7577930688858032,
+ "step": 2906
+ },
+ {
+ "epoch": 40.37630662020906,
+ "grad_norm": 0.057860299944877625,
+ "learning_rate": 6.178526783649916e-05,
+ "loss": 1.7412835359573364,
+ "step": 2907
+ },
+ {
+ "epoch": 40.390243902439025,
+ "grad_norm": 0.05768195167183876,
+ "learning_rate": 6.162983316337109e-05,
+ "loss": 1.7525410652160645,
+ "step": 2908
+ },
+ {
+ "epoch": 40.40418118466899,
+ "grad_norm": 0.05660717561841011,
+ "learning_rate": 6.147459295782676e-05,
+ "loss": 1.7566120624542236,
+ "step": 2909
+ },
+ {
+ "epoch": 40.41811846689895,
+ "grad_norm": 0.05782219022512436,
+ "learning_rate": 6.131954734494045e-05,
+ "loss": 1.7574937343597412,
+ "step": 2910
+ },
+ {
+ "epoch": 40.43205574912892,
+ "grad_norm": 0.05836864560842514,
+ "learning_rate": 6.11646964496296e-05,
+ "loss": 1.7590690851211548,
+ "step": 2911
+ },
+ {
+ "epoch": 40.44599303135889,
+ "grad_norm": 0.05849185958504677,
+ "learning_rate": 6.101004039665471e-05,
+ "loss": 1.7411694526672363,
+ "step": 2912
+ },
+ {
+ "epoch": 40.45993031358885,
+ "grad_norm": 0.057976704090833664,
+ "learning_rate": 6.085557931061937e-05,
+ "loss": 1.7654719352722168,
+ "step": 2913
+ },
+ {
+ "epoch": 40.47386759581882,
+ "grad_norm": 0.05788232758641243,
+ "learning_rate": 6.070131331597015e-05,
+ "loss": 1.7688660621643066,
+ "step": 2914
+ },
+ {
+ "epoch": 40.48780487804878,
+ "grad_norm": 0.05881178006529808,
+ "learning_rate": 6.054724253699636e-05,
+ "loss": 1.7445406913757324,
+ "step": 2915
+ },
+ {
+ "epoch": 40.501742160278745,
+ "grad_norm": 0.058010175824165344,
+ "learning_rate": 6.03933670978301e-05,
+ "loss": 1.7510701417922974,
+ "step": 2916
+ },
+ {
+ "epoch": 40.51567944250871,
+ "grad_norm": 0.057643987238407135,
+ "learning_rate": 6.0239687122445826e-05,
+ "loss": 1.761549472808838,
+ "step": 2917
+ },
+ {
+ "epoch": 40.52961672473867,
+ "grad_norm": 0.05845414847135544,
+ "learning_rate": 6.0086202734661e-05,
+ "loss": 1.757174015045166,
+ "step": 2918
+ },
+ {
+ "epoch": 40.54355400696864,
+ "grad_norm": 0.056833695620298386,
+ "learning_rate": 5.9932914058135004e-05,
+ "loss": 1.7557662725448608,
+ "step": 2919
+ },
+ {
+ "epoch": 40.55749128919861,
+ "grad_norm": 0.058717962354421616,
+ "learning_rate": 5.977982121636984e-05,
+ "loss": 1.7634422779083252,
+ "step": 2920
+ },
+ {
+ "epoch": 40.57142857142857,
+ "grad_norm": 0.05989163741469383,
+ "learning_rate": 5.962692433270962e-05,
+ "loss": 1.7481534481048584,
+ "step": 2921
+ },
+ {
+ "epoch": 40.58536585365854,
+ "grad_norm": 0.05897611007094383,
+ "learning_rate": 5.9474223530340634e-05,
+ "loss": 1.7620482444763184,
+ "step": 2922
+ },
+ {
+ "epoch": 40.599303135888505,
+ "grad_norm": 0.05900486186146736,
+ "learning_rate": 5.932171893229124e-05,
+ "loss": 1.737398624420166,
+ "step": 2923
+ },
+ {
+ "epoch": 40.613240418118465,
+ "grad_norm": 0.05889439582824707,
+ "learning_rate": 5.916941066143137e-05,
+ "loss": 1.755040168762207,
+ "step": 2924
+ },
+ {
+ "epoch": 40.62717770034843,
+ "grad_norm": 0.05877622216939926,
+ "learning_rate": 5.9017298840473364e-05,
+ "loss": 1.7548447847366333,
+ "step": 2925
+ },
+ {
+ "epoch": 40.641114982578394,
+ "grad_norm": 0.059609122574329376,
+ "learning_rate": 5.8865383591970775e-05,
+ "loss": 1.75567626953125,
+ "step": 2926
+ },
+ {
+ "epoch": 40.65505226480836,
+ "grad_norm": 0.05786288529634476,
+ "learning_rate": 5.8713665038319e-05,
+ "loss": 1.7596291303634644,
+ "step": 2927
+ },
+ {
+ "epoch": 40.66898954703833,
+ "grad_norm": 0.058539971709251404,
+ "learning_rate": 5.856214330175498e-05,
+ "loss": 1.7571325302124023,
+ "step": 2928
+ },
+ {
+ "epoch": 40.68292682926829,
+ "grad_norm": 0.05965579301118851,
+ "learning_rate": 5.841081850435704e-05,
+ "loss": 1.7486262321472168,
+ "step": 2929
+ },
+ {
+ "epoch": 40.69686411149826,
+ "grad_norm": 0.05948231369256973,
+ "learning_rate": 5.825969076804488e-05,
+ "loss": 1.7754912376403809,
+ "step": 2930
+ },
+ {
+ "epoch": 40.710801393728225,
+ "grad_norm": 0.060370851308107376,
+ "learning_rate": 5.810876021457925e-05,
+ "loss": 1.7505199909210205,
+ "step": 2931
+ },
+ {
+ "epoch": 40.724738675958186,
+ "grad_norm": 0.060079995542764664,
+ "learning_rate": 5.795802696556222e-05,
+ "loss": 1.768754243850708,
+ "step": 2932
+ },
+ {
+ "epoch": 40.73867595818815,
+ "grad_norm": 0.05976298823952675,
+ "learning_rate": 5.78074911424369e-05,
+ "loss": 1.7482929229736328,
+ "step": 2933
+ },
+ {
+ "epoch": 40.75261324041812,
+ "grad_norm": 0.06007836386561394,
+ "learning_rate": 5.765715286648734e-05,
+ "loss": 1.7502119541168213,
+ "step": 2934
+ },
+ {
+ "epoch": 40.76655052264808,
+ "grad_norm": 0.06062794849276543,
+ "learning_rate": 5.7507012258838154e-05,
+ "loss": 1.762496829032898,
+ "step": 2935
+ },
+ {
+ "epoch": 40.78048780487805,
+ "grad_norm": 0.06048697605729103,
+ "learning_rate": 5.7357069440455095e-05,
+ "loss": 1.747687816619873,
+ "step": 2936
+ },
+ {
+ "epoch": 40.79442508710802,
+ "grad_norm": 0.060689277946949005,
+ "learning_rate": 5.7207324532144454e-05,
+ "loss": 1.7589991092681885,
+ "step": 2937
+ },
+ {
+ "epoch": 40.80836236933798,
+ "grad_norm": 0.06020907312631607,
+ "learning_rate": 5.7057777654552785e-05,
+ "loss": 1.764328956604004,
+ "step": 2938
+ },
+ {
+ "epoch": 40.822299651567945,
+ "grad_norm": 0.05968928709626198,
+ "learning_rate": 5.690842892816741e-05,
+ "loss": 1.7579362392425537,
+ "step": 2939
+ },
+ {
+ "epoch": 40.836236933797906,
+ "grad_norm": 0.05860544741153717,
+ "learning_rate": 5.675927847331593e-05,
+ "loss": 1.7408514022827148,
+ "step": 2940
+ },
+ {
+ "epoch": 40.850174216027874,
+ "grad_norm": 0.059796303510665894,
+ "learning_rate": 5.661032641016619e-05,
+ "loss": 1.7617907524108887,
+ "step": 2941
+ },
+ {
+ "epoch": 40.86411149825784,
+ "grad_norm": 0.05849650502204895,
+ "learning_rate": 5.6461572858726086e-05,
+ "loss": 1.7763279676437378,
+ "step": 2942
+ },
+ {
+ "epoch": 40.8780487804878,
+ "grad_norm": 0.06002969667315483,
+ "learning_rate": 5.6313017938843595e-05,
+ "loss": 1.7555131912231445,
+ "step": 2943
+ },
+ {
+ "epoch": 40.89198606271777,
+ "grad_norm": 0.060442935675382614,
+ "learning_rate": 5.6164661770207026e-05,
+ "loss": 1.7596445083618164,
+ "step": 2944
+ },
+ {
+ "epoch": 40.90592334494774,
+ "grad_norm": 0.05894192308187485,
+ "learning_rate": 5.6016504472344e-05,
+ "loss": 1.7602481842041016,
+ "step": 2945
+ },
+ {
+ "epoch": 40.9198606271777,
+ "grad_norm": 0.06014241650700569,
+ "learning_rate": 5.5868546164622284e-05,
+ "loss": 1.755906105041504,
+ "step": 2946
+ },
+ {
+ "epoch": 40.933797909407666,
+ "grad_norm": 0.06153898313641548,
+ "learning_rate": 5.572078696624917e-05,
+ "loss": 1.7462100982666016,
+ "step": 2947
+ },
+ {
+ "epoch": 40.94773519163763,
+ "grad_norm": 0.05898294225335121,
+ "learning_rate": 5.557322699627168e-05,
+ "loss": 1.7764217853546143,
+ "step": 2948
+ },
+ {
+ "epoch": 40.961672473867594,
+ "grad_norm": 0.06041870638728142,
+ "learning_rate": 5.542586637357607e-05,
+ "loss": 1.7452261447906494,
+ "step": 2949
+ },
+ {
+ "epoch": 40.97560975609756,
+ "grad_norm": 0.06204214319586754,
+ "learning_rate": 5.527870521688817e-05,
+ "loss": 1.7640793323516846,
+ "step": 2950
+ },
+ {
+ "epoch": 40.98954703832753,
+ "grad_norm": 0.059619251638650894,
+ "learning_rate": 5.513174364477311e-05,
+ "loss": 1.7518072128295898,
+ "step": 2951
+ },
+ {
+ "epoch": 41.0,
+ "grad_norm": 0.04948742687702179,
+ "learning_rate": 5.498498177563518e-05,
+ "loss": 1.3159854412078857,
+ "step": 2952
+ },
+ {
+ "epoch": 41.0,
+ "eval_loss": 0.6565045118331909,
+ "eval_runtime": 39.9271,
+ "eval_samples_per_second": 61.162,
+ "eval_steps_per_second": 0.501,
+ "step": 2952
+ },
+ {
+ "epoch": 41.01393728222997,
+ "grad_norm": 0.053389765322208405,
+ "learning_rate": 5.4838419727717716e-05,
+ "loss": 1.744584560394287,
+ "step": 2953
+ },
+ {
+ "epoch": 41.02787456445993,
+ "grad_norm": 0.05327652022242546,
+ "learning_rate": 5.4692057619103144e-05,
+ "loss": 1.7331609725952148,
+ "step": 2954
+ },
+ {
+ "epoch": 41.041811846689896,
+ "grad_norm": 0.05409115180373192,
+ "learning_rate": 5.454589556771286e-05,
+ "loss": 1.7575292587280273,
+ "step": 2955
+ },
+ {
+ "epoch": 41.055749128919864,
+ "grad_norm": 0.05568825453519821,
+ "learning_rate": 5.439993369130681e-05,
+ "loss": 1.7418404817581177,
+ "step": 2956
+ },
+ {
+ "epoch": 41.069686411149824,
+ "grad_norm": 0.05310272425413132,
+ "learning_rate": 5.4254172107483924e-05,
+ "loss": 1.7438266277313232,
+ "step": 2957
+ },
+ {
+ "epoch": 41.08362369337979,
+ "grad_norm": 0.05542699247598648,
+ "learning_rate": 5.410861093368169e-05,
+ "loss": 1.745741367340088,
+ "step": 2958
+ },
+ {
+ "epoch": 41.09756097560975,
+ "grad_norm": 0.05622494965791702,
+ "learning_rate": 5.3963250287176094e-05,
+ "loss": 1.762403964996338,
+ "step": 2959
+ },
+ {
+ "epoch": 41.11149825783972,
+ "grad_norm": 0.05441451445221901,
+ "learning_rate": 5.381809028508168e-05,
+ "loss": 1.7388191223144531,
+ "step": 2960
+ },
+ {
+ "epoch": 41.12543554006969,
+ "grad_norm": 0.05534256249666214,
+ "learning_rate": 5.367313104435104e-05,
+ "loss": 1.7292771339416504,
+ "step": 2961
+ },
+ {
+ "epoch": 41.13937282229965,
+ "grad_norm": 0.05409536510705948,
+ "learning_rate": 5.352837268177544e-05,
+ "loss": 1.747714638710022,
+ "step": 2962
+ },
+ {
+ "epoch": 41.153310104529616,
+ "grad_norm": 0.05489929020404816,
+ "learning_rate": 5.3383815313983916e-05,
+ "loss": 1.7458940744400024,
+ "step": 2963
+ },
+ {
+ "epoch": 41.167247386759584,
+ "grad_norm": 0.05558855086565018,
+ "learning_rate": 5.323945905744379e-05,
+ "loss": 1.7345919609069824,
+ "step": 2964
+ },
+ {
+ "epoch": 41.181184668989545,
+ "grad_norm": 0.054389894008636475,
+ "learning_rate": 5.3095304028460284e-05,
+ "loss": 1.7303307056427002,
+ "step": 2965
+ },
+ {
+ "epoch": 41.19512195121951,
+ "grad_norm": 0.05494401231408119,
+ "learning_rate": 5.2951350343176495e-05,
+ "loss": 1.7355846166610718,
+ "step": 2966
+ },
+ {
+ "epoch": 41.20905923344948,
+ "grad_norm": 0.05682668834924698,
+ "learning_rate": 5.2807598117573384e-05,
+ "loss": 1.7457060813903809,
+ "step": 2967
+ },
+ {
+ "epoch": 41.22299651567944,
+ "grad_norm": 0.05510581657290459,
+ "learning_rate": 5.266404746746939e-05,
+ "loss": 1.753556728363037,
+ "step": 2968
+ },
+ {
+ "epoch": 41.23693379790941,
+ "grad_norm": 0.054192155599594116,
+ "learning_rate": 5.252069850852072e-05,
+ "loss": 1.761225700378418,
+ "step": 2969
+ },
+ {
+ "epoch": 41.250871080139376,
+ "grad_norm": 0.0555533766746521,
+ "learning_rate": 5.237755135622107e-05,
+ "loss": 1.7361319065093994,
+ "step": 2970
+ },
+ {
+ "epoch": 41.26480836236934,
+ "grad_norm": 0.05583607777953148,
+ "learning_rate": 5.223460612590159e-05,
+ "loss": 1.7515783309936523,
+ "step": 2971
+ },
+ {
+ "epoch": 41.278745644599304,
+ "grad_norm": 0.05615803226828575,
+ "learning_rate": 5.209186293273044e-05,
+ "loss": 1.750364065170288,
+ "step": 2972
+ },
+ {
+ "epoch": 41.292682926829265,
+ "grad_norm": 0.056125134229660034,
+ "learning_rate": 5.1949321891713446e-05,
+ "loss": 1.7333505153656006,
+ "step": 2973
+ },
+ {
+ "epoch": 41.30662020905923,
+ "grad_norm": 0.05511055514216423,
+ "learning_rate": 5.180698311769338e-05,
+ "loss": 1.7543116807937622,
+ "step": 2974
+ },
+ {
+ "epoch": 41.3205574912892,
+ "grad_norm": 0.0558859221637249,
+ "learning_rate": 5.166484672534983e-05,
+ "loss": 1.7365493774414062,
+ "step": 2975
+ },
+ {
+ "epoch": 41.33449477351916,
+ "grad_norm": 0.05536917224526405,
+ "learning_rate": 5.152291282919961e-05,
+ "loss": 1.75287663936615,
+ "step": 2976
+ },
+ {
+ "epoch": 41.34843205574913,
+ "grad_norm": 0.055952467024326324,
+ "learning_rate": 5.138118154359632e-05,
+ "loss": 1.7528082132339478,
+ "step": 2977
+ },
+ {
+ "epoch": 41.362369337979096,
+ "grad_norm": 0.05669279396533966,
+ "learning_rate": 5.1239652982730335e-05,
+ "loss": 1.7285187244415283,
+ "step": 2978
+ },
+ {
+ "epoch": 41.37630662020906,
+ "grad_norm": 0.055759698152542114,
+ "learning_rate": 5.1098327260628466e-05,
+ "loss": 1.741194248199463,
+ "step": 2979
+ },
+ {
+ "epoch": 41.390243902439025,
+ "grad_norm": 0.05614893138408661,
+ "learning_rate": 5.09572044911545e-05,
+ "loss": 1.7334706783294678,
+ "step": 2980
+ },
+ {
+ "epoch": 41.40418118466899,
+ "grad_norm": 0.0576351098716259,
+ "learning_rate": 5.0816284788008527e-05,
+ "loss": 1.7409534454345703,
+ "step": 2981
+ },
+ {
+ "epoch": 41.41811846689895,
+ "grad_norm": 0.054785653948783875,
+ "learning_rate": 5.067556826472684e-05,
+ "loss": 1.7461568117141724,
+ "step": 2982
+ },
+ {
+ "epoch": 41.43205574912892,
+ "grad_norm": 0.05714823678135872,
+ "learning_rate": 5.053505503468228e-05,
+ "loss": 1.7565304040908813,
+ "step": 2983
+ },
+ {
+ "epoch": 41.44599303135889,
+ "grad_norm": 0.05810947343707085,
+ "learning_rate": 5.0394745211083785e-05,
+ "loss": 1.7428717613220215,
+ "step": 2984
+ },
+ {
+ "epoch": 41.45993031358885,
+ "grad_norm": 0.05674325302243233,
+ "learning_rate": 5.025463890697655e-05,
+ "loss": 1.746922254562378,
+ "step": 2985
+ },
+ {
+ "epoch": 41.47386759581882,
+ "grad_norm": 0.05707298219203949,
+ "learning_rate": 5.011473623524159e-05,
+ "loss": 1.7500100135803223,
+ "step": 2986
+ },
+ {
+ "epoch": 41.48780487804878,
+ "grad_norm": 0.05556417629122734,
+ "learning_rate": 4.9975037308595864e-05,
+ "loss": 1.7501108646392822,
+ "step": 2987
+ },
+ {
+ "epoch": 41.501742160278745,
+ "grad_norm": 0.05651511251926422,
+ "learning_rate": 4.983554223959257e-05,
+ "loss": 1.748642921447754,
+ "step": 2988
+ },
+ {
+ "epoch": 41.51567944250871,
+ "grad_norm": 0.0562419556081295,
+ "learning_rate": 4.9696251140620134e-05,
+ "loss": 1.7355605363845825,
+ "step": 2989
+ },
+ {
+ "epoch": 41.52961672473867,
+ "grad_norm": 0.05729687958955765,
+ "learning_rate": 4.9557164123902924e-05,
+ "loss": 1.7534375190734863,
+ "step": 2990
+ },
+ {
+ "epoch": 41.54355400696864,
+ "grad_norm": 0.05564015731215477,
+ "learning_rate": 4.9418281301500844e-05,
+ "loss": 1.7632761001586914,
+ "step": 2991
+ },
+ {
+ "epoch": 41.55749128919861,
+ "grad_norm": 0.057233307510614395,
+ "learning_rate": 4.9279602785309365e-05,
+ "loss": 1.7507392168045044,
+ "step": 2992
+ },
+ {
+ "epoch": 41.57142857142857,
+ "grad_norm": 0.05761440098285675,
+ "learning_rate": 4.914112868705911e-05,
+ "loss": 1.74878990650177,
+ "step": 2993
+ },
+ {
+ "epoch": 41.58536585365854,
+ "grad_norm": 0.05795833095908165,
+ "learning_rate": 4.900285911831624e-05,
+ "loss": 1.7476063966751099,
+ "step": 2994
+ },
+ {
+ "epoch": 41.599303135888505,
+ "grad_norm": 0.05722825229167938,
+ "learning_rate": 4.886479419048201e-05,
+ "loss": 1.740659475326538,
+ "step": 2995
+ },
+ {
+ "epoch": 41.613240418118465,
+ "grad_norm": 0.0575735941529274,
+ "learning_rate": 4.872693401479292e-05,
+ "loss": 1.7290525436401367,
+ "step": 2996
+ },
+ {
+ "epoch": 41.62717770034843,
+ "grad_norm": 0.05690573528409004,
+ "learning_rate": 4.858927870232039e-05,
+ "loss": 1.7471413612365723,
+ "step": 2997
+ },
+ {
+ "epoch": 41.641114982578394,
+ "grad_norm": 0.057813860476017,
+ "learning_rate": 4.845182836397068e-05,
+ "loss": 1.7490575313568115,
+ "step": 2998
+ },
+ {
+ "epoch": 41.65505226480836,
+ "grad_norm": 0.056658681482076645,
+ "learning_rate": 4.831458311048532e-05,
+ "loss": 1.748292088508606,
+ "step": 2999
+ },
+ {
+ "epoch": 41.66898954703833,
+ "grad_norm": 0.058063190430402756,
+ "learning_rate": 4.817754305244008e-05,
+ "loss": 1.7593414783477783,
+ "step": 3000
+ },
+ {
+ "epoch": 41.68292682926829,
+ "grad_norm": 0.056882593780756,
+ "learning_rate": 4.804070830024577e-05,
+ "loss": 1.7557659149169922,
+ "step": 3001
+ },
+ {
+ "epoch": 41.69686411149826,
+ "grad_norm": 0.05820607393980026,
+ "learning_rate": 4.7904078964147654e-05,
+ "loss": 1.7497520446777344,
+ "step": 3002
+ },
+ {
+ "epoch": 41.710801393728225,
+ "grad_norm": 0.058366596698760986,
+ "learning_rate": 4.776765515422557e-05,
+ "loss": 1.7578121423721313,
+ "step": 3003
+ },
+ {
+ "epoch": 41.724738675958186,
+ "grad_norm": 0.058660220354795456,
+ "learning_rate": 4.763143698039371e-05,
+ "loss": 1.7462737560272217,
+ "step": 3004
+ },
+ {
+ "epoch": 41.73867595818815,
+ "grad_norm": 0.05943872779607773,
+ "learning_rate": 4.749542455240043e-05,
+ "loss": 1.7522482872009277,
+ "step": 3005
+ },
+ {
+ "epoch": 41.75261324041812,
+ "grad_norm": 0.058226995170116425,
+ "learning_rate": 4.735961797982876e-05,
+ "loss": 1.7390249967575073,
+ "step": 3006
+ },
+ {
+ "epoch": 41.76655052264808,
+ "grad_norm": 0.05844676122069359,
+ "learning_rate": 4.7224017372095414e-05,
+ "loss": 1.7342069149017334,
+ "step": 3007
+ },
+ {
+ "epoch": 41.78048780487805,
+ "grad_norm": 0.05901646986603737,
+ "learning_rate": 4.708862283845143e-05,
+ "loss": 1.7475719451904297,
+ "step": 3008
+ },
+ {
+ "epoch": 41.79442508710802,
+ "grad_norm": 0.057633303105831146,
+ "learning_rate": 4.695343448798163e-05,
+ "loss": 1.7648053169250488,
+ "step": 3009
+ },
+ {
+ "epoch": 41.80836236933798,
+ "grad_norm": 0.05827447772026062,
+ "learning_rate": 4.681845242960492e-05,
+ "loss": 1.7417083978652954,
+ "step": 3010
+ },
+ {
+ "epoch": 41.822299651567945,
+ "grad_norm": 0.05831371620297432,
+ "learning_rate": 4.668367677207398e-05,
+ "loss": 1.7564820051193237,
+ "step": 3011
+ },
+ {
+ "epoch": 41.836236933797906,
+ "grad_norm": 0.05814244598150253,
+ "learning_rate": 4.654910762397499e-05,
+ "loss": 1.7442173957824707,
+ "step": 3012
+ },
+ {
+ "epoch": 41.850174216027874,
+ "grad_norm": 0.05809921398758888,
+ "learning_rate": 4.6414745093727913e-05,
+ "loss": 1.7496514320373535,
+ "step": 3013
+ },
+ {
+ "epoch": 41.86411149825784,
+ "grad_norm": 0.05783133953809738,
+ "learning_rate": 4.6280589289586255e-05,
+ "loss": 1.7409605979919434,
+ "step": 3014
+ },
+ {
+ "epoch": 41.8780487804878,
+ "grad_norm": 0.058318085968494415,
+ "learning_rate": 4.614664031963692e-05,
+ "loss": 1.7377967834472656,
+ "step": 3015
+ },
+ {
+ "epoch": 41.89198606271777,
+ "grad_norm": 0.05874738097190857,
+ "learning_rate": 4.601289829180004e-05,
+ "loss": 1.7490065097808838,
+ "step": 3016
+ },
+ {
+ "epoch": 41.90592334494774,
+ "grad_norm": 0.05748818814754486,
+ "learning_rate": 4.587936331382934e-05,
+ "loss": 1.7389873266220093,
+ "step": 3017
+ },
+ {
+ "epoch": 41.9198606271777,
+ "grad_norm": 0.05881265923380852,
+ "learning_rate": 4.574603549331151e-05,
+ "loss": 1.759662389755249,
+ "step": 3018
+ },
+ {
+ "epoch": 41.933797909407666,
+ "grad_norm": 0.059542443603277206,
+ "learning_rate": 4.561291493766625e-05,
+ "loss": 1.758399248123169,
+ "step": 3019
+ },
+ {
+ "epoch": 41.94773519163763,
+ "grad_norm": 0.05880162492394447,
+ "learning_rate": 4.5480001754146455e-05,
+ "loss": 1.7564117908477783,
+ "step": 3020
+ },
+ {
+ "epoch": 41.961672473867594,
+ "grad_norm": 0.0600244402885437,
+ "learning_rate": 4.5347296049837875e-05,
+ "loss": 1.7446315288543701,
+ "step": 3021
+ },
+ {
+ "epoch": 41.97560975609756,
+ "grad_norm": 0.05956844240427017,
+ "learning_rate": 4.52147979316592e-05,
+ "loss": 1.7390222549438477,
+ "step": 3022
+ },
+ {
+ "epoch": 41.98954703832753,
+ "grad_norm": 0.058926235884428024,
+ "learning_rate": 4.5082507506361574e-05,
+ "loss": 1.7468228340148926,
+ "step": 3023
+ },
+ {
+ "epoch": 42.0,
+ "grad_norm": 0.0481082908809185,
+ "learning_rate": 4.495042488052904e-05,
+ "loss": 1.3066598176956177,
+ "step": 3024
+ },
+ {
+ "epoch": 42.0,
+ "eval_loss": 0.657874584197998,
+ "eval_runtime": 39.4956,
+ "eval_samples_per_second": 61.83,
+ "eval_steps_per_second": 0.506,
+ "step": 3024
+ },
+ {
+ "epoch": 42.01393728222997,
+ "grad_norm": 0.05208680033683777,
+ "learning_rate": 4.481855016057839e-05,
+ "loss": 1.7607581615447998,
+ "step": 3025
+ },
+ {
+ "epoch": 42.02787456445993,
+ "grad_norm": 0.051687296479940414,
+ "learning_rate": 4.468688345275848e-05,
+ "loss": 1.7419458627700806,
+ "step": 3026
+ },
+ {
+ "epoch": 42.041811846689896,
+ "grad_norm": 0.052635665982961655,
+ "learning_rate": 4.455542486315086e-05,
+ "loss": 1.7463515996932983,
+ "step": 3027
+ },
+ {
+ "epoch": 42.055749128919864,
+ "grad_norm": 0.05592944473028183,
+ "learning_rate": 4.442417449766938e-05,
+ "loss": 1.7211248874664307,
+ "step": 3028
+ },
+ {
+ "epoch": 42.069686411149824,
+ "grad_norm": 0.05414228141307831,
+ "learning_rate": 4.429313246206014e-05,
+ "loss": 1.7274463176727295,
+ "step": 3029
+ },
+ {
+ "epoch": 42.08362369337979,
+ "grad_norm": 0.05200774595141411,
+ "learning_rate": 4.416229886190119e-05,
+ "loss": 1.7372533082962036,
+ "step": 3030
+ },
+ {
+ "epoch": 42.09756097560975,
+ "grad_norm": 0.05394597724080086,
+ "learning_rate": 4.403167380260281e-05,
+ "loss": 1.7334144115447998,
+ "step": 3031
+ },
+ {
+ "epoch": 42.11149825783972,
+ "grad_norm": 0.05299610272049904,
+ "learning_rate": 4.3901257389407475e-05,
+ "loss": 1.7404639720916748,
+ "step": 3032
+ },
+ {
+ "epoch": 42.12543554006969,
+ "grad_norm": 0.0535874217748642,
+ "learning_rate": 4.3771049727389075e-05,
+ "loss": 1.7393574714660645,
+ "step": 3033
+ },
+ {
+ "epoch": 42.13937282229965,
+ "grad_norm": 0.05436873808503151,
+ "learning_rate": 4.364105092145377e-05,
+ "loss": 1.7361713647842407,
+ "step": 3034
+ },
+ {
+ "epoch": 42.153310104529616,
+ "grad_norm": 0.05342480540275574,
+ "learning_rate": 4.3511261076339e-05,
+ "loss": 1.7330613136291504,
+ "step": 3035
+ },
+ {
+ "epoch": 42.167247386759584,
+ "grad_norm": 0.05344010889530182,
+ "learning_rate": 4.3381680296614394e-05,
+ "loss": 1.7371134757995605,
+ "step": 3036
+ },
+ {
+ "epoch": 42.181184668989545,
+ "grad_norm": 0.05387014523148537,
+ "learning_rate": 4.3252308686680626e-05,
+ "loss": 1.7318518161773682,
+ "step": 3037
+ },
+ {
+ "epoch": 42.19512195121951,
+ "grad_norm": 0.053338535130023956,
+ "learning_rate": 4.3123146350770146e-05,
+ "loss": 1.7419188022613525,
+ "step": 3038
+ },
+ {
+ "epoch": 42.20905923344948,
+ "grad_norm": 0.05352434888482094,
+ "learning_rate": 4.2994193392946726e-05,
+ "loss": 1.7303433418273926,
+ "step": 3039
+ },
+ {
+ "epoch": 42.22299651567944,
+ "grad_norm": 0.0526539571583271,
+ "learning_rate": 4.286544991710541e-05,
+ "loss": 1.7365992069244385,
+ "step": 3040
+ },
+ {
+ "epoch": 42.23693379790941,
+ "grad_norm": 0.053493719547986984,
+ "learning_rate": 4.2736916026972576e-05,
+ "loss": 1.7276771068572998,
+ "step": 3041
+ },
+ {
+ "epoch": 42.250871080139376,
+ "grad_norm": 0.05427069589495659,
+ "learning_rate": 4.260859182610542e-05,
+ "loss": 1.7256132364273071,
+ "step": 3042
+ },
+ {
+ "epoch": 42.26480836236934,
+ "grad_norm": 0.052875883877277374,
+ "learning_rate": 4.2480477417892776e-05,
+ "loss": 1.7335498332977295,
+ "step": 3043
+ },
+ {
+ "epoch": 42.278745644599304,
+ "grad_norm": 0.05313582345843315,
+ "learning_rate": 4.235257290555381e-05,
+ "loss": 1.7459813356399536,
+ "step": 3044
+ },
+ {
+ "epoch": 42.292682926829265,
+ "grad_norm": 0.05465029552578926,
+ "learning_rate": 4.222487839213903e-05,
+ "loss": 1.7475128173828125,
+ "step": 3045
+ },
+ {
+ "epoch": 42.30662020905923,
+ "grad_norm": 0.05480528250336647,
+ "learning_rate": 4.209739398052956e-05,
+ "loss": 1.7406105995178223,
+ "step": 3046
+ },
+ {
+ "epoch": 42.3205574912892,
+ "grad_norm": 0.0538000762462616,
+ "learning_rate": 4.1970119773437316e-05,
+ "loss": 1.7387456893920898,
+ "step": 3047
+ },
+ {
+ "epoch": 42.33449477351916,
+ "grad_norm": 0.054415084421634674,
+ "learning_rate": 4.184305587340483e-05,
+ "loss": 1.7384449243545532,
+ "step": 3048
+ },
+ {
+ "epoch": 42.34843205574913,
+ "grad_norm": 0.05428307130932808,
+ "learning_rate": 4.171620238280511e-05,
+ "loss": 1.7308465242385864,
+ "step": 3049
+ },
+ {
+ "epoch": 42.362369337979096,
+ "grad_norm": 0.05368340387940407,
+ "learning_rate": 4.158955940384179e-05,
+ "loss": 1.7367150783538818,
+ "step": 3050
+ },
+ {
+ "epoch": 42.37630662020906,
+ "grad_norm": 0.05506566911935806,
+ "learning_rate": 4.146312703854881e-05,
+ "loss": 1.7474619150161743,
+ "step": 3051
+ },
+ {
+ "epoch": 42.390243902439025,
+ "grad_norm": 0.05445770174264908,
+ "learning_rate": 4.133690538879046e-05,
+ "loss": 1.7390122413635254,
+ "step": 3052
+ },
+ {
+ "epoch": 42.40418118466899,
+ "grad_norm": 0.05502717196941376,
+ "learning_rate": 4.1210894556261226e-05,
+ "loss": 1.7415062189102173,
+ "step": 3053
+ },
+ {
+ "epoch": 42.41811846689895,
+ "grad_norm": 0.05497781187295914,
+ "learning_rate": 4.108509464248578e-05,
+ "loss": 1.7377595901489258,
+ "step": 3054
+ },
+ {
+ "epoch": 42.43205574912892,
+ "grad_norm": 0.05539880692958832,
+ "learning_rate": 4.095950574881891e-05,
+ "loss": 1.7212984561920166,
+ "step": 3055
+ },
+ {
+ "epoch": 42.44599303135889,
+ "grad_norm": 0.05596085265278816,
+ "learning_rate": 4.083412797644514e-05,
+ "loss": 1.7364012002944946,
+ "step": 3056
+ },
+ {
+ "epoch": 42.45993031358885,
+ "grad_norm": 0.05489261448383331,
+ "learning_rate": 4.0708961426379214e-05,
+ "loss": 1.7466539144515991,
+ "step": 3057
+ },
+ {
+ "epoch": 42.47386759581882,
+ "grad_norm": 0.05615408346056938,
+ "learning_rate": 4.0584006199465484e-05,
+ "loss": 1.7343370914459229,
+ "step": 3058
+ },
+ {
+ "epoch": 42.48780487804878,
+ "grad_norm": 0.05492844805121422,
+ "learning_rate": 4.0459262396378165e-05,
+ "loss": 1.7185142040252686,
+ "step": 3059
+ },
+ {
+ "epoch": 42.501742160278745,
+ "grad_norm": 0.05458400771021843,
+ "learning_rate": 4.033473011762116e-05,
+ "loss": 1.7361526489257812,
+ "step": 3060
+ },
+ {
+ "epoch": 42.51567944250871,
+ "grad_norm": 0.0557398647069931,
+ "learning_rate": 4.0210409463527656e-05,
+ "loss": 1.7349817752838135,
+ "step": 3061
+ },
+ {
+ "epoch": 42.52961672473867,
+ "grad_norm": 0.056416671723127365,
+ "learning_rate": 4.008630053426082e-05,
+ "loss": 1.7209566831588745,
+ "step": 3062
+ },
+ {
+ "epoch": 42.54355400696864,
+ "grad_norm": 0.055751193314790726,
+ "learning_rate": 3.996240342981279e-05,
+ "loss": 1.7442636489868164,
+ "step": 3063
+ },
+ {
+ "epoch": 42.55749128919861,
+ "grad_norm": 0.055229250341653824,
+ "learning_rate": 3.983871825000529e-05,
+ "loss": 1.7374467849731445,
+ "step": 3064
+ },
+ {
+ "epoch": 42.57142857142857,
+ "grad_norm": 0.05428178608417511,
+ "learning_rate": 3.971524509448925e-05,
+ "loss": 1.738893747329712,
+ "step": 3065
+ },
+ {
+ "epoch": 42.58536585365854,
+ "grad_norm": 0.05826052650809288,
+ "learning_rate": 3.959198406274472e-05,
+ "loss": 1.7353756427764893,
+ "step": 3066
+ },
+ {
+ "epoch": 42.599303135888505,
+ "grad_norm": 0.05567533150315285,
+ "learning_rate": 3.946893525408097e-05,
+ "loss": 1.7376806735992432,
+ "step": 3067
+ },
+ {
+ "epoch": 42.613240418118465,
+ "grad_norm": 0.05556056275963783,
+ "learning_rate": 3.934609876763604e-05,
+ "loss": 1.7425165176391602,
+ "step": 3068
+ },
+ {
+ "epoch": 42.62717770034843,
+ "grad_norm": 0.05691612884402275,
+ "learning_rate": 3.922347470237728e-05,
+ "loss": 1.74611496925354,
+ "step": 3069
+ },
+ {
+ "epoch": 42.641114982578394,
+ "grad_norm": 0.05505446344614029,
+ "learning_rate": 3.910106315710053e-05,
+ "loss": 1.7471598386764526,
+ "step": 3070
+ },
+ {
+ "epoch": 42.65505226480836,
+ "grad_norm": 0.05606447905302048,
+ "learning_rate": 3.897886423043061e-05,
+ "loss": 1.7338154315948486,
+ "step": 3071
+ },
+ {
+ "epoch": 42.66898954703833,
+ "grad_norm": 0.054854776710271835,
+ "learning_rate": 3.8856878020820975e-05,
+ "loss": 1.7437448501586914,
+ "step": 3072
+ },
+ {
+ "epoch": 42.68292682926829,
+ "grad_norm": 0.05594967305660248,
+ "learning_rate": 3.873510462655375e-05,
+ "loss": 1.7481606006622314,
+ "step": 3073
+ },
+ {
+ "epoch": 42.69686411149826,
+ "grad_norm": 0.055426109582185745,
+ "learning_rate": 3.861354414573954e-05,
+ "loss": 1.743486762046814,
+ "step": 3074
+ },
+ {
+ "epoch": 42.710801393728225,
+ "grad_norm": 0.05826818197965622,
+ "learning_rate": 3.849219667631735e-05,
+ "loss": 1.738979458808899,
+ "step": 3075
+ },
+ {
+ "epoch": 42.724738675958186,
+ "grad_norm": 0.05604671314358711,
+ "learning_rate": 3.8371062316054764e-05,
+ "loss": 1.7408664226531982,
+ "step": 3076
+ },
+ {
+ "epoch": 42.73867595818815,
+ "grad_norm": 0.05721673369407654,
+ "learning_rate": 3.8250141162547466e-05,
+ "loss": 1.7527461051940918,
+ "step": 3077
+ },
+ {
+ "epoch": 42.75261324041812,
+ "grad_norm": 0.05601170286536217,
+ "learning_rate": 3.812943331321956e-05,
+ "loss": 1.728229284286499,
+ "step": 3078
+ },
+ {
+ "epoch": 42.76655052264808,
+ "grad_norm": 0.05630524456501007,
+ "learning_rate": 3.8008938865322955e-05,
+ "loss": 1.7406551837921143,
+ "step": 3079
+ },
+ {
+ "epoch": 42.78048780487805,
+ "grad_norm": 0.05840087682008743,
+ "learning_rate": 3.788865791593813e-05,
+ "loss": 1.7291171550750732,
+ "step": 3080
+ },
+ {
+ "epoch": 42.79442508710802,
+ "grad_norm": 0.05644397437572479,
+ "learning_rate": 3.7768590561973064e-05,
+ "loss": 1.7416772842407227,
+ "step": 3081
+ },
+ {
+ "epoch": 42.80836236933798,
+ "grad_norm": 0.057627443224191666,
+ "learning_rate": 3.764873690016394e-05,
+ "loss": 1.7393077611923218,
+ "step": 3082
+ },
+ {
+ "epoch": 42.822299651567945,
+ "grad_norm": 0.056960273534059525,
+ "learning_rate": 3.7529097027074654e-05,
+ "loss": 1.7356089353561401,
+ "step": 3083
+ },
+ {
+ "epoch": 42.836236933797906,
+ "grad_norm": 0.0571947805583477,
+ "learning_rate": 3.7409671039096936e-05,
+ "loss": 1.7245415449142456,
+ "step": 3084
+ },
+ {
+ "epoch": 42.850174216027874,
+ "grad_norm": 0.05802195519208908,
+ "learning_rate": 3.7290459032450184e-05,
+ "loss": 1.7374985218048096,
+ "step": 3085
+ },
+ {
+ "epoch": 42.86411149825784,
+ "grad_norm": 0.05658788979053497,
+ "learning_rate": 3.717146110318123e-05,
+ "loss": 1.734710693359375,
+ "step": 3086
+ },
+ {
+ "epoch": 42.8780487804878,
+ "grad_norm": 0.05672605335712433,
+ "learning_rate": 3.7052677347164614e-05,
+ "loss": 1.7445356845855713,
+ "step": 3087
+ },
+ {
+ "epoch": 42.89198606271777,
+ "grad_norm": 0.057985443621873856,
+ "learning_rate": 3.693410786010231e-05,
+ "loss": 1.7436648607254028,
+ "step": 3088
+ },
+ {
+ "epoch": 42.90592334494774,
+ "grad_norm": 0.057312048971652985,
+ "learning_rate": 3.6815752737523537e-05,
+ "loss": 1.733546257019043,
+ "step": 3089
+ },
+ {
+ "epoch": 42.9198606271777,
+ "grad_norm": 0.05714614316821098,
+ "learning_rate": 3.6697612074784944e-05,
+ "loss": 1.7475671768188477,
+ "step": 3090
+ },
+ {
+ "epoch": 42.933797909407666,
+ "grad_norm": 0.05716433376073837,
+ "learning_rate": 3.657968596707029e-05,
+ "loss": 1.747363805770874,
+ "step": 3091
+ },
+ {
+ "epoch": 42.94773519163763,
+ "grad_norm": 0.0583619549870491,
+ "learning_rate": 3.64619745093906e-05,
+ "loss": 1.7315218448638916,
+ "step": 3092
+ },
+ {
+ "epoch": 42.961672473867594,
+ "grad_norm": 0.05783749744296074,
+ "learning_rate": 3.6344477796583714e-05,
+ "loss": 1.7356035709381104,
+ "step": 3093
+ },
+ {
+ "epoch": 42.97560975609756,
+ "grad_norm": 0.057828135788440704,
+ "learning_rate": 3.622719592331472e-05,
+ "loss": 1.741631269454956,
+ "step": 3094
+ },
+ {
+ "epoch": 42.98954703832753,
+ "grad_norm": 0.058276452124118805,
+ "learning_rate": 3.611012898407544e-05,
+ "loss": 1.7422380447387695,
+ "step": 3095
+ },
+ {
+ "epoch": 43.0,
+ "grad_norm": 0.04720350727438927,
+ "learning_rate": 3.599327707318464e-05,
+ "loss": 1.3168083429336548,
+ "step": 3096
+ },
+ {
+ "epoch": 43.0,
+ "eval_loss": 0.6593254804611206,
+ "eval_runtime": 40.4601,
+ "eval_samples_per_second": 60.356,
+ "eval_steps_per_second": 0.494,
+ "step": 3096
+ },
+ {
+ "epoch": 43.01393728222997,
+ "grad_norm": 0.049638550728559494,
+ "learning_rate": 3.587664028478779e-05,
+ "loss": 1.7210091352462769,
+ "step": 3097
+ },
+ {
+ "epoch": 43.02787456445993,
+ "grad_norm": 0.05109990015625954,
+ "learning_rate": 3.5760218712857046e-05,
+ "loss": 1.7293510437011719,
+ "step": 3098
+ },
+ {
+ "epoch": 43.041811846689896,
+ "grad_norm": 0.050848234444856644,
+ "learning_rate": 3.564401245119119e-05,
+ "loss": 1.7333694696426392,
+ "step": 3099
+ },
+ {
+ "epoch": 43.055749128919864,
+ "grad_norm": 0.05160995200276375,
+ "learning_rate": 3.552802159341543e-05,
+ "loss": 1.733559250831604,
+ "step": 3100
+ },
+ {
+ "epoch": 43.069686411149824,
+ "grad_norm": 0.052781928330659866,
+ "learning_rate": 3.541224623298155e-05,
+ "loss": 1.7207956314086914,
+ "step": 3101
+ },
+ {
+ "epoch": 43.08362369337979,
+ "grad_norm": 0.0514349602162838,
+ "learning_rate": 3.529668646316765e-05,
+ "loss": 1.733931064605713,
+ "step": 3102
+ },
+ {
+ "epoch": 43.09756097560975,
+ "grad_norm": 0.051527239382267,
+ "learning_rate": 3.5181342377078166e-05,
+ "loss": 1.736284852027893,
+ "step": 3103
+ },
+ {
+ "epoch": 43.11149825783972,
+ "grad_norm": 0.05159756913781166,
+ "learning_rate": 3.5066214067643785e-05,
+ "loss": 1.7323846817016602,
+ "step": 3104
+ },
+ {
+ "epoch": 43.12543554006969,
+ "grad_norm": 0.05132414400577545,
+ "learning_rate": 3.495130162762119e-05,
+ "loss": 1.721909999847412,
+ "step": 3105
+ },
+ {
+ "epoch": 43.13937282229965,
+ "grad_norm": 0.05165236070752144,
+ "learning_rate": 3.483660514959343e-05,
+ "loss": 1.7334851026535034,
+ "step": 3106
+ },
+ {
+ "epoch": 43.153310104529616,
+ "grad_norm": 0.05227863788604736,
+ "learning_rate": 3.4722124725969235e-05,
+ "loss": 1.7244406938552856,
+ "step": 3107
+ },
+ {
+ "epoch": 43.167247386759584,
+ "grad_norm": 0.0507102869451046,
+ "learning_rate": 3.460786044898346e-05,
+ "loss": 1.7296943664550781,
+ "step": 3108
+ },
+ {
+ "epoch": 43.181184668989545,
+ "grad_norm": 0.051942128688097,
+ "learning_rate": 3.4493812410696784e-05,
+ "loss": 1.7424235343933105,
+ "step": 3109
+ },
+ {
+ "epoch": 43.19512195121951,
+ "grad_norm": 0.05361393839120865,
+ "learning_rate": 3.437998070299564e-05,
+ "loss": 1.735414743423462,
+ "step": 3110
+ },
+ {
+ "epoch": 43.20905923344948,
+ "grad_norm": 0.0525725781917572,
+ "learning_rate": 3.426636541759225e-05,
+ "loss": 1.7281429767608643,
+ "step": 3111
+ },
+ {
+ "epoch": 43.22299651567944,
+ "grad_norm": 0.051599062979221344,
+ "learning_rate": 3.415296664602425e-05,
+ "loss": 1.7482497692108154,
+ "step": 3112
+ },
+ {
+ "epoch": 43.23693379790941,
+ "grad_norm": 0.053419627249240875,
+ "learning_rate": 3.403978447965507e-05,
+ "loss": 1.741397738456726,
+ "step": 3113
+ },
+ {
+ "epoch": 43.250871080139376,
+ "grad_norm": 0.0536978505551815,
+ "learning_rate": 3.392681900967355e-05,
+ "loss": 1.7282965183258057,
+ "step": 3114
+ },
+ {
+ "epoch": 43.26480836236934,
+ "grad_norm": 0.05282224342226982,
+ "learning_rate": 3.381407032709395e-05,
+ "loss": 1.7393105030059814,
+ "step": 3115
+ },
+ {
+ "epoch": 43.278745644599304,
+ "grad_norm": 0.05195239186286926,
+ "learning_rate": 3.3701538522755714e-05,
+ "loss": 1.7233878374099731,
+ "step": 3116
+ },
+ {
+ "epoch": 43.292682926829265,
+ "grad_norm": 0.0528675839304924,
+ "learning_rate": 3.35892236873238e-05,
+ "loss": 1.7237660884857178,
+ "step": 3117
+ },
+ {
+ "epoch": 43.30662020905923,
+ "grad_norm": 0.05262859910726547,
+ "learning_rate": 3.3477125911288284e-05,
+ "loss": 1.7302489280700684,
+ "step": 3118
+ },
+ {
+ "epoch": 43.3205574912892,
+ "grad_norm": 0.05272877961397171,
+ "learning_rate": 3.3365245284964225e-05,
+ "loss": 1.7126233577728271,
+ "step": 3119
+ },
+ {
+ "epoch": 43.33449477351916,
+ "grad_norm": 0.05431615933775902,
+ "learning_rate": 3.3253581898491836e-05,
+ "loss": 1.7330362796783447,
+ "step": 3120
+ },
+ {
+ "epoch": 43.34843205574913,
+ "grad_norm": 0.052712008357048035,
+ "learning_rate": 3.3142135841836276e-05,
+ "loss": 1.7317285537719727,
+ "step": 3121
+ },
+ {
+ "epoch": 43.362369337979096,
+ "grad_norm": 0.05290947109460831,
+ "learning_rate": 3.303090720478773e-05,
+ "loss": 1.7378607988357544,
+ "step": 3122
+ },
+ {
+ "epoch": 43.37630662020906,
+ "grad_norm": 0.05354118347167969,
+ "learning_rate": 3.291989607696092e-05,
+ "loss": 1.7344810962677002,
+ "step": 3123
+ },
+ {
+ "epoch": 43.390243902439025,
+ "grad_norm": 0.05180691182613373,
+ "learning_rate": 3.280910254779565e-05,
+ "loss": 1.7168121337890625,
+ "step": 3124
+ },
+ {
+ "epoch": 43.40418118466899,
+ "grad_norm": 0.053051721304655075,
+ "learning_rate": 3.269852670655629e-05,
+ "loss": 1.7246195077896118,
+ "step": 3125
+ },
+ {
+ "epoch": 43.41811846689895,
+ "grad_norm": 0.05364576354622841,
+ "learning_rate": 3.258816864233169e-05,
+ "loss": 1.7349464893341064,
+ "step": 3126
+ },
+ {
+ "epoch": 43.43205574912892,
+ "grad_norm": 0.053229302167892456,
+ "learning_rate": 3.247802844403536e-05,
+ "loss": 1.729675531387329,
+ "step": 3127
+ },
+ {
+ "epoch": 43.44599303135889,
+ "grad_norm": 0.05499981343746185,
+ "learning_rate": 3.236810620040532e-05,
+ "loss": 1.7363426685333252,
+ "step": 3128
+ },
+ {
+ "epoch": 43.45993031358885,
+ "grad_norm": 0.05298415943980217,
+ "learning_rate": 3.225840200000396e-05,
+ "loss": 1.718310832977295,
+ "step": 3129
+ },
+ {
+ "epoch": 43.47386759581882,
+ "grad_norm": 0.05337477847933769,
+ "learning_rate": 3.214891593121788e-05,
+ "loss": 1.7189042568206787,
+ "step": 3130
+ },
+ {
+ "epoch": 43.48780487804878,
+ "grad_norm": 0.05245691537857056,
+ "learning_rate": 3.203964808225801e-05,
+ "loss": 1.726578950881958,
+ "step": 3131
+ },
+ {
+ "epoch": 43.501742160278745,
+ "grad_norm": 0.05360230430960655,
+ "learning_rate": 3.193059854115968e-05,
+ "loss": 1.7311490774154663,
+ "step": 3132
+ },
+ {
+ "epoch": 43.51567944250871,
+ "grad_norm": 0.05326886102557182,
+ "learning_rate": 3.182176739578195e-05,
+ "loss": 1.7303065061569214,
+ "step": 3133
+ },
+ {
+ "epoch": 43.52961672473867,
+ "grad_norm": 0.054385583847761154,
+ "learning_rate": 3.171315473380815e-05,
+ "loss": 1.7429119348526,
+ "step": 3134
+ },
+ {
+ "epoch": 43.54355400696864,
+ "grad_norm": 0.05324076861143112,
+ "learning_rate": 3.160476064274555e-05,
+ "loss": 1.7216813564300537,
+ "step": 3135
+ },
+ {
+ "epoch": 43.55749128919861,
+ "grad_norm": 0.05422625690698624,
+ "learning_rate": 3.149658520992537e-05,
+ "loss": 1.7312194108963013,
+ "step": 3136
+ },
+ {
+ "epoch": 43.57142857142857,
+ "grad_norm": 0.053185880184173584,
+ "learning_rate": 3.138862852250249e-05,
+ "loss": 1.74150812625885,
+ "step": 3137
+ },
+ {
+ "epoch": 43.58536585365854,
+ "grad_norm": 0.05465586856007576,
+ "learning_rate": 3.1280890667455694e-05,
+ "loss": 1.7237094640731812,
+ "step": 3138
+ },
+ {
+ "epoch": 43.599303135888505,
+ "grad_norm": 0.05459308251738548,
+ "learning_rate": 3.1173371731587496e-05,
+ "loss": 1.7397316694259644,
+ "step": 3139
+ },
+ {
+ "epoch": 43.613240418118465,
+ "grad_norm": 0.0537206195294857,
+ "learning_rate": 3.1066071801523905e-05,
+ "loss": 1.7294268608093262,
+ "step": 3140
+ },
+ {
+ "epoch": 43.62717770034843,
+ "grad_norm": 0.0546269416809082,
+ "learning_rate": 3.095899096371456e-05,
+ "loss": 1.7221415042877197,
+ "step": 3141
+ },
+ {
+ "epoch": 43.641114982578394,
+ "grad_norm": 0.053113903850317,
+ "learning_rate": 3.0852129304432506e-05,
+ "loss": 1.736724615097046,
+ "step": 3142
+ },
+ {
+ "epoch": 43.65505226480836,
+ "grad_norm": 0.05498050898313522,
+ "learning_rate": 3.074548690977434e-05,
+ "loss": 1.7322667837142944,
+ "step": 3143
+ },
+ {
+ "epoch": 43.66898954703833,
+ "grad_norm": 0.05440475046634674,
+ "learning_rate": 3.0639063865659834e-05,
+ "loss": 1.73948073387146,
+ "step": 3144
+ },
+ {
+ "epoch": 43.68292682926829,
+ "grad_norm": 0.05363302677869797,
+ "learning_rate": 3.0532860257832144e-05,
+ "loss": 1.7285170555114746,
+ "step": 3145
+ },
+ {
+ "epoch": 43.69686411149826,
+ "grad_norm": 0.054400697350502014,
+ "learning_rate": 3.04268761718576e-05,
+ "loss": 1.7351844310760498,
+ "step": 3146
+ },
+ {
+ "epoch": 43.710801393728225,
+ "grad_norm": 0.05313118174672127,
+ "learning_rate": 3.0321111693125648e-05,
+ "loss": 1.7225779294967651,
+ "step": 3147
+ },
+ {
+ "epoch": 43.724738675958186,
+ "grad_norm": 0.05314374715089798,
+ "learning_rate": 3.0215566906848906e-05,
+ "loss": 1.738951325416565,
+ "step": 3148
+ },
+ {
+ "epoch": 43.73867595818815,
+ "grad_norm": 0.0563817098736763,
+ "learning_rate": 3.0110241898062726e-05,
+ "loss": 1.7275046110153198,
+ "step": 3149
+ },
+ {
+ "epoch": 43.75261324041812,
+ "grad_norm": 0.05504818260669708,
+ "learning_rate": 3.0005136751625748e-05,
+ "loss": 1.731112003326416,
+ "step": 3150
+ },
+ {
+ "epoch": 43.76655052264808,
+ "grad_norm": 0.05315326526761055,
+ "learning_rate": 2.9900251552219178e-05,
+ "loss": 1.7331246137619019,
+ "step": 3151
+ },
+ {
+ "epoch": 43.78048780487805,
+ "grad_norm": 0.05489419773221016,
+ "learning_rate": 2.9795586384347202e-05,
+ "loss": 1.738120198249817,
+ "step": 3152
+ },
+ {
+ "epoch": 43.79442508710802,
+ "grad_norm": 0.05455980822443962,
+ "learning_rate": 2.9691141332336494e-05,
+ "loss": 1.738473892211914,
+ "step": 3153
+ },
+ {
+ "epoch": 43.80836236933798,
+ "grad_norm": 0.05449097976088524,
+ "learning_rate": 2.9586916480336735e-05,
+ "loss": 1.7321404218673706,
+ "step": 3154
+ },
+ {
+ "epoch": 43.822299651567945,
+ "grad_norm": 0.05368119478225708,
+ "learning_rate": 2.9482911912320006e-05,
+ "loss": 1.728409767150879,
+ "step": 3155
+ },
+ {
+ "epoch": 43.836236933797906,
+ "grad_norm": 0.05638488754630089,
+ "learning_rate": 2.9379127712080756e-05,
+ "loss": 1.733398675918579,
+ "step": 3156
+ },
+ {
+ "epoch": 43.850174216027874,
+ "grad_norm": 0.05563381686806679,
+ "learning_rate": 2.9275563963236107e-05,
+ "loss": 1.726851463317871,
+ "step": 3157
+ },
+ {
+ "epoch": 43.86411149825784,
+ "grad_norm": 0.053953833878040314,
+ "learning_rate": 2.9172220749225548e-05,
+ "loss": 1.7333306074142456,
+ "step": 3158
+ },
+ {
+ "epoch": 43.8780487804878,
+ "grad_norm": 0.05466780066490173,
+ "learning_rate": 2.906909815331085e-05,
+ "loss": 1.7296473979949951,
+ "step": 3159
+ },
+ {
+ "epoch": 43.89198606271777,
+ "grad_norm": 0.0546705424785614,
+ "learning_rate": 2.896619625857588e-05,
+ "loss": 1.7264845371246338,
+ "step": 3160
+ },
+ {
+ "epoch": 43.90592334494774,
+ "grad_norm": 0.054817862808704376,
+ "learning_rate": 2.8863515147927003e-05,
+ "loss": 1.7292261123657227,
+ "step": 3161
+ },
+ {
+ "epoch": 43.9198606271777,
+ "grad_norm": 0.054920706897974014,
+ "learning_rate": 2.8761054904092514e-05,
+ "loss": 1.7173794507980347,
+ "step": 3162
+ },
+ {
+ "epoch": 43.933797909407666,
+ "grad_norm": 0.054250918328762054,
+ "learning_rate": 2.8658815609622665e-05,
+ "loss": 1.7082734107971191,
+ "step": 3163
+ },
+ {
+ "epoch": 43.94773519163763,
+ "grad_norm": 0.05523055046796799,
+ "learning_rate": 2.855679734688993e-05,
+ "loss": 1.7378957271575928,
+ "step": 3164
+ },
+ {
+ "epoch": 43.961672473867594,
+ "grad_norm": 0.05538921058177948,
+ "learning_rate": 2.8455000198088502e-05,
+ "loss": 1.729036569595337,
+ "step": 3165
+ },
+ {
+ "epoch": 43.97560975609756,
+ "grad_norm": 0.05559125170111656,
+ "learning_rate": 2.8353424245234582e-05,
+ "loss": 1.728592872619629,
+ "step": 3166
+ },
+ {
+ "epoch": 43.98954703832753,
+ "grad_norm": 0.0566965751349926,
+ "learning_rate": 2.825206957016599e-05,
+ "loss": 1.7317943572998047,
+ "step": 3167
+ },
+ {
+ "epoch": 44.0,
+ "grad_norm": 0.04648921266198158,
+ "learning_rate": 2.8150936254542376e-05,
+ "loss": 1.3038744926452637,
+ "step": 3168
+ },
+ {
+ "epoch": 44.0,
+ "eval_loss": 0.6606200337409973,
+ "eval_runtime": 42.0494,
+ "eval_samples_per_second": 58.075,
+ "eval_steps_per_second": 0.476,
+ "step": 3168
+ },
+ {
+ "epoch": 44.01393728222997,
+ "grad_norm": 0.04810052365064621,
+ "learning_rate": 2.8050024379845118e-05,
+ "loss": 1.7251083850860596,
+ "step": 3169
+ },
+ {
+ "epoch": 44.02787456445993,
+ "grad_norm": 0.04799323529005051,
+ "learning_rate": 2.7949334027376986e-05,
+ "loss": 1.7395541667938232,
+ "step": 3170
+ },
+ {
+ "epoch": 44.041811846689896,
+ "grad_norm": 0.048207368701696396,
+ "learning_rate": 2.7848865278262427e-05,
+ "loss": 1.7131805419921875,
+ "step": 3171
+ },
+ {
+ "epoch": 44.055749128919864,
+ "grad_norm": 0.050403010100126266,
+ "learning_rate": 2.7748618213447268e-05,
+ "loss": 1.7301462888717651,
+ "step": 3172
+ },
+ {
+ "epoch": 44.069686411149824,
+ "grad_norm": 0.04852408543229103,
+ "learning_rate": 2.764859291369885e-05,
+ "loss": 1.7110222578048706,
+ "step": 3173
+ },
+ {
+ "epoch": 44.08362369337979,
+ "grad_norm": 0.049488943070173264,
+ "learning_rate": 2.7548789459605603e-05,
+ "loss": 1.732396125793457,
+ "step": 3174
+ },
+ {
+ "epoch": 44.09756097560975,
+ "grad_norm": 0.049136314541101456,
+ "learning_rate": 2.744920793157743e-05,
+ "loss": 1.7285856008529663,
+ "step": 3175
+ },
+ {
+ "epoch": 44.11149825783972,
+ "grad_norm": 0.0498649924993515,
+ "learning_rate": 2.7349848409845462e-05,
+ "loss": 1.7257282733917236,
+ "step": 3176
+ },
+ {
+ "epoch": 44.12543554006969,
+ "grad_norm": 0.04963008314371109,
+ "learning_rate": 2.725071097446174e-05,
+ "loss": 1.7380023002624512,
+ "step": 3177
+ },
+ {
+ "epoch": 44.13937282229965,
+ "grad_norm": 0.049789007753133774,
+ "learning_rate": 2.715179570529959e-05,
+ "loss": 1.7362974882125854,
+ "step": 3178
+ },
+ {
+ "epoch": 44.153310104529616,
+ "grad_norm": 0.049131445586681366,
+ "learning_rate": 2.7053102682053134e-05,
+ "loss": 1.7316465377807617,
+ "step": 3179
+ },
+ {
+ "epoch": 44.167247386759584,
+ "grad_norm": 0.049477335065603256,
+ "learning_rate": 2.6954631984237766e-05,
+ "loss": 1.7171342372894287,
+ "step": 3180
+ },
+ {
+ "epoch": 44.181184668989545,
+ "grad_norm": 0.04945173114538193,
+ "learning_rate": 2.6856383691189347e-05,
+ "loss": 1.7230268716812134,
+ "step": 3181
+ },
+ {
+ "epoch": 44.19512195121951,
+ "grad_norm": 0.05099281296133995,
+ "learning_rate": 2.675835788206485e-05,
+ "loss": 1.7154399156570435,
+ "step": 3182
+ },
+ {
+ "epoch": 44.20905923344948,
+ "grad_norm": 0.05003630369901657,
+ "learning_rate": 2.6660554635841912e-05,
+ "loss": 1.7240588665008545,
+ "step": 3183
+ },
+ {
+ "epoch": 44.22299651567944,
+ "grad_norm": 0.050549741834402084,
+ "learning_rate": 2.6562974031318788e-05,
+ "loss": 1.7049214839935303,
+ "step": 3184
+ },
+ {
+ "epoch": 44.23693379790941,
+ "grad_norm": 0.049471259117126465,
+ "learning_rate": 2.6465616147114485e-05,
+ "loss": 1.719792127609253,
+ "step": 3185
+ },
+ {
+ "epoch": 44.250871080139376,
+ "grad_norm": 0.04968724027276039,
+ "learning_rate": 2.6368481061668344e-05,
+ "loss": 1.7355620861053467,
+ "step": 3186
+ },
+ {
+ "epoch": 44.26480836236934,
+ "grad_norm": 0.05011356249451637,
+ "learning_rate": 2.6271568853240557e-05,
+ "loss": 1.7258524894714355,
+ "step": 3187
+ },
+ {
+ "epoch": 44.278745644599304,
+ "grad_norm": 0.049676526337862015,
+ "learning_rate": 2.6174879599911347e-05,
+ "loss": 1.7210259437561035,
+ "step": 3188
+ },
+ {
+ "epoch": 44.292682926829265,
+ "grad_norm": 0.051889803260564804,
+ "learning_rate": 2.6078413379581627e-05,
+ "loss": 1.7197644710540771,
+ "step": 3189
+ },
+ {
+ "epoch": 44.30662020905923,
+ "grad_norm": 0.050644151866436005,
+ "learning_rate": 2.5982170269972397e-05,
+ "loss": 1.7159698009490967,
+ "step": 3190
+ },
+ {
+ "epoch": 44.3205574912892,
+ "grad_norm": 0.05152284726500511,
+ "learning_rate": 2.588615034862507e-05,
+ "loss": 1.725931167602539,
+ "step": 3191
+ },
+ {
+ "epoch": 44.33449477351916,
+ "grad_norm": 0.051264841109514236,
+ "learning_rate": 2.5790353692901158e-05,
+ "loss": 1.7258868217468262,
+ "step": 3192
+ },
+ {
+ "epoch": 44.34843205574913,
+ "grad_norm": 0.05107296630740166,
+ "learning_rate": 2.5694780379982238e-05,
+ "loss": 1.723544955253601,
+ "step": 3193
+ },
+ {
+ "epoch": 44.362369337979096,
+ "grad_norm": 0.051960233598947525,
+ "learning_rate": 2.5599430486870055e-05,
+ "loss": 1.7397563457489014,
+ "step": 3194
+ },
+ {
+ "epoch": 44.37630662020906,
+ "grad_norm": 0.052021075040102005,
+ "learning_rate": 2.5504304090386225e-05,
+ "loss": 1.733546495437622,
+ "step": 3195
+ },
+ {
+ "epoch": 44.390243902439025,
+ "grad_norm": 0.05020024627447128,
+ "learning_rate": 2.5409401267172474e-05,
+ "loss": 1.6998636722564697,
+ "step": 3196
+ },
+ {
+ "epoch": 44.40418118466899,
+ "grad_norm": 0.05044161528348923,
+ "learning_rate": 2.5314722093690176e-05,
+ "loss": 1.7023978233337402,
+ "step": 3197
+ },
+ {
+ "epoch": 44.41811846689895,
+ "grad_norm": 0.05114946514368057,
+ "learning_rate": 2.522026664622071e-05,
+ "loss": 1.7240948677062988,
+ "step": 3198
+ },
+ {
+ "epoch": 44.43205574912892,
+ "grad_norm": 0.05104855075478554,
+ "learning_rate": 2.5126035000865124e-05,
+ "loss": 1.7083699703216553,
+ "step": 3199
+ },
+ {
+ "epoch": 44.44599303135889,
+ "grad_norm": 0.05128896236419678,
+ "learning_rate": 2.503202723354413e-05,
+ "loss": 1.7245129346847534,
+ "step": 3200
+ },
+ {
+ "epoch": 44.45993031358885,
+ "grad_norm": 0.05274409055709839,
+ "learning_rate": 2.4938243419998047e-05,
+ "loss": 1.7297062873840332,
+ "step": 3201
+ },
+ {
+ "epoch": 44.47386759581882,
+ "grad_norm": 0.05212276428937912,
+ "learning_rate": 2.484468363578689e-05,
+ "loss": 1.7290027141571045,
+ "step": 3202
+ },
+ {
+ "epoch": 44.48780487804878,
+ "grad_norm": 0.051072943955659866,
+ "learning_rate": 2.475134795629004e-05,
+ "loss": 1.7250025272369385,
+ "step": 3203
+ },
+ {
+ "epoch": 44.501742160278745,
+ "grad_norm": 0.05227199196815491,
+ "learning_rate": 2.4658236456706357e-05,
+ "loss": 1.739984393119812,
+ "step": 3204
+ },
+ {
+ "epoch": 44.51567944250871,
+ "grad_norm": 0.05299844592809677,
+ "learning_rate": 2.456534921205403e-05,
+ "loss": 1.7240335941314697,
+ "step": 3205
+ },
+ {
+ "epoch": 44.52961672473867,
+ "grad_norm": 0.05148797854781151,
+ "learning_rate": 2.4472686297170822e-05,
+ "loss": 1.7336392402648926,
+ "step": 3206
+ },
+ {
+ "epoch": 44.54355400696864,
+ "grad_norm": 0.05192282795906067,
+ "learning_rate": 2.4380247786713403e-05,
+ "loss": 1.7241379022598267,
+ "step": 3207
+ },
+ {
+ "epoch": 44.55749128919861,
+ "grad_norm": 0.051494989544153214,
+ "learning_rate": 2.428803375515788e-05,
+ "loss": 1.7148733139038086,
+ "step": 3208
+ },
+ {
+ "epoch": 44.57142857142857,
+ "grad_norm": 0.052663806825876236,
+ "learning_rate": 2.4196044276799397e-05,
+ "loss": 1.7224645614624023,
+ "step": 3209
+ },
+ {
+ "epoch": 44.58536585365854,
+ "grad_norm": 0.05165771767497063,
+ "learning_rate": 2.410427942575228e-05,
+ "loss": 1.7237358093261719,
+ "step": 3210
+ },
+ {
+ "epoch": 44.599303135888505,
+ "grad_norm": 0.05213863402605057,
+ "learning_rate": 2.4012739275949746e-05,
+ "loss": 1.730781078338623,
+ "step": 3211
+ },
+ {
+ "epoch": 44.613240418118465,
+ "grad_norm": 0.05217474699020386,
+ "learning_rate": 2.3921423901144008e-05,
+ "loss": 1.7104840278625488,
+ "step": 3212
+ },
+ {
+ "epoch": 44.62717770034843,
+ "grad_norm": 0.05260826274752617,
+ "learning_rate": 2.3830333374906342e-05,
+ "loss": 1.7201709747314453,
+ "step": 3213
+ },
+ {
+ "epoch": 44.641114982578394,
+ "grad_norm": 0.05196409299969673,
+ "learning_rate": 2.3739467770626637e-05,
+ "loss": 1.7464969158172607,
+ "step": 3214
+ },
+ {
+ "epoch": 44.65505226480836,
+ "grad_norm": 0.0521632581949234,
+ "learning_rate": 2.3648827161513686e-05,
+ "loss": 1.7324943542480469,
+ "step": 3215
+ },
+ {
+ "epoch": 44.66898954703833,
+ "grad_norm": 0.05202251300215721,
+ "learning_rate": 2.3558411620595038e-05,
+ "loss": 1.7284767627716064,
+ "step": 3216
+ },
+ {
+ "epoch": 44.68292682926829,
+ "grad_norm": 0.05214177072048187,
+ "learning_rate": 2.3468221220716844e-05,
+ "loss": 1.72467041015625,
+ "step": 3217
+ },
+ {
+ "epoch": 44.69686411149826,
+ "grad_norm": 0.05224514380097389,
+ "learning_rate": 2.33782560345438e-05,
+ "loss": 1.7266634702682495,
+ "step": 3218
+ },
+ {
+ "epoch": 44.710801393728225,
+ "grad_norm": 0.052075136452913284,
+ "learning_rate": 2.328851613455932e-05,
+ "loss": 1.7178864479064941,
+ "step": 3219
+ },
+ {
+ "epoch": 44.724738675958186,
+ "grad_norm": 0.052775993943214417,
+ "learning_rate": 2.3199001593065204e-05,
+ "loss": 1.72368323802948,
+ "step": 3220
+ },
+ {
+ "epoch": 44.73867595818815,
+ "grad_norm": 0.05267832800745964,
+ "learning_rate": 2.3109712482181684e-05,
+ "loss": 1.7240350246429443,
+ "step": 3221
+ },
+ {
+ "epoch": 44.75261324041812,
+ "grad_norm": 0.051939260214567184,
+ "learning_rate": 2.3020648873847414e-05,
+ "loss": 1.7233244180679321,
+ "step": 3222
+ },
+ {
+ "epoch": 44.76655052264808,
+ "grad_norm": 0.0522114597260952,
+ "learning_rate": 2.2931810839819235e-05,
+ "loss": 1.7295070886611938,
+ "step": 3223
+ },
+ {
+ "epoch": 44.78048780487805,
+ "grad_norm": 0.05278675630688667,
+ "learning_rate": 2.284319845167253e-05,
+ "loss": 1.71889066696167,
+ "step": 3224
+ },
+ {
+ "epoch": 44.79442508710802,
+ "grad_norm": 0.051905177533626556,
+ "learning_rate": 2.2754811780800532e-05,
+ "loss": 1.7296419143676758,
+ "step": 3225
+ },
+ {
+ "epoch": 44.80836236933798,
+ "grad_norm": 0.05445098876953125,
+ "learning_rate": 2.2666650898414827e-05,
+ "loss": 1.7175172567367554,
+ "step": 3226
+ },
+ {
+ "epoch": 44.822299651567945,
+ "grad_norm": 0.05317043140530586,
+ "learning_rate": 2.2578715875545095e-05,
+ "loss": 1.7262303829193115,
+ "step": 3227
+ },
+ {
+ "epoch": 44.836236933797906,
+ "grad_norm": 0.05217629671096802,
+ "learning_rate": 2.2491006783038976e-05,
+ "loss": 1.7212185859680176,
+ "step": 3228
+ },
+ {
+ "epoch": 44.850174216027874,
+ "grad_norm": 0.054154038429260254,
+ "learning_rate": 2.2403523691562092e-05,
+ "loss": 1.7390978336334229,
+ "step": 3229
+ },
+ {
+ "epoch": 44.86411149825784,
+ "grad_norm": 0.053792186081409454,
+ "learning_rate": 2.2316266671598003e-05,
+ "loss": 1.7153360843658447,
+ "step": 3230
+ },
+ {
+ "epoch": 44.8780487804878,
+ "grad_norm": 0.052808087319135666,
+ "learning_rate": 2.222923579344805e-05,
+ "loss": 1.7074368000030518,
+ "step": 3231
+ },
+ {
+ "epoch": 44.89198606271777,
+ "grad_norm": 0.05260848253965378,
+ "learning_rate": 2.2142431127231502e-05,
+ "loss": 1.72408127784729,
+ "step": 3232
+ },
+ {
+ "epoch": 44.90592334494774,
+ "grad_norm": 0.052090760320425034,
+ "learning_rate": 2.2055852742885322e-05,
+ "loss": 1.7318116426467896,
+ "step": 3233
+ },
+ {
+ "epoch": 44.9198606271777,
+ "grad_norm": 0.055377885699272156,
+ "learning_rate": 2.196950071016409e-05,
+ "loss": 1.7253409624099731,
+ "step": 3234
+ },
+ {
+ "epoch": 44.933797909407666,
+ "grad_norm": 0.05375788360834122,
+ "learning_rate": 2.1883375098640134e-05,
+ "loss": 1.712152361869812,
+ "step": 3235
+ },
+ {
+ "epoch": 44.94773519163763,
+ "grad_norm": 0.05410565063357353,
+ "learning_rate": 2.1797475977703352e-05,
+ "loss": 1.717970371246338,
+ "step": 3236
+ },
+ {
+ "epoch": 44.961672473867594,
+ "grad_norm": 0.05300476774573326,
+ "learning_rate": 2.1711803416560964e-05,
+ "loss": 1.7061667442321777,
+ "step": 3237
+ },
+ {
+ "epoch": 44.97560975609756,
+ "grad_norm": 0.05325675383210182,
+ "learning_rate": 2.16263574842379e-05,
+ "loss": 1.7095091342926025,
+ "step": 3238
+ },
+ {
+ "epoch": 44.98954703832753,
+ "grad_norm": 0.0537128672003746,
+ "learning_rate": 2.15411382495764e-05,
+ "loss": 1.7317320108413696,
+ "step": 3239
+ },
+ {
+ "epoch": 45.0,
+ "grad_norm": 0.044390108436346054,
+ "learning_rate": 2.1456145781236057e-05,
+ "loss": 1.3073341846466064,
+ "step": 3240
+ },
+ {
+ "epoch": 45.0,
+ "eval_loss": 0.6620100736618042,
+ "eval_runtime": 39.123,
+ "eval_samples_per_second": 62.419,
+ "eval_steps_per_second": 0.511,
+ "step": 3240
+ },
+ {
+ "epoch": 45.01393728222997,
+ "grad_norm": 0.04662059247493744,
+ "learning_rate": 2.1371380147693752e-05,
+ "loss": 1.7126715183258057,
+ "step": 3241
+ },
+ {
+ "epoch": 45.02787456445993,
+ "grad_norm": 0.04650554433465004,
+ "learning_rate": 2.1286841417243662e-05,
+ "loss": 1.7077898979187012,
+ "step": 3242
+ },
+ {
+ "epoch": 45.041811846689896,
+ "grad_norm": 0.047790784388780594,
+ "learning_rate": 2.1202529657997137e-05,
+ "loss": 1.7239145040512085,
+ "step": 3243
+ },
+ {
+ "epoch": 45.055749128919864,
+ "grad_norm": 0.04707937315106392,
+ "learning_rate": 2.1118444937882538e-05,
+ "loss": 1.7236624956130981,
+ "step": 3244
+ },
+ {
+ "epoch": 45.069686411149824,
+ "grad_norm": 0.04860701411962509,
+ "learning_rate": 2.1034587324645456e-05,
+ "loss": 1.710507869720459,
+ "step": 3245
+ },
+ {
+ "epoch": 45.08362369337979,
+ "grad_norm": 0.048070795834064484,
+ "learning_rate": 2.095095688584846e-05,
+ "loss": 1.7029900550842285,
+ "step": 3246
+ },
+ {
+ "epoch": 45.09756097560975,
+ "grad_norm": 0.04817355051636696,
+ "learning_rate": 2.086755368887107e-05,
+ "loss": 1.7108311653137207,
+ "step": 3247
+ },
+ {
+ "epoch": 45.11149825783972,
+ "grad_norm": 0.04805520921945572,
+ "learning_rate": 2.0784377800909802e-05,
+ "loss": 1.708982229232788,
+ "step": 3248
+ },
+ {
+ "epoch": 45.12543554006969,
+ "grad_norm": 0.04820755869150162,
+ "learning_rate": 2.0701429288977847e-05,
+ "loss": 1.712209701538086,
+ "step": 3249
+ },
+ {
+ "epoch": 45.13937282229965,
+ "grad_norm": 0.04850546643137932,
+ "learning_rate": 2.0618708219905455e-05,
+ "loss": 1.721533179283142,
+ "step": 3250
+ },
+ {
+ "epoch": 45.153310104529616,
+ "grad_norm": 0.048106297850608826,
+ "learning_rate": 2.0536214660339398e-05,
+ "loss": 1.7086482048034668,
+ "step": 3251
+ },
+ {
+ "epoch": 45.167247386759584,
+ "grad_norm": 0.04892686754465103,
+ "learning_rate": 2.0453948676743267e-05,
+ "loss": 1.7125725746154785,
+ "step": 3252
+ },
+ {
+ "epoch": 45.181184668989545,
+ "grad_norm": 0.047409787774086,
+ "learning_rate": 2.037191033539731e-05,
+ "loss": 1.7170922756195068,
+ "step": 3253
+ },
+ {
+ "epoch": 45.19512195121951,
+ "grad_norm": 0.04873037338256836,
+ "learning_rate": 2.029009970239831e-05,
+ "loss": 1.7256786823272705,
+ "step": 3254
+ },
+ {
+ "epoch": 45.20905923344948,
+ "grad_norm": 0.0483417883515358,
+ "learning_rate": 2.0208516843659678e-05,
+ "loss": 1.7250876426696777,
+ "step": 3255
+ },
+ {
+ "epoch": 45.22299651567944,
+ "grad_norm": 0.04887213185429573,
+ "learning_rate": 2.012716182491114e-05,
+ "loss": 1.7379462718963623,
+ "step": 3256
+ },
+ {
+ "epoch": 45.23693379790941,
+ "grad_norm": 0.049317218363285065,
+ "learning_rate": 2.0046034711699048e-05,
+ "loss": 1.7143313884735107,
+ "step": 3257
+ },
+ {
+ "epoch": 45.250871080139376,
+ "grad_norm": 0.04776732251048088,
+ "learning_rate": 1.9965135569386032e-05,
+ "loss": 1.7088844776153564,
+ "step": 3258
+ },
+ {
+ "epoch": 45.26480836236934,
+ "grad_norm": 0.048202697187662125,
+ "learning_rate": 1.9884464463151077e-05,
+ "loss": 1.7226439714431763,
+ "step": 3259
+ },
+ {
+ "epoch": 45.278745644599304,
+ "grad_norm": 0.048592958599328995,
+ "learning_rate": 1.980402145798933e-05,
+ "loss": 1.7116191387176514,
+ "step": 3260
+ },
+ {
+ "epoch": 45.292682926829265,
+ "grad_norm": 0.049207646399736404,
+ "learning_rate": 1.9723806618712484e-05,
+ "loss": 1.726987600326538,
+ "step": 3261
+ },
+ {
+ "epoch": 45.30662020905923,
+ "grad_norm": 0.04856428503990173,
+ "learning_rate": 1.9643820009947983e-05,
+ "loss": 1.7152714729309082,
+ "step": 3262
+ },
+ {
+ "epoch": 45.3205574912892,
+ "grad_norm": 0.0499417819082737,
+ "learning_rate": 1.9564061696139687e-05,
+ "loss": 1.7221670150756836,
+ "step": 3263
+ },
+ {
+ "epoch": 45.33449477351916,
+ "grad_norm": 0.04777415469288826,
+ "learning_rate": 1.948453174154744e-05,
+ "loss": 1.7255699634552002,
+ "step": 3264
+ },
+ {
+ "epoch": 45.34843205574913,
+ "grad_norm": 0.04862067103385925,
+ "learning_rate": 1.9405230210247042e-05,
+ "loss": 1.7200325727462769,
+ "step": 3265
+ },
+ {
+ "epoch": 45.362369337979096,
+ "grad_norm": 0.04854550585150719,
+ "learning_rate": 1.9326157166130365e-05,
+ "loss": 1.731689691543579,
+ "step": 3266
+ },
+ {
+ "epoch": 45.37630662020906,
+ "grad_norm": 0.048895031213760376,
+ "learning_rate": 1.9247312672905017e-05,
+ "loss": 1.7285406589508057,
+ "step": 3267
+ },
+ {
+ "epoch": 45.390243902439025,
+ "grad_norm": 0.04905123636126518,
+ "learning_rate": 1.9168696794094758e-05,
+ "loss": 1.7143425941467285,
+ "step": 3268
+ },
+ {
+ "epoch": 45.40418118466899,
+ "grad_norm": 0.050487224012613297,
+ "learning_rate": 1.9090309593038812e-05,
+ "loss": 1.7035489082336426,
+ "step": 3269
+ },
+ {
+ "epoch": 45.41811846689895,
+ "grad_norm": 0.0492045022547245,
+ "learning_rate": 1.9012151132892425e-05,
+ "loss": 1.7202599048614502,
+ "step": 3270
+ },
+ {
+ "epoch": 45.43205574912892,
+ "grad_norm": 0.04929377883672714,
+ "learning_rate": 1.893422147662644e-05,
+ "loss": 1.7112836837768555,
+ "step": 3271
+ },
+ {
+ "epoch": 45.44599303135889,
+ "grad_norm": 0.05052510276436806,
+ "learning_rate": 1.8856520687027325e-05,
+ "loss": 1.718496322631836,
+ "step": 3272
+ },
+ {
+ "epoch": 45.45993031358885,
+ "grad_norm": 0.05117478594183922,
+ "learning_rate": 1.8779048826697318e-05,
+ "loss": 1.7301936149597168,
+ "step": 3273
+ },
+ {
+ "epoch": 45.47386759581882,
+ "grad_norm": 0.049995459616184235,
+ "learning_rate": 1.8701805958054e-05,
+ "loss": 1.7160921096801758,
+ "step": 3274
+ },
+ {
+ "epoch": 45.48780487804878,
+ "grad_norm": 0.0499456562101841,
+ "learning_rate": 1.8624792143330544e-05,
+ "loss": 1.712604284286499,
+ "step": 3275
+ },
+ {
+ "epoch": 45.501742160278745,
+ "grad_norm": 0.05019545927643776,
+ "learning_rate": 1.8548007444575656e-05,
+ "loss": 1.7132818698883057,
+ "step": 3276
+ },
+ {
+ "epoch": 45.51567944250871,
+ "grad_norm": 0.049761317670345306,
+ "learning_rate": 1.8471451923653322e-05,
+ "loss": 1.7276606559753418,
+ "step": 3277
+ },
+ {
+ "epoch": 45.52961672473867,
+ "grad_norm": 0.050137270241975784,
+ "learning_rate": 1.8395125642242987e-05,
+ "loss": 1.7167553901672363,
+ "step": 3278
+ },
+ {
+ "epoch": 45.54355400696864,
+ "grad_norm": 0.04997295141220093,
+ "learning_rate": 1.8319028661839343e-05,
+ "loss": 1.7109434604644775,
+ "step": 3279
+ },
+ {
+ "epoch": 45.55749128919861,
+ "grad_norm": 0.0507577508687973,
+ "learning_rate": 1.8243161043752384e-05,
+ "loss": 1.726595163345337,
+ "step": 3280
+ },
+ {
+ "epoch": 45.57142857142857,
+ "grad_norm": 0.050967033952474594,
+ "learning_rate": 1.8167522849107228e-05,
+ "loss": 1.7167764902114868,
+ "step": 3281
+ },
+ {
+ "epoch": 45.58536585365854,
+ "grad_norm": 0.04927963763475418,
+ "learning_rate": 1.809211413884418e-05,
+ "loss": 1.7192835807800293,
+ "step": 3282
+ },
+ {
+ "epoch": 45.599303135888505,
+ "grad_norm": 0.05100392922759056,
+ "learning_rate": 1.8016934973718762e-05,
+ "loss": 1.7176603078842163,
+ "step": 3283
+ },
+ {
+ "epoch": 45.613240418118465,
+ "grad_norm": 0.05004384368658066,
+ "learning_rate": 1.7941985414301403e-05,
+ "loss": 1.7291674613952637,
+ "step": 3284
+ },
+ {
+ "epoch": 45.62717770034843,
+ "grad_norm": 0.05081385374069214,
+ "learning_rate": 1.786726552097766e-05,
+ "loss": 1.715551495552063,
+ "step": 3285
+ },
+ {
+ "epoch": 45.641114982578394,
+ "grad_norm": 0.05009026080369949,
+ "learning_rate": 1.7792775353947908e-05,
+ "loss": 1.7100838422775269,
+ "step": 3286
+ },
+ {
+ "epoch": 45.65505226480836,
+ "grad_norm": 0.050226833671331406,
+ "learning_rate": 1.7718514973227634e-05,
+ "loss": 1.7127068042755127,
+ "step": 3287
+ },
+ {
+ "epoch": 45.66898954703833,
+ "grad_norm": 0.049914099276065826,
+ "learning_rate": 1.7644484438647057e-05,
+ "loss": 1.730675458908081,
+ "step": 3288
+ },
+ {
+ "epoch": 45.68292682926829,
+ "grad_norm": 0.050682589411735535,
+ "learning_rate": 1.75706838098512e-05,
+ "loss": 1.7191033363342285,
+ "step": 3289
+ },
+ {
+ "epoch": 45.69686411149826,
+ "grad_norm": 0.049790311604738235,
+ "learning_rate": 1.749711314629992e-05,
+ "loss": 1.726836919784546,
+ "step": 3290
+ },
+ {
+ "epoch": 45.710801393728225,
+ "grad_norm": 0.049843933433294296,
+ "learning_rate": 1.742377250726779e-05,
+ "loss": 1.7266175746917725,
+ "step": 3291
+ },
+ {
+ "epoch": 45.724738675958186,
+ "grad_norm": 0.05052374675869942,
+ "learning_rate": 1.7350661951844065e-05,
+ "loss": 1.7172377109527588,
+ "step": 3292
+ },
+ {
+ "epoch": 45.73867595818815,
+ "grad_norm": 0.05073156952857971,
+ "learning_rate": 1.727778153893248e-05,
+ "loss": 1.7203891277313232,
+ "step": 3293
+ },
+ {
+ "epoch": 45.75261324041812,
+ "grad_norm": 0.050293486565351486,
+ "learning_rate": 1.720513132725162e-05,
+ "loss": 1.7205448150634766,
+ "step": 3294
+ },
+ {
+ "epoch": 45.76655052264808,
+ "grad_norm": 0.050406865775585175,
+ "learning_rate": 1.713271137533433e-05,
+ "loss": 1.6984009742736816,
+ "step": 3295
+ },
+ {
+ "epoch": 45.78048780487805,
+ "grad_norm": 0.05153002217411995,
+ "learning_rate": 1.7060521741528127e-05,
+ "loss": 1.7124850749969482,
+ "step": 3296
+ },
+ {
+ "epoch": 45.79442508710802,
+ "grad_norm": 0.05022314935922623,
+ "learning_rate": 1.698856248399482e-05,
+ "loss": 1.7142539024353027,
+ "step": 3297
+ },
+ {
+ "epoch": 45.80836236933798,
+ "grad_norm": 0.050986725836992264,
+ "learning_rate": 1.6916833660710785e-05,
+ "loss": 1.721949577331543,
+ "step": 3298
+ },
+ {
+ "epoch": 45.822299651567945,
+ "grad_norm": 0.05111478269100189,
+ "learning_rate": 1.6845335329466606e-05,
+ "loss": 1.7190868854522705,
+ "step": 3299
+ },
+ {
+ "epoch": 45.836236933797906,
+ "grad_norm": 0.049747467041015625,
+ "learning_rate": 1.6774067547867113e-05,
+ "loss": 1.7098945379257202,
+ "step": 3300
+ },
+ {
+ "epoch": 45.850174216027874,
+ "grad_norm": 0.05081081762909889,
+ "learning_rate": 1.6703030373331585e-05,
+ "loss": 1.720836877822876,
+ "step": 3301
+ },
+ {
+ "epoch": 45.86411149825784,
+ "grad_norm": 0.05101335793733597,
+ "learning_rate": 1.6632223863093328e-05,
+ "loss": 1.7199628353118896,
+ "step": 3302
+ },
+ {
+ "epoch": 45.8780487804878,
+ "grad_norm": 0.05132341757416725,
+ "learning_rate": 1.656164807419988e-05,
+ "loss": 1.7075949907302856,
+ "step": 3303
+ },
+ {
+ "epoch": 45.89198606271777,
+ "grad_norm": 0.05222970247268677,
+ "learning_rate": 1.6491303063512866e-05,
+ "loss": 1.7381302118301392,
+ "step": 3304
+ },
+ {
+ "epoch": 45.90592334494774,
+ "grad_norm": 0.0503171868622303,
+ "learning_rate": 1.6421188887708013e-05,
+ "loss": 1.7191685438156128,
+ "step": 3305
+ },
+ {
+ "epoch": 45.9198606271777,
+ "grad_norm": 0.050589654594659805,
+ "learning_rate": 1.6351305603275067e-05,
+ "loss": 1.7238823175430298,
+ "step": 3306
+ },
+ {
+ "epoch": 45.933797909407666,
+ "grad_norm": 0.051583752036094666,
+ "learning_rate": 1.6281653266517658e-05,
+ "loss": 1.7040985822677612,
+ "step": 3307
+ },
+ {
+ "epoch": 45.94773519163763,
+ "grad_norm": 0.05054542422294617,
+ "learning_rate": 1.6212231933553485e-05,
+ "loss": 1.711961269378662,
+ "step": 3308
+ },
+ {
+ "epoch": 45.961672473867594,
+ "grad_norm": 0.05135675519704819,
+ "learning_rate": 1.6143041660313997e-05,
+ "loss": 1.7377822399139404,
+ "step": 3309
+ },
+ {
+ "epoch": 45.97560975609756,
+ "grad_norm": 0.051047760993242264,
+ "learning_rate": 1.6074082502544668e-05,
+ "loss": 1.7058072090148926,
+ "step": 3310
+ },
+ {
+ "epoch": 45.98954703832753,
+ "grad_norm": 0.052198268473148346,
+ "learning_rate": 1.6005354515804503e-05,
+ "loss": 1.7136459350585938,
+ "step": 3311
+ },
+ {
+ "epoch": 46.0,
+ "grad_norm": 0.043926749378442764,
+ "learning_rate": 1.59368577554664e-05,
+ "loss": 1.2845337390899658,
+ "step": 3312
+ },
+ {
+ "epoch": 46.0,
+ "eval_loss": 0.6630701422691345,
+ "eval_runtime": 42.1507,
+ "eval_samples_per_second": 57.935,
+ "eval_steps_per_second": 0.474,
+ "step": 3312
+ },
+ {
+ "epoch": 46.01393728222997,
+ "grad_norm": 0.044940292835235596,
+ "learning_rate": 1.5868592276717137e-05,
+ "loss": 1.6984783411026,
+ "step": 3313
+ },
+ {
+ "epoch": 46.02787456445993,
+ "grad_norm": 0.04450277239084244,
+ "learning_rate": 1.5800558134556806e-05,
+ "loss": 1.7180794477462769,
+ "step": 3314
+ },
+ {
+ "epoch": 46.041811846689896,
+ "grad_norm": 0.045554619282484055,
+ "learning_rate": 1.5732755383799315e-05,
+ "loss": 1.7109670639038086,
+ "step": 3315
+ },
+ {
+ "epoch": 46.055749128919864,
+ "grad_norm": 0.04596656560897827,
+ "learning_rate": 1.5665184079072162e-05,
+ "loss": 1.7150846719741821,
+ "step": 3316
+ },
+ {
+ "epoch": 46.069686411149824,
+ "grad_norm": 0.04669494181871414,
+ "learning_rate": 1.5597844274816352e-05,
+ "loss": 1.7196846008300781,
+ "step": 3317
+ },
+ {
+ "epoch": 46.08362369337979,
+ "grad_norm": 0.046190354973077774,
+ "learning_rate": 1.553073602528626e-05,
+ "loss": 1.720409631729126,
+ "step": 3318
+ },
+ {
+ "epoch": 46.09756097560975,
+ "grad_norm": 0.046307552605867386,
+ "learning_rate": 1.546385938454982e-05,
+ "loss": 1.7130827903747559,
+ "step": 3319
+ },
+ {
+ "epoch": 46.11149825783972,
+ "grad_norm": 0.04733830317854881,
+ "learning_rate": 1.5397214406488374e-05,
+ "loss": 1.7107970714569092,
+ "step": 3320
+ },
+ {
+ "epoch": 46.12543554006969,
+ "grad_norm": 0.046296458691358566,
+ "learning_rate": 1.533080114479657e-05,
+ "loss": 1.6914619207382202,
+ "step": 3321
+ },
+ {
+ "epoch": 46.13937282229965,
+ "grad_norm": 0.04597609490156174,
+ "learning_rate": 1.5264619652982352e-05,
+ "loss": 1.7274010181427002,
+ "step": 3322
+ },
+ {
+ "epoch": 46.153310104529616,
+ "grad_norm": 0.04654186964035034,
+ "learning_rate": 1.5198669984366876e-05,
+ "loss": 1.721078872680664,
+ "step": 3323
+ },
+ {
+ "epoch": 46.167247386759584,
+ "grad_norm": 0.04741847887635231,
+ "learning_rate": 1.5132952192084793e-05,
+ "loss": 1.7101011276245117,
+ "step": 3324
+ },
+ {
+ "epoch": 46.181184668989545,
+ "grad_norm": 0.047246355563402176,
+ "learning_rate": 1.5067466329083533e-05,
+ "loss": 1.7048389911651611,
+ "step": 3325
+ },
+ {
+ "epoch": 46.19512195121951,
+ "grad_norm": 0.046501100063323975,
+ "learning_rate": 1.5002212448123997e-05,
+ "loss": 1.7087147235870361,
+ "step": 3326
+ },
+ {
+ "epoch": 46.20905923344948,
+ "grad_norm": 0.046519581228494644,
+ "learning_rate": 1.4937190601780052e-05,
+ "loss": 1.707636833190918,
+ "step": 3327
+ },
+ {
+ "epoch": 46.22299651567944,
+ "grad_norm": 0.04647793993353844,
+ "learning_rate": 1.4872400842438576e-05,
+ "loss": 1.715500831604004,
+ "step": 3328
+ },
+ {
+ "epoch": 46.23693379790941,
+ "grad_norm": 0.04733971878886223,
+ "learning_rate": 1.4807843222299557e-05,
+ "loss": 1.7220163345336914,
+ "step": 3329
+ },
+ {
+ "epoch": 46.250871080139376,
+ "grad_norm": 0.046470463275909424,
+ "learning_rate": 1.4743517793375814e-05,
+ "loss": 1.7097495794296265,
+ "step": 3330
+ },
+ {
+ "epoch": 46.26480836236934,
+ "grad_norm": 0.04665692150592804,
+ "learning_rate": 1.4679424607493315e-05,
+ "loss": 1.7081177234649658,
+ "step": 3331
+ },
+ {
+ "epoch": 46.278745644599304,
+ "grad_norm": 0.04750923067331314,
+ "learning_rate": 1.4615563716290698e-05,
+ "loss": 1.70908784866333,
+ "step": 3332
+ },
+ {
+ "epoch": 46.292682926829265,
+ "grad_norm": 0.04647180810570717,
+ "learning_rate": 1.455193517121951e-05,
+ "loss": 1.7098603248596191,
+ "step": 3333
+ },
+ {
+ "epoch": 46.30662020905923,
+ "grad_norm": 0.04644951969385147,
+ "learning_rate": 1.448853902354421e-05,
+ "loss": 1.7010979652404785,
+ "step": 3334
+ },
+ {
+ "epoch": 46.3205574912892,
+ "grad_norm": 0.04825169965624809,
+ "learning_rate": 1.4425375324341827e-05,
+ "loss": 1.7154759168624878,
+ "step": 3335
+ },
+ {
+ "epoch": 46.33449477351916,
+ "grad_norm": 0.04624505713582039,
+ "learning_rate": 1.4362444124502309e-05,
+ "loss": 1.7051305770874023,
+ "step": 3336
+ },
+ {
+ "epoch": 46.34843205574913,
+ "grad_norm": 0.04801468551158905,
+ "learning_rate": 1.429974547472814e-05,
+ "loss": 1.7115801572799683,
+ "step": 3337
+ },
+ {
+ "epoch": 46.362369337979096,
+ "grad_norm": 0.04781145602464676,
+ "learning_rate": 1.4237279425534442e-05,
+ "loss": 1.7216037511825562,
+ "step": 3338
+ },
+ {
+ "epoch": 46.37630662020906,
+ "grad_norm": 0.04699789360165596,
+ "learning_rate": 1.4175046027249065e-05,
+ "loss": 1.7216031551361084,
+ "step": 3339
+ },
+ {
+ "epoch": 46.390243902439025,
+ "grad_norm": 0.049227382987737656,
+ "learning_rate": 1.4113045330012324e-05,
+ "loss": 1.7214586734771729,
+ "step": 3340
+ },
+ {
+ "epoch": 46.40418118466899,
+ "grad_norm": 0.04637543857097626,
+ "learning_rate": 1.4051277383776953e-05,
+ "loss": 1.7189669609069824,
+ "step": 3341
+ },
+ {
+ "epoch": 46.41811846689895,
+ "grad_norm": 0.048432692885398865,
+ "learning_rate": 1.398974223830839e-05,
+ "loss": 1.707050085067749,
+ "step": 3342
+ },
+ {
+ "epoch": 46.43205574912892,
+ "grad_norm": 0.04730162397027016,
+ "learning_rate": 1.3928439943184394e-05,
+ "loss": 1.714728832244873,
+ "step": 3343
+ },
+ {
+ "epoch": 46.44599303135889,
+ "grad_norm": 0.048262983560562134,
+ "learning_rate": 1.3867370547795065e-05,
+ "loss": 1.689849853515625,
+ "step": 3344
+ },
+ {
+ "epoch": 46.45993031358885,
+ "grad_norm": 0.046970341354608536,
+ "learning_rate": 1.3806534101342891e-05,
+ "loss": 1.7123324871063232,
+ "step": 3345
+ },
+ {
+ "epoch": 46.47386759581882,
+ "grad_norm": 0.04899929463863373,
+ "learning_rate": 1.3745930652842728e-05,
+ "loss": 1.7128818035125732,
+ "step": 3346
+ },
+ {
+ "epoch": 46.48780487804878,
+ "grad_norm": 0.046998947858810425,
+ "learning_rate": 1.368556025112176e-05,
+ "loss": 1.7182471752166748,
+ "step": 3347
+ },
+ {
+ "epoch": 46.501742160278745,
+ "grad_norm": 0.04752230644226074,
+ "learning_rate": 1.362542294481918e-05,
+ "loss": 1.7096706628799438,
+ "step": 3348
+ },
+ {
+ "epoch": 46.51567944250871,
+ "grad_norm": 0.04792966693639755,
+ "learning_rate": 1.356551878238656e-05,
+ "loss": 1.7138248682022095,
+ "step": 3349
+ },
+ {
+ "epoch": 46.52961672473867,
+ "grad_norm": 0.04760127142071724,
+ "learning_rate": 1.3505847812087724e-05,
+ "loss": 1.710491418838501,
+ "step": 3350
+ },
+ {
+ "epoch": 46.54355400696864,
+ "grad_norm": 0.04806818440556526,
+ "learning_rate": 1.3446410081998384e-05,
+ "loss": 1.7017086744308472,
+ "step": 3351
+ },
+ {
+ "epoch": 46.55749128919861,
+ "grad_norm": 0.049128882586956024,
+ "learning_rate": 1.3387205640006494e-05,
+ "loss": 1.7220609188079834,
+ "step": 3352
+ },
+ {
+ "epoch": 46.57142857142857,
+ "grad_norm": 0.048554688692092896,
+ "learning_rate": 1.332823453381196e-05,
+ "loss": 1.7089582681655884,
+ "step": 3353
+ },
+ {
+ "epoch": 46.58536585365854,
+ "grad_norm": 0.04799836874008179,
+ "learning_rate": 1.3269496810926807e-05,
+ "loss": 1.7121906280517578,
+ "step": 3354
+ },
+ {
+ "epoch": 46.599303135888505,
+ "grad_norm": 0.048532385379076004,
+ "learning_rate": 1.3210992518674848e-05,
+ "loss": 1.7186459302902222,
+ "step": 3355
+ },
+ {
+ "epoch": 46.613240418118465,
+ "grad_norm": 0.048017002642154694,
+ "learning_rate": 1.315272170419201e-05,
+ "loss": 1.7069817781448364,
+ "step": 3356
+ },
+ {
+ "epoch": 46.62717770034843,
+ "grad_norm": 0.04803437367081642,
+ "learning_rate": 1.3094684414426073e-05,
+ "loss": 1.7128326892852783,
+ "step": 3357
+ },
+ {
+ "epoch": 46.641114982578394,
+ "grad_norm": 0.04713568836450577,
+ "learning_rate": 1.3036880696136532e-05,
+ "loss": 1.707993507385254,
+ "step": 3358
+ },
+ {
+ "epoch": 46.65505226480836,
+ "grad_norm": 0.049049314111471176,
+ "learning_rate": 1.2979310595894882e-05,
+ "loss": 1.7162469625473022,
+ "step": 3359
+ },
+ {
+ "epoch": 46.66898954703833,
+ "grad_norm": 0.047962624579668045,
+ "learning_rate": 1.2921974160084251e-05,
+ "loss": 1.7062804698944092,
+ "step": 3360
+ },
+ {
+ "epoch": 46.68292682926829,
+ "grad_norm": 0.048299357295036316,
+ "learning_rate": 1.2864871434899672e-05,
+ "loss": 1.708340048789978,
+ "step": 3361
+ },
+ {
+ "epoch": 46.69686411149826,
+ "grad_norm": 0.04879226163029671,
+ "learning_rate": 1.2808002466347654e-05,
+ "loss": 1.7121168375015259,
+ "step": 3362
+ },
+ {
+ "epoch": 46.710801393728225,
+ "grad_norm": 0.04841044172644615,
+ "learning_rate": 1.2751367300246535e-05,
+ "loss": 1.7265384197235107,
+ "step": 3363
+ },
+ {
+ "epoch": 46.724738675958186,
+ "grad_norm": 0.04899459332227707,
+ "learning_rate": 1.2694965982226301e-05,
+ "loss": 1.7073949575424194,
+ "step": 3364
+ },
+ {
+ "epoch": 46.73867595818815,
+ "grad_norm": 0.04861718788743019,
+ "learning_rate": 1.2638798557728402e-05,
+ "loss": 1.727325201034546,
+ "step": 3365
+ },
+ {
+ "epoch": 46.75261324041812,
+ "grad_norm": 0.050011806190013885,
+ "learning_rate": 1.2582865072006e-05,
+ "loss": 1.7142610549926758,
+ "step": 3366
+ },
+ {
+ "epoch": 46.76655052264808,
+ "grad_norm": 0.04796547442674637,
+ "learning_rate": 1.2527165570123586e-05,
+ "loss": 1.7113475799560547,
+ "step": 3367
+ },
+ {
+ "epoch": 46.78048780487805,
+ "grad_norm": 0.049722328782081604,
+ "learning_rate": 1.2471700096957376e-05,
+ "loss": 1.7100369930267334,
+ "step": 3368
+ },
+ {
+ "epoch": 46.79442508710802,
+ "grad_norm": 0.04778652638196945,
+ "learning_rate": 1.2416468697194767e-05,
+ "loss": 1.7058954238891602,
+ "step": 3369
+ },
+ {
+ "epoch": 46.80836236933798,
+ "grad_norm": 0.04949144273996353,
+ "learning_rate": 1.2361471415334795e-05,
+ "loss": 1.7112433910369873,
+ "step": 3370
+ },
+ {
+ "epoch": 46.822299651567945,
+ "grad_norm": 0.049134839326143265,
+ "learning_rate": 1.2306708295687706e-05,
+ "loss": 1.7141335010528564,
+ "step": 3371
+ },
+ {
+ "epoch": 46.836236933797906,
+ "grad_norm": 0.04890349879860878,
+ "learning_rate": 1.2252179382375211e-05,
+ "loss": 1.7125810384750366,
+ "step": 3372
+ },
+ {
+ "epoch": 46.850174216027874,
+ "grad_norm": 0.047753434628248215,
+ "learning_rate": 1.2197884719330281e-05,
+ "loss": 1.7027989625930786,
+ "step": 3373
+ },
+ {
+ "epoch": 46.86411149825784,
+ "grad_norm": 0.04970487579703331,
+ "learning_rate": 1.2143824350297104e-05,
+ "loss": 1.7076698541641235,
+ "step": 3374
+ },
+ {
+ "epoch": 46.8780487804878,
+ "grad_norm": 0.0481494702398777,
+ "learning_rate": 1.2089998318831137e-05,
+ "loss": 1.718212366104126,
+ "step": 3375
+ },
+ {
+ "epoch": 46.89198606271777,
+ "grad_norm": 0.04890601709485054,
+ "learning_rate": 1.2036406668299062e-05,
+ "loss": 1.712068796157837,
+ "step": 3376
+ },
+ {
+ "epoch": 46.90592334494774,
+ "grad_norm": 0.04931579902768135,
+ "learning_rate": 1.198304944187868e-05,
+ "loss": 1.7128372192382812,
+ "step": 3377
+ },
+ {
+ "epoch": 46.9198606271777,
+ "grad_norm": 0.05078713968396187,
+ "learning_rate": 1.1929926682558995e-05,
+ "loss": 1.72105073928833,
+ "step": 3378
+ },
+ {
+ "epoch": 46.933797909407666,
+ "grad_norm": 0.04916049540042877,
+ "learning_rate": 1.1877038433139998e-05,
+ "loss": 1.7163662910461426,
+ "step": 3379
+ },
+ {
+ "epoch": 46.94773519163763,
+ "grad_norm": 0.04885200038552284,
+ "learning_rate": 1.1824384736232879e-05,
+ "loss": 1.724597692489624,
+ "step": 3380
+ },
+ {
+ "epoch": 46.961672473867594,
+ "grad_norm": 0.04902984946966171,
+ "learning_rate": 1.1771965634259653e-05,
+ "loss": 1.7373812198638916,
+ "step": 3381
+ },
+ {
+ "epoch": 46.97560975609756,
+ "grad_norm": 0.04839412122964859,
+ "learning_rate": 1.1719781169453536e-05,
+ "loss": 1.714876413345337,
+ "step": 3382
+ },
+ {
+ "epoch": 46.98954703832753,
+ "grad_norm": 0.04870237410068512,
+ "learning_rate": 1.1667831383858562e-05,
+ "loss": 1.7244782447814941,
+ "step": 3383
+ },
+ {
+ "epoch": 47.0,
+ "grad_norm": 0.04313349723815918,
+ "learning_rate": 1.1616116319329808e-05,
+ "loss": 1.2838871479034424,
+ "step": 3384
+ },
+ {
+ "epoch": 47.0,
+ "eval_loss": 0.6640693545341492,
+ "eval_runtime": 36.8081,
+ "eval_samples_per_second": 66.344,
+ "eval_steps_per_second": 0.543,
+ "step": 3384
+ },
+ {
+ "epoch": 47.01393728222997,
+ "grad_norm": 0.043441567569971085,
+ "learning_rate": 1.1564636017533036e-05,
+ "loss": 1.708518385887146,
+ "step": 3385
+ },
+ {
+ "epoch": 47.02787456445993,
+ "grad_norm": 0.042706139385700226,
+ "learning_rate": 1.151339051994508e-05,
+ "loss": 1.7044532299041748,
+ "step": 3386
+ },
+ {
+ "epoch": 47.041811846689896,
+ "grad_norm": 0.04389633238315582,
+ "learning_rate": 1.146237986785356e-05,
+ "loss": 1.7028136253356934,
+ "step": 3387
+ },
+ {
+ "epoch": 47.055749128919864,
+ "grad_norm": 0.04471853747963905,
+ "learning_rate": 1.141160410235674e-05,
+ "loss": 1.6953160762786865,
+ "step": 3388
+ },
+ {
+ "epoch": 47.069686411149824,
+ "grad_norm": 0.04415849223732948,
+ "learning_rate": 1.1361063264363776e-05,
+ "loss": 1.7101333141326904,
+ "step": 3389
+ },
+ {
+ "epoch": 47.08362369337979,
+ "grad_norm": 0.04552712291479111,
+ "learning_rate": 1.1310757394594514e-05,
+ "loss": 1.715517282485962,
+ "step": 3390
+ },
+ {
+ "epoch": 47.09756097560975,
+ "grad_norm": 0.04612542688846588,
+ "learning_rate": 1.1260686533579481e-05,
+ "loss": 1.7185955047607422,
+ "step": 3391
+ },
+ {
+ "epoch": 47.11149825783972,
+ "grad_norm": 0.04658742994070053,
+ "learning_rate": 1.121085072165986e-05,
+ "loss": 1.698256015777588,
+ "step": 3392
+ },
+ {
+ "epoch": 47.12543554006969,
+ "grad_norm": 0.043853938579559326,
+ "learning_rate": 1.1161249998987429e-05,
+ "loss": 1.7070897817611694,
+ "step": 3393
+ },
+ {
+ "epoch": 47.13937282229965,
+ "grad_norm": 0.04469066858291626,
+ "learning_rate": 1.111188440552471e-05,
+ "loss": 1.7166314125061035,
+ "step": 3394
+ },
+ {
+ "epoch": 47.153310104529616,
+ "grad_norm": 0.04524720460176468,
+ "learning_rate": 1.106275398104455e-05,
+ "loss": 1.7145289182662964,
+ "step": 3395
+ },
+ {
+ "epoch": 47.167247386759584,
+ "grad_norm": 0.044530175626277924,
+ "learning_rate": 1.1013858765130468e-05,
+ "loss": 1.703780174255371,
+ "step": 3396
+ },
+ {
+ "epoch": 47.181184668989545,
+ "grad_norm": 0.0453910268843174,
+ "learning_rate": 1.0965198797176513e-05,
+ "loss": 1.7161518335342407,
+ "step": 3397
+ },
+ {
+ "epoch": 47.19512195121951,
+ "grad_norm": 0.04537680000066757,
+ "learning_rate": 1.0916774116387103e-05,
+ "loss": 1.7082877159118652,
+ "step": 3398
+ },
+ {
+ "epoch": 47.20905923344948,
+ "grad_norm": 0.04509524255990982,
+ "learning_rate": 1.0868584761777125e-05,
+ "loss": 1.7123384475708008,
+ "step": 3399
+ },
+ {
+ "epoch": 47.22299651567944,
+ "grad_norm": 0.045755259692668915,
+ "learning_rate": 1.0820630772171869e-05,
+ "loss": 1.711341142654419,
+ "step": 3400
+ },
+ {
+ "epoch": 47.23693379790941,
+ "grad_norm": 0.04495033621788025,
+ "learning_rate": 1.0772912186206987e-05,
+ "loss": 1.724153757095337,
+ "step": 3401
+ },
+ {
+ "epoch": 47.250871080139376,
+ "grad_norm": 0.04681352153420448,
+ "learning_rate": 1.0725429042328542e-05,
+ "loss": 1.7142531871795654,
+ "step": 3402
+ },
+ {
+ "epoch": 47.26480836236934,
+ "grad_norm": 0.045142173767089844,
+ "learning_rate": 1.0678181378792794e-05,
+ "loss": 1.7174118757247925,
+ "step": 3403
+ },
+ {
+ "epoch": 47.278745644599304,
+ "grad_norm": 0.04555616155266762,
+ "learning_rate": 1.0631169233666306e-05,
+ "loss": 1.7040278911590576,
+ "step": 3404
+ },
+ {
+ "epoch": 47.292682926829265,
+ "grad_norm": 0.04485474154353142,
+ "learning_rate": 1.0584392644826016e-05,
+ "loss": 1.710986614227295,
+ "step": 3405
+ },
+ {
+ "epoch": 47.30662020905923,
+ "grad_norm": 0.04505819082260132,
+ "learning_rate": 1.053785164995886e-05,
+ "loss": 1.7144593000411987,
+ "step": 3406
+ },
+ {
+ "epoch": 47.3205574912892,
+ "grad_norm": 0.045686546713113785,
+ "learning_rate": 1.0491546286562148e-05,
+ "loss": 1.7120648622512817,
+ "step": 3407
+ },
+ {
+ "epoch": 47.33449477351916,
+ "grad_norm": 0.04493718594312668,
+ "learning_rate": 1.0445476591943259e-05,
+ "loss": 1.7057472467422485,
+ "step": 3408
+ },
+ {
+ "epoch": 47.34843205574913,
+ "grad_norm": 0.0465206615626812,
+ "learning_rate": 1.0399642603219712e-05,
+ "loss": 1.7132736444473267,
+ "step": 3409
+ },
+ {
+ "epoch": 47.362369337979096,
+ "grad_norm": 0.04608174413442612,
+ "learning_rate": 1.0354044357319129e-05,
+ "loss": 1.702417254447937,
+ "step": 3410
+ },
+ {
+ "epoch": 47.37630662020906,
+ "grad_norm": 0.045613497495651245,
+ "learning_rate": 1.0308681890979173e-05,
+ "loss": 1.7079838514328003,
+ "step": 3411
+ },
+ {
+ "epoch": 47.390243902439025,
+ "grad_norm": 0.045094121247529984,
+ "learning_rate": 1.026355524074758e-05,
+ "loss": 1.7105755805969238,
+ "step": 3412
+ },
+ {
+ "epoch": 47.40418118466899,
+ "grad_norm": 0.04575841873884201,
+ "learning_rate": 1.0218664442982084e-05,
+ "loss": 1.703252911567688,
+ "step": 3413
+ },
+ {
+ "epoch": 47.41811846689895,
+ "grad_norm": 0.04680824279785156,
+ "learning_rate": 1.0174009533850368e-05,
+ "loss": 1.7232460975646973,
+ "step": 3414
+ },
+ {
+ "epoch": 47.43205574912892,
+ "grad_norm": 0.04626444727182388,
+ "learning_rate": 1.0129590549330119e-05,
+ "loss": 1.7159209251403809,
+ "step": 3415
+ },
+ {
+ "epoch": 47.44599303135889,
+ "grad_norm": 0.04621845856308937,
+ "learning_rate": 1.0085407525208865e-05,
+ "loss": 1.7097848653793335,
+ "step": 3416
+ },
+ {
+ "epoch": 47.45993031358885,
+ "grad_norm": 0.04558650404214859,
+ "learning_rate": 1.0041460497084135e-05,
+ "loss": 1.7089433670043945,
+ "step": 3417
+ },
+ {
+ "epoch": 47.47386759581882,
+ "grad_norm": 0.04638747125864029,
+ "learning_rate": 9.997749500363172e-06,
+ "loss": 1.7008862495422363,
+ "step": 3418
+ },
+ {
+ "epoch": 47.48780487804878,
+ "grad_norm": 0.04616573825478554,
+ "learning_rate": 9.954274570263191e-06,
+ "loss": 1.7073880434036255,
+ "step": 3419
+ },
+ {
+ "epoch": 47.501742160278745,
+ "grad_norm": 0.04594685509800911,
+ "learning_rate": 9.911035741811153e-06,
+ "loss": 1.7085554599761963,
+ "step": 3420
+ },
+ {
+ "epoch": 47.51567944250871,
+ "grad_norm": 0.04612010344862938,
+ "learning_rate": 9.868033049843787e-06,
+ "loss": 1.6927258968353271,
+ "step": 3421
+ },
+ {
+ "epoch": 47.52961672473867,
+ "grad_norm": 0.04594750702381134,
+ "learning_rate": 9.825266529007601e-06,
+ "loss": 1.7160546779632568,
+ "step": 3422
+ },
+ {
+ "epoch": 47.54355400696864,
+ "grad_norm": 0.04544999450445175,
+ "learning_rate": 9.782736213758782e-06,
+ "loss": 1.7296531200408936,
+ "step": 3423
+ },
+ {
+ "epoch": 47.55749128919861,
+ "grad_norm": 0.04566166177392006,
+ "learning_rate": 9.740442138363317e-06,
+ "loss": 1.7104086875915527,
+ "step": 3424
+ },
+ {
+ "epoch": 47.57142857142857,
+ "grad_norm": 0.04633738100528717,
+ "learning_rate": 9.698384336896679e-06,
+ "loss": 1.7066600322723389,
+ "step": 3425
+ },
+ {
+ "epoch": 47.58536585365854,
+ "grad_norm": 0.04591180384159088,
+ "learning_rate": 9.656562843244114e-06,
+ "loss": 1.7137176990509033,
+ "step": 3426
+ },
+ {
+ "epoch": 47.599303135888505,
+ "grad_norm": 0.04621310904622078,
+ "learning_rate": 9.614977691100445e-06,
+ "loss": 1.7198187112808228,
+ "step": 3427
+ },
+ {
+ "epoch": 47.613240418118465,
+ "grad_norm": 0.045488785952329636,
+ "learning_rate": 9.57362891397007e-06,
+ "loss": 1.7127526998519897,
+ "step": 3428
+ },
+ {
+ "epoch": 47.62717770034843,
+ "grad_norm": 0.04683702066540718,
+ "learning_rate": 9.532516545167004e-06,
+ "loss": 1.7065324783325195,
+ "step": 3429
+ },
+ {
+ "epoch": 47.641114982578394,
+ "grad_norm": 0.04620444029569626,
+ "learning_rate": 9.491640617814634e-06,
+ "loss": 1.7184169292449951,
+ "step": 3430
+ },
+ {
+ "epoch": 47.65505226480836,
+ "grad_norm": 0.04597727954387665,
+ "learning_rate": 9.451001164846092e-06,
+ "loss": 1.7149806022644043,
+ "step": 3431
+ },
+ {
+ "epoch": 47.66898954703833,
+ "grad_norm": 0.045987553894519806,
+ "learning_rate": 9.410598219003725e-06,
+ "loss": 1.703639268875122,
+ "step": 3432
+ },
+ {
+ "epoch": 47.68292682926829,
+ "grad_norm": 0.04680592939257622,
+ "learning_rate": 9.370431812839556e-06,
+ "loss": 1.7071880102157593,
+ "step": 3433
+ },
+ {
+ "epoch": 47.69686411149826,
+ "grad_norm": 0.046273473650217056,
+ "learning_rate": 9.330501978714857e-06,
+ "loss": 1.7099225521087646,
+ "step": 3434
+ },
+ {
+ "epoch": 47.710801393728225,
+ "grad_norm": 0.047199852764606476,
+ "learning_rate": 9.290808748800408e-06,
+ "loss": 1.7123441696166992,
+ "step": 3435
+ },
+ {
+ "epoch": 47.724738675958186,
+ "grad_norm": 0.0458100400865078,
+ "learning_rate": 9.25135215507634e-06,
+ "loss": 1.7080748081207275,
+ "step": 3436
+ },
+ {
+ "epoch": 47.73867595818815,
+ "grad_norm": 0.046827532351017,
+ "learning_rate": 9.212132229332094e-06,
+ "loss": 1.6957893371582031,
+ "step": 3437
+ },
+ {
+ "epoch": 47.75261324041812,
+ "grad_norm": 0.04717643931508064,
+ "learning_rate": 9.173149003166458e-06,
+ "loss": 1.6964613199234009,
+ "step": 3438
+ },
+ {
+ "epoch": 47.76655052264808,
+ "grad_norm": 0.04655013605952263,
+ "learning_rate": 9.134402507987533e-06,
+ "loss": 1.7112114429473877,
+ "step": 3439
+ },
+ {
+ "epoch": 47.78048780487805,
+ "grad_norm": 0.04729578644037247,
+ "learning_rate": 9.095892775012672e-06,
+ "loss": 1.7060750722885132,
+ "step": 3440
+ },
+ {
+ "epoch": 47.79442508710802,
+ "grad_norm": 0.047537121921777725,
+ "learning_rate": 9.057619835268437e-06,
+ "loss": 1.6967332363128662,
+ "step": 3441
+ },
+ {
+ "epoch": 47.80836236933798,
+ "grad_norm": 0.047652263194322586,
+ "learning_rate": 9.019583719590641e-06,
+ "loss": 1.701911449432373,
+ "step": 3442
+ },
+ {
+ "epoch": 47.822299651567945,
+ "grad_norm": 0.046596378087997437,
+ "learning_rate": 8.981784458624375e-06,
+ "loss": 1.700395107269287,
+ "step": 3443
+ },
+ {
+ "epoch": 47.836236933797906,
+ "grad_norm": 0.047116320580244064,
+ "learning_rate": 8.944222082823717e-06,
+ "loss": 1.7189290523529053,
+ "step": 3444
+ },
+ {
+ "epoch": 47.850174216027874,
+ "grad_norm": 0.04765070229768753,
+ "learning_rate": 8.906896622452055e-06,
+ "loss": 1.7206735610961914,
+ "step": 3445
+ },
+ {
+ "epoch": 47.86411149825784,
+ "grad_norm": 0.04707182198762894,
+ "learning_rate": 8.86980810758183e-06,
+ "loss": 1.6983528137207031,
+ "step": 3446
+ },
+ {
+ "epoch": 47.8780487804878,
+ "grad_norm": 0.04719957709312439,
+ "learning_rate": 8.832956568094596e-06,
+ "loss": 1.7100093364715576,
+ "step": 3447
+ },
+ {
+ "epoch": 47.89198606271777,
+ "grad_norm": 0.04673738405108452,
+ "learning_rate": 8.796342033680928e-06,
+ "loss": 1.6918028593063354,
+ "step": 3448
+ },
+ {
+ "epoch": 47.90592334494774,
+ "grad_norm": 0.04687416926026344,
+ "learning_rate": 8.759964533840574e-06,
+ "loss": 1.709188461303711,
+ "step": 3449
+ },
+ {
+ "epoch": 47.9198606271777,
+ "grad_norm": 0.04727151617407799,
+ "learning_rate": 8.723824097882145e-06,
+ "loss": 1.704529881477356,
+ "step": 3450
+ },
+ {
+ "epoch": 47.933797909407666,
+ "grad_norm": 0.04685309901833534,
+ "learning_rate": 8.687920754923393e-06,
+ "loss": 1.7058964967727661,
+ "step": 3451
+ },
+ {
+ "epoch": 47.94773519163763,
+ "grad_norm": 0.04719698429107666,
+ "learning_rate": 8.652254533890956e-06,
+ "loss": 1.7108168601989746,
+ "step": 3452
+ },
+ {
+ "epoch": 47.961672473867594,
+ "grad_norm": 0.047688864171504974,
+ "learning_rate": 8.616825463520493e-06,
+ "loss": 1.722609043121338,
+ "step": 3453
+ },
+ {
+ "epoch": 47.97560975609756,
+ "grad_norm": 0.04737238585948944,
+ "learning_rate": 8.581633572356576e-06,
+ "loss": 1.6969752311706543,
+ "step": 3454
+ },
+ {
+ "epoch": 47.98954703832753,
+ "grad_norm": 0.0466439351439476,
+ "learning_rate": 8.546678888752629e-06,
+ "loss": 1.708840012550354,
+ "step": 3455
+ },
+ {
+ "epoch": 48.0,
+ "grad_norm": 0.03955826908349991,
+ "learning_rate": 8.51196144087103e-06,
+ "loss": 1.2782695293426514,
+ "step": 3456
+ },
+ {
+ "epoch": 48.0,
+ "eval_loss": 0.6648432612419128,
+ "eval_runtime": 38.1242,
+ "eval_samples_per_second": 64.054,
+ "eval_steps_per_second": 0.525,
+ "step": 3456
+ },
+ {
+ "epoch": 48.01393728222997,
+ "grad_norm": 0.04207965359091759,
+ "learning_rate": 8.477481256683005e-06,
+ "loss": 1.6829965114593506,
+ "step": 3457
+ },
+ {
+ "epoch": 48.02787456445993,
+ "grad_norm": 0.04105256125330925,
+ "learning_rate": 8.44323836396864e-06,
+ "loss": 1.7091000080108643,
+ "step": 3458
+ },
+ {
+ "epoch": 48.041811846689896,
+ "grad_norm": 0.042323265224695206,
+ "learning_rate": 8.409232790316763e-06,
+ "loss": 1.7106825113296509,
+ "step": 3459
+ },
+ {
+ "epoch": 48.055749128919864,
+ "grad_norm": 0.042100414633750916,
+ "learning_rate": 8.375464563125094e-06,
+ "loss": 1.7122563123703003,
+ "step": 3460
+ },
+ {
+ "epoch": 48.069686411149824,
+ "grad_norm": 0.04303988441824913,
+ "learning_rate": 8.341933709600102e-06,
+ "loss": 1.7142541408538818,
+ "step": 3461
+ },
+ {
+ "epoch": 48.08362369337979,
+ "grad_norm": 0.042817845940589905,
+ "learning_rate": 8.308640256756916e-06,
+ "loss": 1.7106881141662598,
+ "step": 3462
+ },
+ {
+ "epoch": 48.09756097560975,
+ "grad_norm": 0.04308189079165459,
+ "learning_rate": 8.275584231419512e-06,
+ "loss": 1.6997013092041016,
+ "step": 3463
+ },
+ {
+ "epoch": 48.11149825783972,
+ "grad_norm": 0.04314665496349335,
+ "learning_rate": 8.24276566022055e-06,
+ "loss": 1.6966593265533447,
+ "step": 3464
+ },
+ {
+ "epoch": 48.12543554006969,
+ "grad_norm": 0.04306992143392563,
+ "learning_rate": 8.21018456960132e-06,
+ "loss": 1.7004425525665283,
+ "step": 3465
+ },
+ {
+ "epoch": 48.13937282229965,
+ "grad_norm": 0.04325971007347107,
+ "learning_rate": 8.177840985811858e-06,
+ "loss": 1.717990517616272,
+ "step": 3466
+ },
+ {
+ "epoch": 48.153310104529616,
+ "grad_norm": 0.04420514777302742,
+ "learning_rate": 8.145734934910757e-06,
+ "loss": 1.7067896127700806,
+ "step": 3467
+ },
+ {
+ "epoch": 48.167247386759584,
+ "grad_norm": 0.04326557368040085,
+ "learning_rate": 8.113866442765364e-06,
+ "loss": 1.7081527709960938,
+ "step": 3468
+ },
+ {
+ "epoch": 48.181184668989545,
+ "grad_norm": 0.04341931641101837,
+ "learning_rate": 8.082235535051449e-06,
+ "loss": 1.706506371498108,
+ "step": 3469
+ },
+ {
+ "epoch": 48.19512195121951,
+ "grad_norm": 0.04401346296072006,
+ "learning_rate": 8.050842237253533e-06,
+ "loss": 1.7211894989013672,
+ "step": 3470
+ },
+ {
+ "epoch": 48.20905923344948,
+ "grad_norm": 0.04261597990989685,
+ "learning_rate": 8.019686574664564e-06,
+ "loss": 1.714357614517212,
+ "step": 3471
+ },
+ {
+ "epoch": 48.22299651567944,
+ "grad_norm": 0.04377780109643936,
+ "learning_rate": 7.988768572386171e-06,
+ "loss": 1.7139153480529785,
+ "step": 3472
+ },
+ {
+ "epoch": 48.23693379790941,
+ "grad_norm": 0.04354608803987503,
+ "learning_rate": 7.958088255328415e-06,
+ "loss": 1.7104272842407227,
+ "step": 3473
+ },
+ {
+ "epoch": 48.250871080139376,
+ "grad_norm": 0.04333838075399399,
+ "learning_rate": 7.927645648209837e-06,
+ "loss": 1.700390100479126,
+ "step": 3474
+ },
+ {
+ "epoch": 48.26480836236934,
+ "grad_norm": 0.04301075637340546,
+ "learning_rate": 7.897440775557506e-06,
+ "loss": 1.70574951171875,
+ "step": 3475
+ },
+ {
+ "epoch": 48.278745644599304,
+ "grad_norm": 0.04388466104865074,
+ "learning_rate": 7.867473661706946e-06,
+ "loss": 1.7148648500442505,
+ "step": 3476
+ },
+ {
+ "epoch": 48.292682926829265,
+ "grad_norm": 0.04331183061003685,
+ "learning_rate": 7.837744330802136e-06,
+ "loss": 1.7049968242645264,
+ "step": 3477
+ },
+ {
+ "epoch": 48.30662020905923,
+ "grad_norm": 0.04346012324094772,
+ "learning_rate": 7.808252806795446e-06,
+ "loss": 1.695462942123413,
+ "step": 3478
+ },
+ {
+ "epoch": 48.3205574912892,
+ "grad_norm": 0.04360367730259895,
+ "learning_rate": 7.778999113447673e-06,
+ "loss": 1.7023507356643677,
+ "step": 3479
+ },
+ {
+ "epoch": 48.33449477351916,
+ "grad_norm": 0.04391394183039665,
+ "learning_rate": 7.749983274327994e-06,
+ "loss": 1.700353741645813,
+ "step": 3480
+ },
+ {
+ "epoch": 48.34843205574913,
+ "grad_norm": 0.04447341710329056,
+ "learning_rate": 7.721205312813921e-06,
+ "loss": 1.7068313360214233,
+ "step": 3481
+ },
+ {
+ "epoch": 48.362369337979096,
+ "grad_norm": 0.04384107142686844,
+ "learning_rate": 7.69266525209132e-06,
+ "loss": 1.6995190382003784,
+ "step": 3482
+ },
+ {
+ "epoch": 48.37630662020906,
+ "grad_norm": 0.043950166553258896,
+ "learning_rate": 7.664363115154476e-06,
+ "loss": 1.6878467798233032,
+ "step": 3483
+ },
+ {
+ "epoch": 48.390243902439025,
+ "grad_norm": 0.04420538619160652,
+ "learning_rate": 7.636298924805872e-06,
+ "loss": 1.6936192512512207,
+ "step": 3484
+ },
+ {
+ "epoch": 48.40418118466899,
+ "grad_norm": 0.0443466491997242,
+ "learning_rate": 7.608472703656282e-06,
+ "loss": 1.7152774333953857,
+ "step": 3485
+ },
+ {
+ "epoch": 48.41811846689895,
+ "grad_norm": 0.04419941082596779,
+ "learning_rate": 7.580884474124833e-06,
+ "loss": 1.7114038467407227,
+ "step": 3486
+ },
+ {
+ "epoch": 48.43205574912892,
+ "grad_norm": 0.04358881339430809,
+ "learning_rate": 7.55353425843888e-06,
+ "loss": 1.7009592056274414,
+ "step": 3487
+ },
+ {
+ "epoch": 48.44599303135889,
+ "grad_norm": 0.043629009276628494,
+ "learning_rate": 7.526422078633939e-06,
+ "loss": 1.7032603025436401,
+ "step": 3488
+ },
+ {
+ "epoch": 48.45993031358885,
+ "grad_norm": 0.04410257562994957,
+ "learning_rate": 7.4995479565538476e-06,
+ "loss": 1.7087805271148682,
+ "step": 3489
+ },
+ {
+ "epoch": 48.47386759581882,
+ "grad_norm": 0.045042309910058975,
+ "learning_rate": 7.4729119138506044e-06,
+ "loss": 1.7148226499557495,
+ "step": 3490
+ },
+ {
+ "epoch": 48.48780487804878,
+ "grad_norm": 0.04429686442017555,
+ "learning_rate": 7.446513971984366e-06,
+ "loss": 1.688765048980713,
+ "step": 3491
+ },
+ {
+ "epoch": 48.501742160278745,
+ "grad_norm": 0.045482341200113297,
+ "learning_rate": 7.420354152223485e-06,
+ "loss": 1.7209587097167969,
+ "step": 3492
+ },
+ {
+ "epoch": 48.51567944250871,
+ "grad_norm": 0.04290300980210304,
+ "learning_rate": 7.394432475644402e-06,
+ "loss": 1.7155897617340088,
+ "step": 3493
+ },
+ {
+ "epoch": 48.52961672473867,
+ "grad_norm": 0.04475873336195946,
+ "learning_rate": 7.368748963131854e-06,
+ "loss": 1.7000935077667236,
+ "step": 3494
+ },
+ {
+ "epoch": 48.54355400696864,
+ "grad_norm": 0.044845253229141235,
+ "learning_rate": 7.343303635378537e-06,
+ "loss": 1.7108426094055176,
+ "step": 3495
+ },
+ {
+ "epoch": 48.55749128919861,
+ "grad_norm": 0.044380854815244675,
+ "learning_rate": 7.31809651288524e-06,
+ "loss": 1.6975586414337158,
+ "step": 3496
+ },
+ {
+ "epoch": 48.57142857142857,
+ "grad_norm": 0.04459838569164276,
+ "learning_rate": 7.2931276159609475e-06,
+ "loss": 1.7089626789093018,
+ "step": 3497
+ },
+ {
+ "epoch": 48.58536585365854,
+ "grad_norm": 0.04375118017196655,
+ "learning_rate": 7.268396964722602e-06,
+ "loss": 1.6991958618164062,
+ "step": 3498
+ },
+ {
+ "epoch": 48.599303135888505,
+ "grad_norm": 0.044372353702783585,
+ "learning_rate": 7.243904579095308e-06,
+ "loss": 1.6963080167770386,
+ "step": 3499
+ },
+ {
+ "epoch": 48.613240418118465,
+ "grad_norm": 0.04452536255121231,
+ "learning_rate": 7.219650478812065e-06,
+ "loss": 1.700153112411499,
+ "step": 3500
+ },
+ {
+ "epoch": 48.62717770034843,
+ "grad_norm": 0.04333079606294632,
+ "learning_rate": 7.195634683413996e-06,
+ "loss": 1.6930482387542725,
+ "step": 3501
+ },
+ {
+ "epoch": 48.641114982578394,
+ "grad_norm": 0.04498819634318352,
+ "learning_rate": 7.171857212250225e-06,
+ "loss": 1.7189009189605713,
+ "step": 3502
+ },
+ {
+ "epoch": 48.65505226480836,
+ "grad_norm": 0.04530860856175423,
+ "learning_rate": 7.148318084477766e-06,
+ "loss": 1.7010598182678223,
+ "step": 3503
+ },
+ {
+ "epoch": 48.66898954703833,
+ "grad_norm": 0.045068301260471344,
+ "learning_rate": 7.125017319061728e-06,
+ "loss": 1.7095065116882324,
+ "step": 3504
+ },
+ {
+ "epoch": 48.68292682926829,
+ "grad_norm": 0.044878605753183365,
+ "learning_rate": 7.101954934775084e-06,
+ "loss": 1.6989578008651733,
+ "step": 3505
+ },
+ {
+ "epoch": 48.69686411149826,
+ "grad_norm": 0.04676225781440735,
+ "learning_rate": 7.079130950198802e-06,
+ "loss": 1.7095978260040283,
+ "step": 3506
+ },
+ {
+ "epoch": 48.710801393728225,
+ "grad_norm": 0.045462239533662796,
+ "learning_rate": 7.05654538372171e-06,
+ "loss": 1.7074459791183472,
+ "step": 3507
+ },
+ {
+ "epoch": 48.724738675958186,
+ "grad_norm": 0.04405169188976288,
+ "learning_rate": 7.034198253540665e-06,
+ "loss": 1.7102513313293457,
+ "step": 3508
+ },
+ {
+ "epoch": 48.73867595818815,
+ "grad_norm": 0.04500969871878624,
+ "learning_rate": 7.012089577660255e-06,
+ "loss": 1.719184398651123,
+ "step": 3509
+ },
+ {
+ "epoch": 48.75261324041812,
+ "grad_norm": 0.04454870894551277,
+ "learning_rate": 6.990219373893128e-06,
+ "loss": 1.7147493362426758,
+ "step": 3510
+ },
+ {
+ "epoch": 48.76655052264808,
+ "grad_norm": 0.044733189046382904,
+ "learning_rate": 6.968587659859665e-06,
+ "loss": 1.7009961605072021,
+ "step": 3511
+ },
+ {
+ "epoch": 48.78048780487805,
+ "grad_norm": 0.04493679106235504,
+ "learning_rate": 6.9471944529881376e-06,
+ "loss": 1.7014516592025757,
+ "step": 3512
+ },
+ {
+ "epoch": 48.79442508710802,
+ "grad_norm": 0.04561448469758034,
+ "learning_rate": 6.926039770514686e-06,
+ "loss": 1.712647795677185,
+ "step": 3513
+ },
+ {
+ "epoch": 48.80836236933798,
+ "grad_norm": 0.04501703381538391,
+ "learning_rate": 6.905123629483277e-06,
+ "loss": 1.709536075592041,
+ "step": 3514
+ },
+ {
+ "epoch": 48.822299651567945,
+ "grad_norm": 0.045450516045093536,
+ "learning_rate": 6.884446046745608e-06,
+ "loss": 1.7021760940551758,
+ "step": 3515
+ },
+ {
+ "epoch": 48.836236933797906,
+ "grad_norm": 0.045338183641433716,
+ "learning_rate": 6.8640070389613055e-06,
+ "loss": 1.71574866771698,
+ "step": 3516
+ },
+ {
+ "epoch": 48.850174216027874,
+ "grad_norm": 0.045687805861234665,
+ "learning_rate": 6.843806622597661e-06,
+ "loss": 1.7092828750610352,
+ "step": 3517
+ },
+ {
+ "epoch": 48.86411149825784,
+ "grad_norm": 0.044983260333538055,
+ "learning_rate": 6.823844813929796e-06,
+ "loss": 1.702180027961731,
+ "step": 3518
+ },
+ {
+ "epoch": 48.8780487804878,
+ "grad_norm": 0.04427162930369377,
+ "learning_rate": 6.804121629040597e-06,
+ "loss": 1.7054104804992676,
+ "step": 3519
+ },
+ {
+ "epoch": 48.89198606271777,
+ "grad_norm": 0.044512808322906494,
+ "learning_rate": 6.7846370838206455e-06,
+ "loss": 1.6938576698303223,
+ "step": 3520
+ },
+ {
+ "epoch": 48.90592334494774,
+ "grad_norm": 0.04519838094711304,
+ "learning_rate": 6.765391193968287e-06,
+ "loss": 1.7220097780227661,
+ "step": 3521
+ },
+ {
+ "epoch": 48.9198606271777,
+ "grad_norm": 0.044823192059993744,
+ "learning_rate": 6.7463839749896335e-06,
+ "loss": 1.7111352682113647,
+ "step": 3522
+ },
+ {
+ "epoch": 48.933797909407666,
+ "grad_norm": 0.04515688866376877,
+ "learning_rate": 6.727615442198394e-06,
+ "loss": 1.7087703943252563,
+ "step": 3523
+ },
+ {
+ "epoch": 48.94773519163763,
+ "grad_norm": 0.0452377051115036,
+ "learning_rate": 6.709085610716107e-06,
+ "loss": 1.6955392360687256,
+ "step": 3524
+ },
+ {
+ "epoch": 48.961672473867594,
+ "grad_norm": 0.04521654173731804,
+ "learning_rate": 6.690794495471878e-06,
+ "loss": 1.7025028467178345,
+ "step": 3525
+ },
+ {
+ "epoch": 48.97560975609756,
+ "grad_norm": 0.044636037200689316,
+ "learning_rate": 6.672742111202543e-06,
+ "loss": 1.7094043493270874,
+ "step": 3526
+ },
+ {
+ "epoch": 48.98954703832753,
+ "grad_norm": 0.04517805203795433,
+ "learning_rate": 6.654928472452569e-06,
+ "loss": 1.69362473487854,
+ "step": 3527
+ },
+ {
+ "epoch": 49.0,
+ "grad_norm": 0.03771952539682388,
+ "learning_rate": 6.637353593574088e-06,
+ "loss": 1.2779052257537842,
+ "step": 3528
+ },
+ {
+ "epoch": 49.0,
+ "eval_loss": 0.6654864549636841,
+ "eval_runtime": 39.7556,
+ "eval_samples_per_second": 61.425,
+ "eval_steps_per_second": 0.503,
+ "step": 3528
+ },
+ {
+ "epoch": 49.01393728222997,
+ "grad_norm": 0.04211569204926491,
+ "learning_rate": 6.620017488726867e-06,
+ "loss": 1.714545726776123,
+ "step": 3529
+ },
+ {
+ "epoch": 49.02787456445993,
+ "grad_norm": 0.042151786386966705,
+ "learning_rate": 6.602920171878265e-06,
+ "loss": 1.6978142261505127,
+ "step": 3530
+ },
+ {
+ "epoch": 49.041811846689896,
+ "grad_norm": 0.041482213884592056,
+ "learning_rate": 6.5860616568033465e-06,
+ "loss": 1.7052040100097656,
+ "step": 3531
+ },
+ {
+ "epoch": 49.055749128919864,
+ "grad_norm": 0.04149334877729416,
+ "learning_rate": 6.569441957084671e-06,
+ "loss": 1.696521520614624,
+ "step": 3532
+ },
+ {
+ "epoch": 49.069686411149824,
+ "grad_norm": 0.041752997785806656,
+ "learning_rate": 6.5530610861124e-06,
+ "loss": 1.7071928977966309,
+ "step": 3533
+ },
+ {
+ "epoch": 49.08362369337979,
+ "grad_norm": 0.041538506746292114,
+ "learning_rate": 6.536919057084357e-06,
+ "loss": 1.7063583135604858,
+ "step": 3534
+ },
+ {
+ "epoch": 49.09756097560975,
+ "grad_norm": 0.041922640055418015,
+ "learning_rate": 6.521015883005866e-06,
+ "loss": 1.700394630432129,
+ "step": 3535
+ },
+ {
+ "epoch": 49.11149825783972,
+ "grad_norm": 0.042587850242853165,
+ "learning_rate": 6.5053515766898195e-06,
+ "loss": 1.716831088066101,
+ "step": 3536
+ },
+ {
+ "epoch": 49.12543554006969,
+ "grad_norm": 0.04135837405920029,
+ "learning_rate": 6.489926150756674e-06,
+ "loss": 1.7171529531478882,
+ "step": 3537
+ },
+ {
+ "epoch": 49.13937282229965,
+ "grad_norm": 0.04248388111591339,
+ "learning_rate": 6.4747396176344176e-06,
+ "loss": 1.7040356397628784,
+ "step": 3538
+ },
+ {
+ "epoch": 49.153310104529616,
+ "grad_norm": 0.042766228318214417,
+ "learning_rate": 6.459791989558542e-06,
+ "loss": 1.7159183025360107,
+ "step": 3539
+ },
+ {
+ "epoch": 49.167247386759584,
+ "grad_norm": 0.04262727126479149,
+ "learning_rate": 6.445083278572134e-06,
+ "loss": 1.6878561973571777,
+ "step": 3540
+ },
+ {
+ "epoch": 49.181184668989545,
+ "grad_norm": 0.04201861470937729,
+ "learning_rate": 6.430613496525685e-06,
+ "loss": 1.6924924850463867,
+ "step": 3541
+ },
+ {
+ "epoch": 49.19512195121951,
+ "grad_norm": 0.04200955107808113,
+ "learning_rate": 6.416382655077248e-06,
+ "loss": 1.711904764175415,
+ "step": 3542
+ },
+ {
+ "epoch": 49.20905923344948,
+ "grad_norm": 0.041726984083652496,
+ "learning_rate": 6.402390765692381e-06,
+ "loss": 1.7180508375167847,
+ "step": 3543
+ },
+ {
+ "epoch": 49.22299651567944,
+ "grad_norm": 0.042579203844070435,
+ "learning_rate": 6.388637839644073e-06,
+ "loss": 1.709894061088562,
+ "step": 3544
+ },
+ {
+ "epoch": 49.23693379790941,
+ "grad_norm": 0.041996657848358154,
+ "learning_rate": 6.375123888012812e-06,
+ "loss": 1.6958980560302734,
+ "step": 3545
+ },
+ {
+ "epoch": 49.250871080139376,
+ "grad_norm": 0.04224150627851486,
+ "learning_rate": 6.361848921686523e-06,
+ "loss": 1.704306721687317,
+ "step": 3546
+ },
+ {
+ "epoch": 49.26480836236934,
+ "grad_norm": 0.043058037757873535,
+ "learning_rate": 6.348812951360662e-06,
+ "loss": 1.704942226409912,
+ "step": 3547
+ },
+ {
+ "epoch": 49.278745644599304,
+ "grad_norm": 0.041635386645793915,
+ "learning_rate": 6.33601598753802e-06,
+ "loss": 1.697484016418457,
+ "step": 3548
+ },
+ {
+ "epoch": 49.292682926829265,
+ "grad_norm": 0.04284457117319107,
+ "learning_rate": 6.323458040528923e-06,
+ "loss": 1.6996619701385498,
+ "step": 3549
+ },
+ {
+ "epoch": 49.30662020905923,
+ "grad_norm": 0.04272514209151268,
+ "learning_rate": 6.311139120451062e-06,
+ "loss": 1.696010947227478,
+ "step": 3550
+ },
+ {
+ "epoch": 49.3205574912892,
+ "grad_norm": 0.043348439037799835,
+ "learning_rate": 6.299059237229567e-06,
+ "loss": 1.698221206665039,
+ "step": 3551
+ },
+ {
+ "epoch": 49.33449477351916,
+ "grad_norm": 0.04285863786935806,
+ "learning_rate": 6.287218400596961e-06,
+ "loss": 1.6938414573669434,
+ "step": 3552
+ },
+ {
+ "epoch": 49.34843205574913,
+ "grad_norm": 0.043095558881759644,
+ "learning_rate": 6.27561662009321e-06,
+ "loss": 1.7046318054199219,
+ "step": 3553
+ },
+ {
+ "epoch": 49.362369337979096,
+ "grad_norm": 0.04357895255088806,
+ "learning_rate": 6.264253905065675e-06,
+ "loss": 1.702848196029663,
+ "step": 3554
+ },
+ {
+ "epoch": 49.37630662020906,
+ "grad_norm": 0.04273822531104088,
+ "learning_rate": 6.2531302646690866e-06,
+ "loss": 1.6944499015808105,
+ "step": 3555
+ },
+ {
+ "epoch": 49.390243902439025,
+ "grad_norm": 0.04438753053545952,
+ "learning_rate": 6.242245707865545e-06,
+ "loss": 1.7012345790863037,
+ "step": 3556
+ },
+ {
+ "epoch": 49.40418118466899,
+ "grad_norm": 0.04371257126331329,
+ "learning_rate": 6.23160024342455e-06,
+ "loss": 1.714313268661499,
+ "step": 3557
+ },
+ {
+ "epoch": 49.41811846689895,
+ "grad_norm": 0.04290551319718361,
+ "learning_rate": 6.221193879922969e-06,
+ "loss": 1.6886998414993286,
+ "step": 3558
+ },
+ {
+ "epoch": 49.43205574912892,
+ "grad_norm": 0.04219963029026985,
+ "learning_rate": 6.211026625745005e-06,
+ "loss": 1.7093579769134521,
+ "step": 3559
+ },
+ {
+ "epoch": 49.44599303135889,
+ "grad_norm": 0.042217597365379333,
+ "learning_rate": 6.201098489082232e-06,
+ "loss": 1.7121820449829102,
+ "step": 3560
+ },
+ {
+ "epoch": 49.45993031358885,
+ "grad_norm": 0.042072031646966934,
+ "learning_rate": 6.191409477933554e-06,
+ "loss": 1.7026573419570923,
+ "step": 3561
+ },
+ {
+ "epoch": 49.47386759581882,
+ "grad_norm": 0.04333050921559334,
+ "learning_rate": 6.18195960010528e-06,
+ "loss": 1.70265793800354,
+ "step": 3562
+ },
+ {
+ "epoch": 49.48780487804878,
+ "grad_norm": 0.04403664916753769,
+ "learning_rate": 6.172748863210954e-06,
+ "loss": 1.6900498867034912,
+ "step": 3563
+ },
+ {
+ "epoch": 49.501742160278745,
+ "grad_norm": 0.04316190630197525,
+ "learning_rate": 6.163777274671552e-06,
+ "loss": 1.7043530941009521,
+ "step": 3564
+ },
+ {
+ "epoch": 49.51567944250871,
+ "grad_norm": 0.04398268088698387,
+ "learning_rate": 6.155044841715289e-06,
+ "loss": 1.6934618949890137,
+ "step": 3565
+ },
+ {
+ "epoch": 49.52961672473867,
+ "grad_norm": 0.043051011860370636,
+ "learning_rate": 6.146551571377715e-06,
+ "loss": 1.7039532661437988,
+ "step": 3566
+ },
+ {
+ "epoch": 49.54355400696864,
+ "grad_norm": 0.042991865426301956,
+ "learning_rate": 6.1382974705017456e-06,
+ "loss": 1.7095340490341187,
+ "step": 3567
+ },
+ {
+ "epoch": 49.55749128919861,
+ "grad_norm": 0.042638204991817474,
+ "learning_rate": 6.130282545737535e-06,
+ "loss": 1.7022864818572998,
+ "step": 3568
+ },
+ {
+ "epoch": 49.57142857142857,
+ "grad_norm": 0.043293297290802,
+ "learning_rate": 6.1225068035425725e-06,
+ "loss": 1.6971559524536133,
+ "step": 3569
+ },
+ {
+ "epoch": 49.58536585365854,
+ "grad_norm": 0.0437372624874115,
+ "learning_rate": 6.114970250181616e-06,
+ "loss": 1.6930270195007324,
+ "step": 3570
+ },
+ {
+ "epoch": 49.599303135888505,
+ "grad_norm": 0.043553970754146576,
+ "learning_rate": 6.107672891726724e-06,
+ "loss": 1.698406457901001,
+ "step": 3571
+ },
+ {
+ "epoch": 49.613240418118465,
+ "grad_norm": 0.04457312449812889,
+ "learning_rate": 6.1006147340572916e-06,
+ "loss": 1.7129933834075928,
+ "step": 3572
+ },
+ {
+ "epoch": 49.62717770034843,
+ "grad_norm": 0.043254151940345764,
+ "learning_rate": 6.093795782859917e-06,
+ "loss": 1.6967576742172241,
+ "step": 3573
+ },
+ {
+ "epoch": 49.641114982578394,
+ "grad_norm": 0.04400014877319336,
+ "learning_rate": 6.087216043628502e-06,
+ "loss": 1.6997997760772705,
+ "step": 3574
+ },
+ {
+ "epoch": 49.65505226480836,
+ "grad_norm": 0.04350065812468529,
+ "learning_rate": 6.0808755216642146e-06,
+ "loss": 1.707118272781372,
+ "step": 3575
+ },
+ {
+ "epoch": 49.66898954703833,
+ "grad_norm": 0.041772205382585526,
+ "learning_rate": 6.07477422207556e-06,
+ "loss": 1.7098398208618164,
+ "step": 3576
+ },
+ {
+ "epoch": 49.68292682926829,
+ "grad_norm": 0.04418648034334183,
+ "learning_rate": 6.06891214977818e-06,
+ "loss": 1.6992731094360352,
+ "step": 3577
+ },
+ {
+ "epoch": 49.69686411149826,
+ "grad_norm": 0.044203147292137146,
+ "learning_rate": 6.063289309495051e-06,
+ "loss": 1.7085175514221191,
+ "step": 3578
+ },
+ {
+ "epoch": 49.710801393728225,
+ "grad_norm": 0.04344818368554115,
+ "learning_rate": 6.057905705756421e-06,
+ "loss": 1.7081371545791626,
+ "step": 3579
+ },
+ {
+ "epoch": 49.724738675958186,
+ "grad_norm": 0.0433829091489315,
+ "learning_rate": 6.052761342899737e-06,
+ "loss": 1.7203867435455322,
+ "step": 3580
+ },
+ {
+ "epoch": 49.73867595818815,
+ "grad_norm": 0.04386838525533676,
+ "learning_rate": 6.0478562250697185e-06,
+ "loss": 1.7061984539031982,
+ "step": 3581
+ },
+ {
+ "epoch": 49.75261324041812,
+ "grad_norm": 0.04472321271896362,
+ "learning_rate": 6.043190356218355e-06,
+ "loss": 1.6956627368927002,
+ "step": 3582
+ },
+ {
+ "epoch": 49.76655052264808,
+ "grad_norm": 0.04411245882511139,
+ "learning_rate": 6.038763740104835e-06,
+ "loss": 1.699374794960022,
+ "step": 3583
+ },
+ {
+ "epoch": 49.78048780487805,
+ "grad_norm": 0.043312106281518936,
+ "learning_rate": 6.034576380295586e-06,
+ "loss": 1.6951394081115723,
+ "step": 3584
+ },
+ {
+ "epoch": 49.79442508710802,
+ "grad_norm": 0.044436875730752945,
+ "learning_rate": 6.030628280164338e-06,
+ "loss": 1.7166144847869873,
+ "step": 3585
+ },
+ {
+ "epoch": 49.80836236933798,
+ "grad_norm": 0.0460556223988533,
+ "learning_rate": 6.026919442891958e-06,
+ "loss": 1.710799217224121,
+ "step": 3586
+ },
+ {
+ "epoch": 49.822299651567945,
+ "grad_norm": 0.044627491384744644,
+ "learning_rate": 6.023449871466615e-06,
+ "loss": 1.687266230583191,
+ "step": 3587
+ },
+ {
+ "epoch": 49.836236933797906,
+ "grad_norm": 0.04300019145011902,
+ "learning_rate": 6.020219568683678e-06,
+ "loss": 1.708527684211731,
+ "step": 3588
+ },
+ {
+ "epoch": 49.850174216027874,
+ "grad_norm": 0.04441177472472191,
+ "learning_rate": 6.0172285371456925e-06,
+ "loss": 1.7202147245407104,
+ "step": 3589
+ },
+ {
+ "epoch": 49.86411149825784,
+ "grad_norm": 0.04528361186385155,
+ "learning_rate": 6.014476779262568e-06,
+ "loss": 1.7055747509002686,
+ "step": 3590
+ },
+ {
+ "epoch": 49.8780487804878,
+ "grad_norm": 0.044465191662311554,
+ "learning_rate": 6.011964297251285e-06,
+ "loss": 1.70792818069458,
+ "step": 3591
+ },
+ {
+ "epoch": 49.89198606271777,
+ "grad_norm": 0.044204141944646835,
+ "learning_rate": 6.0096910931361275e-06,
+ "loss": 1.6989781856536865,
+ "step": 3592
+ },
+ {
+ "epoch": 49.90592334494774,
+ "grad_norm": 0.04640882834792137,
+ "learning_rate": 6.007657168748551e-06,
+ "loss": 1.6963343620300293,
+ "step": 3593
+ },
+ {
+ "epoch": 49.9198606271777,
+ "grad_norm": 0.04311218857765198,
+ "learning_rate": 6.005862525727277e-06,
+ "loss": 1.7103843688964844,
+ "step": 3594
+ },
+ {
+ "epoch": 49.933797909407666,
+ "grad_norm": 0.04450777545571327,
+ "learning_rate": 6.0043071655181986e-06,
+ "loss": 1.7035508155822754,
+ "step": 3595
+ },
+ {
+ "epoch": 49.94773519163763,
+ "grad_norm": 0.04449044167995453,
+ "learning_rate": 6.002991089374446e-06,
+ "loss": 1.706160545349121,
+ "step": 3596
+ },
+ {
+ "epoch": 49.961672473867594,
+ "grad_norm": 0.045151058584451675,
+ "learning_rate": 6.0019142983563875e-06,
+ "loss": 1.6991982460021973,
+ "step": 3597
+ },
+ {
+ "epoch": 49.97560975609756,
+ "grad_norm": 0.043428149074316025,
+ "learning_rate": 6.001076793331555e-06,
+ "loss": 1.699796199798584,
+ "step": 3598
+ },
+ {
+ "epoch": 49.98954703832753,
+ "grad_norm": 0.044671036303043365,
+ "learning_rate": 6.000478574974689e-06,
+ "loss": 1.7011687755584717,
+ "step": 3599
+ },
+ {
+ "epoch": 50.0,
+ "grad_norm": 0.0375443771481514,
+ "learning_rate": 6.000119643767767e-06,
+ "loss": 1.285846471786499,
+ "step": 3600
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 3600,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 50,
+ "save_steps": 500,
+ "stateful_callbacks": {
+ "TrainerControl": {
+ "args": {
+ "should_epoch_stop": false,
+ "should_evaluate": true,
+ "should_log": false,
+ "should_save": false,
+ "should_training_stop": true
+ },
+ "attributes": {}
+ }
+ },
+ "total_flos": 1.5388280082137088e+18,
+ "train_batch_size": 64,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/base-ssl/checkpoint-3600/training_args.bin b/runs/base-ssl/checkpoint-3600/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..cbb50e43950730a04421678098579c835c9d518d
--- /dev/null
+++ b/runs/base-ssl/checkpoint-3600/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7572b8029663dc4d810f9d514c80dc9b976de220cbe72e5abd832ec6ec2ef18b
+size 5265
diff --git a/runs/base-ssl/checkpoint-72/chat_template.jinja b/runs/base-ssl/checkpoint-72/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/base-ssl/checkpoint-72/chat_template.jinja
@@ -0,0 +1,85 @@
+{%- if tools %}
+ {{- '<|im_start|>system\n' }}
+ {%- if messages[0].role == 'system' %}
+ {{- messages[0].content + '\n\n' }}
+ {%- endif %}
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }}
+ {%- for tool in tools %}
+ {{- "\n" }}
+ {{- tool | tojson }}
+ {%- endfor %}
+ {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }}
+{%- else %}
+ {%- if messages[0].role == 'system' %}
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
+ {%- endif %}
+{%- endif %}
+{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
+{%- for message in messages[::-1] %}
+ {%- set index = (messages|length - 1) - loop.index0 %}
+ {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %}
+ {%- set ns.multi_step_tool = false %}
+ {%- set ns.last_query_index = index %}
+ {%- endif %}
+{%- endfor %}
+{%- for message in messages %}
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
+ {%- elif message.role == "assistant" %}
+ {%- set content = message.content %}
+ {%- set reasoning_content = '' %}
+ {%- if message.reasoning_content is defined and message.reasoning_content is not none %}
+ {%- set reasoning_content = message.reasoning_content %}
+ {%- else %}
+ {%- if '' in message.content %}
+ {%- set content = message.content.split('')[-1].lstrip('\n') %}
+ {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %}
+ {%- endif %}
+ {%- endif %}
+ {%- if loop.index0 > ns.last_query_index %}
+ {%- if loop.last or (not loop.last and reasoning_content) %}
+ {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- if message.tool_calls %}
+ {%- for tool_call in message.tool_calls %}
+ {%- if (loop.first and content) or (not loop.first) %}
+ {{- '\n' }}
+ {%- endif %}
+ {%- if tool_call.function %}
+ {%- set tool_call = tool_call.function %}
+ {%- endif %}
+ {{- '\n{"name": "' }}
+ {{- tool_call.name }}
+ {{- '", "arguments": ' }}
+ {%- if tool_call.arguments is string %}
+ {{- tool_call.arguments }}
+ {%- else %}
+ {{- tool_call.arguments | tojson }}
+ {%- endif %}
+ {{- '}\n' }}
+ {%- endfor %}
+ {%- endif %}
+ {{- '<|im_end|>\n' }}
+ {%- elif message.role == "tool" %}
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
+ {{- '<|im_start|>user' }}
+ {%- endif %}
+ {{- '\n\n' }}
+ {{- message.content }}
+ {{- '\n' }}
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
+ {{- '<|im_end|>\n' }}
+ {%- endif %}
+ {%- endif %}
+{%- endfor %}
+{%- if add_generation_prompt %}
+ {{- '<|im_start|>assistant\n' }}
+ {%- if enable_thinking is defined and enable_thinking is false %}
+ {{- '\n\n\n\n' }}
+ {%- endif %}
+{%- endif %}
\ No newline at end of file
diff --git a/runs/base-ssl/checkpoint-72/config.json b/runs/base-ssl/checkpoint-72/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/base-ssl/checkpoint-72/config.json
@@ -0,0 +1,32 @@
+{
+ "architectures": [
+ "LlamaForCausalLM"
+ ],
+ "attention_bias": false,
+ "attention_dropout": 0.0,
+ "bos_token_id": null,
+ "dtype": "float32",
+ "eos_token_id": 151645,
+ "head_dim": 128,
+ "hidden_act": "silu",
+ "hidden_size": 512,
+ "initializer_range": 0.02,
+ "intermediate_size": 1536,
+ "max_position_embeddings": 2048,
+ "mlp_bias": false,
+ "model_type": "llama",
+ "num_attention_heads": 4,
+ "num_hidden_layers": 20,
+ "num_key_value_heads": 4,
+ "pad_token_id": 151645,
+ "pretraining_tp": 1,
+ "rms_norm_eps": 1e-06,
+ "rope_parameters": {
+ "rope_theta": 10000.0,
+ "rope_type": "default"
+ },
+ "tie_word_embeddings": true,
+ "transformers_version": "5.5.0",
+ "use_cache": false,
+ "vocab_size": 151671
+}
diff --git a/runs/base-ssl/checkpoint-72/generation_config.json b/runs/base-ssl/checkpoint-72/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/base-ssl/checkpoint-72/generation_config.json
@@ -0,0 +1,11 @@
+{
+ "_from_model_config": true,
+ "eos_token_id": [
+ 151645
+ ],
+ "output_attentions": false,
+ "output_hidden_states": false,
+ "pad_token_id": 151645,
+ "transformers_version": "5.5.0",
+ "use_cache": true
+}
diff --git a/runs/base-ssl/checkpoint-72/model.safetensors b/runs/base-ssl/checkpoint-72/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..9678dbfcb128929abc173e796cdda8f96ae9f084
--- /dev/null
+++ b/runs/base-ssl/checkpoint-72/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9a603a8fbedc3dc94d133f04d405050bd94ac7e2db3de11e81c3c8d0b5f826e1
+size 583356232
diff --git a/runs/base-ssl/checkpoint-72/optimizer.pt b/runs/base-ssl/checkpoint-72/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..307d6da96b938fa0b119696b7f4b42855693c44d
--- /dev/null
+++ b/runs/base-ssl/checkpoint-72/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:68a447ea814bc9e92b5a527e8b5fa2fe098b20ea0718607b3145611be13c1200
+size 1166825803
diff --git a/runs/base-ssl/checkpoint-72/rng_state_0.pth b/runs/base-ssl/checkpoint-72/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..3fc68e18ddaf65dfbdec55893d9a925ff5e43a18
--- /dev/null
+++ b/runs/base-ssl/checkpoint-72/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:4dd7671ce88d469c49c0530724ac76b2306574002d1ecd1ca9294e41621fd96a
+size 14917
diff --git a/runs/base-ssl/checkpoint-72/rng_state_1.pth b/runs/base-ssl/checkpoint-72/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..79d9de29ae34b3b0c10ea8ba0348aeafb0c12226
--- /dev/null
+++ b/runs/base-ssl/checkpoint-72/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:3246ef1170ccca541a03b89ad6f20e01c51eb6834a2c2211c78c71c70f896879
+size 14917
diff --git a/runs/base-ssl/checkpoint-72/scheduler.pt b/runs/base-ssl/checkpoint-72/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..b3af158e6a18004b03a150114c32a235df6d16a0
--- /dev/null
+++ b/runs/base-ssl/checkpoint-72/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9ad58a4676ce2fb1ab2dc9d3047a7897e6cdf70ba2536ad730ac906c3b3dd935
+size 1465
diff --git a/runs/base-ssl/checkpoint-72/tokenizer.json b/runs/base-ssl/checkpoint-72/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/base-ssl/checkpoint-72/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:59b6776030505d5b441d0727cce137047df748ab15db6ba3a1bac93c123742fb
+size 11424079
diff --git a/runs/base-ssl/checkpoint-72/tokenizer_config.json b/runs/base-ssl/checkpoint-72/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/base-ssl/checkpoint-72/tokenizer_config.json
@@ -0,0 +1,18 @@
+{
+ "add_prefix_space": false,
+ "backend": "tokenizers",
+ "bos_token": null,
+ "clean_up_tokenization_spaces": false,
+ "eos_token": "<|im_end|>",
+ "errors": "replace",
+ "extra_special_tokens": [
+ "<|l2r_pred|>",
+ "<|r2l_pred|>"
+ ],
+ "is_local": false,
+ "model_max_length": 131072,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/base-ssl/checkpoint-72/trainer_state.json b/runs/base-ssl/checkpoint-72/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..9de3c0d3df5067e90deb26bdfcc60d5ab5a40d30
--- /dev/null
+++ b/runs/base-ssl/checkpoint-72/trainer_state.json
@@ -0,0 +1,538 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 1.0,
+ "eval_steps": 500,
+ "global_step": 72,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013937282229965157,
+ "grad_norm": 0.2712002694606781,
+ "learning_rate": 0.0,
+ "loss": 4.000947952270508,
+ "step": 1
+ },
+ {
+ "epoch": 0.027874564459930314,
+ "grad_norm": 0.2709888219833374,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 4.000800132751465,
+ "step": 2
+ },
+ {
+ "epoch": 0.041811846689895474,
+ "grad_norm": 0.2721220850944519,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 3.982931613922119,
+ "step": 3
+ },
+ {
+ "epoch": 0.05574912891986063,
+ "grad_norm": 0.24822379648685455,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 3.948713779449463,
+ "step": 4
+ },
+ {
+ "epoch": 0.06968641114982578,
+ "grad_norm": 0.2103811800479889,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 3.908690929412842,
+ "step": 5
+ },
+ {
+ "epoch": 0.08362369337979095,
+ "grad_norm": 0.18375654518604279,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 3.8660929203033447,
+ "step": 6
+ },
+ {
+ "epoch": 0.0975609756097561,
+ "grad_norm": 0.1471690535545349,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 3.82308030128479,
+ "step": 7
+ },
+ {
+ "epoch": 0.11149825783972125,
+ "grad_norm": 0.11132320016622543,
+ "learning_rate": 4.2e-05,
+ "loss": 3.790834426879883,
+ "step": 8
+ },
+ {
+ "epoch": 0.1254355400696864,
+ "grad_norm": 0.08796700090169907,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 3.7589545249938965,
+ "step": 9
+ },
+ {
+ "epoch": 0.13937282229965156,
+ "grad_norm": 0.07089080661535263,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 3.7346723079681396,
+ "step": 10
+ },
+ {
+ "epoch": 0.15331010452961671,
+ "grad_norm": 0.056723613291978836,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 3.7159838676452637,
+ "step": 11
+ },
+ {
+ "epoch": 0.1672473867595819,
+ "grad_norm": 0.04544799029827118,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 3.701421022415161,
+ "step": 12
+ },
+ {
+ "epoch": 0.18118466898954705,
+ "grad_norm": 0.03551485016942024,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 3.691774845123291,
+ "step": 13
+ },
+ {
+ "epoch": 0.1951219512195122,
+ "grad_norm": 0.028209710493683815,
+ "learning_rate": 7.8e-05,
+ "loss": 3.6860086917877197,
+ "step": 14
+ },
+ {
+ "epoch": 0.20905923344947736,
+ "grad_norm": 0.024290181696414948,
+ "learning_rate": 8.4e-05,
+ "loss": 3.6806883811950684,
+ "step": 15
+ },
+ {
+ "epoch": 0.2229965156794425,
+ "grad_norm": 0.022015230730175972,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 3.677751064300537,
+ "step": 16
+ },
+ {
+ "epoch": 0.23693379790940766,
+ "grad_norm": 0.01960836350917816,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 3.6738266944885254,
+ "step": 17
+ },
+ {
+ "epoch": 0.2508710801393728,
+ "grad_norm": 0.017675744369626045,
+ "learning_rate": 0.000102,
+ "loss": 3.6739063262939453,
+ "step": 18
+ },
+ {
+ "epoch": 0.26480836236933797,
+ "grad_norm": 0.01539881993085146,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 3.671247720718384,
+ "step": 19
+ },
+ {
+ "epoch": 0.2787456445993031,
+ "grad_norm": 0.013906505890190601,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 3.66833233833313,
+ "step": 20
+ },
+ {
+ "epoch": 0.2926829268292683,
+ "grad_norm": 0.01149708591401577,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 3.6706337928771973,
+ "step": 21
+ },
+ {
+ "epoch": 0.30662020905923343,
+ "grad_norm": 0.010512279346585274,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 3.667168140411377,
+ "step": 22
+ },
+ {
+ "epoch": 0.3205574912891986,
+ "grad_norm": 0.00897525716573,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 3.6630516052246094,
+ "step": 23
+ },
+ {
+ "epoch": 0.3344947735191638,
+ "grad_norm": 0.008081364445388317,
+ "learning_rate": 0.000138,
+ "loss": 3.6629021167755127,
+ "step": 24
+ },
+ {
+ "epoch": 0.34843205574912894,
+ "grad_norm": 0.0076500303111970425,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 3.66168212890625,
+ "step": 25
+ },
+ {
+ "epoch": 0.3623693379790941,
+ "grad_norm": 0.007083008531481028,
+ "learning_rate": 0.00015,
+ "loss": 3.6564559936523438,
+ "step": 26
+ },
+ {
+ "epoch": 0.37630662020905925,
+ "grad_norm": 0.006654089782387018,
+ "learning_rate": 0.000156,
+ "loss": 3.6590094566345215,
+ "step": 27
+ },
+ {
+ "epoch": 0.3902439024390244,
+ "grad_norm": 0.0073669785633683205,
+ "learning_rate": 0.000162,
+ "loss": 3.651914119720459,
+ "step": 28
+ },
+ {
+ "epoch": 0.40418118466898956,
+ "grad_norm": 0.007247959729284048,
+ "learning_rate": 0.000168,
+ "loss": 3.6557557582855225,
+ "step": 29
+ },
+ {
+ "epoch": 0.4181184668989547,
+ "grad_norm": 0.007229349110275507,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 3.651794910430908,
+ "step": 30
+ },
+ {
+ "epoch": 0.43205574912891986,
+ "grad_norm": 0.008839861489832401,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 3.653074264526367,
+ "step": 31
+ },
+ {
+ "epoch": 0.445993031358885,
+ "grad_norm": 0.009280834347009659,
+ "learning_rate": 0.000186,
+ "loss": 3.6503708362579346,
+ "step": 32
+ },
+ {
+ "epoch": 0.45993031358885017,
+ "grad_norm": 0.008585072122514248,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 3.650331497192383,
+ "step": 33
+ },
+ {
+ "epoch": 0.4738675958188153,
+ "grad_norm": 0.01164434663951397,
+ "learning_rate": 0.000198,
+ "loss": 3.6462929248809814,
+ "step": 34
+ },
+ {
+ "epoch": 0.4878048780487805,
+ "grad_norm": 0.012668018229305744,
+ "learning_rate": 0.000204,
+ "loss": 3.6516757011413574,
+ "step": 35
+ },
+ {
+ "epoch": 0.5017421602787456,
+ "grad_norm": 0.01610603742301464,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 3.647498607635498,
+ "step": 36
+ },
+ {
+ "epoch": 0.5156794425087108,
+ "grad_norm": 0.018993742763996124,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 3.642869472503662,
+ "step": 37
+ },
+ {
+ "epoch": 0.5296167247386759,
+ "grad_norm": 0.020697375759482384,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 3.639193058013916,
+ "step": 38
+ },
+ {
+ "epoch": 0.5435540069686411,
+ "grad_norm": 0.021636122837662697,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 3.630560874938965,
+ "step": 39
+ },
+ {
+ "epoch": 0.5574912891986062,
+ "grad_norm": 0.01893668621778488,
+ "learning_rate": 0.000234,
+ "loss": 3.6265769004821777,
+ "step": 40
+ },
+ {
+ "epoch": 0.5714285714285714,
+ "grad_norm": 0.025133362039923668,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 3.6185407638549805,
+ "step": 41
+ },
+ {
+ "epoch": 0.5853658536585366,
+ "grad_norm": 0.016397792845964432,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 3.609161853790283,
+ "step": 42
+ },
+ {
+ "epoch": 0.5993031358885017,
+ "grad_norm": 0.02059962786734104,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 3.5987398624420166,
+ "step": 43
+ },
+ {
+ "epoch": 0.6132404181184669,
+ "grad_norm": 0.026733839884400368,
+ "learning_rate": 0.000258,
+ "loss": 3.601898193359375,
+ "step": 44
+ },
+ {
+ "epoch": 0.627177700348432,
+ "grad_norm": 0.04592137038707733,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 3.597785472869873,
+ "step": 45
+ },
+ {
+ "epoch": 0.6411149825783972,
+ "grad_norm": 0.14618715643882751,
+ "learning_rate": 0.00027,
+ "loss": 3.597787857055664,
+ "step": 46
+ },
+ {
+ "epoch": 0.6550522648083623,
+ "grad_norm": 0.1228327602148056,
+ "learning_rate": 0.000276,
+ "loss": 3.598362922668457,
+ "step": 47
+ },
+ {
+ "epoch": 0.6689895470383276,
+ "grad_norm": 0.0651344507932663,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 3.5868940353393555,
+ "step": 48
+ },
+ {
+ "epoch": 0.6829268292682927,
+ "grad_norm": 0.030712513253092766,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 3.5800981521606445,
+ "step": 49
+ },
+ {
+ "epoch": 0.6968641114982579,
+ "grad_norm": 0.07069414854049683,
+ "learning_rate": 0.000294,
+ "loss": 3.590576171875,
+ "step": 50
+ },
+ {
+ "epoch": 0.710801393728223,
+ "grad_norm": 0.026333393529057503,
+ "learning_rate": 0.0003,
+ "loss": 3.5740621089935303,
+ "step": 51
+ },
+ {
+ "epoch": 0.7247386759581882,
+ "grad_norm": 0.050806671380996704,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 3.577582836151123,
+ "step": 52
+ },
+ {
+ "epoch": 0.7386759581881533,
+ "grad_norm": 0.04820532724261284,
+ "learning_rate": 0.000312,
+ "loss": 3.5686888694763184,
+ "step": 53
+ },
+ {
+ "epoch": 0.7526132404181185,
+ "grad_norm": 0.03834737837314606,
+ "learning_rate": 0.000318,
+ "loss": 3.571916341781616,
+ "step": 54
+ },
+ {
+ "epoch": 0.7665505226480837,
+ "grad_norm": 0.0663016214966774,
+ "learning_rate": 0.000324,
+ "loss": 3.563366413116455,
+ "step": 55
+ },
+ {
+ "epoch": 0.7804878048780488,
+ "grad_norm": 0.03111632913351059,
+ "learning_rate": 0.00033,
+ "loss": 3.555037021636963,
+ "step": 56
+ },
+ {
+ "epoch": 0.794425087108014,
+ "grad_norm": 0.06139425188302994,
+ "learning_rate": 0.000336,
+ "loss": 3.555377244949341,
+ "step": 57
+ },
+ {
+ "epoch": 0.8083623693379791,
+ "grad_norm": 0.02561746910214424,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 3.5368266105651855,
+ "step": 58
+ },
+ {
+ "epoch": 0.8222996515679443,
+ "grad_norm": 0.06502962112426758,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 3.5318264961242676,
+ "step": 59
+ },
+ {
+ "epoch": 0.8362369337979094,
+ "grad_norm": 0.06968390196561813,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 3.5210607051849365,
+ "step": 60
+ },
+ {
+ "epoch": 0.8501742160278746,
+ "grad_norm": 0.02670745924115181,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 3.5037078857421875,
+ "step": 61
+ },
+ {
+ "epoch": 0.8641114982578397,
+ "grad_norm": 0.07075569778680801,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 3.506938934326172,
+ "step": 62
+ },
+ {
+ "epoch": 0.8780487804878049,
+ "grad_norm": 0.061632659286260605,
+ "learning_rate": 0.000372,
+ "loss": 3.4960665702819824,
+ "step": 63
+ },
+ {
+ "epoch": 0.89198606271777,
+ "grad_norm": 0.10994791984558105,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 3.4926395416259766,
+ "step": 64
+ },
+ {
+ "epoch": 0.9059233449477352,
+ "grad_norm": 0.21027322113513947,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 3.502258777618408,
+ "step": 65
+ },
+ {
+ "epoch": 0.9198606271777003,
+ "grad_norm": 0.1937343329191208,
+ "learning_rate": 0.00039,
+ "loss": 3.5118448734283447,
+ "step": 66
+ },
+ {
+ "epoch": 0.9337979094076655,
+ "grad_norm": 0.07891395688056946,
+ "learning_rate": 0.000396,
+ "loss": 3.487575054168701,
+ "step": 67
+ },
+ {
+ "epoch": 0.9477351916376306,
+ "grad_norm": 0.12915678322315216,
+ "learning_rate": 0.000402,
+ "loss": 3.4890120029449463,
+ "step": 68
+ },
+ {
+ "epoch": 0.9616724738675958,
+ "grad_norm": 0.08530207723379135,
+ "learning_rate": 0.000408,
+ "loss": 3.4755735397338867,
+ "step": 69
+ },
+ {
+ "epoch": 0.975609756097561,
+ "grad_norm": 0.09704860299825668,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 3.4669318199157715,
+ "step": 70
+ },
+ {
+ "epoch": 0.9895470383275261,
+ "grad_norm": 0.07270640879869461,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 3.460634469985962,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.03984597697854042,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 2.590245485305786,
+ "step": 72
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 3600,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 50,
+ "save_steps": 500,
+ "stateful_callbacks": {
+ "TrainerControl": {
+ "args": {
+ "should_epoch_stop": false,
+ "should_evaluate": true,
+ "should_log": false,
+ "should_save": false,
+ "should_training_stop": false
+ },
+ "attributes": {}
+ }
+ },
+ "total_flos": 3.0776560164274176e+16,
+ "train_batch_size": 64,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/base-ssl/checkpoint-72/training_args.bin b/runs/base-ssl/checkpoint-72/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..cbb50e43950730a04421678098579c835c9d518d
--- /dev/null
+++ b/runs/base-ssl/checkpoint-72/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7572b8029663dc4d810f9d514c80dc9b976de220cbe72e5abd832ec6ec2ef18b
+size 5265
diff --git a/runs/base-ssl/checkpoint-720/chat_template.jinja b/runs/base-ssl/checkpoint-720/chat_template.jinja
new file mode 100644
index 0000000000000000000000000000000000000000..699ff8df401fe4788525e9c1f9b86a99eadd6230
--- /dev/null
+++ b/runs/base-ssl/checkpoint-720/chat_template.jinja
@@ -0,0 +1,85 @@
+{%- if tools %}
+ {{- '<|im_start|>system\n' }}
+ {%- if messages[0].role == 'system' %}
+ {{- messages[0].content + '\n\n' }}
+ {%- endif %}
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within XML tags:\n" }}
+ {%- for tool in tools %}
+ {{- "\n" }}
+ {{- tool | tojson }}
+ {%- endfor %}
+ {{- "\n\n\nFor each function call, return a json object with function name and arguments within XML tags:\n\n{\"name\": , \"arguments\": }\n<|im_end|>\n" }}
+{%- else %}
+ {%- if messages[0].role == 'system' %}
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
+ {%- endif %}
+{%- endif %}
+{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
+{%- for message in messages[::-1] %}
+ {%- set index = (messages|length - 1) - loop.index0 %}
+ {%- if ns.multi_step_tool and message.role == "user" and not(message.content.startswith('') and message.content.endswith('')) %}
+ {%- set ns.multi_step_tool = false %}
+ {%- set ns.last_query_index = index %}
+ {%- endif %}
+{%- endfor %}
+{%- for message in messages %}
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
+ {%- elif message.role == "assistant" %}
+ {%- set content = message.content %}
+ {%- set reasoning_content = '' %}
+ {%- if message.reasoning_content is defined and message.reasoning_content is not none %}
+ {%- set reasoning_content = message.reasoning_content %}
+ {%- else %}
+ {%- if '' in message.content %}
+ {%- set content = message.content.split('')[-1].lstrip('\n') %}
+ {%- set reasoning_content = message.content.split('')[0].rstrip('\n').split('')[-1].lstrip('\n') %}
+ {%- endif %}
+ {%- endif %}
+ {%- if loop.index0 > ns.last_query_index %}
+ {%- if loop.last or (not loop.last and reasoning_content) %}
+ {{- '<|im_start|>' + message.role + '\n\n' + reasoning_content.strip('\n') + '\n\n\n' + content.lstrip('\n') }}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- else %}
+ {{- '<|im_start|>' + message.role + '\n' + content }}
+ {%- endif %}
+ {%- if message.tool_calls %}
+ {%- for tool_call in message.tool_calls %}
+ {%- if (loop.first and content) or (not loop.first) %}
+ {{- '\n' }}
+ {%- endif %}
+ {%- if tool_call.function %}
+ {%- set tool_call = tool_call.function %}
+ {%- endif %}
+ {{- '\n{"name": "' }}
+ {{- tool_call.name }}
+ {{- '", "arguments": ' }}
+ {%- if tool_call.arguments is string %}
+ {{- tool_call.arguments }}
+ {%- else %}
+ {{- tool_call.arguments | tojson }}
+ {%- endif %}
+ {{- '}\n' }}
+ {%- endfor %}
+ {%- endif %}
+ {{- '<|im_end|>\n' }}
+ {%- elif message.role == "tool" %}
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
+ {{- '<|im_start|>user' }}
+ {%- endif %}
+ {{- '\n\n' }}
+ {{- message.content }}
+ {{- '\n' }}
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
+ {{- '<|im_end|>\n' }}
+ {%- endif %}
+ {%- endif %}
+{%- endfor %}
+{%- if add_generation_prompt %}
+ {{- '<|im_start|>assistant\n' }}
+ {%- if enable_thinking is defined and enable_thinking is false %}
+ {{- '\n\n\n\n' }}
+ {%- endif %}
+{%- endif %}
\ No newline at end of file
diff --git a/runs/base-ssl/checkpoint-720/config.json b/runs/base-ssl/checkpoint-720/config.json
new file mode 100644
index 0000000000000000000000000000000000000000..44f7b99e220689bde520b89c11fdd83d1b5348de
--- /dev/null
+++ b/runs/base-ssl/checkpoint-720/config.json
@@ -0,0 +1,32 @@
+{
+ "architectures": [
+ "LlamaForCausalLM"
+ ],
+ "attention_bias": false,
+ "attention_dropout": 0.0,
+ "bos_token_id": null,
+ "dtype": "float32",
+ "eos_token_id": 151645,
+ "head_dim": 128,
+ "hidden_act": "silu",
+ "hidden_size": 512,
+ "initializer_range": 0.02,
+ "intermediate_size": 1536,
+ "max_position_embeddings": 2048,
+ "mlp_bias": false,
+ "model_type": "llama",
+ "num_attention_heads": 4,
+ "num_hidden_layers": 20,
+ "num_key_value_heads": 4,
+ "pad_token_id": 151645,
+ "pretraining_tp": 1,
+ "rms_norm_eps": 1e-06,
+ "rope_parameters": {
+ "rope_theta": 10000.0,
+ "rope_type": "default"
+ },
+ "tie_word_embeddings": true,
+ "transformers_version": "5.5.0",
+ "use_cache": false,
+ "vocab_size": 151671
+}
diff --git a/runs/base-ssl/checkpoint-720/generation_config.json b/runs/base-ssl/checkpoint-720/generation_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..f962c4bfc66159cdeb7ba836cbbd79365e9304f3
--- /dev/null
+++ b/runs/base-ssl/checkpoint-720/generation_config.json
@@ -0,0 +1,11 @@
+{
+ "_from_model_config": true,
+ "eos_token_id": [
+ 151645
+ ],
+ "output_attentions": false,
+ "output_hidden_states": false,
+ "pad_token_id": 151645,
+ "transformers_version": "5.5.0",
+ "use_cache": true
+}
diff --git a/runs/base-ssl/checkpoint-720/model.safetensors b/runs/base-ssl/checkpoint-720/model.safetensors
new file mode 100644
index 0000000000000000000000000000000000000000..c9e003ed7b490f2126b2f71aa0e9087af818995d
--- /dev/null
+++ b/runs/base-ssl/checkpoint-720/model.safetensors
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:4f2127d3f5c85244453c4c94d1e104722044dff05e2280b2d4232aec4b39ba9d
+size 583356232
diff --git a/runs/base-ssl/checkpoint-720/optimizer.pt b/runs/base-ssl/checkpoint-720/optimizer.pt
new file mode 100644
index 0000000000000000000000000000000000000000..7dfef21b286d23d0f82cf2d9ceb51ddb8f6077e4
--- /dev/null
+++ b/runs/base-ssl/checkpoint-720/optimizer.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:4f1778fc2cd4404f5b1ac80d6d4b02da644b407c3954f0030dabd57149a897c5
+size 1166825803
diff --git a/runs/base-ssl/checkpoint-720/rng_state_0.pth b/runs/base-ssl/checkpoint-720/rng_state_0.pth
new file mode 100644
index 0000000000000000000000000000000000000000..64991ceae73e5d3389476a9b448c3cda96f73b10
--- /dev/null
+++ b/runs/base-ssl/checkpoint-720/rng_state_0.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ed1b9484e9cec07c14c677aaf97ebf9dff6fa34fc12bae83c65f98c9d2c9ad0d
+size 14917
diff --git a/runs/base-ssl/checkpoint-720/rng_state_1.pth b/runs/base-ssl/checkpoint-720/rng_state_1.pth
new file mode 100644
index 0000000000000000000000000000000000000000..fee3b6b64b847dcce05678311e2696b568d3185a
--- /dev/null
+++ b/runs/base-ssl/checkpoint-720/rng_state_1.pth
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d30790dc4fc4171a789605cefdf649fd85c4d4afb59efd35ee6fea409dad4915
+size 14917
diff --git a/runs/base-ssl/checkpoint-720/scheduler.pt b/runs/base-ssl/checkpoint-720/scheduler.pt
new file mode 100644
index 0000000000000000000000000000000000000000..1ad4496e97265851e778415cb1e0b7cabc192960
--- /dev/null
+++ b/runs/base-ssl/checkpoint-720/scheduler.pt
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b29c543d5f10e6bbf88f194409dab3a0645a2f26aa18a377a9b03e338e95d97b
+size 1465
diff --git a/runs/base-ssl/checkpoint-720/tokenizer.json b/runs/base-ssl/checkpoint-720/tokenizer.json
new file mode 100644
index 0000000000000000000000000000000000000000..b83d93986de8ecfc4343943be1c86e9532682c15
--- /dev/null
+++ b/runs/base-ssl/checkpoint-720/tokenizer.json
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:59b6776030505d5b441d0727cce137047df748ab15db6ba3a1bac93c123742fb
+size 11424079
diff --git a/runs/base-ssl/checkpoint-720/tokenizer_config.json b/runs/base-ssl/checkpoint-720/tokenizer_config.json
new file mode 100644
index 0000000000000000000000000000000000000000..b1d6bb391bb8fbc446de576db5220ec91c98a150
--- /dev/null
+++ b/runs/base-ssl/checkpoint-720/tokenizer_config.json
@@ -0,0 +1,18 @@
+{
+ "add_prefix_space": false,
+ "backend": "tokenizers",
+ "bos_token": null,
+ "clean_up_tokenization_spaces": false,
+ "eos_token": "<|im_end|>",
+ "errors": "replace",
+ "extra_special_tokens": [
+ "<|l2r_pred|>",
+ "<|r2l_pred|>"
+ ],
+ "is_local": false,
+ "model_max_length": 131072,
+ "pad_token": "<|im_end|>",
+ "split_special_tokens": false,
+ "tokenizer_class": "Qwen2Tokenizer",
+ "unk_token": null
+}
diff --git a/runs/base-ssl/checkpoint-720/trainer_state.json b/runs/base-ssl/checkpoint-720/trainer_state.json
new file mode 100644
index 0000000000000000000000000000000000000000..c20fa8c8ef263b82a07fe68d20380b72d4fd0565
--- /dev/null
+++ b/runs/base-ssl/checkpoint-720/trainer_state.json
@@ -0,0 +1,5146 @@
+{
+ "best_global_step": null,
+ "best_metric": null,
+ "best_model_checkpoint": null,
+ "epoch": 10.0,
+ "eval_steps": 500,
+ "global_step": 720,
+ "is_hyper_param_search": false,
+ "is_local_process_zero": true,
+ "is_world_process_zero": true,
+ "log_history": [
+ {
+ "epoch": 0.013937282229965157,
+ "grad_norm": 0.2712002694606781,
+ "learning_rate": 0.0,
+ "loss": 4.000947952270508,
+ "step": 1
+ },
+ {
+ "epoch": 0.027874564459930314,
+ "grad_norm": 0.2709888219833374,
+ "learning_rate": 5.999999999999999e-06,
+ "loss": 4.000800132751465,
+ "step": 2
+ },
+ {
+ "epoch": 0.041811846689895474,
+ "grad_norm": 0.2721220850944519,
+ "learning_rate": 1.1999999999999999e-05,
+ "loss": 3.982931613922119,
+ "step": 3
+ },
+ {
+ "epoch": 0.05574912891986063,
+ "grad_norm": 0.24822379648685455,
+ "learning_rate": 1.7999999999999997e-05,
+ "loss": 3.948713779449463,
+ "step": 4
+ },
+ {
+ "epoch": 0.06968641114982578,
+ "grad_norm": 0.2103811800479889,
+ "learning_rate": 2.3999999999999997e-05,
+ "loss": 3.908690929412842,
+ "step": 5
+ },
+ {
+ "epoch": 0.08362369337979095,
+ "grad_norm": 0.18375654518604279,
+ "learning_rate": 2.9999999999999997e-05,
+ "loss": 3.8660929203033447,
+ "step": 6
+ },
+ {
+ "epoch": 0.0975609756097561,
+ "grad_norm": 0.1471690535545349,
+ "learning_rate": 3.5999999999999994e-05,
+ "loss": 3.82308030128479,
+ "step": 7
+ },
+ {
+ "epoch": 0.11149825783972125,
+ "grad_norm": 0.11132320016622543,
+ "learning_rate": 4.2e-05,
+ "loss": 3.790834426879883,
+ "step": 8
+ },
+ {
+ "epoch": 0.1254355400696864,
+ "grad_norm": 0.08796700090169907,
+ "learning_rate": 4.7999999999999994e-05,
+ "loss": 3.7589545249938965,
+ "step": 9
+ },
+ {
+ "epoch": 0.13937282229965156,
+ "grad_norm": 0.07089080661535263,
+ "learning_rate": 5.399999999999999e-05,
+ "loss": 3.7346723079681396,
+ "step": 10
+ },
+ {
+ "epoch": 0.15331010452961671,
+ "grad_norm": 0.056723613291978836,
+ "learning_rate": 5.9999999999999995e-05,
+ "loss": 3.7159838676452637,
+ "step": 11
+ },
+ {
+ "epoch": 0.1672473867595819,
+ "grad_norm": 0.04544799029827118,
+ "learning_rate": 6.599999999999999e-05,
+ "loss": 3.701421022415161,
+ "step": 12
+ },
+ {
+ "epoch": 0.18118466898954705,
+ "grad_norm": 0.03551485016942024,
+ "learning_rate": 7.199999999999999e-05,
+ "loss": 3.691774845123291,
+ "step": 13
+ },
+ {
+ "epoch": 0.1951219512195122,
+ "grad_norm": 0.028209710493683815,
+ "learning_rate": 7.8e-05,
+ "loss": 3.6860086917877197,
+ "step": 14
+ },
+ {
+ "epoch": 0.20905923344947736,
+ "grad_norm": 0.024290181696414948,
+ "learning_rate": 8.4e-05,
+ "loss": 3.6806883811950684,
+ "step": 15
+ },
+ {
+ "epoch": 0.2229965156794425,
+ "grad_norm": 0.022015230730175972,
+ "learning_rate": 8.999999999999999e-05,
+ "loss": 3.677751064300537,
+ "step": 16
+ },
+ {
+ "epoch": 0.23693379790940766,
+ "grad_norm": 0.01960836350917816,
+ "learning_rate": 9.599999999999999e-05,
+ "loss": 3.6738266944885254,
+ "step": 17
+ },
+ {
+ "epoch": 0.2508710801393728,
+ "grad_norm": 0.017675744369626045,
+ "learning_rate": 0.000102,
+ "loss": 3.6739063262939453,
+ "step": 18
+ },
+ {
+ "epoch": 0.26480836236933797,
+ "grad_norm": 0.01539881993085146,
+ "learning_rate": 0.00010799999999999998,
+ "loss": 3.671247720718384,
+ "step": 19
+ },
+ {
+ "epoch": 0.2787456445993031,
+ "grad_norm": 0.013906505890190601,
+ "learning_rate": 0.00011399999999999999,
+ "loss": 3.66833233833313,
+ "step": 20
+ },
+ {
+ "epoch": 0.2926829268292683,
+ "grad_norm": 0.01149708591401577,
+ "learning_rate": 0.00011999999999999999,
+ "loss": 3.6706337928771973,
+ "step": 21
+ },
+ {
+ "epoch": 0.30662020905923343,
+ "grad_norm": 0.010512279346585274,
+ "learning_rate": 0.00012599999999999997,
+ "loss": 3.667168140411377,
+ "step": 22
+ },
+ {
+ "epoch": 0.3205574912891986,
+ "grad_norm": 0.00897525716573,
+ "learning_rate": 0.00013199999999999998,
+ "loss": 3.6630516052246094,
+ "step": 23
+ },
+ {
+ "epoch": 0.3344947735191638,
+ "grad_norm": 0.008081364445388317,
+ "learning_rate": 0.000138,
+ "loss": 3.6629021167755127,
+ "step": 24
+ },
+ {
+ "epoch": 0.34843205574912894,
+ "grad_norm": 0.0076500303111970425,
+ "learning_rate": 0.00014399999999999998,
+ "loss": 3.66168212890625,
+ "step": 25
+ },
+ {
+ "epoch": 0.3623693379790941,
+ "grad_norm": 0.007083008531481028,
+ "learning_rate": 0.00015,
+ "loss": 3.6564559936523438,
+ "step": 26
+ },
+ {
+ "epoch": 0.37630662020905925,
+ "grad_norm": 0.006654089782387018,
+ "learning_rate": 0.000156,
+ "loss": 3.6590094566345215,
+ "step": 27
+ },
+ {
+ "epoch": 0.3902439024390244,
+ "grad_norm": 0.0073669785633683205,
+ "learning_rate": 0.000162,
+ "loss": 3.651914119720459,
+ "step": 28
+ },
+ {
+ "epoch": 0.40418118466898956,
+ "grad_norm": 0.007247959729284048,
+ "learning_rate": 0.000168,
+ "loss": 3.6557557582855225,
+ "step": 29
+ },
+ {
+ "epoch": 0.4181184668989547,
+ "grad_norm": 0.007229349110275507,
+ "learning_rate": 0.00017399999999999997,
+ "loss": 3.651794910430908,
+ "step": 30
+ },
+ {
+ "epoch": 0.43205574912891986,
+ "grad_norm": 0.008839861489832401,
+ "learning_rate": 0.00017999999999999998,
+ "loss": 3.653074264526367,
+ "step": 31
+ },
+ {
+ "epoch": 0.445993031358885,
+ "grad_norm": 0.009280834347009659,
+ "learning_rate": 0.000186,
+ "loss": 3.6503708362579346,
+ "step": 32
+ },
+ {
+ "epoch": 0.45993031358885017,
+ "grad_norm": 0.008585072122514248,
+ "learning_rate": 0.00019199999999999998,
+ "loss": 3.650331497192383,
+ "step": 33
+ },
+ {
+ "epoch": 0.4738675958188153,
+ "grad_norm": 0.01164434663951397,
+ "learning_rate": 0.000198,
+ "loss": 3.6462929248809814,
+ "step": 34
+ },
+ {
+ "epoch": 0.4878048780487805,
+ "grad_norm": 0.012668018229305744,
+ "learning_rate": 0.000204,
+ "loss": 3.6516757011413574,
+ "step": 35
+ },
+ {
+ "epoch": 0.5017421602787456,
+ "grad_norm": 0.01610603742301464,
+ "learning_rate": 0.00020999999999999998,
+ "loss": 3.647498607635498,
+ "step": 36
+ },
+ {
+ "epoch": 0.5156794425087108,
+ "grad_norm": 0.018993742763996124,
+ "learning_rate": 0.00021599999999999996,
+ "loss": 3.642869472503662,
+ "step": 37
+ },
+ {
+ "epoch": 0.5296167247386759,
+ "grad_norm": 0.020697375759482384,
+ "learning_rate": 0.00022199999999999998,
+ "loss": 3.639193058013916,
+ "step": 38
+ },
+ {
+ "epoch": 0.5435540069686411,
+ "grad_norm": 0.021636122837662697,
+ "learning_rate": 0.00022799999999999999,
+ "loss": 3.630560874938965,
+ "step": 39
+ },
+ {
+ "epoch": 0.5574912891986062,
+ "grad_norm": 0.01893668621778488,
+ "learning_rate": 0.000234,
+ "loss": 3.6265769004821777,
+ "step": 40
+ },
+ {
+ "epoch": 0.5714285714285714,
+ "grad_norm": 0.025133362039923668,
+ "learning_rate": 0.00023999999999999998,
+ "loss": 3.6185407638549805,
+ "step": 41
+ },
+ {
+ "epoch": 0.5853658536585366,
+ "grad_norm": 0.016397792845964432,
+ "learning_rate": 0.00024599999999999996,
+ "loss": 3.609161853790283,
+ "step": 42
+ },
+ {
+ "epoch": 0.5993031358885017,
+ "grad_norm": 0.02059962786734104,
+ "learning_rate": 0.00025199999999999995,
+ "loss": 3.5987398624420166,
+ "step": 43
+ },
+ {
+ "epoch": 0.6132404181184669,
+ "grad_norm": 0.026733839884400368,
+ "learning_rate": 0.000258,
+ "loss": 3.601898193359375,
+ "step": 44
+ },
+ {
+ "epoch": 0.627177700348432,
+ "grad_norm": 0.04592137038707733,
+ "learning_rate": 0.00026399999999999997,
+ "loss": 3.597785472869873,
+ "step": 45
+ },
+ {
+ "epoch": 0.6411149825783972,
+ "grad_norm": 0.14618715643882751,
+ "learning_rate": 0.00027,
+ "loss": 3.597787857055664,
+ "step": 46
+ },
+ {
+ "epoch": 0.6550522648083623,
+ "grad_norm": 0.1228327602148056,
+ "learning_rate": 0.000276,
+ "loss": 3.598362922668457,
+ "step": 47
+ },
+ {
+ "epoch": 0.6689895470383276,
+ "grad_norm": 0.0651344507932663,
+ "learning_rate": 0.00028199999999999997,
+ "loss": 3.5868940353393555,
+ "step": 48
+ },
+ {
+ "epoch": 0.6829268292682927,
+ "grad_norm": 0.030712513253092766,
+ "learning_rate": 0.00028799999999999995,
+ "loss": 3.5800981521606445,
+ "step": 49
+ },
+ {
+ "epoch": 0.6968641114982579,
+ "grad_norm": 0.07069414854049683,
+ "learning_rate": 0.000294,
+ "loss": 3.590576171875,
+ "step": 50
+ },
+ {
+ "epoch": 0.710801393728223,
+ "grad_norm": 0.026333393529057503,
+ "learning_rate": 0.0003,
+ "loss": 3.5740621089935303,
+ "step": 51
+ },
+ {
+ "epoch": 0.7247386759581882,
+ "grad_norm": 0.050806671380996704,
+ "learning_rate": 0.00030599999999999996,
+ "loss": 3.577582836151123,
+ "step": 52
+ },
+ {
+ "epoch": 0.7386759581881533,
+ "grad_norm": 0.04820532724261284,
+ "learning_rate": 0.000312,
+ "loss": 3.5686888694763184,
+ "step": 53
+ },
+ {
+ "epoch": 0.7526132404181185,
+ "grad_norm": 0.03834737837314606,
+ "learning_rate": 0.000318,
+ "loss": 3.571916341781616,
+ "step": 54
+ },
+ {
+ "epoch": 0.7665505226480837,
+ "grad_norm": 0.0663016214966774,
+ "learning_rate": 0.000324,
+ "loss": 3.563366413116455,
+ "step": 55
+ },
+ {
+ "epoch": 0.7804878048780488,
+ "grad_norm": 0.03111632913351059,
+ "learning_rate": 0.00033,
+ "loss": 3.555037021636963,
+ "step": 56
+ },
+ {
+ "epoch": 0.794425087108014,
+ "grad_norm": 0.06139425188302994,
+ "learning_rate": 0.000336,
+ "loss": 3.555377244949341,
+ "step": 57
+ },
+ {
+ "epoch": 0.8083623693379791,
+ "grad_norm": 0.02561746910214424,
+ "learning_rate": 0.00034199999999999996,
+ "loss": 3.5368266105651855,
+ "step": 58
+ },
+ {
+ "epoch": 0.8222996515679443,
+ "grad_norm": 0.06502962112426758,
+ "learning_rate": 0.00034799999999999995,
+ "loss": 3.5318264961242676,
+ "step": 59
+ },
+ {
+ "epoch": 0.8362369337979094,
+ "grad_norm": 0.06968390196561813,
+ "learning_rate": 0.00035399999999999993,
+ "loss": 3.5210607051849365,
+ "step": 60
+ },
+ {
+ "epoch": 0.8501742160278746,
+ "grad_norm": 0.02670745924115181,
+ "learning_rate": 0.00035999999999999997,
+ "loss": 3.5037078857421875,
+ "step": 61
+ },
+ {
+ "epoch": 0.8641114982578397,
+ "grad_norm": 0.07075569778680801,
+ "learning_rate": 0.00036599999999999995,
+ "loss": 3.506938934326172,
+ "step": 62
+ },
+ {
+ "epoch": 0.8780487804878049,
+ "grad_norm": 0.061632659286260605,
+ "learning_rate": 0.000372,
+ "loss": 3.4960665702819824,
+ "step": 63
+ },
+ {
+ "epoch": 0.89198606271777,
+ "grad_norm": 0.10994791984558105,
+ "learning_rate": 0.00037799999999999997,
+ "loss": 3.4926395416259766,
+ "step": 64
+ },
+ {
+ "epoch": 0.9059233449477352,
+ "grad_norm": 0.21027322113513947,
+ "learning_rate": 0.00038399999999999996,
+ "loss": 3.502258777618408,
+ "step": 65
+ },
+ {
+ "epoch": 0.9198606271777003,
+ "grad_norm": 0.1937343329191208,
+ "learning_rate": 0.00039,
+ "loss": 3.5118448734283447,
+ "step": 66
+ },
+ {
+ "epoch": 0.9337979094076655,
+ "grad_norm": 0.07891395688056946,
+ "learning_rate": 0.000396,
+ "loss": 3.487575054168701,
+ "step": 67
+ },
+ {
+ "epoch": 0.9477351916376306,
+ "grad_norm": 0.12915678322315216,
+ "learning_rate": 0.000402,
+ "loss": 3.4890120029449463,
+ "step": 68
+ },
+ {
+ "epoch": 0.9616724738675958,
+ "grad_norm": 0.08530207723379135,
+ "learning_rate": 0.000408,
+ "loss": 3.4755735397338867,
+ "step": 69
+ },
+ {
+ "epoch": 0.975609756097561,
+ "grad_norm": 0.09704860299825668,
+ "learning_rate": 0.0004139999999999999,
+ "loss": 3.4669318199157715,
+ "step": 70
+ },
+ {
+ "epoch": 0.9895470383275261,
+ "grad_norm": 0.07270640879869461,
+ "learning_rate": 0.00041999999999999996,
+ "loss": 3.460634469985962,
+ "step": 71
+ },
+ {
+ "epoch": 1.0,
+ "grad_norm": 0.03984597697854042,
+ "learning_rate": 0.00042599999999999995,
+ "loss": 2.590245485305786,
+ "step": 72
+ },
+ {
+ "epoch": 1.0,
+ "eval_loss": 0.8616236448287964,
+ "eval_runtime": 36.0347,
+ "eval_samples_per_second": 67.768,
+ "eval_steps_per_second": 0.555,
+ "step": 72
+ },
+ {
+ "epoch": 1.0139372822299653,
+ "grad_norm": 0.058285508304834366,
+ "learning_rate": 0.00043199999999999993,
+ "loss": 3.441636562347412,
+ "step": 73
+ },
+ {
+ "epoch": 1.0278745644599303,
+ "grad_norm": 0.07173695415258408,
+ "learning_rate": 0.00043799999999999997,
+ "loss": 3.4476027488708496,
+ "step": 74
+ },
+ {
+ "epoch": 1.0418118466898956,
+ "grad_norm": 0.0367155559360981,
+ "learning_rate": 0.00044399999999999995,
+ "loss": 3.4290428161621094,
+ "step": 75
+ },
+ {
+ "epoch": 1.0557491289198606,
+ "grad_norm": 0.05761358141899109,
+ "learning_rate": 0.00045,
+ "loss": 3.430612564086914,
+ "step": 76
+ },
+ {
+ "epoch": 1.0696864111498259,
+ "grad_norm": 0.06290662288665771,
+ "learning_rate": 0.00045599999999999997,
+ "loss": 3.4222841262817383,
+ "step": 77
+ },
+ {
+ "epoch": 1.083623693379791,
+ "grad_norm": 0.09705018997192383,
+ "learning_rate": 0.00046199999999999995,
+ "loss": 3.4233384132385254,
+ "step": 78
+ },
+ {
+ "epoch": 1.0975609756097562,
+ "grad_norm": 0.09656445682048798,
+ "learning_rate": 0.000468,
+ "loss": 3.422335624694824,
+ "step": 79
+ },
+ {
+ "epoch": 1.1114982578397212,
+ "grad_norm": 0.07884909957647324,
+ "learning_rate": 0.000474,
+ "loss": 3.4133338928222656,
+ "step": 80
+ },
+ {
+ "epoch": 1.1254355400696865,
+ "grad_norm": 0.06679042428731918,
+ "learning_rate": 0.00047999999999999996,
+ "loss": 3.4053287506103516,
+ "step": 81
+ },
+ {
+ "epoch": 1.1393728222996515,
+ "grad_norm": 0.02522652968764305,
+ "learning_rate": 0.000486,
+ "loss": 3.392838478088379,
+ "step": 82
+ },
+ {
+ "epoch": 1.1533101045296168,
+ "grad_norm": 0.09408055245876312,
+ "learning_rate": 0.0004919999999999999,
+ "loss": 3.3952789306640625,
+ "step": 83
+ },
+ {
+ "epoch": 1.1672473867595818,
+ "grad_norm": 0.08980021625757217,
+ "learning_rate": 0.000498,
+ "loss": 3.385244846343994,
+ "step": 84
+ },
+ {
+ "epoch": 1.181184668989547,
+ "grad_norm": 0.08343124389648438,
+ "learning_rate": 0.0005039999999999999,
+ "loss": 3.382103443145752,
+ "step": 85
+ },
+ {
+ "epoch": 1.1951219512195121,
+ "grad_norm": 0.03343554213643074,
+ "learning_rate": 0.0005099999999999999,
+ "loss": 3.374354362487793,
+ "step": 86
+ },
+ {
+ "epoch": 1.2090592334494774,
+ "grad_norm": 0.0852339118719101,
+ "learning_rate": 0.000516,
+ "loss": 3.3802456855773926,
+ "step": 87
+ },
+ {
+ "epoch": 1.2229965156794425,
+ "grad_norm": 0.09159538149833679,
+ "learning_rate": 0.000522,
+ "loss": 3.37576961517334,
+ "step": 88
+ },
+ {
+ "epoch": 1.2369337979094077,
+ "grad_norm": 0.04313444346189499,
+ "learning_rate": 0.0005279999999999999,
+ "loss": 3.360690116882324,
+ "step": 89
+ },
+ {
+ "epoch": 1.2508710801393728,
+ "grad_norm": 0.075523741543293,
+ "learning_rate": 0.000534,
+ "loss": 3.3599460124969482,
+ "step": 90
+ },
+ {
+ "epoch": 1.264808362369338,
+ "grad_norm": 0.08516373485326767,
+ "learning_rate": 0.00054,
+ "loss": 3.3572096824645996,
+ "step": 91
+ },
+ {
+ "epoch": 1.278745644599303,
+ "grad_norm": 0.09553111344575882,
+ "learning_rate": 0.0005459999999999999,
+ "loss": 3.3542261123657227,
+ "step": 92
+ },
+ {
+ "epoch": 1.2926829268292683,
+ "grad_norm": 0.05978025496006012,
+ "learning_rate": 0.000552,
+ "loss": 3.3440048694610596,
+ "step": 93
+ },
+ {
+ "epoch": 1.3066202090592334,
+ "grad_norm": 0.10827190428972244,
+ "learning_rate": 0.000558,
+ "loss": 3.3391332626342773,
+ "step": 94
+ },
+ {
+ "epoch": 1.3205574912891986,
+ "grad_norm": 0.1181376576423645,
+ "learning_rate": 0.0005639999999999999,
+ "loss": 3.3493118286132812,
+ "step": 95
+ },
+ {
+ "epoch": 1.3344947735191637,
+ "grad_norm": 0.08178193867206573,
+ "learning_rate": 0.00057,
+ "loss": 3.3445382118225098,
+ "step": 96
+ },
+ {
+ "epoch": 1.348432055749129,
+ "grad_norm": 0.08283700793981552,
+ "learning_rate": 0.0005759999999999999,
+ "loss": 3.3343238830566406,
+ "step": 97
+ },
+ {
+ "epoch": 1.3623693379790942,
+ "grad_norm": 0.11837095767259598,
+ "learning_rate": 0.0005819999999999999,
+ "loss": 3.3336968421936035,
+ "step": 98
+ },
+ {
+ "epoch": 1.3763066202090593,
+ "grad_norm": 0.08230706304311752,
+ "learning_rate": 0.000588,
+ "loss": 3.3294646739959717,
+ "step": 99
+ },
+ {
+ "epoch": 1.3902439024390243,
+ "grad_norm": 0.09961626678705215,
+ "learning_rate": 0.0005939999999999999,
+ "loss": 3.3242952823638916,
+ "step": 100
+ },
+ {
+ "epoch": 1.4041811846689896,
+ "grad_norm": 0.11294732987880707,
+ "learning_rate": 0.0006,
+ "loss": 3.330348491668701,
+ "step": 101
+ },
+ {
+ "epoch": 1.4181184668989548,
+ "grad_norm": 0.11236022412776947,
+ "learning_rate": 0.0005999998803562321,
+ "loss": 3.322606086730957,
+ "step": 102
+ },
+ {
+ "epoch": 1.4320557491289199,
+ "grad_norm": 0.13230572640895844,
+ "learning_rate": 0.0005999995214250253,
+ "loss": 3.3202784061431885,
+ "step": 103
+ },
+ {
+ "epoch": 1.445993031358885,
+ "grad_norm": 0.0783172994852066,
+ "learning_rate": 0.0005999989232066684,
+ "loss": 3.3082056045532227,
+ "step": 104
+ },
+ {
+ "epoch": 1.4599303135888502,
+ "grad_norm": 0.07376513630151749,
+ "learning_rate": 0.0005999980857016436,
+ "loss": 3.3011245727539062,
+ "step": 105
+ },
+ {
+ "epoch": 1.4738675958188154,
+ "grad_norm": 0.11039287596940994,
+ "learning_rate": 0.0005999970089106256,
+ "loss": 3.2987873554229736,
+ "step": 106
+ },
+ {
+ "epoch": 1.4878048780487805,
+ "grad_norm": 0.0667329952120781,
+ "learning_rate": 0.0005999956928344818,
+ "loss": 3.293043851852417,
+ "step": 107
+ },
+ {
+ "epoch": 1.5017421602787455,
+ "grad_norm": 0.0750635489821434,
+ "learning_rate": 0.0005999941374742726,
+ "loss": 3.2865707874298096,
+ "step": 108
+ },
+ {
+ "epoch": 1.5156794425087108,
+ "grad_norm": 0.055155977606773376,
+ "learning_rate": 0.0005999923428312514,
+ "loss": 3.278069496154785,
+ "step": 109
+ },
+ {
+ "epoch": 1.529616724738676,
+ "grad_norm": 0.07016722112894058,
+ "learning_rate": 0.0005999903089068637,
+ "loss": 3.2837281227111816,
+ "step": 110
+ },
+ {
+ "epoch": 1.543554006968641,
+ "grad_norm": 0.09884901344776154,
+ "learning_rate": 0.0005999880357027487,
+ "loss": 3.2782273292541504,
+ "step": 111
+ },
+ {
+ "epoch": 1.5574912891986061,
+ "grad_norm": 0.09402419626712799,
+ "learning_rate": 0.0005999855232207374,
+ "loss": 3.2757701873779297,
+ "step": 112
+ },
+ {
+ "epoch": 1.5714285714285714,
+ "grad_norm": 0.06898307800292969,
+ "learning_rate": 0.0005999827714628542,
+ "loss": 3.2636804580688477,
+ "step": 113
+ },
+ {
+ "epoch": 1.5853658536585367,
+ "grad_norm": 0.08733519911766052,
+ "learning_rate": 0.0005999797804313163,
+ "loss": 3.2676005363464355,
+ "step": 114
+ },
+ {
+ "epoch": 1.5993031358885017,
+ "grad_norm": 0.05769918113946915,
+ "learning_rate": 0.0005999765501285333,
+ "loss": 3.2505807876586914,
+ "step": 115
+ },
+ {
+ "epoch": 1.6132404181184667,
+ "grad_norm": 0.054460495710372925,
+ "learning_rate": 0.000599973080557108,
+ "loss": 3.259110689163208,
+ "step": 116
+ },
+ {
+ "epoch": 1.627177700348432,
+ "grad_norm": 0.055243365466594696,
+ "learning_rate": 0.0005999693717198356,
+ "loss": 3.2438201904296875,
+ "step": 117
+ },
+ {
+ "epoch": 1.6411149825783973,
+ "grad_norm": 0.06122216582298279,
+ "learning_rate": 0.0005999654236197044,
+ "loss": 3.2397255897521973,
+ "step": 118
+ },
+ {
+ "epoch": 1.6550522648083623,
+ "grad_norm": 0.05418086051940918,
+ "learning_rate": 0.0005999612362598951,
+ "loss": 3.236057758331299,
+ "step": 119
+ },
+ {
+ "epoch": 1.6689895470383276,
+ "grad_norm": 0.04995540529489517,
+ "learning_rate": 0.0005999568096437816,
+ "loss": 3.224294662475586,
+ "step": 120
+ },
+ {
+ "epoch": 1.6829268292682928,
+ "grad_norm": 0.057540878653526306,
+ "learning_rate": 0.0005999521437749303,
+ "loss": 3.2251172065734863,
+ "step": 121
+ },
+ {
+ "epoch": 1.6968641114982579,
+ "grad_norm": 0.05698078125715256,
+ "learning_rate": 0.0005999472386571002,
+ "loss": 3.228363513946533,
+ "step": 122
+ },
+ {
+ "epoch": 1.710801393728223,
+ "grad_norm": 0.07352662831544876,
+ "learning_rate": 0.0005999420942942435,
+ "loss": 3.2196407318115234,
+ "step": 123
+ },
+ {
+ "epoch": 1.7247386759581882,
+ "grad_norm": 0.08591686934232712,
+ "learning_rate": 0.000599936710690505,
+ "loss": 3.2231035232543945,
+ "step": 124
+ },
+ {
+ "epoch": 1.7386759581881535,
+ "grad_norm": 0.06970733404159546,
+ "learning_rate": 0.0005999310878502218,
+ "loss": 3.2126383781433105,
+ "step": 125
+ },
+ {
+ "epoch": 1.7526132404181185,
+ "grad_norm": 0.04472116380929947,
+ "learning_rate": 0.0005999252257779244,
+ "loss": 3.216801881790161,
+ "step": 126
+ },
+ {
+ "epoch": 1.7665505226480835,
+ "grad_norm": 0.059133559465408325,
+ "learning_rate": 0.0005999191244783357,
+ "loss": 3.2136807441711426,
+ "step": 127
+ },
+ {
+ "epoch": 1.7804878048780488,
+ "grad_norm": 0.08288449794054031,
+ "learning_rate": 0.0005999127839563715,
+ "loss": 3.210519552230835,
+ "step": 128
+ },
+ {
+ "epoch": 1.794425087108014,
+ "grad_norm": 0.09659463912248611,
+ "learning_rate": 0.00059990620421714,
+ "loss": 3.205916404724121,
+ "step": 129
+ },
+ {
+ "epoch": 1.8083623693379791,
+ "grad_norm": 0.08611937612295151,
+ "learning_rate": 0.0005998993852659426,
+ "loss": 3.206793785095215,
+ "step": 130
+ },
+ {
+ "epoch": 1.8222996515679442,
+ "grad_norm": 0.06448066979646683,
+ "learning_rate": 0.0005998923271082733,
+ "loss": 3.2026424407958984,
+ "step": 131
+ },
+ {
+ "epoch": 1.8362369337979094,
+ "grad_norm": 0.07323113083839417,
+ "learning_rate": 0.0005998850297498183,
+ "loss": 3.1864631175994873,
+ "step": 132
+ },
+ {
+ "epoch": 1.8501742160278747,
+ "grad_norm": 0.0739368200302124,
+ "learning_rate": 0.0005998774931964574,
+ "loss": 3.1875557899475098,
+ "step": 133
+ },
+ {
+ "epoch": 1.8641114982578397,
+ "grad_norm": 0.08289099484682083,
+ "learning_rate": 0.0005998697174542624,
+ "loss": 3.1901979446411133,
+ "step": 134
+ },
+ {
+ "epoch": 1.8780487804878048,
+ "grad_norm": 0.06641175597906113,
+ "learning_rate": 0.0005998617025294983,
+ "loss": 3.1776785850524902,
+ "step": 135
+ },
+ {
+ "epoch": 1.89198606271777,
+ "grad_norm": 0.04873652383685112,
+ "learning_rate": 0.0005998534484286223,
+ "loss": 3.1743667125701904,
+ "step": 136
+ },
+ {
+ "epoch": 1.9059233449477353,
+ "grad_norm": 0.04623038321733475,
+ "learning_rate": 0.0005998449551582847,
+ "loss": 3.1759986877441406,
+ "step": 137
+ },
+ {
+ "epoch": 1.9198606271777003,
+ "grad_norm": 0.059709370136260986,
+ "learning_rate": 0.0005998362227253285,
+ "loss": 3.1702799797058105,
+ "step": 138
+ },
+ {
+ "epoch": 1.9337979094076654,
+ "grad_norm": 0.040581051260232925,
+ "learning_rate": 0.0005998272511367889,
+ "loss": 3.1607465744018555,
+ "step": 139
+ },
+ {
+ "epoch": 1.9477351916376306,
+ "grad_norm": 0.04940655827522278,
+ "learning_rate": 0.0005998180403998947,
+ "loss": 3.1620500087738037,
+ "step": 140
+ },
+ {
+ "epoch": 1.961672473867596,
+ "grad_norm": 0.055740341544151306,
+ "learning_rate": 0.0005998085905220664,
+ "loss": 3.1535825729370117,
+ "step": 141
+ },
+ {
+ "epoch": 1.975609756097561,
+ "grad_norm": 0.06836569309234619,
+ "learning_rate": 0.0005997989015109177,
+ "loss": 3.1512832641601562,
+ "step": 142
+ },
+ {
+ "epoch": 1.989547038327526,
+ "grad_norm": 0.08451569080352783,
+ "learning_rate": 0.000599788973374255,
+ "loss": 3.147432804107666,
+ "step": 143
+ },
+ {
+ "epoch": 2.0,
+ "grad_norm": 0.06781627237796783,
+ "learning_rate": 0.000599778806120077,
+ "loss": 2.3624467849731445,
+ "step": 144
+ },
+ {
+ "epoch": 2.0,
+ "eval_loss": 0.7888243794441223,
+ "eval_runtime": 37.0572,
+ "eval_samples_per_second": 65.898,
+ "eval_steps_per_second": 0.54,
+ "step": 144
+ },
+ {
+ "epoch": 2.013937282229965,
+ "grad_norm": 0.045119598507881165,
+ "learning_rate": 0.0005997683997565754,
+ "loss": 3.139284610748291,
+ "step": 145
+ },
+ {
+ "epoch": 2.0278745644599305,
+ "grad_norm": 0.09132017195224762,
+ "learning_rate": 0.0005997577542921344,
+ "loss": 3.140348434448242,
+ "step": 146
+ },
+ {
+ "epoch": 2.0418118466898956,
+ "grad_norm": 0.07457596063613892,
+ "learning_rate": 0.0005997468697353309,
+ "loss": 3.140091896057129,
+ "step": 147
+ },
+ {
+ "epoch": 2.0557491289198606,
+ "grad_norm": 0.07544369250535965,
+ "learning_rate": 0.0005997357460949342,
+ "loss": 3.1411213874816895,
+ "step": 148
+ },
+ {
+ "epoch": 2.0696864111498257,
+ "grad_norm": 0.046033963561058044,
+ "learning_rate": 0.0005997243833799068,
+ "loss": 3.1405649185180664,
+ "step": 149
+ },
+ {
+ "epoch": 2.083623693379791,
+ "grad_norm": 0.06651527434587479,
+ "learning_rate": 0.000599712781599403,
+ "loss": 3.135124683380127,
+ "step": 150
+ },
+ {
+ "epoch": 2.097560975609756,
+ "grad_norm": 0.07238955795764923,
+ "learning_rate": 0.0005997009407627704,
+ "loss": 3.1302051544189453,
+ "step": 151
+ },
+ {
+ "epoch": 2.1114982578397212,
+ "grad_norm": 0.06696683913469315,
+ "learning_rate": 0.000599688860879549,
+ "loss": 3.128504991531372,
+ "step": 152
+ },
+ {
+ "epoch": 2.1254355400696863,
+ "grad_norm": 0.042010076344013214,
+ "learning_rate": 0.0005996765419594711,
+ "loss": 3.119443893432617,
+ "step": 153
+ },
+ {
+ "epoch": 2.1393728222996518,
+ "grad_norm": 0.053164687007665634,
+ "learning_rate": 0.000599663984012462,
+ "loss": 3.1174211502075195,
+ "step": 154
+ },
+ {
+ "epoch": 2.153310104529617,
+ "grad_norm": 0.047281116247177124,
+ "learning_rate": 0.0005996511870486393,
+ "loss": 3.1211044788360596,
+ "step": 155
+ },
+ {
+ "epoch": 2.167247386759582,
+ "grad_norm": 0.0531938374042511,
+ "learning_rate": 0.0005996381510783135,
+ "loss": 3.1136691570281982,
+ "step": 156
+ },
+ {
+ "epoch": 2.181184668989547,
+ "grad_norm": 0.0702054500579834,
+ "learning_rate": 0.0005996248761119872,
+ "loss": 3.112502336502075,
+ "step": 157
+ },
+ {
+ "epoch": 2.1951219512195124,
+ "grad_norm": 0.07261929661035538,
+ "learning_rate": 0.0005996113621603559,
+ "loss": 3.1049346923828125,
+ "step": 158
+ },
+ {
+ "epoch": 2.2090592334494774,
+ "grad_norm": 0.06666582822799683,
+ "learning_rate": 0.0005995976092343075,
+ "loss": 3.1094369888305664,
+ "step": 159
+ },
+ {
+ "epoch": 2.2229965156794425,
+ "grad_norm": 0.047446250915527344,
+ "learning_rate": 0.0005995836173449227,
+ "loss": 3.105876922607422,
+ "step": 160
+ },
+ {
+ "epoch": 2.2369337979094075,
+ "grad_norm": 0.03833230584859848,
+ "learning_rate": 0.0005995693865034743,
+ "loss": 3.104224681854248,
+ "step": 161
+ },
+ {
+ "epoch": 2.250871080139373,
+ "grad_norm": 0.04562874883413315,
+ "learning_rate": 0.0005995549167214278,
+ "loss": 3.105830192565918,
+ "step": 162
+ },
+ {
+ "epoch": 2.264808362369338,
+ "grad_norm": 0.0635828971862793,
+ "learning_rate": 0.0005995402080104414,
+ "loss": 3.1061713695526123,
+ "step": 163
+ },
+ {
+ "epoch": 2.278745644599303,
+ "grad_norm": 0.09712212532758713,
+ "learning_rate": 0.0005995252603823656,
+ "loss": 3.108053207397461,
+ "step": 164
+ },
+ {
+ "epoch": 2.292682926829268,
+ "grad_norm": 0.15060372650623322,
+ "learning_rate": 0.0005995100738492433,
+ "loss": 3.126777172088623,
+ "step": 165
+ },
+ {
+ "epoch": 2.3066202090592336,
+ "grad_norm": 0.12047530710697174,
+ "learning_rate": 0.0005994946484233102,
+ "loss": 3.116323471069336,
+ "step": 166
+ },
+ {
+ "epoch": 2.3205574912891986,
+ "grad_norm": 0.07486861199140549,
+ "learning_rate": 0.0005994789841169941,
+ "loss": 3.1138410568237305,
+ "step": 167
+ },
+ {
+ "epoch": 2.3344947735191637,
+ "grad_norm": 0.07746157795190811,
+ "learning_rate": 0.0005994630809429156,
+ "loss": 3.1107101440429688,
+ "step": 168
+ },
+ {
+ "epoch": 2.3484320557491287,
+ "grad_norm": 0.0804097130894661,
+ "learning_rate": 0.0005994469389138875,
+ "loss": 3.1073827743530273,
+ "step": 169
+ },
+ {
+ "epoch": 2.362369337979094,
+ "grad_norm": 0.0559227392077446,
+ "learning_rate": 0.0005994305580429152,
+ "loss": 3.102102041244507,
+ "step": 170
+ },
+ {
+ "epoch": 2.3763066202090593,
+ "grad_norm": 0.05415646359324455,
+ "learning_rate": 0.0005994139383431966,
+ "loss": 3.096550464630127,
+ "step": 171
+ },
+ {
+ "epoch": 2.3902439024390243,
+ "grad_norm": 0.0463285967707634,
+ "learning_rate": 0.0005993970798281218,
+ "loss": 3.0833563804626465,
+ "step": 172
+ },
+ {
+ "epoch": 2.40418118466899,
+ "grad_norm": 0.04705670103430748,
+ "learning_rate": 0.000599379982511273,
+ "loss": 3.0935018062591553,
+ "step": 173
+ },
+ {
+ "epoch": 2.418118466898955,
+ "grad_norm": 0.03608846664428711,
+ "learning_rate": 0.0005993626464064259,
+ "loss": 3.085629463195801,
+ "step": 174
+ },
+ {
+ "epoch": 2.43205574912892,
+ "grad_norm": 0.03648562356829643,
+ "learning_rate": 0.0005993450715275474,
+ "loss": 3.086639165878296,
+ "step": 175
+ },
+ {
+ "epoch": 2.445993031358885,
+ "grad_norm": 0.03640111908316612,
+ "learning_rate": 0.0005993272578887974,
+ "loss": 3.088339328765869,
+ "step": 176
+ },
+ {
+ "epoch": 2.45993031358885,
+ "grad_norm": 0.029915692284703255,
+ "learning_rate": 0.000599309205504528,
+ "loss": 3.0802769660949707,
+ "step": 177
+ },
+ {
+ "epoch": 2.4738675958188154,
+ "grad_norm": 0.031756628304719925,
+ "learning_rate": 0.0005992909143892837,
+ "loss": 3.0739364624023438,
+ "step": 178
+ },
+ {
+ "epoch": 2.4878048780487805,
+ "grad_norm": 0.03106086328625679,
+ "learning_rate": 0.0005992723845578016,
+ "loss": 3.07144832611084,
+ "step": 179
+ },
+ {
+ "epoch": 2.5017421602787455,
+ "grad_norm": 0.03892781585454941,
+ "learning_rate": 0.0005992536160250103,
+ "loss": 3.074242353439331,
+ "step": 180
+ },
+ {
+ "epoch": 2.515679442508711,
+ "grad_norm": 0.05611228197813034,
+ "learning_rate": 0.0005992346088060317,
+ "loss": 3.0675928592681885,
+ "step": 181
+ },
+ {
+ "epoch": 2.529616724738676,
+ "grad_norm": 0.03397630900144577,
+ "learning_rate": 0.0005992153629161793,
+ "loss": 3.073423147201538,
+ "step": 182
+ },
+ {
+ "epoch": 2.543554006968641,
+ "grad_norm": 0.04135085269808769,
+ "learning_rate": 0.0005991958783709593,
+ "loss": 3.0808069705963135,
+ "step": 183
+ },
+ {
+ "epoch": 2.557491289198606,
+ "grad_norm": 0.03421049192547798,
+ "learning_rate": 0.0005991761551860702,
+ "loss": 3.0616936683654785,
+ "step": 184
+ },
+ {
+ "epoch": 2.571428571428571,
+ "grad_norm": 0.030827628448605537,
+ "learning_rate": 0.0005991561933774022,
+ "loss": 3.0656299591064453,
+ "step": 185
+ },
+ {
+ "epoch": 2.5853658536585367,
+ "grad_norm": 0.033190369606018066,
+ "learning_rate": 0.0005991359929610386,
+ "loss": 3.0479578971862793,
+ "step": 186
+ },
+ {
+ "epoch": 2.5993031358885017,
+ "grad_norm": 0.026774903759360313,
+ "learning_rate": 0.0005991155539532544,
+ "loss": 3.054133653640747,
+ "step": 187
+ },
+ {
+ "epoch": 2.6132404181184667,
+ "grad_norm": 0.03240266814827919,
+ "learning_rate": 0.0005990948763705167,
+ "loss": 3.0536394119262695,
+ "step": 188
+ },
+ {
+ "epoch": 2.6271777003484322,
+ "grad_norm": 0.04305516183376312,
+ "learning_rate": 0.0005990739602294852,
+ "loss": 3.048996925354004,
+ "step": 189
+ },
+ {
+ "epoch": 2.6411149825783973,
+ "grad_norm": 0.07109381258487701,
+ "learning_rate": 0.0005990528055470118,
+ "loss": 3.0558314323425293,
+ "step": 190
+ },
+ {
+ "epoch": 2.6550522648083623,
+ "grad_norm": 0.11467248201370239,
+ "learning_rate": 0.0005990314123401403,
+ "loss": 3.0587801933288574,
+ "step": 191
+ },
+ {
+ "epoch": 2.6689895470383274,
+ "grad_norm": 0.13839758932590485,
+ "learning_rate": 0.0005990097806261068,
+ "loss": 3.0634102821350098,
+ "step": 192
+ },
+ {
+ "epoch": 2.682926829268293,
+ "grad_norm": 0.09269433468580246,
+ "learning_rate": 0.0005989879104223397,
+ "loss": 3.0586462020874023,
+ "step": 193
+ },
+ {
+ "epoch": 2.696864111498258,
+ "grad_norm": 0.0611812099814415,
+ "learning_rate": 0.0005989658017464593,
+ "loss": 3.054201602935791,
+ "step": 194
+ },
+ {
+ "epoch": 2.710801393728223,
+ "grad_norm": 0.05347125604748726,
+ "learning_rate": 0.0005989434546162782,
+ "loss": 3.054572105407715,
+ "step": 195
+ },
+ {
+ "epoch": 2.7247386759581884,
+ "grad_norm": 0.05996708199381828,
+ "learning_rate": 0.0005989208690498012,
+ "loss": 3.0486035346984863,
+ "step": 196
+ },
+ {
+ "epoch": 2.7386759581881535,
+ "grad_norm": 0.06146618723869324,
+ "learning_rate": 0.0005988980450652248,
+ "loss": 3.0344629287719727,
+ "step": 197
+ },
+ {
+ "epoch": 2.7526132404181185,
+ "grad_norm": 0.04754327982664108,
+ "learning_rate": 0.0005988749826809381,
+ "loss": 3.0211029052734375,
+ "step": 198
+ },
+ {
+ "epoch": 2.7665505226480835,
+ "grad_norm": 0.044388528913259506,
+ "learning_rate": 0.0005988516819155222,
+ "loss": 3.034595012664795,
+ "step": 199
+ },
+ {
+ "epoch": 2.7804878048780486,
+ "grad_norm": 0.04255649819970131,
+ "learning_rate": 0.0005988281427877498,
+ "loss": 3.037287950515747,
+ "step": 200
+ },
+ {
+ "epoch": 2.794425087108014,
+ "grad_norm": 0.043139949440956116,
+ "learning_rate": 0.000598804365316586,
+ "loss": 3.0366177558898926,
+ "step": 201
+ },
+ {
+ "epoch": 2.808362369337979,
+ "grad_norm": 0.03383412957191467,
+ "learning_rate": 0.0005987803495211879,
+ "loss": 3.033888101577759,
+ "step": 202
+ },
+ {
+ "epoch": 2.822299651567944,
+ "grad_norm": 0.03446805849671364,
+ "learning_rate": 0.0005987560954209047,
+ "loss": 3.022144079208374,
+ "step": 203
+ },
+ {
+ "epoch": 2.8362369337979096,
+ "grad_norm": 0.029725519940257072,
+ "learning_rate": 0.0005987316030352773,
+ "loss": 3.0208263397216797,
+ "step": 204
+ },
+ {
+ "epoch": 2.8501742160278747,
+ "grad_norm": 0.030237704515457153,
+ "learning_rate": 0.000598706872384039,
+ "loss": 3.0251193046569824,
+ "step": 205
+ },
+ {
+ "epoch": 2.8641114982578397,
+ "grad_norm": 0.03186488524079323,
+ "learning_rate": 0.0005986819034871147,
+ "loss": 3.0246212482452393,
+ "step": 206
+ },
+ {
+ "epoch": 2.8780487804878048,
+ "grad_norm": 0.02844928577542305,
+ "learning_rate": 0.0005986566963646214,
+ "loss": 3.0075716972351074,
+ "step": 207
+ },
+ {
+ "epoch": 2.89198606271777,
+ "grad_norm": 0.0350780263543129,
+ "learning_rate": 0.000598631251036868,
+ "loss": 3.0121424198150635,
+ "step": 208
+ },
+ {
+ "epoch": 2.9059233449477353,
+ "grad_norm": 0.04267824813723564,
+ "learning_rate": 0.0005986055675243555,
+ "loss": 3.0099010467529297,
+ "step": 209
+ },
+ {
+ "epoch": 2.9198606271777003,
+ "grad_norm": 0.042932625859975815,
+ "learning_rate": 0.0005985796458477765,
+ "loss": 3.0122969150543213,
+ "step": 210
+ },
+ {
+ "epoch": 2.9337979094076654,
+ "grad_norm": 0.04570756480097771,
+ "learning_rate": 0.0005985534860280155,
+ "loss": 3.0111446380615234,
+ "step": 211
+ },
+ {
+ "epoch": 2.947735191637631,
+ "grad_norm": 0.04473821446299553,
+ "learning_rate": 0.0005985270880861493,
+ "loss": 2.9976413249969482,
+ "step": 212
+ },
+ {
+ "epoch": 2.961672473867596,
+ "grad_norm": 0.040896713733673096,
+ "learning_rate": 0.0005985004520434462,
+ "loss": 2.9942758083343506,
+ "step": 213
+ },
+ {
+ "epoch": 2.975609756097561,
+ "grad_norm": 0.04459039121866226,
+ "learning_rate": 0.000598473577921366,
+ "loss": 2.998690128326416,
+ "step": 214
+ },
+ {
+ "epoch": 2.989547038327526,
+ "grad_norm": 0.039927951991558075,
+ "learning_rate": 0.0005984464657415611,
+ "loss": 2.988520383834839,
+ "step": 215
+ },
+ {
+ "epoch": 3.0,
+ "grad_norm": 0.030261589214205742,
+ "learning_rate": 0.0005984191155258751,
+ "loss": 2.2433667182922363,
+ "step": 216
+ },
+ {
+ "epoch": 3.0,
+ "eval_loss": 0.7514154314994812,
+ "eval_runtime": 37.2184,
+ "eval_samples_per_second": 65.613,
+ "eval_steps_per_second": 0.537,
+ "step": 216
+ },
+ {
+ "epoch": 3.013937282229965,
+ "grad_norm": 0.03271438181400299,
+ "learning_rate": 0.0005983915272963436,
+ "loss": 2.983100652694702,
+ "step": 217
+ },
+ {
+ "epoch": 3.0278745644599305,
+ "grad_norm": 0.045161835849285126,
+ "learning_rate": 0.0005983637010751941,
+ "loss": 2.9824085235595703,
+ "step": 218
+ },
+ {
+ "epoch": 3.0418118466898956,
+ "grad_norm": 0.041259463876485825,
+ "learning_rate": 0.0005983356368848455,
+ "loss": 2.980112075805664,
+ "step": 219
+ },
+ {
+ "epoch": 3.0557491289198606,
+ "grad_norm": 0.04854132980108261,
+ "learning_rate": 0.0005983073347479086,
+ "loss": 2.9802699089050293,
+ "step": 220
+ },
+ {
+ "epoch": 3.0696864111498257,
+ "grad_norm": 0.06712493300437927,
+ "learning_rate": 0.000598278794687186,
+ "loss": 2.963736057281494,
+ "step": 221
+ },
+ {
+ "epoch": 3.083623693379791,
+ "grad_norm": 0.07551158964633942,
+ "learning_rate": 0.0005982500167256719,
+ "loss": 2.9780850410461426,
+ "step": 222
+ },
+ {
+ "epoch": 3.097560975609756,
+ "grad_norm": 0.1004587933421135,
+ "learning_rate": 0.0005982210008865522,
+ "loss": 2.982564926147461,
+ "step": 223
+ },
+ {
+ "epoch": 3.1114982578397212,
+ "grad_norm": 0.12604698538780212,
+ "learning_rate": 0.0005981917471932045,
+ "loss": 2.994123697280884,
+ "step": 224
+ },
+ {
+ "epoch": 3.1254355400696863,
+ "grad_norm": 0.13300281763076782,
+ "learning_rate": 0.0005981622556691978,
+ "loss": 3.0030934810638428,
+ "step": 225
+ },
+ {
+ "epoch": 3.1393728222996518,
+ "grad_norm": 0.09192433208227158,
+ "learning_rate": 0.0005981325263382931,
+ "loss": 2.99415922164917,
+ "step": 226
+ },
+ {
+ "epoch": 3.153310104529617,
+ "grad_norm": 0.07332997024059296,
+ "learning_rate": 0.0005981025592244425,
+ "loss": 2.9832448959350586,
+ "step": 227
+ },
+ {
+ "epoch": 3.167247386759582,
+ "grad_norm": 0.05673393979668617,
+ "learning_rate": 0.00059807235435179,
+ "loss": 2.9781603813171387,
+ "step": 228
+ },
+ {
+ "epoch": 3.181184668989547,
+ "grad_norm": 0.05591209977865219,
+ "learning_rate": 0.0005980419117446715,
+ "loss": 2.9844987392425537,
+ "step": 229
+ },
+ {
+ "epoch": 3.1951219512195124,
+ "grad_norm": 0.04706789553165436,
+ "learning_rate": 0.0005980112314276138,
+ "loss": 2.9794564247131348,
+ "step": 230
+ },
+ {
+ "epoch": 3.2090592334494774,
+ "grad_norm": 0.04533008486032486,
+ "learning_rate": 0.0005979803134253354,
+ "loss": 2.963930606842041,
+ "step": 231
+ },
+ {
+ "epoch": 3.2229965156794425,
+ "grad_norm": 0.0363367535173893,
+ "learning_rate": 0.0005979491577627464,
+ "loss": 2.9743711948394775,
+ "step": 232
+ },
+ {
+ "epoch": 3.2369337979094075,
+ "grad_norm": 0.035832252353429794,
+ "learning_rate": 0.0005979177644649485,
+ "loss": 2.9637725353240967,
+ "step": 233
+ },
+ {
+ "epoch": 3.250871080139373,
+ "grad_norm": 0.03634851798415184,
+ "learning_rate": 0.0005978861335572346,
+ "loss": 2.971634864807129,
+ "step": 234
+ },
+ {
+ "epoch": 3.264808362369338,
+ "grad_norm": 0.036877233535051346,
+ "learning_rate": 0.0005978542650650892,
+ "loss": 2.960113286972046,
+ "step": 235
+ },
+ {
+ "epoch": 3.278745644599303,
+ "grad_norm": 0.02930021658539772,
+ "learning_rate": 0.0005978221590141881,
+ "loss": 2.948853015899658,
+ "step": 236
+ },
+ {
+ "epoch": 3.292682926829268,
+ "grad_norm": 0.029241658747196198,
+ "learning_rate": 0.0005977898154303987,
+ "loss": 2.957648277282715,
+ "step": 237
+ },
+ {
+ "epoch": 3.3066202090592336,
+ "grad_norm": 0.029683494940400124,
+ "learning_rate": 0.0005977572343397794,
+ "loss": 2.9501960277557373,
+ "step": 238
+ },
+ {
+ "epoch": 3.3205574912891986,
+ "grad_norm": 0.028418797999620438,
+ "learning_rate": 0.0005977244157685805,
+ "loss": 2.9593586921691895,
+ "step": 239
+ },
+ {
+ "epoch": 3.3344947735191637,
+ "grad_norm": 0.029084153473377228,
+ "learning_rate": 0.000597691359743243,
+ "loss": 2.957581043243408,
+ "step": 240
+ },
+ {
+ "epoch": 3.3484320557491287,
+ "grad_norm": 0.03031332418322563,
+ "learning_rate": 0.0005976580662903999,
+ "loss": 2.9465126991271973,
+ "step": 241
+ },
+ {
+ "epoch": 3.362369337979094,
+ "grad_norm": 0.028176147490739822,
+ "learning_rate": 0.0005976245354368749,
+ "loss": 2.9427034854888916,
+ "step": 242
+ },
+ {
+ "epoch": 3.3763066202090593,
+ "grad_norm": 0.025935526937246323,
+ "learning_rate": 0.0005975907672096832,
+ "loss": 2.933248996734619,
+ "step": 243
+ },
+ {
+ "epoch": 3.3902439024390243,
+ "grad_norm": 0.026524877175688744,
+ "learning_rate": 0.0005975567616360313,
+ "loss": 2.9334826469421387,
+ "step": 244
+ },
+ {
+ "epoch": 3.40418118466899,
+ "grad_norm": 0.026807013899087906,
+ "learning_rate": 0.0005975225187433169,
+ "loss": 2.9502480030059814,
+ "step": 245
+ },
+ {
+ "epoch": 3.418118466898955,
+ "grad_norm": 0.026440076529979706,
+ "learning_rate": 0.000597488038559129,
+ "loss": 2.9336085319519043,
+ "step": 246
+ },
+ {
+ "epoch": 3.43205574912892,
+ "grad_norm": 0.02752632275223732,
+ "learning_rate": 0.0005974533211112474,
+ "loss": 2.937425374984741,
+ "step": 247
+ },
+ {
+ "epoch": 3.445993031358885,
+ "grad_norm": 0.027490021660923958,
+ "learning_rate": 0.0005974183664276434,
+ "loss": 2.9357755184173584,
+ "step": 248
+ },
+ {
+ "epoch": 3.45993031358885,
+ "grad_norm": 0.03389354050159454,
+ "learning_rate": 0.0005973831745364795,
+ "loss": 2.934713363647461,
+ "step": 249
+ },
+ {
+ "epoch": 3.4738675958188154,
+ "grad_norm": 0.042289797216653824,
+ "learning_rate": 0.000597347745466109,
+ "loss": 2.9363629817962646,
+ "step": 250
+ },
+ {
+ "epoch": 3.4878048780487805,
+ "grad_norm": 0.07276978343725204,
+ "learning_rate": 0.0005973120792450766,
+ "loss": 2.946735382080078,
+ "step": 251
+ },
+ {
+ "epoch": 3.5017421602787455,
+ "grad_norm": 0.09471797943115234,
+ "learning_rate": 0.0005972761759021178,
+ "loss": 2.9240806102752686,
+ "step": 252
+ },
+ {
+ "epoch": 3.515679442508711,
+ "grad_norm": 0.09386000782251358,
+ "learning_rate": 0.0005972400354661594,
+ "loss": 2.9194839000701904,
+ "step": 253
+ },
+ {
+ "epoch": 3.529616724738676,
+ "grad_norm": 0.1176624521613121,
+ "learning_rate": 0.000597203657966319,
+ "loss": 2.9324824810028076,
+ "step": 254
+ },
+ {
+ "epoch": 3.543554006968641,
+ "grad_norm": 0.0723927766084671,
+ "learning_rate": 0.0005971670434319053,
+ "loss": 2.932208776473999,
+ "step": 255
+ },
+ {
+ "epoch": 3.557491289198606,
+ "grad_norm": 0.06314370036125183,
+ "learning_rate": 0.0005971301918924182,
+ "loss": 2.936681032180786,
+ "step": 256
+ },
+ {
+ "epoch": 3.571428571428571,
+ "grad_norm": 0.06432153284549713,
+ "learning_rate": 0.0005970931033775479,
+ "loss": 2.924858331680298,
+ "step": 257
+ },
+ {
+ "epoch": 3.5853658536585367,
+ "grad_norm": 0.07495246082544327,
+ "learning_rate": 0.0005970557779171763,
+ "loss": 2.918736696243286,
+ "step": 258
+ },
+ {
+ "epoch": 3.5993031358885017,
+ "grad_norm": 0.058007508516311646,
+ "learning_rate": 0.0005970182155413756,
+ "loss": 2.92120361328125,
+ "step": 259
+ },
+ {
+ "epoch": 3.6132404181184667,
+ "grad_norm": 0.047224972397089005,
+ "learning_rate": 0.0005969804162804093,
+ "loss": 2.9181740283966064,
+ "step": 260
+ },
+ {
+ "epoch": 3.6271777003484322,
+ "grad_norm": 0.04775157943367958,
+ "learning_rate": 0.0005969423801647314,
+ "loss": 2.9145660400390625,
+ "step": 261
+ },
+ {
+ "epoch": 3.6411149825783973,
+ "grad_norm": 0.05087953805923462,
+ "learning_rate": 0.0005969041072249872,
+ "loss": 2.9094574451446533,
+ "step": 262
+ },
+ {
+ "epoch": 3.6550522648083623,
+ "grad_norm": 0.047325216233730316,
+ "learning_rate": 0.0005968655974920124,
+ "loss": 2.9127790927886963,
+ "step": 263
+ },
+ {
+ "epoch": 3.6689895470383274,
+ "grad_norm": 0.04005662724375725,
+ "learning_rate": 0.0005968268509968335,
+ "loss": 2.9124414920806885,
+ "step": 264
+ },
+ {
+ "epoch": 3.682926829268293,
+ "grad_norm": 0.03284832462668419,
+ "learning_rate": 0.0005967878677706678,
+ "loss": 2.897369861602783,
+ "step": 265
+ },
+ {
+ "epoch": 3.696864111498258,
+ "grad_norm": 0.03538643941283226,
+ "learning_rate": 0.0005967486478449236,
+ "loss": 2.8912787437438965,
+ "step": 266
+ },
+ {
+ "epoch": 3.710801393728223,
+ "grad_norm": 0.0338534340262413,
+ "learning_rate": 0.0005967091912511996,
+ "loss": 2.904737949371338,
+ "step": 267
+ },
+ {
+ "epoch": 3.7247386759581884,
+ "grad_norm": 0.03059707209467888,
+ "learning_rate": 0.0005966694980212851,
+ "loss": 2.910109519958496,
+ "step": 268
+ },
+ {
+ "epoch": 3.7386759581881535,
+ "grad_norm": 0.027421824634075165,
+ "learning_rate": 0.0005966295681871604,
+ "loss": 2.8953540325164795,
+ "step": 269
+ },
+ {
+ "epoch": 3.7526132404181185,
+ "grad_norm": 0.031095022335648537,
+ "learning_rate": 0.0005965894017809962,
+ "loss": 2.8983192443847656,
+ "step": 270
+ },
+ {
+ "epoch": 3.7665505226480835,
+ "grad_norm": 0.03075260855257511,
+ "learning_rate": 0.0005965489988351539,
+ "loss": 2.9002010822296143,
+ "step": 271
+ },
+ {
+ "epoch": 3.7804878048780486,
+ "grad_norm": 0.030917232856154442,
+ "learning_rate": 0.0005965083593821853,
+ "loss": 2.8886561393737793,
+ "step": 272
+ },
+ {
+ "epoch": 3.794425087108014,
+ "grad_norm": 0.03267431631684303,
+ "learning_rate": 0.000596467483454833,
+ "loss": 2.8845345973968506,
+ "step": 273
+ },
+ {
+ "epoch": 3.808362369337979,
+ "grad_norm": 0.034112598747015,
+ "learning_rate": 0.0005964263710860299,
+ "loss": 2.8842294216156006,
+ "step": 274
+ },
+ {
+ "epoch": 3.822299651567944,
+ "grad_norm": 0.038153596222400665,
+ "learning_rate": 0.0005963850223088995,
+ "loss": 2.866973400115967,
+ "step": 275
+ },
+ {
+ "epoch": 3.8362369337979096,
+ "grad_norm": 0.033103615045547485,
+ "learning_rate": 0.0005963434371567559,
+ "loss": 2.8709988594055176,
+ "step": 276
+ },
+ {
+ "epoch": 3.8501742160278747,
+ "grad_norm": 0.030708827078342438,
+ "learning_rate": 0.0005963016156631033,
+ "loss": 2.8715577125549316,
+ "step": 277
+ },
+ {
+ "epoch": 3.8641114982578397,
+ "grad_norm": 0.03427499905228615,
+ "learning_rate": 0.0005962595578616367,
+ "loss": 2.8766040802001953,
+ "step": 278
+ },
+ {
+ "epoch": 3.8780487804878048,
+ "grad_norm": 0.042216721922159195,
+ "learning_rate": 0.0005962172637862411,
+ "loss": 2.8672261238098145,
+ "step": 279
+ },
+ {
+ "epoch": 3.89198606271777,
+ "grad_norm": 0.034656424075365067,
+ "learning_rate": 0.0005961747334709924,
+ "loss": 2.860102653503418,
+ "step": 280
+ },
+ {
+ "epoch": 3.9059233449477353,
+ "grad_norm": 0.03288520127534866,
+ "learning_rate": 0.0005961319669501562,
+ "loss": 2.8540444374084473,
+ "step": 281
+ },
+ {
+ "epoch": 3.9198606271777003,
+ "grad_norm": 0.041709382086992264,
+ "learning_rate": 0.0005960889642581887,
+ "loss": 2.872581958770752,
+ "step": 282
+ },
+ {
+ "epoch": 3.9337979094076654,
+ "grad_norm": 0.04955075681209564,
+ "learning_rate": 0.0005960457254297367,
+ "loss": 2.874307632446289,
+ "step": 283
+ },
+ {
+ "epoch": 3.947735191637631,
+ "grad_norm": 0.05372118577361107,
+ "learning_rate": 0.0005960022504996369,
+ "loss": 2.861191749572754,
+ "step": 284
+ },
+ {
+ "epoch": 3.961672473867596,
+ "grad_norm": 0.05855486914515495,
+ "learning_rate": 0.0005959585395029158,
+ "loss": 2.8542709350585938,
+ "step": 285
+ },
+ {
+ "epoch": 3.975609756097561,
+ "grad_norm": 0.05442376434803009,
+ "learning_rate": 0.000595914592474791,
+ "loss": 2.858576536178589,
+ "step": 286
+ },
+ {
+ "epoch": 3.989547038327526,
+ "grad_norm": 0.06468870490789413,
+ "learning_rate": 0.0005958704094506698,
+ "loss": 2.8510026931762695,
+ "step": 287
+ },
+ {
+ "epoch": 4.0,
+ "grad_norm": 0.038657791912555695,
+ "learning_rate": 0.0005958259904661497,
+ "loss": 2.1422531604766846,
+ "step": 288
+ },
+ {
+ "epoch": 4.0,
+ "eval_loss": 0.7195093631744385,
+ "eval_runtime": 39.1927,
+ "eval_samples_per_second": 62.308,
+ "eval_steps_per_second": 0.51,
+ "step": 288
+ },
+ {
+ "epoch": 4.013937282229965,
+ "grad_norm": 0.041369788348674774,
+ "learning_rate": 0.0005957813355570178,
+ "loss": 2.8407950401306152,
+ "step": 289
+ },
+ {
+ "epoch": 4.02787456445993,
+ "grad_norm": 0.045097772032022476,
+ "learning_rate": 0.0005957364447592524,
+ "loss": 2.8446922302246094,
+ "step": 290
+ },
+ {
+ "epoch": 4.041811846689895,
+ "grad_norm": 0.05102979391813278,
+ "learning_rate": 0.0005956913181090208,
+ "loss": 2.8316476345062256,
+ "step": 291
+ },
+ {
+ "epoch": 4.055749128919861,
+ "grad_norm": 0.05429252237081528,
+ "learning_rate": 0.0005956459556426809,
+ "loss": 2.8510334491729736,
+ "step": 292
+ },
+ {
+ "epoch": 4.069686411149826,
+ "grad_norm": 0.0761060118675232,
+ "learning_rate": 0.0005956003573967802,
+ "loss": 2.8289966583251953,
+ "step": 293
+ },
+ {
+ "epoch": 4.083623693379791,
+ "grad_norm": 0.09525997191667557,
+ "learning_rate": 0.0005955545234080567,
+ "loss": 2.843992233276367,
+ "step": 294
+ },
+ {
+ "epoch": 4.097560975609756,
+ "grad_norm": 0.09715712070465088,
+ "learning_rate": 0.0005955084537134378,
+ "loss": 2.8543810844421387,
+ "step": 295
+ },
+ {
+ "epoch": 4.111498257839721,
+ "grad_norm": 0.0634903833270073,
+ "learning_rate": 0.0005954621483500411,
+ "loss": 2.8456456661224365,
+ "step": 296
+ },
+ {
+ "epoch": 4.125435540069686,
+ "grad_norm": 0.05771167576313019,
+ "learning_rate": 0.0005954156073551739,
+ "loss": 2.8387022018432617,
+ "step": 297
+ },
+ {
+ "epoch": 4.139372822299651,
+ "grad_norm": 0.05440817028284073,
+ "learning_rate": 0.0005953688307663336,
+ "loss": 2.841508388519287,
+ "step": 298
+ },
+ {
+ "epoch": 4.153310104529616,
+ "grad_norm": 0.0550493523478508,
+ "learning_rate": 0.0005953218186212072,
+ "loss": 2.833531618118286,
+ "step": 299
+ },
+ {
+ "epoch": 4.167247386759582,
+ "grad_norm": 0.04252418503165245,
+ "learning_rate": 0.0005952745709576714,
+ "loss": 2.8254685401916504,
+ "step": 300
+ },
+ {
+ "epoch": 4.181184668989547,
+ "grad_norm": 0.042833492159843445,
+ "learning_rate": 0.000595227087813793,
+ "loss": 2.8289575576782227,
+ "step": 301
+ },
+ {
+ "epoch": 4.195121951219512,
+ "grad_norm": 0.038360171020030975,
+ "learning_rate": 0.0005951793692278282,
+ "loss": 2.836550712585449,
+ "step": 302
+ },
+ {
+ "epoch": 4.209059233449477,
+ "grad_norm": 0.03655572608113289,
+ "learning_rate": 0.0005951314152382229,
+ "loss": 2.8222808837890625,
+ "step": 303
+ },
+ {
+ "epoch": 4.2229965156794425,
+ "grad_norm": 0.03215418756008148,
+ "learning_rate": 0.0005950832258836129,
+ "loss": 2.818066120147705,
+ "step": 304
+ },
+ {
+ "epoch": 4.2369337979094075,
+ "grad_norm": 0.031601350754499435,
+ "learning_rate": 0.0005950348012028235,
+ "loss": 2.809666395187378,
+ "step": 305
+ },
+ {
+ "epoch": 4.2508710801393725,
+ "grad_norm": 0.03221198916435242,
+ "learning_rate": 0.0005949861412348694,
+ "loss": 2.8137047290802,
+ "step": 306
+ },
+ {
+ "epoch": 4.264808362369338,
+ "grad_norm": 0.03107992745935917,
+ "learning_rate": 0.0005949372460189555,
+ "loss": 2.822840690612793,
+ "step": 307
+ },
+ {
+ "epoch": 4.2787456445993035,
+ "grad_norm": 0.032328397035598755,
+ "learning_rate": 0.0005948881155944753,
+ "loss": 2.8012430667877197,
+ "step": 308
+ },
+ {
+ "epoch": 4.2926829268292686,
+ "grad_norm": 0.029429661110043526,
+ "learning_rate": 0.0005948387500010126,
+ "loss": 2.806474447250366,
+ "step": 309
+ },
+ {
+ "epoch": 4.306620209059234,
+ "grad_norm": 0.03430404141545296,
+ "learning_rate": 0.0005947891492783401,
+ "loss": 2.7917184829711914,
+ "step": 310
+ },
+ {
+ "epoch": 4.320557491289199,
+ "grad_norm": 0.03543714061379433,
+ "learning_rate": 0.0005947393134664205,
+ "loss": 2.798417091369629,
+ "step": 311
+ },
+ {
+ "epoch": 4.334494773519164,
+ "grad_norm": 0.04099712520837784,
+ "learning_rate": 0.0005946892426054054,
+ "loss": 2.793095588684082,
+ "step": 312
+ },
+ {
+ "epoch": 4.348432055749129,
+ "grad_norm": 0.046607524156570435,
+ "learning_rate": 0.0005946389367356361,
+ "loss": 2.807809829711914,
+ "step": 313
+ },
+ {
+ "epoch": 4.362369337979094,
+ "grad_norm": 0.048917099833488464,
+ "learning_rate": 0.0005945883958976432,
+ "loss": 2.8017094135284424,
+ "step": 314
+ },
+ {
+ "epoch": 4.376306620209059,
+ "grad_norm": 0.05221967399120331,
+ "learning_rate": 0.0005945376201321464,
+ "loss": 2.7990846633911133,
+ "step": 315
+ },
+ {
+ "epoch": 4.390243902439025,
+ "grad_norm": 0.05263383314013481,
+ "learning_rate": 0.0005944866094800548,
+ "loss": 2.810983657836914,
+ "step": 316
+ },
+ {
+ "epoch": 4.40418118466899,
+ "grad_norm": 0.04930173233151436,
+ "learning_rate": 0.0005944353639824669,
+ "loss": 2.7989790439605713,
+ "step": 317
+ },
+ {
+ "epoch": 4.418118466898955,
+ "grad_norm": 0.05484982952475548,
+ "learning_rate": 0.0005943838836806702,
+ "loss": 2.7852704524993896,
+ "step": 318
+ },
+ {
+ "epoch": 4.43205574912892,
+ "grad_norm": 0.04991631582379341,
+ "learning_rate": 0.0005943321686161414,
+ "loss": 2.7944440841674805,
+ "step": 319
+ },
+ {
+ "epoch": 4.445993031358885,
+ "grad_norm": 0.034856196492910385,
+ "learning_rate": 0.0005942802188305464,
+ "loss": 2.7851901054382324,
+ "step": 320
+ },
+ {
+ "epoch": 4.45993031358885,
+ "grad_norm": 0.038153354078531265,
+ "learning_rate": 0.0005942280343657403,
+ "loss": 2.777986526489258,
+ "step": 321
+ },
+ {
+ "epoch": 4.473867595818815,
+ "grad_norm": 0.04138852655887604,
+ "learning_rate": 0.0005941756152637671,
+ "loss": 2.7781941890716553,
+ "step": 322
+ },
+ {
+ "epoch": 4.487804878048781,
+ "grad_norm": 0.04018627852201462,
+ "learning_rate": 0.00059412296156686,
+ "loss": 2.7934627532958984,
+ "step": 323
+ },
+ {
+ "epoch": 4.501742160278746,
+ "grad_norm": 0.03592175245285034,
+ "learning_rate": 0.0005940700733174409,
+ "loss": 2.780992031097412,
+ "step": 324
+ },
+ {
+ "epoch": 4.515679442508711,
+ "grad_norm": 0.034620169550180435,
+ "learning_rate": 0.0005940169505581213,
+ "loss": 2.7754831314086914,
+ "step": 325
+ },
+ {
+ "epoch": 4.529616724738676,
+ "grad_norm": 0.03244427964091301,
+ "learning_rate": 0.0005939635933317009,
+ "loss": 2.7737035751342773,
+ "step": 326
+ },
+ {
+ "epoch": 4.543554006968641,
+ "grad_norm": 0.0361688956618309,
+ "learning_rate": 0.0005939100016811688,
+ "loss": 2.7515547275543213,
+ "step": 327
+ },
+ {
+ "epoch": 4.557491289198606,
+ "grad_norm": 0.03722141310572624,
+ "learning_rate": 0.0005938561756497028,
+ "loss": 2.769011974334717,
+ "step": 328
+ },
+ {
+ "epoch": 4.571428571428571,
+ "grad_norm": 0.0431540347635746,
+ "learning_rate": 0.0005938021152806696,
+ "loss": 2.7755231857299805,
+ "step": 329
+ },
+ {
+ "epoch": 4.585365853658536,
+ "grad_norm": 0.04175153374671936,
+ "learning_rate": 0.0005937478206176248,
+ "loss": 2.767477512359619,
+ "step": 330
+ },
+ {
+ "epoch": 4.599303135888501,
+ "grad_norm": 0.04184363782405853,
+ "learning_rate": 0.0005936932917043124,
+ "loss": 2.775984048843384,
+ "step": 331
+ },
+ {
+ "epoch": 4.613240418118467,
+ "grad_norm": 0.04054928943514824,
+ "learning_rate": 0.0005936385285846651,
+ "loss": 2.7669193744659424,
+ "step": 332
+ },
+ {
+ "epoch": 4.627177700348432,
+ "grad_norm": 0.039442483335733414,
+ "learning_rate": 0.0005935835313028052,
+ "loss": 2.7557153701782227,
+ "step": 333
+ },
+ {
+ "epoch": 4.641114982578397,
+ "grad_norm": 0.04334413632750511,
+ "learning_rate": 0.0005935282999030426,
+ "loss": 2.76118803024292,
+ "step": 334
+ },
+ {
+ "epoch": 4.655052264808362,
+ "grad_norm": 0.04821610450744629,
+ "learning_rate": 0.0005934728344298763,
+ "loss": 2.755122184753418,
+ "step": 335
+ },
+ {
+ "epoch": 4.668989547038327,
+ "grad_norm": 0.05259500443935394,
+ "learning_rate": 0.000593417134927994,
+ "loss": 2.763730764389038,
+ "step": 336
+ },
+ {
+ "epoch": 4.682926829268292,
+ "grad_norm": 0.05462924763560295,
+ "learning_rate": 0.0005933612014422715,
+ "loss": 2.7538461685180664,
+ "step": 337
+ },
+ {
+ "epoch": 4.696864111498257,
+ "grad_norm": 0.0755213275551796,
+ "learning_rate": 0.0005933050340177736,
+ "loss": 2.7565760612487793,
+ "step": 338
+ },
+ {
+ "epoch": 4.710801393728223,
+ "grad_norm": 0.09036742150783539,
+ "learning_rate": 0.0005932486326997534,
+ "loss": 2.7742908000946045,
+ "step": 339
+ },
+ {
+ "epoch": 4.724738675958188,
+ "grad_norm": 0.07687609642744064,
+ "learning_rate": 0.0005931919975336523,
+ "loss": 2.7776336669921875,
+ "step": 340
+ },
+ {
+ "epoch": 4.7386759581881535,
+ "grad_norm": 0.06167550012469292,
+ "learning_rate": 0.0005931351285651004,
+ "loss": 2.7571194171905518,
+ "step": 341
+ },
+ {
+ "epoch": 4.7526132404181185,
+ "grad_norm": 0.05498389154672623,
+ "learning_rate": 0.0005930780258399157,
+ "loss": 2.766094207763672,
+ "step": 342
+ },
+ {
+ "epoch": 4.7665505226480835,
+ "grad_norm": 0.056576769798994064,
+ "learning_rate": 0.0005930206894041051,
+ "loss": 2.759814977645874,
+ "step": 343
+ },
+ {
+ "epoch": 4.780487804878049,
+ "grad_norm": 0.05287479609251022,
+ "learning_rate": 0.0005929631193038634,
+ "loss": 2.7653424739837646,
+ "step": 344
+ },
+ {
+ "epoch": 4.794425087108014,
+ "grad_norm": 0.05006227642297745,
+ "learning_rate": 0.0005929053155855739,
+ "loss": 2.746647357940674,
+ "step": 345
+ },
+ {
+ "epoch": 4.80836236933798,
+ "grad_norm": 0.0428367517888546,
+ "learning_rate": 0.0005928472782958079,
+ "loss": 2.748798131942749,
+ "step": 346
+ },
+ {
+ "epoch": 4.822299651567945,
+ "grad_norm": 0.04800762981176376,
+ "learning_rate": 0.000592789007481325,
+ "loss": 2.7554736137390137,
+ "step": 347
+ },
+ {
+ "epoch": 4.83623693379791,
+ "grad_norm": 0.04984979331493378,
+ "learning_rate": 0.0005927305031890732,
+ "loss": 2.738473415374756,
+ "step": 348
+ },
+ {
+ "epoch": 4.850174216027875,
+ "grad_norm": 0.0404483824968338,
+ "learning_rate": 0.000592671765466188,
+ "loss": 2.7486448287963867,
+ "step": 349
+ },
+ {
+ "epoch": 4.86411149825784,
+ "grad_norm": 0.03785628825426102,
+ "learning_rate": 0.0005926127943599934,
+ "loss": 2.7317609786987305,
+ "step": 350
+ },
+ {
+ "epoch": 4.878048780487805,
+ "grad_norm": 0.04446744546294212,
+ "learning_rate": 0.0005925535899180015,
+ "loss": 2.750211238861084,
+ "step": 351
+ },
+ {
+ "epoch": 4.89198606271777,
+ "grad_norm": 0.0561913438141346,
+ "learning_rate": 0.0005924941521879122,
+ "loss": 2.7429988384246826,
+ "step": 352
+ },
+ {
+ "epoch": 4.905923344947735,
+ "grad_norm": 0.06165647506713867,
+ "learning_rate": 0.0005924344812176134,
+ "loss": 2.7389450073242188,
+ "step": 353
+ },
+ {
+ "epoch": 4.9198606271777,
+ "grad_norm": 0.04764621704816818,
+ "learning_rate": 0.0005923745770551808,
+ "loss": 2.73350191116333,
+ "step": 354
+ },
+ {
+ "epoch": 4.933797909407666,
+ "grad_norm": 0.044994648545980453,
+ "learning_rate": 0.0005923144397488782,
+ "loss": 2.7248117923736572,
+ "step": 355
+ },
+ {
+ "epoch": 4.947735191637631,
+ "grad_norm": 0.044408753514289856,
+ "learning_rate": 0.0005922540693471572,
+ "loss": 2.7337656021118164,
+ "step": 356
+ },
+ {
+ "epoch": 4.961672473867596,
+ "grad_norm": 0.04064524918794632,
+ "learning_rate": 0.0005921934658986571,
+ "loss": 2.732268810272217,
+ "step": 357
+ },
+ {
+ "epoch": 4.975609756097561,
+ "grad_norm": 0.036805033683776855,
+ "learning_rate": 0.000592132629452205,
+ "loss": 2.7253570556640625,
+ "step": 358
+ },
+ {
+ "epoch": 4.989547038327526,
+ "grad_norm": 0.03321084752678871,
+ "learning_rate": 0.0005920715600568156,
+ "loss": 2.713101863861084,
+ "step": 359
+ },
+ {
+ "epoch": 5.0,
+ "grad_norm": 0.027469763532280922,
+ "learning_rate": 0.0005920102577616916,
+ "loss": 2.0416059494018555,
+ "step": 360
+ },
+ {
+ "epoch": 5.0,
+ "eval_loss": 0.6877280473709106,
+ "eval_runtime": 37.7369,
+ "eval_samples_per_second": 64.711,
+ "eval_steps_per_second": 0.53,
+ "step": 360
+ },
+ {
+ "epoch": 5.013937282229965,
+ "grad_norm": 0.035481102764606476,
+ "learning_rate": 0.0005919487226162231,
+ "loss": 2.6966300010681152,
+ "step": 361
+ },
+ {
+ "epoch": 5.02787456445993,
+ "grad_norm": 0.04075651615858078,
+ "learning_rate": 0.0005918869546699877,
+ "loss": 2.701756000518799,
+ "step": 362
+ },
+ {
+ "epoch": 5.041811846689895,
+ "grad_norm": 0.03847100958228111,
+ "learning_rate": 0.0005918249539727509,
+ "loss": 2.69856333732605,
+ "step": 363
+ },
+ {
+ "epoch": 5.055749128919861,
+ "grad_norm": 0.0439726859331131,
+ "learning_rate": 0.0005917627205744655,
+ "loss": 2.6956000328063965,
+ "step": 364
+ },
+ {
+ "epoch": 5.069686411149826,
+ "grad_norm": 0.043925508856773376,
+ "learning_rate": 0.0005917002545252719,
+ "loss": 2.7065486907958984,
+ "step": 365
+ },
+ {
+ "epoch": 5.083623693379791,
+ "grad_norm": 0.05349253863096237,
+ "learning_rate": 0.0005916375558754977,
+ "loss": 2.7032744884490967,
+ "step": 366
+ },
+ {
+ "epoch": 5.097560975609756,
+ "grad_norm": 0.04957803711295128,
+ "learning_rate": 0.0005915746246756581,
+ "loss": 2.6988987922668457,
+ "step": 367
+ },
+ {
+ "epoch": 5.111498257839721,
+ "grad_norm": 0.047412872314453125,
+ "learning_rate": 0.0005915114609764558,
+ "loss": 2.6921496391296387,
+ "step": 368
+ },
+ {
+ "epoch": 5.125435540069686,
+ "grad_norm": 0.047648534178733826,
+ "learning_rate": 0.0005914480648287804,
+ "loss": 2.691765308380127,
+ "step": 369
+ },
+ {
+ "epoch": 5.139372822299651,
+ "grad_norm": 0.05226794257760048,
+ "learning_rate": 0.0005913844362837093,
+ "loss": 2.7006325721740723,
+ "step": 370
+ },
+ {
+ "epoch": 5.153310104529616,
+ "grad_norm": 0.054041698575019836,
+ "learning_rate": 0.0005913205753925066,
+ "loss": 2.692309617996216,
+ "step": 371
+ },
+ {
+ "epoch": 5.167247386759582,
+ "grad_norm": 0.039680954068899155,
+ "learning_rate": 0.0005912564822066241,
+ "loss": 2.685819149017334,
+ "step": 372
+ },
+ {
+ "epoch": 5.181184668989547,
+ "grad_norm": 0.04104545712471008,
+ "learning_rate": 0.0005911921567777005,
+ "loss": 2.6913204193115234,
+ "step": 373
+ },
+ {
+ "epoch": 5.195121951219512,
+ "grad_norm": 0.037274859845638275,
+ "learning_rate": 0.0005911275991575613,
+ "loss": 2.692324161529541,
+ "step": 374
+ },
+ {
+ "epoch": 5.209059233449477,
+ "grad_norm": 0.038038160651922226,
+ "learning_rate": 0.0005910628093982198,
+ "loss": 2.6824822425842285,
+ "step": 375
+ },
+ {
+ "epoch": 5.2229965156794425,
+ "grad_norm": 0.04105817899107933,
+ "learning_rate": 0.0005909977875518759,
+ "loss": 2.6830384731292725,
+ "step": 376
+ },
+ {
+ "epoch": 5.2369337979094075,
+ "grad_norm": 0.04050105810165405,
+ "learning_rate": 0.0005909325336709164,
+ "loss": 2.676032066345215,
+ "step": 377
+ },
+ {
+ "epoch": 5.2508710801393725,
+ "grad_norm": 0.03780475631356239,
+ "learning_rate": 0.0005908670478079152,
+ "loss": 2.6765289306640625,
+ "step": 378
+ },
+ {
+ "epoch": 5.264808362369338,
+ "grad_norm": 0.03484981507062912,
+ "learning_rate": 0.000590801330015633,
+ "loss": 2.6808249950408936,
+ "step": 379
+ },
+ {
+ "epoch": 5.2787456445993035,
+ "grad_norm": 0.03091316856443882,
+ "learning_rate": 0.0005907353803470177,
+ "loss": 2.679382562637329,
+ "step": 380
+ },
+ {
+ "epoch": 5.2926829268292686,
+ "grad_norm": 0.03255805745720863,
+ "learning_rate": 0.0005906691988552034,
+ "loss": 2.685393810272217,
+ "step": 381
+ },
+ {
+ "epoch": 5.306620209059234,
+ "grad_norm": 0.037457507103681564,
+ "learning_rate": 0.0005906027855935115,
+ "loss": 2.6710822582244873,
+ "step": 382
+ },
+ {
+ "epoch": 5.320557491289199,
+ "grad_norm": 0.03654669225215912,
+ "learning_rate": 0.0005905361406154501,
+ "loss": 2.6762566566467285,
+ "step": 383
+ },
+ {
+ "epoch": 5.334494773519164,
+ "grad_norm": 0.03590100631117821,
+ "learning_rate": 0.0005904692639747137,
+ "loss": 2.6788597106933594,
+ "step": 384
+ },
+ {
+ "epoch": 5.348432055749129,
+ "grad_norm": 0.03647424280643463,
+ "learning_rate": 0.0005904021557251837,
+ "loss": 2.6785120964050293,
+ "step": 385
+ },
+ {
+ "epoch": 5.362369337979094,
+ "grad_norm": 0.035309527069330215,
+ "learning_rate": 0.0005903348159209277,
+ "loss": 2.679274082183838,
+ "step": 386
+ },
+ {
+ "epoch": 5.376306620209059,
+ "grad_norm": 0.035797759890556335,
+ "learning_rate": 0.0005902672446162007,
+ "loss": 2.663790702819824,
+ "step": 387
+ },
+ {
+ "epoch": 5.390243902439025,
+ "grad_norm": 0.034813620150089264,
+ "learning_rate": 0.0005901994418654432,
+ "loss": 2.661909818649292,
+ "step": 388
+ },
+ {
+ "epoch": 5.40418118466899,
+ "grad_norm": 0.03814723342657089,
+ "learning_rate": 0.0005901314077232829,
+ "loss": 2.6648290157318115,
+ "step": 389
+ },
+ {
+ "epoch": 5.418118466898955,
+ "grad_norm": 0.03819345310330391,
+ "learning_rate": 0.0005900631422445335,
+ "loss": 2.661344528198242,
+ "step": 390
+ },
+ {
+ "epoch": 5.43205574912892,
+ "grad_norm": 0.05034249275922775,
+ "learning_rate": 0.0005899946454841955,
+ "loss": 2.6723971366882324,
+ "step": 391
+ },
+ {
+ "epoch": 5.445993031358885,
+ "grad_norm": 0.05302279815077782,
+ "learning_rate": 0.0005899259174974553,
+ "loss": 2.6722166538238525,
+ "step": 392
+ },
+ {
+ "epoch": 5.45993031358885,
+ "grad_norm": 0.04576520621776581,
+ "learning_rate": 0.000589856958339686,
+ "loss": 2.650954008102417,
+ "step": 393
+ },
+ {
+ "epoch": 5.473867595818815,
+ "grad_norm": 0.04785747826099396,
+ "learning_rate": 0.0005897877680664465,
+ "loss": 2.658161163330078,
+ "step": 394
+ },
+ {
+ "epoch": 5.487804878048781,
+ "grad_norm": 0.0524369515478611,
+ "learning_rate": 0.0005897183467334822,
+ "loss": 2.66957688331604,
+ "step": 395
+ },
+ {
+ "epoch": 5.501742160278746,
+ "grad_norm": 0.05258813500404358,
+ "learning_rate": 0.0005896486943967249,
+ "loss": 2.66046142578125,
+ "step": 396
+ },
+ {
+ "epoch": 5.515679442508711,
+ "grad_norm": 0.05156350135803223,
+ "learning_rate": 0.0005895788111122919,
+ "loss": 2.6339619159698486,
+ "step": 397
+ },
+ {
+ "epoch": 5.529616724738676,
+ "grad_norm": 0.04716484993696213,
+ "learning_rate": 0.0005895086969364871,
+ "loss": 2.656726837158203,
+ "step": 398
+ },
+ {
+ "epoch": 5.543554006968641,
+ "grad_norm": 0.048213694244623184,
+ "learning_rate": 0.0005894383519258001,
+ "loss": 2.6740832328796387,
+ "step": 399
+ },
+ {
+ "epoch": 5.557491289198606,
+ "grad_norm": 0.046243470162153244,
+ "learning_rate": 0.0005893677761369066,
+ "loss": 2.65981125831604,
+ "step": 400
+ },
+ {
+ "epoch": 5.571428571428571,
+ "grad_norm": 0.04331960901618004,
+ "learning_rate": 0.0005892969696266683,
+ "loss": 2.637345790863037,
+ "step": 401
+ },
+ {
+ "epoch": 5.585365853658536,
+ "grad_norm": 0.04055584594607353,
+ "learning_rate": 0.0005892259324521328,
+ "loss": 2.6382877826690674,
+ "step": 402
+ },
+ {
+ "epoch": 5.599303135888501,
+ "grad_norm": 0.046962495893239975,
+ "learning_rate": 0.0005891546646705334,
+ "loss": 2.642883539199829,
+ "step": 403
+ },
+ {
+ "epoch": 5.613240418118467,
+ "grad_norm": 0.055259495973587036,
+ "learning_rate": 0.0005890831663392891,
+ "loss": 2.6498947143554688,
+ "step": 404
+ },
+ {
+ "epoch": 5.627177700348432,
+ "grad_norm": 0.05768313631415367,
+ "learning_rate": 0.0005890114375160052,
+ "loss": 2.6472978591918945,
+ "step": 405
+ },
+ {
+ "epoch": 5.641114982578397,
+ "grad_norm": 0.04900819808244705,
+ "learning_rate": 0.0005889394782584718,
+ "loss": 2.6596455574035645,
+ "step": 406
+ },
+ {
+ "epoch": 5.655052264808362,
+ "grad_norm": 0.053204163908958435,
+ "learning_rate": 0.0005888672886246656,
+ "loss": 2.6456780433654785,
+ "step": 407
+ },
+ {
+ "epoch": 5.668989547038327,
+ "grad_norm": 0.05327627807855606,
+ "learning_rate": 0.0005887948686727483,
+ "loss": 2.651031494140625,
+ "step": 408
+ },
+ {
+ "epoch": 5.682926829268292,
+ "grad_norm": 0.050564929842948914,
+ "learning_rate": 0.0005887222184610675,
+ "loss": 2.656858444213867,
+ "step": 409
+ },
+ {
+ "epoch": 5.696864111498257,
+ "grad_norm": 0.05613167583942413,
+ "learning_rate": 0.0005886493380481559,
+ "loss": 2.6408069133758545,
+ "step": 410
+ },
+ {
+ "epoch": 5.710801393728223,
+ "grad_norm": 0.05399465933442116,
+ "learning_rate": 0.0005885762274927322,
+ "loss": 2.6472203731536865,
+ "step": 411
+ },
+ {
+ "epoch": 5.724738675958188,
+ "grad_norm": 0.04919342324137688,
+ "learning_rate": 0.0005885028868537,
+ "loss": 2.656099319458008,
+ "step": 412
+ },
+ {
+ "epoch": 5.7386759581881535,
+ "grad_norm": 0.0552130751311779,
+ "learning_rate": 0.0005884293161901487,
+ "loss": 2.6422126293182373,
+ "step": 413
+ },
+ {
+ "epoch": 5.7526132404181185,
+ "grad_norm": 0.05774940922856331,
+ "learning_rate": 0.000588355515561353,
+ "loss": 2.649722099304199,
+ "step": 414
+ },
+ {
+ "epoch": 5.7665505226480835,
+ "grad_norm": 0.04623311012983322,
+ "learning_rate": 0.0005882814850267723,
+ "loss": 2.6475892066955566,
+ "step": 415
+ },
+ {
+ "epoch": 5.780487804878049,
+ "grad_norm": 0.04961073398590088,
+ "learning_rate": 0.0005882072246460521,
+ "loss": 2.658733606338501,
+ "step": 416
+ },
+ {
+ "epoch": 5.794425087108014,
+ "grad_norm": 0.05006693676114082,
+ "learning_rate": 0.0005881327344790223,
+ "loss": 2.6217124462127686,
+ "step": 417
+ },
+ {
+ "epoch": 5.80836236933798,
+ "grad_norm": 0.04175165295600891,
+ "learning_rate": 0.0005880580145856986,
+ "loss": 2.632359027862549,
+ "step": 418
+ },
+ {
+ "epoch": 5.822299651567945,
+ "grad_norm": 0.0332355760037899,
+ "learning_rate": 0.0005879830650262813,
+ "loss": 2.6406683921813965,
+ "step": 419
+ },
+ {
+ "epoch": 5.83623693379791,
+ "grad_norm": 0.0371745266020298,
+ "learning_rate": 0.0005879078858611557,
+ "loss": 2.630310535430908,
+ "step": 420
+ },
+ {
+ "epoch": 5.850174216027875,
+ "grad_norm": 0.02940242365002632,
+ "learning_rate": 0.0005878324771508927,
+ "loss": 2.6451711654663086,
+ "step": 421
+ },
+ {
+ "epoch": 5.86411149825784,
+ "grad_norm": 0.03578875586390495,
+ "learning_rate": 0.0005877568389562475,
+ "loss": 2.637753486633301,
+ "step": 422
+ },
+ {
+ "epoch": 5.878048780487805,
+ "grad_norm": 0.03402113541960716,
+ "learning_rate": 0.0005876809713381606,
+ "loss": 2.623744487762451,
+ "step": 423
+ },
+ {
+ "epoch": 5.89198606271777,
+ "grad_norm": 0.034094467759132385,
+ "learning_rate": 0.0005876048743577569,
+ "loss": 2.63200044631958,
+ "step": 424
+ },
+ {
+ "epoch": 5.905923344947735,
+ "grad_norm": 0.03428930044174194,
+ "learning_rate": 0.0005875285480763466,
+ "loss": 2.6219849586486816,
+ "step": 425
+ },
+ {
+ "epoch": 5.9198606271777,
+ "grad_norm": 0.033345405012369156,
+ "learning_rate": 0.0005874519925554244,
+ "loss": 2.611741065979004,
+ "step": 426
+ },
+ {
+ "epoch": 5.933797909407666,
+ "grad_norm": 0.031680066138505936,
+ "learning_rate": 0.0005873752078566694,
+ "loss": 2.6227869987487793,
+ "step": 427
+ },
+ {
+ "epoch": 5.947735191637631,
+ "grad_norm": 0.028066758066415787,
+ "learning_rate": 0.0005872981940419459,
+ "loss": 2.6249539852142334,
+ "step": 428
+ },
+ {
+ "epoch": 5.961672473867596,
+ "grad_norm": 0.032918382436037064,
+ "learning_rate": 0.0005872209511733027,
+ "loss": 2.6176412105560303,
+ "step": 429
+ },
+ {
+ "epoch": 5.975609756097561,
+ "grad_norm": 0.033349912613630295,
+ "learning_rate": 0.0005871434793129726,
+ "loss": 2.6159720420837402,
+ "step": 430
+ },
+ {
+ "epoch": 5.989547038327526,
+ "grad_norm": 0.03317154198884964,
+ "learning_rate": 0.0005870657785233735,
+ "loss": 2.619137763977051,
+ "step": 431
+ },
+ {
+ "epoch": 6.0,
+ "grad_norm": 0.025815341621637344,
+ "learning_rate": 0.0005869878488671075,
+ "loss": 1.9473658800125122,
+ "step": 432
+ },
+ {
+ "epoch": 6.0,
+ "eval_loss": 0.6633820533752441,
+ "eval_runtime": 37.551,
+ "eval_samples_per_second": 65.032,
+ "eval_steps_per_second": 0.533,
+ "step": 432
+ },
+ {
+ "epoch": 6.013937282229965,
+ "grad_norm": 0.031342681497335434,
+ "learning_rate": 0.0005869096904069611,
+ "loss": 2.5931155681610107,
+ "step": 433
+ },
+ {
+ "epoch": 6.02787456445993,
+ "grad_norm": 0.04343045502901077,
+ "learning_rate": 0.0005868313032059052,
+ "loss": 2.587559700012207,
+ "step": 434
+ },
+ {
+ "epoch": 6.041811846689895,
+ "grad_norm": 0.052591342478990555,
+ "learning_rate": 0.0005867526873270949,
+ "loss": 2.5950260162353516,
+ "step": 435
+ },
+ {
+ "epoch": 6.055749128919861,
+ "grad_norm": 0.05538717657327652,
+ "learning_rate": 0.0005866738428338695,
+ "loss": 2.600468635559082,
+ "step": 436
+ },
+ {
+ "epoch": 6.069686411149826,
+ "grad_norm": 0.05505542829632759,
+ "learning_rate": 0.000586594769789753,
+ "loss": 2.5905046463012695,
+ "step": 437
+ },
+ {
+ "epoch": 6.083623693379791,
+ "grad_norm": 0.05229569226503372,
+ "learning_rate": 0.0005865154682584524,
+ "loss": 2.591856002807617,
+ "step": 438
+ },
+ {
+ "epoch": 6.097560975609756,
+ "grad_norm": 0.05032522976398468,
+ "learning_rate": 0.0005864359383038602,
+ "loss": 2.577693462371826,
+ "step": 439
+ },
+ {
+ "epoch": 6.111498257839721,
+ "grad_norm": 0.04670557379722595,
+ "learning_rate": 0.000586356179990052,
+ "loss": 2.5835001468658447,
+ "step": 440
+ },
+ {
+ "epoch": 6.125435540069686,
+ "grad_norm": 0.0537918359041214,
+ "learning_rate": 0.0005862761933812875,
+ "loss": 2.596343517303467,
+ "step": 441
+ },
+ {
+ "epoch": 6.139372822299651,
+ "grad_norm": 0.06328130513429642,
+ "learning_rate": 0.0005861959785420106,
+ "loss": 2.5912466049194336,
+ "step": 442
+ },
+ {
+ "epoch": 6.153310104529616,
+ "grad_norm": 0.06647300720214844,
+ "learning_rate": 0.000586115535536849,
+ "loss": 2.589078426361084,
+ "step": 443
+ },
+ {
+ "epoch": 6.167247386759582,
+ "grad_norm": 0.06643359363079071,
+ "learning_rate": 0.000586034864430614,
+ "loss": 2.5956435203552246,
+ "step": 444
+ },
+ {
+ "epoch": 6.181184668989547,
+ "grad_norm": 0.05613892152905464,
+ "learning_rate": 0.0005859539652883008,
+ "loss": 2.5922906398773193,
+ "step": 445
+ },
+ {
+ "epoch": 6.195121951219512,
+ "grad_norm": 0.05655102804303169,
+ "learning_rate": 0.0005858728381750888,
+ "loss": 2.590651512145996,
+ "step": 446
+ },
+ {
+ "epoch": 6.209059233449477,
+ "grad_norm": 0.06806499511003494,
+ "learning_rate": 0.0005857914831563402,
+ "loss": 2.589696168899536,
+ "step": 447
+ },
+ {
+ "epoch": 6.2229965156794425,
+ "grad_norm": 0.06616773456335068,
+ "learning_rate": 0.0005857099002976016,
+ "loss": 2.5944786071777344,
+ "step": 448
+ },
+ {
+ "epoch": 6.2369337979094075,
+ "grad_norm": 0.05937796086072922,
+ "learning_rate": 0.0005856280896646026,
+ "loss": 2.598313331604004,
+ "step": 449
+ },
+ {
+ "epoch": 6.2508710801393725,
+ "grad_norm": 0.05284281075000763,
+ "learning_rate": 0.0005855460513232567,
+ "loss": 2.5805535316467285,
+ "step": 450
+ },
+ {
+ "epoch": 6.264808362369338,
+ "grad_norm": 0.04509073495864868,
+ "learning_rate": 0.0005854637853396606,
+ "loss": 2.570598840713501,
+ "step": 451
+ },
+ {
+ "epoch": 6.2787456445993035,
+ "grad_norm": 0.05604032054543495,
+ "learning_rate": 0.0005853812917800945,
+ "loss": 2.6077847480773926,
+ "step": 452
+ },
+ {
+ "epoch": 6.2926829268292686,
+ "grad_norm": 0.06662779301404953,
+ "learning_rate": 0.0005852985707110221,
+ "loss": 2.578629493713379,
+ "step": 453
+ },
+ {
+ "epoch": 6.306620209059234,
+ "grad_norm": 0.0585545152425766,
+ "learning_rate": 0.0005852156221990901,
+ "loss": 2.586427688598633,
+ "step": 454
+ },
+ {
+ "epoch": 6.320557491289199,
+ "grad_norm": 0.04736408591270447,
+ "learning_rate": 0.0005851324463111289,
+ "loss": 2.5911552906036377,
+ "step": 455
+ },
+ {
+ "epoch": 6.334494773519164,
+ "grad_norm": 0.04474812000989914,
+ "learning_rate": 0.0005850490431141516,
+ "loss": 2.5697641372680664,
+ "step": 456
+ },
+ {
+ "epoch": 6.348432055749129,
+ "grad_norm": 0.04312862828373909,
+ "learning_rate": 0.0005849654126753545,
+ "loss": 2.566927671432495,
+ "step": 457
+ },
+ {
+ "epoch": 6.362369337979094,
+ "grad_norm": 0.03764902800321579,
+ "learning_rate": 0.0005848815550621175,
+ "loss": 2.5947153568267822,
+ "step": 458
+ },
+ {
+ "epoch": 6.376306620209059,
+ "grad_norm": 0.03353014215826988,
+ "learning_rate": 0.0005847974703420028,
+ "loss": 2.5777602195739746,
+ "step": 459
+ },
+ {
+ "epoch": 6.390243902439025,
+ "grad_norm": 0.033975999802351,
+ "learning_rate": 0.0005847131585827564,
+ "loss": 2.5783305168151855,
+ "step": 460
+ },
+ {
+ "epoch": 6.40418118466899,
+ "grad_norm": 0.03363902121782303,
+ "learning_rate": 0.0005846286198523061,
+ "loss": 2.5673155784606934,
+ "step": 461
+ },
+ {
+ "epoch": 6.418118466898955,
+ "grad_norm": 0.034326743334531784,
+ "learning_rate": 0.0005845438542187638,
+ "loss": 2.55814790725708,
+ "step": 462
+ },
+ {
+ "epoch": 6.43205574912892,
+ "grad_norm": 0.03194424510002136,
+ "learning_rate": 0.0005844588617504236,
+ "loss": 2.5688910484313965,
+ "step": 463
+ },
+ {
+ "epoch": 6.445993031358885,
+ "grad_norm": 0.029925566166639328,
+ "learning_rate": 0.0005843736425157621,
+ "loss": 2.559793710708618,
+ "step": 464
+ },
+ {
+ "epoch": 6.45993031358885,
+ "grad_norm": 0.0290202796459198,
+ "learning_rate": 0.000584288196583439,
+ "loss": 2.555941581726074,
+ "step": 465
+ },
+ {
+ "epoch": 6.473867595818815,
+ "grad_norm": 0.030976103618741035,
+ "learning_rate": 0.0005842025240222966,
+ "loss": 2.5576136112213135,
+ "step": 466
+ },
+ {
+ "epoch": 6.487804878048781,
+ "grad_norm": 0.030049985274672508,
+ "learning_rate": 0.0005841166249013598,
+ "loss": 2.5645012855529785,
+ "step": 467
+ },
+ {
+ "epoch": 6.501742160278746,
+ "grad_norm": 0.031192071735858917,
+ "learning_rate": 0.0005840304992898359,
+ "loss": 2.5691795349121094,
+ "step": 468
+ },
+ {
+ "epoch": 6.515679442508711,
+ "grad_norm": 0.03066888637840748,
+ "learning_rate": 0.0005839441472571147,
+ "loss": 2.5597329139709473,
+ "step": 469
+ },
+ {
+ "epoch": 6.529616724738676,
+ "grad_norm": 0.031034760177135468,
+ "learning_rate": 0.0005838575688727685,
+ "loss": 2.5749378204345703,
+ "step": 470
+ },
+ {
+ "epoch": 6.543554006968641,
+ "grad_norm": 0.03199351951479912,
+ "learning_rate": 0.0005837707642065518,
+ "loss": 2.564612627029419,
+ "step": 471
+ },
+ {
+ "epoch": 6.557491289198606,
+ "grad_norm": 0.027530083432793617,
+ "learning_rate": 0.000583683733328402,
+ "loss": 2.568983793258667,
+ "step": 472
+ },
+ {
+ "epoch": 6.571428571428571,
+ "grad_norm": 0.02841697260737419,
+ "learning_rate": 0.0005835964763084378,
+ "loss": 2.551283836364746,
+ "step": 473
+ },
+ {
+ "epoch": 6.585365853658536,
+ "grad_norm": 0.03285123407840729,
+ "learning_rate": 0.000583508993216961,
+ "loss": 2.5753087997436523,
+ "step": 474
+ },
+ {
+ "epoch": 6.599303135888501,
+ "grad_norm": 0.0347592793405056,
+ "learning_rate": 0.0005834212841244548,
+ "loss": 2.56103253364563,
+ "step": 475
+ },
+ {
+ "epoch": 6.613240418118467,
+ "grad_norm": 0.03750046715140343,
+ "learning_rate": 0.0005833333491015851,
+ "loss": 2.5542030334472656,
+ "step": 476
+ },
+ {
+ "epoch": 6.627177700348432,
+ "grad_norm": 0.04254816472530365,
+ "learning_rate": 0.0005832451882191995,
+ "loss": 2.5616328716278076,
+ "step": 477
+ },
+ {
+ "epoch": 6.641114982578397,
+ "grad_norm": 0.04370047152042389,
+ "learning_rate": 0.0005831568015483274,
+ "loss": 2.5646753311157227,
+ "step": 478
+ },
+ {
+ "epoch": 6.655052264808362,
+ "grad_norm": 0.03816768899559975,
+ "learning_rate": 0.0005830681891601807,
+ "loss": 2.5603585243225098,
+ "step": 479
+ },
+ {
+ "epoch": 6.668989547038327,
+ "grad_norm": 0.034390103071928024,
+ "learning_rate": 0.0005829793511261525,
+ "loss": 2.548727512359619,
+ "step": 480
+ },
+ {
+ "epoch": 6.682926829268292,
+ "grad_norm": 0.0366024374961853,
+ "learning_rate": 0.0005828902875178183,
+ "loss": 2.555230140686035,
+ "step": 481
+ },
+ {
+ "epoch": 6.696864111498257,
+ "grad_norm": 0.03938084468245506,
+ "learning_rate": 0.0005828009984069347,
+ "loss": 2.5586276054382324,
+ "step": 482
+ },
+ {
+ "epoch": 6.710801393728223,
+ "grad_norm": 0.04110350087285042,
+ "learning_rate": 0.0005827114838654406,
+ "loss": 2.542633056640625,
+ "step": 483
+ },
+ {
+ "epoch": 6.724738675958188,
+ "grad_norm": 0.03961770981550217,
+ "learning_rate": 0.0005826217439654562,
+ "loss": 2.5494391918182373,
+ "step": 484
+ },
+ {
+ "epoch": 6.7386759581881535,
+ "grad_norm": 0.03677491098642349,
+ "learning_rate": 0.0005825317787792831,
+ "loss": 2.563061475753784,
+ "step": 485
+ },
+ {
+ "epoch": 6.7526132404181185,
+ "grad_norm": 0.03818432241678238,
+ "learning_rate": 0.0005824415883794049,
+ "loss": 2.5586929321289062,
+ "step": 486
+ },
+ {
+ "epoch": 6.7665505226480835,
+ "grad_norm": 0.033873286098241806,
+ "learning_rate": 0.0005823511728384863,
+ "loss": 2.5477757453918457,
+ "step": 487
+ },
+ {
+ "epoch": 6.780487804878049,
+ "grad_norm": 0.03699466213583946,
+ "learning_rate": 0.0005822605322293733,
+ "loss": 2.541106700897217,
+ "step": 488
+ },
+ {
+ "epoch": 6.794425087108014,
+ "grad_norm": 0.03866403177380562,
+ "learning_rate": 0.0005821696666250937,
+ "loss": 2.5336339473724365,
+ "step": 489
+ },
+ {
+ "epoch": 6.80836236933798,
+ "grad_norm": 0.03235912322998047,
+ "learning_rate": 0.0005820785760988559,
+ "loss": 2.5439155101776123,
+ "step": 490
+ },
+ {
+ "epoch": 6.822299651567945,
+ "grad_norm": 0.03776629641652107,
+ "learning_rate": 0.0005819872607240503,
+ "loss": 2.5592265129089355,
+ "step": 491
+ },
+ {
+ "epoch": 6.83623693379791,
+ "grad_norm": 0.04273561015725136,
+ "learning_rate": 0.0005818957205742478,
+ "loss": 2.5432629585266113,
+ "step": 492
+ },
+ {
+ "epoch": 6.850174216027875,
+ "grad_norm": 0.04358302056789398,
+ "learning_rate": 0.0005818039557232005,
+ "loss": 2.5543787479400635,
+ "step": 493
+ },
+ {
+ "epoch": 6.86411149825784,
+ "grad_norm": 0.03629252687096596,
+ "learning_rate": 0.0005817119662448421,
+ "loss": 2.562788963317871,
+ "step": 494
+ },
+ {
+ "epoch": 6.878048780487805,
+ "grad_norm": 0.03263307362794876,
+ "learning_rate": 0.0005816197522132866,
+ "loss": 2.538097381591797,
+ "step": 495
+ },
+ {
+ "epoch": 6.89198606271777,
+ "grad_norm": 0.036420464515686035,
+ "learning_rate": 0.0005815273137028292,
+ "loss": 2.554645299911499,
+ "step": 496
+ },
+ {
+ "epoch": 6.905923344947735,
+ "grad_norm": 0.035384103655815125,
+ "learning_rate": 0.0005814346507879459,
+ "loss": 2.5465738773345947,
+ "step": 497
+ },
+ {
+ "epoch": 6.9198606271777,
+ "grad_norm": 0.03658696636557579,
+ "learning_rate": 0.0005813417635432937,
+ "loss": 2.536980152130127,
+ "step": 498
+ },
+ {
+ "epoch": 6.933797909407666,
+ "grad_norm": 0.036053478717803955,
+ "learning_rate": 0.00058124865204371,
+ "loss": 2.528345823287964,
+ "step": 499
+ },
+ {
+ "epoch": 6.947735191637631,
+ "grad_norm": 0.03789985179901123,
+ "learning_rate": 0.0005811553163642131,
+ "loss": 2.544621706008911,
+ "step": 500
+ },
+ {
+ "epoch": 6.961672473867596,
+ "grad_norm": 0.03835926949977875,
+ "learning_rate": 0.0005810617565800019,
+ "loss": 2.5407447814941406,
+ "step": 501
+ },
+ {
+ "epoch": 6.975609756097561,
+ "grad_norm": 0.04318110644817352,
+ "learning_rate": 0.0005809679727664559,
+ "loss": 2.5537543296813965,
+ "step": 502
+ },
+ {
+ "epoch": 6.989547038327526,
+ "grad_norm": 0.0451606847345829,
+ "learning_rate": 0.0005808739649991348,
+ "loss": 2.5201051235198975,
+ "step": 503
+ },
+ {
+ "epoch": 7.0,
+ "grad_norm": 0.03245232254266739,
+ "learning_rate": 0.0005807797333537792,
+ "loss": 1.9085171222686768,
+ "step": 504
+ },
+ {
+ "epoch": 7.0,
+ "eval_loss": 0.6467739343643188,
+ "eval_runtime": 38.2431,
+ "eval_samples_per_second": 63.855,
+ "eval_steps_per_second": 0.523,
+ "step": 504
+ },
+ {
+ "epoch": 7.013937282229965,
+ "grad_norm": 0.03788387402892113,
+ "learning_rate": 0.0005806852779063098,
+ "loss": 2.493765354156494,
+ "step": 505
+ },
+ {
+ "epoch": 7.02787456445993,
+ "grad_norm": 0.04437057301402092,
+ "learning_rate": 0.0005805905987328275,
+ "loss": 2.509481430053711,
+ "step": 506
+ },
+ {
+ "epoch": 7.041811846689895,
+ "grad_norm": 0.047125279903411865,
+ "learning_rate": 0.0005804956959096138,
+ "loss": 2.504810333251953,
+ "step": 507
+ },
+ {
+ "epoch": 7.055749128919861,
+ "grad_norm": 0.05385598540306091,
+ "learning_rate": 0.0005804005695131299,
+ "loss": 2.5145554542541504,
+ "step": 508
+ },
+ {
+ "epoch": 7.069686411149826,
+ "grad_norm": 0.05404049903154373,
+ "learning_rate": 0.0005803052196200177,
+ "loss": 2.500851631164551,
+ "step": 509
+ },
+ {
+ "epoch": 7.083623693379791,
+ "grad_norm": 0.05455894395709038,
+ "learning_rate": 0.0005802096463070988,
+ "loss": 2.4832260608673096,
+ "step": 510
+ },
+ {
+ "epoch": 7.097560975609756,
+ "grad_norm": 0.0558103583753109,
+ "learning_rate": 0.0005801138496513749,
+ "loss": 2.524315118789673,
+ "step": 511
+ },
+ {
+ "epoch": 7.111498257839721,
+ "grad_norm": 0.057283915579319,
+ "learning_rate": 0.0005800178297300276,
+ "loss": 2.508044719696045,
+ "step": 512
+ },
+ {
+ "epoch": 7.125435540069686,
+ "grad_norm": 0.061027105897665024,
+ "learning_rate": 0.0005799215866204183,
+ "loss": 2.5139050483703613,
+ "step": 513
+ },
+ {
+ "epoch": 7.139372822299651,
+ "grad_norm": 0.06873901933431625,
+ "learning_rate": 0.0005798251204000886,
+ "loss": 2.507343053817749,
+ "step": 514
+ },
+ {
+ "epoch": 7.153310104529616,
+ "grad_norm": 0.06900028139352798,
+ "learning_rate": 0.0005797284311467594,
+ "loss": 2.520263195037842,
+ "step": 515
+ },
+ {
+ "epoch": 7.167247386759582,
+ "grad_norm": 0.06029877811670303,
+ "learning_rate": 0.0005796315189383316,
+ "loss": 2.5027518272399902,
+ "step": 516
+ },
+ {
+ "epoch": 7.181184668989547,
+ "grad_norm": 0.06097294017672539,
+ "learning_rate": 0.0005795343838528855,
+ "loss": 2.512634515762329,
+ "step": 517
+ },
+ {
+ "epoch": 7.195121951219512,
+ "grad_norm": 0.06655558943748474,
+ "learning_rate": 0.0005794370259686811,
+ "loss": 2.5014023780822754,
+ "step": 518
+ },
+ {
+ "epoch": 7.209059233449477,
+ "grad_norm": 0.06343840062618256,
+ "learning_rate": 0.0005793394453641581,
+ "loss": 2.5144271850585938,
+ "step": 519
+ },
+ {
+ "epoch": 7.2229965156794425,
+ "grad_norm": 0.08325106650590897,
+ "learning_rate": 0.0005792416421179351,
+ "loss": 2.5239195823669434,
+ "step": 520
+ },
+ {
+ "epoch": 7.2369337979094075,
+ "grad_norm": 0.07948101311922073,
+ "learning_rate": 0.0005791436163088106,
+ "loss": 2.5223121643066406,
+ "step": 521
+ },
+ {
+ "epoch": 7.2508710801393725,
+ "grad_norm": 0.06717163324356079,
+ "learning_rate": 0.0005790453680157622,
+ "loss": 2.5102391242980957,
+ "step": 522
+ },
+ {
+ "epoch": 7.264808362369338,
+ "grad_norm": 0.05896087363362312,
+ "learning_rate": 0.0005789468973179468,
+ "loss": 2.51560640335083,
+ "step": 523
+ },
+ {
+ "epoch": 7.2787456445993035,
+ "grad_norm": 0.05562684312462807,
+ "learning_rate": 0.0005788482042947004,
+ "loss": 2.5021753311157227,
+ "step": 524
+ },
+ {
+ "epoch": 7.2926829268292686,
+ "grad_norm": 0.043904103338718414,
+ "learning_rate": 0.0005787492890255382,
+ "loss": 2.4952425956726074,
+ "step": 525
+ },
+ {
+ "epoch": 7.306620209059234,
+ "grad_norm": 0.0436740480363369,
+ "learning_rate": 0.0005786501515901545,
+ "loss": 2.515303611755371,
+ "step": 526
+ },
+ {
+ "epoch": 7.320557491289199,
+ "grad_norm": 0.0395866297185421,
+ "learning_rate": 0.0005785507920684225,
+ "loss": 2.5101678371429443,
+ "step": 527
+ },
+ {
+ "epoch": 7.334494773519164,
+ "grad_norm": 0.039552897214889526,
+ "learning_rate": 0.0005784512105403944,
+ "loss": 2.5090293884277344,
+ "step": 528
+ },
+ {
+ "epoch": 7.348432055749129,
+ "grad_norm": 0.03839687630534172,
+ "learning_rate": 0.000578351407086301,
+ "loss": 2.505296468734741,
+ "step": 529
+ },
+ {
+ "epoch": 7.362369337979094,
+ "grad_norm": 0.042542796581983566,
+ "learning_rate": 0.0005782513817865527,
+ "loss": 2.49535870552063,
+ "step": 530
+ },
+ {
+ "epoch": 7.376306620209059,
+ "grad_norm": 0.044322993606328964,
+ "learning_rate": 0.0005781511347217375,
+ "loss": 2.4890050888061523,
+ "step": 531
+ },
+ {
+ "epoch": 7.390243902439025,
+ "grad_norm": 0.04029953107237816,
+ "learning_rate": 0.000578050665972623,
+ "loss": 2.500995397567749,
+ "step": 532
+ },
+ {
+ "epoch": 7.40418118466899,
+ "grad_norm": 0.044392652809619904,
+ "learning_rate": 0.0005779499756201549,
+ "loss": 2.505852222442627,
+ "step": 533
+ },
+ {
+ "epoch": 7.418118466898955,
+ "grad_norm": 0.04363880679011345,
+ "learning_rate": 0.0005778490637454576,
+ "loss": 2.4939942359924316,
+ "step": 534
+ },
+ {
+ "epoch": 7.43205574912892,
+ "grad_norm": 0.03960833698511124,
+ "learning_rate": 0.000577747930429834,
+ "loss": 2.507826805114746,
+ "step": 535
+ },
+ {
+ "epoch": 7.445993031358885,
+ "grad_norm": 0.03880009427666664,
+ "learning_rate": 0.0005776465757547654,
+ "loss": 2.4876725673675537,
+ "step": 536
+ },
+ {
+ "epoch": 7.45993031358885,
+ "grad_norm": 0.034344322979450226,
+ "learning_rate": 0.0005775449998019113,
+ "loss": 2.5032553672790527,
+ "step": 537
+ },
+ {
+ "epoch": 7.473867595818815,
+ "grad_norm": 0.030360646545886993,
+ "learning_rate": 0.00057744320265311,
+ "loss": 2.4887325763702393,
+ "step": 538
+ },
+ {
+ "epoch": 7.487804878048781,
+ "grad_norm": 0.030478516593575478,
+ "learning_rate": 0.0005773411843903773,
+ "loss": 2.5041327476501465,
+ "step": 539
+ },
+ {
+ "epoch": 7.501742160278746,
+ "grad_norm": 0.030038833618164062,
+ "learning_rate": 0.0005772389450959075,
+ "loss": 2.488068103790283,
+ "step": 540
+ },
+ {
+ "epoch": 7.515679442508711,
+ "grad_norm": 0.03227488324046135,
+ "learning_rate": 0.000577136484852073,
+ "loss": 2.4851627349853516,
+ "step": 541
+ },
+ {
+ "epoch": 7.529616724738676,
+ "grad_norm": 0.03053610771894455,
+ "learning_rate": 0.000577033803741424,
+ "loss": 2.48903226852417,
+ "step": 542
+ },
+ {
+ "epoch": 7.543554006968641,
+ "grad_norm": 0.030809711664915085,
+ "learning_rate": 0.0005769309018466891,
+ "loss": 2.487685203552246,
+ "step": 543
+ },
+ {
+ "epoch": 7.557491289198606,
+ "grad_norm": 0.03001537173986435,
+ "learning_rate": 0.0005768277792507744,
+ "loss": 2.4998037815093994,
+ "step": 544
+ },
+ {
+ "epoch": 7.571428571428571,
+ "grad_norm": 0.028761114925146103,
+ "learning_rate": 0.0005767244360367638,
+ "loss": 2.4887194633483887,
+ "step": 545
+ },
+ {
+ "epoch": 7.585365853658536,
+ "grad_norm": 0.028289001435041428,
+ "learning_rate": 0.0005766208722879192,
+ "loss": 2.4748306274414062,
+ "step": 546
+ },
+ {
+ "epoch": 7.599303135888501,
+ "grad_norm": 0.028406348079442978,
+ "learning_rate": 0.00057651708808768,
+ "loss": 2.490642786026001,
+ "step": 547
+ },
+ {
+ "epoch": 7.613240418118467,
+ "grad_norm": 0.027616780251264572,
+ "learning_rate": 0.0005764130835196632,
+ "loss": 2.4816768169403076,
+ "step": 548
+ },
+ {
+ "epoch": 7.627177700348432,
+ "grad_norm": 0.028579063713550568,
+ "learning_rate": 0.0005763088586676634,
+ "loss": 2.49285888671875,
+ "step": 549
+ },
+ {
+ "epoch": 7.641114982578397,
+ "grad_norm": 0.032302722334861755,
+ "learning_rate": 0.0005762044136156528,
+ "loss": 2.4891176223754883,
+ "step": 550
+ },
+ {
+ "epoch": 7.655052264808362,
+ "grad_norm": 0.03428734466433525,
+ "learning_rate": 0.0005760997484477809,
+ "loss": 2.4945361614227295,
+ "step": 551
+ },
+ {
+ "epoch": 7.668989547038327,
+ "grad_norm": 0.03326137363910675,
+ "learning_rate": 0.0005759948632483742,
+ "loss": 2.483844518661499,
+ "step": 552
+ },
+ {
+ "epoch": 7.682926829268292,
+ "grad_norm": 0.03136003762483597,
+ "learning_rate": 0.0005758897581019371,
+ "loss": 2.4965500831604004,
+ "step": 553
+ },
+ {
+ "epoch": 7.696864111498257,
+ "grad_norm": 0.031299516558647156,
+ "learning_rate": 0.000575784433093151,
+ "loss": 2.4755914211273193,
+ "step": 554
+ },
+ {
+ "epoch": 7.710801393728223,
+ "grad_norm": 0.030511915683746338,
+ "learning_rate": 0.0005756788883068743,
+ "loss": 2.4844446182250977,
+ "step": 555
+ },
+ {
+ "epoch": 7.724738675958188,
+ "grad_norm": 0.03106229193508625,
+ "learning_rate": 0.0005755731238281423,
+ "loss": 2.4614830017089844,
+ "step": 556
+ },
+ {
+ "epoch": 7.7386759581881535,
+ "grad_norm": 0.032561615109443665,
+ "learning_rate": 0.0005754671397421678,
+ "loss": 2.476231813430786,
+ "step": 557
+ },
+ {
+ "epoch": 7.7526132404181185,
+ "grad_norm": 0.03334634751081467,
+ "learning_rate": 0.0005753609361343402,
+ "loss": 2.4722485542297363,
+ "step": 558
+ },
+ {
+ "epoch": 7.7665505226480835,
+ "grad_norm": 0.03567497059702873,
+ "learning_rate": 0.0005752545130902256,
+ "loss": 2.471876621246338,
+ "step": 559
+ },
+ {
+ "epoch": 7.780487804878049,
+ "grad_norm": 0.038662221282720566,
+ "learning_rate": 0.0005751478706955674,
+ "loss": 2.4947409629821777,
+ "step": 560
+ },
+ {
+ "epoch": 7.794425087108014,
+ "grad_norm": 0.036901816725730896,
+ "learning_rate": 0.0005750410090362854,
+ "loss": 2.470515489578247,
+ "step": 561
+ },
+ {
+ "epoch": 7.80836236933798,
+ "grad_norm": 0.03382178768515587,
+ "learning_rate": 0.0005749339281984761,
+ "loss": 2.4678587913513184,
+ "step": 562
+ },
+ {
+ "epoch": 7.822299651567945,
+ "grad_norm": 0.03480829298496246,
+ "learning_rate": 0.0005748266282684124,
+ "loss": 2.4690866470336914,
+ "step": 563
+ },
+ {
+ "epoch": 7.83623693379791,
+ "grad_norm": 0.03593127429485321,
+ "learning_rate": 0.0005747191093325443,
+ "loss": 2.491703748703003,
+ "step": 564
+ },
+ {
+ "epoch": 7.850174216027875,
+ "grad_norm": 0.03532601520419121,
+ "learning_rate": 0.0005746113714774976,
+ "loss": 2.468522548675537,
+ "step": 565
+ },
+ {
+ "epoch": 7.86411149825784,
+ "grad_norm": 0.035680219531059265,
+ "learning_rate": 0.0005745034147900747,
+ "loss": 2.4759652614593506,
+ "step": 566
+ },
+ {
+ "epoch": 7.878048780487805,
+ "grad_norm": 0.03417263925075531,
+ "learning_rate": 0.0005743952393572544,
+ "loss": 2.4931888580322266,
+ "step": 567
+ },
+ {
+ "epoch": 7.89198606271777,
+ "grad_norm": 0.03273053467273712,
+ "learning_rate": 0.0005742868452661918,
+ "loss": 2.466641426086426,
+ "step": 568
+ },
+ {
+ "epoch": 7.905923344947735,
+ "grad_norm": 0.032283321022987366,
+ "learning_rate": 0.0005741782326042181,
+ "loss": 2.466756820678711,
+ "step": 569
+ },
+ {
+ "epoch": 7.9198606271777,
+ "grad_norm": 0.03162473440170288,
+ "learning_rate": 0.0005740694014588403,
+ "loss": 2.4725847244262695,
+ "step": 570
+ },
+ {
+ "epoch": 7.933797909407666,
+ "grad_norm": 0.03218452259898186,
+ "learning_rate": 0.0005739603519177419,
+ "loss": 2.46532940864563,
+ "step": 571
+ },
+ {
+ "epoch": 7.947735191637631,
+ "grad_norm": 0.03216313198208809,
+ "learning_rate": 0.0005738510840687821,
+ "loss": 2.4749364852905273,
+ "step": 572
+ },
+ {
+ "epoch": 7.961672473867596,
+ "grad_norm": 0.03091583214700222,
+ "learning_rate": 0.000573741597999996,
+ "loss": 2.470108985900879,
+ "step": 573
+ },
+ {
+ "epoch": 7.975609756097561,
+ "grad_norm": 0.028130974620580673,
+ "learning_rate": 0.0005736318937995947,
+ "loss": 2.466053009033203,
+ "step": 574
+ },
+ {
+ "epoch": 7.989547038327526,
+ "grad_norm": 0.03071889653801918,
+ "learning_rate": 0.0005735219715559646,
+ "loss": 2.4787344932556152,
+ "step": 575
+ },
+ {
+ "epoch": 8.0,
+ "grad_norm": 0.02555985376238823,
+ "learning_rate": 0.0005734118313576683,
+ "loss": 1.8408641815185547,
+ "step": 576
+ },
+ {
+ "epoch": 8.0,
+ "eval_loss": 0.6343774199485779,
+ "eval_runtime": 38.5533,
+ "eval_samples_per_second": 63.341,
+ "eval_steps_per_second": 0.519,
+ "step": 576
+ },
+ {
+ "epoch": 8.013937282229966,
+ "grad_norm": 0.03359892964363098,
+ "learning_rate": 0.0005733014732934436,
+ "loss": 2.4359030723571777,
+ "step": 577
+ },
+ {
+ "epoch": 8.02787456445993,
+ "grad_norm": 0.05054016411304474,
+ "learning_rate": 0.0005731908974522042,
+ "loss": 2.4193553924560547,
+ "step": 578
+ },
+ {
+ "epoch": 8.041811846689896,
+ "grad_norm": 0.062336456030607224,
+ "learning_rate": 0.0005730801039230389,
+ "loss": 2.4455740451812744,
+ "step": 579
+ },
+ {
+ "epoch": 8.05574912891986,
+ "grad_norm": 0.06716352701187134,
+ "learning_rate": 0.0005729690927952123,
+ "loss": 2.4429545402526855,
+ "step": 580
+ },
+ {
+ "epoch": 8.069686411149826,
+ "grad_norm": 0.06647022068500519,
+ "learning_rate": 0.0005728578641581637,
+ "loss": 2.4446518421173096,
+ "step": 581
+ },
+ {
+ "epoch": 8.08362369337979,
+ "grad_norm": 0.0826159194111824,
+ "learning_rate": 0.0005727464181015081,
+ "loss": 2.436643600463867,
+ "step": 582
+ },
+ {
+ "epoch": 8.097560975609756,
+ "grad_norm": 0.08472150564193726,
+ "learning_rate": 0.0005726347547150357,
+ "loss": 2.451641082763672,
+ "step": 583
+ },
+ {
+ "epoch": 8.111498257839722,
+ "grad_norm": 0.07912597805261612,
+ "learning_rate": 0.0005725228740887117,
+ "loss": 2.447244167327881,
+ "step": 584
+ },
+ {
+ "epoch": 8.125435540069686,
+ "grad_norm": 0.0796087384223938,
+ "learning_rate": 0.0005724107763126761,
+ "loss": 2.4437828063964844,
+ "step": 585
+ },
+ {
+ "epoch": 8.139372822299652,
+ "grad_norm": 0.07414955645799637,
+ "learning_rate": 0.0005722984614772442,
+ "loss": 2.437047004699707,
+ "step": 586
+ },
+ {
+ "epoch": 8.153310104529616,
+ "grad_norm": 0.06763316690921783,
+ "learning_rate": 0.000572185929672906,
+ "loss": 2.446570873260498,
+ "step": 587
+ },
+ {
+ "epoch": 8.167247386759582,
+ "grad_norm": 0.05742042511701584,
+ "learning_rate": 0.0005720731809903263,
+ "loss": 2.445460796356201,
+ "step": 588
+ },
+ {
+ "epoch": 8.181184668989546,
+ "grad_norm": 0.0572611466050148,
+ "learning_rate": 0.000571960215520345,
+ "loss": 2.4439504146575928,
+ "step": 589
+ },
+ {
+ "epoch": 8.195121951219512,
+ "grad_norm": 0.05339052528142929,
+ "learning_rate": 0.0005718470333539757,
+ "loss": 2.4502882957458496,
+ "step": 590
+ },
+ {
+ "epoch": 8.209059233449477,
+ "grad_norm": 0.05900551751255989,
+ "learning_rate": 0.0005717336345824077,
+ "loss": 2.450836658477783,
+ "step": 591
+ },
+ {
+ "epoch": 8.222996515679442,
+ "grad_norm": 0.06624466180801392,
+ "learning_rate": 0.0005716200192970043,
+ "loss": 2.4539589881896973,
+ "step": 592
+ },
+ {
+ "epoch": 8.236933797909408,
+ "grad_norm": 0.06468363106250763,
+ "learning_rate": 0.0005715061875893032,
+ "loss": 2.448918342590332,
+ "step": 593
+ },
+ {
+ "epoch": 8.250871080139373,
+ "grad_norm": 0.04979013651609421,
+ "learning_rate": 0.0005713921395510166,
+ "loss": 2.447591781616211,
+ "step": 594
+ },
+ {
+ "epoch": 8.264808362369338,
+ "grad_norm": 0.047402940690517426,
+ "learning_rate": 0.0005712778752740307,
+ "loss": 2.450143337249756,
+ "step": 595
+ },
+ {
+ "epoch": 8.278745644599303,
+ "grad_norm": 0.041620269417762756,
+ "learning_rate": 0.0005711633948504066,
+ "loss": 2.4322123527526855,
+ "step": 596
+ },
+ {
+ "epoch": 8.292682926829269,
+ "grad_norm": 0.04016399011015892,
+ "learning_rate": 0.0005710486983723787,
+ "loss": 2.4417006969451904,
+ "step": 597
+ },
+ {
+ "epoch": 8.306620209059233,
+ "grad_norm": 0.04293493181467056,
+ "learning_rate": 0.0005709337859323561,
+ "loss": 2.4442501068115234,
+ "step": 598
+ },
+ {
+ "epoch": 8.320557491289199,
+ "grad_norm": 0.041785892099142075,
+ "learning_rate": 0.0005708186576229218,
+ "loss": 2.4570703506469727,
+ "step": 599
+ },
+ {
+ "epoch": 8.334494773519165,
+ "grad_norm": 0.042869169265031815,
+ "learning_rate": 0.0005707033135368323,
+ "loss": 2.4294066429138184,
+ "step": 600
+ },
+ {
+ "epoch": 8.348432055749129,
+ "grad_norm": 0.04059606418013573,
+ "learning_rate": 0.0005705877537670184,
+ "loss": 2.4469175338745117,
+ "step": 601
+ },
+ {
+ "epoch": 8.362369337979095,
+ "grad_norm": 0.03664898872375488,
+ "learning_rate": 0.0005704719784065846,
+ "loss": 2.432004451751709,
+ "step": 602
+ },
+ {
+ "epoch": 8.376306620209059,
+ "grad_norm": 0.031866125762462616,
+ "learning_rate": 0.0005703559875488088,
+ "loss": 2.4305002689361572,
+ "step": 603
+ },
+ {
+ "epoch": 8.390243902439025,
+ "grad_norm": 0.03416220843791962,
+ "learning_rate": 0.0005702397812871429,
+ "loss": 2.4407525062561035,
+ "step": 604
+ },
+ {
+ "epoch": 8.404181184668989,
+ "grad_norm": 0.03265870735049248,
+ "learning_rate": 0.0005701233597152121,
+ "loss": 2.426929473876953,
+ "step": 605
+ },
+ {
+ "epoch": 8.418118466898955,
+ "grad_norm": 0.03337112441658974,
+ "learning_rate": 0.0005700067229268154,
+ "loss": 2.443507671356201,
+ "step": 606
+ },
+ {
+ "epoch": 8.43205574912892,
+ "grad_norm": 0.0337977334856987,
+ "learning_rate": 0.0005698898710159245,
+ "loss": 2.4583749771118164,
+ "step": 607
+ },
+ {
+ "epoch": 8.445993031358885,
+ "grad_norm": 0.02970845066010952,
+ "learning_rate": 0.0005697728040766852,
+ "loss": 2.4297292232513428,
+ "step": 608
+ },
+ {
+ "epoch": 8.45993031358885,
+ "grad_norm": 0.03051869012415409,
+ "learning_rate": 0.0005696555222034162,
+ "loss": 2.452547550201416,
+ "step": 609
+ },
+ {
+ "epoch": 8.473867595818815,
+ "grad_norm": 0.030234314501285553,
+ "learning_rate": 0.0005695380254906094,
+ "loss": 2.427704334259033,
+ "step": 610
+ },
+ {
+ "epoch": 8.487804878048781,
+ "grad_norm": 0.0297533068805933,
+ "learning_rate": 0.0005694203140329296,
+ "loss": 2.4193124771118164,
+ "step": 611
+ },
+ {
+ "epoch": 8.501742160278745,
+ "grad_norm": 0.030258657410740852,
+ "learning_rate": 0.000569302387925215,
+ "loss": 2.4159011840820312,
+ "step": 612
+ },
+ {
+ "epoch": 8.515679442508711,
+ "grad_norm": 0.029942622408270836,
+ "learning_rate": 0.0005691842472624764,
+ "loss": 2.4217724800109863,
+ "step": 613
+ },
+ {
+ "epoch": 8.529616724738675,
+ "grad_norm": 0.030715234577655792,
+ "learning_rate": 0.0005690658921398977,
+ "loss": 2.44870662689209,
+ "step": 614
+ },
+ {
+ "epoch": 8.543554006968641,
+ "grad_norm": 0.03252873569726944,
+ "learning_rate": 0.0005689473226528354,
+ "loss": 2.417196750640869,
+ "step": 615
+ },
+ {
+ "epoch": 8.557491289198607,
+ "grad_norm": 0.03387020155787468,
+ "learning_rate": 0.0005688285388968187,
+ "loss": 2.4181065559387207,
+ "step": 616
+ },
+ {
+ "epoch": 8.571428571428571,
+ "grad_norm": 0.035596199333667755,
+ "learning_rate": 0.0005687095409675499,
+ "loss": 2.4240612983703613,
+ "step": 617
+ },
+ {
+ "epoch": 8.585365853658537,
+ "grad_norm": 0.03890643268823624,
+ "learning_rate": 0.000568590328960903,
+ "loss": 2.435359477996826,
+ "step": 618
+ },
+ {
+ "epoch": 8.599303135888501,
+ "grad_norm": 0.041447605937719345,
+ "learning_rate": 0.0005684709029729253,
+ "loss": 2.4370574951171875,
+ "step": 619
+ },
+ {
+ "epoch": 8.613240418118467,
+ "grad_norm": 0.03584018349647522,
+ "learning_rate": 0.0005683512630998361,
+ "loss": 2.4231667518615723,
+ "step": 620
+ },
+ {
+ "epoch": 8.627177700348431,
+ "grad_norm": 0.03309513255953789,
+ "learning_rate": 0.000568231409438027,
+ "loss": 2.4281513690948486,
+ "step": 621
+ },
+ {
+ "epoch": 8.641114982578397,
+ "grad_norm": 0.0365641750395298,
+ "learning_rate": 0.0005681113420840619,
+ "loss": 2.4262235164642334,
+ "step": 622
+ },
+ {
+ "epoch": 8.655052264808361,
+ "grad_norm": 0.033776357769966125,
+ "learning_rate": 0.000567991061134677,
+ "loss": 2.4259705543518066,
+ "step": 623
+ },
+ {
+ "epoch": 8.668989547038327,
+ "grad_norm": 0.03251301124691963,
+ "learning_rate": 0.0005678705666867805,
+ "loss": 2.4303622245788574,
+ "step": 624
+ },
+ {
+ "epoch": 8.682926829268293,
+ "grad_norm": 0.03311233967542648,
+ "learning_rate": 0.0005677498588374524,
+ "loss": 2.4325923919677734,
+ "step": 625
+ },
+ {
+ "epoch": 8.696864111498257,
+ "grad_norm": 0.032762084156274796,
+ "learning_rate": 0.0005676289376839452,
+ "loss": 2.423525333404541,
+ "step": 626
+ },
+ {
+ "epoch": 8.710801393728223,
+ "grad_norm": 0.03397396206855774,
+ "learning_rate": 0.0005675078033236827,
+ "loss": 2.421725273132324,
+ "step": 627
+ },
+ {
+ "epoch": 8.724738675958188,
+ "grad_norm": 0.03827521204948425,
+ "learning_rate": 0.0005673864558542605,
+ "loss": 2.417745590209961,
+ "step": 628
+ },
+ {
+ "epoch": 8.738675958188153,
+ "grad_norm": 0.03194425627589226,
+ "learning_rate": 0.0005672648953734462,
+ "loss": 2.4408435821533203,
+ "step": 629
+ },
+ {
+ "epoch": 8.752613240418118,
+ "grad_norm": 0.02894434705376625,
+ "learning_rate": 0.000567143121979179,
+ "loss": 2.430302143096924,
+ "step": 630
+ },
+ {
+ "epoch": 8.766550522648084,
+ "grad_norm": 0.03130284696817398,
+ "learning_rate": 0.0005670211357695693,
+ "loss": 2.4167380332946777,
+ "step": 631
+ },
+ {
+ "epoch": 8.78048780487805,
+ "grad_norm": 0.03176414966583252,
+ "learning_rate": 0.0005668989368428994,
+ "loss": 2.4211833477020264,
+ "step": 632
+ },
+ {
+ "epoch": 8.794425087108014,
+ "grad_norm": 0.03023882955312729,
+ "learning_rate": 0.0005667765252976227,
+ "loss": 2.4175009727478027,
+ "step": 633
+ },
+ {
+ "epoch": 8.80836236933798,
+ "grad_norm": 0.03027920238673687,
+ "learning_rate": 0.0005666539012323639,
+ "loss": 2.4296345710754395,
+ "step": 634
+ },
+ {
+ "epoch": 8.822299651567944,
+ "grad_norm": 0.031661003828048706,
+ "learning_rate": 0.0005665310647459189,
+ "loss": 2.4292376041412354,
+ "step": 635
+ },
+ {
+ "epoch": 8.83623693379791,
+ "grad_norm": 0.02943863719701767,
+ "learning_rate": 0.0005664080159372551,
+ "loss": 2.422773599624634,
+ "step": 636
+ },
+ {
+ "epoch": 8.850174216027874,
+ "grad_norm": 0.02999107912182808,
+ "learning_rate": 0.0005662847549055107,
+ "loss": 2.4288015365600586,
+ "step": 637
+ },
+ {
+ "epoch": 8.86411149825784,
+ "grad_norm": 0.03127457574009895,
+ "learning_rate": 0.0005661612817499947,
+ "loss": 2.426997184753418,
+ "step": 638
+ },
+ {
+ "epoch": 8.878048780487806,
+ "grad_norm": 0.0321597196161747,
+ "learning_rate": 0.0005660375965701872,
+ "loss": 2.418203353881836,
+ "step": 639
+ },
+ {
+ "epoch": 8.89198606271777,
+ "grad_norm": 0.032045748084783554,
+ "learning_rate": 0.0005659136994657392,
+ "loss": 2.4220266342163086,
+ "step": 640
+ },
+ {
+ "epoch": 8.905923344947736,
+ "grad_norm": 0.031895119696855545,
+ "learning_rate": 0.0005657895905364723,
+ "loss": 2.421767234802246,
+ "step": 641
+ },
+ {
+ "epoch": 8.9198606271777,
+ "grad_norm": 0.0330902598798275,
+ "learning_rate": 0.0005656652698823788,
+ "loss": 2.418246269226074,
+ "step": 642
+ },
+ {
+ "epoch": 8.933797909407666,
+ "grad_norm": 0.03361523523926735,
+ "learning_rate": 0.0005655407376036217,
+ "loss": 2.423337697982788,
+ "step": 643
+ },
+ {
+ "epoch": 8.94773519163763,
+ "grad_norm": 0.033133652061223984,
+ "learning_rate": 0.0005654159938005345,
+ "loss": 2.4278783798217773,
+ "step": 644
+ },
+ {
+ "epoch": 8.961672473867596,
+ "grad_norm": 0.03747311979532242,
+ "learning_rate": 0.0005652910385736207,
+ "loss": 2.434087038040161,
+ "step": 645
+ },
+ {
+ "epoch": 8.975609756097562,
+ "grad_norm": 0.036127083003520966,
+ "learning_rate": 0.0005651658720235548,
+ "loss": 2.4167022705078125,
+ "step": 646
+ },
+ {
+ "epoch": 8.989547038327526,
+ "grad_norm": 0.03699145093560219,
+ "learning_rate": 0.0005650404942511812,
+ "loss": 2.4243075847625732,
+ "step": 647
+ },
+ {
+ "epoch": 9.0,
+ "grad_norm": 0.028921982273459435,
+ "learning_rate": 0.0005649149053575141,
+ "loss": 1.8086339235305786,
+ "step": 648
+ },
+ {
+ "epoch": 9.0,
+ "eval_loss": 0.6271453499794006,
+ "eval_runtime": 35.9474,
+ "eval_samples_per_second": 67.933,
+ "eval_steps_per_second": 0.556,
+ "step": 648
+ },
+ {
+ "epoch": 9.013937282229966,
+ "grad_norm": 0.0380239300429821,
+ "learning_rate": 0.0005647891054437386,
+ "loss": 2.377704381942749,
+ "step": 649
+ },
+ {
+ "epoch": 9.02787456445993,
+ "grad_norm": 0.05574064329266548,
+ "learning_rate": 0.0005646630946112096,
+ "loss": 2.399777889251709,
+ "step": 650
+ },
+ {
+ "epoch": 9.041811846689896,
+ "grad_norm": 0.06179674342274666,
+ "learning_rate": 0.0005645368729614512,
+ "loss": 2.3851845264434814,
+ "step": 651
+ },
+ {
+ "epoch": 9.05574912891986,
+ "grad_norm": 0.06461436301469803,
+ "learning_rate": 0.0005644104405961582,
+ "loss": 2.385363817214966,
+ "step": 652
+ },
+ {
+ "epoch": 9.069686411149826,
+ "grad_norm": 0.058009687811136246,
+ "learning_rate": 0.0005642837976171949,
+ "loss": 2.3721890449523926,
+ "step": 653
+ },
+ {
+ "epoch": 9.08362369337979,
+ "grad_norm": 0.06488639861345291,
+ "learning_rate": 0.0005641569441265952,
+ "loss": 2.386878490447998,
+ "step": 654
+ },
+ {
+ "epoch": 9.097560975609756,
+ "grad_norm": 0.05683685839176178,
+ "learning_rate": 0.0005640298802265626,
+ "loss": 2.3946213722229004,
+ "step": 655
+ },
+ {
+ "epoch": 9.111498257839722,
+ "grad_norm": 0.05336347594857216,
+ "learning_rate": 0.0005639026060194704,
+ "loss": 2.3708930015563965,
+ "step": 656
+ },
+ {
+ "epoch": 9.125435540069686,
+ "grad_norm": 0.05320737510919571,
+ "learning_rate": 0.0005637751216078609,
+ "loss": 2.39091157913208,
+ "step": 657
+ },
+ {
+ "epoch": 9.139372822299652,
+ "grad_norm": 0.05641087517142296,
+ "learning_rate": 0.0005636474270944461,
+ "loss": 2.381009578704834,
+ "step": 658
+ },
+ {
+ "epoch": 9.153310104529616,
+ "grad_norm": 0.06087775528430939,
+ "learning_rate": 0.0005635195225821072,
+ "loss": 2.377963066101074,
+ "step": 659
+ },
+ {
+ "epoch": 9.167247386759582,
+ "grad_norm": 0.06592115014791489,
+ "learning_rate": 0.0005633914081738945,
+ "loss": 2.392094135284424,
+ "step": 660
+ },
+ {
+ "epoch": 9.181184668989546,
+ "grad_norm": 0.061441708356142044,
+ "learning_rate": 0.0005632630839730275,
+ "loss": 2.388850212097168,
+ "step": 661
+ },
+ {
+ "epoch": 9.195121951219512,
+ "grad_norm": 0.06311637908220291,
+ "learning_rate": 0.0005631345500828946,
+ "loss": 2.38919734954834,
+ "step": 662
+ },
+ {
+ "epoch": 9.209059233449477,
+ "grad_norm": 0.07152658700942993,
+ "learning_rate": 0.0005630058066070533,
+ "loss": 2.3724892139434814,
+ "step": 663
+ },
+ {
+ "epoch": 9.222996515679442,
+ "grad_norm": 0.06927355378866196,
+ "learning_rate": 0.0005628768536492299,
+ "loss": 2.4017786979675293,
+ "step": 664
+ },
+ {
+ "epoch": 9.236933797909408,
+ "grad_norm": 0.062740758061409,
+ "learning_rate": 0.0005627476913133193,
+ "loss": 2.376430034637451,
+ "step": 665
+ },
+ {
+ "epoch": 9.250871080139373,
+ "grad_norm": 0.051289040595293045,
+ "learning_rate": 0.0005626183197033856,
+ "loss": 2.3926010131835938,
+ "step": 666
+ },
+ {
+ "epoch": 9.264808362369338,
+ "grad_norm": 0.055630262941122055,
+ "learning_rate": 0.0005624887389236609,
+ "loss": 2.3605382442474365,
+ "step": 667
+ },
+ {
+ "epoch": 9.278745644599303,
+ "grad_norm": 0.052814628928899765,
+ "learning_rate": 0.0005623589490785462,
+ "loss": 2.374608039855957,
+ "step": 668
+ },
+ {
+ "epoch": 9.292682926829269,
+ "grad_norm": 0.05927073210477829,
+ "learning_rate": 0.0005622289502726108,
+ "loss": 2.384093999862671,
+ "step": 669
+ },
+ {
+ "epoch": 9.306620209059233,
+ "grad_norm": 0.05510697513818741,
+ "learning_rate": 0.0005620987426105925,
+ "loss": 2.374708652496338,
+ "step": 670
+ },
+ {
+ "epoch": 9.320557491289199,
+ "grad_norm": 0.048580385744571686,
+ "learning_rate": 0.000561968326197397,
+ "loss": 2.3861031532287598,
+ "step": 671
+ },
+ {
+ "epoch": 9.334494773519165,
+ "grad_norm": 0.04905429109930992,
+ "learning_rate": 0.0005618377011380988,
+ "loss": 2.3835110664367676,
+ "step": 672
+ },
+ {
+ "epoch": 9.348432055749129,
+ "grad_norm": 0.04621037095785141,
+ "learning_rate": 0.0005617068675379398,
+ "loss": 2.379696846008301,
+ "step": 673
+ },
+ {
+ "epoch": 9.362369337979095,
+ "grad_norm": 0.0437726229429245,
+ "learning_rate": 0.0005615758255023306,
+ "loss": 2.3854074478149414,
+ "step": 674
+ },
+ {
+ "epoch": 9.376306620209059,
+ "grad_norm": 0.040361031889915466,
+ "learning_rate": 0.0005614445751368491,
+ "loss": 2.39682936668396,
+ "step": 675
+ },
+ {
+ "epoch": 9.390243902439025,
+ "grad_norm": 0.03848707675933838,
+ "learning_rate": 0.0005613131165472415,
+ "loss": 2.3752408027648926,
+ "step": 676
+ },
+ {
+ "epoch": 9.404181184668989,
+ "grad_norm": 0.04017478972673416,
+ "learning_rate": 0.0005611814498394216,
+ "loss": 2.3912038803100586,
+ "step": 677
+ },
+ {
+ "epoch": 9.418118466898955,
+ "grad_norm": 0.03487734496593475,
+ "learning_rate": 0.0005610495751194708,
+ "loss": 2.389535427093506,
+ "step": 678
+ },
+ {
+ "epoch": 9.43205574912892,
+ "grad_norm": 0.03736500069499016,
+ "learning_rate": 0.0005609174924936384,
+ "loss": 2.3840279579162598,
+ "step": 679
+ },
+ {
+ "epoch": 9.445993031358885,
+ "grad_norm": 0.03499516844749451,
+ "learning_rate": 0.0005607852020683409,
+ "loss": 2.3752779960632324,
+ "step": 680
+ },
+ {
+ "epoch": 9.45993031358885,
+ "grad_norm": 0.03297547250986099,
+ "learning_rate": 0.0005606527039501621,
+ "loss": 2.3991637229919434,
+ "step": 681
+ },
+ {
+ "epoch": 9.473867595818815,
+ "grad_norm": 0.03387392312288284,
+ "learning_rate": 0.0005605199982458535,
+ "loss": 2.3872644901275635,
+ "step": 682
+ },
+ {
+ "epoch": 9.487804878048781,
+ "grad_norm": 0.03756970539689064,
+ "learning_rate": 0.0005603870850623338,
+ "loss": 2.368522882461548,
+ "step": 683
+ },
+ {
+ "epoch": 9.501742160278745,
+ "grad_norm": 0.03686998412013054,
+ "learning_rate": 0.0005602539645066884,
+ "loss": 2.381460189819336,
+ "step": 684
+ },
+ {
+ "epoch": 9.515679442508711,
+ "grad_norm": 0.03336082771420479,
+ "learning_rate": 0.0005601206366861706,
+ "loss": 2.3871984481811523,
+ "step": 685
+ },
+ {
+ "epoch": 9.529616724738675,
+ "grad_norm": 0.03545147553086281,
+ "learning_rate": 0.0005599871017081999,
+ "loss": 2.3921163082122803,
+ "step": 686
+ },
+ {
+ "epoch": 9.543554006968641,
+ "grad_norm": 0.03614704683423042,
+ "learning_rate": 0.0005598533596803631,
+ "loss": 2.388418197631836,
+ "step": 687
+ },
+ {
+ "epoch": 9.557491289198607,
+ "grad_norm": 0.0350213497877121,
+ "learning_rate": 0.0005597194107104137,
+ "loss": 2.399055004119873,
+ "step": 688
+ },
+ {
+ "epoch": 9.571428571428571,
+ "grad_norm": 0.035602837800979614,
+ "learning_rate": 0.000559585254906272,
+ "loss": 2.3897178173065186,
+ "step": 689
+ },
+ {
+ "epoch": 9.585365853658537,
+ "grad_norm": 0.03438388183712959,
+ "learning_rate": 0.000559450892376025,
+ "loss": 2.407155990600586,
+ "step": 690
+ },
+ {
+ "epoch": 9.599303135888501,
+ "grad_norm": 0.035386405885219574,
+ "learning_rate": 0.000559316323227926,
+ "loss": 2.390408992767334,
+ "step": 691
+ },
+ {
+ "epoch": 9.613240418118467,
+ "grad_norm": 0.03753617778420448,
+ "learning_rate": 0.000559181547570395,
+ "loss": 2.3751039505004883,
+ "step": 692
+ },
+ {
+ "epoch": 9.627177700348431,
+ "grad_norm": 0.03430183231830597,
+ "learning_rate": 0.0005590465655120183,
+ "loss": 2.3941941261291504,
+ "step": 693
+ },
+ {
+ "epoch": 9.641114982578397,
+ "grad_norm": 0.03268825262784958,
+ "learning_rate": 0.0005589113771615486,
+ "loss": 2.3772215843200684,
+ "step": 694
+ },
+ {
+ "epoch": 9.655052264808361,
+ "grad_norm": 0.0341268889605999,
+ "learning_rate": 0.0005587759826279046,
+ "loss": 2.3830480575561523,
+ "step": 695
+ },
+ {
+ "epoch": 9.668989547038327,
+ "grad_norm": 0.03466663882136345,
+ "learning_rate": 0.0005586403820201713,
+ "loss": 2.3796463012695312,
+ "step": 696
+ },
+ {
+ "epoch": 9.682926829268293,
+ "grad_norm": 0.03470399230718613,
+ "learning_rate": 0.0005585045754475995,
+ "loss": 2.385427713394165,
+ "step": 697
+ },
+ {
+ "epoch": 9.696864111498257,
+ "grad_norm": 0.0382751040160656,
+ "learning_rate": 0.0005583685630196064,
+ "loss": 2.3877949714660645,
+ "step": 698
+ },
+ {
+ "epoch": 9.710801393728223,
+ "grad_norm": 0.035988591611385345,
+ "learning_rate": 0.0005582323448457744,
+ "loss": 2.378014326095581,
+ "step": 699
+ },
+ {
+ "epoch": 9.724738675958188,
+ "grad_norm": 0.03295210376381874,
+ "learning_rate": 0.0005580959210358523,
+ "loss": 2.382502555847168,
+ "step": 700
+ },
+ {
+ "epoch": 9.738675958188153,
+ "grad_norm": 0.030723385512828827,
+ "learning_rate": 0.0005579592916997542,
+ "loss": 2.388451099395752,
+ "step": 701
+ },
+ {
+ "epoch": 9.752613240418118,
+ "grad_norm": 0.03281056135892868,
+ "learning_rate": 0.0005578224569475599,
+ "loss": 2.387669086456299,
+ "step": 702
+ },
+ {
+ "epoch": 9.766550522648084,
+ "grad_norm": 0.03443330153822899,
+ "learning_rate": 0.0005576854168895147,
+ "loss": 2.381460189819336,
+ "step": 703
+ },
+ {
+ "epoch": 9.78048780487805,
+ "grad_norm": 0.03670412674546242,
+ "learning_rate": 0.0005575481716360292,
+ "loss": 2.3756155967712402,
+ "step": 704
+ },
+ {
+ "epoch": 9.794425087108014,
+ "grad_norm": 0.03445884957909584,
+ "learning_rate": 0.0005574107212976796,
+ "loss": 2.371798515319824,
+ "step": 705
+ },
+ {
+ "epoch": 9.80836236933798,
+ "grad_norm": 0.03341168165206909,
+ "learning_rate": 0.000557273065985207,
+ "loss": 2.366093635559082,
+ "step": 706
+ },
+ {
+ "epoch": 9.822299651567944,
+ "grad_norm": 0.035434722900390625,
+ "learning_rate": 0.0005571352058095179,
+ "loss": 2.3876760005950928,
+ "step": 707
+ },
+ {
+ "epoch": 9.83623693379791,
+ "grad_norm": 0.036071036010980606,
+ "learning_rate": 0.0005569971408816838,
+ "loss": 2.363477945327759,
+ "step": 708
+ },
+ {
+ "epoch": 9.850174216027874,
+ "grad_norm": 0.03642858937382698,
+ "learning_rate": 0.0005568588713129409,
+ "loss": 2.3772635459899902,
+ "step": 709
+ },
+ {
+ "epoch": 9.86411149825784,
+ "grad_norm": 0.03974858298897743,
+ "learning_rate": 0.0005567203972146906,
+ "loss": 2.3893399238586426,
+ "step": 710
+ },
+ {
+ "epoch": 9.878048780487806,
+ "grad_norm": 0.040428902953863144,
+ "learning_rate": 0.000556581718698499,
+ "loss": 2.385814666748047,
+ "step": 711
+ },
+ {
+ "epoch": 9.89198606271777,
+ "grad_norm": 0.03710169717669487,
+ "learning_rate": 0.000556442835876097,
+ "loss": 2.3817856311798096,
+ "step": 712
+ },
+ {
+ "epoch": 9.905923344947736,
+ "grad_norm": 0.031853094696998596,
+ "learning_rate": 0.0005563037488593799,
+ "loss": 2.3833706378936768,
+ "step": 713
+ },
+ {
+ "epoch": 9.9198606271777,
+ "grad_norm": 0.03192576766014099,
+ "learning_rate": 0.0005561644577604074,
+ "loss": 2.380492687225342,
+ "step": 714
+ },
+ {
+ "epoch": 9.933797909407666,
+ "grad_norm": 0.03222471475601196,
+ "learning_rate": 0.000556024962691404,
+ "loss": 2.368129014968872,
+ "step": 715
+ },
+ {
+ "epoch": 9.94773519163763,
+ "grad_norm": 0.033947065472602844,
+ "learning_rate": 0.0005558852637647584,
+ "loss": 2.392598867416382,
+ "step": 716
+ },
+ {
+ "epoch": 9.961672473867596,
+ "grad_norm": 0.030860550701618195,
+ "learning_rate": 0.0005557453610930235,
+ "loss": 2.392878532409668,
+ "step": 717
+ },
+ {
+ "epoch": 9.975609756097562,
+ "grad_norm": 0.03237077221274376,
+ "learning_rate": 0.0005556052547889161,
+ "loss": 2.3881583213806152,
+ "step": 718
+ },
+ {
+ "epoch": 9.989547038327526,
+ "grad_norm": 0.03429335355758667,
+ "learning_rate": 0.0005554649449653177,
+ "loss": 2.385345458984375,
+ "step": 719
+ },
+ {
+ "epoch": 10.0,
+ "grad_norm": 0.025040561333298683,
+ "learning_rate": 0.0005553244317352731,
+ "loss": 1.7694379091262817,
+ "step": 720
+ }
+ ],
+ "logging_steps": 1,
+ "max_steps": 3600,
+ "num_input_tokens_seen": 0,
+ "num_train_epochs": 50,
+ "save_steps": 500,
+ "stateful_callbacks": {
+ "TrainerControl": {
+ "args": {
+ "should_epoch_stop": false,
+ "should_evaluate": true,
+ "should_log": false,
+ "should_save": false,
+ "should_training_stop": false
+ },
+ "attributes": {}
+ }
+ },
+ "total_flos": 3.0776560164274176e+17,
+ "train_batch_size": 64,
+ "trial_name": null,
+ "trial_params": null
+}
diff --git a/runs/base-ssl/checkpoint-720/training_args.bin b/runs/base-ssl/checkpoint-720/training_args.bin
new file mode 100644
index 0000000000000000000000000000000000000000..cbb50e43950730a04421678098579c835c9d518d
--- /dev/null
+++ b/runs/base-ssl/checkpoint-720/training_args.bin
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7572b8029663dc4d810f9d514c80dc9b976de220cbe72e5abd832ec6ec2ef18b
+size 5265